diff --git a/edsa_recommender.py b/edsa_recommender.py index f1192112..dad6c9e3 100644 --- a/edsa_recommender.py +++ b/edsa_recommender.py @@ -31,21 +31,54 @@ # Data handling dependencies import pandas as pd import numpy as np +import matplotlib.pyplot as plt # Custom Libraries from utils.data_loader import load_movie_titles from recommenders.collaborative_based import collab_model from recommenders.content_based import content_model +from googleapiclient.discovery import build # Data Loading title_list = load_movie_titles('resources/data/movies.csv') +movies_df = pd.read_csv('resources/data/rated_movies.csv') + + + +# Function to fetch the YouTube video ID of a trailer based on the movie title +def get_youtube_trailer_id(movie_title, api_key, num_results=1): + youtube = build('youtube', 'v3', developerKey=api_key) + search_response = youtube.search().list( + q=f"{movie_title} official trailer", + part='id', + type='video', + maxResults=num_results + ).execute() + + # Extract the video ID from the API response + video_id = search_response['items'][0]['id']['videoId'] if search_response['items'] else None + return video_id + + +def extract_year_from_title(title): + year_start = title.find("(") + 1 + year_end = title.find(")") + return title[year_start:year_end] + + +# Extract year from the title and create a new "year" column +movies_df['year'] = movies_df['title'].apply(extract_year_from_title) + +# Convert the "year" column to integer type +movies_df['year'] = pd.to_numeric(movies_df['year'], errors='coerce') + # App declaration def main(): # DO NOT REMOVE the 'Recommender System' option below, however, # you are welcome to add more options to enrich your app. - page_options = ["Recommender System","Solution Overview"] + page_options = ["Recommender System","Solution Overview","Movie Search","Top Rated Movies","EDA", "About Us"] # ------------------------------------------------------------------- # ----------- !! THIS CODE MUST NOT BE ALTERED !! ------------------- @@ -63,7 +96,7 @@ def main(): # User-based preferences st.write('### Enter Your Three Favorite Movies') - movie_1 = st.selectbox('Fisrt Option',title_list[14930:15200]) + movie_1 = st.selectbox('First Option',title_list[14930:15200]) movie_2 = st.selectbox('Second Option',title_list[25055:25255]) movie_3 = st.selectbox('Third Option',title_list[21100:21200]) fav_movies = [movie_1,movie_2,movie_3] @@ -98,15 +131,209 @@ def main(): # ------------------------------------------------------------------- + # Code for "Movie Search" page + if page_selection == "Movie Search": + st.title("Movie Search") + + # Sidebar - Movie Search + genre = st.sidebar.text_input('Enter a Genre (e.g., Action, Drama, Comedy):') + title = st.sidebar.text_input('Enter a Movie Title:') + # Function to filter movies based on user criteria + def filter_movies(df, genre=None, title=None): + if genre: + df = df[df['genres'].str.contains(genre, case=False)] + if title: + df = df[df['title'].str.contains(title, case=False)] + df = df.sort_values(by='rating', ascending=False) + return df + + # Filter the movies based on user criteria + filtered_movies = filter_movies(movies_df, genre=genre, title=title) + + # Display the filtered movie results + st.table(filtered_movies[['title', 'genres', 'rating']]) + + + # ------------------------------------------------------------------- + + # Code for "Top Rated Movies" page + if page_selection == "Top Rated Movies": + # st.title('Top Rated Movies') + # num_top_rated_movies = st.slider('Number of Top Rated Movies to Display:', 5, 20, 10) + + # # Function to get top-rated movies + # def get_top_rated_movies(df, num_movies=10): + # return df.nlargest(num_movies, 'rating') + + # top_rated_movies = get_top_rated_movies(movies_df, num_top_rated_movies) + # st.table(top_rated_movies[['title', 'genres', 'rating']]) + + st.title('Top Rated Movies') + num_top_rated_movies = st.slider('Number of Top Rated Movies to Display:', 5, 20, 10) + + # Function to get top-rated movies + def get_top_rated_movies(df, num_movies=10): + return df.nlargest(num_movies, 'rating') + + top_rated_movies = get_top_rated_movies(movies_df, num_top_rated_movies) + + # Fetch and display trailers for each top-rated movie + st.write("Trailers:") + api_key = 'AIzaSyAz-2bMsUmJ6DdJioEFAPZYNdoKjbEABEs' # Replace with your YouTube API key + for _, row in top_rated_movies.iterrows(): + movie_title = row['title'] + trailer_id = get_youtube_trailer_id(movie_title, api_key) + if trailer_id: + st.write(f"**{movie_title}**: ") + st.video(f"https://www.youtube.com/watch?v={trailer_id}", format="mp4") + + + # ------------- SAFE FOR ALTERING/EXTENSION ------------------- if page_selection == "Solution Overview": st.title("Solution Overview") - st.write("Describe your winning approach on this page") + st.image('resources/imgs/header_image.jpg',use_column_width=True) + + # Button to expand/collapse the "Movie Recommender App" subsection + if st.button("Movie Recommender App"): + st.write(""" + **Solution Overview: Movie Recommender App** + + Our Movie Recommender App is an intelligent system designed to help users discover their ideal movies by leveraging the power of collaborative-based and content-based filtering techniques. The primary goal of this app is to provide personalized movie recommendations based on user preferences and movie features. + """) + + if st.button("Key Features"): + st.write(""" + **Key Features:** + + 1. **User-Friendly Interface:** The app offers a simple and intuitive user interface. Users can easily navigate through different sections, including "Recommender System," "Movie Search," and "Top Rated Movies." + + 2. **Recommender System:** Our app presents two advanced recommendation algorithms: Collaborative-Based Filtering and Content-Based Filtering. Users can input their three favorite movies, and the system will generate a list of movie recommendations tailored to their unique tastes. + + 3. **Movie Search:** Users have the freedom to search for specific movies or explore movies by genres. The app efficiently filters movies based on user-provided genre criteria, allowing users to quickly discover movies that match their interests. + + 4. **Top Rated Movies:** Our app presents a list of top-rated movies based on user ratings or other metrics. Users can adjust the number of movies displayed to explore the best movies based on their preferences. + """) + + if st.button("How It Works"): + st.write(""" + **How It Works:** + + 1. **Collaborative-Based Filtering:** This approach builds user-item interactions to uncover patterns in user preferences. By analyzing how similar users have rated movies, the system identifies movies that align with a user's taste. The resulting recommendations are personalized and considerate of user behavior. + + 2. **Content-Based Filtering:** The content-based approach focuses on movie features such as genres and tags. By comparing movie attributes with user preferences, the app suggests movies that align with a user's previous movie choices. + """) + + if st.button("Benefits"): + st.write(""" + **Benefits:** + + 1. **Personalized Recommendations:** Our app provides personalized movie recommendations, ensuring that users receive tailored suggestions based on their individual interests. + + 2. **Exploration and Discovery:** Users can discover new movies outside their typical choices through the diverse recommendations generated by the app. + + 3. **Enhanced Movie Search:** The movie search feature enables users to find movies based on specific genres, empowering them to explore movies relevant to their mood or interests. + + """) + + st.write("""Our Movie Recommender App is committed to delivering an engaging and dynamic movie discovery experience for users. We continuously strive to improve our recommendation algorithms and user interface to ensure movie enthusiasts find their perfect watchlist with ease. Enjoy exploring the world of cinema with our smart and sophisticated movie recommender system! + """) + + # You may want to add more sections here for aspects such as an EDA, # or to provide your business pitch. +#-------------------------------------------------------------------------------------------------------------------------------- +#----------------------------------------------------------------------------------------------------------------------------- + + + # Add code for "About Us" page + if page_selection == "About Us": + st.title("About Us") + + # Insert information about your team, project, or organization + + st.image('resources/imgs/meet_our_team.jpg',use_column_width=True) + st.markdown(""" + - Ayodele Marcus: Movie Analyst + - Toka Ramakau: Data Engineer + - Mmatlou Matlakala: Lead Data Scientist + - Jacinta Muindi: Machine Learning Engineer + - Oladimeji Akanni: Data Scientist + - Emmanuel Alabi: App Designer + + Contact us at [teames2_dreamteam@gmail.com](mailto:teames2_dreamteam@gmail.com) for inquiries. + """) + + +#-------------------------------------------------------------------------------------------------- + elif page_selection == "EDA": + st.title("Exploratory Data Analysis (EDA)") + + # Show basic statistics + st.header("Basic Statistics") + st.write("Total Number of Movies:", len(movies_df)) + st.write("Overall Average Rating:", movies_df['rating'].mean()) + + # Button to show ratings distribution + if st.button("Show Ratings Distribution"): + st.header("Ratings Distribution") + ratings_counts = movies_df['rating'].value_counts().sort_index() + fig, ax = plt.subplots(figsize=(6.4, 2)) + ax.bar(ratings_counts.index, ratings_counts.values) + ax.set_xlabel("Rating") + ax.set_ylabel("Number of Movies") + st.pyplot(fig) + + # Button to show top rated movies + #if st.button("Show Top Rated Movies"): + # st.header("Top Rated Movies") + # top_rated_movies = movies_df.groupby('title')['rating'].mean().sort_values(ascending=False).head(10) + # st.table(top_rated_movies.reset_index().rename(columns={'rating': 'Average Rating'})) + +# Button to show genres distribution + if st.button("Show Genres Distribution"): + st.header("Genres Distribution") + genres_counts = movies_df['genres'].str.split('|', expand=True).stack().value_counts() + fig, ax = plt.subplots(figsize=(6.4, 2)) + ax.bar(genres_counts.index, genres_counts.values) + ax.set_xticklabels(genres_counts.index, rotation=90) + ax.set_xlabel("Genre") + ax.set_ylabel("Number of Movies") + st.pyplot(fig) + + +# Button to show most common genres + if st.button("Show Most Common Genres"): + st.header("Most Common Genres") + most_common_genres = movies_df['genres'].str.split('|', expand=True).stack().value_counts().head(10) + st.table(most_common_genres.reset_index().rename(columns={'index': 'Genre', 0: 'Count'})) + + # Button to show movie count by year + #if st.button("Show Movie Count by Year"): + # st.header("Movie Count by Year") + # movie_count_by_year = movies_df['year'].value_counts().sort_index() + # fig, ax = plt.subplots() + # ax.plot(movie_count_by_year.index, movie_count_by_year.values) + # ax.set_xlabel("Year") + # ax.set_ylabel("Number of Movies") + #st.pyplot(fig) + + # User rating stats + st.header("User Rating Statistics") + user_rating_stats = movies_df['rating'].describe() + st.table(user_rating_stats) + + + # You can add other EDA visualizations and analysis here + + # ------------------------------------------------------------------- + + + + if __name__ == '__main__': main() diff --git a/recommenders/collaborative_based.py b/recommenders/collaborative_based.py index 861b5d8f..0db45e7c 100644 --- a/recommenders/collaborative_based.py +++ b/recommenders/collaborative_based.py @@ -30,17 +30,19 @@ # Script dependencies import pandas as pd import numpy as np +import scipy as sp import pickle import copy -from surprise import Reader, Dataset -from surprise import SVD, NormalPredictor, BaselineOnly, KNNBasic, NMF +from surprise import Reader, Dataset, SVD from sklearn.metrics.pairwise import cosine_similarity from sklearn.feature_extraction.text import CountVectorizer # Importing data +#movies_df = pd.read_csv('/home/explore-student/unsupervised_data/unsupervised_movie_data/movies.csv',sep = ',',delimiter=',') +#ratings_df = pd.read_csv('/home/explore-student/unsupervised_data/unsupervised_movie_data/train.csv') movies_df = pd.read_csv('resources/data/movies.csv',sep = ',') ratings_df = pd.read_csv('resources/data/ratings.csv') -ratings_df.drop(['timestamp'], axis=1,inplace=True) +ratings_df.drop(['timestamp'], axis=1, inplace=True) # We make use of an SVD model trained on a subset of the MovieLens 10k dataset. model=pickle.load(open('resources/models/SVD.pkl', 'rb')) @@ -99,7 +101,7 @@ def pred_movies(movie_list): return id_store # !! DO NOT CHANGE THIS FUNCTION SIGNATURE !! -# You are, however, encouraged to change its content. +# You are, however, encouraged to change its content. def collab_model(movie_list,top_n=10): """Performs Collaborative filtering based upon a list of movies supplied by the app user. @@ -117,32 +119,60 @@ def collab_model(movie_list,top_n=10): Titles of the top-n movie recommendations to the user. """ - - indices = pd.Series(movies_df['title']) - movie_ids = pred_movies(movie_list) - df_init_users = ratings_df[ratings_df['userId']==movie_ids[0]] - for i in movie_ids : - df_init_users=df_init_users.append(ratings_df[ratings_df['userId']==i]) - # Getting the cosine similarity matrix - cosine_sim = cosine_similarity(np.array(df_init_users), np.array(df_init_users)) + names = movies_df.copy() + names.set_index('movieId',inplace=True) + indices = pd.Series(names['title']) + users_ids = pred_movies(movie_list) + # Get movie IDs and ratings for top users + df_init_users = ratings_df[ratings_df['userId']==users_ids[0]] + for i in users_ids[1:]: + df_init_users = df_init_users.append(ratings_df[ratings_df['userId']==i]) + # Include predictions for chosen movies + for j in movie_list: + a = pd.DataFrame(prediction_item(j)) + for i in set(df_init_users['userId']): + mid = indices[indices == j].index[0] + est = a['est'][a['uid']==i].values[0] + df_init_users = df_init_users.append(pd.Series([int(i),int(mid),est], index=['userId','movieId','rating']), ignore_index=True) + # Remove duplicate entries + df_init_users.drop_duplicates(inplace=True) + #Create pivot table + util_matrix = df_init_users.pivot_table(index=['userId'], columns=['movieId'], values='rating') + # Fill Nan values with 0's and save the utility matrix in scipy's sparse matrix format + util_matrix.fillna(0, inplace=True) + util_matrix_sparse = sp.sparse.csr_matrix(util_matrix.values) + # Compute the similarity matrix using the cosine similarity metric + user_similarity = cosine_similarity(util_matrix_sparse.T) + # Save the matrix as a dataframe to allow for easier indexing + user_sim_df = pd.DataFrame(user_similarity, index = util_matrix.columns, columns = util_matrix.columns) + user_similarity = cosine_similarity(np.array(df_init_users), np.array(df_init_users)) + user_sim_df = pd.DataFrame(user_similarity, index = df_init_users['movieId'].values.astype(int), columns = df_init_users['movieId'].values.astype(int)) + # Remove duplicate rows from matrix + user_sim_df = user_sim_df.loc[~user_sim_df.index.duplicated(keep='first')] + # Transpose matrix + user_sim_df = user_sim_df.T + # Find IDs of chosen load_movie_titles idx_1 = indices[indices == movie_list[0]].index[0] idx_2 = indices[indices == movie_list[1]].index[0] idx_3 = indices[indices == movie_list[2]].index[0] # Creating a Series with the similarity scores in descending order - rank_1 = cosine_sim[idx_1] - rank_2 = cosine_sim[idx_2] - rank_3 = cosine_sim[idx_3] + rank_1 = user_sim_df[idx_1] + rank_2 = user_sim_df[idx_2] + rank_3 = user_sim_df[idx_3] # Calculating the scores score_series_1 = pd.Series(rank_1).sort_values(ascending = False) score_series_2 = pd.Series(rank_2).sort_values(ascending = False) score_series_3 = pd.Series(rank_3).sort_values(ascending = False) - # Appending the names of movies - listings = score_series_1.append(score_series_1).append(score_series_3).sort_values(ascending = False) - recommended_movies = [] + # Appending the names of movies + listings = score_series_1.append(score_series_2).append(score_series_3).sort_values(ascending = False) # Choose top 50 top_50_indexes = list(listings.iloc[1:50].index) # Removing chosen movies top_indexes = np.setdiff1d(top_50_indexes,[idx_1,idx_2,idx_3]) + # Get titles of recommended movies + recommended_movies = [] for i in top_indexes[:top_n]: - recommended_movies.append(list(movies_df['title'])[i]) + recommended_movies.append(list(movies_df[movies_df['movieId']==i]['title'])) + # Return list of movies + recommended_movies = [val for sublist in recommended_movies for val in sublist] return recommended_movies diff --git a/recommenders/content_based.py b/recommenders/content_based.py index ed7df363..7dfa6352 100644 --- a/recommenders/content_based.py +++ b/recommenders/content_based.py @@ -35,8 +35,8 @@ from sklearn.feature_extraction.text import CountVectorizer # Importing data -movies = pd.read_csv('resources/data/movies.csv', sep = ',') -ratings = pd.read_csv('resources/data/ratings.csv') +movies = pd.read_csv('/home/explore-student/unsupervised_data/edsa-movie-recommendation-predict/movies.csv', sep = ',') +ratings = pd.read_csv('/home/explore-student/unsupervised_data/edsa-movie-recommendation-predict/train.csv') movies.dropna(inplace=True) def data_preprocessing(subset_size): @@ -60,7 +60,7 @@ def data_preprocessing(subset_size): return movies_subset # !! DO NOT CHANGE THIS FUNCTION SIGNATURE !! -# You are, however, encouraged to change its content. +# You are, however, encouraged to change its content. def content_model(movie_list,top_n=10): """Performs Content filtering based upon a list of movies supplied by the app user. @@ -79,13 +79,16 @@ def content_model(movie_list,top_n=10): """ # Initializing the empty list of recommended movies - recommended_movies = [] - data = data_preprocessing(27000) + data = data_preprocessing(40000) ## CHANGE SUBSET TO MATCH RANGE IN APP # Instantiating and generating the count matrix count_vec = CountVectorizer() count_matrix = count_vec.fit_transform(data['keyWords']) - indices = pd.Series(data['title']) + names = data.copy() + names.set_index('movieId',inplace=True) + indices = pd.Series(names['title']) cosine_sim = cosine_similarity(count_matrix, count_matrix) + #cosine_sim = pairwise_kernels(count_matrix, metric='cosine', njobs = -1) + cosine_sim = pd.DataFrame(cosine_sim, index = data['movieId'].values.astype(int), columns = data['movieId'].values.astype(int)) # Getting the index of the movie that matches the title idx_1 = indices[indices == movie_list[0]].index[0] idx_2 = indices[indices == movie_list[1]].index[0] @@ -99,7 +102,8 @@ def content_model(movie_list,top_n=10): score_series_2 = pd.Series(rank_2).sort_values(ascending = False) score_series_3 = pd.Series(rank_3).sort_values(ascending = False) # Getting the indexes of the 10 most similar movies - listings = score_series_1.append(score_series_1).append(score_series_3).sort_values(ascending = False) + + listings = score_series_1.append(score_series_2).append(score_series_3).sort_values(ascending = False) # Store movie names recommended_movies = [] diff --git a/resources/data/rated_movies.csv b/resources/data/rated_movies.csv new file mode 100644 index 00000000..3f1469c4 --- /dev/null +++ b/resources/data/rated_movies.csv @@ -0,0 +1,8863 @@ +movieId,rating,title,genres +1,3.8724696356275303,Toy Story (1995),Adventure|Animation|Children|Comedy|Fantasy +2,3.4018691588785046,Jumanji (1995),Adventure|Children|Fantasy +3,3.1610169491525424,Grumpier Old Men (1995),Comedy|Romance +4,2.3846153846153846,Waiting to Exhale (1995),Comedy|Drama|Romance +5,3.267857142857143,Father of the Bride Part II (1995),Comedy +6,3.8846153846153846,Heat (1995),Action|Crime|Thriller +7,3.2830188679245285,Sabrina (1995),Comedy|Romance +8,3.8,Tom and Huck (1995),Adventure|Children +9,3.15,Sudden Death (1995),Action +10,3.4508196721311477,GoldenEye (1995),Action|Adventure|Thriller +11,3.6890243902439024,"American President, The (1995)",Comedy|Drama|Romance +12,2.861111111111111,Dracula: Dead and Loving It (1995),Comedy|Horror +13,3.9375,Balto (1995),Adventure|Animation|Children +14,3.4516129032258065,Nixon (1995),Drama +15,2.3181818181818183,Cutthroat Island (1995),Action|Adventure|Romance +16,3.9488636363636362,Casino (1995),Crime|Drama +17,3.9244186046511627,Sense and Sensibility (1995),Drama|Romance +18,3.2884615384615383,Four Rooms (1995),Comedy +19,2.597826086956522,Ace Ventura: When Nature Calls (1995),Comedy +20,2.5384615384615383,Money Train (1995),Action|Comedy|Crime|Drama|Thriller +21,3.536842105263158,Get Shorty (1995),Comedy|Crime|Thriller +22,3.3552631578947367,Copycat (1995),Crime|Drama|Horror|Mystery|Thriller +23,3.090909090909091,Assassins (1995),Action|Crime|Thriller +24,3.0441176470588234,Powder (1995),Drama|Sci-Fi +25,3.742574257425743,Leaving Las Vegas (1995),Drama|Romance +26,4.1,Othello (1995),Drama +27,3.142857142857143,Now and Then (1995),Children|Drama +28,4.083333333333333,Persuasion (1995),Drama|Romance +29,4.025,"City of Lost Children, The (Cité des enfants perdus, La) (1995)",Adventure|Drama|Fantasy|Mystery|Sci-Fi +30,4.05,Shanghai Triad (Yao a yao yao dao waipo qiao) (1995),Crime|Drama +31,3.1785714285714284,Dangerous Minds (1995),Drama +32,3.923469387755102,Twelve Monkeys (a.k.a. 12 Monkeys) (1995),Mystery|Sci-Fi|Thriller +34,3.6013513513513513,Babe (1995),Children|Drama +35,3.5454545454545454,Carrington (1995),Drama|Romance +36,3.9375,Dead Man Walking (1995),Crime|Drama +37,2.0,Across the Sea of Time (1995),Documentary|IMAX +38,2.0,It Takes Two (1995),Children|Comedy +39,3.55,Clueless (1995),Comedy|Romance +40,3.9166666666666665,"Cry, the Beloved Country (1995)",Drama +41,4.021739130434782,Richard III (1995),Drama|War +42,2.3333333333333335,Dead Presidents (1995),Action|Crime|Drama +43,3.625,Restoration (1995),Drama +44,2.6973684210526314,Mortal Kombat (1995),Action|Adventure|Fantasy +45,3.5232558139534884,To Die For (1995),Comedy|Drama|Thriller +46,3.1666666666666665,How to Make an American Quilt (1995),Drama|Romance +47,4.034825870646766,Seven (a.k.a. Se7en) (1995),Mystery|Thriller +48,2.9262295081967213,Pocahontas (1995),Animation|Children|Drama|Musical|Romance +49,4.0,When Night Is Falling (1995),Drama|Romance +50,4.370646766169155,"Usual Suspects, The (1995)",Crime|Mystery|Thriller +52,3.6372549019607843,Mighty Aphrodite (1995),Comedy|Drama|Romance +53,5.0,Lamerica (1994),Adventure|Drama +54,3.6666666666666665,"Big Green, The (1995)",Children|Comedy +55,3.3333333333333335,Georgia (1995),Drama +57,3.142857142857143,Home for the Holidays (1995),Drama +58,4.0,"Postman, The (Postino, Il) (1994)",Comedy|Drama|Romance +59,4.0,"Confessional, The (Confessionnal, Le) (1995)",Drama|Mystery +60,2.828125,"Indian in the Cupboard, The (1995)",Adventure|Children|Fantasy +61,3.5714285714285716,Eye for an Eye (1996),Drama|Thriller +62,3.689655172413793,Mr. Holland's Opus (1995),Drama +63,2.8333333333333335,Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996),Comedy|Crime +64,2.4,Two if by Sea (1996),Comedy|Romance +65,2.025,Bio-Dome (1996),Comedy +66,2.0,Lawnmower Man 2: Beyond Cyberspace (1996),Action|Sci-Fi|Thriller +68,3.5,French Twist (Gazon maudit) (1995),Comedy|Romance +69,3.8181818181818183,Friday (1995),Comedy +70,3.0208333333333335,From Dusk Till Dawn (1996),Action|Comedy|Horror|Thriller +71,2.4285714285714284,Fair Game (1995),Action +72,3.1666666666666665,Kicking and Screaming (1995),Comedy|Drama +73,4.115384615384615,"Misérables, Les (1995)",Drama|War +74,3.026315789473684,Bed of Roses (1996),Drama|Romance +76,3.3333333333333335,Screamers (1995),Action|Sci-Fi|Thriller +77,4.0,Nico Icon (1995),Documentary +78,3.2,"Crossing Guard, The (1995)",Action|Crime|Drama|Thriller +79,2.9615384615384617,"Juror, The (1996)",Drama|Thriller +80,4.625,"White Balloon, The (Badkonake sefid) (1995)",Children|Drama +81,3.25,Things to Do in Denver When You're Dead (1995),Crime|Drama|Romance +82,3.8,Antonia's Line (Antonia) (1995),Comedy|Drama +83,3.0,Once Upon a Time... When We Were Colored (1995),Drama|Romance +84,4.0,Last Summer in the Hamptons (1995),Comedy|Drama +85,4.0625,Angels and Insects (1995),Drama|Romance +86,3.764705882352941,White Squall (1996),Action|Adventure|Drama +87,1.6666666666666667,Dunston Checks In (1996),Children|Comedy +88,2.891304347826087,Black Sheep (1996),Comedy +89,3.4411764705882355,Nick of Time (1995),Action|Thriller +92,3.5416666666666665,Mary Reilly (1996),Drama|Horror|Thriller +93,2.227272727272727,Vampire in Brooklyn (1995),Comedy|Horror|Romance +94,3.5681818181818183,Beautiful Girls (1996),Comedy|Drama|Romance +95,3.1774193548387095,Broken Arrow (1996),Action|Adventure|Thriller +96,1.0,In the Bleak Midwinter (1995),Comedy|Drama +97,3.875,"Hate (Haine, La) (1995)",Crime|Drama +98,3.0,Shopping (1994),Action|Thriller +99,2.75,Heidi Fleiss: Hollywood Madam (1995),Documentary +100,3.4285714285714284,City Hall (1996),Drama|Thriller +101,3.8823529411764706,Bottle Rocket (1996),Adventure|Comedy|Crime|Romance +102,2.590909090909091,Mr. Wrong (1996),Comedy +103,4.0,Unforgettable (1996),Mystery|Sci-Fi|Thriller +104,3.2925531914893615,Happy Gilmore (1996),Comedy +105,3.1145833333333335,"Bridges of Madison County, The (1995)",Drama|Romance +107,3.462962962962963,Muppet Treasure Island (1996),Adventure|Children|Comedy|Musical +108,4.0,Catwalk (1996),Documentary +110,3.9451754385964914,Braveheart (1995),Action|Drama|War +111,4.22457627118644,Taxi Driver (1976),Crime|Drama|Thriller +112,3.295918367346939,Rumble in the Bronx (Hont faan kui) (1995),Action|Adventure|Comedy|Crime +113,3.2,Before and After (1996),Drama|Mystery +114,3.0,Margaret's Museum (1995),Drama +116,4.75,Anne Frank Remembered (1995),Documentary +117,3.0,"Young Poisoner's Handbook, The (1995)",Crime|Drama +118,2.8,If Lucy Fell (1996),Comedy|Romance +119,3.0,"Steal Big, Steal Little (1995)",Comedy +121,3.8,"Boys of St. Vincent, The (1992)",Drama +122,3.0526315789473686,Boomerang (1992),Comedy|Romance +123,4.0,Chungking Express (Chung Hing sam lam) (1994),Drama|Mystery|Romance +124,3.0,"Star Maker, The (Uomo delle stelle, L') (1995)",Drama +125,3.7142857142857144,Flirting With Disaster (1996),Comedy +126,2.7,"NeverEnding Story III, The (1994)",Adventure|Children|Fantasy +129,3.0,Pie in the Sky (1996),Comedy|Romance +130,4.5,Angela (1995),Drama +131,2.0,Frankie Starlight (1995),Drama|Romance +132,2.875,Jade (1995),Thriller +135,3.0,Down Periscope (1996),Comedy +137,1.0,Man of the Year (1995),Documentary +140,3.4782608695652173,Up Close and Personal (1996),Drama|Romance +141,3.5806451612903225,"Birdcage, The (1996)",Comedy +144,3.326923076923077,"Brothers McMullen, The (1995)",Comedy +145,3.2790697674418605,Bad Boys (1995),Action|Comedy|Crime|Drama|Thriller +146,4.333333333333333,"Amazing Panda Adventure, The (1995)",Adventure|Children +147,3.642857142857143,"Basketball Diaries, The (1995)",Drama +148,4.0,"Awfully Big Adventure, An (1995)",Drama +149,4.333333333333333,Amateur (1994),Crime|Drama|Thriller +150,3.9025,Apollo 13 (1995),Adventure|Drama|IMAX +151,3.5625,Rob Roy (1995),Action|Drama|Romance|War +152,3.8333333333333335,"Addiction, The (1995)",Drama|Horror +153,2.7829457364341086,Batman Forever (1995),Action|Adventure|Comedy|Crime +154,3.8125,Beauty of the Day (Belle de jour) (1967),Drama +155,3.0555555555555554,Beyond Rangoon (1995),Adventure|Drama|War +156,3.9545454545454546,Blue in the Face (1995),Comedy|Drama +157,2.375,Canadian Bacon (1995),Comedy|War +158,2.8706896551724137,Casper (1995),Adventure|Children +159,3.9375,Clockers (1995),Crime|Drama|Mystery +160,2.3412698412698414,Congo (1995),Action|Adventure|Mystery|Sci-Fi +161,3.83125,Crimson Tide (1995),Drama|Thriller|War +162,4.136363636363637,Crumb (1994),Documentary +163,3.515873015873016,Desperado (1995),Action|Romance|Western +164,3.5576923076923075,Devil in a Blue Dress (1995),Crime|Film-Noir|Mystery|Thriller +165,3.443661971830986,Die Hard: With a Vengeance (1995),Action|Crime|Thriller +166,3.0,"Doom Generation, The (1995)",Comedy|Crime|Drama +167,4.0,Feast of July (1995),Drama +168,3.116279069767442,First Knight (1995),Action|Drama|Romance +169,2.5625,Free Willy 2: The Adventure Home (1995),Adventure|Children|Drama +170,3.2884615384615383,Hackers (1995),Action|Adventure|Crime|Thriller +171,4.333333333333333,Jeffrey (1995),Comedy|Drama +172,2.5729166666666665,Johnny Mnemonic (1995),Action|Sci-Fi|Thriller +173,2.5642857142857145,Judge Dredd (1995),Action|Crime|Sci-Fi +174,2.25,Jury Duty (1995),Comedy +175,3.9565217391304346,Kids (1995),Drama +176,3.7777777777777777,Living in Oblivion (1995),Comedy +177,2.8846153846153846,Lord of Illusions (1995),Horror +178,4.7,Love & Human Remains (1993),Comedy|Drama +179,3.5,Mad Love (1995),Drama|Romance +180,3.3068181818181817,Mallrats (1995),Comedy|Romance +181,1.8,Mighty Morphin Power Rangers: The Movie (1995),Action|Children +183,5.0,Mute Witness (1994),Comedy|Horror|Thriller +184,4.5,Nadja (1994),Drama +185,3.1029411764705883,"Net, The (1995)",Action|Crime|Thriller +186,2.875,Nine Months (1995),Comedy|Romance +187,2.8333333333333335,Party Girl (1995),Comedy +188,3.125,"Prophecy, The (1995)",Fantasy|Horror|Mystery +189,4.0,Reckless (1995),Comedy|Fantasy +190,3.8333333333333335,Safe (1995),Thriller +191,3.0,"Scarlet Letter, The (1995)",Drama|Romance +193,2.3142857142857145,Showgirls (1995),Drama +194,4.291666666666667,Smoke (1995),Comedy|Drama +195,3.2142857142857144,Something to Talk About (1995),Comedy|Drama|Romance +196,2.809090909090909,Species (1995),Horror|Sci-Fi +198,3.441860465116279,Strange Days (1995),Action|Crime|Drama|Mystery|Sci-Fi|Thriller +199,3.3333333333333335,"Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964)",Drama|Musical|Romance +200,4.0,"Tie That Binds, The (1995)",Thriller +201,4.0,Three Wishes (1995),Drama|Fantasy +202,3.0,Total Eclipse (1995),Drama|Romance +203,3.3043478260869565,"To Wong Foo, Thanks for Everything! Julie Newmar (1995)",Comedy +204,3.0,Under Siege 2: Dark Territory (1995),Action +205,4.0,Unstrung Heroes (1995),Comedy|Drama +206,3.6,Unzipped (1995),Documentary +207,3.375,"Walk in the Clouds, A (1995)",Drama|Romance +208,2.752212389380531,Waterworld (1995),Action|Adventure|Sci-Fi +209,2.6,White Man's Burden (1995),Drama +211,3.3333333333333335,"Browning Version, The (1994)",Drama +213,4.222222222222222,Burnt by the Sun (Utomlyonnye solntsem) (1994),Drama +214,3.0,Before the Rain (Pred dozhdot) (1994),Drama|War +215,3.7222222222222223,Before Sunrise (1995),Drama|Romance +216,3.0238095238095237,Billy Madison (1995),Comedy +217,2.7142857142857144,"Babysitter, The (1995)",Drama|Thriller +218,3.3333333333333335,Boys on the Side (1995),Comedy|Drama +219,4.25,"Cure, The (1995)",Drama +220,3.0,Castle Freak (1995),Horror +222,3.9318181818181817,Circle of Friends (1995),Drama|Romance +223,3.963302752293578,Clerks (1994),Comedy +224,3.6,Don Juan DeMarco (1995),Comedy|Drama|Romance +225,3.173076923076923,Disclosure (1994),Drama|Thriller +227,3.15625,Drop Zone (1994),Action|Thriller +228,2.0,Destiny Turns on the Radio (1995),Comedy +229,4.083333333333333,Death and the Maiden (1994),Drama|Thriller +230,3.7,Dolores Claiborne (1995),Drama|Thriller +231,3.1107594936708862,Dumb & Dumber (Dumb and Dumber) (1994),Adventure|Comedy +232,4.208333333333333,Eat Drink Man Woman (Yin shi nan nu) (1994),Comedy|Drama|Romance +233,4.269230769230769,Exotica (1994),Drama +234,2.75,Exit to Eden (1994),Comedy +235,3.9038461538461537,Ed Wood (1994),Comedy|Drama +236,3.3583333333333334,French Kiss (1995),Action|Comedy|Romance +237,3.1911764705882355,Forget Paris (1995),Comedy|Romance +238,3.0,Far From Home: The Adventures of Yellow Dog (1995),Adventure|Children +239,2.933333333333333,"Goofy Movie, A (1995)",Animation|Children|Comedy|Romance +240,3.4,Hideaway (1995),Thriller +241,3.5,Fluke (1995),Children|Drama +242,3.75,Farinelli: il castrato (1994),Drama|Musical +243,4.0,Gordy (1995),Children|Comedy|Fantasy +244,3.0,Gumby: The Movie (1995),Animation|Children +245,3.0,The Glass Shield (1994),Crime|Drama +246,4.040983606557377,Hoop Dreams (1994),Documentary +247,3.6511627906976742,Heavenly Creatures (1994),Crime|Drama +248,3.1538461538461537,Houseguest (1994),Comedy +249,3.375,Immortal Beloved (1994),Drama|Romance +250,3.25,Heavyweights (Heavy Weights) (1995),Children|Comedy +251,3.0,"Hunted, The (1995)",Action +252,3.0609756097560976,I.Q. (1994),Comedy|Romance +253,3.396,Interview with the Vampire: The Vampire Chronicles (1994),Drama|Horror +254,3.0,Jefferson in Paris (1995),Drama +255,2.2,"Jerky Boys, The (1995)",Comedy +256,2.7023809523809526,Junior (1994),Comedy|Sci-Fi +257,3.576923076923077,Just Cause (1995),Mystery|Thriller +258,2.5,"Kid in King Arthur's Court, A (1995)",Adventure|Children|Comedy|Fantasy|Romance +259,3.7,Kiss of Death (1995),Crime|Drama|Thriller +260,4.221649484536083,Star Wars: Episode IV - A New Hope (1977),Action|Adventure|Sci-Fi +261,3.715686274509804,Little Women (1994),Drama +262,3.85,"Little Princess, A (1995)",Children|Drama +263,3.0,Ladybird Ladybird (1994),Drama +264,4.5,"Enfer, L' (1994)",Drama +265,3.879032258064516,Like Water for Chocolate (Como agua para chocolate) (1992),Drama|Fantasy|Romance +266,3.4863013698630136,Legends of the Fall (1994),Drama|Romance|War|Western +267,2.730769230769231,Major Payne (1995),Comedy +268,4.25,Little Odessa (1994),Crime|Drama +269,3.6666666666666665,My Crazy Life (Mi vida loca) (1993),Drama +270,3.2222222222222223,Love Affair (1994),Drama|Romance +271,3.5,Losing Isaiah (1995),Drama +272,4.0,"Madness of King George, The (1994)",Comedy|Drama +273,3.1296296296296298,Mary Shelley's Frankenstein (Frankenstein) (1994),Drama|Horror|Sci-Fi +274,2.6666666666666665,Man of the House (1995),Comedy +275,2.8,Mixed Nuts (1994),Comedy +276,2.8636363636363638,Milk Money (1994),Comedy|Romance +277,3.357142857142857,Miracle on 34th Street (1994),Drama +278,3.0,Miami Rhapsody (1995),Comedy +279,2.875,My Family (1995),Drama +280,4.113636363636363,Murder in the First (1995),Drama|Thriller +281,3.861111111111111,Nobody's Fool (1994),Comedy|Drama|Romance +282,3.284090909090909,Nell (1994),Drama +283,3.0,New Jersey Drive (1995),Crime|Drama +285,4.0,Beyond Bedlam (1993),Drama|Horror +287,3.2,Nina Takes a Lover (1994),Comedy|Romance +288,3.336448598130841,Natural Born Killers (1994),Action|Crime|Thriller +289,3.4642857142857144,Only You (1994),Comedy|Romance +290,3.9375,Once Were Warriors (1994),Crime|Drama +292,3.309090909090909,Outbreak (1995),Action|Drama|Sci-Fi|Thriller +293,4.071969696969697,Léon: The Professional (a.k.a. The Professional) (Léon) (1994),Action|Crime|Drama|Thriller +294,3.3333333333333335,"Perez Family, The (1995)",Comedy|Romance +295,3.0,"Pyromaniac's Love Story, A (1995)",Comedy|Romance +296,4.256172839506172,Pulp Fiction (1994),Comedy|Crime|Drama|Thriller +299,3.75,Priest (1994),Drama +300,3.75,Quiz Show (1994),Drama +301,5.0,Picture Bride (Bijo photo) (1994),Drama|Romance +302,3.7142857142857144,"Queen Margot (Reine Margot, La) (1994)",Drama|Romance +303,3.1875,"Quick and the Dead, The (1995)",Action|Thriller|Western +304,3.3333333333333335,Roommates (1995),Comedy|Drama +305,2.75,Ready to Wear (Pret-A-Porter) (1994),Comedy +306,4.171875,Three Colors: Red (Trois couleurs: Rouge) (1994),Drama +307,4.145161290322581,Three Colors: Blue (Trois couleurs: Bleu) (1993),Drama +308,4.159090909090909,Three Colors: White (Trzy kolory: Bialy) (1994),Comedy|Drama +309,5.0,"Red Firecracker, Green Firecracker (Pao Da Shuang Deng) (1994)",Drama +312,3.6,Stuart Saves His Family (1995),Comedy +313,2.7142857142857144,"Swan Princess, The (1994)",Animation|Children +314,3.9411764705882355,"Secret of Roan Inish, The (1994)",Children|Drama|Fantasy|Mystery +315,2.909090909090909,"Specialist, The (1994)",Action|Drama|Thriller +316,3.3689655172413793,Stargate (1994),Action|Adventure|Sci-Fi +317,2.9642857142857144,"Santa Clause, The (1994)",Comedy|Drama|Fantasy +318,4.487138263665595,"Shawshank Redemption, The (1994)",Crime|Drama +319,3.973684210526316,Shallow Grave (1994),Comedy|Drama|Thriller +320,2.75,Suture (1993),Film-Noir|Thriller +321,3.642857142857143,Strawberry and Chocolate (Fresa y chocolate) (1993),Drama +322,3.642857142857143,Swimming with Sharks (1995),Comedy|Drama +324,3.3333333333333335,"Sum of Us, The (1994)",Comedy|Drama +325,3.0,National Lampoon's Senior Trip (1995),Comedy +326,4.071428571428571,To Live (Huozhe) (1994),Drama +327,2.75,Tank Girl (1995),Action|Comedy|Sci-Fi +328,3.625,Tales from the Crypt Presents: Demon Knight (1995),Horror|Thriller +329,3.3508771929824563,Star Trek: Generations (1994),Adventure|Drama|Sci-Fi +330,2.7,Tales from the Hood (1995),Action|Crime|Horror +331,3.0,Tom & Viv (1994),Drama +332,3.2,Village of the Damned (1995),Horror|Sci-Fi +333,3.32,Tommy Boy (1995),Comedy +334,3.0714285714285716,Vanya on 42nd Street (1994),Drama +335,3.0,Underneath (1995),Mystery|Thriller +336,3.0,"Walking Dead, The (1995)",Drama|War +337,3.7954545454545454,What's Eating Gilbert Grape (1993),Drama +338,2.8,Virtuosity (1995),Action|Sci-Fi|Thriller +339,3.4405940594059405,While You Were Sleeping (1995),Comedy|Romance +340,3.0,"War, The (1994)",Adventure|Drama|War +341,4.5,Double Happiness (1994),Drama +342,3.4375,Muriel's Wedding (1994),Comedy +343,3.0,"Baby-Sitters Club, The (1995)",Children +344,2.8714285714285714,Ace Ventura: Pet Detective (1994),Comedy +345,3.75,"Adventures of Priscilla, Queen of the Desert, The (1994)",Comedy|Drama +346,3.0,Backbeat (1993),Drama|Musical +347,3.857142857142857,Bitter Moon (1992),Drama|Film-Noir|Romance +348,3.9375,Bullets Over Broadway (1994),Comedy +349,3.7869565217391306,Clear and Present Danger (1994),Action|Crime|Drama|Thriller +350,3.3285714285714287,"Client, The (1994)",Drama|Mystery|Thriller +351,3.1923076923076925,"Corrina, Corrina (1994)",Comedy|Drama|Romance +352,3.357142857142857,Crooklyn (1994),Comedy|Drama +353,3.58955223880597,"Crow, The (1994)",Action|Crime|Fantasy|Thriller +354,3.5,Cobb (1994),Drama +355,2.2051282051282053,"Flintstones, The (1994)",Children|Comedy|Fantasy +356,4.05425219941349,Forrest Gump (1994),Comedy|Drama|Romance|War +357,3.6844262295081966,Four Weddings and a Funeral (1994),Comedy|Romance +358,2.4285714285714284,Higher Learning (1995),Drama +360,2.5,I Love Trouble (1994),Action|Comedy +361,3.38,It Could Happen to You (1994),Comedy|Drama|Romance +362,3.45,"Jungle Book, The (1994)",Adventure|Children|Romance +363,4.5,"Wonderful, Horrible Life of Leni Riefenstahl, The (Macht der Bilder: Leni Riefenstahl, Die) (1993)",Documentary +364,3.7775,"Lion King, The (1994)",Adventure|Animation|Children|Drama|Musical|IMAX +365,3.0,Little Buddha (1993),Drama +366,3.272727272727273,"Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A) (1994)",Drama|Horror|Mystery|Thriller +367,3.070063694267516,"Mask, The (1994)",Action|Comedy|Crime|Fantasy +368,3.535211267605634,Maverick (1994),Adventure|Comedy|Western +369,3.0555555555555554,Mrs. Parker and the Vicious Circle (1994),Drama +370,3.0522388059701493,Naked Gun 33 1/3: The Final Insult (1994),Action|Comedy +371,3.25,"Paper, The (1994)",Comedy|Drama +372,3.0588235294117645,Reality Bites (1994),Comedy|Drama|Romance +373,4.138888888888889,Red Rock West (1992),Thriller +374,2.1,Richie Rich (1994),Children|Comedy +375,3.6666666666666665,Safe Passage (1994),Drama +376,3.425531914893617,"River Wild, The (1994)",Action|Thriller +377,3.566666666666667,Speed (1994),Action|Romance|Thriller +378,3.25,Speechless (1994),Comedy|Romance +379,3.261904761904762,Timecop (1994),Action|Sci-Fi|Thriller +380,3.515151515151515,True Lies (1994),Action|Adventure|Comedy|Romance|Thriller +381,3.1379310344827585,When a Man Loves a Woman (1994),Drama|Romance +382,3.1052631578947367,Wolf (1994),Drama|Horror|Romance|Thriller +383,3.1153846153846154,Wyatt Earp (1994),Western +384,3.25,Bad Company (1995),Action|Crime|Drama +387,3.6666666666666665,"Low Down Dirty Shame, A (1994)",Action|Comedy +388,3.6666666666666665,Boys Life (1995),Drama +389,4.0,"Colonel Chabert, Le (1994)",Drama|Romance|War +390,4.1,Faster Pussycat! Kill! Kill! (1965),Action|Crime|Drama +391,3.0,Jason's Lyric (1994),Crime|Drama +392,2.6666666666666665,"Secret Adventures of Tom Thumb, The (1993)",Adventure|Animation +393,2.1,Street Fighter (1994),Action|Adventure|Fantasy +401,4.0,Mirage (1995),Action|Thriller +405,2.3125,Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension) (1994),Action|Fantasy +407,3.05,In the Mouth of Madness (1995),Horror|Thriller +408,3.0,8 Seconds (1994),Drama +409,2.5,Above the Rim (1994),Crime|Drama +410,3.1506849315068495,Addams Family Values (1993),Children|Comedy|Fantasy +412,3.54,"Age of Innocence, The (1993)",Drama +413,2.3076923076923075,Airheads (1994),Comedy +414,2.5,"Air Up There, The (1994)",Comedy +415,2.8333333333333335,Another Stakeout (1993),Comedy|Thriller +416,3.25,Bad Girls (1994),Western +417,3.6153846153846154,Barcelona (1994),Comedy|Romance +418,3.0,Being Human (1993),Drama +419,2.6,"Beverly Hillbillies, The (1993)",Comedy +420,2.6315789473684212,Beverly Hills Cop III (1994),Action|Comedy|Crime|Thriller +421,3.0,Black Beauty (1994),Adventure|Children|Drama +422,3.7222222222222223,Blink (1994),Thriller +423,3.392857142857143,Blown Away (1994),Action|Thriller +424,3.0,Blue Chips (1994),Drama +425,3.875,Blue Sky (1994),Drama|Romance +426,3.1666666666666665,Body Snatchers (1993),Horror|Sci-Fi|Thriller +427,2.4285714285714284,Boxing Helena (1993),Drama|Mystery|Romance|Thriller +428,3.717391304347826,"Bronx Tale, A (1993)",Drama +429,2.5555555555555554,Cabin Boy (1994),Comedy +431,3.671875,Carlito's Way (1993),Crime|Drama +432,2.6507936507936507,City Slickers II: The Legend of Curly's Gold (1994),Adventure|Comedy|Western +433,2.857142857142857,Clean Slate (1994),Comedy +434,3.0849056603773586,Cliffhanger (1993),Action|Adventure|Thriller +435,2.463636363636364,Coneheads (1993),Comedy|Sci-Fi +436,2.2,Color of Night (1994),Drama|Thriller +437,2.75,Cops and Robbersons (1994),Comedy +438,3.0,"Cowboy Way, The (1994)",Action|Comedy|Drama +439,1.0,Dangerous Game (1993),Drama +440,3.561111111111111,Dave (1993),Comedy|Romance +441,3.6621621621621623,Dazed and Confused (1993),Comedy +442,2.968421052631579,Demolition Man (1993),Action|Adventure|Sci-Fi +443,2.6666666666666665,"Endless Summer 2, The (1994)",Adventure|Documentary +444,3.0,Even Cowgirls Get the Blues (1993),Comedy|Romance +445,3.111111111111111,Fatal Instinct (1993),Comedy +446,4.0,Farewell My Concubine (Ba wang bie ji) (1993),Drama|Romance +447,4.0,"Favor, The (1994)",Comedy|Romance +448,3.590909090909091,Fearless (1993),Drama +449,3.5,Fear of a Black Hat (1994),Comedy +450,3.4375,With Honors (1994),Comedy|Drama +451,3.4285714285714284,Flesh and Bone (1993),Drama|Mystery|Romance +452,4.0,Widows' Peak (1994),Drama +453,2.4,For Love or Money (1993),Comedy|Romance +454,3.4727272727272727,"Firm, The (1993)",Drama|Thriller +455,2.838709677419355,Free Willy (1993),Adventure|Children|Drama +456,3.3333333333333335,Fresh (1994),Crime|Drama|Thriller +457,3.9530516431924885,"Fugitive, The (1993)",Thriller +458,3.75,Geronimo: An American Legend (1993),Drama|Western +459,3.5,"Getaway, The (1994)",Action|Adventure|Crime|Drama|Romance|Thriller +460,2.5,Getting Even with Dad (1994),Comedy +461,3.3,Go Fish (1994),Drama|Romance +463,3.4285714285714284,Guilty as Sin (1993),Crime|Drama|Thriller +464,3.111111111111111,Hard Target (1993),Action|Adventure|Crime|Thriller +465,3.5,Heaven & Earth (1993),Action|Drama|War +466,3.169491525423729,Hot Shots! Part Deux (1993),Action|Comedy|War +467,3.3333333333333335,Live Nude Girls (1995),Comedy +468,3.303030303030303,"Englishman Who Went Up a Hill But Came Down a Mountain, The (1995)",Comedy|Romance +469,3.125,"House of the Spirits, The (1993)",Drama|Romance +470,2.0,House Party 3 (1994),Comedy +471,3.877551020408163,"Hudsucker Proxy, The (1994)",Comedy +472,3.5,I'll Do Anything (1994),Comedy|Drama +473,1.0,In the Army Now (1994),Comedy|War +474,3.8625,In the Line of Fire (1993),Action|Thriller +475,4.209677419354839,In the Name of the Father (1993),Drama +476,4.0,"Inkwell, The (1994)",Comedy|Drama +477,3.59375,What's Love Got to Do with It? (1993),Drama|Musical +479,3.25,Judgment Night (1993),Action|Crime|Thriller +480,3.7062043795620436,Jurassic Park (1993),Action|Adventure|Sci-Fi|Thriller +481,3.34375,Kalifornia (1993),Drama|Thriller +482,2.85,Killing Zoe (1994),Crime|Drama|Thriller +483,2.75,King of the Hill (1993),Drama +484,2.75,Lassie (1994),Adventure|Children +485,2.8867924528301887,Last Action Hero (1993),Action|Adventure|Comedy|Fantasy +486,2.5,Life with Mikey (1993),Comedy +487,3.5,Lightning Jack (1994),Comedy|Western +488,3.125,M. Butterfly (1993),Drama|Romance +489,2.625,Made in America (1993),Comedy +490,3.4285714285714284,Malice (1993),Thriller +491,3.2857142857142856,"Man Without a Face, The (1993)",Drama +492,3.738095238095238,Manhattan Murder Mystery (1993),Comedy|Mystery +493,3.3043478260869565,Menace II Society (1993),Action|Crime|Drama +494,3.4754098360655736,Executive Decision (1996),Action|Adventure|Thriller +495,3.8125,In the Realm of the Senses (Ai no corrida) (1976),Drama +496,2.6666666666666665,What Happened Was... (1994),Comedy|Drama|Romance|Thriller +497,3.9833333333333334,Much Ado About Nothing (1993),Comedy|Romance +498,2.6666666666666665,Mr. Jones (1993),Drama|Romance +499,3.0,Mr. Wonderful (1993),Comedy|Romance +500,3.4673202614379086,Mrs. Doubtfire (1993),Comedy|Drama +501,4.1,Naked (1993),Drama +502,2.4375,"Next Karate Kid, The (1994)",Action|Children|Romance +504,3.2,No Escape (1994),Action|Drama|Sci-Fi +505,2.7142857142857144,North (1994),Comedy +506,3.111111111111111,Orlando (1992),Drama|Fantasy|Romance +507,3.5,"Perfect World, A (1993)",Crime|Drama|Thriller +508,3.6686046511627906,Philadelphia (1993),Drama +509,3.75,"Piano, The (1993)",Drama|Romance +510,2.3,Poetic Justice (1993),Drama +511,3.0,"Program, The (1993)",Action|Drama +512,3.5,"Puppet Masters, The (1994)",Horror|Sci-Fi +513,2.5,Radioland Murders (1994),Comedy|Mystery|Romance +514,3.6470588235294117,"Ref, The (1994)",Comedy +515,4.043478260869565,"Remains of the Day, The (1993)",Drama|Romance +516,2.923076923076923,Renaissance Man (1994),Comedy|Drama +517,3.09375,Rising Sun (1993),Action|Drama|Mystery +518,2.1363636363636362,"Road to Wellville, The (1994)",Comedy +519,2.3958333333333335,RoboCop 3 (1993),Action|Crime|Drama|Sci-Fi|Thriller +520,3.0615384615384613,Robin Hood: Men in Tights (1993),Comedy +521,3.6,Romeo Is Bleeding (1993),Crime|Thriller +522,2.8333333333333335,Romper Stomper (1992),Action|Drama +523,3.3333333333333335,Ruby in Paradise (1993),Drama +524,3.5555555555555554,Rudy (1993),Drama +526,1.0,"Savage Nights (Nuits fauves, Les) (1992)",Drama +527,4.30327868852459,Schindler's List (1993),Drama|War +528,2.5,"Scout, The (1994)",Comedy|Drama +529,3.933333333333333,Searching for Bobby Fischer (1993),Drama +531,3.564516129032258,"Secret Garden, The (1993)",Children|Drama +532,3.25,Serial Mom (1994),Comedy|Crime|Horror +533,3.3333333333333335,"Shadow, The (1994)",Action|Adventure|Fantasy|Mystery +534,4.2,Shadowlands (1993),Drama|Romance +535,3.8846153846153846,Short Cuts (1993),Drama +536,2.25,"Simple Twist of Fate, A (1994)",Drama +537,3.05,Sirens (1994),Drama +538,3.9,Six Degrees of Separation (1993),Drama +539,3.428,Sleepless in Seattle (1993),Comedy|Drama|Romance +540,2.6944444444444446,Sliver (1993),Thriller +541,4.037671232876712,Blade Runner (1982),Action|Sci-Fi|Thriller +542,2.736842105263158,Son in Law (1993),Comedy|Drama|Romance +543,3.3461538461538463,So I Married an Axe Murderer (1993),Comedy|Romance|Thriller +544,2.611111111111111,Striking Distance (1993),Action|Crime +546,1.7352941176470589,Super Mario Bros. (1993),Action|Adventure|Children|Comedy|Fantasy|Sci-Fi +547,3.0,Surviving the Game (1994),Action|Adventure|Thriller +548,3.0,Terminal Velocity (1994),Action|Mystery|Thriller +549,4.125,Thirty-Two Short Films About Glenn Gould (1993),Drama|Musical +550,3.272727272727273,Threesome (1994),Comedy|Romance +551,3.65,"Nightmare Before Christmas, The (1993)",Animation|Children|Fantasy|Musical +552,3.14,"Three Musketeers, The (1993)",Action|Adventure|Comedy|Romance +553,3.482456140350877,Tombstone (1993),Action|Drama|Western +554,3.0,Trial by Jury (1994),Crime|Drama|Thriller +555,3.8857142857142857,True Romance (1993),Crime|Thriller +556,3.9,"War Room, The (1993)",Documentary +558,2.6666666666666665,"Pagemaster, The (1994)",Action|Adventure|Animation|Children|Fantasy +559,5.0,"Paris, France (1993)",Comedy +561,3.0,Killer (Bulletproof Heart) (1994),Drama|Thriller +562,3.716666666666667,Welcome to the Dollhouse (1995),Comedy|Drama +563,3.0,Germinal (1993),Drama|Romance +564,3.0,Chasers (1994),Comedy +565,4.5,Cronos (1993),Drama|Horror +567,4.0,Kika (1993),Comedy|Drama +568,3.5,Bhaji on the Beach (1993),Comedy|Drama +569,2.5,Little Big League (1994),Comedy|Drama +571,4.0,"Wedding Gift, The (1994)",Drama|Romance +573,1.0,"Ciao, Professore! (Io speriamo che me la cavo) (1992)",Drama +574,3.3333333333333335,Spanking the Monkey (1994),Comedy|Drama +575,3.5714285714285716,"Little Rascals, The (1994)",Children|Comedy +577,2.0,Andre (1994),Adventure|Children|Drama +580,3.0,Princess Caraboo (1994),Drama +581,4.235294117647059,"Celluloid Closet, The (1995)",Documentary +582,4.0,Métisse (Café au Lait) (1993),Comedy|Drama +585,3.073170731707317,"Brady Bunch Movie, The (1995)",Comedy +586,3.112403100775194,Home Alone (1990),Children|Comedy +587,3.3253968253968256,Ghost (1990),Comedy|Drama|Fantasy|Romance|Thriller +588,3.6744186046511627,Aladdin (1992),Adventure|Animation|Children|Comedy|Musical +589,4.006329113924051,Terminator 2: Judgment Day (1991),Action|Sci-Fi +590,3.717821782178218,Dances with Wolves (1990),Adventure|Drama|Western +592,3.3979591836734695,Batman (1989),Action|Crime|Thriller +593,4.1381578947368425,"Silence of the Lambs, The (1991)",Crime|Horror|Thriller +594,3.6619718309859155,Snow White and the Seven Dwarfs (1937),Animation|Children|Drama|Fantasy|Musical +595,3.75,Beauty and the Beast (1991),Animation|Children|Fantasy|Musical|Romance|IMAX +596,3.5833333333333335,Pinocchio (1940),Animation|Children|Fantasy|Musical +597,3.360544217687075,Pretty Woman (1990),Comedy|Romance +599,4.035714285714286,"Wild Bunch, The (1969)",Adventure|Western +600,4.0,Love and a .45 (1994),Action|Comedy|Crime +603,3.0,"Bye Bye, Love (1995)",Comedy +605,3.3421052631578947,One Fine Day (1996),Drama|Romance +606,2.75,Candyman: Farewell to the Flesh (1995),Fantasy|Horror +608,4.256696428571429,Fargo (1996),Comedy|Crime|Drama|Thriller +609,3.107142857142857,Homeward Bound II: Lost in San Francisco (1996),Adventure|Children +610,3.3484848484848486,Heavy Metal (1981),Action|Adventure|Animation|Horror|Sci-Fi +611,3.0,Hellraiser: Bloodline (1996),Action|Horror|Sci-Fi +612,2.6666666666666665,"Pallbearer, The (1996)",Comedy +613,3.5,Jane Eyre (1996),Drama|Romance +614,1.5,Loaded (1994),Drama|Thriller +615,3.5,Bread and Chocolate (Pane e cioccolata) (1973),Comedy|Drama +616,3.4642857142857144,"Aristocats, The (1970)",Animation|Children +617,1.0,"Flower of My Secret, The (La flor de mi secreto) (1995)",Comedy|Drama +619,2.125,Ed (1996),Comedy +620,3.25,Scream of Stone (Cerro Torre: Schrei aus Stein) (1991),Drama +621,3.3333333333333335,My Favorite Season (1993),Drama +626,2.0,"Thin Line Between Love and Hate, A (1996)",Comedy +627,3.3333333333333335,"Last Supper, The (1995)",Drama|Thriller +628,3.88,Primal Fear (1996),Crime|Drama|Mystery|Thriller +630,3.5,Carried Away (1996),Drama|Romance +631,3.25,All Dogs Go to Heaven 2 (1996),Adventure|Animation|Children|Fantasy|Musical|Romance +632,4.5,Land and Freedom (Tierra y libertad) (1995),Drama|War +633,4.0,Denise Calls Up (1995),Comedy +635,3.857142857142857,"Family Thing, A (1996)",Comedy|Drama +637,2.7586206896551726,Sgt. Bilko (1996),Comedy +638,4.0,Jack and Sarah (1995),Romance +639,3.2,Girl 6 (1996),Comedy|Drama +640,3.3333333333333335,Diabolique (1996),Drama|Thriller +647,3.629032258064516,Courage Under Fire (1996),Action|Crime|Drama|War +648,3.5327380952380953,Mission: Impossible (1996),Action|Adventure|Mystery|Thriller +650,3.1875,Moll Flanders (1996),Drama +651,1.0,"Superweib, Das (1996)",Comedy +653,3.1129032258064515,Dragonheart (1996),Action|Adventure|Fantasy +656,3.0,Eddie (1996),Comedy +659,4.25,Purple Noon (Plein soleil) (1960),Crime|Drama|Thriller +661,3.6320754716981134,James and the Giant Peach (1996),Adventure|Animation|Children|Fantasy|Musical +662,3.111111111111111,Fear (1996),Thriller +663,3.411764705882353,Kids in the Hall: Brain Candy (1996),Comedy +664,3.5,Faithful (1996),Comedy +665,3.4,Underground (1995),Comedy|Drama|War +667,3.6666666666666665,Bloodsport 2 (a.k.a. Bloodsport II: The Next Kumite) (1996),Action +668,4.0,Song of the Little Road (Pather Panchali) (1955),Drama +670,3.1666666666666665,"World of Apu, The (Apur Sansar) (1959)",Drama +671,4.03030303030303,Mystery Science Theater 3000: The Movie (1996),Comedy|Sci-Fi +673,2.68,Space Jam (1996),Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi +674,2.6904761904761907,Barbarella (1968),Adventure|Comedy|Sci-Fi +678,3.8333333333333335,Some Folks Call It a Sling Blade (1993),Drama|Thriller +679,4.0,"Run of the Country, The (1995)",Drama +680,3.9166666666666665,"Alphaville (Alphaville, une étrange aventure de Lemmy Caution) (1965)",Drama|Mystery|Romance|Sci-Fi|Thriller +681,3.0,Coup de torchon (Clean Slate) (1981),Crime +685,3.125,It's My Party (1996),Drama +687,3.0,Country Life (1994),Drama|Romance +688,2.45,Operation Dumbo Drop (1995),Action|Adventure|Comedy|War +690,4.0,"Promise, The (Versprechen, Das) (1995)",Drama|Romance +691,3.357142857142857,Mrs. Winterbourne (1996),Comedy|Romance +692,2.0,Solo (1996),Action|Sci-Fi|Thriller +694,2.85,"Substitute, The (1996)",Action|Crime|Drama +695,4.0,True Crime (1996),Mystery|Thriller +696,2.0,Butterfly Kiss (1995),Drama|Thriller +697,3.3333333333333335,Feeling Minnesota (1996),Drama|Romance +698,3.0,Delta of Venus (1995),Drama +700,3.142857142857143,Angus (1995),Comedy +702,5.0,Faces (1968),Drama +703,3.0,Boys (1996),Drama +704,3.0,"Quest, The (1996)",Action|Adventure +705,2.8333333333333335,Cosi (1996),Comedy +707,3.111111111111111,Mulholland Falls (1996),Crime|Drama|Thriller +708,3.401639344262295,"Truth About Cats & Dogs, The (1996)",Comedy|Romance +709,2.875,Oliver & Company (1988),Adventure|Animation|Children|Comedy|Musical +710,1.5,Celtic Pride (1996),Comedy +711,3.2222222222222223,Flipper (1996),Adventure|Children +714,3.5454545454545454,Dead Man (1995),Drama|Mystery|Western +715,2.6666666666666665,"Horseman on the Roof, The (Hussard sur le toit, Le) (1995)",Drama|Romance +718,3.0,"Visitors, The (Visiteurs, Les) (1993)",Comedy|Fantasy|Sci-Fi +719,2.8088235294117645,Multiplicity (1996),Comedy +720,4.0,Wallace & Gromit: The Best of Aardman Animation (1996),Adventure|Animation|Comedy +721,4.0,Halfmoon (Paul Bowles - Halbmond) (1995),Drama +722,4.0,"Haunted World of Edward D. Wood Jr., The (1996)",Documentary +724,3.111111111111111,"Craft, The (1996)",Drama|Fantasy|Horror|Thriller +725,2.375,"Great White Hype, The (1996)",Comedy +726,3.0,Last Dance (1996),Drama +728,3.96875,Cold Comfort Farm (1995),Comedy +731,2.75,Heaven's Prisoners (1996),Crime|Thriller +733,3.737037037037037,"Rock, The (1996)",Action|Adventure|Thriller +735,4.125,Cemetery Man (Dellamorte Dellamore) (1994),Horror +736,3.25,Twister (1996),Action|Adventure|Romance|Thriller +737,2.3666666666666667,Barb Wire (1996),Action|Sci-Fi +741,4.148148148148148,Ghost in the Shell (Kôkaku kidôtai) (1995),Animation|Sci-Fi +742,2.75,Thinner (1996),Horror|Thriller +743,2.6818181818181817,Spy Hard (1996),Comedy +745,4.193548387096774,Wallace & Gromit: A Close Shave (1995),Animation|Children|Comedy +746,2.0,Force of Evil (1948),Film-Noir +747,2.75,"Stupids, The (1996)",Comedy +748,3.272727272727273,"Arrival, The (1996)",Action|Sci-Fi|Thriller +750,4.20952380952381,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964),Comedy|War +753,3.5,"Month by the Lake, A (1995)",Comedy|Drama|Romance +754,3.6666666666666665,Gold Diggers: The Secret of Bear Mountain (1995),Adventure|Children +755,2.0,Kim (1950),Children|Drama +756,3.0,Carmen Miranda: Bananas Is My Business (1994),Documentary +757,4.0,Ashes of Time (Dung che sai duk) (1994),Drama +759,5.0,Maya Lin: A Strong Clear Vision (1994),Documentary +760,3.3333333333333335,Stalingrad (1993),Drama|War +761,3.111111111111111,"Phantom, The (1996)",Action|Adventure +762,2.4615384615384617,Striptease (1996),Comedy|Crime +764,5.0,Heavy (1995),Drama|Romance +765,2.8055555555555554,Jack (1996),Comedy|Drama +766,4.222222222222222,I Shot Andy Warhol (1996),Drama +767,4.0,"Grass Harp, The (1995)",Comedy|Drama +769,3.0,Marlene Dietrich: Shadow and Light (1996),Documentary +775,2.0,Spirits of the Dead (1968),Horror|Mystery +778,4.141129032258065,Trainspotting (1996),Comedy|Crime|Drama +779,2.625,'Til There Was You (1997),Drama|Romance +780,3.4839449541284404,Independence Day (a.k.a. ID4) (1996),Action|Adventure|Sci-Fi|Thriller +781,3.75,Stealing Beauty (1996),Drama +782,3.3333333333333335,"Fan, The (1996)",Drama|Thriller +783,3.357142857142857,"Hunchback of Notre Dame, The (1996)",Animation|Children|Drama|Musical|Romance +784,2.5508474576271185,"Cable Guy, The (1996)",Comedy|Thriller +785,3.3333333333333335,Kingpin (1996),Comedy +786,3.108695652173913,Eraser (1996),Action|Drama|Thriller +787,4.5,"Gate of Heavenly Peace, The (1995)",Documentary +788,3.0808823529411766,"Nutty Professor, The (1996)",Comedy|Fantasy|Romance|Sci-Fi +793,4.0,My Life and Times With Antonin Artaud (En compagnie d'Antonin Artaud) (1993),Drama +798,3.4166666666666665,Daylight (1996),Action|Adventure|Drama|Thriller +799,3.2291666666666665,"Frighteners, The (1996)",Comedy|Horror|Thriller +800,4.071428571428571,Lone Star (1996),Drama|Mystery|Western +801,3.2083333333333335,Harriet the Spy (1996),Children|Comedy +802,3.326388888888889,Phenomenon (1996),Drama|Romance +803,4.25,Walking and Talking (1996),Comedy|Drama|Romance +804,2.892857142857143,She's the One (1996),Comedy|Romance +805,3.7653061224489797,"Time to Kill, A (1996)",Drama|Thriller +806,2.888888888888889,American Buffalo (1996),Crime|Drama +808,3.25,Alaska (1996),Adventure|Children +809,2.75,Fled (1996),Action|Adventure +810,2.0,Kazaam (1996),Children|Comedy|Fantasy +813,2.6666666666666665,Larger Than Life (1996),Comedy +816,3.0,Two Deaths (1995),Drama +818,2.607142857142857,"Very Brady Sequel, A (1996)",Comedy +820,5.0,"Death in the Garden (Mort en ce jardin, La) (1956)",Drama +824,3.0,Kaspar Hauser (1993),Drama|Mystery +828,3.375,"Adventures of Pinocchio, The (1996)",Adventure|Children +829,1.0,Joe's Apartment (1996),Comedy|Fantasy|Musical +830,3.1346153846153846,"First Wives Club, The (1996)",Comedy +831,3.5,Stonewall (1995),Drama +832,3.5657894736842106,Ransom (1996),Crime|Thriller +833,2.625,High School High (1996),Comedy +834,3.0,Phat Beach (1996),Comedy +835,3.1666666666666665,Foxfire (1996),Drama +836,2.576923076923077,Chain Reaction (1996),Action|Adventure|Thriller +837,3.6666666666666665,Matilda (1996),Children|Comedy|Fantasy +838,3.817073170731707,Emma (1996),Comedy|Drama|Romance +839,3.272727272727273,"Crow: City of Angels, The (1996)",Action|Thriller +840,3.5,House Arrest (1996),Children|Comedy +841,3.7142857142857144,"Eyes Without a Face (Yeux sans visage, Les) (1959)",Horror +842,2.3333333333333335,Tales from the Crypt Presents: Bordello of Blood (1996),Comedy|Horror +844,3.0,"Story of Xinghua, The (Xinghua san yue tian) (1994)",Drama +845,5.0,"Day the Sun Turned Cold, The (Tianguo niezi) (1994)",Drama +846,4.0,Flirt (1995),Drama +848,3.4545454545454546,"Spitfire Grill, The (1996)",Drama +849,2.6964285714285716,Escape from L.A. (1996),Action|Adventure|Sci-Fi|Thriller +850,4.5,Cyclo (Xich lo) (1995),Crime|Drama +851,3.0,Basquiat (1996),Drama +852,3.2596153846153846,Tin Cup (1996),Comedy|Drama|Romance +854,4.0,"Ballad of Narayama, The (Narayama Bushiko) (1958)",Drama +858,4.4875,"Godfather, The (1972)",Crime|Drama +861,3.5,Supercop (Police Story 3: Supercop) (Jing cha gu shi III: Chao ji jing cha) (1992),Action|Comedy|Crime|Thriller +864,3.5,"Wife, The (1995)",Comedy|Drama +865,4.0,Small Faces (1996),Drama +866,3.8703703703703702,Bound (1996),Crime|Drama|Romance|Thriller +867,3.0,Carpool (1996),Comedy|Crime +869,2.75,Kansas City (1996),Crime|Drama|Musical|Thriller +870,1.6666666666666667,Gone Fishin' (1997),Comedy +872,5.0,Vive L'Amour (Ai qing wan sui) (1994),Drama +875,4.0,Nothing to Lose (1994),Action|Crime|Drama +876,5.0,Supercop 2 (Project S) (Chao ji ji hua) (1993),Action|Comedy|Crime|Thriller +879,3.3,"Relic, The (1997)",Horror|Thriller +880,2.38,"Island of Dr. Moreau, The (1996)",Sci-Fi|Thriller +881,3.0,First Kid (1996),Children|Comedy +882,2.6666666666666665,"Trigger Effect, The (1996)",Drama|Thriller +885,2.0,Bogus (1996),Children|Drama|Fantasy +886,1.5,Bulletproof (1996),Action|Comedy|Crime +889,4.0,1-900 (06) (1994),Drama|Romance +891,2.2222222222222223,Halloween: The Curse of Michael Myers (Halloween 6: The Curse of Michael Myers) (1995),Horror|Thriller +892,3.7857142857142856,Twelfth Night (1996),Comedy|Drama|Romance +893,4.666666666666667,Mother Night (1996),Drama +896,3.6666666666666665,Wild Reeds (Les roseaux sauvages) (1994),Drama +897,3.625,For Whom the Bell Tolls (1943),Adventure|Drama|Romance|War +898,4.351351351351352,"Philadelphia Story, The (1940)",Comedy|Drama|Romance +899,4.1953125,Singin' in the Rain (1952),Comedy|Musical|Romance +900,3.9545454545454546,"American in Paris, An (1951)",Musical|Romance +901,3.9166666666666665,Funny Face (1957),Comedy|Musical +902,3.590909090909091,Breakfast at Tiffany's (1961),Drama|Romance +903,4.22463768115942,Vertigo (1958),Drama|Mystery|Romance|Thriller +904,4.315217391304348,Rear Window (1954),Mystery|Thriller +905,4.38,It Happened One Night (1934),Comedy|Romance +906,3.6538461538461537,Gaslight (1944),Drama|Thriller +907,4.090909090909091,"Gay Divorcee, The (1934)",Comedy|Musical|Romance +908,4.2701149425287355,North by Northwest (1959),Action|Adventure|Mystery|Romance|Thriller +909,3.803030303030303,"Apartment, The (1960)",Comedy|Drama|Romance +910,3.946969696969697,Some Like It Hot (1959),Comedy|Crime +911,4.111111111111111,Charade (1963),Comedy|Crime|Mystery|Romance|Thriller +912,4.235042735042735,Casablanca (1942),Drama|Romance +913,4.387096774193548,"Maltese Falcon, The (1941)",Film-Noir|Mystery +914,3.6470588235294117,My Fair Lady (1964),Comedy|Drama|Musical|Romance +915,3.891304347826087,Sabrina (1954),Comedy|Romance +916,4.019230769230769,Roman Holiday (1953),Comedy|Drama|Romance +917,3.6875,"Little Princess, The (1939)",Children|Drama +918,3.5714285714285716,Meet Me in St. Louis (1944),Musical +919,3.9572649572649574,"Wizard of Oz, The (1939)",Adventure|Children|Fantasy|Musical +920,4.044117647058823,Gone with the Wind (1939),Drama|Romance|War +921,3.9,My Favorite Year (1982),Comedy +922,4.294871794871795,Sunset Blvd. (a.k.a. Sunset Boulevard) (1950),Drama|Film-Noir|Romance +923,4.2,Citizen Kane (1941),Drama|Mystery +924,3.886178861788618,2001: A Space Odyssey (1968),Adventure|Drama|Sci-Fi +926,4.434210526315789,All About Eve (1950),Drama +927,4.5,"Women, The (1939)",Comedy +928,4.173913043478261,Rebecca (1940),Drama|Mystery|Romance|Thriller +929,3.8,Foreign Correspondent (1940),Drama|Film-Noir|Mystery|Thriller +930,4.119047619047619,Notorious (1946),Film-Noir|Romance|Thriller +931,3.8125,Spellbound (1945),Mystery|Romance|Thriller +932,3.59375,"Affair to Remember, An (1957)",Drama|Romance +933,3.9655172413793105,To Catch a Thief (1955),Crime|Mystery|Romance|Thriller +934,3.5833333333333335,Father of the Bride (1950),Comedy +935,4.083333333333333,"Band Wagon, The (1953)",Comedy|Musical +936,3.6923076923076925,Ninotchka (1939),Comedy|Romance +937,3.8,Love in the Afternoon (1957),Comedy|Romance +938,3.8181818181818183,Gigi (1958),Musical +939,4.0,"Reluctant Debutante, The (1958)",Comedy|Drama +940,3.9722222222222223,"Adventures of Robin Hood, The (1938)",Action|Adventure|Romance +941,3.875,"Mark of Zorro, The (1940)",Adventure +942,3.8846153846153846,Laura (1944),Crime|Film-Noir|Mystery +943,4.0,"Ghost and Mrs. Muir, The (1947)",Drama|Fantasy|Romance +944,3.0,Lost Horizon (1937),Drama +945,4.0,Top Hat (1935),Comedy|Musical|Romance +946,4.3,To Be or Not to Be (1942),Comedy|Drama|War +947,3.6818181818181817,My Man Godfrey (1936),Comedy|Romance +948,3.590909090909091,Giant (1956),Drama|Romance|Western +949,3.59375,East of Eden (1955),Drama +950,4.205882352941177,"Thin Man, The (1934)",Comedy|Crime +951,4.211538461538462,His Girl Friday (1940),Comedy|Romance +952,3.357142857142857,Around the World in 80 Days (1956),Adventure|Comedy +953,4.152777777777778,It's a Wonderful Life (1946),Children|Drama|Fantasy|Romance +954,4.225806451612903,Mr. Smith Goes to Washington (1939),Drama +955,4.066666666666666,Bringing Up Baby (1938),Comedy|Romance +956,3.1666666666666665,Penny Serenade (1941),Drama|Romance +957,4.0,"Scarlet Letter, The (1926)",Drama +960,2.5,Angel on My Shoulder (1946),Crime|Drama +961,5.0,Little Lord Fauntleroy (1936),Drama +962,3.0,They Made Me a Criminal (1939),Crime|Drama +963,3.0,"Inspector General, The (1949)",Musical +964,2.5,Angel and the Badman (1947),Romance|Western +965,3.84375,"39 Steps, The (1935)",Drama|Mystery|Thriller +966,4.0,A Walk in the Sun (1945),Drama|War +968,4.111111111111111,Night of the Living Dead (1968),Horror|Sci-Fi|Thriller +969,4.42,"African Queen, The (1951)",Adventure|Comedy|Romance|War +970,3.5,Beat the Devil (1953),Adventure|Comedy|Crime|Drama|Romance +971,3.7941176470588234,Cat on a Hot Tin Roof (1958),Drama +972,2.5,"Last Time I Saw Paris, The (1954)",Drama +973,4.285714285714286,Meet John Doe (1941),Comedy|Drama +976,3.0,"Farewell to Arms, A (1932)",Romance|War +980,1.0,"Yes, Madam (a.k.a. Police Assassins) (a.k.a. In the Line of Duty 2) (Huang gu shi jie) (1985)",Action +981,1.0,Dangerous Ground (1997),Drama +982,3.0,Picnic (1955),Drama +984,4.5,"Pompatus of Love, The (1996)",Comedy|Drama +986,3.5357142857142856,Fly Away Home (1996),Adventure|Children +987,3.0,Bliss (1997),Drama|Romance +988,3.75,Grace of My Heart (1996),Comedy|Drama +990,2.5,Maximum Risk (1996),Action|Adventure|Thriller +991,3.5,Michael Collins (1996),Drama +992,2.5,"Rich Man's Wife, The (1996)",Thriller +994,4.25,Big Night (1996),Comedy|Drama +996,3.25,Last Man Standing (1996),Action|Crime|Drama|Thriller +997,2.6666666666666665,Caught (1996),Drama|Thriller +998,3.6666666666666665,Set It Off (1996),Action|Crime +999,3.34375,2 Days in the Valley (1996),Crime|Film-Noir +1003,3.0,Extreme Measures (1996),Drama|Thriller +1004,2.5,"Glimmer Man, The (1996)",Action|Thriller +1005,2.5,D3: The Mighty Ducks (1996),Children|Comedy +1006,3.0,"Chamber, The (1996)",Drama +1007,2.727272727272727,"Apple Dumpling Gang, The (1975)",Children|Comedy|Western +1008,3.5,"Davy Crockett, King of the Wild Frontier (1955)",Adventure|Western +1009,3.25,Escape to Witch Mountain (1975),Adventure|Children|Fantasy +1010,3.0294117647058822,"Love Bug, The (1969)",Children|Comedy +1011,3.611111111111111,Herbie Rides Again (1974),Children|Comedy|Fantasy|Romance +1012,3.6052631578947367,Old Yeller (1957),Children|Drama +1013,3.380952380952381,"Parent Trap, The (1961)",Children|Comedy|Romance +1014,3.3,Pollyanna (1960),Children|Comedy|Drama +1015,3.260869565217391,Homeward Bound: The Incredible Journey (1993),Adventure|Children|Drama +1016,3.1,"Shaggy Dog, The (1959)",Children|Comedy +1017,3.264705882352941,Swiss Family Robinson (1960),Adventure|Children +1018,3.4,That Darn Cat! (1965),Children|Comedy|Mystery +1019,3.6621621621621623,"20,000 Leagues Under the Sea (1954)",Adventure|Drama|Sci-Fi +1020,3.3275862068965516,Cool Runnings (1993),Comedy +1021,3.1785714285714284,Angels in the Outfield (1994),Children|Comedy +1022,3.5636363636363635,Cinderella (1950),Animation|Children|Fantasy|Musical|Romance +1023,4.088235294117647,Winnie the Pooh and the Blustery Day (1968),Animation|Children|Musical +1024,3.25,"Three Caballeros, The (1945)",Animation|Children|Musical +1025,3.5961538461538463,"Sword in the Stone, The (1963)",Animation|Children|Fantasy|Musical +1026,2.5,So Dear to My Heart (1949),Children|Drama +1027,3.1136363636363638,Robin Hood: Prince of Thieves (1991),Adventure|Drama +1028,3.8141025641025643,Mary Poppins (1964),Children|Comedy|Fantasy|Musical +1029,3.7023809523809526,Dumbo (1941),Animation|Children|Drama|Musical +1030,3.2222222222222223,Pete's Dragon (1977),Adventure|Animation|Children|Musical +1031,3.5,Bedknobs and Broomsticks (1971),Adventure|Children|Musical +1032,3.6122448979591835,Alice in Wonderland (1951),Adventure|Animation|Children|Fantasy|Musical +1033,3.5238095238095237,"Fox and the Hound, The (1981)",Animation|Children|Drama +1034,3.95,Freeway (1996),Comedy|Crime|Drama|Thriller +1035,3.94375,"Sound of Music, The (1965)",Musical|Romance +1036,3.8642384105960264,Die Hard (1988),Action|Crime|Thriller +1037,2.8333333333333335,"Lawnmower Man, The (1992)",Action|Horror|Sci-Fi|Thriller +1040,4.0,"Secret Agent, The (1996)",Drama +1041,3.8653846153846154,Secrets & Lies (1996),Drama +1042,3.489795918367347,That Thing You Do! (1996),Comedy|Drama +1043,2.375,To Gillian on Her 37th Birthday (1996),Drama|Romance +1044,3.0,Surviving Picasso (1996),Drama +1046,3.875,Beautiful Thing (1996),Drama|Romance +1047,3.216666666666667,"Long Kiss Goodnight, The (1996)",Action|Drama|Thriller +1049,3.619047619047619,"Ghost and the Darkness, The (1996)",Action|Adventure +1050,3.5555555555555554,Looking for Richard (1996),Documentary|Drama +1051,3.0,Trees Lounge (1996),Drama +1053,2.0,Normal Life (1996),Crime|Drama|Romance +1054,1.5,Get on the Bus (1996),Drama +1055,2.0,Shadow Conspiracy (1997),Thriller +1056,4.0,Jude (1996),Drama +1057,3.823529411764706,Everyone Says I Love You (1996),Comedy|Musical|Romance +1059,3.5258620689655173,William Shakespeare's Romeo + Juliet (1996),Drama|Romance +1060,4.226190476190476,Swingers (1996),Comedy|Drama +1061,3.5454545454545454,Sleepers (1996),Thriller +1063,4.333333333333333,Johns (1996),Drama +1066,4.409090909090909,Shall We Dance (1937),Comedy|Musical|Romance +1067,4.0,"Damsel in Distress, A (1937)",Comedy|Musical|Romance +1068,3.5,Crossfire (1947),Crime|Film-Noir +1069,3.6666666666666665,"Murder, My Sweet (1944)",Crime|Film-Noir|Thriller +1073,3.7533783783783785,Willy Wonka & the Chocolate Factory (1971),Children|Comedy|Fantasy|Musical +1076,3.75,"Innocents, The (1961)",Drama|Horror|Thriller +1077,4.051282051282051,Sleeper (1973),Comedy|Sci-Fi +1078,3.8421052631578947,Bananas (1971),Comedy|War +1079,3.9719101123595504,"Fish Called Wanda, A (1988)",Comedy|Crime +1080,3.857142857142857,Monty Python's Life of Brian (1979),Comedy +1081,3.6724137931034484,Victor/Victoria (1982),Comedy|Musical|Romance +1082,3.6875,"Candidate, The (1972)",Drama +1083,3.0,"Great Race, The (1965)",Comedy|Musical +1084,3.875,Bonnie and Clyde (1967),Crime|Drama +1085,3.5,"Old Man and the Sea, The (1958)",Adventure|Drama +1086,3.9423076923076925,Dial M for Murder (1954),Crime|Mystery|Thriller +1087,3.75,Madame Butterfly (1995),Musical +1088,3.358490566037736,Dirty Dancing (1987),Drama|Musical|Romance +1089,4.162878787878788,Reservoir Dogs (1992),Crime|Mystery|Thriller +1090,3.9338235294117645,Platoon (1986),Drama|War +1091,2.6296296296296298,Weekend at Bernie's (1989),Comedy +1092,3.294642857142857,Basic Instinct (1992),Crime|Mystery|Thriller +1093,3.111111111111111,"Doors, The (1991)",Drama +1094,3.92,"Crying Game, The (1992)",Drama|Romance|Thriller +1095,3.8703703703703702,Glengarry Glen Ross (1992),Drama +1096,4.038461538461538,Sophie's Choice (1982),Drama +1097,3.76875,E.T. the Extra-Terrestrial (1982),Children|Drama|Sci-Fi +1099,3.5454545454545454,"Christmas Carol, A (1938)",Children|Drama|Fantasy +1100,2.5789473684210527,Days of Thunder (1990),Action|Drama|Romance +1101,3.324324324324324,Top Gun (1986),Action|Romance +1103,3.9375,Rebel Without a Cause (1955),Drama +1104,3.9125,"Streetcar Named Desire, A (1951)",Drama +1105,1.75,Children of the Corn IV: The Gathering (1996),Horror +1111,3.9375,Microcosmos (Microcosmos: Le peuple de l'herbe) (1996),Documentary +1112,3.6666666666666665,Palookaville (1996),Action|Comedy|Drama +1113,2.4285714285714284,"Associate, The (1996)",Comedy +1114,3.1666666666666665,"Funeral, The (1996)",Crime|Drama +1120,3.621212121212121,"People vs. Larry Flynt, The (1996)",Comedy|Drama +1123,4.0,"Perfect Candidate, A (1996)",Documentary +1124,3.607142857142857,On Golden Pond (1981),Drama +1125,3.4107142857142856,"Return of the Pink Panther, The (1975)",Comedy|Crime +1126,2.727272727272727,Drop Dead Fred (1991),Comedy|Fantasy +1127,3.612676056338028,"Abyss, The (1989)",Action|Adventure|Sci-Fi|Thriller +1128,3.4166666666666665,"Fog, The (1980)",Horror +1129,3.3125,Escape from New York (1981),Action|Adventure|Sci-Fi|Thriller +1130,3.75,"Howling, The (1980)",Horror|Mystery +1131,4.088235294117647,Jean de Florette (1986),Drama|Mystery +1132,3.65625,Manon of the Spring (Manon des sources) (1986),Drama +1133,3.0,Talking About Sex (1994),Comedy|Drama +1135,3.347826086956522,Private Benjamin (1980),Comedy +1136,4.224137931034483,Monty Python and the Holy Grail (1975),Adventure|Comedy|Fantasy +1137,4.0,Hustler White (1996),Romance +1145,3.0,Snowriders (1996),Documentary +1147,4.4375,When We Were Kings (1996),Documentary +1148,4.093333333333334,Wallace & Gromit: The Wrong Trousers (1993),Animation|Children|Comedy|Crime +1150,3.8,"Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)",Drama +1151,4.0,Lesson Faust (1994),Animation|Comedy|Drama|Fantasy +1152,3.0,He Walked by Night (1948),Crime|Film-Noir|Thriller +1153,3.0,Raw Deal (1948),Film-Noir +1154,1.0,T-Men (1947),Film-Noir +1161,4.0625,"Tin Drum, The (Blechtrommel, Die) (1979)",Drama|War +1162,3.6,"Ruling Class, The (1972)",Comedy|Drama +1163,2.5,Mina Tannenbaum (1994),Drama +1164,1.0,2 ou 3 choses que je sais d'elle (2 or 3 Things I Know About Her) (1967),Drama +1165,1.5,"Bloody Child, The (1996)",Drama|Thriller +1167,2.0,Dear God (1996),Comedy +1168,3.0,Bad Moon (1996),Action|Adventure|Horror +1169,4.0,American Dream (1990),Documentary +1171,3.5806451612903225,Bob Roberts (1992),Comedy +1172,4.260869565217392,Cinema Paradiso (Nuovo cinema Paradiso) (1989),Drama +1173,3.210526315789474,"Cook the Thief His Wife & Her Lover, The (1989)",Comedy|Drama +1174,3.0,Dead Tired (Grosse Fatigue) (1994),Comedy +1175,4.166666666666667,Delicatessen (1991),Comedy|Drama|Romance +1176,3.7777777777777777,"Double Life of Veronique, The (Double Vie de Véronique, La) (1991)",Drama|Fantasy|Romance +1177,3.769230769230769,Enchanted April (1992),Drama|Romance +1178,4.366666666666666,Paths of Glory (1957),Drama|War +1179,3.85,"Grifters, The (1990)",Crime|Drama|Film-Noir +1180,3.6666666666666665,Hear My Song (1991),Comedy +1181,4.0,"Shooter, The (1997)",Western +1183,3.6013513513513513,"English Patient, The (1996)",Drama|Romance|War +1184,4.0,Mediterraneo (1991),Comedy|Drama +1185,3.75,My Left Foot (1989),Drama +1186,3.6379310344827585,"Sex, Lies, and Videotape (1989)",Drama +1187,3.5,Passion Fish (1992),Drama +1188,3.3970588235294117,Strictly Ballroom (1992),Comedy|Romance +1189,4.0,"Thin Blue Line, The (1988)",Documentary +1190,2.1,Tie Me Up! Tie Me Down! (¡Átame!) (1990),Crime|Drama|Romance +1191,3.55,Madonna: Truth or Dare (1991),Documentary|Musical +1192,4.388888888888889,Paris Is Burning (1990),Documentary +1193,4.256944444444445,One Flew Over the Cuckoo's Nest (1975),Drama +1194,3.7333333333333334,Cheech and Chong's Up in Smoke (1978),Comedy +1196,4.232905982905983,Star Wars: Episode V - The Empire Strikes Back (1980),Action|Adventure|Sci-Fi +1197,4.208588957055214,"Princess Bride, The (1987)",Action|Adventure|Comedy|Fantasy|Romance +1198,4.193181818181818,Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981),Action|Adventure +1199,4.032258064516129,Brazil (1985),Fantasy|Sci-Fi +1200,3.924,Aliens (1986),Action|Adventure|Horror|Sci-Fi +1201,3.93859649122807,"Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il) (1966)",Action|Adventure|Western +1202,3.642857142857143,Withnail & I (1987),Comedy +1203,4.304054054054054,12 Angry Men (1957),Drama +1204,4.215686274509804,Lawrence of Arabia (1962),Adventure|Drama|War +1206,4.0,"Clockwork Orange, A (1971)",Crime|Drama|Sci-Fi|Thriller +1207,4.18125,To Kill a Mockingbird (1962),Drama +1208,4.138392857142857,Apocalypse Now (1979),Action|Drama|War +1209,4.21875,Once Upon a Time in the West (C'era una volta il West) (1968),Action|Drama|Western +1210,4.059907834101383,Star Wars: Episode VI - Return of the Jedi (1983),Action|Adventure|Sci-Fi +1211,4.2105263157894735,"Wings of Desire (Himmel über Berlin, Der) (1987)",Drama|Fantasy|Romance +1212,4.25,"Third Man, The (1949)",Film-Noir|Mystery|Thriller +1213,4.202290076335878,Goodfellas (1990),Crime|Drama +1214,3.9881889763779528,Alien (1979),Horror|Sci-Fi +1215,3.8173076923076925,Army of Darkness (1993),Action|Adventure|Comedy|Fantasy|Horror +1216,2.9,"Big Blue, The (Grand bleu, Le) (1988)",Adventure|Drama|Romance +1217,4.423076923076923,Ran (1985),Drama|War +1218,4.214285714285714,"Killer, The (Die xue shuang xiong) (1989)",Action|Crime|Drama|Thriller +1219,4.253246753246753,Psycho (1960),Crime|Horror +1220,3.893617021276596,"Blues Brothers, The (1980)",Action|Comedy|Musical +1221,4.385185185185185,"Godfather: Part II, The (1974)",Crime|Drama +1222,4.033653846153846,Full Metal Jacket (1987),Drama|War +1223,4.089743589743589,"Grand Day Out with Wallace and Gromit, A (1989)",Adventure|Animation|Children|Comedy|Sci-Fi +1224,4.181818181818182,Henry V (1989),Action|Drama|Romance|War +1225,4.155,Amadeus (1984),Drama +1226,3.576923076923077,"Quiet Man, The (1952)",Drama|Romance +1227,4.181818181818182,Once Upon a Time in America (1984),Crime|Drama +1228,4.35,Raging Bull (1980),Drama +1230,4.09375,Annie Hall (1977),Comedy|Romance +1231,3.911111111111111,"Right Stuff, The (1983)",Drama +1232,3.85,Stalker (1979),Drama|Mystery|Sci-Fi +1233,4.166666666666667,"Boot, Das (Boat, The) (1981)",Action|Drama|War +1234,4.015873015873016,"Sting, The (1973)",Comedy|Crime +1235,3.784090909090909,Harold and Maude (1971),Comedy|Drama|Romance +1236,3.8,Trust (1990),Comedy|Drama|Romance +1237,4.28125,"Seventh Seal, The (Sjunde inseglet, Det) (1957)",Drama +1238,4.147058823529412,Local Hero (1983),Comedy +1240,3.9588607594936707,"Terminator, The (1984)",Action|Sci-Fi|Thriller +1241,3.0,Dead Alive (Braindead) (1992),Comedy|Fantasy|Horror +1242,3.836206896551724,Glory (1989),Drama|War +1243,4.045454545454546,Rosencrantz and Guildenstern Are Dead (1990),Comedy|Drama +1244,3.962962962962963,Manhattan (1979),Comedy|Drama|Romance +1245,3.8518518518518516,Miller's Crossing (1990),Crime|Drama|Film-Noir|Thriller +1246,3.7842105263157895,Dead Poets Society (1989),Drama +1247,4.123595505617978,"Graduate, The (1967)",Comedy|Drama|Romance +1248,4.2368421052631575,Touch of Evil (1958),Crime|Film-Noir|Thriller +1249,3.91025641025641,"Femme Nikita, La (Nikita) (1990)",Action|Crime|Romance|Thriller +1250,4.138461538461539,"Bridge on the River Kwai, The (1957)",Adventure|Drama|War +1251,3.825,8 1/2 (8½) (1963),Drama|Fantasy +1252,4.3355263157894735,Chinatown (1974),Crime|Film-Noir|Mystery|Thriller +1253,3.8,"Day the Earth Stood Still, The (1951)",Drama|Sci-Fi|Thriller +1254,4.3,"Treasure of the Sierra Madre, The (1948)",Action|Adventure|Drama|Western +1255,3.5416666666666665,Bad Taste (1987),Comedy|Horror|Sci-Fi +1256,4.132352941176471,Duck Soup (1933),Comedy|Musical|War +1257,3.8125,Better Off Dead... (1985),Comedy|Romance +1258,4.02970297029703,"Shining, The (1980)",Horror +1259,4.09375,Stand by Me (1986),Adventure|Drama +1260,4.261904761904762,M (1931),Crime|Film-Noir|Thriller +1261,3.787878787878788,Evil Dead II (Dead by Dawn) (1987),Action|Comedy|Fantasy|Horror +1262,3.9489795918367347,"Great Escape, The (1963)",Action|Adventure|Drama|War +1263,3.8645833333333335,"Deer Hunter, The (1978)",Drama|War +1264,4.285714285714286,Diva (1981),Action|Drama|Mystery|Romance|Thriller +1265,3.8393939393939394,Groundhog Day (1993),Comedy|Fantasy|Romance +1266,3.8859649122807016,Unforgiven (1992),Drama|Western +1267,4.122448979591836,"Manchurian Candidate, The (1962)",Crime|Thriller|War +1268,3.4705882352941178,Pump Up the Volume (1990),Comedy|Drama +1269,3.945945945945946,Arsenic and Old Lace (1944),Comedy|Mystery|Thriller +1270,4.015486725663717,Back to the Future (1985),Adventure|Comedy|Sci-Fi +1271,3.7,Fried Green Tomatoes (1991),Comedy|Crime|Drama +1272,4.1,Patton (1970),Drama|War +1273,3.736842105263158,Down by Law (1986),Comedy|Drama|Film-Noir +1274,3.838235294117647,Akira (1988),Action|Adventure|Animation|Sci-Fi +1275,3.4285714285714284,Highlander (1986),Action|Adventure|Fantasy +1276,4.271739130434782,Cool Hand Luke (1967),Drama +1277,4.0,Cyrano de Bergerac (1990),Comedy|Drama|Romance +1278,4.087837837837838,Young Frankenstein (1974),Comedy|Fantasy +1279,3.75,Night on Earth (1991),Comedy|Drama +1280,4.157894736842105,Raise the Red Lantern (Da hong deng long gao gao gua) (1991),Drama +1281,4.043478260869565,"Great Dictator, The (1940)",Comedy|Drama|War +1282,3.7578125,Fantasia (1940),Animation|Children|Fantasy|Musical +1283,4.119047619047619,High Noon (1952),Drama|Western +1284,3.984375,"Big Sleep, The (1946)",Crime|Film-Noir|Mystery +1285,3.80327868852459,Heathers (1989),Comedy +1286,3.638888888888889,Somewhere in Time (1980),Drama|Romance +1287,3.891304347826087,Ben-Hur (1959),Action|Adventure|Drama +1288,4.085365853658536,This Is Spinal Tap (1984),Comedy +1289,3.923076923076923,Koyaanisqatsi (a.k.a. Koyaanisqatsi: Life Out of Balance) (1983),Documentary +1290,3.5833333333333335,Some Kind of Wonderful (1987),Drama|Romance +1291,4.017006802721088,Indiana Jones and the Last Crusade (1989),Action|Adventure +1292,4.089285714285714,Being There (1979),Comedy|Drama +1293,3.9782608695652173,Gandhi (1982),Drama +1295,3.1176470588235294,"Unbearable Lightness of Being, The (1988)",Drama +1296,3.8225806451612905,"Room with a View, A (1986)",Drama|Romance +1297,3.375,Real Genius (1985),Comedy +1298,3.6458333333333335,Pink Floyd: The Wall (1982),Drama|Musical +1299,4.271428571428571,"Killing Fields, The (1984)",Drama|War +1300,4.052631578947368,My Life as a Dog (Mitt liv som hund) (1985),Comedy|Drama +1301,3.8333333333333335,Forbidden Planet (1956),Drama|Sci-Fi +1302,3.574626865671642,Field of Dreams (1989),Children|Drama|Fantasy +1303,3.933333333333333,"Man Who Would Be King, The (1975)",Adventure|Drama +1304,4.173333333333333,Butch Cassidy and the Sundance Kid (1969),Action|Western +1305,4.291666666666667,"Paris, Texas (1984)",Drama|Romance +1306,2.857142857142857,Until the End of the World (Bis ans Ende der Welt) (1991),Adventure|Drama|Sci-Fi +1307,3.9195402298850577,When Harry Met Sally... (1989),Comedy|Romance +1310,4.5,Hype! (1996),Documentary +1311,0.5,Santa with Muscles (1996),Comedy +1312,5.0,Female Perversions (1996),Drama +1317,4.0,I'm Not Rappaport (1996),Comedy +1320,3.1818181818181817,Alien³ (a.k.a. Alien 3) (1992),Action|Horror|Sci-Fi|Thriller +1321,3.6315789473684212,"American Werewolf in London, An (1981)",Comedy|Horror|Thriller +1322,2.5,Amityville 1992: It's About Time (1992),Horror +1323,2.25,Amityville 3-D (1983),Horror +1324,1.0,Amityville: Dollhouse (1996),Horror +1325,1.0,Amityville: A New Generation (1993),Horror +1326,2.6666666666666665,Amityville II: The Possession (1982),Horror +1327,3.1153846153846154,"Amityville Horror, The (1979)",Drama|Horror|Mystery|Thriller +1328,1.0,"Amityville Curse, The (1990)",Horror +1329,3.0,Blood for Dracula (Andy Warhol's Dracula) (1974),Horror +1330,3.4285714285714284,April Fool's Day (1986),Horror +1331,2.3333333333333335,Audrey Rose (1977),Horror +1332,3.5,"Believers, The (1987)",Horror|Thriller +1333,3.7549019607843137,"Birds, The (1963)",Horror|Thriller +1334,3.1333333333333333,"Blob, The (1958)",Horror|Sci-Fi +1335,4.0,Blood Beach (1981),Horror|Mystery +1336,3.5,Body Parts (1991),Horror|Thriller +1337,2.8333333333333335,"Body Snatcher, The (1945)",Drama|Horror|Thriller +1339,3.298076923076923,Dracula (Bram Stoker's Dracula) (1992),Fantasy|Horror|Romance|Thriller +1340,3.75,"Bride of Frankenstein, The (Bride of Frankenstein) (1935)",Drama|Horror|Sci-Fi +1341,4.0,Burnt Offerings (1976),Horror +1342,3.0588235294117645,Candyman (1992),Horror|Thriller +1343,3.7435897435897436,Cape Fear (1991),Thriller +1344,3.6315789473684212,Cape Fear (1962),Crime|Drama|Thriller +1345,3.675675675675676,Carrie (1976),Drama|Fantasy|Horror|Thriller +1346,3.111111111111111,Cat People (1982),Drama|Fantasy|Horror +1347,3.28125,"Nightmare on Elm Street, A (1984)",Horror|Thriller +1348,3.8095238095238093,"Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)",Horror +1349,4.5,Vampire in Venice (Nosferatu a Venezia) (Nosferatu in Venice) (1986),Horror +1350,3.36,"Omen, The (1976)",Horror|Mystery|Thriller +1351,4.0,Blood and Wine (Blood & Wine) (1996),Crime|Drama|Thriller +1352,3.5,Albino Alligator (1996),Crime|Thriller +1353,2.9615384615384617,"Mirror Has Two Faces, The (1996)",Comedy|Drama|Romance +1354,3.975,Breaking the Waves (1996),Drama|Mystery +1355,2.5,Nightwatch (1997),Horror|Thriller +1356,3.8780487804878048,Star Trek: First Contact (1996),Action|Adventure|Sci-Fi|Thriller +1357,3.945945945945946,Shine (1996),Drama|Romance +1358,3.8863636363636362,Sling Blade (1996),Drama +1359,2.1363636363636362,Jingle All the Way (1996),Children|Comedy +1361,4.153846153846154,Paradise Lost: The Child Murders at Robin Hood Hills (1996),Documentary +1363,3.357142857142857,"Preacher's Wife, The (1996)",Drama +1365,3.6,Ridicule (1996),Drama +1366,3.9615384615384617,"Crucible, The (1996)",Drama +1367,2.9594594594594597,101 Dalmatians (1996),Adventure|Children|Comedy +1369,2.5,I Can't Sleep (J'ai pas sommeil) (1994),Drama|Thriller +1370,3.287878787878788,Die Hard 2 (1990),Action|Adventure|Thriller +1371,3.0531914893617023,Star Trek: The Motion Picture (1979),Adventure|Sci-Fi +1372,3.265957446808511,Star Trek VI: The Undiscovered Country (1991),Action|Mystery|Sci-Fi +1373,2.78,Star Trek V: The Final Frontier (1989),Action|Sci-Fi +1374,3.75,Star Trek II: The Wrath of Khan (1982),Action|Adventure|Sci-Fi|Thriller +1375,3.314814814814815,Star Trek III: The Search for Spock (1984),Action|Adventure|Sci-Fi +1376,3.5,Star Trek IV: The Voyage Home (1986),Adventure|Comedy|Sci-Fi +1377,3.0859375,Batman Returns (1992),Action|Crime +1378,3.25,Young Guns (1988),Action|Comedy|Western +1379,2.8214285714285716,Young Guns II (1990),Action|Western +1380,3.477777777777778,Grease (1978),Comedy|Musical|Romance +1381,2.4473684210526314,Grease 2 (1982),Comedy|Musical|Romance +1382,2.0,Marked for Death (1990),Action|Drama +1384,4.0,"Substance of Fire, The (1996)",Drama +1385,3.0,Under Siege (1992),Action|Drama|Thriller +1387,3.7777777777777777,Jaws (1975),Action|Horror +1388,2.759259259259259,Jaws 2 (1978),Horror|Thriller +1389,1.7916666666666667,Jaws 3-D (1983),Action|Horror +1390,3.5,My Fellow Americans (1996),Comedy +1391,2.99375,Mars Attacks! (1996),Action|Comedy|Sci-Fi +1392,3.375,Citizen Ruth (1996),Comedy|Drama +1393,3.69811320754717,Jerry Maguire (1996),Drama|Romance +1394,3.95,Raising Arizona (1987),Comedy +1395,3.4285714285714284,Tin Men (1987),Comedy|Drama +1396,3.6176470588235294,Sneakers (1992),Action|Comedy|Crime|Drama|Sci-Fi +1397,3.0,Bastard Out of Carolina (1996),Drama +1398,3.5,In Love and War (1996),Romance|War +1399,3.5,Marvin's Room (1996),Drama +1401,3.5,Ghosts of Mississippi (1996),Drama +1404,2.75,Night Falls on Manhattan (1996),Crime|Drama +1405,3.032608695652174,Beavis and Butt-Head Do America (1996),Adventure|Animation|Comedy|Crime +1406,3.25,La Cérémonie (1995),Crime|Drama|Mystery|Thriller +1407,3.410958904109589,Scream (1996),Comedy|Horror|Mystery|Thriller +1408,3.616279069767442,"Last of the Mohicans, The (1992)",Action|Romance|War|Western +1409,2.984848484848485,Michael (1996),Comedy|Drama|Fantasy|Romance +1410,2.75,"Evening Star, The (1996)",Comedy|Drama +1411,4.16,Hamlet (1996),Crime|Drama|Romance +1413,3.5,"Whole Wide World, The (1996)",Drama +1414,3.7,Mother (1996),Comedy +1415,3.5,"Thieves (Voleurs, Les) (1996)",Crime|Drama|Romance +1416,3.1818181818181817,Evita (1996),Drama|Musical +1417,2.0,"Portrait of a Lady, The (1996)",Drama +1419,3.6,Walkabout (1971),Adventure|Drama +1420,5.0,Message to Love: The Isle of Wight Festival (1996),Documentary +1422,3.1,Murder at 1600 (1997),Crime|Drama|Mystery|Thriller +1423,4.25,Hearts and Minds (1996),Drama +1425,2.9444444444444446,Fierce Creatures (1997),Comedy +1427,3.2,Turbulence (1997),Action|Thriller +1428,5.0,Angel Baby (1995),Drama +1429,3.6538461538461537,First Strike (Police Story 4: First Strike) (Ging chaat goo si 4: Ji gaan daan yam mo) (1996),Action|Adventure|Comedy|Thriller +1430,2.5,Underworld (1996),Comedy|Thriller +1431,2.7222222222222223,Beverly Hills Ninja (1997),Action|Comedy +1432,3.4,Metro (1997),Action|Comedy|Crime|Drama|Thriller +1433,3.0,The Machine (1994),Horror|Sci-Fi|Thriller +1437,3.5,"Cement Garden, The (1993)",Drama +1438,2.6818181818181817,Dante's Peak (1997),Action|Thriller +1440,3.0,Amos & Andrew (1993),Comedy +1441,3.375,Benny & Joon (1993),Comedy|Romance +1442,2.5,Prefontaine (1997),Drama +1444,4.0,Guantanamera (1994),Comedy +1445,2.0,McHale's Navy (1997),Comedy|War +1446,3.8333333333333335,Kolya (Kolja) (1996),Comedy|Drama +1447,2.8333333333333335,Gridlock'd (1997),Crime +1449,3.8793103448275863,Waiting for Guffman (1996),Comedy +1450,5.0,Prisoner of the Mountains (Kavkazsky plennik) (1996),War +1453,2.357142857142857,"Beautician and the Beast, The (1997)",Comedy|Romance +1454,3.0,SubUrbia (1997),Comedy|Drama +1455,5.0,Hotel de Love (1996),Comedy|Romance +1456,1.5,"Pest, The (1997)",Comedy +1457,3.05,Fools Rush In (1997),Comedy|Drama|Romance +1458,3.0,Touch (1997),Drama|Fantasy|Romance +1459,3.05,Absolute Power (1997),Mystery|Thriller +1460,3.3333333333333335,That Darn Cat (1997),Children|Comedy|Mystery +1461,2.7142857142857144,Vegas Vacation (National Lampoon's Las Vegas Vacation) (1997),Comedy +1463,4.5,That Old Feeling (1997),Comedy|Romance +1464,3.7,Lost Highway (1997),Crime|Drama|Fantasy|Film-Noir|Mystery|Romance +1465,4.0,Rosewood (1997),Action|Drama +1466,3.8846153846153846,Donnie Brasco (1997),Crime|Drama +1468,2.3333333333333335,Booty Call (1997),Comedy|Romance +1472,4.0,City of Industry (1997),Crime|Thriller +1473,2.0,Best Men (1997),Action|Comedy|Crime|Drama +1474,1.6666666666666667,Jungle2Jungle (a.k.a. Jungle 2 Jungle) (1997),Children|Comedy +1475,4.0,Kama Sutra: A Tale of Love (1996),Romance +1476,3.5217391304347827,Private Parts (1997),Comedy|Drama +1479,3.0714285714285716,"Saint, The (1997)",Action|Romance|Sci-Fi|Thriller +1480,3.5833333333333335,Smilla's Sense of Snow (1997),Drama|Thriller +1482,3.0,"Van, The (1996)",Comedy|Drama +1483,3.2777777777777777,Crash (1996),Drama|Thriller +1484,3.8333333333333335,"Daytrippers, The (1996)",Comedy|Drama|Mystery|Romance +1485,3.1901408450704225,Liar Liar (1997),Comedy +1487,3.1875,Selena (1997),Drama|Musical +1488,3.0,"Devil's Own, The (1997)",Action|Drama|Thriller +1489,3.5,Cats Don't Dance (1997),Animation|Children|Musical +1490,0.75,B*A*P*S (1997),Comedy +1493,4.0,Love and Other Catastrophes (1996),Romance +1495,1.0,Turbo: A Power Rangers Movie (1997),Action|Adventure|Children +1497,2.8333333333333335,Double Team (1997),Action +1498,3.0,Inventing the Abbotts (1997),Drama|Romance +1499,2.017857142857143,Anaconda (1997),Action|Adventure|Thriller +1500,3.96875,Grosse Pointe Blank (1997),Comedy|Crime|Romance +1501,3.0,Keys to Tulsa (1997),Crime +1502,1.75,Kissed (1996),Drama|Romance +1503,2.6666666666666665,8 Heads in a Duffel Bag (1997),Comedy +1504,4.5,Hollow Reed (1996),Drama +1507,3.0,Paradise Road (1997),Drama|War +1508,3.3333333333333335,Traveller (1997),Drama +1513,3.2555555555555555,Romy and Michele's High School Reunion (1997),Comedy +1515,2.95,Volcano (1997),Action|Drama|Thriller +1516,4.0,Children of the Revolution (1996),Comedy +1517,3.378504672897196,Austin Powers: International Man of Mystery (1997),Action|Adventure|Comedy +1518,3.230769230769231,Breakdown (1997),Action|Thriller +1523,4.0,"Truth or Consequences, N.M. (1997)",Action|Crime|Romance +1525,1.5,Warriors of Virtue (1997),Action|Adventure|Children|Fantasy +1526,2.1666666666666665,Fathers' Day (1997),Comedy +1527,3.6779661016949152,"Fifth Element, The (1997)",Action|Adventure|Comedy|Sci-Fi +1529,3.8333333333333335,Nowhere (1997),Comedy|Drama +1531,5.0,Losing Chase (1996),Drama +1532,2.5,Sprung (1997),Comedy +1535,3.8,Love! Valour! Compassion! (1997),Drama|Romance +1537,3.9722222222222223,Shall We Dance? (Shall We Dansu?) (1996),Comedy|Drama|Romance +1539,1.0,Twin Town (1997),Comedy|Crime +1541,2.875,Addicted to Love (1997),Comedy|Romance +1542,3.8,Brassed Off (1996),Comedy|Drama|Romance +1543,5.0,"Designated Mourner, The (1997)",Drama +1544,2.888059701492537,"Lost World: Jurassic Park, The (1997)",Action|Adventure|Sci-Fi|Thriller +1545,4.25,Ponette (1996),Drama +1546,2.5,Schizopolis (1996),Comedy +1549,2.0,Rough Magic (1995),Drama|Romance +1550,3.0,Trial and Error (1997),Comedy|Romance +1552,3.26271186440678,Con Air (1997),Action|Adventure|Thriller +1554,3.3333333333333335,"Pillow Book, The (1996)",Drama|Romance +1555,4.0,"To Have, or Not (En avoir (ou pas)) (1995)",Drama +1556,1.6521739130434783,Speed 2: Cruise Control (1997),Action|Romance|Thriller +1562,2.148936170212766,Batman & Robin (1997),Action|Adventure|Fantasy|Thriller +1563,5.0,Dream With the Fishes (1997),Drama +1564,4.5,For Roseanna (Roseanna's Grave) (1997),Comedy|Drama|Romance +1566,3.5,Hercules (1997),Adventure|Animation|Children|Comedy|Musical +1569,3.298076923076923,My Best Friend's Wedding (1997),Comedy|Romance +1570,2.5,Tetsuo II: Body Hammer (1992),Horror|Sci-Fi +1571,1.0,When the Cat's Away (Chacun cherche son chat) (1996),Comedy|Romance +1572,4.166666666666667,"Contempt (Mépris, Le) (1963)",Drama +1573,3.4518072289156625,Face/Off (1997),Action|Crime|Drama|Thriller +1575,5.0,Gabbeh (1996),Drama +1580,3.663157894736842,Men in Black (a.k.a. MIB) (1997),Action|Comedy|Sci-Fi +1581,2.0,Out to Sea (1997),Comedy +1582,3.5,Wild America (1997),Adventure|Children +1583,1.5,"Simple Wish, A (1997)",Children|Fantasy +1584,3.7282608695652173,Contact (1997),Drama|Sci-Fi +1586,2.759259259259259,G.I. Jane (1997),Action|Drama +1587,3.3333333333333335,Conan the Barbarian (1982),Action|Adventure|Fantasy +1588,3.088235294117647,George of the Jungle (1997),Children|Comedy +1589,3.3947368421052633,Cop Land (1997),Action|Crime|Drama|Thriller +1590,2.9565217391304346,Event Horizon (1997),Horror|Sci-Fi|Thriller +1591,2.7,Spawn (1997),Action|Adventure|Sci-Fi|Thriller +1592,2.7857142857142856,Air Bud (1997),Children|Comedy +1593,2.7857142857142856,Picture Perfect (1997),Comedy|Romance +1594,3.4285714285714284,In the Company of Men (1997),Comedy|Drama +1595,1.8333333333333333,Free Willy 3: The Rescue (1997),Adventure|Children|Drama +1596,2.3333333333333335,Career Girls (1997),Drama +1597,3.352272727272727,Conspiracy Theory (1997),Drama|Mystery|Romance|Thriller +1598,3.75,Desperate Measures (1998),Crime|Drama|Thriller +1599,1.75,Steel (1997),Action +1600,2.125,She's So Lovely (1997),Drama|Romance +1601,3.5,Hoodlum (1997),Crime|Drama|Film-Noir +1602,1.0,Leave It to Beaver (1997),Comedy +1603,2.4,Mimic (1997),Horror|Sci-Fi|Thriller +1604,3.0,Money Talks (1997),Action|Comedy +1605,2.8,Excess Baggage (1997),Adventure|Romance +1606,2.25,Kull the Conqueror (1997),Action|Adventure +1608,3.2642857142857142,Air Force One (1997),Action|Thriller +1609,3.0,187 (One Eight Seven) (1997),Drama|Thriller +1610,3.8969072164948453,"Hunt for Red October, The (1990)",Action|Adventure|Thriller +1611,4.083333333333333,My Own Private Idaho (1991),Drama|Romance +1612,3.0,"Kiss Me, Guido (1997)",Comedy +1613,3.0,Star Maps (1997),Drama +1614,3.36,In & Out (1997),Comedy +1615,3.65,"Edge, The (1997)",Adventure|Drama +1616,3.5357142857142856,"Peacemaker, The (1997)",Action|Thriller|War +1617,4.12,L.A. Confidential (1997),Crime|Film-Noir|Mystery|Thriller +1619,3.4473684210526314,Seven Years in Tibet (1997),Adventure|Drama|War +1620,3.375,Kiss the Girls (1997),Crime|Drama|Mystery|Thriller +1621,3.0,Soul Food (1997),Drama +1623,2.3,Wishmaster (1997),Horror +1624,4.0,"Thousand Acres, A (1997)",Drama +1625,3.9210526315789473,"Game, The (1997)",Drama|Mystery|Thriller +1626,1.6666666666666667,Fire Down Below (1997),Action|Drama|Thriller +1627,2.8636363636363638,U Turn (1997),Crime|Drama|Mystery +1629,3.4,"MatchMaker, The (1997)",Comedy|Romance +1631,3.5,"Assignment, The (1997)",Action|Thriller +1632,2.5,"Smile Like Yours, A (1997)",Comedy|Romance +1633,3.375,Ulee's Gold (1997),Drama +1635,3.823529411764706,"Ice Storm, The (1997)",Drama +1636,1.0,Stag (1997),Action|Thriller +1639,3.5692307692307694,Chasing Amy (1997),Comedy|Drama|Romance +1640,1.0,How to Be a Player (1997),Comedy +1641,3.7734375,"Full Monty, The (1997)",Comedy|Drama +1642,2.375,Indian Summer (a.k.a. Alive & Kicking) (1996),Comedy|Drama +1643,4.05,"Mrs. Brown (a.k.a. Her Majesty, Mrs. Brown) (1997)",Drama|Romance +1644,2.5166666666666666,I Know What You Did Last Summer (1997),Horror|Mystery|Thriller +1645,3.4583333333333335,The Devil's Advocate (1997),Drama|Mystery|Thriller +1646,2.5714285714285716,RocketMan (a.k.a. Rocket Man) (1997),Children|Comedy|Romance|Sci-Fi +1647,2.6666666666666665,Playing God (1997),Crime|Drama|Thriller +1648,3.1666666666666665,"House of Yes, The (1997)",Comedy|Drama +1649,3.8333333333333335,"Fast, Cheap & Out of Control (1997)",Documentary +1652,4.0,Year of the Horse (1997),Documentary +1653,3.6785714285714284,Gattaca (1997),Drama|Sci-Fi|Thriller +1654,3.5,FairyTale: A True Story (1997),Children|Drama|Fantasy +1655,3.5,Phantoms (1998),Drama|Horror|Thriller +1657,3.0,Wonderland (1997),Comedy|Documentary +1658,3.375,"Life Less Ordinary, A (1997)",Romance|Thriller +1660,3.0,Eve's Bayou (1997),Drama +1661,3.125,Switchback (1997),Crime|Mystery|Thriller +1663,3.7,Stripes (1981),Comedy|War +1665,3.25,Bean (1997),Comedy +1667,2.75,Mad City (1997),Action|Drama +1668,1.8333333333333333,One Night Stand (1997),Drama +1669,4.0,"Tango Lesson, The (1997)",Romance +1670,3.8,Welcome to Sarajevo (1997),Drama|War +1671,3.5,Deceiver (1997),Crime|Drama|Thriller +1672,3.6666666666666665,"Rainmaker, The (1997)",Drama +1673,3.9193548387096775,Boogie Nights (1997),Drama +1674,4.044642857142857,Witness (1985),Drama|Romance|Thriller +1676,3.0972222222222223,Starship Troopers (1997),Action|Sci-Fi +1678,3.738095238095238,"Joy Luck Club, The (1993)",Drama|Romance +1680,3.6923076923076925,Sliding Doors (1998),Drama|Romance +1681,1.8888888888888888,Mortal Kombat: Annihilation (1997),Action|Adventure|Fantasy +1682,3.886861313868613,"Truman Show, The (1998)",Comedy|Drama|Sci-Fi +1683,3.75,"Wings of the Dove, The (1997)",Drama|Romance +1684,3.4,Mrs. Dalloway (1997),Drama|Romance +1686,3.6,Red Corner (1997),Crime|Thriller +1687,2.9523809523809526,"Jackal, The (1997)",Action|Thriller +1688,3.6818181818181817,Anastasia (1997),Adventure|Animation|Children|Drama|Musical +1689,3.2916666666666665,"Man Who Knew Too Little, The (1997)",Comedy|Crime|Thriller +1690,3.033333333333333,Alien: Resurrection (1997),Action|Horror|Sci-Fi +1692,5.0,Alien Escape (1995),Horror|Sci-Fi +1693,3.66,Amistad (1997),Drama|Mystery +1694,3.8125,"Apostle, The (1997)",Drama +1696,2.0,Bent (1997),Drama|War +1699,3.6666666666666665,"Butcher Boy, The (1997)",Comedy|Drama +1701,3.5,Deconstructing Harry (1997),Comedy|Drama +1702,2.90625,Flubber (1997),Children|Comedy|Fantasy +1703,2.6,For Richer or Poorer (1997),Comedy +1704,4.140127388535032,Good Will Hunting (1997),Drama|Romance +1707,2.2222222222222223,Home Alone 3 (1997),Children|Comedy +1711,3.375,Midnight in the Garden of Good and Evil (1997),Crime|Drama|Mystery +1713,2.5,Mouse Hunt (1997),Children|Comedy +1715,3.0,Office Killer (1997),Thriller +1717,3.0,Scream 2 (1997),Comedy|Horror|Mystery|Thriller +1719,4.195652173913044,"Sweet Hereafter, The (1997)",Drama +1721,3.332317073170732,Titanic (1997),Drama|Romance +1722,3.2857142857142856,Tomorrow Never Dies (1997),Action|Adventure|Thriller +1726,1.9285714285714286,"Postman, The (1997)",Action|Adventure|Drama|Sci-Fi +1727,3.0,"Horse Whisperer, The (1998)",Drama|Romance +1728,4.0,"Winter Guest, The (1997)",Drama +1729,3.692982456140351,Jackie Brown (1997),Crime|Drama|Thriller +1730,3.9,Kundun (1997),Drama +1731,1.0,Mr. Magoo (1997),Comedy +1732,3.995833333333333,"Big Lebowski, The (1998)",Comedy|Crime +1733,2.0,Afterglow (1997),Drama|Romance +1734,3.8461538461538463,My Life in Pink (Ma vie en rose) (1997),Comedy|Drama +1735,2.933333333333333,Great Expectations (1998),Drama|Romance +1739,0.75,3 Ninjas: High Noon On Mega Mountain (1998),Action|Children|Comedy +1744,2.5,Firestorm (1998),Action|Adventure|Thriller +1746,2.5,Senseless (1998),Comedy +1747,3.457627118644068,Wag the Dog (1997),Comedy +1748,3.676470588235294,Dark City (1998),Adventure|Film-Noir|Sci-Fi|Thriller +1750,2.0,Star Kid (1997),Adventure|Children|Fantasy|Sci-Fi +1752,2.9285714285714284,Hard Rain (1998),Action|Crime|Thriller +1753,3.0,Half Baked (1998),Comedy +1754,3.8076923076923075,Fallen (1998),Crime|Drama|Fantasy|Thriller +1755,3.0,Shooting Fish (1997),Comedy|Romance +1756,3.5,"Prophecy II, The (1998)",Horror +1757,3.5,Fallen Angels (Duo luo tian shi) (1995),Drama|Romance +1759,4.5,"Four Days in September (O Que É Isso, Companheiro?) (1997)",Drama +1760,1.8076923076923077,Spice World (1997),Comedy +1762,3.125,Deep Rising (1998),Action|Horror|Sci-Fi +1767,3.0,Music From Another Room (1998),Drama|Romance +1769,2.611111111111111,"Replacement Killers, The (1998)",Action|Crime|Thriller +1771,5.0,Night Flier (1997),Horror +1772,3.1333333333333333,Blues Brothers 2000 (1998),Action|Comedy|Musical +1777,3.2357142857142858,"Wedding Singer, The (1998)",Comedy|Romance +1779,2.736842105263158,Sphere (1998),Sci-Fi|Thriller +1783,2.6666666666666665,Palmetto (1998),Crime|Drama|Mystery|Romance|Thriller +1784,3.7222222222222223,As Good as It Gets (1997),Comedy|Drama|Romance +1785,3.8,King of New York (1990),Crime|Thriller +1788,4.25,Men with Guns (1997),Action|Drama +1791,3.25,Twilight (1998),Crime|Drama|Thriller +1792,3.3636363636363638,U.S. Marshals (1998),Action|Crime|Thriller +1794,3.75,Love and Death on Long Island (1997),Comedy|Drama +1795,4.0,"Callejón de los milagros, El (1995)",Drama +1796,2.0,In God's Hands (1998),Action|Drama +1797,3.8333333333333335,Everest (1998),Documentary|IMAX +1798,2.3333333333333335,Hush (1998),Thriller +1799,3.5555555555555554,Suicide Kings (1997),Comedy|Crime|Drama|Mystery|Thriller +1801,2.8181818181818183,"Man in the Iron Mask, The (1998)",Action|Adventure|Drama +1804,3.0,"Newton Boys, The (1998)",Crime|Drama +1805,3.230769230769231,Wild Things (1998),Crime|Drama|Mystery|Thriller +1806,1.5,Paulie (1998),Adventure|Children|Comedy +1807,2.25,"Cool, Dry Place, A (1998)",Drama +1809,4.0,Fireworks (Hana-bi) (1997),Crime|Drama +1810,3.533333333333333,Primary Colors (1998),Comedy|Drama +1812,3.0,Wide Awake (1998),Children|Comedy|Drama +1816,2.5,Two Girls and a Guy (1997),Comedy|Drama +1819,5.0,Storefront Hitchcock (1997),Documentary|Musical +1821,3.111111111111111,"Object of My Affection, The (1998)",Comedy|Romance +1822,3.0,Meet the Deedles (1998),Children|Comedy +1824,3.0,Homegrown (1998),Comedy|Thriller +1826,0.75,Barney's Great Adventure (1998),Adventure|Children +1827,4.0,"Big One, The (1997)",Comedy|Documentary +1831,2.1346153846153846,Lost in Space (1998),Action|Adventure|Sci-Fi +1833,2.727272727272727,Mercury Rising (1998),Action|Drama|Thriller +1834,3.9130434782608696,"Spanish Prisoner, The (1997)",Crime|Drama|Mystery|Thriller +1835,3.391304347826087,City of Angels (1998),Drama|Fantasy|Romance +1836,2.888888888888889,"Last Days of Disco, The (1998)",Comedy|Drama +1837,2.0,"Odd Couple II, The (1998)",Comedy +1839,2.25,My Giant (1998),Comedy +1840,2.875,He Got Game (1998),Drama +1841,3.25,"Gingerbread Man, The (1998)",Drama|Thriller +1844,4.0,Live Flesh (Carne trémula) (1997),Drama|Romance +1845,4.125,Zero Effect (1998),Comedy|Mystery|Thriller +1846,4.5,Nil By Mouth (1997),Drama +1848,2.7,"Borrowers, The (1997)",Adventure|Children|Comedy|Fantasy +1852,3.0,Love Walked In (1998),Drama|Thriller +1854,4.0,Kissing a Fool (1998),Comedy|Romance +1855,2.4,Krippendorf's Tribe (1998),Comedy +1856,3.3125,Kurt & Courtney (1998),Documentary +1858,3.4166666666666665,Mr. Nice Guy (Yat goh ho yan) (1997),Action|Comedy +1859,5.0,Taste of Cherry (Ta'm e guilass) (1997),Drama +1860,4.666666666666667,Character (Karakter) (1997),Drama +1861,2.0,Junk Mail (Budbringeren) (1997),Comedy|Thriller +1862,2.3125,Species II (1998),Horror|Sci-Fi +1863,2.2142857142857144,Major League: Back to the Minors (1998),Comedy +1864,3.0,Sour Grapes (1998),Comedy +1865,3.1666666666666665,Wild Man Blues (1997),Documentary +1866,3.6,"Big Hit, The (1998)",Action|Comedy|Crime +1870,4.0,"Dancer, Texas Pop. 81 (1998)",Comedy|Drama +1873,3.6538461538461537,"Misérables, Les (1998)",Crime|Drama|Romance|War +1874,3.0,Still Breathing (1997),Comedy|Romance +1875,3.0,Clockwatchers (1997),Comedy +1876,3.1458333333333335,Deep Impact (1998),Drama|Sci-Fi|Thriller +1878,3.0,Woo (1998),Comedy|Romance +1880,4.0,Lawn Dogs (1997),Drama +1881,4.0,Quest for Camelot (1998),Adventure|Animation|Children|Fantasy|Musical +1882,2.1785714285714284,Godzilla (1998),Action|Sci-Fi|Thriller +1883,3.2903225806451615,Bulworth (1998),Comedy|Drama|Romance +1884,3.625,Fear and Loathing in Las Vegas (1998),Adventure|Comedy|Drama +1885,3.6666666666666665,"Opposite of Sex, The (1998)",Comedy|Drama|Romance +1886,1.5,I Got the Hook Up (1998),Comedy +1887,2.6666666666666665,Almost Heroes (1998),Adventure|Comedy|Western +1888,2.933333333333333,Hope Floats (1998),Comedy|Drama|Romance +1889,3.0,Insomnia (1997),Drama|Mystery|Thriller +1891,2.0,"Ugly, The (1997)",Horror|Thriller +1892,3.260869565217391,"Perfect Murder, A (1998)",Thriller +1894,2.9130434782608696,Six Days Seven Nights (1998),Adventure|Comedy|Romance +1895,3.0714285714285716,Can't Hardly Wait (1998),Comedy|Drama|Romance +1896,3.0,Cousin Bette (1998),Comedy +1897,3.2142857142857144,High Art (1998),Drama|Romance +1900,3.7,"Children of Heaven, The (Bacheha-Ye Aseman) (1997)",Comedy|Drama +1901,3.0,Dear Jesse (1997),Documentary +1902,1.0,Dream for an Insomniac (1996),Drama|Romance +1903,4.5,Hav Plenty (1997),Comedy +1904,3.875,Henry Fool (1997),Comedy|Drama +1907,3.607142857142857,Mulan (1998),Adventure|Animation|Children|Comedy|Drama|Musical|Romance +1909,3.223404255319149,"X-Files: Fight the Future, The (1998)",Action|Crime|Mystery|Sci-Fi|Thriller +1910,4.0,I Went Down (1997),Comedy|Crime|Drama +1911,2.759259259259259,Dr. Dolittle (1998),Comedy +1912,3.7586206896551726,Out of Sight (1998),Comedy|Crime|Drama|Romance|Thriller +1913,3.7857142857142856,Picnic at Hanging Rock (1975),Drama|Mystery +1914,3.6538461538461537,Smoke Signals (1998),Comedy|Drama +1916,3.6785714285714284,Buffalo '66 (a.k.a. Buffalo 66) (1998),Drama|Romance +1917,3.0442477876106193,Armageddon (1998),Action|Romance|Sci-Fi|Thriller +1918,3.0595238095238093,Lethal Weapon 4 (1998),Action|Comedy|Crime|Thriller +1919,4.0,Madeline (1998),Children|Comedy +1920,2.764705882352941,Small Soldiers (1998),Animation|Children|Fantasy|War +1921,3.7375,Pi (1998),Drama|Sci-Fi|Thriller +1922,3.6666666666666665,Whatever (1998),Drama +1923,3.5528455284552845,There's Something About Mary (1998),Comedy|Romance +1924,3.5555555555555554,Plan 9 from Outer Space (1959),Horror|Sci-Fi +1925,4.25,Wings (1927),Action|Drama|Romance|War +1926,2.0,"Broadway Melody, The (1929)",Musical +1927,4.285714285714286,All Quiet on the Western Front (1930),Action|Drama|War +1928,3.0,Cimarron (1931),Drama|Western +1929,2.857142857142857,Grand Hotel (1932),Drama|Romance +1931,4.25,Mutiny on the Bounty (1935),Adventure|Drama +1932,2.75,"Great Ziegfeld, The (1936)",Drama|Musical +1933,5.0,"Life of Emile Zola, The (1937)",Drama +1934,4.166666666666667,You Can't Take It with You (1938),Comedy|Romance +1935,3.875,How Green Was My Valley (1941),Drama|Musical|Romance +1936,4.0,Mrs. Miniver (1942),Drama|War +1937,3.5,Going My Way (1944),Comedy|Drama|Musical +1938,4.0,"Lost Weekend, The (1945)",Drama +1939,4.636363636363637,"Best Years of Our Lives, The (1946)",Drama|War +1940,4.071428571428571,Gentleman's Agreement (1947),Drama +1941,4.416666666666667,Hamlet (1948),Drama +1942,4.333333333333333,All the King's Men (1949),Drama +1943,3.3333333333333335,"Greatest Show on Earth, The (1952)",Drama +1944,3.925,From Here to Eternity (1953),Drama|Romance|War +1945,4.448275862068965,On the Waterfront (1954),Crime|Drama +1946,4.208333333333333,Marty (1955),Drama|Romance +1947,3.988888888888889,West Side Story (1961),Drama|Musical|Romance +1948,4.458333333333333,Tom Jones (1963),Adventure|Comedy|Romance +1949,3.6,"Man for All Seasons, A (1966)",Drama +1950,3.909090909090909,In the Heat of the Night (1967),Drama|Mystery +1951,3.5714285714285716,Oliver! (1968),Drama|Musical +1952,4.064102564102564,Midnight Cowboy (1969),Drama +1953,4.021739130434782,"French Connection, The (1971)",Action|Crime|Thriller +1954,3.789855072463768,Rocky (1976),Drama +1955,3.838709677419355,Kramer vs. Kramer (1979),Drama +1956,3.8870967741935485,Ordinary People (1980),Drama +1957,3.9404761904761907,Chariots of Fire (1981),Drama +1958,3.8676470588235294,Terms of Endearment (1983),Comedy|Drama +1959,3.8,Out of Africa (1985),Drama|Romance +1960,4.032258064516129,"Last Emperor, The (1987)",Drama +1961,3.966386554621849,Rain Man (1988),Drama +1962,3.625,Driving Miss Daisy (1989),Drama +1963,4.15,Take the Money and Run (1969),Comedy|Crime +1964,3.9,Klute (1971),Drama|Mystery +1965,3.6875,Repo Man (1984),Comedy|Sci-Fi +1966,3.5833333333333335,Metropolitan (1990),Comedy +1967,3.625,Labyrinth (1986),Adventure|Fantasy|Musical +1968,3.982905982905983,"Breakfast Club, The (1985)",Comedy|Drama +1969,2.6875,"Nightmare on Elm Street 2: Freddy's Revenge, A (1985)",Horror +1970,2.6,"Nightmare on Elm Street 3: Dream Warriors, A (1987)",Horror|Thriller +1971,2.6666666666666665,"Nightmare on Elm Street 4: The Dream Master, A (1988)",Horror|Thriller +1972,2.6,"Nightmare on Elm Street 5: The Dream Child, A (1989)",Horror +1973,2.3333333333333335,"Freddy's Dead: The Final Nightmare (Nightmare on Elm Street Part 6: Freddy's Dead, A) (1991)",Horror +1974,3.088235294117647,Friday the 13th (1980),Horror|Mystery|Thriller +1975,1.9444444444444444,Friday the 13th Part 2 (1981),Horror +1976,2.1666666666666665,Friday the 13th Part 3: 3D (1982),Horror +1977,1.6666666666666667,Friday the 13th Part IV: The Final Chapter (1984),Horror +1978,2.5,Friday the 13th Part V: A New Beginning (1985),Horror +1979,2.25,Friday the 13th Part VI: Jason Lives (1986),Horror +1980,3.0,Friday the 13th Part VII: The New Blood (1988),Horror +1981,2.3333333333333335,Friday the 13th Part VIII: Jason Takes Manhattan (1989),Horror +1982,3.5384615384615383,Halloween (1978),Horror +1983,3.1875,Halloween II (1981),Horror +1984,1.875,Halloween III: Season of the Witch (1982),Horror +1985,2.2,Halloween 4: The Return of Michael Myers (1988),Horror +1986,3.5,Halloween 5: The Revenge of Michael Myers (1989),Horror +1987,2.5,Prom Night (1980),Horror +1988,3.0,Prom Night II (1987),Horror|Thriller +1989,2.0,Prom Night III: The Last Kiss (1989),Horror +1990,3.0,Prom Night IV: Deliver Us From Evil (1992),Horror +1991,2.95,Child's Play (1988),Horror|Thriller +1992,2.0,Child's Play 2 (1990),Horror|Thriller +1993,2.0,Child's Play 3 (1991),Comedy|Horror|Thriller +1994,3.723684210526316,Poltergeist (1982),Horror|Thriller +1995,2.375,Poltergeist II: The Other Side (1986),Horror|Thriller +1996,1.75,Poltergeist III (1988),Horror|Thriller +1997,3.7265625,"Exorcist, The (1973)",Horror|Mystery +1998,3.5,Exorcist II: The Heretic (1977),Horror +1999,2.6666666666666665,"Exorcist III, The (1990)",Horror +2000,3.588888888888889,Lethal Weapon (1987),Action|Comedy|Crime|Drama +2001,3.210526315789474,Lethal Weapon 2 (1989),Action|Comedy|Crime|Drama +2002,2.9743589743589745,Lethal Weapon 3 (1992),Action|Comedy|Crime|Drama +2003,3.1702127659574466,Gremlins (1984),Comedy|Horror +2004,2.5714285714285716,Gremlins 2: The New Batch (1990),Comedy|Horror +2005,3.676470588235294,"Goonies, The (1985)",Action|Adventure|Children|Comedy|Fantasy +2006,3.4272727272727272,"Mask of Zorro, The (1998)",Action|Comedy|Romance +2007,2.0,Polish Wedding (1998),Comedy +2008,1.0,"This World, Then the Fireworks (1997)",Crime|Drama|Film-Noir +2009,3.4705882352941178,Soylent Green (1973),Drama|Mystery|Sci-Fi|Thriller +2010,3.980769230769231,Metropolis (1927),Drama|Sci-Fi +2011,3.4797979797979797,Back to the Future Part II (1989),Adventure|Comedy|Sci-Fi +2012,3.265957446808511,Back to the Future Part III (1990),Adventure|Comedy|Sci-Fi|Western +2013,3.1785714285714284,"Poseidon Adventure, The (1972)",Action|Adventure|Drama +2014,3.1666666666666665,Freaky Friday (1977),Children|Comedy|Fantasy +2015,3.263157894736842,"Absent-Minded Professor, The (1961)",Children|Comedy|Fantasy +2016,2.5,"Apple Dumpling Gang Rides Again, The (1979)",Children|Comedy|Western +2017,3.142857142857143,Babes in Toyland (1961),Children|Fantasy|Musical +2018,3.4558823529411766,Bambi (1942),Animation|Children|Drama +2019,4.277777777777778,Seven Samurai (Shichinin no samurai) (1954),Action|Adventure|Drama +2020,3.926470588235294,Dangerous Liaisons (1988),Drama|Romance +2021,3.0833333333333335,Dune (1984),Adventure|Sci-Fi +2022,3.423076923076923,"Last Temptation of Christ, The (1988)",Drama +2023,3.4,"Godfather: Part III, The (1990)",Crime|Drama|Mystery|Thriller +2024,3.3333333333333335,"Rapture, The (1991)",Drama|Mystery +2025,2.8846153846153846,Lolita (1997),Drama|Romance +2026,3.2,Disturbing Behavior (1998),Horror|Thriller +2027,2.1875,Jane Austen's Mafia! (1998),Comedy|Crime +2028,3.945026178010471,Saving Private Ryan (1998),Action|Drama|War +2029,4.2,Billy's Hollywood Screen Kiss (1997),Comedy|Romance +2031,3.25,"Million Dollar Duck, The (a.k.a. $1,000,000 Duck) (1971)",Children|Comedy +2032,3.0,"Barefoot Executive, The (1971)",Children|Comedy +2033,3.0416666666666665,"Black Cauldron, The (1985)",Adventure|Animation|Children|Fantasy +2034,3.2222222222222223,"Black Hole, The (1979)",Children|Sci-Fi +2035,3.0,Blackbeard's Ghost (1968),Children|Comedy +2036,2.5,Blank Check (1994),Children|Comedy +2037,3.6666666666666665,Candleshoe (1977),Adventure|Children|Comedy +2038,3.5625,"Cat from Outer Space, The (1978)",Children|Comedy|Sci-Fi +2039,3.5,Cheetah (1989),Adventure|Children +2040,3.3333333333333335,"Computer Wore Tennis Shoes, The (1969)",Children|Comedy +2041,3.3333333333333335,Condorman (1981),Action|Adventure|Children|Comedy +2042,2.75,D2: The Mighty Ducks (1994),Children|Comedy +2043,3.5625,Darby O'Gill and the Little People (1959),Adventure|Children|Fantasy +2044,2.25,"Devil and Max Devlin, The (1981)",Comedy|Fantasy +2045,3.4,"Far Off Place, A (1993)",Adventure|Children|Drama|Romance +2046,3.823529411764706,Flight of the Navigator (1986),Adventure|Children|Sci-Fi +2047,4.0,"Gnome-Mobile, The (1967)",Adventure|Children|Fantasy|Musical +2048,3.875,"Great Mouse Detective, The (1986)",Action|Animation|Children|Crime +2049,2.5,"Happiest Millionaire, The (1967)",Comedy|Musical +2050,2.8333333333333335,Herbie Goes Bananas (1980),Adventure|Children|Comedy +2051,3.75,Herbie Goes to Monte Carlo (1977),Adventure|Children|Comedy +2052,3.2857142857142856,Hocus Pocus (1993),Children|Comedy|Fantasy|Horror +2053,2.3529411764705883,"Honey, I Blew Up the Kid (1992)",Children|Comedy|Sci-Fi +2054,2.7434210526315788,"Honey, I Shrunk the Kids (1989)",Adventure|Children|Comedy|Fantasy|Sci-Fi +2055,4.0,Hot Lead and Cold Feet (1978),Action|Comedy|Western +2056,3.5,In Search of the Castaways (1962),Adventure|Children +2057,3.75,"Incredible Journey, The (1963)",Adventure|Children +2058,3.621212121212121,"Negotiator, The (1998)",Action|Crime|Drama|Mystery|Thriller +2059,3.2222222222222223,"Parent Trap, The (1998)",Children|Comedy|Romance +2060,3.0416666666666665,BASEketball (1998),Comedy +2062,2.0,"Governess, The (1998)",Drama|Romance +2063,1.0,"Seventh Heaven (Septième ciel, Le) (1997)",Drama|Romance +2064,4.392857142857143,Roger & Me (1989),Documentary +2065,3.619047619047619,"Purple Rose of Cairo, The (1985)",Comedy|Drama|Fantasy|Romance +2066,4.071428571428571,Out of the Past (1947),Film-Noir +2067,3.659090909090909,Doctor Zhivago (1965),Drama|Romance|War +2068,4.2,Fanny and Alexander (Fanny och Alexander) (1982),Drama|Fantasy|Mystery +2069,3.7777777777777777,"Trip to Bountiful, The (1985)",Drama +2070,4.038461538461538,Tender Mercies (1983),Drama|Romance|Western +2071,3.75,And the Band Played On (1993),Drama +2072,3.0526315789473686,"'burbs, The (1989)",Comedy +2073,4.0,Fandango (1985),Comedy +2074,4.0,"Night Porter, The (Portiere di notte, Il) (1974)",Crime|Drama|Romance +2075,3.8333333333333335,Mephisto (1981),Drama|War +2076,4.036585365853658,Blue Velvet (1986),Drama|Mystery|Thriller +2077,3.3333333333333335,"Journey of Natty Gann, The (1985)",Adventure|Children +2078,3.739130434782609,"Jungle Book, The (1967)",Animation|Children|Comedy|Musical +2079,3.5,Kidnapped (1960),Adventure|Children|Drama +2080,3.6862745098039214,Lady and the Tramp (1955),Animation|Children|Comedy|Romance +2081,3.6794871794871793,"Little Mermaid, The (1989)",Animation|Children|Comedy|Musical|Romance +2082,2.727272727272727,"Mighty Ducks, The (1992)",Children|Comedy +2083,3.642857142857143,"Muppet Christmas Carol, The (1992)",Children|Comedy|Musical +2084,2.9375,Newsies (1992),Children|Musical +2085,3.3780487804878048,101 Dalmatians (One Hundred and One Dalmatians) (1961),Adventure|Animation|Children +2086,5.0,One Magic Christmas (1985),Drama|Fantasy +2087,3.6315789473684212,Peter Pan (1953),Animation|Children|Fantasy|Musical +2088,2.54,Popeye (1980),Adventure|Comedy|Musical +2089,3.5416666666666665,"Rescuers Down Under, The (1990)",Adventure|Animation|Children +2090,3.6785714285714284,"Rescuers, The (1977)",Adventure|Animation|Children|Crime|Drama +2091,4.0,Return from Witch Mountain (1978),Children|Sci-Fi +2093,3.5555555555555554,Return to Oz (1985),Adventure|Children|Fantasy +2094,3.265625,"Rocketeer, The (1991)",Action|Adventure|Sci-Fi +2095,2.25,"Shaggy D.A., The (1976)",Children|Comedy +2096,3.7,Sleeping Beauty (1959),Animation|Children|Musical +2097,3.75,Something Wicked This Way Comes (1983),Children|Drama|Fantasy|Mystery|Thriller +2098,2.0,Son of Flubber (1963),Children|Comedy +2099,3.7,Song of the South (1946),Adventure|Animation|Children|Musical +2100,3.1634615384615383,Splash (1984),Comedy|Fantasy|Romance +2101,2.5,Squanto: A Warrior's Tale (1994),Adventure|Drama +2102,4.285714285714286,Steamboat Willie (1928),Animation|Children|Comedy|Musical +2103,3.0,Tall Tale (1995),Adventure|Children|Fantasy|Western +2104,3.6666666666666665,Tex (1982),Drama +2105,3.478723404255319,Tron (1982),Action|Adventure|Sci-Fi +2106,3.65,Swing Kids (1993),Drama|War +2107,3.2,Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode) (1998),Horror|Thriller +2108,3.6923076923076925,L.A. Story (1991),Comedy|Romance +2109,3.696078431372549,"Jerk, The (1979)",Comedy +2110,3.3666666666666667,Dead Men Don't Wear Plaid (1982),Comedy|Crime|Thriller +2111,3.3076923076923075,"Man with Two Brains, The (1983)",Comedy +2112,3.2941176470588234,Grand Canyon (1991),Crime|Drama +2113,3.0,Graveyard Shift (Stephen King's Graveyard Shift) (1990),Horror|Thriller +2114,3.652173913043478,"Outsiders, The (1983)",Drama +2115,3.7653061224489797,Indiana Jones and the Temple of Doom (1984),Action|Adventure|Fantasy +2116,3.4210526315789473,"Lord of the Rings, The (1978)",Adventure|Animation|Children|Fantasy +2117,3.923076923076923,1984 (Nineteen Eighty-Four) (1984),Drama|Sci-Fi +2118,3.7,"Dead Zone, The (1983)",Thriller +2119,3.0,Maximum Overdrive (1986),Horror +2120,3.1666666666666665,Needful Things (1993),Drama|Horror +2121,2.7777777777777777,Cujo (1983),Horror|Thriller +2122,2.3181818181818183,Children of the Corn (1984),Horror|Thriller +2123,3.15,All Dogs Go to Heaven (1989),Animation|Children|Comedy|Drama|Fantasy +2124,3.2857142857142856,"Addams Family, The (1991)",Children|Comedy|Fantasy +2125,3.75,Ever After: A Cinderella Story (1998),Comedy|Drama|Romance +2126,2.8043478260869565,Snake Eyes (1998),Action|Crime|Mystery|Thriller +2128,3.0,Safe Men (1998),Comedy +2130,4.125,Atlantic City (1980),Crime|Drama|Romance +2131,4.5,Autumn Sonata (Höstsonaten) (1978),Drama +2132,4.195652173913044,Who's Afraid of Virginia Woolf? (1966),Drama +2133,3.1136363636363638,Adventures in Babysitting (1987),Adventure|Comedy +2134,3.138888888888889,Weird Science (1985),Comedy|Fantasy|Sci-Fi +2135,3.0,Doctor Dolittle (1967),Adventure|Children|Musical +2136,2.6944444444444446,"Nutty Professor, The (1963)",Comedy|Sci-Fi +2137,3.8,Charlotte's Web (1973),Animation|Children +2138,4.0,Watership Down (1978),Adventure|Animation|Children|Drama|Fantasy +2139,3.2222222222222223,"Secret of NIMH, The (1982)",Adventure|Animation|Children|Drama +2140,3.6785714285714284,"Dark Crystal, The (1982)",Adventure|Fantasy +2141,3.3653846153846154,"American Tail, An (1986)",Adventure|Animation|Children|Comedy +2142,3.25,"American Tail: Fievel Goes West, An (1991)",Adventure|Animation|Children|Musical|Western +2143,3.3666666666666667,Legend (1985),Adventure|Fantasy|Romance +2144,3.8260869565217392,Sixteen Candles (1984),Comedy|Romance +2145,3.380952380952381,Pretty in Pink (1986),Comedy|Drama|Romance +2146,3.1666666666666665,St. Elmo's Fire (1985),Drama|Romance +2147,1.8,"Clan of the Cave Bear, The (1986)",Adventure|Drama|Fantasy +2148,3.6666666666666665,House (1986),Comedy|Fantasy|Horror +2149,2.0,House II: The Second Story (1987),Comedy|Fantasy|Horror +2150,3.513888888888889,"Gods Must Be Crazy, The (1980)",Adventure|Comedy +2151,3.7,"Gods Must Be Crazy II, The (1989)",Comedy +2152,2.25,Air Bud: Golden Receiver (1998),Children|Comedy +2153,2.1538461538461537,"Avengers, The (1998)",Action|Adventure +2154,2.6666666666666665,How Stella Got Her Groove Back (1998),Drama|Romance +2155,3.3,"Slums of Beverly Hills, The (1998)",Comedy|Drama +2159,3.125,Henry: Portrait of a Serial Killer (1986),Crime|Horror|Thriller +2160,3.736111111111111,Rosemary's Baby (1968),Drama|Horror|Thriller +2161,3.3026315789473686,"NeverEnding Story, The (1984)",Adventure|Children|Fantasy +2162,2.6666666666666665,"NeverEnding Story II: The Next Chapter, The (1990)",Adventure|Children|Fantasy +2163,3.1666666666666665,Attack of the Killer Tomatoes! (1978),Comedy|Horror +2164,1.0,Surf Nazis Must Die (1987),Action|Comedy|Drama|Horror +2165,3.9285714285714284,Your Friends and Neighbors (1998),Comedy|Drama +2166,3.6875,Return to Paradise (1998),Crime|Drama|Romance|Thriller +2167,3.310344827586207,Blade (1998),Action|Horror|Thriller +2168,3.375,Dance with Me (1998),Drama|Romance +2169,2.75,Dead Man on Campus (1998),Comedy +2170,3.0,Wrongfully Accused (1998),Action|Comedy +2171,3.875,Next Stop Wonderland (1998),Comedy|Drama|Romance +2173,3.5,"Navigator: A Mediaeval Odyssey, The (1988)",Adventure|Fantasy|Sci-Fi +2174,3.4375,Beetlejuice (1988),Comedy|Fantasy +2176,3.8333333333333335,Rope (1948),Crime|Drama|Thriller +2177,4.25,Family Plot (1976),Comedy|Thriller +2178,3.5555555555555554,Frenzy (1972),Thriller +2180,3.5,Torn Curtain (1966),Thriller +2181,3.6,Marnie (1964),Drama|Mystery|Romance|Thriller +2182,4.0,"Wrong Man, The (1956)",Drama|Film-Noir|Thriller +2183,3.7222222222222223,"Man Who Knew Too Much, The (1956)",Adventure|Drama|Mystery|Thriller +2184,3.6875,"Trouble with Harry, The (1955)",Comedy|Mystery +2186,4.260869565217392,Strangers on a Train (1951),Crime|Drama|Film-Noir|Thriller +2187,4.0,Stage Fright (1950),Mystery|Romance|Thriller +2188,2.6333333333333333,54 (1998),Drama +2189,4.0,I Married A Strange Person! (1997),Animation|Comedy|Fantasy|Sci-Fi +2190,2.0,Why Do Fools Fall In Love? (1998),Drama +2191,0.5,"Merry War, A (1997)",Comedy +2193,3.2023809523809526,Willow (1988),Action|Adventure|Fantasy +2194,3.91025641025641,"Untouchables, The (1987)",Action|Crime|Drama +2195,2.7857142857142856,Dirty Work (1998),Comedy +2197,3.0,Firelight (1997),Drama +2200,4.0,Under Capricorn (1949),Drama +2201,4.5,"Paradine Case, The (1947)",Drama +2202,4.363636363636363,Lifeboat (1944),Drama|War +2203,4.4,Shadow of a Doubt (1943),Crime|Drama|Thriller +2204,4.166666666666667,Saboteur (1942),Mystery|Thriller +2205,3.5,Mr. & Mrs. Smith (1941),Comedy|Romance +2206,3.7,Suspicion (1941),Film-Noir|Mystery|Thriller +2207,4.0,Jamaica Inn (1939),Drama +2208,4.071428571428571,"Lady Vanishes, The (1938)",Drama|Mystery|Thriller +2210,4.0,Sabotage (1936),Thriller +2212,4.0,"Man Who Knew Too Much, The (1934)",Drama|Thriller +2214,3.5,Number Seventeen (a.k.a. Number 17) (1932),Thriller +2215,4.0,Rich and Strange (1931),Comedy|Romance +2219,4.0,Murder! (1930),Mystery|Thriller +2221,4.0,Blackmail (1929),Drama|Thriller +2227,4.0,"Lodger: A Story of the London Fog, The (1927)",Crime|Drama|Thriller +2231,3.8472222222222223,Rounders (1998),Drama +2232,4.119047619047619,Cube (1997),Horror|Mystery|Sci-Fi|Thriller +2236,2.5625,Simon Birch (1998),Drama +2237,2.0,Without Limits (1998),Drama +2238,3.3333333333333335,Seven Beauties (Pasqualino Settebellezze) (1976),Comedy|Drama +2239,3.0,Swept Away (Travolti da un insolito destino nell'azzurro mare d'Agosto) (1975),Comedy|Drama +2240,3.1538461538461537,My Bodyguard (1980),Drama +2241,2.8333333333333335,Class (1983),Comedy +2243,3.9444444444444446,Broadcast News (1987),Comedy|Drama|Romance +2244,3.0,"Allnighter, The (1987)",Comedy|Romance +2245,3.56,Working Girl (1988),Comedy|Drama|Romance +2246,2.0,Stars and Bars (1988),Action|Comedy|Romance +2247,3.40625,Married to the Mob (1988),Comedy +2248,3.9361702127659575,Say Anything... (1989),Comedy|Drama|Romance +2249,3.4615384615384617,My Blue Heaven (1990),Comedy +2250,3.2,Men Don't Leave (1990),Drama +2252,3.5384615384615383,Hero (1992),Comedy|Drama +2253,2.75,Toys (1992),Comedy|Fantasy +2254,3.0,Choices (1981),Drama +2255,2.4,Young Doctors in Love (1982),Comedy +2256,4.0,Parasite (1982),Horror|Sci-Fi +2257,3.5,No Small Affair (1984),Comedy|Romance +2259,2.5,Blame It on Rio (1984),Comedy|Romance +2260,2.0,Wisdom (1986),Crime|Drama +2261,3.75,One Crazy Summer (1986),Comedy +2262,2.7058823529411766,About Last Night... (1986),Comedy|Drama|Romance +2263,3.375,"Seventh Sign, The (1988)",Drama|Fantasy|Thriller +2264,3.0,We're No Angels (1989),Comedy|Crime +2265,2.0,Nothing But Trouble (1991),Adventure|Comedy +2266,2.6666666666666665,"Butcher's Wife, The (1991)",Comedy|Romance +2267,4.5,Mortal Thoughts (1991),Mystery|Thriller +2268,3.861842105263158,"Few Good Men, A (1992)",Crime|Drama|Thriller +2269,2.7,Indecent Proposal (1993),Drama|Romance +2271,3.625,Permanent Midnight (1998),Drama +2272,3.7,One True Thing (1998),Drama +2273,3.558139534883721,Rush Hour (1998),Action|Comedy|Crime|Thriller +2275,3.1666666666666665,Six-String Samurai (1998),Action|Adventure|Sci-Fi +2276,3.0,"Soldier's Daughter Never Cries, A (1998)",Drama +2278,3.5625,Ronin (1998),Action|Crime|Thriller +2279,3.409090909090909,Urban Legend (1998),Horror|Thriller +2280,3.5,Clay Pigeons (1998),Crime +2282,3.2857142857142856,Pecker (1998),Comedy|Drama +2283,4.0,"Sheltering Sky, The (1990)",Drama +2284,5.0,Bandit Queen (1994),Drama +2285,3.3333333333333335,If.... (1968),Drama +2286,1.6666666666666667,"Fiendish Plot of Dr. Fu Manchu, The (1980)",Comedy +2287,3.5,Them! (1954),Horror|Sci-Fi|Thriller +2288,3.9242424242424243,"Thing, The (1982)",Action|Horror|Sci-Fi|Thriller +2289,4.204545454545454,"Player, The (1992)",Comedy|Crime|Drama +2290,3.25,Stardust Memories (1980),Comedy|Drama +2291,3.848314606741573,Edward Scissorhands (1990),Drama|Fantasy|Romance +2292,4.0,Overnight Delivery (1998),Comedy|Romance +2294,3.2735849056603774,Antz (1998),Adventure|Animation|Children|Comedy|Fantasy +2295,4.0,"Impostors, The (1998)",Comedy +2296,2.5625,"Night at the Roxbury, A (1998)",Comedy +2297,3.0384615384615383,What Dreams May Come (1998),Adventure|Drama|Fantasy|Romance +2300,4.212121212121212,"Producers, The (1968)",Comedy +2301,3.6666666666666665,History of the World: Part I (1981),Comedy|Musical +2302,3.5526315789473686,My Cousin Vinny (1992),Comedy +2303,4.023809523809524,Nashville (1975),Drama|Musical +2304,4.25,Love Is the Devil (1998),Drama +2305,4.5,Slam (1998),Drama +2306,2.8,Holy Man (1998),Comedy +2307,4.0,One Tough Cop (1998),Action|Crime +2310,4.0,"Mighty, The (1998)",Drama +2311,3.3333333333333335,2010: The Year We Make Contact (1984),Sci-Fi +2312,3.7333333333333334,Children of a Lesser God (1986),Drama +2313,3.857142857142857,"Elephant Man, The (1980)",Drama +2314,3.5,Beloved (1998),Drama +2315,3.0,Bride of Chucky (Child's Play 4) (1998),Comedy|Horror|Thriller +2316,2.7857142857142856,Practical Magic (1998),Drama|Fantasy|Mystery|Romance +2318,4.326086956521739,Happiness (1998),Comedy|Drama +2320,2.75,Apt Pupil (1998),Drama|Thriller +2321,3.625,Pleasantville (1998),Comedy|Drama|Fantasy +2322,3.0,Soldier (1998),Action|Sci-Fi|War +2323,2.0,"Cruise, The (1998)",Documentary +2324,4.025252525252525,Life Is Beautiful (La Vita è bella) (1997),Comedy|Drama|Romance|War +2325,3.625,Orgazmo (1997),Comedy +2327,3.9,Tales from the Darkside: The Movie (1990),Fantasy|Horror|Thriller +2328,3.5,Vampires (1998),Horror|Western +2329,4.0233644859813085,American History X (1998),Crime|Drama +2330,4.666666666666667,Hands on a Hard Body (1996),Comedy|Documentary +2331,3.7777777777777777,Living Out Loud (1998),Comedy|Drama|Romance +2333,3.608695652173913,Gods and Monsters (1998),Drama +2334,3.34375,"Siege, The (1998)",Action|Thriller +2335,3.3076923076923075,"Waterboy, The (1998)",Comedy +2336,3.7291666666666665,Elizabeth (1998),Drama +2337,3.5833333333333335,Velvet Goldmine (1998),Drama +2338,2.5,I Still Know What You Did Last Summer (1998),Horror|Mystery|Thriller +2339,3.0,I'll Be Home For Christmas (1998),Comedy|Romance +2340,2.9347826086956523,Meet Joe Black (1998),Romance +2342,3.0,Hard Core Logo (1996),Comedy|Drama +2344,4.333333333333333,Runaway Train (1985),Action|Adventure|Drama|Thriller +2345,3.75,Desert Bloom (1986),Drama +2346,3.0714285714285716,"Stepford Wives, The (1975)",Mystery|Sci-Fi|Thriller +2347,3.3333333333333335,"Pope of Greenwich Village, The (1984)",Drama +2348,3.4545454545454546,Sid and Nancy (1986),Drama +2349,3.772727272727273,Mona Lisa (1986),Comedy|Thriller +2350,3.0,Heart Condition (1990),Comedy +2351,3.857142857142857,"Nights of Cabiria (Notti di Cabiria, Le) (1957)",Drama +2352,3.7777777777777777,"Big Chill, The (1983)",Comedy|Drama +2353,3.4776119402985075,Enemy of the State (1998),Action|Thriller +2354,2.5,"Rugrats Movie, The (1998)",Animation|Children|Comedy +2355,3.6095238095238096,"Bug's Life, A (1998)",Adventure|Animation|Children|Comedy +2356,3.15,Celebrity (1998),Comedy +2357,4.318181818181818,Central Station (Central do Brasil) (1998),Drama +2359,4.133333333333334,Waking Ned Devine (a.k.a. Waking Ned) (1998),Comedy +2360,3.3636363636363638,"Celebration, The (Festen) (1998)",Drama +2361,3.8125,Pink Flamingos (1972),Comedy +2362,2.75,Glen or Glenda (1953),Drama +2363,3.8636363636363638,Godzilla (Gojira) (1954),Drama|Horror|Sci-Fi +2364,2.75,"Godzilla 1985: The Legend Is Reborn (Gojira) (Godzilla) (Return of Godzilla, The) (1984)",Action|Horror|Sci-Fi|Thriller +2365,2.8,King Kong vs. Godzilla (Kingukongu tai Gojira) (1962),Action|Sci-Fi +2366,3.9347826086956523,King Kong (1933),Action|Adventure|Fantasy|Horror +2367,2.727272727272727,King Kong (1976),Adventure|Fantasy|Romance|Sci-Fi|Thriller +2368,2.6666666666666665,King Kong Lives (1986),Adventure|Sci-Fi +2369,2.9714285714285715,Desperately Seeking Susan (1985),Comedy|Drama|Romance +2370,3.3333333333333335,"Emerald Forest, The (1985)",Action|Adventure|Drama +2371,3.375,Fletch (1985),Comedy|Crime|Mystery +2372,2.5,Fletch Lives (1989),Comedy +2373,2.5833333333333335,Red Sonja (1985),Action|Adventure|Fantasy +2374,3.1875,Gung Ho (1986),Comedy|Drama +2375,2.7045454545454546,"Money Pit, The (1986)",Comedy +2376,3.1842105263157894,"View to a Kill, A (1985)",Action|Adventure|Thriller +2377,2.5,Lifeforce (1985),Horror|Sci-Fi +2378,2.6363636363636362,Police Academy (1984),Comedy|Crime +2379,2.4210526315789473,Police Academy 2: Their First Assignment (1985),Comedy|Crime +2380,1.8333333333333333,Police Academy 3: Back in Training (1986),Comedy|Crime +2381,1.9642857142857142,Police Academy 4: Citizens on Patrol (1987),Comedy|Crime +2382,1.8076923076923077,Police Academy 5: Assignment: Miami Beach (1988),Comedy|Crime +2383,1.7083333333333333,Police Academy 6: City Under Siege (1989),Comedy|Crime +2384,3.1166666666666667,Babe: Pig in the City (1998),Adventure|Children|Drama +2385,2.25,Home Fries (1998),Comedy|Romance +2386,3.0,Jerry Springer: Ringmaster (1998),Comedy|Drama +2387,3.0384615384615383,Very Bad Things (1998),Comedy|Crime +2388,4.0,Steam: The Turkish Bath (Hamam) (1997),Drama|Romance +2389,2.6923076923076925,Psycho (1998),Crime|Horror|Thriller +2390,3.409090909090909,Little Voice (1998),Comedy +2391,3.7580645161290325,"Simple Plan, A (1998)",Crime|Drama|Thriller +2392,1.85,Jack Frost (1998),Children|Comedy|Drama +2393,3.4705882352941178,Star Trek: Insurrection (1998),Action|Drama|Romance|Sci-Fi +2394,3.5142857142857142,"Prince of Egypt, The (1998)",Animation|Musical +2395,3.963235294117647,Rushmore (1998),Comedy|Drama +2396,3.9669421487603307,Shakespeare in Love (1998),Comedy|Drama|Romance +2397,3.5,Mass Appeal (1984),Drama +2398,3.659090909090909,Miracle on 34th Street (1947),Comedy|Drama +2399,2.25,Santa Claus: The Movie (1985),Adventure|Children|Fantasy +2400,2.0,Prancer (1989),Children|Drama|Fantasy +2401,3.642857142857143,Pale Rider (1985),Western +2402,2.5357142857142856,Rambo: First Blood Part II (1985),Action|Adventure|Thriller +2403,3.4722222222222223,First Blood (Rambo: First Blood) (1982),Action|Adventure|Drama|Thriller +2404,2.230769230769231,Rambo III (1988),Action|Adventure|Thriller|War +2405,3.3225806451612905,"Jewel of the Nile, The (1985)",Action|Adventure|Comedy|Romance +2406,3.5846153846153848,Romancing the Stone (1984),Action|Adventure|Comedy|Romance +2407,3.2093023255813953,Cocoon (1985),Comedy|Sci-Fi +2408,2.4375,Cocoon: The Return (1988),Comedy|Sci-Fi +2409,3.4705882352941178,Rocky II (1979),Action|Drama +2410,3.0714285714285716,Rocky III (1982),Action|Drama +2411,2.8333333333333335,Rocky IV (1985),Action|Drama +2412,2.6315789473684212,Rocky V (1990),Action|Drama +2413,3.1315789473684212,Clue (1985),Comedy|Crime|Mystery|Thriller +2414,3.3333333333333335,Young Sherlock Holmes (1985),Action|Adventure|Children|Fantasy|Mystery|Thriller +2415,4.0,Violets Are Blue... (1986),Drama|Romance +2416,2.7142857142857144,Back to School (1986),Comedy +2417,3.0,Heartburn (1986),Comedy|Drama +2418,3.5,Nothing in Common (1986),Comedy +2419,3.0,Extremities (1986),Drama|Thriller +2420,3.3684210526315788,"Karate Kid, The (1984)",Drama +2421,2.574074074074074,"Karate Kid, Part II, The (1986)",Action|Adventure|Drama +2422,2.236842105263158,"Karate Kid, Part III, The (1989)",Action|Adventure|Children|Drama +2423,3.74,Christmas Vacation (National Lampoon's Christmas Vacation) (1989),Comedy +2424,3.2416666666666667,You've Got Mail (1998),Comedy|Romance +2425,3.6,"General, The (1998)",Crime +2427,3.3472222222222223,"Thin Red Line, The (1998)",Action|Drama|War +2428,2.590909090909091,"Faculty, The (1998)",Horror|Sci-Fi +2429,3.0,Mighty Joe Young (1998),Action|Adventure|Drama|Fantasy|Thriller +2430,3.8,Mighty Joe Young (1949),Adventure|Children|Drama +2431,3.107142857142857,Patch Adams (1998),Comedy|Drama +2432,3.9,Stepmom (1998),Drama +2433,3.1578947368421053,"Civil Action, A (1998)",Drama +2434,3.75,Down in the Delta (1998),Drama +2435,3.0,Hurlyburly (1998),Drama +2436,3.5,Tea with Mussolini (1999),Comedy|Drama|War +2437,3.0,Wilde (1997),Drama +2438,4.0,Outside Ozona (1998),Comedy|Drama|Thriller +2439,3.4,Affliction (1997),Drama +2440,4.0,Another Day in Paradise (1998),Drama +2441,3.0,"Hi-Lo Country, The (1998)",Drama|Romance|Western +2442,4.0,Hilary and Jackie (1998),Drama +2443,4.0,Playing by Heart (1998),Drama|Romance +2445,2.625,At First Sight (1999),Drama +2446,1.4,In Dreams (1999),Horror|Thriller +2447,2.923076923076923,Varsity Blues (1999),Comedy|Drama +2448,2.0,Virus (1999),Horror|Sci-Fi +2449,2.0,"Garbage Pail Kids Movie, The (1987)",Adventure|Children|Comedy +2450,1.7916666666666667,Howard the Duck (1986),Adventure|Comedy|Sci-Fi +2451,3.8333333333333335,"Gate, The (1987)",Horror +2453,3.2857142857142856,"Boy Who Could Fly, The (1986)",Drama|Fantasy +2454,3.6785714285714284,"Fly, The (1958)",Horror|Mystery|Sci-Fi +2455,3.393617021276596,"Fly, The (1986)",Drama|Horror|Sci-Fi|Thriller +2456,2.2142857142857144,"Fly II, The (1989)",Horror|Sci-Fi +2457,3.2,Running Scared (1986),Action|Comedy +2458,3.0,Armed and Dangerous (1986),Comedy|Crime +2459,3.5,"Texas Chainsaw Massacre, The (1974)",Horror +2460,3.4,"Texas Chainsaw Massacre 2, The (1986)",Horror +2461,3.25,Leatherface: Texas Chainsaw Massacre III (1990),Comedy|Horror|Thriller +2462,2.125,Texas Chainsaw Massacre: The Next Generation (a.k.a. The Return of the Texas Chainsaw Massacre) (1994),Horror +2463,3.725,Ruthless People (1986),Comedy +2464,2.5,Trick or Treat (1986),Horror +2465,4.0,Deadly Friend (1986),Horror +2467,4.239130434782608,"Name of the Rose, The (Name der Rose, Der) (1986)",Crime|Drama|Mystery|Thriller +2468,2.966666666666667,Jumpin' Jack Flash (1986),Action|Comedy|Romance|Thriller +2469,3.3181818181818183,Peggy Sue Got Married (1986),Comedy|Drama +2470,3.2333333333333334,Crocodile Dundee (1986),Adventure|Comedy +2471,2.6136363636363638,Crocodile Dundee II (1988),Action|Adventure|Comedy +2472,3.25,Tough Guys (1986),Comedy +2473,2.0555555555555554,Soul Man (1986),Comedy +2474,3.823529411764706,"Color of Money, The (1986)",Drama +2475,3.5,52 Pick-Up (1986),Action|Mystery|Thriller +2476,2.6666666666666665,Heartbreak Ridge (1986),Action|War +2478,3.2580645161290325,¡Three Amigos! (1986),Comedy|Western +2479,2.0,Gloria (1999),Drama|Thriller +2481,3.75,My Name Is Joe (1998),Drama|Romance +2482,3.25,Still Crazy (1998),Comedy|Romance +2483,2.75,"Day of the Beast, The (Día de la Bestia, El) (1995)",Adventure|Comedy|Thriller +2485,3.189655172413793,She's All That (1999),Comedy|Romance +2486,3.0,"24 Hour Woman, The (1998)",Comedy|Drama +2487,3.0,"Blood, Guts, Bullets and Octane (1998)",Action|Comedy +2488,3.8,Peeping Tom (1960),Drama|Horror|Thriller +2490,3.5625,Payback (1999),Action|Thriller +2491,3.1,Simply Irresistible (1999),Comedy|Romance +2492,3.1,20 Dates (1998),Comedy|Romance +2493,3.5,"Harmonists, The (1997)",Drama +2494,4.0,"Last Days, The (1998)",Documentary +2495,3.875,"Fantastic Planet, The (Planète sauvage, La) (1973)",Animation|Sci-Fi +2496,3.3095238095238093,Blast from the Past (1999),Comedy|Romance +2497,1.8,Message in a Bottle (1999),Romance +2498,2.3333333333333335,My Favorite Martian (1999),Comedy|Sci-Fi +2499,3.5,God Said 'Ha!' (1998),Comedy +2500,2.1666666666666665,Jawbreaker (1999),Comedy +2501,4.1,October Sky (1999),Drama +2502,3.9150943396226414,Office Space (1999),Comedy|Crime +2504,3.5,200 Cigarettes (1999),Comedy|Drama +2505,2.3055555555555554,8MM (1999),Drama|Mystery|Thriller +2506,2.75,"Other Sister, The (1999)",Comedy|Drama|Romance +2507,1.0,Breakfast of Champions (1999),Comedy|Sci-Fi +2511,4.0,"Long Goodbye, The (1973)",Crime|Film-Noir +2513,3.0277777777777777,Pet Sematary (1989),Horror +2514,2.125,Pet Sematary II (1992),Comedy|Horror +2515,2.0,Children of the Corn II: The Final Sacrifice (1993),Horror +2516,0.75,Children of the Corn III (1994),Horror +2517,3.375,Christine (1983),Horror +2518,3.3333333333333335,Night Shift (1982),Comedy +2519,2.0,House on Haunted Hill (1959),Drama|Horror|Thriller +2520,3.3666666666666667,Airport (1970),Drama +2521,2.7777777777777777,Airport 1975 (1974),Action|Drama|Thriller +2522,2.409090909090909,Airport '77 (1977),Drama +2523,2.6666666666666665,Rollercoaster (1977),Drama|Thriller +2524,3.4,"Towering Inferno, The (1974)",Action|Adventure|Drama|Thriller +2525,2.7,Alligator (1980),Action|Horror|Sci-Fi +2526,3.0,Meteor (1979),Sci-Fi +2527,3.3846153846153846,Westworld (1973),Action|Sci-Fi|Thriller|Western +2528,3.3035714285714284,Logan's Run (1976),Action|Adventure|Sci-Fi +2529,3.6315789473684212,Planet of the Apes (1968),Action|Drama|Sci-Fi +2530,2.875,Beneath the Planet of the Apes (1970),Action|Sci-Fi +2531,2.6666666666666665,Battle for the Planet of the Apes (1973),Action|Sci-Fi +2532,3.142857142857143,Conquest of the Planet of the Apes (1972),Action|Sci-Fi +2533,2.730769230769231,Escape from the Planet of the Apes (1971),Action|Sci-Fi +2534,3.0,Avalanche (1978),Action +2535,2.6666666666666665,Earthquake (1974),Action|Drama|Thriller +2536,3.1666666666666665,"Concorde: Airport '79, The (1979)",Drama +2537,2.0,Beyond the Poseidon Adventure (1979),Adventure +2539,3.2450980392156863,Analyze This (1999),Comedy +2540,3.1,"Corruptor, The (1999)",Action|Crime|Drama|Thriller +2541,3.127450980392157,Cruel Intentions (1999),Drama +2542,4.128378378378378,"Lock, Stock & Two Smoking Barrels (1998)",Comedy|Crime|Thriller +2545,4.25,Relax... It's Just Sex (1998),Comedy +2546,2.375,"Deep End of the Ocean, The (1999)",Drama +2548,1.125,"Rage: Carrie 2, The (1999)",Horror +2549,2.0555555555555554,Wing Commander (1999),Action|Sci-Fi +2550,4.166666666666667,"Haunting, The (1963)",Horror|Thriller +2551,3.75,Dead Ringers (1988),Drama|Horror|Thriller +2552,2.5,My Boyfriend's Back (1993),Comedy +2553,4.4,Village of the Damned (1960),Horror|Sci-Fi|Thriller +2554,3.3333333333333335,Children of the Damned (1963),Horror|Sci-Fi|Thriller +2555,0.875,Baby Geniuses (1999),Comedy +2557,3.1666666666666665,I Stand Alone (Seul contre tous) (1998),Drama|Thriller +2558,2.7916666666666665,Forces of Nature (1999),Comedy|Romance +2559,2.5,"King and I, The (1999)",Animation|Children +2560,3.0,Ravenous (1999),Horror|Thriller +2561,3.625,True Crime (1999),Crime|Thriller +2562,5.0,Bandits (1997),Drama +2563,4.666666666666667,Dangerous Beauty (1998),Drama +2565,3.380952380952381,"King and I, The (1956)",Drama|Musical|Romance +2566,3.0,Doug's 1st Movie (1999),Animation|Children +2567,3.0,EDtv (1999),Comedy +2568,1.5833333333333333,"Mod Squad, The (1999)",Action|Crime +2569,4.0,Among Giants (1998),Comedy|Drama|Romance +2570,3.5,"Walk on the Moon, A (1999)",Drama|Romance +2571,4.183397683397684,"Matrix, The (1999)",Action|Sci-Fi|Thriller +2572,3.473684210526316,10 Things I Hate About You (1999),Comedy|Romance +2573,5.0,Tango (1998),Drama|Musical +2574,2.3181818181818183,"Out-of-Towners, The (1999)",Comedy +2575,3.7222222222222223,"Dreamlife of Angels, The (Vie rêvée des anges, La) (1998)",Drama +2577,3.0,Metroland (1997),Comedy|Drama +2579,3.5,Following (1998),Crime|Mystery|Thriller +2580,3.87,Go (1999),Comedy|Crime +2581,3.0428571428571427,Never Been Kissed (1999),Comedy|Romance +2582,3.125,Twin Dragons (Shuang long hui) (1992),Action|Comedy +2583,3.3333333333333335,Cookie's Fortune (1999),Comedy|Drama +2585,3.5,"Lovers of the Arctic Circle, The (Los Amantes del Círculo Polar) (1998)",Drama|Romance +2586,4.0,Goodbye Lover (1999),Comedy|Crime|Thriller +2587,2.6,Life (1999),Comedy|Crime|Drama +2589,3.0,Friends & Lovers (1999),Comedy|Drama|Romance +2590,3.5,Hideous Kinky (1998),Drama +2594,3.9444444444444446,Open Your Eyes (Abre los ojos) (1997),Drama|Romance|Sci-Fi|Thriller +2596,3.8,SLC Punk! (1998),Comedy|Drama +2597,2.0,Lost & Found (1999),Comedy|Romance +2598,2.875,Pushing Tin (1999),Comedy +2599,4.044303797468355,Election (1999),Comedy +2600,3.125,eXistenZ (1999),Action|Sci-Fi|Thriller +2605,3.1463414634146343,Entrapment (1999),Crime|Thriller +2606,2.9285714285714284,Idle Hands (1999),Comedy|Horror +2607,3.6666666666666665,Get Real (1998),Drama|Romance +2609,3.5,"King of Masks, The (Bian Lian) (1996)",Drama +2610,3.5,Three Seasons (1999),Drama +2611,3.75,"Winslow Boy, The (1999)",Drama +2612,3.7777777777777777,Mildred Pierce (1945),Drama|Film-Noir +2613,3.6,Night of the Comet (1984),Comedy|Horror|Sci-Fi +2615,3.3333333333333335,My Science Project (1985),Adventure|Sci-Fi +2616,2.6296296296296298,Dick Tracy (1990),Action|Crime +2617,3.2848101265822787,"Mummy, The (1999)",Action|Adventure|Comedy|Fantasy|Horror|Thriller +2618,3.5,"Castle, The (1997)",Comedy +2620,4.333333333333333,This Is My Father (1998),Drama|Romance +2621,3.375,Xiu Xiu: The Sent-Down Girl (Tian yu) (1998),Drama +2622,3.238095238095238,William Shakespeare's A Midsummer Night's Dream (1999),Comedy|Fantasy +2624,3.6666666666666665,After Life (Wandafuru raifu) (1998),Drama|Fantasy +2625,4.0,Black Mask (Hak hap) (1996),Action|Adventure|Crime|Sci-Fi|Thriller +2626,4.5,Edge of Seventeen (1998),Comedy|Drama|Romance +2627,5.0,Endurance (1999),Documentary|Drama +2628,3.199275362318841,Star Wars: Episode I - The Phantom Menace (1999),Action|Adventure|Sci-Fi +2629,3.5,"Love Letter, The (1999)",Comedy|Romance +2630,3.5,Besieged (a.k.a. L' Assedio) (1998),Drama +2631,3.0,Frogs for Snakes (1998),Comedy|Film-Noir|Thriller +2633,3.6666666666666665,"Mummy, The (1932)",Horror|Romance +2634,3.6666666666666665,"Mummy, The (1959)",Horror +2635,4.0,"Mummy's Curse, The (1944)",Horror +2636,5.0,"Mummy's Ghost, The (1944)",Horror +2637,4.0,"Mummy's Hand, The (1940)",Horror +2638,3.0,"Mummy's Tomb, The (1942)",Horror +2639,3.4,Mommie Dearest (1981),Drama +2640,3.433333333333333,Superman (1978),Action|Adventure|Sci-Fi +2641,3.1973684210526314,Superman II (1980),Action|Sci-Fi +2642,2.2708333333333335,Superman III (1983),Action|Adventure|Sci-Fi +2643,2.2083333333333335,Superman IV: The Quest for Peace (1987),Action|Adventure|Sci-Fi +2644,4.111111111111111,Dracula (1931),Horror +2647,5.0,House of Frankenstein (1944),Horror +2648,4.166666666666667,Frankenstein (1931),Drama|Horror|Sci-Fi +2649,5.0,Son of Frankenstein (1939),Horror +2650,5.0,"Ghost of Frankenstein, The (1942)",Horror +2651,4.5,Frankenstein Meets the Wolf Man (1943),Horror +2652,4.5,"Curse of Frankenstein, The (1957)",Horror +2653,2.0,Son of Dracula (1943),Horror +2654,4.25,"Wolf Man, The (1941)",Drama|Fantasy|Horror +2655,3.0,Howling II: Your Sister Is a Werewolf (1985),Horror +2656,3.5,Tarantula (1955),Horror|Sci-Fi +2657,3.1746031746031744,"Rocky Horror Picture Show, The (1975)",Comedy|Horror|Musical|Sci-Fi +2659,4.0,It Came from Hollywood (1982),Comedy|Documentary +2660,4.5,"Thing from Another World, The (1951)",Horror|Sci-Fi +2661,3.5,It Came from Outer Space (1953),Sci-Fi +2662,3.361111111111111,"War of the Worlds, The (1953)",Action|Drama|Sci-Fi +2664,3.973684210526316,Invasion of the Body Snatchers (1956),Horror|Sci-Fi|Thriller +2668,3.0,Swamp Thing (1982),Horror|Sci-Fi +2669,3.3333333333333335,Pork Chop Hill (1959),War +2670,4.333333333333333,Run Silent Run Deep (1958),War +2671,3.3828125,Notting Hill (1999),Comedy|Romance +2672,3.0833333333333335,"Thirteenth Floor, The (1999)",Drama|Sci-Fi|Thriller +2673,4.75,Eternity and a Day (Mia aoniotita kai mia mera) (1998),Drama +2674,3.0,"Loss of Sexual Innocence, The (1999)",Drama|Fantasy +2676,2.75,Instinct (1999),Drama|Thriller +2677,3.8461538461538463,Buena Vista Social Club (1999),Documentary|Musical +2678,1.6666666666666667,Desert Blue (1998),Drama +2681,3.0,Free Enterprise (1998),Comedy|Romance|Sci-Fi +2682,4.375,Limbo (1999),Drama +2683,3.2723214285714284,Austin Powers: The Spy Who Shagged Me (1999),Action|Adventure|Comedy +2686,3.8181818181818183,"Red Violin, The (Violon rouge, Le) (1998)",Drama|Mystery +2687,3.625,Tarzan (1999),Adventure|Animation|Children|Drama +2688,3.2419354838709675,"General's Daughter, The (1999)",Crime|Drama|Mystery|Thriller +2689,2.8333333333333335,Get Bruce (1999),Documentary +2690,4.25,"Ideal Husband, An (1999)",Comedy|Romance +2691,2.75,"Legend of 1900, The (a.k.a. The Legend of the Pianist on the Ocean) (Leggenda del pianista sull'oceano) (1998)",Drama +2692,4.2,Run Lola Run (Lola rennt) (1998),Action|Crime +2693,3.85,Trekkies (1997),Documentary +2694,3.3448275862068964,Big Daddy (1999),Comedy +2696,3.6,"Dinner Game, The (Dîner de cons, Le) (1998)",Comedy +2697,2.0,My Son the Fanatic (1997),Comedy|Drama|Romance +2699,2.911290322580645,Arachnophobia (1990),Comedy|Horror +2700,3.5,"South Park: Bigger, Longer and Uncut (1999)",Animation|Comedy|Musical +2701,2.0319148936170213,Wild Wild West (1999),Action|Comedy|Sci-Fi|Western +2702,2.880952380952381,Summer of Sam (1999),Drama +2704,3.6666666666666665,"Lovers on the Bridge, The (Amants du Pont-Neuf, Les) (1991)",Drama|Romance +2706,3.2972972972972974,American Pie (1999),Comedy|Romance +2707,3.513888888888889,Arlington Road (1999),Thriller +2708,4.0,"Autumn Tale, An (Conte d'automne) (1998)",Romance +2709,2.642857142857143,Muppets From Space (1999),Children|Comedy +2710,2.738372093023256,"Blair Witch Project, The (1999)",Drama|Horror|Thriller +2712,3.626984126984127,Eyes Wide Shut (1999),Drama|Mystery|Thriller +2713,2.238095238095238,Lake Placid (1999),Horror|Thriller +2714,2.3333333333333335,"Wood, The (1999)",Drama +2715,2.6666666666666665,"Velocity of Gary, The (1998)",Comedy|Romance +2716,3.761904761904762,Ghostbusters (a.k.a. Ghost Busters) (1984),Action|Comedy|Sci-Fi +2717,2.755813953488372,Ghostbusters II (1989),Comedy|Fantasy|Sci-Fi +2718,3.4615384615384617,Drop Dead Gorgeous (1999),Comedy +2719,2.1904761904761907,"Haunting, The (1999)",Horror|Thriller +2720,2.1,Inspector Gadget (1999),Action|Adventure|Children|Comedy +2721,4.416666666666667,Trick (1999),Comedy|Romance +2722,2.573529411764706,Deep Blue Sea (1999),Action|Horror|Sci-Fi|Thriller +2723,3.111111111111111,Mystery Men (1999),Action|Comedy|Fantasy +2724,2.811111111111111,Runaway Bride (1999),Comedy|Romance +2725,3.6,Twin Falls Idaho (1999),Drama +2726,4.090909090909091,"Killing, The (1956)",Crime|Film-Noir +2727,3.5,Killer's Kiss (1955),Crime|Film-Noir +2728,3.9210526315789473,Spartacus (1960),Action|Drama|Romance|War +2729,3.6875,Lolita (1962),Drama|Romance +2730,3.3333333333333335,Barry Lyndon (1975),Drama|Romance|War +2731,3.892857142857143,"400 Blows, The (Les quatre cents coups) (1959)",Crime|Drama +2732,3.85,Jules and Jim (Jules et Jim) (1961),Drama|Romance +2733,2.3333333333333335,Vibes (1988),Adventure|Comedy|Romance +2734,3.3333333333333335,"Mosquito Coast, The (1986)",Adventure|Drama|Thriller +2735,2.6666666666666665,"Golden Child, The (1986)",Action|Adventure|Comedy|Fantasy|Mystery +2736,3.75,Brighton Beach Memoirs (1986),Comedy +2738,2.6666666666666665,Crimes of the Heart (1986),Comedy|Drama +2739,3.935483870967742,"Color Purple, The (1985)",Drama +2741,2.6666666666666665,No Mercy (1986),Action|Crime|Thriller +2745,3.9,"Mission, The (1986)",Drama +2746,3.577777777777778,Little Shop of Horrors (1986),Comedy|Horror|Musical +2747,3.0357142857142856,"Little Shop of Horrors, The (1960)",Comedy|Horror +2748,2.7,Allan Quatermain and the Lost City of Gold (1987),Action|Adventure|Comedy +2749,4.0,"Morning After, The (1986)",Drama|Mystery +2750,3.75,Radio Days (1987),Comedy|Drama +2751,3.5,From the Hip (1987),Comedy|Drama +2752,4.0,Outrageous Fortune (1987),Comedy|Mystery +2753,2.6666666666666665,"Bedroom Window, The (1987)",Thriller +2754,3.0,Deadtime Stories (1987),Horror +2755,3.5,Light of Day (1987),Drama +2757,3.857142857142857,Frances (1982),Drama +2758,4.0,Plenty (1985),Drama +2759,3.0681818181818183,Dick (1999),Comedy +2761,3.7738095238095237,"Iron Giant, The (1999)",Adventure|Animation|Children|Drama|Sci-Fi +2762,4.018134715025907,"Sixth Sense, The (1999)",Drama|Horror|Mystery +2763,3.3974358974358974,"Thomas Crown Affair, The (1999)",Action|Mystery +2764,4.166666666666667,"Thomas Crown Affair, The (1968)",Crime|Drama|Romance|Thriller +2766,4.0,"Adventures of Sebastian Cole, The (1998)",Comedy|Drama +2767,1.5,Illuminata (1998),Comedy +2769,2.3333333333333335,"Yards, The (2000)",Crime|Drama +2770,3.0686274509803924,Bowfinger (1999),Comedy +2771,2.0,Brokedown Palace (1999),Drama +2772,3.0,Detroit Rock City (1999),Comedy +2774,4.333333333333333,Better Than Chocolate (1999),Comedy|Romance +2775,3.0,Head On (1998),Drama +2776,3.0,"Marcello Mastroianni: I Remember Yes, I Remember (Marcello Mastroianni: mi ricordo, sì, io mi ricordo) (1997)",Documentary +2779,3.642857142857143,Heaven Can Wait (1978),Comedy +2780,4.166666666666667,"Raven, The (1963)",Comedy|Horror +2781,3.0,"Tingler, The (1959)",Horror +2782,3.8333333333333335,Pit and the Pendulum (1961),Horror +2783,3.0,"Tomb of Ligeia, The (1965)",Horror +2784,4.0,"Masque of the Red Death, The (1964)",Horror +2786,2.5,Haunted Honeymoon (1986),Comedy +2787,3.25,Cat's Eye (1985),Horror +2788,4.090909090909091,Monty Python's And Now for Something Completely Different (1971),Comedy +2789,2.4,Damien: Omen II (1978),Horror +2790,2.4166666666666665,"Final Conflict, The (a.k.a. Omen III: The Final Conflict) (1981)",Horror|Thriller +2791,3.8207547169811322,Airplane! (1980),Comedy +2792,3.36,Airplane II: The Sequel (1982),Comedy +2793,2.5555555555555554,"American Werewolf in Paris, An (1997)",Comedy|Horror|Romance|Thriller +2794,2.875,European Vacation (aka National Lampoon's European Vacation) (1985),Adventure|Comedy|Romance +2795,3.683333333333333,National Lampoon's Vacation (1983),Comedy +2796,2.5555555555555554,Funny Farm (1988),Comedy +2797,3.8317757009345796,Big (1988),Comedy|Drama|Fantasy|Romance +2798,2.5,Problem Child (1990),Children|Comedy +2799,1.75,Problem Child 2 (1991),Comedy +2800,3.0,Little Nemo: Adventures in Slumberland (1992),Adventure|Animation|Children|Drama|Fantasy +2801,3.8,Oscar and Lucinda (a.k.a. Oscar & Lucinda) (1997),Drama|Romance +2802,3.3,Tequila Sunrise (1988),Action|Drama|Romance|Thriller +2803,3.3,"Pelican Brief, The (1993)",Crime|Drama|Mystery|Romance|Thriller +2804,4.046666666666667,"Christmas Story, A (1983)",Children|Comedy +2805,3.108695652173913,Mickey Blue Eyes (1999),Comedy|Romance +2806,2.4545454545454546,Teaching Mrs. Tingle (1999),Comedy|Thriller +2807,2.5,Universal Soldier: The Return (1999),Action|Sci-Fi +2808,2.5625,Universal Soldier (1992),Action|Sci-Fi +2809,1.5,Love Stinks (1999),Comedy +2810,3.75,Perfect Blue (1997),Animation|Horror|Mystery|Thriller +2812,3.0,In Too Deep (1999),Action|Thriller +2815,2.5,Iron Eagle (1986),Action|War +2816,1.75,Iron Eagle II (1988),Action|War +2817,1.6666666666666667,Aces: Iron Eagle III (1992),Action +2819,3.8,Three Days of the Condor (3 Days of the Condor) (1975),Drama|Mystery|Romance|Thriller +2820,4.5,Hamlet (1964),Drama +2822,2.9,Medicine Man (1992),Adventure|Romance +2824,3.0,On the Ropes (1999),Documentary|Drama +2826,2.9,"13th Warrior, The (1999)",Action|Adventure|Fantasy +2827,2.409090909090909,"Astronaut's Wife, The (1999)",Horror|Sci-Fi|Thriller +2828,2.5,Dudley Do-Right (1999),Children|Comedy +2829,3.0,"Muse, The (1999)",Comedy +2832,3.0,"Lost Son, The (1999)",Drama +2835,3.0,Chill Factor (1999),Action|Adventure|Comedy|Thriller +2836,3.1666666666666665,Outside Providence (1999),Comedy +2837,5.0,Bedrooms & Hallways (1998),Comedy|Romance +2839,4.0,West Beirut (West Beyrouth) (1998),Drama +2840,2.75,Stigmata (1999),Drama|Thriller +2841,3.7954545454545454,Stir of Echoes (1999),Horror|Mystery|Thriller +2843,4.666666666666667,"Black Cat, White Cat (Crna macka, beli macor) (1998)",Comedy|Romance +2844,3.3333333333333335,"Minus Man, The (1999)",Drama|Mystery +2845,0.5,Whiteboyz (1999),Comedy|Drama +2846,3.9444444444444446,"Adventures of Milo and Otis, The (Koneko monogatari) (1986)",Adventure|Children|Comedy|Drama +2847,3.6666666666666665,Only Angels Have Wings (1939),Adventure|Drama|Romance +2848,4.0,"Othello (Tragedy of Othello: The Moor of Venice, The) (1952)",Drama +2849,2.0,Queens Logic (1991),Comedy|Drama +2850,2.0,Public Access (1993),Drama|Thriller +2851,3.0,Saturn 3 (1980),Adventure|Sci-Fi|Thriller +2852,3.6666666666666665,"Soldier's Story, A (1984)",Drama +2853,3.5,"Alice, Sweet Alice (a.k.a. Communion) (a.k.a. Holy Terror) (1976)",Horror|Mystery +2855,4.0,Nightmares (1983),Horror +2856,3.4,I Saw What You Did (1965),Thriller +2857,3.7857142857142856,Yellow Submarine (1968),Adventure|Animation|Comedy|Fantasy|Musical +2858,4.236363636363636,American Beauty (1999),Drama|Romance +2859,4.0,Stop Making Sense (1984),Documentary|Musical +2860,3.3,Blue Streak (1999),Comedy +2861,3.066666666666667,For Love of the Game (1999),Comedy|Drama +2862,3.125,Caligula (1979),Drama +2863,3.8833333333333333,"Hard Day's Night, A (1964)",Adventure|Comedy|Musical +2864,2.75,Splendor (1999),Comedy +2866,3.75,"Buddy Holly Story, The (1978)",Drama +2867,3.25,Fright Night (1985),Comedy|Horror|Thriller +2868,3.0,Fright Night Part II (1988),Horror +2869,1.0,"Separation, The (Séparation, La) (1994)",Drama +2870,3.4375,Barefoot in the Park (1967),Comedy +2871,3.9375,Deliverance (1972),Adventure|Drama|Thriller +2872,3.8125,Excalibur (1981),Adventure|Fantasy +2874,4.5,"Pajama Game, The (1957)",Comedy|Musical|Romance +2875,3.4444444444444446,Sommersby (1993),Drama|Mystery|Romance +2876,2.6666666666666665,Thumbelina (1994),Animation|Children|Fantasy +2877,3.111111111111111,Tommy (1975),Musical +2878,2.0,Hell Night (1981),Horror +2879,3.7,Armour of God II: Operation Condor (Operation Condor) (Fei ying gai wak) (1991),Action|Adventure|Comedy +2880,5.0,Armour of God (Long xiong hu di) (1987),Action|Adventure|Comedy +2881,3.0930232558139537,Double Jeopardy (1999),Action|Crime|Drama|Thriller +2882,2.1666666666666665,Jakob the Liar (1999),Drama +2883,3.625,Mumford (1999),Comedy|Drama +2884,1.0,Dog Park (1998),Comedy|Romance +2885,3.5,Guinevere (1999),Drama|Romance +2886,2.25,"Adventures of Elmo in Grouchland, The (1999)",Children|Comedy +2887,2.5,Simon Sez (1999),Action|Comedy +2888,2.590909090909091,Drive Me Crazy (1999),Comedy|Romance +2889,3.7142857142857144,"Mystery, Alaska (1999)",Comedy|Drama +2890,3.739130434782609,Three Kings (1999),Action|Adventure|Comedy|Drama|War +2891,2.75,"Happy, Texas (1999)",Comedy +2892,2.6666666666666665,New Rose Hotel (1998),Action|Drama +2893,4.0,Plunkett & MaCleane (1999),Action|Adventure|Drama +2894,2.0,Romance (1999),Drama|Romance +2897,5.0,And the Ship Sails On (E la nave va) (1983),Comedy|War +2898,3.5,"Dark Half, The (1993)",Horror|Mystery +2899,3.6666666666666665,Gulliver's Travels (1939),Adventure|Animation|Children +2900,3.0,Monkey Shines (1988),Horror|Sci-Fi +2901,3.8333333333333335,Phantasm (1979),Horror|Sci-Fi +2902,2.375,Psycho II (1983),Horror|Mystery|Thriller +2903,1.8333333333333333,Psycho III (1986),Horror|Thriller +2904,3.0,Rain (1932),Drama +2905,3.642857142857143,Sanjuro (Tsubaki Sanjûrô) (1962),Action|Adventure|Drama +2906,2.6666666666666665,Random Hearts (1999),Drama|Romance +2907,3.0,Superstar (1999),Comedy +2908,3.897727272727273,Boys Don't Cry (1999),Drama +2912,3.764705882352941,"Limey, The (1999)",Crime|Drama|Thriller +2913,3.0,The Mating Habits of the Earthbound Human (1999),Comedy|Sci-Fi +2915,3.3452380952380953,Risky Business (1983),Comedy +2916,3.5625,Total Recall (1990),Action|Adventure|Sci-Fi|Thriller +2917,4.25,Body Heat (1981),Crime|Thriller +2918,4.007518796992481,Ferris Bueller's Day Off (1986),Comedy +2919,3.7941176470588234,"Year of Living Dangerously, The (1982)",Drama|Romance|War +2920,4.5,Children of Paradise (Les enfants du paradis) (1945),Drama|Romance +2921,3.5,High Plains Drifter (1973),Western +2922,3.8333333333333335,Hang 'Em High (1968),Crime|Drama|Western +2923,4.0,Handle with Care (a.k.a. Citizen's Band) (1977),Comedy +2924,4.583333333333333,Drunken Master (Jui kuen) (1978),Action|Comedy +2925,4.214285714285714,"Conformist, The (Conformista, Il) (1970)",Drama +2926,3.6666666666666665,Hairspray (1988),Comedy|Drama +2927,4.5,Brief Encounter (1946),Drama|Romance +2928,3.6666666666666665,"Razor's Edge, The (1984)",Drama +2929,3.892857142857143,Reds (1981),Drama|Romance +2930,4.0,Return with Honor (1998),Documentary +2932,4.0,Days of Heaven (1978),Drama +2935,4.2,"Lady Eve, The (1941)",Comedy|Romance +2936,4.25,Sullivan's Travels (1941),Adventure|Comedy|Romance +2937,4.0,"Palm Beach Story, The (1942)",Comedy +2938,4.666666666666667,Man Facing Southeast (1986),Drama|Sci-Fi +2939,3.0,Niagara (1953),Drama|Thriller +2940,3.6875,Gilda (1946),Drama|Film-Noir|Mystery|Romance +2941,3.25,South Pacific (1958),Musical|Romance|War +2942,3.216666666666667,Flashdance (1983),Drama|Romance +2943,2.6666666666666665,Indochine (1992),Drama|Romance +2944,3.6714285714285713,"Dirty Dozen, The (1967)",Action|Drama|War +2945,5.0,Mike's Murder (1984),Mystery +2946,3.5454545454545454,Help! (1965),Comedy|Musical +2947,3.7169811320754715,Goldfinger (1964),Action|Adventure|Thriller +2948,3.640625,From Russia with Love (1963),Action|Adventure|Thriller +2949,3.6451612903225805,Dr. No (1962),Action|Adventure|Thriller +2950,2.526315789473684,"Blue Lagoon, The (1980)",Adventure|Drama|Romance +2951,3.8947368421052633,"Fistful of Dollars, A (Per un pugno di dollari) (1964)",Action|Western +2952,3.5,Sydney (Hard Eight) (1996),Crime|Drama|Thriller +2953,2.467741935483871,Home Alone 2: Lost in New York (1992),Children|Comedy +2956,3.5,Someone to Watch Over Me (1987),Action|Crime|Thriller +2959,4.178217821782178,Fight Club (1999),Action|Crime|Drama|Thriller +2961,3.4545454545454546,"Story of Us, The (1999)",Comedy|Drama +2962,3.625,Fever Pitch (1997),Comedy|Romance +2964,3.125,Julien Donkey-Boy (1999),Drama +2966,3.5789473684210527,"Straight Story, The (1999)",Adventure|Drama +2967,3.4,"Bad Seed, The (1956)",Drama|Thriller +2968,3.5697674418604652,Time Bandits (1981),Adventure|Comedy|Fantasy|Sci-Fi +2969,3.6666666666666665,"Man and a Woman, A (Un homme et une femme) (1966)",Drama|Romance +2970,3.6666666666666665,Fitzcarraldo (1982),Adventure|Drama +2971,4.1,All That Jazz (1979),Drama|Fantasy|Musical +2972,2.5,Red Sorghum (Hong gao liang) (1987),Drama|War +2973,4.178571428571429,Crimes and Misdemeanors (1989),Comedy|Crime|Drama +2974,1.5,Bats (1999),Horror|Thriller +2975,4.0,"Best Man, The (1999)",Comedy|Drama +2976,3.5476190476190474,Bringing Out the Dead (1999),Drama +2977,3.0,Crazy in Alabama (1999),Comedy|Drama +2978,3.1875,Three to Tango (1999),Comedy|Romance +2979,2.0,Body Shots (1999),Drama +2981,5.0,"Brother, Can You Spare a Dime? (1975)",Documentary +2982,5.0,"Guardian, The (1990)",Horror|Thriller +2983,4.0,"Ipcress File, The (1965)",Thriller +2984,5.0,On Any Sunday (1971),Documentary +2985,3.5948275862068964,RoboCop (1987),Action|Crime|Drama|Sci-Fi|Thriller +2986,2.763157894736842,RoboCop 2 (1990),Action|Crime|Sci-Fi|Thriller +2987,3.6666666666666665,Who Framed Roger Rabbit? (1988),Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery +2988,4.0,Melvin and Howard (1980),Drama +2989,3.5277777777777777,For Your Eyes Only (1981),Action|Adventure|Thriller +2990,3.2941176470588234,Licence to Kill (1989),Action|Adventure|Thriller +2991,3.625,Live and Let Die (1973),Action|Adventure|Thriller +2992,4.0,Rawhead Rex (1986),Horror|Thriller +2993,3.5588235294117645,Thunderball (1965),Action|Adventure|Thriller +2995,1.96875,House on Haunted Hill (1999),Horror|Thriller +2996,3.0,Music of the Heart (1999),Drama +2997,3.9563492063492065,Being John Malkovich (1999),Comedy|Drama|Fantasy +2998,4.0,Dreaming of Joseph Lees (1999),Drama|Romance +3000,4.131578947368421,Princess Mononoke (Mononoke-hime) (1997),Action|Adventure|Animation|Drama|Fantasy +3001,2.0,"Suburbans, The (1999)",Drama +3002,3.75,My Best Fiend (Mein liebster Feind) (1999),Documentary +3003,1.0,Train of Life (Train de vie) (1998),Comedy|Drama|Romance|War +3004,2.6153846153846154,"Bachelor, The (1999)",Comedy|Romance +3005,2.8833333333333333,"Bone Collector, The (1999)",Thriller +3006,3.8666666666666667,"Insider, The (1999)",Drama|Thriller +3007,4.178571428571429,American Movie (1999),Documentary +3008,3.5,Last Night (1998),Drama|Sci-Fi +3010,4.5,Rosetta (1999),Drama +3011,3.7,"They Shoot Horses, Don't They? (1969)",Drama +3013,2.5,Bride of Re-Animator (1990),Comedy|Horror +3015,3.3333333333333335,Coma (1978),Thriller +3016,3.7333333333333334,Creepshow (1982),Horror +3017,3.1,Creepshow 2 (1987),Horror +3018,3.8214285714285716,Re-Animator (1985),Comedy|Horror|Sci-Fi +3019,3.8333333333333335,Drugstore Cowboy (1989),Crime|Drama +3020,3.6129032258064515,Falling Down (1993),Action|Drama +3021,5.0,"Funhouse, The (1981)",Horror +3022,4.25,"General, The (1926)",Comedy|War +3024,3.6666666666666665,Piranha (1978),Horror|Sci-Fi +3025,3.0,Rough Night in Jericho (1967),Western +3028,2.75,"Taming of the Shrew, The (1967)",Comedy +3029,3.5,Nighthawks (1981),Action|Drama +3030,4.166666666666667,Yojimbo (1961),Action|Adventure +3031,3.0,Repossessed (1990),Comedy +3032,3.5714285714285716,"Omega Man, The (1971)",Action|Drama|Sci-Fi|Thriller +3033,3.6206896551724137,Spaceballs (1987),Comedy|Sci-Fi +3034,3.7586206896551726,Robin Hood (1973),Adventure|Animation|Children|Comedy|Musical +3035,4.411764705882353,Mister Roberts (1955),Comedy|Drama|War +3036,4.0,"Quest for Fire (Guerre du feu, La) (1981)",Adventure|Drama +3037,4.166666666666667,Little Big Man (1970),Western +3038,5.0,"Face in the Crowd, A (1957)",Drama +3039,3.625,Trading Places (1983),Comedy +3040,3.4166666666666665,Meatballs (1979),Comedy +3041,3.0,Meatballs Part II (1984),Comedy +3042,2.3333333333333335,Meatballs III (1987),Comedy +3043,1.0,Meatballs 4 (1992),Comedy +3044,3.875,Dead Again (1991),Mystery|Romance|Thriller +3045,3.0,Peter's Friends (1992),Comedy|Drama +3046,2.6666666666666665,"Incredibly True Adventure of Two Girls in Love, The (1995)",Comedy|Romance +3047,1.0,Experience Preferred... But Not Essential (1982),Drama +3048,3.5,Under the Rainbow (1981),Comedy +3051,3.1818181818181817,Anywhere But Here (1999),Comedy|Drama +3052,3.3227848101265822,Dogma (1999),Adventure|Comedy|Fantasy +3053,2.8,"Messenger: The Story of Joan of Arc, The (1999)",Drama|War +3054,2.5714285714285716,Pokémon: The First Movie (1998),Adventure|Animation|Children|Fantasy|Sci-Fi +3055,3.5,Felicia's Journey (1999),Thriller +3057,3.5,Where's Marlowe? (1998),Comedy +3060,3.9285714285714284,"Commitments, The (1991)",Comedy|Drama|Musical +3061,3.590909090909091,Holiday Inn (1942),Comedy|Musical +3062,4.090909090909091,"Longest Day, The (1962)",Action|Drama|War +3063,3.4285714285714284,Poison Ivy (1992),Drama|Thriller +3064,2.6666666666666665,Poison Ivy: New Seduction (1997),Drama|Thriller +3066,3.35,Tora! Tora! Tora! (1970),Action|Drama|War +3067,4.0,Women on the Verge of a Nervous Breakdown (Mujeres al borde de un ataque de nervios) (1988),Comedy|Drama +3068,4.029411764705882,"Verdict, The (1982)",Drama|Mystery +3069,4.0,"Effect of Gamma Rays on Man-in-the-Moon Marigolds, The (1972)",Drama +3070,3.909090909090909,"Adventures of Buckaroo Banzai Across the 8th Dimension, The (1984)",Adventure|Comedy|Sci-Fi +3071,4.2272727272727275,Stand and Deliver (1988),Comedy|Drama +3072,3.6621621621621623,Moonstruck (1987),Comedy|Romance +3074,3.8333333333333335,Jeremiah Johnson (1972),Western +3075,3.5,Repulsion (1965),Drama|Horror +3076,2.75,Irma la Douce (1963),Comedy +3077,4.055555555555555,42 Up (1998),Documentary +3078,3.75,Liberty Heights (1999),Drama +3079,3.9285714285714284,Mansfield Park (1999),Comedy|Drama|Romance +3081,3.625,Sleepy Hollow (1999),Fantasy|Horror|Mystery|Romance +3082,3.138888888888889,"World Is Not Enough, The (1999)",Action|Adventure|Thriller +3083,4.2,All About My Mother (Todo sobre mi madre) (1999),Drama +3086,4.0,Babes in Toyland (1934),Children|Comedy|Fantasy|Musical +3087,3.316666666666667,Scrooged (1988),Comedy|Fantasy|Romance +3088,4.2631578947368425,Harvey (1950),Comedy|Fantasy +3089,4.043478260869565,Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette) (1948),Drama +3090,3.1666666666666665,Matewan (1987),Drama +3091,4.1,Kagemusha (1980),Drama|War +3093,3.0714285714285716,McCabe & Mrs. Miller (1971),Drama|Western +3094,2.6666666666666665,Maurice (1987),Drama|Romance +3095,4.064516129032258,"Grapes of Wrath, The (1940)",Drama +3096,3.9,My Man Godfrey (1957),Comedy +3097,3.7083333333333335,"Shop Around the Corner, The (1940)",Comedy|Drama|Romance +3098,3.642857142857143,"Natural, The (1984)",Drama +3099,2.611111111111111,Shampoo (1975),Comedy|Drama|Romance +3100,3.5892857142857144,"River Runs Through It, A (1992)",Drama +3101,3.673469387755102,Fatal Attraction (1987),Drama|Thriller +3102,3.9,Jagged Edge (1985),Crime|Romance|Thriller +3103,3.0,Stanley & Iris (1990),Drama|Romance +3104,3.9655172413793105,Midnight Run (1988),Action|Comedy|Crime|Thriller +3105,3.8421052631578947,Awakenings (1990),Drama|Mystery +3106,3.6666666666666665,Come See the Paradise (1990),Drama|Romance +3107,3.359375,Backdraft (1991),Action|Drama +3108,3.635135135135135,"Fisher King, The (1991)",Comedy|Drama|Fantasy|Romance +3109,4.0,"River, The (1984)",Drama +3110,3.6666666666666665,Country (1984),Drama +3111,4.222222222222222,Places in the Heart (1984),Drama +3112,5.0,'night Mother (1986),Drama +3113,2.026315789473684,End of Days (1999),Action|Fantasy|Horror|Mystery|Thriller +3114,3.844,Toy Story 2 (1999),Adventure|Animation|Children|Comedy|Fantasy +3115,3.6666666666666665,Flawless (1999),Drama +3116,4.0,Miss Julie (1999),Drama +3117,3.5,Ride with the Devil (1999),Drama|Romance|War +3118,3.5,Tumbleweeds (1999),Drama +3120,3.0,"Distinguished Gentleman, The (1992)",Comedy +3121,3.5,"Hitch-Hiker, The (1953)",Drama|Film-Noir +3122,3.0,Santa Fe Trail (1940),Drama|Romance|Western +3125,3.3,"End of the Affair, The (1999)",Drama +3127,2.8333333333333335,Holy Smoke (1999),Comedy|Drama +3128,3.25,"Map of the World, A (1999)",Drama +3129,4.0,Sweet and Lowdown (1999),Comedy|Drama +3130,2.5416666666666665,Bonfire of the Vanities (1990),Comedy|Crime|Drama +3133,4.0,Go West (1925),Comedy|Western +3134,4.208333333333333,Grand Illusion (La grande illusion) (1937),Drama|War +3135,3.9444444444444446,"Great Santini, The (1979)",Drama +3136,3.0,"James Dean Story, The (1957)",Documentary +3138,3.0,Stealing Home (1988),Drama +3140,4.0,Three Ages (1923),Comedy +3141,3.625,"Two Jakes, The (1990)",Drama +3142,3.6,U2: Rattle and Hum (1988),Documentary|Musical +3143,4.0,Hell in the Pacific (1968),Drama|War +3144,2.5,"Glass Bottom Boat, The (1966)",Comedy|Romance +3145,3.1666666666666665,Cradle Will Rock (1999),Drama +3146,2.5,Deuce Bigalow: Male Gigolo (1999),Comedy +3147,3.9223300970873787,"Green Mile, The (1999)",Crime|Drama +3148,3.2435897435897436,"Cider House Rules, The (1999)",Drama +3150,4.0,"War Zone, The (1999)",Drama|Thriller +3152,3.9761904761904763,"Last Picture Show, The (1971)",Drama +3153,4.142857142857143,"7th Voyage of Sinbad, The (1958)",Action|Adventure|Fantasy +3155,3.409090909090909,Anna and the King (1999),Drama|Romance +3156,2.9722222222222223,Bicentennial Man (1999),Drama|Romance|Sci-Fi +3157,3.074074074074074,Stuart Little (1999),Children|Comedy|Fantasy +3158,3.5,"Emperor and the Assassin, The (Jing ke ci qin wang) (1999)",Drama +3159,3.3823529411764706,Fantasia 2000 (1999),Animation|Children|Musical|IMAX +3160,3.692982456140351,Magnolia (1999),Drama +3161,3.0,Onegin (1999),Drama|Romance +3163,3.7142857142857144,Topsy-Turvy (1999),Comedy|Drama|Musical +3165,5.0,Boiling Point (1993),Action|Drama +3166,4.0,Brenda Starr (1989),Adventure +3167,4.4375,Carnal Knowledge (1971),Comedy|Drama +3168,3.72,Easy Rider (1969),Adventure|Drama +3169,3.3461538461538463,The Falcon and the Snowman (1985),Crime|Drama|Thriller +3171,4.25,Room at the Top (1959),Drama +3173,2.94,Any Given Sunday (1999),Drama +3174,3.3,Man on the Moon (1999),Comedy|Drama +3175,3.5076923076923077,Galaxy Quest (1999),Adventure|Comedy|Sci-Fi +3176,3.5,"Talented Mr. Ripley, The (1999)",Drama|Mystery|Thriller +3177,3.1666666666666665,Next Friday (2000),Comedy +3178,3.6363636363636362,"Hurricane, The (1999)",Drama +3179,3.227272727272727,Angela's Ashes (1999),Drama +3180,2.0,Play it to the Bone (1999),Comedy|Drama +3181,3.8333333333333335,Titus (1999),Drama +3182,3.3125,"Mr. Death: The Rise and Fall of Fred A. Leuchter, Jr. (1999)",Documentary +3183,3.5,"Third Miracle, The (1999)",Drama +3185,3.1923076923076925,Snow Falling on Cedars (1999),Drama +3186,3.625,"Girl, Interrupted (1999)",Drama +3188,3.5,"Life and Times of Hank Greenberg, The (1998)",Documentary +3189,3.388888888888889,My Dog Skip (1999),Children|Drama +3190,1.0,Supernova (2000),Adventure|Sci-Fi|Thriller +3192,4.0,"Terrorist, The (a.k.a. Malli) (Theeviravaathi) (1998)",Drama +3194,3.6818181818181817,"Way We Were, The (1973)",Drama|Romance +3196,3.95,Stalag 17 (1953),Drama|War +3197,3.25,"Presidio, The (1988)",Action|Crime|Romance|Thriller +3198,3.9523809523809526,Papillon (1973),Crime|Drama +3199,3.6666666666666665,Pal Joey (1957),Comedy|Drama|Musical|Romance +3200,4.3,"Last Detail, The (1973)",Comedy|Drama +3201,4.075,Five Easy Pieces (1970),Drama +3202,5.0,Even Dwarfs Started Small (Auch Zwerge haben klein angefangen) (1971),Drama|Horror +3203,3.8333333333333335,Dead Calm (1989),Thriller +3204,3.857142857142857,"Boys from Brazil, The (1978)",Action|Mystery|Thriller +3205,3.0,Black Sunday (La maschera del demonio) (1960),Horror +3206,2.75,Against All Odds (1984),Romance +3207,3.0,"Snows of Kilimanjaro, The (1952)",Adventure +3208,1.75,Loaded Weapon 1 (National Lampoon's Loaded Weapon 1) (1993),Action|Comedy +3210,3.6153846153846154,Fast Times at Ridgemont High (1982),Comedy|Drama|Romance +3211,4.0,"Cry in the Dark, A (1988)",Drama +3213,3.85,Batman: Mask of the Phantasm (1993),Animation|Children +3214,4.0,American Flyers (1985),Drama +3216,5.0,"Vampyros Lesbos (Vampiras, Las) (1971)",Fantasy|Horror|Thriller +3217,4.0,"Star Is Born, A (1937)",Drama +3218,3.6,Poison (1991),Drama +3219,3.6923076923076925,Pacific Heights (1990),Mystery|Thriller +3221,4.0,"Draughtsman's Contract, The (1982)",Drama +3223,3.75,"Zed & Two Noughts, A (1985)",Drama +3224,3.75,Woman in the Dunes (Suna no onna) (1964),Drama +3225,2.6,Down to You (2000),Comedy|Romance +3232,4.0,Seven Chances (1925),Comedy +3235,3.0,Where the Buffalo Roam (1980),Comedy +3238,2.0,Eye of the Beholder (1999),Thriller +3239,4.0,Isn't She Great? (2000),Comedy +3240,2.5,"Big Tease, The (1999)",Comedy +3241,3.5,"Cup, The (Phörpa) (1999)",Comedy +3243,2.375,Encino Man (1992),Comedy +3244,3.607142857142857,"Goodbye Girl, The (1977)",Comedy|Romance +3245,4.5,I Am Cuba (Soy Cuba/Ya Kuba) (1964),Drama +3246,3.9655172413793105,Malcolm X (1992),Drama +3247,3.054054054054054,Sister Act (1992),Comedy|Crime +3248,2.3666666666666667,Sister Act 2: Back in the Habit (1993),Comedy +3249,3.411764705882353,"Hand That Rocks the Cradle, The (1992)",Drama|Thriller +3250,2.75,Alive (1993),Drama +3251,3.85,Agnes of God (1985),Drama|Mystery +3252,3.95,Scent of a Woman (1992),Drama +3253,3.391891891891892,Wayne's World (1992),Comedy +3254,3.1363636363636362,Wayne's World 2 (1993),Comedy +3255,3.4473684210526314,"League of Their Own, A (1992)",Comedy|Drama +3256,3.53125,Patriot Games (1992),Action|Crime|Drama|Thriller +3257,2.7241379310344827,"Bodyguard, The (1992)",Drama|Romance|Thriller +3258,2.857142857142857,Death Becomes Her (1992),Comedy|Fantasy +3259,3.1333333333333333,Far and Away (1992),Adventure|Drama|Romance +3260,3.823529411764706,Howards End (1992),Drama +3261,3.6666666666666665,Singles (1992),Comedy|Drama|Romance +3262,3.2916666666666665,Twin Peaks: Fire Walk with Me (1992),Crime|Drama|Mystery|Thriller +3263,3.3793103448275863,White Men Can't Jump (1992),Comedy|Drama +3264,2.8666666666666667,Buffy the Vampire Slayer (1992),Action|Comedy|Horror +3265,4.1,Hard-Boiled (Lat sau san taam) (1992),Action|Crime|Drama|Thriller +3266,3.25,Man Bites Dog (C'est arrivé près de chez vous) (1992),Comedy|Crime|Drama|Thriller +3267,3.5714285714285716,"Mariachi, El (1992)",Action|Crime|Thriller|Western +3268,1.8,Stop! Or My Mom Will Shoot (1992),Action|Comedy +3269,2.625,Forever Young (1992),Drama|Romance|Sci-Fi +3270,3.6818181818181817,"Cutting Edge, The (1992)",Comedy|Drama|Romance +3271,3.3666666666666667,Of Mice and Men (1992),Drama +3272,3.3125,Bad Lieutenant (1992),Crime|Drama +3273,2.814814814814815,Scream 3 (2000),Comedy|Horror|Mystery|Thriller +3274,3.4545454545454546,Single White Female (1992),Drama|Thriller +3275,3.522727272727273,"Boondock Saints, The (2000)",Action|Crime|Drama|Thriller +3276,1.0,Gun Shy (2000),Comedy +3281,5.0,"Brandon Teena Story, The (1998)",Documentary +3282,4.0,Different for Girls (1996),Comedy +3284,3.5,They Might Be Giants (1971),Comedy|Mystery|Romance +3285,3.0185185185185186,"Beach, The (2000)",Adventure|Drama +3286,2.1666666666666665,Snow Day (2000),Comedy +3287,3.375,"Tigger Movie, The (2000)",Animation|Children +3289,4.0,Not One Less (Yi ge dou bu neng shao) (1999),Drama +3292,3.5,"Big Combo, The (1955)",Film-Noir +3294,2.5,Eaten Alive (1977),Horror +3296,3.5625,To Sir with Love (1967),Drama +3298,3.3793103448275863,Boiler Room (2000),Crime|Drama|Thriller +3299,2.25,Hanging Up (2000),Comedy|Drama +3300,3.269230769230769,Pitch Black (2000),Horror|Sci-Fi|Thriller +3301,3.2115384615384617,"Whole Nine Yards, The (2000)",Comedy|Crime +3302,4.0,Beautiful People (1999),Comedy +3303,1.0,Black Tar Heroin: The Dark End of the Street (2000),Documentary +3304,3.3333333333333335,Blue Collar (1978),Crime|Drama +3306,4.375,"Circus, The (1928)",Comedy +3307,4.0,City Lights (1931),Comedy|Drama|Romance +3308,3.5,"Flamingo Kid, The (1984)",Comedy|Drama +3309,4.25,"Dog's Life, A (1918)",Comedy +3310,4.4375,"Kid, The (1921)",Comedy|Drama +3313,3.5,Class Reunion (1982),Comedy +3314,2.5,"Big Trees, The (1952)",Action|Drama +3316,2.227272727272727,Reindeer Games (2000),Action|Thriller +3317,3.842857142857143,Wonder Boys (2000),Comedy|Drama +3318,3.0,Deterrence (1999),Drama|Thriller +3320,4.5,Mifune's Last Song (Mifunes sidste sang) (1999),Comedy|Drama|Romance +3324,2.0714285714285716,Drowning Mona (2000),Comedy +3325,3.0,"Next Best Thing, The (2000)",Comedy|Drama +3326,2.3333333333333335,What Planet Are You From? (2000),Comedy|Sci-Fi +3327,3.0,Beyond the Mat (1999),Documentary +3328,3.725,Ghost Dog: The Way of the Samurai (1999),Crime|Drama +3329,4.0,The Year My Voice Broke (1987),Drama|Romance +3330,3.9285714285714284,Splendor in the Grass (1961),Drama|Romance +3331,4.0,My Tutor (1983),Drama +3334,3.78125,Key Largo (1948),Crime|Drama|Film-Noir|Thriller +3338,1.0,For All Mankind (1989),Documentary +3339,3.0,Cross of Iron (1977),War +3340,2.6666666666666665,Bride of the Monster (1955),Horror|Sci-Fi +3341,3.75,Born Yesterday (1950),Comedy +3342,4.0,Birdy (1984),Drama|War +3343,2.5,And God Created Woman (1988),Comedy|Drama|Romance +3344,3.5,Blood Feast (1963),Horror +3347,4.083333333333333,Never Cry Wolf (1983),Adventure|Drama +3349,4.0,"Perils of Pauline, The (1947)",Comedy +3350,3.75,"Raisin in the Sun, A (1961)",Drama +3351,3.0,Two Thousand Maniacs! (1964),Horror +3354,2.2666666666666666,Mission to Mars (2000),Sci-Fi +3355,3.7083333333333335,"Ninth Gate, The (1999)",Fantasy|Horror|Mystery|Thriller +3357,4.75,East-West (Est-ouest) (1999),Drama|Romance +3358,3.75,Defending Your Life (1991),Comedy|Drama|Fantasy|Romance +3359,4.131578947368421,Breaking Away (1979),Comedy|Drama +3360,3.759259259259259,Hoosiers (a.k.a. Best Shot) (1986),Drama|Romance +3361,3.8068181818181817,Bull Durham (1988),Comedy|Drama|Romance +3362,4.086206896551724,Dog Day Afternoon (1975),Crime|Drama +3363,4.065789473684211,American Graffiti (1973),Comedy|Drama +3364,3.9285714285714284,"Asphalt Jungle, The (1950)",Crime|Film-Noir +3365,3.7857142857142856,"Searchers, The (1956)",Drama|Western +3368,4.375,"Big Country, The (1958)",Romance|Western +3370,4.0,Betrayed (1988),Drama|Thriller +3371,3.75,Bound for Glory (1976),Drama +3377,3.5,Hangmen Also Die! (1943),Drama|War +3379,3.4166666666666665,On the Beach (1959),Drama +3380,2.5,Railroaded! (1947),Film-Noir +3384,4.166666666666667,"Taking of Pelham One Two Three, The (1974)",Action|Crime +3385,2.6666666666666665,Volunteers (1985),Comedy +3386,3.8214285714285716,JFK (1991),Drama|Mystery|Thriller +3387,3.4,Who's Harry Crumb? (1989),Comedy|Mystery +3388,2.388888888888889,Harry and the Hendersons (1987),Children|Comedy +3390,1.5,Shanghai Surprise (1986),Adventure|Crime|Drama|Romance +3391,3.3333333333333335,Who's That Girl? (1987),Comedy +3392,2.4,She-Devil (1989),Comedy +3393,2.0,Date with an Angel (1987),Comedy|Fantasy|Romance +3394,3.0,Blind Date (1987),Comedy|Romance +3395,2.8,Nadine (1987),Comedy +3396,3.9,"Muppet Movie, The (1979)",Adventure|Children|Comedy|Musical +3397,3.45,"Great Muppet Caper, The (1981)",Children|Comedy +3398,3.5,"Muppets Take Manhattan, The (1984)",Children|Comedy|Musical +3399,3.0,Sesame Street Presents Follow That Bird (1985),Children|Comedy +3400,2.0,We're Back! A Dinosaur's Story (1993),Adventure|Animation|Children|Fantasy +3401,2.0,Baby... Secret of the Lost Legend (1985),Adventure|Sci-Fi +3402,4.0,Turtle Diary (1985),Comedy|Drama|Romance +3404,3.0833333333333335,Titanic (1953),Action|Drama +3405,3.5625,"Night to Remember, A (1958)",Action|Drama +3406,4.125,Captain Horatio Hornblower R.N. (1951),Action|Adventure|Drama|War +3408,3.552941176470588,Erin Brockovich (2000),Drama +3409,3.0,Final Destination (2000),Drama|Thriller +3412,3.6875,"Bear, The (Ours, L') (1988)",Adventure|Children|Drama +3414,4.0,Love Is a Many-Splendored Thing (1955),Drama|Romance|War +3415,3.25,"Mirror, The (Zerkalo) (1975)",Drama +3417,4.333333333333333,"Crimson Pirate, The (1952)",Adventure|Comedy +3418,3.533333333333333,Thelma & Louise (1991),Adventure|Crime|Drama +3420,3.6923076923076925,...And Justice for All (1979),Drama|Thriller +3421,3.805084745762712,Animal House (1978),Comedy +3422,3.4375,She's Gotta Have It (1986),Comedy|Romance +3423,4.0,School Daze (1988),Drama +3424,3.734375,Do the Right Thing (1989),Drama +3425,3.0,Mo' Better Blues (1990),Drama|Musical +3426,3.4166666666666665,Jungle Fever (1991),Drama|Romance +3427,1.5,Coogan's Bluff (1968),Crime +3428,3.0,"Champ, The (1979)",Drama +3429,4.0,Creature Comforts (1989),Animation|Comedy +3430,2.5714285714285716,Death Wish (1974),Action|Crime|Drama +3431,2.5,Death Wish 2 (1982),Action|Drama +3432,1.0,Death Wish 3 (1985),Action|Drama +3434,4.0,Death Wish 5: The Face of Death (1994),Action|Drama +3435,4.15625,Double Indemnity (1944),Crime|Drama|Film-Noir +3436,2.5625,Dying Young (1991),Drama|Romance +3437,5.0,Cool as Ice (1991),Drama +3438,2.9722222222222223,Teenage Mutant Ninja Turtles (1990),Action|Children|Comedy|Fantasy|Sci-Fi +3439,2.5,Teenage Mutant Ninja Turtles II: The Secret of the Ooze (1991),Action|Children|Fantasy +3440,1.6,Teenage Mutant Ninja Turtles III (1993),Action|Adventure|Children|Comedy|Fantasy +3441,2.75,Red Dawn (1984),Action|Drama|War +3442,2.5,Band of the Hand (1986),Action|Crime|Drama +3444,2.875,Bloodsport (1988),Action +3445,2.8333333333333335,Eyes of Laura Mars (1978),Mystery|Thriller +3446,3.0,Funny Bones (1995),Comedy|Drama +3447,5.0,"Good Earth, The (1937)",Drama +3448,3.660377358490566,"Good Morning, Vietnam (1987)",Comedy|Drama|War +3449,3.5,"Good Mother, The (1988)",Drama +3450,3.2096774193548385,Grumpy Old Men (1993),Comedy +3451,3.6666666666666665,Guess Who's Coming to Dinner (1967),Drama +3452,3.0526315789473686,Romeo Must Die (2000),Action|Crime|Romance|Thriller +3453,3.0,Here on Earth (2000),Drama|Romance +3454,4.0,Whatever It Takes (2000),Comedy|Romance +3456,4.5,"Color of Paradise, The (Rang-e khoda) (1999)",Drama +3457,3.8333333333333335,Waking the Dead (2000),Drama|Thriller +3459,4.0,Gothic (1986),Drama|Horror +3460,3.0,Hillbillys in a Haunted House (1967),Comedy +3461,3.230769230769231,Lord of the Flies (1963),Adventure|Drama|Thriller +3462,4.359375,Modern Times (1936),Comedy|Drama|Romance +3463,1.0,Last Resort (National Lampoon's Last Resort) (1994),Comedy +3465,4.0,That's Life! (1986),Drama +3466,3.4,Heart and Souls (1993),Comedy|Fantasy +3467,3.8529411764705883,Hud (1963),Drama|Western +3468,4.108695652173913,"Hustler, The (1961)",Drama +3469,4.541666666666667,Inherit the Wind (1960),Drama +3470,4.375,Dersu Uzala (1975),Adventure|Drama +3471,3.903225806451613,Close Encounters of the Third Kind (1977),Adventure|Drama|Sci-Fi +3474,4.0,Retroactive (1997),Sci-Fi|Thriller +3475,4.125,"Place in the Sun, A (1951)",Drama|Romance +3476,3.9375,Jacob's Ladder (1990),Horror|Mystery +3477,3.55,Empire Records (1995),Comedy|Drama +3478,3.3333333333333335,"Bamba, La (1987)",Drama +3479,3.4761904761904763,Ladyhawke (1985),Adventure|Fantasy|Romance +3480,3.7142857142857144,Lucas (1986),Drama|Romance +3481,3.960227272727273,High Fidelity (2000),Comedy|Drama|Romance +3483,3.25,"Road to El Dorado, The (2000)",Animation|Children +3484,2.6363636363636362,"Skulls, The (2000)",Thriller +3487,3.0,El Dorado (1966),Western +3489,3.116279069767442,Hook (1991),Adventure|Comedy|Fantasy +3490,3.0,Horror Express (1972),Horror +3491,4.0,My Chauffeur (1986),Comedy +3492,4.0,"Son of the Sheik, The (1926)",Adventure|Comedy|Romance +3494,3.3461538461538463,True Grit (1969),Adventure|Drama|Western +3495,4.0,Roadside Prophets (1992),Comedy|Drama +3496,3.5,Madame Sousatzka (1988),Drama +3497,3.0,Max Dugan Returns (1983),Comedy +3498,3.923076923076923,Midnight Express (1978),Drama +3499,3.8777777777777778,Misery (1990),Drama|Horror|Thriller +3500,3.0,Mr. Saturday Night (1992),Comedy|Drama +3501,3.875,Murphy's Romance (1985),Comedy|Romance +3502,4.25,My Life (1993),Drama +3503,3.6,Solaris (Solyaris) (1972),Drama|Mystery|Sci-Fi +3504,4.092105263157895,Network (1976),Comedy|Drama +3505,3.909090909090909,No Way Out (1987),Drama|Mystery|Thriller +3506,3.625,North Dallas Forty (1979),Comedy|Drama +3507,3.8095238095238093,"Odd Couple, The (1968)",Comedy +3508,4.0,"Outlaw Josey Wales, The (1976)",Action|Adventure|Drama|Thriller|Western +3509,3.3333333333333335,Black and White (1999),Drama +3510,3.5609756097560976,Frequency (2000),Drama|Thriller +3511,2.0,Ready to Rumble (2000),Comedy +3512,3.5526315789473686,Return to Me (2000),Drama|Romance +3513,3.2857142857142856,Rules of Engagement (2000),Drama|Thriller +3515,3.4,Me Myself I (2000),Comedy|Romance +3516,3.0625,"Bell, Book and Candle (1958)",Comedy|Fantasy|Romance +3518,2.0,"End of Violence, The (1997)",Drama|Thriller +3519,3.5,Force 10 from Navarone (1978),Action|Drama|War +3520,2.6666666666666665,How to Stuff a Wild Bikini (1965),Comedy +3521,3.909090909090909,Mystery Train (1989),Comedy|Drama +3522,2.0,Sacco and Vanzetti (Sacco e Vanzetti) (1971),Drama +3524,3.8529411764705883,Arthur (1981),Comedy|Romance +3525,3.4,Bachelor Party (1984),Comedy +3526,3.5869565217391304,Parenthood (1989),Comedy|Drama +3527,3.5660377358490565,Predator (1987),Action|Sci-Fi|Thriller +3528,2.6785714285714284,"Prince of Tides, The (1991)",Drama|Romance +3529,3.611111111111111,"Postman Always Rings Twice, The (1981)",Crime|Thriller +3531,2.0,All the Vermeers in New York (1990),Comedy|Drama|Romance +3534,2.9375,28 Days (2000),Drama +3535,3.2450980392156863,American Psycho (2000),Crime|Horror|Mystery|Thriller +3536,3.5,Keeping the Faith (2000),Comedy|Drama|Romance +3537,2.8333333333333335,Where the Money Is (2000),Comedy|Drama +3538,3.6666666666666665,East is East (1999),Comedy +3539,4.166666666666667,"Filth and the Fury, The (2000)",Documentary +3540,3.0,Passion of Mind (2000),Drama|Mystery|Romance +3543,3.977272727272727,Diner (1982),Comedy|Drama +3544,3.6666666666666665,Shakes the Clown (1992),Comedy +3545,3.75,Cabaret (1972),Drama|Musical +3546,3.84375,What Ever Happened to Baby Jane? (1962),Drama|Horror|Thriller +3547,3.375,Prick Up Your Ears (1987),Comedy|Drama +3548,3.96875,Auntie Mame (1958),Comedy|Drama +3549,3.4166666666666665,Guys and Dolls (1955),Comedy|Musical|Romance +3550,3.6666666666666665,The Hunger (1983),Horror +3551,3.911764705882353,Marathon Man (1976),Crime|Drama|Thriller +3552,3.425925925925926,Caddyshack (1980),Comedy +3553,4.0,Gossip (2000),Drama|Thriller +3554,3.6666666666666665,Love and Basketball (2000),Drama|Romance +3555,2.8793103448275863,U-571 (2000),Action|Thriller|War +3556,3.5833333333333335,"Virgin Suicides, The (1999)",Drama|Romance +3557,3.5,Jennifer 8 (1992),Mystery|Thriller +3559,3.3333333333333335,Limelight (1952),Comedy|Drama|Romance +3560,4.0,Empire of Passion (a.k.a. In the Realm of Passion) (a.k.a. Phantom Love) (Ai No Borei) (1978),Crime|Drama|Romance +3563,1.5,"Crow: Salvation, The (2000)",Action|Horror +3564,2.1363636363636362,"Flintstones in Viva Rock Vegas, The (2000)",Children|Comedy +3565,3.3636363636363638,Where the Heart Is (2000),Comedy|Drama +3566,3.3181818181818183,"Big Kahuna, The (2000)",Comedy|Drama +3567,2.0,Bossa Nova (2000),Comedy|Drama|Romance +3568,3.0,Smiling Fish and Goat on Fire (1999),Comedy|Romance +3569,3.357142857142857,"Idiots, The (Idioterne) (1998)",Comedy|Drama +3571,2.7,Time Code (2000),Comedy|Drama +3572,1.5,Carnosaur (1993),Horror|Sci-Fi +3573,2.25,Carnosaur 2 (1995),Horror|Sci-Fi +3574,0.75,Carnosaur 3: Primal Species (1996),Horror|Sci-Fi +3575,5.0,Defying Gravity (1997),Drama +3576,4.0,"Hidden, The (1987)",Action|Horror|Sci-Fi +3577,3.5,Two Moon Junction (1988),Drama|Romance +3578,3.9658385093167703,Gladiator (2000),Action|Adventure|Drama +3579,2.3333333333333335,I Dreamed of Africa (2000),Drama +3580,5.0,Up at the Villa (2000),Drama +3581,4.0,Human Traffic (1999),Comedy +3584,3.625,Breathless (1983),Action|Drama|Romance|Thriller +3587,4.0,Inferno (1980),Horror +3588,4.0,"King of Marvin Gardens, The (1972)",Crime|Drama +3590,2.8333333333333335,"Lords of Flatbush, The (1974)",Comedy|Drama +3591,3.3055555555555554,Mr. Mom (1983),Comedy|Drama +3593,1.2105263157894737,Battlefield Earth (2000),Action|Sci-Fi +3594,3.75,Center Stage (2000),Drama|Musical +3596,1.0,Screwed (2000),Comedy +3598,3.8333333333333335,Hamlet (2000),Crime|Drama|Romance|Thriller +3599,3.75,Anchors Aweigh (1945),Comedy|Musical +3600,3.25,Blue Hawaii (1961),Comedy|Musical +3602,2.0,G.I. Blues (1960),Comedy|Musical|Romance +3604,3.8,Gypsy (1962),Musical +3605,1.5,King Creole (1958),Crime|Drama|Musical +3606,4.111111111111111,On the Town (1949),Comedy|Musical|Romance +3608,3.2586206896551726,Pee-wee's Big Adventure (1985),Adventure|Comedy +3609,4.25,Regret to Inform (1998),Documentary +3611,3.0,Saludos Amigos (1943),Animation|Children|Comedy +3612,5.0,The Slipper and the Rose: The Story of Cinderella (1976),Adventure|Children|Fantasy|Musical|Romance +3613,3.0,Things Change (1988),Comedy +3614,3.235294117647059,Honeymoon in Vegas (1992),Comedy|Romance +3615,3.0384615384615383,Dinosaur (2000),Adventure|Animation|Children +3616,2.5,Loser (2000),Comedy|Romance +3617,3.081081081081081,Road Trip (2000),Comedy +3618,3.25,Small Time Crooks (2000),Comedy|Crime +3619,3.0,"Hollywood Knights, The (1980)",Comedy +3620,3.0,"Myth of Fingerprints, The (1997)",Comedy|Drama +3621,3.5,Possession (1981),Drama|Horror +3622,4.0,"Twelve Chairs, The (1970)",Comedy +3623,2.9691358024691357,Mission: Impossible II (2000),Action|Adventure|Thriller +3624,3.210526315789474,Shanghai Noon (2000),Action|Adventure|Comedy|Western +3626,3.8333333333333335,8 ½ Women (a.k.a. 8 1/2 Women) (a.k.a. Eight and a Half Women) (1999),Comedy +3627,4.333333333333333,Carnival of Souls (1962),Horror|Thriller +3628,4.0,Flying Tigers (1942),Action|Drama|Romance|War +3629,4.045454545454546,"Gold Rush, The (1925)",Adventure|Comedy|Romance +3632,4.0,Monsieur Verdoux (1947),Comedy|Crime +3633,3.6666666666666665,On Her Majesty's Secret Service (1969),Action|Adventure|Romance|Thriller +3634,3.4166666666666665,Seven Days in May (1964),Thriller +3635,3.75,"Spy Who Loved Me, The (1977)",Action|Adventure|Thriller +3637,4.0,Vagabond (Sans toit ni loi) (1985),Drama +3638,3.5652173913043477,Moonraker (1979),Action|Adventure|Sci-Fi|Thriller +3639,3.5,"Man with the Golden Gun, The (1974)",Action|Adventure|Thriller +3640,3.25,"King in New York, A (1957)",Comedy|Drama +3643,3.5,"Fighting Seabees, The (1944)",Action|Drama|War +3646,1.875,Big Momma's House (2000),Comedy +3649,3.1363636363636362,American Gigolo (1980),Drama +3653,4.1,"Endless Summer, The (1966)",Documentary +3654,4.038461538461538,"Guns of Navarone, The (1961)",Action|Adventure|Drama|War +3655,4.5,Blow-Out (La grande bouffe) (1973),Drama +3656,5.0,Lured (1947),Crime|Film-Noir|Mystery|Thriller +3657,4.5,Pandora and the Flying Dutchman (1951),Drama +3658,3.0,Quatermass and the Pit (1967),Horror|Sci-Fi +3659,3.0,Quatermass 2 (Enemy from Space) (1957),Sci-Fi|Thriller +3662,3.0,Puppet Master III: Toulon's Revenge (1991),Horror|Sci-Fi|Thriller +3663,3.0,Puppet Master 4 (1993),Horror|Sci-Fi|Thriller +3664,3.0,Puppet Master 5: The Final Chapter (1994),Horror|Sci-Fi|Thriller +3665,4.0,Curse of the Puppet Master (Puppet Master 6: The Curse) (1998),Horror|Sci-Fi|Thriller +3668,3.3846153846153846,Romeo and Juliet (1968),Drama|Romance +3669,2.6666666666666665,Stay Tuned (1992),Comedy +3671,3.935483870967742,Blazing Saddles (1974),Comedy|Western +3672,3.5625,Benji (1974),Adventure|Children +3673,3.5,Benji the Hunted (1987),Adventure|Children +3674,3.1666666666666665,For the Love of Benji (1977),Adventure|Children|Comedy|Drama +3675,3.5454545454545454,White Christmas (1954),Comedy|Musical|Romance +3676,3.5357142857142856,Eraserhead (1977),Drama|Horror +3677,4.3125,Baraka (1992),Documentary +3678,3.4,"Man with the Golden Arm, The (1955)",Drama +3679,4.625,"Decline of Western Civilization, The (1981)",Documentary|Musical +3680,3.8333333333333335,"Decline of Western Civilization Part II: The Metal Years, The (1988)",Documentary +3681,3.7857142857142856,For a Few Dollars More (Per qualche dollaro in più) (1965),Action|Drama|Thriller|Western +3682,2.7142857142857144,Magnum Force (1973),Action|Crime|Drama|Thriller +3683,4.291666666666667,Blood Simple (1984),Crime|Drama|Film-Noir +3684,3.888888888888889,"Fabulous Baker Boys, The (1989)",Drama|Romance +3685,3.6,Prizzi's Honor (1985),Comedy|Drama|Romance +3686,3.575,Flatliners (1990),Horror|Sci-Fi|Thriller +3687,3.5,Light Years (Gandahar) (1988),Adventure|Animation|Fantasy|Sci-Fi +3688,2.9166666666666665,Porky's (1982),Comedy +3689,2.0,Porky's II: The Next Day (1983),Comedy +3690,2.0,Porky's Revenge (1985),Comedy +3691,2.5,Private School (1983),Comedy +3692,3.5,Class of Nuke 'Em High (1986),Comedy|Horror +3693,3.1,"Toxic Avenger, The (1985)",Comedy|Horror +3694,2.3333333333333335,"Toxic Avenger, Part II, The (1989)",Comedy|Horror +3695,2.5,"Toxic Avenger Part III: The Last Temptation of Toxie, The (1989)",Comedy|Horror +3696,4.333333333333333,Night of the Creeps (1986),Comedy|Horror|Sci-Fi|Thriller +3697,2.8684210526315788,Predator 2 (1990),Action|Sci-Fi|Thriller +3698,3.1875,"Running Man, The (1987)",Action|Sci-Fi +3699,3.4545454545454546,Starman (1984),Adventure|Drama|Romance|Sci-Fi +3700,3.6666666666666665,"Brother from Another Planet, The (1984)",Drama|Sci-Fi +3701,3.3125,Alien Nation (1988),Crime|Drama|Sci-Fi|Thriller +3702,3.8285714285714287,Mad Max (1979),Action|Adventure|Sci-Fi +3703,3.793103448275862,"Road Warrior, The (Mad Max 2) (1981)",Action|Adventure|Sci-Fi|Thriller +3704,3.3157894736842106,Mad Max Beyond Thunderdome (1985),Action|Adventure|Sci-Fi +3705,2.7222222222222223,Bird on a Wire (1990),Action|Comedy|Romance +3706,3.642857142857143,Angel Heart (1987),Film-Noir|Horror|Mystery|Thriller +3707,3.05,9 1/2 Weeks (Nine 1/2 Weeks) (1986),Drama|Romance +3708,3.1666666666666665,Firestarter (1984),Horror|Thriller +3709,2.6666666666666665,Sleepwalkers (1992),Horror +3710,3.0,Action Jackson (1988),Action|Comedy|Crime|Thriller +3712,3.4166666666666665,Soapdish (1991),Comedy +3713,3.75,"Long Walk Home, The (1990)",Drama +3714,3.0,Clara's Heart (1988),Drama +3715,3.0,Burglar (1987),Comedy|Crime +3716,3.5,Fatal Beauty (1987),Action|Comedy|Crime|Drama +3717,2.7767857142857144,Gone in 60 Seconds (2000),Action|Crime +3718,3.0,American Pimp (1999),Documentary +3719,2.0,Love's Labour's Lost (2000),Comedy|Romance +3720,3.5,Sunshine (1999),Drama +3721,1.75,Trixie (2000),Comedy|Crime|Mystery +3723,3.9,Hamlet (1990),Drama +3724,4.115384615384615,Coming Home (1978),Drama|War +3725,3.125,American Pop (1981),Animation|Musical +3726,2.5,Assault on Precinct 13 (1976),Action|Thriller +3727,3.5,Near Dark (1987),Horror|Western +3728,3.5714285714285716,One False Move (1992),Crime|Drama|Film-Noir|Thriller +3729,4.333333333333333,Shaft (1971),Action|Crime|Drama|Thriller +3730,4.304347826086956,"Conversation, The (1974)",Drama|Mystery +3731,4.0,Cutter's Way (1981),Drama|Thriller +3732,3.3333333333333335,"Fury, The (1978)",Horror +3733,3.7142857142857144,"Paper Chase, The (1973)",Drama +3734,3.625,Prince of the City (1981),Drama +3735,4.037037037037037,Serpico (1973),Crime|Drama +3736,3.642857142857143,"Ace in the Hole (Big Carnival, The) (1951)",Drama +3737,5.0,Lonely Are the Brave (1962),Drama|Western +3738,3.6,"Sugarland Express, The (1974)",Drama +3739,4.666666666666667,Trouble in Paradise (1932),Comedy|Romance +3740,3.159090909090909,Big Trouble in Little China (1986),Action|Adventure|Comedy|Fantasy +3741,3.8846153846153846,Badlands (1973),Crime|Drama|Thriller +3742,3.78125,Battleship Potemkin (1925),Drama|War +3743,3.5,Boys and Girls (2000),Comedy|Romance +3744,2.6923076923076925,Shaft (2000),Action|Crime|Thriller +3745,3.3043478260869565,Titan A.E. (2000),Action|Adventure|Animation|Children|Sci-Fi +3746,5.0,Butterfly (La lengua de las mariposas) (1999),Drama +3747,3.2857142857142856,Jesus' Son (1999),Drama +3751,3.4292929292929295,Chicken Run (2000),Animation|Children|Comedy +3752,2.7674418604651163,"Me, Myself & Irene (2000)",Adventure|Comedy +3753,3.292307692307692,"Patriot, The (2000)",Action|Drama|War +3754,2.1666666666666665,"Adventures of Rocky and Bullwinkle, The (2000)",Adventure|Animation|Children|Comedy|Fantasy +3755,2.952830188679245,"Perfect Storm, The (2000)",Drama|Thriller +3757,5.0,Asylum (1972),Horror +3758,3.5,Communion (1989),Drama|Sci-Fi|Thriller +3759,3.5,Fun and Fancy Free (1947),Animation|Children|Musical +3760,3.5,"Kentucky Fried Movie, The (1977)",Comedy +3761,3.5,"Blood In, Blood Out (1993)",Action|Crime|Drama|Thriller +3763,3.4285714285714284,F/X (1986),Action|Crime|Thriller +3764,2.1,F/X2 (a.k.a. F/X 2 - The Deadly Art of Illusion) (1991),Action|Crime|Thriller +3765,2.0,"Hot Spot, The (1990)",Crime|Drama|Romance +3766,3.3333333333333335,Missing in Action (1984),Action|War +3768,3.0,Braddock: Missing in Action III (1988),Action|War +3769,3.2,Thunderbolt and Lightfoot (1974),Action +3770,3.3333333333333335,Dreamscape (1984),Horror|Sci-Fi|Thriller +3771,3.25,The Golden Voyage of Sinbad (1973),Action|Adventure|Fantasy +3773,2.5,House Party (1990),Comedy +3774,2.25,House Party 2 (1991),Comedy|Drama|Romance +3775,3.0,Make Mine Music (1946),Animation|Children|Musical +3777,2.25,Nekromantik (1987),Comedy|Horror +3780,2.0,Rocketship X-M (1950),Sci-Fi +3783,3.9285714285714284,Croupier (1998),Crime|Drama +3784,3.0,"Kid, The (2000)",Comedy|Fantasy +3785,2.581081081081081,Scary Movie (2000),Comedy|Horror +3786,3.2,But I'm a Cheerleader (1999),Comedy +3787,3.75,Shower (Xizao) (1999),Comedy +3788,3.7333333333333334,Blow-Up (Blowup) (1966),Drama|Mystery +3789,4.4,"Pawnbroker, The (1964)",Drama +3790,4.0,Groove (2000),Drama +3791,3.5416666666666665,Footloose (1984),Drama +3792,4.333333333333333,Duel in the Sun (1946),Drama|Romance|Western +3793,3.559055118110236,X-Men (2000),Action|Adventure|Sci-Fi +3794,3.4,Chuck & Buck (2000),Comedy|Drama +3795,4.5,"Five Senses, The (1999)",Drama +3798,3.076923076923077,What Lies Beneath (2000),Drama|Horror|Mystery +3799,1.75,Pokémon the Movie 2000 (2000),Animation|Children +3800,2.0,Criminal Lovers (1999),Crime|Drama|Romance|Thriller +3801,3.6333333333333333,Anatomy of a Murder (1959),Drama|Mystery +3802,2.5,Freejack (1992),Action|Sci-Fi +3804,3.5,H.O.T.S. (1979),Comedy +3805,4.0,Knightriders (1981),Action|Adventure|Drama +3806,2.6666666666666665,Mackenna's Gold (1969),Western +3807,3.2,Sinbad and the Eye of the Tiger (1977),Adventure|Fantasy +3809,3.3448275862068964,What About Bob? (1991),Comedy +3810,2.5,White Sands (1992),Drama|Thriller +3811,3.9444444444444446,Breaker Morant (1980),Drama|War +3812,3.272727272727273,Everything You Always Wanted to Know About Sex * But Were Afraid to Ask (1972),Comedy +3813,2.8333333333333335,Interiors (1978),Drama +3814,4.115384615384615,Love and Death (1975),Comedy +3816,3.6666666666666665,"Official Story, The (La historia oficial) (1985)",Drama +3819,3.7,Tampopo (1985),Comedy +3820,1.0,Thomas and the Magic Railroad (2000),Children +3821,2.25,Nutty Professor II: The Klumps (2000),Comedy +3822,1.75,"Girl on the Bridge, The (Fille sur le pont, La) (1999)",Drama|Romance +3823,3.125,Wonderland (1999),Drama +3824,2.3,Autumn in New York (2000),Drama|Romance +3825,2.925925925925926,Coyote Ugly (2000),Comedy|Drama|Romance +3826,2.183333333333333,Hollow Man (2000),Horror|Sci-Fi|Thriller +3827,2.6666666666666665,Space Cowboys (2000),Action|Adventure|Comedy|Sci-Fi +3829,2.0,Mad About Mambo (2000),Comedy|Romance +3831,3.5,Saving Grace (2000),Comedy +3832,3.0,"Black Sabbath (Tre volti della paura, I) (1963)",Horror +3833,3.1666666666666665,"Brain That Wouldn't Die, The (1962)",Horror|Sci-Fi +3834,3.0,Bronco Billy (1980),Adventure|Drama|Romance +3835,2.8333333333333335,"Crush, The (1993)",Thriller +3836,3.5,Kelly's Heroes (1970),Action|Comedy|War +3837,5.0,Phantasm II (1988),Action|Fantasy|Horror|Sci-Fi|Thriller +3838,2.0,Phantasm III: Lord of the Dead (1994),Horror +3839,1.0,Phantasm IV: Oblivion (1998),Horror +3840,4.0,Pumpkinhead (1988),Horror +3841,2.3333333333333335,Air America (1990),Action|Comedy +3843,3.5,Sleepaway Camp (1983),Horror +3844,3.6,Steel Magnolias (1989),Drama +3845,5.0,And God Created Woman (Et Dieu... créa la femme) (1956),Drama +3846,3.0,Easy Money (1983),Comedy +3847,3.0,"Ilsa, She Wolf of the SS (1974)",Horror +3848,4.0,Silent Fall (1994),Drama|Thriller +3849,4.0,The Spiral Staircase (1945),Horror|Mystery|Thriller +3851,5.0,I'm the One That I Want (2000),Comedy +3852,3.6666666666666665,"Tao of Steve, The (2000)",Comedy +3854,4.0,Aimée & Jaguar (1999),Drama|Romance|War +3855,3.75,"Affair of Love, An (Liaison pornographique, Une) (1999)",Drama|Romance +3857,2.125,Bless the Child (2000),Thriller +3858,3.3333333333333335,Cecil B. DeMented (2000),Comedy +3859,3.75,"Eyes of Tammy Faye, The (2000)",Documentary +3860,3.0,"Opportunists, The (2000)",Comedy|Crime|Drama +3861,3.0357142857142856,"Replacements, The (2000)",Comedy +3863,2.9558823529411766,"Cell, The (2000)",Drama|Horror|Thriller +3864,2.125,Godzilla 2000 (Gojira ni-sen mireniamu) (1999),Action|Adventure|Sci-Fi +3865,2.8333333333333335,"Original Kings of Comedy, The (2000)",Comedy|Documentary +3868,3.8714285714285714,"Naked Gun: From the Files of Police Squad!, The (1988)",Action|Comedy|Crime|Romance +3869,3.4444444444444446,"Naked Gun 2 1/2: The Smell of Fear, The (1991)",Comedy +3870,3.0,Our Town (1940),Drama +3871,3.95,Shane (1953),Drama|Western +3872,4.333333333333333,"Suddenly, Last Summer (1959)",Drama +3873,3.772727272727273,Cat Ballou (1965),Comedy|Western +3875,2.5,"Devil Rides Out, The (1968)",Horror +3877,2.8,Supergirl (1984),Action|Adventure|Fantasy +3879,5.0,"Art of War, The (2000)",Action|Thriller +3880,4.0,"Ballad of Ramblin' Jack, The (2000)",Documentary +3882,2.875,Bring It On (2000),Comedy +3883,0.5,Catfish in Black Bean Sauce (2000),Comedy|Drama +3885,3.0,Love & Sex (2000),Comedy|Drama|Romance +3886,3.1666666666666665,Steal This Movie! (2000),Drama +3889,1.5,Highlander: Endgame (Highlander IV) (2000),Action|Adventure|Fantasy +3890,3.0,Back Stage (2000),Documentary +3891,1.0,Turn It Up (2000),Crime|Drama +3892,3.0,Anatomy (Anatomie) (2000),Horror +3893,2.8095238095238093,Nurse Betty (2000),Comedy|Crime|Drama|Romance|Thriller +3895,1.25,"Watcher, The (2000)",Crime|Thriller +3896,3.1875,"Way of the Gun, The (2000)",Crime|Thriller +3897,3.888888888888889,Almost Famous (2000),Drama +3900,3.0,Crime and Punishment in Suburbia (2000),Comedy|Drama +3901,2.5,Duets (2000),Comedy|Drama +3902,4.5,Goya in Bordeaux (Goya en Burdeos) (1999),Drama +3903,3.3333333333333335,Urbania (2000),Drama +3905,4.5,"Specials, The (2000)",Comedy +3906,4.0,Under Suspicion (2000),Crime|Thriller +3908,2.9,Urban Legends: Final Cut (2000),Horror +3909,5.0,Woman on Top (2000),Comedy|Romance +3910,3.8043478260869565,Dancer in the Dark (2000),Drama|Musical +3911,3.76271186440678,Best in Show (2000),Comedy +3913,3.5,Barenaked in America (1999),Documentary +3914,3.3333333333333335,"Broken Hearts Club, The (2000)",Drama +3915,4.166666666666667,Girlfight (2000),Drama +3916,3.858974358974359,Remember the Titans (2000),Drama +3917,3.5454545454545454,Hellraiser (1987),Horror +3918,3.0,Hellbound: Hellraiser II (1988),Horror +3919,2.6666666666666665,Hellraiser III: Hell on Earth (1992),Horror +3920,3.5,"Faraway, So Close (In weiter Ferne, so nah!) (1993)",Drama|Fantasy|Mystery|Romance +3921,2.5,Beach Party (1963),Comedy +3922,3.0,Bikini Beach (1964),Comedy +3923,4.0,Return of the Fly (1959),Horror|Sci-Fi +3924,3.0,Pajama Party (1964),Comedy +3925,3.875,Stranger Than Paradise (1984),Comedy|Drama +3926,3.0,Voyage to the Bottom of the Sea (1961),Adventure|Sci-Fi +3927,3.6,Fantastic Voyage (1966),Adventure|Sci-Fi +3928,3.4,Abbott and Costello Meet Frankenstein (1948),Comedy|Horror +3929,3.9444444444444446,"Bank Dick, The (1940)",Comedy +3930,3.4,"Creature from the Black Lagoon, The (1954)",Adventure|Horror|Sci-Fi +3932,3.25,"Invisible Man, The (1933)",Horror|Sci-Fi +3933,0.5,"Killer Shrews, The (1959)",Horror|Sci-Fi +3934,4.0,Kronos (1957),Sci-Fi +3936,3.0,Phantom of the Opera (1943),Horror|Musical|Thriller +3937,2.5,Runaway (1984),Sci-Fi|Thriller +3938,4.0,"Slumber Party Massacre, The (1982)",Horror +3939,3.0,Slumber Party Massacre II (1987),Horror +3940,3.0,Slumber Party Massacre III (1990),Horror +3941,4.0,Sorority House Massacre (1986),Horror +3942,3.0,Sorority House Massacre II (1990),Horror +3943,4.0,Bamboozled (2000),Comedy +3945,4.0,Digimon: The Movie (2000),Adventure|Animation|Children +3946,2.2857142857142856,Get Carter (2000),Action|Drama|Thriller +3947,5.0,Get Carter (1971),Action|Crime|Drama|Thriller +3948,3.4431818181818183,Meet the Parents (2000),Comedy +3949,3.869565217391304,Requiem for a Dream (2000),Drama +3950,3.6666666666666665,Tigerland (2000),Drama +3951,3.5,Two Family House (2000),Drama +3952,4.0,"Contender, The (2000)",Drama|Thriller +3953,2.3333333333333335,Dr. T and the Women (2000),Comedy|Romance +3955,2.75,"Ladies Man, The (2000)",Comedy +3956,2.0,Lost Souls (2000),Drama|Horror|Thriller +3957,2.125,Billy Jack (1971),Action|Drama +3959,3.4375,"Time Machine, The (1960)",Action|Adventure|Sci-Fi +3960,3.0,Haunted (1995),Drama|Thriller +3961,2.6666666666666665,Ghoulies (1985),Horror +3962,2.25,Ghoulies II (1987),Comedy|Horror +3963,3.4375,"Unsinkable Molly Brown, The (1964)",Musical +3964,3.0,"Adventures of Ichabod and Mr. Toad, The (1949)",Animation|Children +3965,3.0,"Strange Love of Martha Ivers, The (1946)",Drama|Film-Noir +3966,4.75,Detour (1945),Crime|Film-Noir +3967,3.7093023255813953,Billy Elliot (2000),Drama +3968,2.4705882352941178,Bedazzled (2000),Comedy +3969,2.9565217391304346,Pay It Forward (2000),Drama +3970,3.8333333333333335,"Beyond, The (E tu vivrai nel terrore - L'aldilà) (1981)",Horror +3971,4.0,"Private Eyes, The (1981)",Comedy|Mystery +3972,3.5454545454545454,"Legend of Drunken Master, The (Jui kuen II) (1994)",Action|Comedy +3973,2.9,Book of Shadows: Blair Witch 2 (2000),Crime|Horror|Mystery|Thriller +3975,2.625,Lucky Numbers (2000),Comedy|Drama +3976,4.0,Stardom (2000),Comedy|Drama +3977,2.7278481012658227,Charlie's Angels (2000),Action|Comedy +3978,3.05,"Legend of Bagger Vance, The (2000)",Drama|Romance +3979,1.8611111111111112,Little Nicky (2000),Comedy +3980,3.25,Men of Honor (2000),Drama +3981,2.4166666666666665,Red Planet (2000),Action|Sci-Fi|Thriller +3983,4.25,You Can Count on Me (2000),Drama|Romance +3984,3.4347826086956523,Diamonds Are Forever (1971),Action|Adventure|Thriller +3985,3.0,"Eagle Has Landed, The (1976)",Drama|War +3986,2.775,"6th Day, The (2000)",Action|Sci-Fi|Thriller +3987,2.95,Bounce (2000),Drama|Romance +3988,2.7586206896551726,How the Grinch Stole Christmas (a.k.a. The Grinch) (2000),Children|Comedy|Fantasy +3989,4.1,One Day in September (1999),Documentary +3990,1.25,Rugrats in Paris: The Movie (2000),Animation|Children|Comedy +3991,1.8181818181818181,102 Dalmatians (2000),Children|Comedy +3992,3.375,Malèna (2000),Drama|Romance|War +3993,3.03125,Quills (2000),Drama|Romance +3994,3.2983870967741935,Unbreakable (2000),Drama|Sci-Fi +3996,3.8552631578947367,"Crouching Tiger, Hidden Dragon (Wo hu cang long) (2000)",Action|Drama|Romance +3997,1.9,Dungeons & Dragons (2000),Action|Adventure|Comedy|Fantasy +3998,2.75,Proof of Life (2000),Drama +3999,2.525,Vertical Limit (2000),Action|Adventure +4000,3.0,"Bounty, The (1984)",Adventure|Drama +4001,2.0,Code of Silence (1985),Action +4002,3.375,"Planes, Trains & Automobiles (1987)",Comedy +4003,3.0,She's Having a Baby (1988),Comedy +4005,3.4,"Living Daylights, The (1987)",Action|Adventure|Thriller +4006,3.5,Transformers: The Movie (1986),Adventure|Animation|Children|Sci-Fi +4007,3.9,Wall Street (1987),Drama +4008,3.6458333333333335,Born on the Fourth of July (1989),Drama|War +4009,4.0,Talk Radio (1988),Drama +4010,3.227272727272727,Brewster's Millions (1985),Comedy +4011,4.036842105263158,Snatch (2000),Comedy|Crime|Thriller +4012,2.5,Punchline (1988),Comedy|Drama +4014,3.7777777777777777,Chocolat (2000),Drama|Romance +4015,2.659090909090909,"Dude, Where's My Car? (2000)",Comedy|Sci-Fi +4016,3.5,"Emperor's New Groove, The (2000)",Adventure|Animation|Children|Comedy|Fantasy +4017,4.045454545454546,Pollock (2000),Drama +4018,3.125,What Women Want (2000),Comedy|Romance +4019,3.423076923076923,Finding Forrester (2000),Drama +4020,3.1363636363636362,"Gift, The (2000)",Thriller +4021,3.8333333333333335,Before Night Falls (2000),Drama +4022,3.46875,Cast Away (2000),Drama +4023,3.142857142857143,"Family Man, The (2000)",Comedy|Drama|Romance +4024,3.375,"House of Mirth, The (2000)",Romance +4025,2.792452830188679,Miss Congeniality (2000),Comedy|Crime +4026,1.0,Nowhere to Hide (Injeong sajeong bol geot eobtda) (1999),Action|Comedy|Crime|Thriller +4027,3.875,"O Brother, Where Art Thou? (2000)",Adventure|Comedy|Crime +4029,3.466666666666667,State and Main (2000),Comedy|Drama +4030,3.125,Dracula 2000 (2000),Horror +4031,2.375,All the Pretty Horses (2000),Drama|Romance|Western +4033,3.888888888888889,Thirteen Days (2000),Drama|Thriller|War +4034,3.910958904109589,Traffic (2000),Crime|Drama|Thriller +4035,4.0,"Claim, The (2000)",Romance|Western +4036,3.1,Shadow of the Vampire (2000),Drama|Horror +4037,4.125,House of Games (1987),Crime|Film-Noir|Mystery|Thriller +4039,3.3076923076923075,Annie (1982),Children|Musical +4040,2.388888888888889,Don't Tell Mom the Babysitter's Dead (1991),Comedy +4041,3.4545454545454546,"Officer and a Gentleman, An (1982)",Drama|Romance +4042,3.25,"Alamo, The (1960)",Action|Drama|War|Western +4043,3.5,At Close Range (1986),Crime|Drama +4045,2.0,Breakheart Pass (1975),Western +4046,4.0,Friendly Persuasion (1956),Drama +4047,3.5,Gettysburg (1993),Drama|War +4048,3.0,Imaginary Crimes (1994),Drama +4051,0.5,Horrors of Spider Island (Ein Toter Hing im Netz) (1960),Horror|Sci-Fi +4052,2.6875,Antitrust (2001),Crime|Drama|Thriller +4053,2.0,Double Take (2001),Action|Comedy +4054,3.357142857142857,Save the Last Dance (2001),Drama|Romance +4055,2.875,Panic (2000),Drama +4056,3.5,"Pledge, The (2001)",Crime|Drama|Mystery|Thriller +4060,4.0,Love Field (1992),Drama +4061,3.2,The Man in the Moon (1991),Drama|Romance +4062,3.2142857142857144,Mystic Pizza (1988),Comedy|Drama|Romance +4063,3.0,Prelude to a Kiss (1992),Comedy|Drama|Romance +4066,3.4444444444444446,I'm Gonna Git You Sucka (1988),Action|Comedy +4067,1.6666666666666667,Untamed Heart (1993),Drama|Romance +4068,3.25,Sugar & Spice (2001),Comedy +4069,2.480769230769231,"Wedding Planner, The (2001)",Comedy|Romance +4073,1.0,"Invisible Circus, The (2001)",Drama|Romance +4076,5.0,Two Ninas (1999),Comedy|Romance +4077,4.0,"With a Friend Like Harry... (Harry, un ami qui vous veut du bien) (2000)",Drama|Thriller +4079,4.0,Amazon Women on the Moon (1987),Comedy|Sci-Fi +4080,2.8,Baby Boom (1987),Comedy +4081,3.0,Back to the Beach (1987),Comedy +4082,1.0,Barfly (1987),Comedy|Drama|Romance +4084,2.9642857142857144,Beverly Hills Cop II (1987),Action|Comedy|Crime|Thriller +4085,3.676470588235294,Beverly Hills Cop (1984),Action|Comedy|Crime|Drama +4086,4.25,"Big Easy, The (1987)",Action|Crime|Mystery|Romance|Thriller +4088,5.0,"Big Town, The (1987)",Drama|Romance|Thriller +4089,3.0,Born in East L.A. (1987),Comedy +4090,2.8125,"Brave Little Toaster, The (1987)",Animation|Children +4091,3.2,Can't Buy Me Love (1987),Comedy|Romance +4092,2.5,Cherry 2000 (1987),Romance|Sci-Fi +4095,4.5,Cry Freedom (1987),Drama +4098,3.0,"Dead, The (1987)",Drama +4101,4.5,Dogs in Space (1987),Drama +4102,3.8333333333333335,Eddie Murphy Raw (1987),Comedy|Documentary +4103,4.071428571428571,Empire of the Sun (1987),Action|Adventure|Drama|War +4104,0.75,Ernest Goes to Camp (1987),Comedy +4105,3.6458333333333335,"Evil Dead, The (1981)",Fantasy|Horror|Thriller +4106,3.0,Extreme Prejudice (1987),Action|Crime|Drama|Thriller|Western +4108,4.0,Five Corners (1987),Drama +4109,2.0,Flowers in the Attic (1987),Drama|Thriller +4111,3.8333333333333335,Gardens of Stone (1987),Drama|War +4114,5.0,"Good Morning, Babylon (1987)",Drama +4115,3.0,Hiding Out (1987),Comedy +4116,3.4,Hollywood Shuffle (1987),Comedy +4117,3.5833333333333335,Hope and Glory (1987),Drama +4121,3.4545454545454546,Innerspace (1987),Action|Adventure|Comedy|Sci-Fi +4122,4.0,Ironweed (1987),Drama +4123,3.0,Ishtar (1987),Comedy +4124,1.6666666666666667,Jaws: The Revenge (1987),Horror|Thriller +4126,2.8333333333333335,Less Than Zero (1987),Drama +4128,3.925,"Lost Boys, The (1987)",Comedy|Horror|Thriller +4130,2.7,Maid to Order (1987),Comedy|Fantasy +4131,4.0,Making Mr. Right (1987),Comedy|Romance|Sci-Fi +4132,3.2083333333333335,Mannequin (1987),Comedy|Romance +4133,3.3333333333333335,Masters of the Universe (1987),Action|Adventure|Fantasy|Sci-Fi +4135,3.5,"Monster Squad, The (1987)",Adventure|Comedy|Horror +4136,2.0,"Month in the Country, A (1987)",Drama +4139,2.0,No Man's Land (1987),Crime|Drama +4140,5.0,North Shore (1987),Drama|Romance +4141,3.75,Head Over Heels (2001),Comedy|Romance +4142,2.5,Left Behind: The Movie (2000),Action|Adventure|Drama|Thriller +4143,1.6666666666666667,Valentine (2001),Horror|Mystery +4144,4.0,In the Mood For Love (Fa yeung nin wa) (2000),Drama|Romance +4146,2.5,"Million Dollar Hotel, The (2001)",Drama|Mystery|Romance +4148,3.0606060606060606,Hannibal (2001),Horror|Thriller +4149,2.4375,Saving Silverman (Evil Woman) (2001),Comedy|Romance +4151,4.5,"Taste of Others, The (Le goût des autres) (2000)",Comedy|Drama|Romance +4153,2.8333333333333335,Down to Earth (2001),Comedy|Fantasy|Romance +4155,3.0,Sweet November (2001),Drama|Romance +4156,2.0,Company Man (2000),Comedy +4158,1.25,Monkeybone (2001),Animation|Comedy|Fantasy +4159,2.25,3000 Miles to Graceland (2001),Action|Thriller +4161,3.066666666666667,"Mexican, The (2001)",Action|Comedy +4162,1.0,See Spot Run (2001),Comedy +4166,3.25,Series 7: The Contenders (2001),Action|Drama +4167,2.4375,15 Minutes (2001),Thriller +4168,3.1666666666666665,Get Over It (2001),Comedy|Romance +4169,4.5,Blow Dry (a.k.a. Never Better) (2001),Comedy +4171,4.0,Long Night's Journey Into Day (2000),Documentary +4173,3.5,When Brendan Met Trudy (2000),Comedy|Romance +4174,3.8,Avalon (1990),Drama +4175,3.0,Gray's Anatomy (1996),Comedy|Drama +4177,3.6666666666666665,"Mirror Crack'd, The (1980)",Crime|Mystery|Thriller +4178,3.9166666666666665,Of Mice and Men (1939),Drama +4179,4.333333333333333,Pixote (1981),Drama +4180,4.0,Reform School Girls (1986),Action|Drama +4181,4.0,Tapeheads (1988),Comedy +4183,3.0,"Unbelievable Truth, The (1989)",Comedy|Drama +4184,3.8333333333333335,"Bishop's Wife, The (1947)",Comedy|Drama|Romance +4185,4.0,Elvis: That's the Way It Is (1970),Documentary +4186,3.6,"Fortune Cookie, The (1966)",Comedy|Drama|Romance +4187,3.9375,Lilies of the Field (1963),Drama +4188,3.75,Hans Christian Andersen (1952),Children|Musical +4189,4.5,"Greatest Story Ever Told, The (1965)",Drama +4190,4.0,Elmer Gantry (1960),Drama +4191,3.6666666666666665,Alfie (1966),Comedy|Drama|Romance +4194,3.5,I Know Where I'm Going! (1945),Drama|Romance|War +4195,4.0,"Abominable Dr. Phibes, The (1971)",Horror|Mystery +4197,4.0,Real Life (1979),Comedy +4198,3.0,Battle Beyond the Stars (1980),Sci-Fi +4200,3.5,Double Impact (1991),Action +4201,5.0,"End, The (1978)",Comedy +4203,2.125,Harley Davidson and the Marlboro Man (1991),Action|Crime|Drama +4205,3.3333333333333335,Mermaids (1990),Comedy|Drama|Romance +4207,2.0,Navy Seals (1990),Action|Adventure|War +4208,1.0,Unmade Beds (1997),Documentary +4210,3.3,Manhunter (1986),Action|Crime|Drama|Horror|Thriller +4211,3.857142857142857,Reversal of Fortune (1990),Drama +4212,3.3,Death on the Nile (1978),Crime|Mystery +4213,3.5,Deepstar Six (1989),Horror|Sci-Fi|Thriller +4214,3.107142857142857,Revenge of the Nerds (1984),Comedy +4215,1.0,Revenge of the Nerds II: Nerds in Paradise (1987),Comedy +4216,3.8333333333333335,Longtime Companion (1990),Drama +4217,3.7,4 Little Girls (1997),Documentary +4218,4.0,River's Edge (1986),Crime|Drama +4219,3.5,Girls Just Want to Have Fun (1985),Comedy +4220,3.6666666666666665,"Longest Yard, The (1974)",Comedy +4221,3.0,Necessary Roughness (1991),Comedy +4222,3.0,C.H.U.D. (1984),Horror +4223,3.689189189189189,Enemy at the Gates (2001),Drama|War +4224,2.25,Exit Wounds (2001),Action|Thriller +4225,3.5454545454545454,"Dish, The (2001)",Comedy +4226,4.2272727272727275,Memento (2000),Mystery|Thriller +4228,3.15,Heartbreakers (2001),Comedy|Crime|Romance +4229,3.25,Say It Isn't So (2001),Comedy|Romance +4231,3.25,Someone Like You (2001),Comedy|Romance +4232,2.7857142857142856,Spy Kids (2001),Action|Adventure|Children|Comedy +4233,2.5,Tomcats (2001),Comedy +4234,3.1666666666666665,"Tailor of Panama, The (2001)",Drama|Thriller +4235,4.183333333333334,Amores Perros (Love's a Bitch) (2000),Drama|Thriller +4236,3.5,Keep the River on Your Right: A Modern Cannibal Tale (2000),Documentary +4237,3.5,"Gleaners & I, The (Les glaneurs et la glaneuse) (2000)",Documentary +4238,3.2058823529411766,Along Came a Spider (2001),Action|Crime|Mystery|Thriller +4239,3.4864864864864864,Blow (2001),Crime|Drama +4241,2.5,Pokémon 3: The Movie (2001),Animation|Children +4246,3.471830985915493,Bridget Jones's Diary (2001),Comedy|Drama|Romance +4247,2.45,Joe Dirt (2001),Adventure|Comedy|Mystery|Romance +4248,2.5,Josie and the Pussycats (2001),Comedy +4251,4.0,Chopper (2000),Drama|Thriller +4252,5.0,"Circle, The (Dayereh) (2000)",Drama +4254,2.4,Crocodile Dundee in Los Angeles (2001),Comedy|Drama +4255,1.7142857142857142,Freddy Got Fingered (2001),Comedy +4262,3.704081632653061,Scarface (1983),Action|Crime|Drama +4263,4.333333333333333,Days of Wine and Roses (1962),Drama +4265,0.8333333333333334,Driven (2001),Action|Thriller +4266,3.0,"Forsaken, The (2001)",Horror +4267,3.3333333333333335,One Night at McCool's (2001),Comedy +4268,2.0,Town & Country (2001),Comedy +4270,2.734375,"Mummy Returns, The (2001)",Action|Adventure|Comedy|Thriller +4271,3.3333333333333335,Eureka (Yurîka) (2000),Drama +4273,4.333333333333333,Under the Sand (2000),Drama +4274,2.5,Cleopatra (1963),Drama|Romance +4275,2.7857142857142856,Krull (1983),Action|Adventure|Fantasy|Sci-Fi +4276,3.0,Lost in America (1985),Comedy +4277,4.0,"Lost World, The (1925)",Adventure|Sci-Fi +4278,3.3,Triumph of the Will (Triumph des Willens) (1934),Documentary +4279,3.0,True Believer (1989),Crime +4280,3.75,"World According to Garp, The (1982)",Comedy|Drama|Romance +4281,3.0,Candy (1968),Comedy +4282,3.3333333333333335,Fellini Satyricon (1969),Drama|Fantasy +4284,3.0,Frankie and Johnny (1966),Comedy +4290,3.0,For the Boys (1991),Comedy|Drama|Musical +4291,2.4444444444444446,Nine to Five (a.k.a. 9 to 5) (1980),Comedy|Crime +4292,3.857142857142857,Norma Rae (1979),Drama +4293,2.5,Summer Rental (1985),Comedy +4294,3.5,"5,000 Fingers of Dr. T, The (1953)",Children|Fantasy|Musical +4296,2.75,Love Story (1970),Drama|Romance +4297,4.0,Pelle the Conqueror (Pelle erobreren) (1987),Drama +4298,3.75,Rififi (Du rififi chez les hommes) (1955),Crime|Film-Noir|Thriller +4299,3.3392857142857144,"Knight's Tale, A (2001)",Action|Comedy|Romance +4300,2.5,Bread and Roses (2000),Drama +4302,5.0,"King Is Alive, The (2000)",Drama +4304,4.3,Startup.com (2001),Documentary +4305,2.3333333333333335,Angel Eyes (2001),Romance|Thriller +4306,3.8477011494252875,Shrek (2001),Adventure|Animation|Children|Comedy|Fantasy|Romance +4308,3.6363636363636362,Moulin Rouge (2001),Drama|Musical|Romance +4310,2.869047619047619,Pearl Harbor (2001),Action|Drama|Romance|War +4312,3.875,Himalaya (Himalaya - l'enfance d'un chef) (1999),Adventure|Drama +4316,2.0,Ice Castles (1978),Drama +4317,2.8,Love Potion #9 (1992),Comedy|Romance +4318,2.875,Postcards From the Edge (1990),Comedy|Drama +4319,3.0,Apache (1954),Western +4321,3.4642857142857144,City Slickers (1991),Comedy|Western +4322,3.6538461538461537,Eight Men Out (1988),Drama +4324,3.0,"Kentuckian, The (1955)",Drama|Western +4326,4.090909090909091,Mississippi Burning (1988),Crime|Drama|Thriller +4327,3.8214285714285716,"Magnificent Seven, The (1960)",Adventure|Western +4329,3.5,Rio Bravo (1959),Western +4332,2.0,Suspect (1987),Crime|Drama|Thriller +4333,3.0,Throw Momma from the Train (1987),Comedy|Crime +4334,3.5,Yi Yi (2000),Drama +4337,3.0,"Sand Pebbles, The (1966)",Drama|Romance|War +4338,4.75,Twelve O'Clock High (1949),Drama|War +4339,3.625,Von Ryan's Express (1965),Action|Adventure|Drama|War +4340,2.5,"Animal, The (2001)",Comedy +4342,5.0,Big Eden (2000),Drama|Romance +4343,2.725,Evolution (2001),Comedy|Sci-Fi +4344,2.9242424242424243,Swordfish (2001),Action|Crime|Drama +4345,3.25,"Anniversary Party, The (2001)",Drama +4347,3.5,Divided We Fall (Musíme si pomáhat) (2000),Comedy|Drama +4349,4.5,Catch-22 (1970),Comedy|War +4350,1.0,Forgotten Silver (1996),Comedy|Documentary +4351,3.3823529411764706,Point Break (1991),Action|Crime|Thriller +4352,3.6666666666666665,Shag (1989),Comedy|Drama +4353,4.0,Uncommon Valor (1983),Action|War +4354,4.0,Unlawful Entry (1992),Crime|Thriller +4355,2.5,Youngblood (1986),Action|Drama +4356,3.9166666666666665,Gentlemen Prefer Blondes (1953),Comedy|Musical|Romance +4357,3.857142857142857,How to Marry a Millionaire (1953),Comedy|Drama|Romance +4359,3.25,"Seven Year Itch, The (1955)",Comedy +4360,3.0,There's No Business Like Show Business (1954),Musical +4361,3.810344827586207,Tootsie (1982),Comedy|Romance +4366,3.3333333333333335,Atlantis: The Lost Empire (2001),Adventure|Animation|Children|Fantasy +4367,2.842857142857143,Lara Croft: Tomb Raider (2001),Action|Adventure +4368,2.0,Dr. Dolittle 2 (2001),Comedy +4369,3.2875,"Fast and the Furious, The (2001)",Action|Crime|Thriller +4370,2.9272727272727272,A.I. Artificial Intelligence (2001),Adventure|Drama|Sci-Fi +4371,2.0,Baby Boy (2001),Crime|Drama +4372,3.0555555555555554,Crazy/Beautiful (2001),Drama|Romance +4375,4.0,"Adventures of Felix, The (a.k.a. Funny Felix) (Drôle de Félix) (2000)",Comedy|Drama +4378,3.576923076923077,Sexy Beast (2000),Crime|Drama +4380,3.8333333333333335,"Princess and the Warrior, The (Krieger und die Kaiserin, Der) (2000)",Drama|Romance +4381,3.0,"Closet, The (Placard, Le) (2001)",Comedy +4383,2.8333333333333335,"Crimson Rivers, The (Rivières pourpres, Les) (2000)",Crime|Drama|Mystery|Thriller +4384,4.166666666666667,Lumumba (2000),Drama +4386,1.3333333333333333,Cats & Dogs (2001),Children|Comedy +4387,2.6666666666666665,Kiss of the Dragon (2001),Action +4388,2.289473684210526,Scary Movie 2 (2001),Comedy +4389,3.5,Lost and Delirious (2001),Drama +4390,3.0,Rape Me (Baise-moi) (2000),Crime|Drama|Thriller +4391,4.0,"Vertical Ray of the Sun, The (Mua he chieu thang dung) (2000)",Drama +4392,2.0,Alice (1990),Comedy|Drama|Fantasy|Romance +4394,2.3333333333333335,Beach Blanket Bingo (1965),Comedy|Musical +4396,3.5,"Cannonball Run, The (1981)",Action|Comedy +4397,3.0,Cannonball Run II (1984),Action|Comedy +4399,1.0,"Diary of a Chambermaid (Journal d'une femme de chambre, Le) (1964)",Comedy|Drama +4401,4.0,Donovan's Reef (1963),Action|Comedy|Romance +4402,2.0,Dr. Goldfoot and the Bikini Machine (1965),Comedy +4403,3.0,"Fall of the House of Usher, The (House of Usher) (1960)",Horror +4404,3.0,Faust (1926),Drama|Fantasy|Horror +4405,4.5,"Last Laugh, The (Letzte Mann, Der) (1924)",Drama +4406,3.8636363636363638,"Man Who Shot Liberty Valance, The (1962)",Crime|Drama|Western +4407,4.5,Salvador (1986),Drama|Thriller|War +4409,2.4,Shadows and Fog (1991),Comedy|Drama|Mystery|Thriller +4410,4.0,Something Wild (1986),Comedy|Crime|Drama +4411,3.0,Sons of Katie Elder (1965),Western +4414,3.5,X: The Man with the X-Ray Eyes (1963),Sci-Fi|Thriller +4415,3.5,Cheech & Chong's Nice Dreams (1981),Comedy +4417,2.5,"House by the Cemetery, The (Quella villa accanto al cimitero) (1981)",Horror +4420,3.125,"Barefoot Contessa, The (1954)",Drama +4422,4.5,Cries and Whispers (Viskningar och rop) (1972),Drama +4424,3.4285714285714284,"Garden of the Finzi-Continis, The (Giardino dei Finzi-Contini, Il) (1970)",Drama +4426,4.0,Kiss Me Deadly (1955),Film-Noir +4427,4.277777777777778,"Lion in Winter, The (1968)",Drama +4428,5.0,"Misfits, The (1961)",Comedy|Drama|Romance|Western +4432,3.7857142857142856,Sweet Smell of Success (1957),Drama|Film-Noir +4433,2.25,Written on the Wind (1956),Drama +4437,4.125,Suspiria (1977),Horror +4438,4.0,"Fist of Fury (Chinese Connection, The) (Jing wu men) (1972)",Action|Drama|Romance|Thriller +4440,3.6666666666666665,"Big Boss, The (Fists of Fury) (Tang shan da xiong) (1971)",Action|Thriller +4441,2.3333333333333335,Game of Death (1978),Action +4442,5.0,"Last Dragon, The (1985)",Action|Comedy|Drama +4443,4.125,Outland (1981),Action|Sci-Fi|Thriller +4444,4.0,"Way of the Dragon, The (a.k.a. Return of the Dragon) (Meng long guo jiang) (1972)",Action|Crime +4445,1.75,T-Rex: Back to the Cretaceous (1998),Adventure|Documentary|IMAX +4446,3.026315789473684,Final Fantasy: The Spirits Within (2001),Adventure|Animation|Fantasy|Sci-Fi +4447,2.9893617021276597,Legally Blonde (2001),Comedy|Romance +4448,3.25,"Score, The (2001)",Action|Drama +4450,4.0,Bully (2001),Crime|Drama|Thriller +4451,2.5,Jump Tomorrow (2001),Comedy|Drama|Romance +4452,2.6,Made (2001),Comedy +4453,2.0,Michael Jordan to the Max (2000),Documentary|IMAX +4454,4.0,More (1998),Animation|Drama|Sci-Fi|IMAX +4458,3.75,Africa: The Serengeti (1994),Documentary|IMAX +4459,5.0,Alaska: Spirit of the Wild (1997),Documentary|IMAX +4462,3.0,18 Again! (1988),Comedy|Fantasy +4464,3.6,"Accidental Tourist, The (1988)",Comedy|Drama|Romance +4465,3.7857142857142856,"Accused, The (1988)",Drama +4466,5.0,Above the Law (1988),Action|Crime|Drama +4467,3.6153846153846154,"Adventures of Baron Munchausen, The (1988)",Adventure|Comedy|Fantasy +4469,4.0,Appointment with Death (1988),Crime|Mystery +4470,4.5,Ariel (1988),Drama +4471,0.5,Arthur 2: On the Rocks (1988),Comedy|Romance +4473,4.0,Bat*21 (1988),Drama|War +4474,2.6666666666666665,Beaches (1988),Comedy|Drama|Musical +4475,4.0,"Beast of War, The (Beast, The) (1988)",Drama|War +4477,1.0,Big Top Pee-Wee (1988),Adventure|Children|Comedy +4478,3.5833333333333335,Biloxi Blues (1988),Comedy|Drama +4479,4.0,Bird (1988),Drama|Musical +4480,3.0,"Blob, The (1988)",Horror|Sci-Fi +4482,2.5,"Bright Lights, Big City (1988)",Drama +4483,2.5,Caddyshack II (1988),Comedy +4486,2.5,Clean and Sober (1988),Drama +4487,2.0,Cocktail (1988),Drama|Romance +4488,2.875,Colors (1988),Action|Crime|Drama +4489,3.625,Coming to America (1988),Comedy|Romance +4490,3.0,"Couch Trip, The (1988)",Comedy +4491,2.0,Criminal Law (1988),Thriller +4492,2.625,Critters (1986),Comedy|Sci-Fi +4493,4.0,Critters 2: The Main Course (1988),Comedy|Horror|Sci-Fi +4495,2.875,Crossing Delancey (1988),Comedy|Romance +4496,3.0,D.O.A. (1988),Film-Noir|Mystery|Thriller +4498,4.0,"Dead Pool, The (1988)",Action|Crime|Thriller +4499,3.4761904761904763,Dirty Rotten Scoundrels (1988),Comedy +4500,4.5,Drowning by Numbers (1988),Comedy|Drama +4501,3.0,"Elvira, Mistress of the Dark (1988)",Comedy|Horror +4502,1.1666666666666667,Ernest Saves Christmas (1988),Children|Comedy +4503,3.0,Everybody's All-American (1988),Romance +4506,3.375,Frantic (1988),Crime|Mystery|Thriller +4508,3.3,Gorillas in the Mist (1988),Drama +4509,3.25,"Great Outdoors, The (1988)",Comedy +4511,2.5,High Spirits (1988),Comedy +4515,3.25,Imagine: John Lennon (1988),Documentary +4516,3.5,Johnny Be Good (1988),Comedy +4518,4.75,The Lair of the White Worm (1988),Comedy|Horror +4519,3.4,"Land Before Time, The (1988)",Adventure|Animation|Children|Fantasy +4520,2.6666666666666665,License to Drive (1988),Comedy +4521,4.0,Little Nikita (1988),Drama +4522,5.0,Masquerade (1988),Mystery|Romance|Thriller +4523,3.5,Milagro Beanfield War (1988),Comedy|Drama|Fantasy +4524,4.0,Moon Over Parador (1988),Comedy +4526,2.5,My Stepmother Is an Alien (1988),Comedy|Romance|Sci-Fi +4527,3.0,"Night in the Life of Jimmy Reardon, A (1988)",Comedy|Romance +4528,2.0,Off Limits (1988),Action|Thriller|War +4529,2.5,Bagdad Cafe (Out of Rosenheim) (1987),Comedy|Drama +4531,1.25,Red Heat (1988),Action +4532,1.5,Return of the Living Dead Part II (1988),Comedy|Horror +4533,3.8,"Return of the Living Dead, The (1985)",Comedy|Horror|Sci-Fi +4534,3.75,Return to Snowy River (a.k.a. The Man From Snowy River II) (1988),Adventure|Drama|Western +4535,3.8,"Man from Snowy River, The (1982)",Drama|Romance|Western +4537,4.25,Running on Empty (1988),Drama +4538,1.0,Salome's Last Dance (1988),Comedy|Drama +4539,3.0,Salsa (1988),Musical|Romance +4541,3.0,"Serpent and the Rainbow, The (1988)",Horror +4543,3.0,Shoot to Kill (1988),Action|Adventure +4544,2.0,Short Circuit 2 (1988),Comedy|Sci-Fi +4545,3.0714285714285716,Short Circuit (1986),Comedy|Sci-Fi +4546,3.8,"Vanishing, The (Spoorloos) (1988)",Drama|Thriller +4550,2.0,Switching Channels (1988),Comedy +4552,4.125,"Tetsuo, the Ironman (Tetsuo) (1988)",Action|Horror|Sci-Fi|Thriller +4553,4.166666666666667,They Live (1988),Action|Sci-Fi|Thriller +4555,2.0,Torch Song Trilogy (1988),Comedy|Drama|Romance +4557,3.3333333333333335,Tucker: The Man and His Dream (1988),Drama +4558,2.909090909090909,Twins (1988),Comedy +4559,1.0,Vice Versa (1988),Comedy +4560,3.0,Watchers (1988),Horror|Sci-Fi +4561,4.0,Waxwork (1988),Comedy|Horror +4562,3.0,Without a Clue (1988),Comedy|Mystery +4563,2.8,Young Einstein (1988),Comedy +4564,2.6875,Always (1989),Drama|Fantasy|Romance +4565,5.0,American Ninja (1985),Action|Adventure +4566,3.5,American Ninja 2: The Confrontation (1987),Action|Adventure +4567,5.0,American Ninja 3: Blood Hunt (1989),Action|Adventure +4568,4.0,Best of the Best (1989),Action +4569,1.0,Best of the Best 2 (1993),Action +4570,4.166666666666667,"Big Picture, The (1989)",Comedy|Drama +4571,3.4625,Bill & Ted's Excellent Adventure (1989),Adventure|Comedy|Sci-Fi +4572,3.0,Black Rain (1989),Action|Crime|Drama +4573,4.0,Blaze (1989),Comedy|Drama +4577,4.0,Casualties of War (1989),Drama|War +4578,2.0,Chances Are (1989),Comedy|Romance +4584,5.0,Dream a Little Dream (1989),Comedy|Drama|Romance +4585,3.75,"Dream Team, The (1989)",Comedy +4587,2.642857142857143,Earth Girls Are Easy (1988),Comedy|Musical|Sci-Fi +4589,4.0,Eddie and the Cruisers (1983),Drama|Musical|Mystery +4590,3.5,Enemies: A Love Story (1989),Drama +4591,5.0,Erik the Viking (1989),Adventure|Comedy|Fantasy +4592,1.0,"Experts, The (1989)",Comedy +4593,2.0,Family Business (1989),Comedy +4600,4.0,Gross Anatomy (a.k.a. A Cut Above) (1989),Comedy|Drama +4602,3.0,Harlem Nights (1989),Comedy|Crime|Romance +4603,2.1666666666666665,Her Alibi (1989),Comedy|Romance +4605,1.0,How to Get Ahead in Advertising (1989),Comedy|Fantasy +4606,2.0,Immediate Family (1989),Drama +4608,4.0,"Innocent Man, An (1989)",Crime|Drama +4610,3.0,"January Man, The (1989)",Comedy|Crime|Mystery|Thriller +4612,4.75,Jesus of Montreal (Jésus de Montréal) (1989),Drama +4614,2.8333333333333335,Kickboxer (1989),Action +4615,1.0,Last Exit to Brooklyn (1989),Drama +4616,3.875,Lean on Me (1989),Drama +4617,5.0,Let It Ride (1989),Comedy +4618,2.9,Leviathan (1989),Horror|Sci-Fi|Thriller +4619,3.25,Little Monsters (1989),Comedy +4621,2.642857142857143,Look Who's Talking (1989),Comedy|Romance +4622,3.0,Loverboy (1989),Comedy +4623,3.5217391304347827,Major League (1989),Comedy +4624,2.0,Meet the Feebles (1989),Animation|Comedy|Musical +4625,2.25,Millennium (1989),Drama|Sci-Fi|Thriller +4626,5.0,Miracle Mile (1989),Drama|Romance|Sci-Fi +4627,2.6666666666666665,Miss Firecracker (1989),Comedy +4628,3.625,New York Stories (1989),Comedy|Drama +4629,2.0,Next of Kin (1989),Action|Crime|Thriller +4630,3.0,No Holds Barred (1989),Action +4632,5.0,"Package, The (1989)",Action|Thriller +4634,3.0,Penn & Teller Get Killed (1989),Adventure|Comedy +4636,2.0,"Punisher, The (1989)",Action +4638,2.4838709677419355,Jurassic Park III (2001),Action|Adventure|Sci-Fi|Thriller +4639,2.607142857142857,America's Sweethearts (2001),Comedy|Romance +4640,2.5,Brother (2000),Action|Crime|Thriller +4641,3.6666666666666665,Ghost World (2001),Comedy|Drama +4642,4.0,Hedwig and the Angry Inch (2000),Comedy|Drama|Musical +4643,2.875,Planet of the Apes (2001),Action|Adventure|Drama|Sci-Fi +4644,3.5,Bread and Tulips (Pane e tulipani) (2000),Comedy|Drama|Romance +4645,4.5,Cure (1997),Crime|Horror|Thriller +4649,2.75,Wet Hot American Summer (2001),Comedy +4652,2.5,"Return of Swamp Thing, The (1989)",Comedy|Horror|Sci-Fi +4654,1.75,Road House (1989),Action|Drama +4655,3.0,Romero (1989),Drama +4658,3.8,Santa Sangre (1989),Drama|Horror|Mystery|Thriller +4659,4.0,Scandal (1989),Drama +4660,4.0,Scenes from the Class Struggle in Beverly Hills (1989),Comedy +4661,3.9,Sea of Love (1989),Crime|Drama|Thriller +4662,3.5,"See No Evil, Hear No Evil (1989)",Comedy|Crime +4663,4.0,She's Out of Control (1989),Comedy +4664,3.625,Shirley Valentine (1989),Comedy|Romance +4666,1.25,Skin Deep (1989),Comedy +4667,2.0,Slaves of New York (1989),Drama +4670,3.25,"Stepfather, The (1987)",Horror|Thriller +4673,2.75,Tango & Cash (1989),Action|Comedy|Crime|Thriller +4674,1.0,Tap (1989),Drama +4675,2.0,Three Fugitives (1989),Action|Comedy +4676,2.8333333333333335,Troop Beverly Hills (1989),Comedy +4677,2.75,Turner & Hooch (1989),Comedy|Crime +4678,3.5625,UHF (1989),Comedy +4679,3.3,Uncle Buck (1989),Comedy +4680,2.0,Vampire's Kiss (1989),Comedy|Fantasy|Horror +4681,3.611111111111111,"War of the Roses, The (1989)",Comedy|Drama +4682,3.6666666666666665,Warlock (1989),Action|Horror +4684,0.5,Worth Winning (1989),Comedy +4686,1.75,Weekend at Bernie's II (1993),Adventure|Comedy +4687,1.0,Billy Liar (1963),Comedy +4688,4.0,Black Robe (1991),Adventure|Drama +4690,2.25,"Cotton Club, The (1984)",Crime|Musical +4691,2.5,Def-Con 4 (1985),Action|Sci-Fi +4692,3.0,"Hotel New Hampshire, The (1984)",Drama +4696,4.75,"Zorro, the Gay Blade (1981)",Comedy +4697,3.375,Basket Case (1982),Comedy|Horror +4698,4.0,Orphans (1997),Comedy|Drama +4699,3.5,Original Sin (2001),Drama|Romance|Thriller +4700,3.138888888888889,"Princess Diaries, The (2001)",Children|Comedy|Romance +4701,3.1538461538461537,Rush Hour 2 (2001),Action|Comedy +4703,3.5,Chocolat (1988),Drama +4704,3.5,Hatari! (1962),Adventure|Comedy +4705,3.75,"Cage aux Folles, La (1978)",Comedy +4706,4.0,"Cage aux Folles II, La (1980)",Comedy +4709,3.5,Paint Your Wagon (1969),Comedy|Musical|Western +4710,3.5,"Shootist, The (1976)",Drama|Western +4711,5.0,Theremin: An Electronic Odyssey (1993),Documentary +4713,3.2,Altered States (1980),Drama|Sci-Fi +4714,2.0,Any Which Way You Can (1980),Comedy +4716,1.0,Bad Timing: A Sensual Obsession (1980),Drama +4717,5.0,"Battle Creek Brawl (Big Brawl, The) (1980)",Action|Comedy +4718,2.871794871794872,American Pie 2 (2001),Comedy +4719,2.75,Osmosis Jones (2001),Action|Animation|Comedy|Crime|Drama|Romance|Thriller +4720,3.489795918367347,"Others, The (2001)",Drama|Horror|Mystery|Thriller +4721,2.5,American Outlaws (2001),Action|Comedy|Western +4722,4.333333333333333,All Over the Guy (2001),Comedy +4723,3.9,"Deep End, The (2001)",Drama +4724,5.0,On the Edge (2001),Drama +4725,4.5,Session 9 (2001),Horror|Thriller +4727,2.3333333333333335,Captain Corelli's Mandolin (2001),Drama|Romance|War +4728,2.9375,Rat Race (2001),Comedy +4731,5.0,Innocence (2000),Drama +4732,2.6666666666666665,Bubble Boy (2001),Comedy +4733,4.0,"Curse of the Jade Scorpion, The (2001)",Comedy +4734,3.2419354838709675,Jay and Silent Bob Strike Back (2001),Adventure|Comedy +4735,2.0,Ghosts of Mars (2001),Horror|Sci-Fi|Thriller +4736,1.0,Summer Catch (2001),Comedy|Drama|Romance +4737,2.75,"American Rhapsody, An (2001)",Drama +4738,4.0,Happy Accidents (2000),Romance|Sci-Fi +4740,2.0,Maybe Baby (2000),Comedy|Romance +4741,4.5,Together (Tillsammans) (2000),Comedy|Drama|Romance +4743,3.75,Tortilla Soup (2001),Comedy|Romance +4744,2.1,Jeepers Creepers (2001),Horror +4745,1.5,O (2001),Drama +4748,1.5,3 Ninjas (1992),Action|Children|Comedy +4749,1.75,3 Ninjas Kick Back (1994),Action|Children|Comedy +4750,1.5,3 Ninjas Knuckle Up (1995),Action|Children +4751,4.0,"Hunter, The (1980)",Action|Thriller +4752,3.75,Maniac (1980),Horror +4753,0.5,Vamp (1986),Comedy|Horror +4754,4.0,"Wicker Man, The (1973)",Drama|Horror|Mystery|Thriller +4755,5.0,Wish Upon a Star (1996),Comedy +4756,1.8333333333333333,"Musketeer, The (2001)",Action|Adventure|Drama|Romance +4757,2.357142857142857,Rock Star (2001),Comedy|Drama|Musical +4761,3.5,Diamond Men (2001),Drama +4765,3.5,L.I.E. (2001),Drama +4766,4.0,"Our Lady of the Assassins (Virgen de los sicarios, La) (2000)",Crime|Drama|Romance +4767,3.0,Abbott and Costello Meet the Mummy (1955),Comedy|Horror +4768,2.75,"Dr. Mabuse: The Gambler (Dr. Mabuse, der Spieler) (1922)",Crime|Mystery|Thriller +4769,3.0,Into the Arms of Strangers: Stories of the Kindertransport (2000),Documentary +4770,3.0,"Glass House, The (2001)",Thriller +4771,4.0,Hardball (2001),Drama +4772,3.875,Dinner Rush (2000),Drama +4774,3.25,Big Trouble (2002),Comedy|Crime +4775,1.0,Glitter (2001),Drama|Musical|Romance +4776,3.310810810810811,Training Day (2001),Crime|Drama|Thriller +4782,2.5,Sidewalks of New York (2001),Comedy|Romance +4783,4.666666666666667,"Endurance: Shackleton's Legendary Antarctic Expedition, The (2000)",Documentary +4784,2.375,"French Lieutenant's Woman, The (1981)",Drama +4787,3.7857142857142856,Little Man Tate (1991),Drama +4789,5.0,Phantom of the Paradise (1974),Comedy|Fantasy|Horror|Musical|Thriller +4792,2.75,13 Ghosts (1960),Horror +4795,3.5,Father Goose (1964),Adventure|Comedy|Romance|War +4796,5.0,"Grass Is Greener, The (1960)",Comedy|Romance +4798,3.5,Indiscreet (1958),Comedy|Romance +4799,3.7857142857142856,"It's a Mad, Mad, Mad, Mad World (1963)",Action|Adventure|Comedy|Crime +4800,3.75,King Solomon's Mines (1937),Action|Adventure|Drama|Romance|Thriller +4801,4.5,"Little Foxes, The (1941)",Drama +4802,4.083333333333333,Operation Petticoat (1959),Action|Comedy|Romance|War +4803,3.0833333333333335,Play Misty for Me (1971),Drama|Thriller +4804,3.0,Pocketful of Miracles (1961),Comedy|Drama +4806,3.75,"Shop on Main Street, The (Obchod na korze) (1965)",Drama +4809,3.8,Silkwood (1983),Drama +4810,4.0,I Never Promised You a Rose Garden (1977),Drama +4811,4.0,Quadrophenia (1979),Drama|Musical +4812,3.0,SpaceCamp (1986),Adventure|Sci-Fi +4814,3.272727272727273,Don't Say a Word (2001),Thriller +4815,3.5,Hearts in Atlantis (2001),Drama +4816,3.2282608695652173,Zoolander (2001),Comedy +4818,2.0,Extreme Days (2001),Action|Adventure|Comedy|Drama +4821,4.333333333333333,Joy Ride (2001),Adventure|Thriller +4822,5.0,Max Keeble's Big Move (2001),Children|Comedy +4823,3.210526315789474,Serendipity (2001),Comedy|Romance +4826,3.5,"Big Red One, The (1980)",Action|Adventure|Drama|War +4830,3.5,Brubaker (1980),Crime|Drama +4831,3.0,Can't Stop the Music (1980),Comedy|Musical +4832,3.0,Carny (1980),Drama +4833,4.0,"Changeling, The (1980)",Horror|Mystery|Thriller +4834,2.5,Cheech & Chong's Next Movie (1980),Comedy +4835,3.1875,Coal Miner's Daughter (1980),Drama +4836,3.0,"Competition, The (1980)",Drama|Romance +4837,2.25,Cruising (1980),Crime|Drama|Thriller +4840,2.0,"Last Metro, The (Dernier métro, Le) (1980)",Drama|Romance +4842,4.0,"Dogs of War, The (1980)",Drama|War +4844,3.0357142857142856,Bandits (2001),Comedy|Crime|Romance +4846,3.75,Iron Monkey (Siu nin Wong Fei-hung ji: Tit Ma Lau) (1993),Action|Comedy +4848,3.7051282051282053,Mulholland Drive (2001),Crime|Drama|Film-Noir|Mystery|Thriller +4849,3.0,My First Mister (2001),Comedy|Drama +4851,4.0,Things Behind the Sun (2001),Drama +4854,2.0,Clambake (1967),Musical +4855,3.4782608695652173,Dirty Harry (1971),Action|Crime|Thriller +4857,3.5,Fiddler on the Roof (1971),Drama|Musical +4859,1.0,Kansas (1988),Crime|Drama +4861,4.5,Mission to Mir (1997),Documentary|IMAX +4862,3.0,Not Without My Daughter (1991),Drama +4863,4.0,Female Trouble (1975),Comedy|Crime +4865,3.425,From Hell (2001),Crime|Horror|Mystery|Thriller +4866,2.8,"Last Castle, The (2001)",Action +4867,3.7,Riding in Cars with Boys (2001),Comedy|Drama +4873,4.090909090909091,Waking Life (2001),Animation|Drama|Fantasy +4874,3.2083333333333335,K-PAX (2001),Drama|Fantasy|Mystery|Sci-Fi +4875,1.0,On the Line (2001),Comedy|Romance +4876,1.125,Thirteen Ghosts (a.k.a. Thir13en Ghosts) (2001),Horror|Thriller +4878,4.026881720430108,Donnie Darko (2001),Drama|Mystery|Sci-Fi|Thriller +4880,3.8125,Life as a House (2001),Drama +4881,3.65,"Man Who Wasn't There, The (2001)",Crime|Drama +4885,2.25,Domestic Disturbance (2001),Thriller +4886,3.8846153846153846,"Monsters, Inc. (2001)",Adventure|Animation|Children|Comedy|Fantasy +4887,3.0,"One, The (2001)",Action|Sci-Fi|Thriller +4888,3.625,Tape (2001),Drama +4889,3.642857142857143,Heist (2001),Crime|Drama +4890,2.760869565217391,Shallow Hal (2001),Comedy|Fantasy|Romance +4893,3.0,When a Stranger Calls (1979),Horror|Thriller +4895,2.5,"Wash, The (2001)",Comedy +4896,3.657142857142857,Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone) (2001),Adventure|Children|Fantasy +4897,3.0,"Fluffer, The (2001)",Drama|Romance +4898,3.125,Novocaine (2001),Comedy|Crime|Mystery|Thriller +4899,3.25,Black Knight (2001),Adventure|Comedy|Fantasy +4901,3.519230769230769,Spy Game (2001),Action|Crime|Drama|Thriller +4902,3.0,"Devil's Backbone, The (Espinazo del diablo, El) (2001)",Drama|Fantasy|Horror|Thriller|War +4903,4.1,In the Bedroom (2001),Drama +4911,3.0,Jabberwocky (1977),Adventure|Comedy|Fantasy +4912,3.5,Funny Girl (1968),Drama|Musical|Romance +4914,4.15,Breathless (À bout de souffle) (1960),Crime|Drama|Romance +4915,3.0,"Beastmaster, The (1982)",Action|Adventure|Fantasy +4920,4.25,"Now, Voyager (1942)",Drama|Romance +4921,3.1666666666666665,Little Women (1933),Drama|Romance +4923,4.0,Guadalcanal Diary (1943),Action|War +4925,2.0,"Cheap Detective, The (1978)",Comedy +4927,4.5,"Last Wave, The (1977)",Fantasy|Mystery|Thriller +4928,4.0,That Obscure Object of Desire (Cet obscur objet du désir) (1977),Drama +4929,2.7,"Toy, The (1982)",Comedy +4930,5.0,Funeral in Berlin (1966),Action|Drama|Thriller +4932,3.125,Dressed to Kill (1980),Mystery|Thriller +4933,3.0,"Earthling, The (1980)",Adventure|Drama +4936,3.5,Fame (1980),Drama|Musical +4941,3.0714285714285716,Flash Gordon (1980),Action|Adventure|Sci-Fi +4945,5.0,"Enforcer, The (1976)",Crime +4947,3.25,"Gauntlet, The (1977)",Action +4948,1.5,I Bury the Living (1958),Horror +4949,2.0,Invasion U.S.A. (1985),Action|Thriller +4951,2.642857142857143,Lord of the Flies (1990),Adventure|Drama|Thriller +4952,2.5,Morons From Outer Space (1985),Comedy|Sci-Fi +4954,2.8,Ocean's Eleven (a.k.a. Ocean's 11) (1960),Comedy|Crime +4956,3.0,"Stunt Man, The (1980)",Action|Adventure|Comedy|Drama|Romance|Thriller +4957,4.0,Sudden Impact (1983),Crime|Thriller +4958,2.9583333333333335,Behind Enemy Lines (2001),Action|Drama|War +4960,4.0,"Independent, The (2000)",Comedy +4961,3.0,Pornstar: The Legend of Ron Jeremy (2001),Documentary +4963,3.8807692307692307,Ocean's Eleven (2001),Crime|Thriller +4964,4.5,Baran (2001),Adventure|Drama|Romance +4965,3.9,"Business of Strangers, The (2001)",Action|Drama|Thriller +4967,3.9444444444444446,No Man's Land (2001),Drama|War +4968,2.75,Piñero (2001),Drama +4969,3.6,And Then There Were None (1945),Crime|Mystery +4970,3.7222222222222223,"Blue Angel, The (Blaue Engel, Der) (1930)",Drama +4971,3.5,Moscow on the Hudson (1984),Comedy|Drama +4972,3.25,"Owl and the Pussycat, The (1970)",Comedy +4973,4.096,"Amelie (Fabuleux destin d'Amélie Poulain, Le) (2001)",Comedy|Romance +4974,2.923076923076923,Not Another Teen Movie (2001),Comedy +4975,3.0135135135135136,Vanilla Sky (2001),Mystery|Romance|Sci-Fi|Thriller +4976,3.0,Iris (2001),Drama +4977,3.3333333333333335,Kandahar (Safar e Ghandehar) (2001),Drama +4978,3.6,Lantana (2001),Drama|Mystery|Thriller +4979,3.753623188405797,"Royal Tenenbaums, The (2001)",Comedy|Drama +4980,3.1,Bill & Ted's Bogus Journey (1991),Adventure|Comedy|Fantasy|Sci-Fi +4981,4.25,Clockwise (1986),Comedy +4984,1.0,Morgan! (1966),Comedy|Drama|Fantasy +4987,3.0,Spacehunter: Adventures in the Forbidden Zone (1983),Action|Adventure|Sci-Fi +4988,3.0,White Water Summer (1987),Adventure +4989,2.5,How High (2001),Comedy +4990,3.3333333333333335,Jimmy Neutron: Boy Genius (2001),Adventure|Animation|Children|Comedy +4992,2.8,Kate & Leopold (2001),Comedy|Romance +4993,4.1825,"Lord of the Rings: The Fellowship of the Ring, The (2001)",Adventure|Fantasy +4994,3.55,"Majestic, The (2001)",Comedy|Drama|Romance +4995,3.9517543859649122,"Beautiful Mind, A (2001)",Drama|Romance +4996,2.5,Little Otik (Otesánek) (2000),Comedy|Drama|Fantasy +4998,3.0,"Defiant Ones, The (1958)",Adventure|Crime|Drama|Thriller +4999,4.0,Dodsworth (1936),Drama|Romance +5000,3.5,Medium Cool (1969),Drama|Romance +5001,3.5,Sahara (1943),Action|Drama|War +5002,2.75,Fritz the Cat (1972),Animation +5003,3.0,"Nine Lives of Fritz the Cat, The (1974)",Animation +5004,3.0,"Party, The (1968)",Comedy +5008,3.6875,Witness for the Prosecution (1957),Drama|Mystery|Thriller +5009,3.0833333333333335,Ali (2001),Drama +5010,3.7244897959183674,Black Hawk Down (2001),Action|Drama|War +5012,1.5,Yentl (1983),Drama|Musical|Romance +5013,3.3620689655172415,Gosford Park (2001),Comedy|Drama|Mystery +5014,3.4285714285714284,I Am Sam (2001),Drama +5015,3.2777777777777777,Monster's Ball (2001),Drama|Romance +5016,2.25,"Shipping News, The (2001)",Drama +5017,4.666666666666667,"Big Heat, The (1953)",Drama|Film-Noir +5018,3.0,Motorama (1991),Adventure|Comedy|Crime|Drama|Fantasy|Mystery|Sci-Fi|Thriller +5021,3.4,Murder by Death (1976),Comedy|Crime|Mystery|Thriller +5022,4.0,"Servant, The (1963)",Drama +5023,4.0,"Waterdance, The (1992)",Drama +5025,2.75,Orange County (2002),Comedy +5026,2.9,"Brotherhood of the Wolf (Pacte des loups, Le) (2001)",Action|Mystery|Thriller +5027,2.75,Another 48 Hrs. (1990),Action|Comedy|Crime|Drama|Thriller +5028,4.5,What Time Is It There? (Ni neibian jidian) (2001),Drama +5033,2.0,"Russia House, The (1990)",Drama|Thriller +5034,3.5,"Truly, Madly, Deeply (1991)",Drama|Romance +5038,4.0,"Flight of Dragons, The (1982)",Adventure|Animation|Children|Drama|Fantasy +5039,2.0,Dragonslayer (1981),Action|Adventure|Fantasy +5040,3.5,Conan the Destroyer (1984),Action|Adventure|Fantasy +5041,3.0,Fire and Ice (1983),Animation|Fantasy +5042,1.0,Forbidden Zone (1980),Musical|Sci-Fi +5043,3.0,"Formula, The (1980)",Thriller +5046,3.5,Impostor (2002),Action|Drama|Sci-Fi|Thriller +5047,2.0,Kung Pow: Enter the Fist (2002),Action|Comedy +5048,2.3,Snow Dogs (2002),Adventure|Children|Comedy +5049,3.46875,48 Hrs. (1982),Action|Comedy|Crime|Drama +5051,3.25,Italian for Beginners (Italiensk for begyndere) (2000),Comedy|Drama|Romance +5053,3.25,Blankman (1994),Comedy +5054,3.6666666666666665,Brainstorm (1983),Sci-Fi|Thriller +5055,3.25,Dragon: The Bruce Lee Story (1993),Action|Drama +5056,4.0,"Enigma of Kaspar Hauser, The (a.k.a. Mystery of Kaspar Hauser, The) (Jeder für sich und Gott Gegen Alle) (1974)",Crime|Drama +5057,2.0,4 for Texas (1963),Comedy|Western +5059,4.5,Little Dieter Needs to Fly (1997),Documentary +5060,3.7457627118644066,M*A*S*H (a.k.a. MASH) (1970),Comedy|Drama|War +5061,1.6666666666666667,Mrs. Soffel (1984),Drama|Romance +5062,5.0,Seconds (1966),Mystery|Sci-Fi|Thriller +5063,2.0,One-Eyed Jacks (1961),Western +5064,3.8260869565217392,The Count of Monte Cristo (2002),Action|Adventure|Drama|Thriller +5065,2.5714285714285716,"Mothman Prophecies, The (2002)",Drama|Fantasy|Horror|Mystery|Thriller +5066,3.1,"Walk to Remember, A (2002)",Drama|Romance +5069,3.75,Escaflowne: The Movie (Escaflowne) (2000),Action|Adventure|Animation|Drama|Fantasy +5071,5.0,Maelström (2000),Drama|Romance +5072,2.3333333333333335,Metropolis (2001),Animation|Sci-Fi +5073,3.5,"Son's Room, The (Stanza del figlio, La) (2001)",Drama +5074,3.5,Storytelling (2001),Comedy|Drama +5075,4.0,Waydowntown (2000),Comedy +5076,3.5,"Adventures of Huck Finn, The (1993)",Adventure|Children|Comedy|Drama +5079,3.0,Young at Heart (1954),Drama|Musical|Romance +5080,2.75,Slackers (2002),Comedy +5081,3.25,Birthday Girl (2001),Drama|Romance +5083,4.0,Rare Birds (2001),Comedy|Drama +5085,3.1666666666666665,Carmen Jones (1954),Drama|Musical +5087,3.0,Get Out Your Handkerchiefs (Préparez vos mouchoirs) (1978),Comedy|Drama|Romance +5088,4.5,"Going Places (Valseuses, Les) (1974)",Comedy|Crime|Drama +5092,3.0,Big Fat Liar (2002),Children|Comedy +5093,2.1666666666666665,Collateral Damage (2002),Action|Thriller +5094,1.0,Rollerball (2002),Action|Sci-Fi +5095,3.6666666666666665,"Scotland, Pa. (2001)",Comedy|Crime +5096,3.0,Baby's Day Out (1994),Comedy +5097,3.75,Bright Eyes (1934),Comedy|Drama +5098,3.0,Dimples (1936),Musical +5099,3.6666666666666665,Heidi (1937),Children|Drama +5101,5.0,Richard Pryor Here and Now (1983),Comedy|Documentary +5102,4.0,Rookie of the Year (1993),Comedy|Fantasy +5103,3.880952380952381,"Sandlot, The (1993)",Children|Comedy|Drama +5105,3.75,Don't Look Now (1973),Drama|Horror|Thriller +5106,2.25,Crossroads (2002),Comedy|Musical|Romance +5107,3.5,Hart's War (2002),Drama|War +5108,3.9,John Q (2002),Crime|Drama|Thriller +5109,3.5,Return to Never Land (2002),Adventure|Animation|Children +5110,3.1818181818181817,Super Troopers (2001),Comedy|Crime|Mystery +5111,3.0,"Good Son, The (1993)",Drama|Thriller +5114,4.6,"Bad and the Beautiful, The (1952)",Drama +5117,0.5,Funny Lady (1975),Comedy|Musical +5119,4.0,Saturday Night and Sunday Morning (1960),Drama +5120,3.3333333333333335,Sleuth (1972),Comedy|Mystery|Thriller +5121,4.5,Stroszek (1977),Comedy|Drama +5122,4.0,Summer of '42 (1971),Drama +5125,2.0,Used Cars (1980),Comedy +5127,2.6666666666666665,Dragonfly (2002),Drama|Fantasy|Mystery|Romance|Thriller +5128,2.3333333333333335,Queen of the Damned (2002),Fantasy|Horror +5134,3.5,Mean Machine (2001),Comedy|Drama +5135,3.625,Monsoon Wedding (2001),Comedy|Romance +5137,4.5,Scratch (2001),Documentary +5139,3.5,"Bad News Bears, The (1976)",Comedy +5141,3.0,"Bad News Bears in Breaking Training, The (1977)",Comedy +5142,4.0,"Firemen's Ball, The (Horí, má panenko) (1967)",Comedy|Drama +5146,3.6363636363636362,Vampire Hunter D: Bloodlust (Banpaia hantâ D) (2000),Animation|Fantasy|Horror|Sci-Fi +5147,4.125,Wild Strawberries (Smultronstället) (1957),Drama +5151,2.8846153846153846,40 Days and 40 Nights (2002),Comedy|Romance +5152,3.75,We Were Soldiers (2002),Action|Drama|War +5153,3.0,Trouble Every Day (2001),Drama|Horror|Thriller +5159,3.6,Ferngully: The Last Rainforest (1992),Animation|Children|Comedy|Musical +5161,4.0,Intersection (1994),Drama|Romance +5164,4.0,"Troll in Central Park, A (1994)",Animation|Children +5165,3.6666666666666665,Zombie (a.k.a. Zombie 2: The Dead Are Among Us) (Zombi 2) (1979),Horror +5167,4.0,My Favorite Brunette (1947),Comedy|Mystery +5168,4.0,Royal Wedding (1951),Comedy|Musical|Romance +5170,2.8333333333333335,All About the Benjamins (2002),Action|Comedy|Crime +5171,2.1666666666666665,"Time Machine, The (2002)",Action|Adventure|Sci-Fi +5172,2.5,Full Frontal (2002),Comedy|Drama|Romance +5177,4.0,"Magnificent Ambersons, The (1942)",Drama|Romance +5179,3.0,Gloria (1980),Drama|Thriller +5180,3.0,"Great Rock 'n' Roll Swindle, The (1980)",Documentary +5182,3.5,Hawk the Slayer (1980),Action|Fantasy +5186,2.5,Honeysuckle Rose (a.k.a. On the Road Again) (1980),Drama|Romance +5187,4.0,Hopscotch (1980),Comedy +5193,3.6666666666666665,"Jazz Singer, The (1980)",Musical +5198,4.0,"Long Good Friday, The (1980)",Drama|Thriller +5199,3.0,"Long Riders, The (1980)",Western +5202,2.0,Mon oncle d'Amérique (1980),Drama +5203,4.0,The Monster Club (1981),Comedy|Horror +5205,3.5,Motel Hell (1980),Comedy|Horror +5208,4.0,"Ninth Configuration, The (a.k.a. Twinkle, Twinkle, Killer Kane) (1980)",Drama|War +5210,3.5,"Burial Ground (a.k.a. Zombie Horror) (a.k.a. Zombie 3) (Notti del Terrore, Le) (1981)",Horror +5214,3.75,"Oh, God! (1977)",Comedy|Fantasy +5218,3.3968253968253967,Ice Age (2002),Adventure|Animation|Children|Comedy +5219,3.0,Resident Evil (2002),Action|Horror|Sci-Fi|Thriller +5220,2.6,Showtime (2002),Action|Comedy +5222,3.5833333333333335,Kissing Jessica Stein (2001),Comedy|Romance +5223,1.0,Pauline & Paulette (Pauline en Paulette) (2001),Comedy|Drama +5224,1.0,Promises (2001),Documentary +5225,3.980769230769231,And Your Mother Too (Y tu mamá también) (2001),Drama|Romance +5226,3.5,All the Right Moves (1983),Drama|Romance +5227,1.0,Barabbas (1961),Adventure|Drama +5229,5.0,I Think I Do (1997),Comedy +5230,4.0,"Paleface, The (1948)",Comedy|Western +5231,4.0,Road to Morocco (1942),Comedy +5232,4.0,Road to Singapore (1940),Comedy|Musical +5233,4.0,Road to Utopia (1946),Comedy +5234,4.0,Road to Zanzibar (1941),Comedy +5236,1.0,"Tale of Springtime, A (Conte de Printemps) (1990)",Drama|Romance +5237,2.75,Taps (1981),Drama +5238,4.75,Return of the Secaucus 7 (1980),Drama +5241,1.5,Seems Like Old Times (1980),Comedy|Romance +5242,1.5,Serial (1980),Comedy +5243,4.0,"Young Master, The (Shi di chu ma) (1980)",Action|Comedy +5244,5.0,Shogun Assassin (1980),Action|Adventure +5246,1.5,Smokey and the Bandit II (1980),Action|Comedy +5247,2.5,Smokey and the Bandit (1977),Action|Comedy +5248,1.25,Smokey and the Bandit III (1983),Action|Comedy +5250,3.5,Stir Crazy (1980),Comedy +5254,2.840909090909091,Blade II (2002),Action|Horror|Thriller +5255,2.375,Sorority Boys (2002),Comedy +5256,2.0,Stolen Summer (2002),Drama +5258,4.0,George Washington (2000),Drama +5264,5.0,Clockstoppers (2002),Action|Adventure|Sci-Fi|Thriller +5265,3.125,Death to Smoochy (2002),Comedy|Crime|Drama +5266,3.216666666666667,Panic Room (2002),Thriller +5267,3.375,"Rookie, The (2002)",Drama +5269,3.857142857142857,"Piano Teacher, The (La pianiste) (2001)",Drama +5271,4.0,30 Years to Life (2001),Comedy|Drama|Romance +5275,3.25,Boxcar Bertha (1972),Drama +5276,4.0,Crimes of Passion (1984),Drama|Romance|Thriller +5277,2.0,"Evil That Men Do, The (1984)",Action|Thriller +5278,0.5,Fraternity Vacation (1985),Comedy|Romance +5279,1.8333333333333333,Impromptu (1991),Comedy|Romance +5282,3.1666666666666665,High Crimes (2002),Thriller +5283,2.9545454545454546,National Lampoon's Van Wilder (2002),Comedy +5285,3.0,Lucky Break (2001),Comedy|Crime +5288,4.0,"Atomic Cafe, The (1982)",Documentary|War +5291,3.96875,Rashomon (Rashômon) (1950),Crime|Drama|Mystery +5292,3.75,Slap Shot (1977),Comedy +5293,3.2,Changing Lanes (2002),Drama|Thriller +5294,2.95,Frailty (2001),Crime|Drama|Thriller +5296,2.6875,"Sweetest Thing, The (2002)",Comedy|Romance +5297,4.0,"Cat's Meow, The (2002)",Drama|Thriller +5298,3.3333333333333335,Human Nature (2001),Comedy|Romance +5299,3.3627450980392157,My Big Fat Greek Wedding (2002),Comedy|Romance +5300,4.0,3:10 to Yuma (1957),Action|Adventure|Drama|Thriller|Western +5301,5.0,Bite the Bullet (1975),Action|Adventure|Western +5302,3.5,Breakout (1975),Action|Adventure +5303,2.85,Joe Versus the Volcano (1990),Comedy|Romance +5304,3.0,"Rome, Open City (a.k.a. Open City) (Roma, città aperta) (1945)",Drama|War +5305,3.5,Return of the Killer Tomatoes! (1988),Comedy|Horror|Sci-Fi +5307,3.0,Taking Care of Business (1990),Comedy +5308,3.0789473684210527,Three Men and a Baby (1987),Comedy +5309,2.8125,Three Men and a Little Lady (1990),Comedy|Romance +5312,3.375,Murder by Numbers (2002),Crime|Thriller +5313,2.0454545454545454,The Scorpion King (2002),Action|Adventure|Fantasy|Thriller +5315,3.0,Chelsea Walls (2001),Drama +5316,3.0833333333333335,Enigma (2001),Romance|Thriller +5319,4.0,Nine Queens (Nueve reinas) (2000),Crime|Thriller +5323,1.625,Jason X (2002),Horror|Sci-Fi|Thriller +5324,4.0,Life or Something Like It (2002),Comedy|Romance +5325,4.0,Dogtown and Z-Boyz (2001),Documentary +5329,3.8333333333333335,"Salton Sea, The (2002)",Crime|Drama|Thriller +5333,4.0,Bob le Flambeur (1955),Crime|Drama +5334,2.8333333333333335,Cadillac Man (1990),Comedy|Crime +5335,2.0,"Coca-Cola Kid, The (1985)",Comedy|Romance +5337,3.6666666666666665,Delirious (1991),Comedy +5339,3.3125,Husbands and Wives (1992),Comedy|Drama +5341,4.25,Lenny (1974),Drama +5342,2.0,Nomads (1986),Horror|Mystery|Thriller +5343,3.0,"Temp, The (1993)",Drama|Thriller +5344,4.0,Thief of Hearts (1984),Drama|Thriller +5346,3.8333333333333335,Wild Orchid (1990),Drama|Romance +5348,3.5,Hollywood Ending (2002),Comedy|Drama +5349,3.5223880597014925,Spider-Man (2002),Action|Adventure|Sci-Fi|Thriller +5352,1.0,The Big Sleep (1978),Thriller +5353,2.0,Butterflies Are Free (1972),Comedy|Drama +5354,3.25,Cactus Flower (1969),Comedy +5356,0.5,"Giant Spider Invasion, The (1975)",Horror|Sci-Fi +5357,3.5,Iron Will (1994),Adventure +5359,3.0,Rambling Rose (1991),Drama +5360,2.5,"Survivors, The (1983)",Comedy +5361,3.5,White Fang (1991),Adventure +5363,1.0,"New Guy, The (2002)",Comedy +5364,3.4166666666666665,Unfaithful (2002),Drama|Thriller +5365,3.5,"Lady and the Duke, The (Anglaise et le duc, L') (2001)",Drama|Romance +5366,1.0,Whore (1991),Drama +5367,4.166666666666667,My Beautiful Laundrette (1985),Drama|Romance +5372,3.5,Calamity Jane (1953),Musical|Western +5373,3.5,"Cranes Are Flying, The (Letyat zhuravli) (1957)",Drama|Romance|War +5375,3.75,"Harvey Girls, The (1946)",Comedy|Musical|Western +5377,3.644230769230769,About a Boy (2002),Comedy|Drama|Romance +5378,3.1036585365853657,Star Wars: Episode II - Attack of the Clones (2002),Action|Adventure|Sci-Fi|IMAX +5379,4.25,"Believer, The (2001)",Drama +5380,4.0,"Importance of Being Earnest, The (2002)",Comedy|Drama|Romance +5382,3.6,Every Which Way But Loose (1978),Comedy +5383,4.0,"Hound of the Baskervilles, The (1959)",Crime|Horror|Mystery +5384,4.0,I Want to Live! (1958),Crime|Drama +5385,3.75,"Last Waltz, The (1978)",Documentary +5387,3.3,Enough (2002),Drama|Thriller +5388,3.326923076923077,Insomnia (2002),Action|Crime|Drama|Mystery|Thriller +5389,3.1666666666666665,Spirit: Stallion of the Cimarron (2002),Adventure|Animation|Children|Western +5391,4.0,Thirteen Conversations About One Thing (a.k.a. 13 Conversations) (2001),Drama +5395,1.0,"Gambler, The (1974)",Drama +5398,4.25,Requiem for a Heavyweight (1962),Drama +5400,3.088235294117647,"Sum of All Fears, The (2002)",Drama|Thriller +5401,3.4444444444444446,Undercover Brother (2002),Comedy +5404,3.5,84 Charing Cross Road (1987),Drama|Romance +5410,1.5,Silent Running (1972),Drama|Sci-Fi +5413,0.5,Zombie Holocaust (a.k.a. Doctor Butcher M.D.) (Zombi Holocaust) (1980),Horror +5414,3.75,Bad Company (2002),Action|Comedy|Crime +5415,3.4166666666666665,Divine Secrets of the Ya-Ya Sisterhood (2002),Comedy|Drama +5416,1.5,Cherish (2002),Comedy|Drama|Thriller +5417,3.0,"Fast Runner, The (Atanarjuat) (2001)",Drama|Fantasy +5418,3.88,"Bourne Identity, The (2002)",Action|Mystery|Thriller +5419,2.125,Scooby-Doo (2002),Adventure|Children|Comedy|Fantasy|Mystery +5420,2.6666666666666665,Windtalkers (2002),Action|Drama|War +5421,3.5,"Dangerous Lives of Altar Boys, The (2002)",Drama +5422,4.5,"Emperor's New Clothes, The (2001)",Comedy +5425,2.0,Dark Blue World (Tmavomodrý svet) (2001),Drama|War +5427,5.0,Caveman (1981),Comedy +5428,3.0,Cheech & Chong's The Corsican Brothers (1984),Comedy +5433,2.75,Silver Bullet (Stephen King's Silver Bullet) (1985),Adventure|Drama|Horror|Mystery|Thriller +5434,3.5,"Sorry, Wrong Number (1948)",Drama|Film-Noir|Thriller +5438,2.8333333333333335,Men at Work (1990),Action|Comedy +5440,4.5,She Wore a Yellow Ribbon (1949),Western +5443,2.0,Juwanna Mann (2002),Comedy +5444,3.880952380952381,Lilo & Stitch (2002),Adventure|Animation|Children|Sci-Fi +5445,3.6869565217391305,Minority Report (2002),Action|Crime|Mystery|Sci-Fi|Thriller +5446,4.25,Rabbit-Proof Fence (2002),Adventure|Drama +5447,3.1666666666666665,Sunshine State (2002),Drama +5448,2.5,Hey Arnold! The Movie (2002),Adventure|Animation|Children|Comedy +5449,2.736842105263158,Mr. Deeds (2002),Comedy|Romance +5450,2.5,Lovely & Amazing (2001),Comedy|Drama|Romance +5452,1.8333333333333333,Look Who's Talking Now (1993),Children|Comedy|Romance +5458,1.0,Like Mike (2002),Children|Comedy|Fantasy +5459,3.0714285714285716,Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2) (2002),Action|Comedy|Sci-Fi +5460,3.875,"Powerpuff Girls, The (2002)",Action|Animation|Children|Comedy +5462,1.6666666666666667,"Crocodile Hunter: Collision Course, The (2002)",Adventure|Comedy +5463,2.84375,Reign of Fire (2002),Action|Adventure|Fantasy +5464,3.3947368421052633,Road to Perdition (2002),Crime|Drama +5466,1.0,My Wife is an Actress (Ma Femme est une Actrice) (2001),Comedy|Drama|Romance +5470,3.4,The Importance of Being Earnest (1952),Comedy|Romance +5471,3.0,Perfect (1985),Drama|Romance +5473,5.0,Fox and His Friends (Faustrecht der Freiheit) (1975),Drama +5475,4.5,Z (1969),Drama|Mystery|Thriller +5477,3.25,Sex and Lucia (Lucía y el sexo) (2001),Drama|Romance +5478,2.5,Eight Legged Freaks (2002),Action|Comedy|Horror|Sci-Fi +5479,3.0714285714285716,K-19: The Widowmaker (2002),Action|Adventure|Drama|Thriller +5480,3.1,Stuart Little 2 (2002),Children|Comedy +5481,2.911111111111111,Austin Powers in Goldmember (2002),Comedy +5483,3.6,"Kid Stays in the Picture, The (2002)",Documentary +5489,3.4166666666666665,Nosferatu the Vampyre (Nosferatu: Phantom der Nacht) (1979),Horror +5490,4.25,The Big Bus (1976),Action|Comedy +5498,4.75,Red Beard (Akahige) (1965),Drama +5500,3.9583333333333335,Top Secret! (1984),Comedy +5501,3.0,"Master of Disguise, The (2002)",Comedy|Mystery +5502,3.1666666666666665,Signs (2002),Horror|Sci-Fi|Thriller +5503,1.0,"Last Kiss, The (Ultimo bacio, L') (2001)",Comedy|Drama|Romance +5504,1.8125,Spy Kids 2: The Island of Lost Dreams (2002),Adventure|Children +5505,3.5833333333333335,"Good Girl, The (2002)",Comedy|Drama +5506,3.375,Blood Work (2002),Crime|Drama|Mystery|Thriller +5507,2.4782608695652173,xXx (2002),Action|Crime|Thriller +5508,3.3,24 Hour Party People (2002),Comedy|Drama|Musical +5515,3.5,Songs From the Second Floor (Sånger från andra våningen) (2000),Drama +5516,1.0,Read My Lips (Sur mes lèvres) (2001),Crime|Drama|Thriller +5517,1.0,Nightcap (Merci pour le chocolat) (2000),Crime|Thriller +5518,4.5,Beau Pere (a.k.a. Stepfather) (Beau-père) (1981),Drama +5521,0.5,"Principal, The (1987)",Action|Crime|Drama +5522,4.125,Rollerball (1975),Action|Drama|Sci-Fi +5523,1.8,"Adventures of Pluto Nash, The (2002)",Action|Adventure|Comedy|Sci-Fi +5524,3.0,Blue Crush (2002),Adventure|Drama|Romance +5525,4.0,Mostly Martha (Bella Martha) (2001),Comedy|Drama|Romance +5527,2.6666666666666665,Possession (2002),Drama|Romance +5528,3.1842105263157894,One Hour Photo (2002),Drama|Thriller +5530,2.5,Simone (S1m0ne) (2002),Comedy|Drama|Fantasy|Sci-Fi +5531,2.5,Undisputed (2002),Drama +5534,4.0,Hush! (2001),Drama +5535,1.0,How I Killed My Father (a.k.a. My Father and I) (Comment j'ai tué mon Père) (2001),Drama +5538,3.0,"Care Bears Movie, The (1985)",Animation|Children|Fantasy +5539,3.0,Care Bears Movie II: A New Generation (1986),Animation|Children +5540,3.75,Clash of the Titans (1981),Action|Adventure|Fantasy|Romance +5541,2.9545454545454546,Hot Shots! (1991),Action|Comedy|Romance|War +5544,3.5,Time After Time (1979),Sci-Fi|Thriller +5548,3.5,Down and Out in Beverly Hills (1986),Comedy +5553,2.5,Stakeout (1987),Comedy|Crime|Romance|Thriller +5556,1.0,FearDotCom (a.k.a. Fear.com) (a.k.a. Fear Dot Com) (2002),Crime|Horror|Thriller +5558,2.5,Love and a Bullet (2002),Action|Crime +5560,4.5,À nous la liberté (Freedom for Us) (1931),Comedy|Musical +5561,4.0,True Colors (1991),Drama +5562,2.0,Snipes (2001),Drama|Thriller +5564,2.0,Swimfan (2002),Thriller +5568,3.1666666666666665,Johnny Dangerously (1984),Comedy +5569,3.0,"Last House on the Left, The (1972)",Crime|Horror|Thriller +5570,3.0,Thesis (Tesis) (1996),Drama|Horror|Thriller +5572,2.6666666666666665,Barbershop (2002),Comedy +5573,2.5,Stealing Harvard (2002),Comedy|Crime +5574,3.088235294117647,"Transporter, The (2002)",Action|Crime +5575,1.0,Alias Betty (Betty Fisher et autres histoires) (2001),Crime|Drama +5577,3.2916666666666665,Igby Goes Down (2002),Comedy|Drama +5581,2.5,Betsy's Wedding (1990),Comedy +5582,2.0,Captain Ron (1992),Adventure|Comedy +5585,1.0,Ernest Scared Stupid (1991),Comedy +5588,2.5,"Hills Have Eyes, The (1977)",Horror +5597,2.5,Suburban Commando (1991),Comedy|Sci-Fi +5599,3.5,Tabu: A Story of the South Seas (1931),Drama|Romance +5600,2.5,"Wanderers, The (1979)",Drama +5601,3.0,"Yearling, The (1946)",Children|Drama +5602,3.875,"Ladykillers, The (1955)",Comedy|Crime +5603,4.166666666666667,"Lavender Hill Mob, The (1951)",Comedy|Crime +5604,4.0,"Man in the White Suit, The (1951)",Comedy|Sci-Fi +5605,4.0,Ratcatcher (1999),Drama +5607,4.5,"Son of the Bride (Hijo de la novia, El) (2001)",Comedy|Drama +5608,4.083333333333333,"Das Experiment (Experiment, The) (2001)",Drama|Thriller +5609,2.3333333333333335,Ballistic: Ecks vs. Sever (2002),Action|Thriller +5611,3.3333333333333335,"Four Feathers, The (2002)",Adventure|War +5612,4.0,Trapped (2002),Action|Thriller +5613,3.25,8 Women (2002),Comedy|Crime|Musical|Mystery +5615,1.5,Invincible (2001),Drama +5617,3.4,Secretary (2002),Comedy|Drama|Romance +5618,4.134920634920635,Spirited Away (Sen to Chihiro no kamikakushi) (2001),Adventure|Animation|Fantasy +5619,3.5,"Trials of Henry Kissinger, The (2002)",Documentary +5620,3.090909090909091,Sweet Home Alabama (2002),Comedy|Romance +5621,2.5,"Tuxedo, The (2002)",Action|Comedy +5622,4.5,Charly (2002),Comedy|Drama|Romance +5625,2.3333333333333335,Moonlight Mile (2002),Drama|Romance +5628,3.4,Wasabi (2001),Action|Comedy|Crime|Drama|Thriller +5629,4.0,Jonah: A VeggieTales Movie (2002),Animation|Children|Musical +5630,3.759259259259259,Red Dragon (2002),Crime|Mystery|Thriller +5632,4.0,Bloody Sunday (2002),Drama +5633,4.5,Heaven (2002),Drama +5636,3.0,Welcome to Collinwood (2002),Comedy|Crime +5637,1.5,Flirting (1991),Drama +5638,3.0,Godzilla vs. Mothra (Mosura tai Gojira) (1964),Action|Adventure|Fantasy|Sci-Fi +5641,4.0,"Moderns, The (1988)",Drama +5642,4.0,"Onion Field, The (1979)",Drama +5643,2.5,Powaqqatsi (1988),Documentary +5644,2.75,"Pride of the Yankees, The (1942)",Drama +5646,3.5,Valmont (1989),Drama|Romance +5649,3.0,Horror of Dracula (Dracula) (1958),Horror +5650,3.6,Strange Brew (1983),Comedy +5651,3.0,"Incredible Mr. Limpet, The (1964)",Animation|Comedy|War +5655,3.5,"Fan, The (1981)",Drama|Thriller +5662,4.25,"Wrong Guy, The (1997)",Comedy|Romance|Thriller +5663,3.0,Below (2002),Horror +5666,2.0833333333333335,"Rules of Attraction, The (2002)",Comedy|Drama|Romance|Thriller +5667,3.25,Tuck Everlasting (2002),Drama|Fantasy +5668,3.6,White Oleander (2002),Drama +5669,3.913793103448276,Bowling for Columbine (2002),Documentary +5670,4.125,Comedian (2002),Comedy|Documentary +5672,0.5,Pokemon 4 Ever (a.k.a. Pokémon 4: The Movie) (2002),Adventure|Animation|Children|Fantasy +5673,3.5208333333333335,Punch-Drunk Love (2002),Comedy|Drama|Romance +5675,3.0,Swept Away (2002),Comedy|Romance +5677,3.0,Abandon (2002),Drama|Thriller +5678,2.0,Formula 51 (2001),Action|Comedy|Crime|Thriller +5679,3.4270833333333335,"Ring, The (2002)",Horror|Mystery|Thriller +5680,3.7,Auto Focus (2002),Crime|Drama +5682,3.75,"Grey Zone, The (2001)",Drama +5684,2.0,Naqoyqatsi (2002),Documentary +5685,3.5,Real Women Have Curves (2002),Comedy|Drama +5686,3.6,Russian Ark (Russkiy Kovcheg) (2002),Drama|Fantasy|War +5689,4.0,Billy Bathgate (1991),Crime|Drama +5690,4.0,Grave of the Fireflies (Hotaru no haka) (1988),Animation|Drama|War +5691,2.5,Jason Goes to Hell: The Final Friday (1993),Action|Horror +5693,3.1363636363636362,Saturday Night Fever (1977),Comedy|Drama|Romance +5694,2.25,Staying Alive (1983),Comedy|Drama|Musical +5696,4.0,Urban Cowboy (1980),Drama +5699,4.0,Tom Horn (1980),Western +5700,0.75,The Pumaman (1980),Action|Adventure|Fantasy|Sci-Fi +5703,3.0,Wholly Moses (1980),Comedy +5705,3.25,Xanadu (1980),Fantasy|Musical|Romance +5707,3.1,Absence of Malice (1981),Drama|Romance +5710,2.5,Banana Joe (1981),Comedy +5712,3.5,Blow Out (1981),Mystery|Thriller +5715,2.5,"Burning, The (1981)",Horror +5718,3.0,Carbon Copy (1981),Comedy +5723,4.0,Continental Divide (1981),Comedy|Romance +5729,2.5,Endless Love (1981),Drama|Romance +5732,4.5,Eye of the Needle (1981),Thriller +5734,2.5,Faces of Death 2 (1981),Documentary|Horror +5735,3.0,Faces of Death (1978),Documentary|Horror +5736,2.5,Faces of Death 3 (1985),Documentary|Horror +5737,2.0,Faces of Death 4 (1990),Documentary|Horror +5742,4.0,First Monday in October (1981),Comedy|Drama +5745,4.0,"Four Seasons, The (1981)",Comedy|Drama +5746,4.5,Galaxy of Terror (Quest) (1981),Action|Horror|Mystery|Sci-Fi +5747,3.7142857142857144,Gallipoli (1981),Drama|War +5752,2.8333333333333335,Gregory's Girl (1981),Comedy|Romance +5754,2.0,"Hand, The (1981)",Drama|Horror +5765,5.0,"Looney, Looney, Looney Bugs Bunny Movie, The (1981)",Animation|Children|Comedy +5768,3.5,Modern Problems (1981),Comedy|Fantasy +5772,4.5,My Dinner with André (1981),Drama +5773,3.0,Neighbors (1981),Comedy +5777,4.0,Pennies from Heaven (1981),Musical|Romance +5778,2.5,Pieces (Mil gritos tiene la noche) (One Thousand Cries Has the Night) (1982),Horror|Mystery|Thriller +5779,2.0,Piranha II: The Spawning (1981),Horror|Sci-Fi +5780,3.625,Polyester (1981),Comedy +5782,4.068181818181818,"Professional, The (Le professionnel) (1981)",Action|Drama|Thriller +5784,2.4,Ghost Ship (2002),Horror +5785,3.3181818181818183,Jackass: The Movie (2002),Action|Comedy|Documentary +5787,2.0,"Truth About Charlie, The (2002)",Mystery|Thriller +5788,1.0,All or Nothing (2002),Drama +5791,3.9615384615384617,Frida (2002),Drama|Romance +5792,2.7,Roger Dodger (2002),Comedy|Drama +5795,3.5,"Big Knife, The (1955)",Film-Noir +5796,3.25,Casino Royale (1967),Action|Adventure|Comedy +5799,4.25,Exodus (1960),Drama|Romance|War +5801,4.166666666666667,"Russians Are Coming, the Russians Are Coming, The (1966)",Comedy|War +5803,2.0,I Spy (2002),Action|Adventure|Comedy|Crime +5808,2.0,"Weight of Water, The (2000)",Thriller +5809,2.75,Femme Fatale (2002),Crime|Thriller +5810,3.25,8 Mile (2002),Drama +5812,4.166666666666667,Far from Heaven (2002),Drama|Romance +5815,1.0,Half Past Dead (2002),Action|Crime|Thriller +5816,3.6604938271604937,Harry Potter and the Chamber of Secrets (2002),Adventure|Fantasy +5818,4.0,"Crime of Father Amaro, The (Crimen del padre Amaro, El) (2002)",Drama|Romance +5819,3.5,Interview with the Assassin (2002),Drama +5820,3.8333333333333335,Standing in the Shadows of Motown (2002),Documentary|Musical +5825,4.0,"Life and Death of Colonel Blimp, The (1943)",Drama|Romance|War +5826,4.0,Rio Grande (1950),Romance|Western +5828,5.0,Blackrock (1997),Drama|Thriller +5829,3.0,Men with Brooms (2002),Comedy|Drama|Romance +5830,3.5,Mysterious Island (1961),Adventure|Sci-Fi +5832,0.75,Left Behind II: Tribulation Force (2002),Drama +5833,3.0,Dog Soldiers (2002),Action|Horror +5834,3.0,Fingers (1978),Drama +5836,4.0,Houseboat (1958),Comedy|Romance +5839,4.0,My Father's Glory (La gloire de mon père) (1990),Adventure|Drama +5840,4.0,"My Mother's Castle (Château de ma mère, Le) (1990)",Comedy|Drama +5841,2.0,Return to the Blue Lagoon (1991),Adventure|Romance +5843,4.0,Toy Soldiers (1991),Action|Drama +5846,4.0,Raggedy Man (1981),Drama +5847,3.0,Ragtime (1981),Drama +5850,0.5,Road Games (a.k.a. Roadgames) (1981),Thriller +5853,3.1666666666666665,Scanners (1981),Horror|Sci-Fi|Thriller +5854,4.0,Sharky's Machine (1981),Crime|Drama|Romance +5857,1.0,So Fine (1981),Comedy +5859,2.5,Southern Comfort (1981),Drama|Thriller|War +5864,0.5,"Tarzan, the Ape Man (1981)",Adventure +5866,5.0,They All Laughed (1981),Comedy +5867,3.5,Thief (1981),Crime|Drama|Thriller +5868,4.0,This Is Elvis (1981),Documentary|Drama|Musical +5869,4.0,True Confessions (1981),Crime|Drama +5872,3.096774193548387,Die Another Day (2002),Action|Adventure|Thriller +5873,3.5,The Emperor's Club (2002),Drama +5874,1.75,Friday After Next (2002),Comedy +5875,2.0,Personal Velocity (2002),Drama +5876,3.95,"Quiet American, The (2002)",Drama|Thriller|War +5878,3.90625,Talk to Her (Hable con Ella) (2002),Drama|Romance +5879,2.0,Eight Crazy Nights (Adam Sandler's Eight Crazy Nights) (2002),Animation|Comedy|Musical +5880,0.75,Extreme Ops (2002),Action|Adventure|Crime|Thriller +5881,2.4375,Solaris (2002),Drama|Romance|Sci-Fi +5882,3.0,Treasure Planet (2002),Adventure|Animation|Children|Sci-Fi|IMAX +5883,2.0,They (2002),Horror|Thriller +5888,4.5,Brother (Brat) (1997),Crime|Drama +5891,3.0,I Spit on Your Grave (Day of the Woman) (1978),Horror|Thriller +5893,3.6666666666666665,"Last Seduction, The (1994)",Crime|Drama|Thriller +5899,4.0,Zulu (1964),Action|Drama|War +5900,2.388888888888889,Analyze That (2002),Comedy|Crime +5901,2.5,Empire (2002),Crime|Drama +5902,3.7738095238095237,Adaptation (2002),Comedy|Drama|Romance +5903,3.7285714285714286,Equilibrium (2002),Action|Sci-Fi|Thriller +5909,2.5,Visitor Q (Bizita Q) (2001),Comedy|Drama|Horror +5910,1.0,"Bolero (Uns et les autres, Les) (1981)",Drama|War +5913,3.0,Warning for the Joensson Gang (Varning för Jönssonligan) (1981),Comedy|Crime +5914,4.25,"Vernon, Florida (1981)",Documentary +5915,4.25,Victory (a.k.a. Escape to Victory) (1981),Action|Drama|War +5917,1.5,Zoot Suit (1981),Drama|Musical +5918,3.0,Alone in the Dark (1982),Horror +5923,2.75,Author! Author! (1982),Comedy|Drama +5926,3.0,Best Friends (1982),Comedy|Drama|Romance +5927,2.5,"Best Little Whorehouse in Texas, The (1982)",Comedy|Drama|Musical|Romance +5932,3.8333333333333335,Burden of Dreams (1982),Documentary +5933,4.0,Cannery Row (1982),Drama +5936,3.0,"Come Back to the Five and Dime, Jimmy Dean, Jimmy Dean (1982)",Drama +5938,2.25,Deathtrap (1982),Comedy|Crime|Mystery|Thriller +5940,3.4,Eating Raoul (1982),Comedy +5941,2.0,Drumline (2002),Comedy|Drama|Musical|Romance +5942,2.5,"Hot Chick, The (2002)",Comedy +5943,2.533333333333333,Maid in Manhattan (2002),Comedy|Romance +5944,2.95,Star Trek: Nemesis (2002),Action|Drama|Sci-Fi|Thriller +5945,3.25,About Schmidt (2002),Comedy|Drama +5947,3.75,Evelyn (2002),Drama +5949,3.8333333333333335,Intact (Intacto) (2001),Thriller +5952,4.0611702127659575,"Lord of the Rings: The Two Towers, The (2002)",Adventure|Fantasy +5954,3.574074074074074,25th Hour (2002),Crime|Drama +5955,3.625,Antwone Fisher (2002),Drama +5956,3.6714285714285713,Gangs of New York (2002),Crime|Drama +5957,2.566666666666667,Two Weeks Notice (2002),Comedy|Romance +5958,2.0,"Wild Thornberrys Movie, The (2002)",Animation|Children|Comedy +5959,3.375,Narc (2002),Crime|Drama|Thriller +5960,5.0,Bad Influence (1990),Drama|Thriller +5961,3.5,Blue Steel (1990),Action|Thriller +5962,1.75,Body of Evidence (1993),Drama|Thriller +5963,3.5,"Children's Hour, The (1961)",Drama +5965,3.0,"Duellists, The (1977)",Action|War +5966,2.5,"Kiss Before Dying, A (1956)",Film-Noir|Mystery +5968,3.5,Miami Blues (1990),Comedy|Crime|Drama +5969,2.0,My Girl 2 (1994),Comedy|Drama|Romance +5970,3.6,My Girl (1991),Comedy|Drama|Romance +5971,4.230769230769231,My Neighbor Totoro (Tonari no Totoro) (1988),Animation|Children|Drama|Fantasy +5980,3.5,Black Christmas (1974),Horror|Mystery|Thriller +5981,4.0,"Day of the Triffids, The (1962)",Horror|Sci-Fi +5985,3.0,Asoka (Ashoka the Great) (2001),Action|Drama|Romance +5986,3.25,Fat City (1972),Drama +5989,3.9696969696969697,Catch Me If You Can (2002),Crime|Drama +5991,3.6470588235294117,Chicago (2002),Comedy|Crime|Drama|Musical +5992,3.8333333333333335,"Hours, The (2002)",Drama|Romance +5993,3.0,Max (2002),Drama +5994,3.5,Nicholas Nickleby (2002),Drama|Romance +5995,4.131147540983607,"Pianist, The (2002)",Drama|War +6000,3.0,"House on the Edge of the Park, The (Casa sperduta nel parco, La) (1980)",Horror|Thriller +6001,4.0,"King of Comedy, The (1983)",Comedy|Drama +6003,3.625,Confessions of a Dangerous Mind (2002),Comedy|Crime|Drama|Thriller +6005,4.25,Blue Collar Comedy Tour: The Movie (2003),Comedy|Documentary +6006,1.0,Just Married (2003),Comedy|Romance +6008,3.5,"Son, The (Le fils) (2002)",Drama +6012,1.0,"Guy Thing, A (2003)",Comedy|Romance +6013,1.375,Kangaroo Jack (2003),Action|Comedy +6014,1.0,National Security (2003),Action|Comedy +6016,4.297101449275362,City of God (Cidade de Deus) (2002),Action|Adventure|Crime|Drama|Thriller +6021,4.5,"American Friend, The (Amerikanische Freund, Der) (1977)",Crime|Drama|Mystery|Thriller +6022,4.0,American Me (1992),Drama +6025,3.5,CB4 - The Movie (1993),Comedy +6027,3.3333333333333335,Dogfight (1991),Drama|Romance +6031,3.25,Imitation of Life (1959),Drama|Romance +6032,4.25,"Little Romance, A (1979)",Comedy|Romance +6033,5.0,Mystery Date (1991),Comedy +6035,4.5,Pépé le Moko (1937),Crime|Drama|Romance +6037,3.0,Summer Lovers (1982),Comedy|Drama|Romance +6039,3.5,"Woman in Red, The (1984)",Comedy|Romance +6040,1.6666666666666667,Darkness Falls (2003),Horror|Thriller +6042,4.0,Blind Spot: Hitler's Secretary (Im toten Winkel - Hitlers Sekretärin) (2002),Documentary +6047,3.5,Dead Reckoning (1947),Drama|Film-Noir|Mystery +6051,3.5,"Harder They Come, The (1973)",Action|Crime|Drama +6056,4.0,Chaos (2001),Comedy|Crime|Drama +6057,1.8333333333333333,Biker Boyz (2003),Action|Crime|Drama +6058,2.4444444444444446,Final Destination 2 (2003),Horror|Thriller +6059,3.0714285714285716,"Recruit, The (2003)",Action|Thriller +6060,2.75,"Guru, The (2002)",Comedy|Romance +6062,3.8,Lost in La Mancha (2002),Documentary +6063,4.25,May (2002),Drama|Horror +6064,3.5,"Harder They Fall, The (1956)",Drama|Film-Noir +6073,4.0,Victim (1961),Crime|Drama +6077,4.5,Evil Under the Sun (1982),Crime|Drama|Mystery +6078,3.25,Firefox (1982),Action|Sci-Fi|Thriller +6084,3.0,Honkytonk Man (1982),Comedy|Drama +6091,3.5,Labyrinth of Passion (Laberinto de Pasiones) (1982),Comedy +6092,2.0,"Last American Virgin, The (1982)",Comedy|Drama +6093,4.125,"Last Unicorn, The (1982)",Animation|Children|Fantasy +6095,2.75,Dragon Lord (a.k.a. Dragon Strike) (Long Xiao Ye) (1982),Action +6096,3.0,Making Love (1982),Drama +6100,2.5,"Midsummer Night's Sex Comedy, A (1982)",Comedy|Romance +6101,4.0,Missing (1982),Drama|Mystery|Thriller +6103,2.0,Monsignor (1982),Drama|War +6104,3.95,Monty Python Live at the Hollywood Bowl (1982),Comedy +6105,3.0,Moonlighting (1982),Drama +6107,5.0,"Night of the Shooting Stars (Notte di San Lorenzo, La) (1982)",Drama|War +6109,0.5,One from the Heart (1982),Drama|Romance +6114,3.5,Permanent Vacation (1982),Drama +6115,2.8333333333333335,Personal Best (1982),Drama +6116,4.5,"Pirate Movie, The (1982)",Adventure|Comedy|Musical +6121,4.5,Querelle (1982),Drama +6122,4.5,Richard Pryor Live on the Sunset Strip (1982),Comedy|Documentary +6123,4.0,Sunless (Sans Soleil) (1983),Documentary +6124,3.0,Savannah Smiles (1982),Comedy +6125,4.0,"Secret Policeman's Other Ball, The (1982)",Comedy|Documentary|Musical +6126,4.0,"Veronika Voss (Sehnsucht der Veronika Voss, Die) (1982)",Drama +6127,2.25,Shoot the Moon (1982),Drama +6132,3.5,"New York Ripper, The (Squartatore di New York, Lo) (1982)",Crime|Horror|Mystery|Thriller +6133,4.5,"State of Things, The (Stand der Dinge, Der) (1982)",Drama +6140,3.5,Tenebre (1982),Horror|Mystery|Thriller +6143,2.0,Trail of the Pink Panther (1982),Comedy|Crime +6148,3.0,White Dog (1982),Drama|Horror|Thriller +6154,1.0,Deliver Us from Eva (2003),Comedy|Romance +6155,3.1333333333333333,How to Lose a Guy in 10 Days (2003),Comedy|Romance +6156,3.2,Shanghai Knights (2003),Action|Adventure|Comedy +6157,2.482142857142857,Daredevil (2003),Action|Crime +6159,1.5,All the Real Girls (2003),Drama|Romance +6162,2.0,Gerry (2002),Adventure|Drama +6163,5.0,He Loves Me... He Loves Me Not (À la folie... pas du tout) (2002),Romance|Thriller +6166,4.0,Dennis the Menace (1993),Comedy +6170,3.4,"Black Stallion, The (1979)",Adventure|Children|Drama +6178,3.5,"Patch of Blue, A (1965)",Drama|Romance +6180,2.0,Q & A (1990),Crime|Drama +6182,4.0,"Thrill of It All, The (1963)",Comedy +6183,3.5,Pillow Talk (1959),Comedy|Musical|Romance +6184,4.1,"Man Who Fell to Earth, The (1976)",Drama|Sci-Fi +6185,2.0,Dark Blue (2003),Action|Crime|Drama|Thriller +6186,2.0,Gods and Generals (2003),Action|Drama|War +6187,4.333333333333333,"Life of David Gale, The (2003)",Crime|Drama|Thriller +6188,3.5,Old School (2003),Comedy +6195,4.0,Stone Reader (2002),Documentary +6197,3.5,Spider (2002),Drama|Mystery +6198,3.5,American Heart (1992),Crime|Drama +6201,3.5,Lady Jane (1986),Drama|Romance +6203,2.0,Life Stinks (1991),Comedy +6204,2.5,"Meteor Man, The (1993)",Comedy +6207,4.0,"Slaughter Rule, The (2002)",Drama +6211,4.25,Ten (2002),Drama +6212,2.642857142857143,Bringing Down the House (2003),Comedy +6213,3.2857142857142856,Tears of the Sun (2003),Action|Drama|Thriller +6214,3.9166666666666665,Irreversible (Irréversible) (2002),Crime|Drama|Mystery|Thriller +6215,3.8333333333333335,Laurel Canyon (2002),Drama +6216,3.7,Nowhere in Africa (Nirgendwo in Afrika) (2001),Drama +6218,3.3902439024390243,Bend It Like Beckham (2002),Comedy|Drama|Romance +6219,2.75,"Hunted, The (2003)",Action|Drama|Thriller +6223,2.8333333333333335,Spun (2001),Comedy|Crime|Drama +6225,3.0,King of Kings (1961),Drama +6227,2.5,Loving You (1957),Drama|Musical +6228,3.25,"Talk of the Town, The (1942)",Comedy|Romance|Thriller +6230,3.5,Bang the Drum Slowly (1973),Drama +6231,3.5,"Benny Goodman Story, The (1955)",Drama|Musical +6232,3.8333333333333335,Born Free (1966),Adventure|Children|Drama +6233,2.75,Born Yesterday (1993),Comedy|Romance +6234,3.0,Equus (1977),Drama|Mystery +6235,4.0,Europa Europa (Hitlerjunge Salomon) (1990),Drama|War +6237,3.6666666666666665,"Glenn Miller Story, The (1953)",Drama +6238,2.8333333333333335,Green Card (1990),Comedy|Drama|Romance +6239,3.0,Journey to the Center of the Earth (1959),Adventure|Children|Sci-Fi +6240,3.0,One Good Cop (1991),Action|Crime|Drama +6242,3.3461538461538463,Ringu (Ring) (1998),Horror|Mystery|Thriller +6243,3.0,Ringu 2 (Ring 2) (1999),Horror|Mystery +6244,4.25,Salaam Bombay! (1988),Drama +6245,3.25,Sweet Charity (1969),Comedy|Drama|Musical|Romance +6247,4.0,Women in Love (1969),Drama|Romance +6249,2.0,Boat Trip (2003),Comedy +6250,2.3333333333333335,Dreamcatcher (2003),Drama|Horror|Sci-Fi|Thriller +6252,1.875,View from the Top (2003),Comedy|Romance +6254,4.1,"Awful Truth, The (1937)",Comedy|Romance +6256,3.5,"House with Laughing Windows, The (Casa dalle finestre che ridono, La) (1976)",Horror|Mystery|Thriller +6257,1.5,I Am Curious (Yellow) (Jag är nyfiken - en film i gult) (1967),Drama +6260,3.25,"Robe, The (1953)",Drama +6261,4.0,Wind (1992),Action|Romance +6263,2.9,Basic (2003),Drama|Thriller|War +6264,2.5,"Core, The (2003)",Action|Drama|Sci-Fi|Thriller +6265,3.0,Head of State (2003),Comedy +6266,4.5,What a Girl Wants (2003),Comedy|Drama|Romance +6268,3.0,Raising Victor Vargas (2002),Comedy|Drama|Romance +6269,4.142857142857143,Stevie (2002),Documentary +6271,4.166666666666667,Day for Night (La Nuit Américaine) (1973),Comedy|Drama|Romance +6273,4.833333333333333,In a Lonely Place (1950),Drama|Film-Noir|Mystery|Romance +6276,3.0,Wake of the Red Witch (1948),Action|Adventure|Drama +6279,4.0,"Good Thief, The (2002)",Crime|Drama +6281,3.4107142857142856,Phone Booth (2002),Drama|Thriller +6283,3.6875,Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira) (2001),Action|Animation|Sci-Fi|Thriller +6284,0.5,DysFunktional Family (2003),Comedy|Documentary +6286,4.125,"Man Without a Past, The (Mies vailla menneisyyttä) (2002)",Comedy|Crime|Drama +6287,2.347826086956522,Anger Management (2003),Comedy +6290,2.75,House of 1000 Corpses (2003),Horror +6291,3.3,Lilya 4-Ever (Lilja 4-ever) (2002),Crime|Drama +6294,2.875,Bulletproof Monk (2003),Action|Adventure|Sci-Fi +6295,4.0,Chasing Papi (a.k.a. Papi Chulo) (2003),Comedy +6296,3.5238095238095237,"Mighty Wind, A (2003)",Comedy|Musical +6297,3.1875,Holes (2003),Adventure|Children|Comedy|Mystery +6298,0.5,Malibu's Most Wanted (2003),Comedy|Crime +6299,3.6666666666666665,"Winged Migration (Peuple migrateur, Le) (2001)",Documentary +6300,2.0,Flickering Lights (Blinkende lygter) (2000),Action|Comedy|Crime +6301,3.0,Straw Dogs (1971),Drama|Thriller +6302,1.0,Beginning of the End (1957),Sci-Fi +6303,3.3333333333333335,"Andromeda Strain, The (1971)",Mystery|Sci-Fi +6305,3.25,Fahrenheit 451 (1966),Drama|Sci-Fi +6306,4.0,I Am Trying to Break Your Heart (2002),Documentary +6308,2.75,Legal Eagles (1986),Comedy|Crime|Romance +6314,2.25,Undercover Blues (1993),Comedy|Crime +6315,1.75,Wildcats (1986),Comedy +6316,3.2,"Wiz, The (1978)",Adventure|Children|Comedy|Fantasy|Musical +6318,2.5,"Marrying Man, The (Too Hot to Handle) (1991)",Comedy|Romance +6322,2.8333333333333335,Confidence (2003),Crime|Thriller +6323,3.608695652173913,Identity (2003),Crime|Horror|Mystery|Thriller +6327,4.0,"Decade Under the Influence, A (2003)",Documentary +6329,2.0,Manic (2001),Drama +6331,3.875,Spellbound (2002),Documentary +6332,5.0,"Lizzie McGuire Movie, The (2003)",Children|Comedy|Romance +6333,3.617283950617284,X2: X-Men United (2003),Action|Adventure|Sci-Fi|Thriller +6335,1.5,"Dancer Upstairs, The (2002)",Crime|Drama|Thriller +6337,3.8333333333333335,Owning Mahowny (2003),Crime|Drama|Thriller +6338,2.25,Daddy Day Care (2003),Children|Comedy +6339,4.0,"Man on the Train (Homme du train, L') (2002)",Comedy|Drama +6341,3.5,"Shape of Things, The (2003)",Drama +6342,5.0,"Trip, The (2002)",Comedy|Drama|Romance +6344,3.5,101 Reykjavik (101 Reykjavík) (2000),Comedy|Drama|Romance +6345,3.2,"Chorus Line, A (1985)",Comedy|Drama|Musical +6348,2.0,Breakin' 2: Electric Boogaloo (1984),Musical +6349,2.0,Breakin' (1984),Drama|Musical +6350,4.068181818181818,Laputa: Castle in the Sky (Tenkû no shiro Rapyuta) (1986),Action|Adventure|Animation|Children|Fantasy|Sci-Fi +6355,3.75,"Girls, Les (1957)",Musical +6356,3.5,Gunfight at the O.K. Corral (1957),Western +6357,3.1666666666666665,High Society (1956),Comedy|Musical|Romance +6358,3.8333333333333335,Kiss Me Kate (1953),Comedy|Musical|Romance +6365,3.268292682926829,"Matrix Reloaded, The (2003)",Action|Adventure|Sci-Fi|Thriller|IMAX +6367,2.888888888888889,Down with Love (2003),Comedy|Romance +6368,4.5,Cinemania (2002),Documentary +6369,5.0,Friends and Family (2001),Comedy +6370,3.8333333333333335,"Spanish Apartment, The (L'auberge espagnole) (2002)",Comedy|Drama|Romance +6373,3.1,Bruce Almighty (2003),Comedy|Drama|Fantasy|Romance +6375,4.75,Gigantic (A Tale of Two Johns) (2002),Documentary +6377,3.80327868852459,Finding Nemo (2003),Adventure|Animation|Children|Comedy +6378,3.5272727272727273,"Italian Job, The (2003)",Action|Crime +6379,2.75,Wrong Turn (2003),Horror|Thriller +6380,4.045454545454546,Capturing the Friedmans (2003),Documentary +6383,1.9166666666666667,"2 Fast 2 Furious (Fast and the Furious 2, The) (2003)",Action|Crime|Thriller +6384,3.5,Love the Hard Way (2001),Crime|Drama|Romance +6385,3.7045454545454546,Whale Rider (2002),Drama +6386,3.5,Nevada Smith (1966),Western +6387,4.0,Once a Thief (Zong heng si hai) (1991),Action|Comedy|Crime|Thriller +6390,3.75,Silk Stockings (1957),Musical +6395,2.6666666666666665,"Crazies, The (a.k.a. Code Name: Trixie) (1973)",Action|Drama|Horror|Sci-Fi|Thriller +6400,3.25,Murder on a Sunday Morning (Un coupable idéal) (2001),Documentary +6404,3.5,"White Sheik, The (Sceicco bianco, Lo) (1952)",Comedy|Romance +6405,4.5,Treasure Island (1950),Adventure|Children +6408,3.0,Animals are Beautiful People (1974),Comedy|Documentary +6410,3.0,Car Wash (1976),Comedy +6412,3.75,Destry Rides Again (1939),Comedy|Western +6413,3.5,"Electric Horseman, The (1979)",Comedy|Western +6414,3.5,Gay Purr-ee (1962),Animation|Children|Musical +6415,1.5,Intervista (1987),Comedy|Drama +6416,3.5,King Rat (1965),Drama|War +6419,4.5,Mr. & Mrs. Bridge (1990),Drama +6422,3.3333333333333335,Shenandoah (1965),Drama|War|Western +6423,3.75,Straight Talk (1992),Comedy +6424,1.25,Oscar (1991),Comedy|Crime|Mystery|Romance +6425,1.0,"6th Man, The (Sixth Man, The) (1997)",Comedy +6426,4.0,"Far Country, The (1954)",Western +6427,4.0,"Railway Children, The (1970)",Children|Drama +6428,2.7,Two Mules for Sister Sara (1970),Comedy|War|Western +6429,3.5,Winchester '73 (1950),Western +6431,3.0,Battle Cry (1955),Drama|War +6432,3.5,"Courtship of Eddie's Father, The (1963)",Comedy +6433,3.8333333333333335,"Man with the Movie Camera, The (Chelovek s kino-apparatom) (1929)",Documentary +6436,3.5833333333333335,This Boy's Life (1993),Drama +6440,3.9347826086956523,Barton Fink (1991),Drama|Thriller +6442,3.5,Belle époque (1992),Comedy|Romance +6446,3.5,"Comancheros, The (1961)",Action|Adventure|Drama|Romance +6447,4.5,Duel at Diablo (1966),War +6448,3.3333333333333335,"Flight of the Phoenix, The (1965)",Action|Adventure|Drama +6449,4.0,From the Terrace (1960),Drama +6450,2.8333333333333335,"Heaven Knows, Mr. Allison (1957)",Drama|War +6452,3.9,"Long, Hot Summer, The (1958)",Drama +6454,3.5,Music Box (1989),Drama +6458,3.0,"Blue Max, The (1966)",Adventure|Drama|War +6460,4.0,"Trial, The (Procès, Le) (1962)",Drama +6461,4.4,"Unforgiven, The (1960)",Drama|Western +6464,2.25,Good Burger (1997),Children|Comedy +6465,4.5,Jubilee (1977),Drama +6466,3.25,Mississippi Masala (1991),Drama|Romance +6467,4.0,Quai des Orfèvres (Jenny Lamour) (1947),Crime|Drama +6468,2.5,"Stranger Among Us, A (1992)",Crime|Drama|Romance +6470,3.0,Chisum (1970),Western +6473,3.75,Half Moon Street (1986),Drama|Thriller +6474,2.0,"Truce, The (a.k.a. La Tregua) (1996)",Drama +6476,3.0,Shattered (1991),Mystery|Thriller +6477,3.3333333333333335,"Song of Bernadette, The (1943)",Drama +6480,3.625,Thoroughly Modern Millie (1967),Comedy|Musical +6482,1.25,Dumb and Dumberer: When Harry Met Lloyd (2003),Comedy +6484,3.5,Hollywood Homicide (2003),Action|Crime|Drama +6493,3.25,Alex and Emma (2003),Comedy|Drama|Romance +6498,2.0,Murphy's War (1971),War +6502,3.8076923076923075,28 Days Later (2002),Action|Horror|Sci-Fi +6503,2.0208333333333335,Charlie's Angels: Full Throttle (2003),Action|Adventure|Comedy|Crime|Thriller +6506,4.0,Fulltime Killer (Chuen jik sat sau) (2001),Action|Thriller +6509,4.0,Ali: Fear Eats the Soul (Angst essen Seele auf) (1974),Drama|Romance +6513,3.0,Made for Each Other (1939),Comedy|Drama|Romance +6514,0.5,Ring of Terror (1962),Horror +6516,4.0,Anastasia (1956),Drama +6518,3.0,Flight of the Intruder (1991),Action|War +6521,2.5,"Main Event, The (1979)",Comedy +6522,3.0,Man's Favorite Sport? (1964),Comedy +6525,2.8333333333333335,Nuts (1987),Drama +6527,3.5,Scaramouche (1952),Adventure|Romance +6528,3.5,Start the Revolution Without Me (1970),Comedy +6530,4.125,"Tenant, The (Locataire, Le) (1976)",Drama|Horror|Mystery|Thriller +6531,1.0,"Hour of the Pig, The (1993)",Crime|Drama|Mystery +6533,3.6,"What's Up, Doc? (1972)",Comedy +6534,2.375,Hulk (2003),Action|Adventure|Sci-Fi +6535,2.1666666666666665,"Legally Blonde 2: Red, White & Blonde (2003)",Comedy +6536,4.5,Sinbad: Legend of the Seven Seas (2003),Adventure|Animation|Children|Fantasy +6537,3.0,Terminator 3: Rise of the Machines (2003),Action|Adventure|Sci-Fi +6538,3.7,Swimming Pool (2003),Drama|Mystery|Thriller +6539,3.854609929078014,Pirates of the Caribbean: The Curse of the Black Pearl (2003),Action|Adventure|Comedy|Fantasy +6541,2.85,"League of Extraordinary Gentlemen, The (a.k.a. LXG) (2003)",Action|Fantasy|Sci-Fi +6547,1.0,Northfork (2003),Drama|Fantasy +6548,3.1818181818181817,Bad Boys II (2003),Action|Comedy|Crime|Thriller +6550,2.5,Johnny English (2003),Action|Comedy|Thriller +6552,3.85,Dirty Pretty Things (2002),Crime|Drama|Thriller +6559,4.0,Little Giants (1994),Children|Comedy +6561,3.875,"Mouse That Roared, The (1959)",Comedy|War +6562,3.5,Spencer's Mountain (1963),Comedy|Drama +6564,2.5833333333333335,Lara Croft Tomb Raider: The Cradle of Life (2003),Action|Adventure|Comedy|Romance|Thriller +6565,3.82,Seabiscuit (2003),Drama +6566,0.5,Spy Kids 3-D: Game Over (2003),Action|Adventure|Children +6568,2.75,Camp (2003),Comedy|Musical +6571,4.0,"Mondays in the Sun (Lunes al sol, Los) (2002)",Drama +6579,3.0,"One, Two, Three (1961)",Comedy +6582,3.1666666666666665,Remo Williams: The Adventure Begins (1985),Action|Comedy|Crime|Thriller +6584,2.8333333333333335,"What's Up, Tiger Lily? (1966)",Adventure|Comedy|Crime|Thriller +6585,2.0,White Lightning (1973),Action|Crime|Drama +6586,3.0,American Wedding (American Pie 3) (2003),Comedy +6587,1.0,Gigli (2003),Comedy|Crime|Romance +6591,3.8333333333333335,"Magdalene Sisters, The (2002)",Drama +6592,2.6666666666666665,"Secret Lives of Dentists, The (2002)",Drama +6593,2.4285714285714284,Freaky Friday (2003),Children|Comedy|Fantasy +6595,2.45,S.W.A.T. (2003),Action|Thriller +6596,2.875,"Divorce, Le (2003)",Comedy|Drama|Romance +6598,5.0,Step Into Liquid (2002),Documentary +6599,3.5,Accattone (1961),Drama +6600,1.0,...And God Spoke (1993),Comedy +6602,4.0,Brain Damage (1988),Comedy|Horror +6603,3.0,"Double Life, A (1947)",Crime|Drama|Film-Noir +6609,3.25,"Gospel According to St. Matthew, The (Vangelo secondo Matteo, Il) (1964)",Drama +6611,4.5,Umberto D. (1952),Drama +6612,4.1,Brother's Keeper (1992),Documentary +6613,2.25,"Day of the Dolphin, The (1973)",Drama +6615,2.1666666666666665,Freddy vs. Jason (2003),Action|Horror|Thriller +6617,3.8333333333333335,Open Range (2003),Western +6618,3.6875,Shaolin Soccer (Siu lam juk kau) (2001),Action|Comedy +6620,3.6470588235294117,American Splendor (2003),Comedy|Drama +6624,2.0,Agent Cody Banks (2003),Action|Adventure|Children|Fantasy +6628,3.0,Hot Dog... The Movie (1984),Comedy +6629,3.5,House of Wax (1953),Crime|Horror|Mystery|Thriller +6630,4.0,"Inn of the Sixth Happiness, The (1958)",Adventure|Drama +6636,3.75,"Sure Thing, The (1985)",Comedy|Romance +6638,3.125,Valley Girl (1983),Comedy|Romance +6639,4.25,Wait Until Dark (1967),Drama|Thriller +6641,3.6666666666666665,Code Unknown (Code inconnu: Récit incomplet de divers voyages) (2000),Drama +6643,4.25,Tokyo Story (Tôkyô monogatari) (1953),Drama +6644,0.5,"Green Ray, The (Rayon vert, Le) (1986)",Drama|Romance +6645,3.0,THX 1138 (1971),Action|Adventure|Drama|Sci-Fi +6646,3.3333333333333335,Valley of the Dolls (1967),Drama +6650,4.1,Kind Hearts and Coronets (1949),Comedy|Drama +6658,2.4,10 (1979),Comedy|Romance +6659,3.423076923076923,Tremors (1990),Comedy|Horror|Sci-Fi +6662,3.8333333333333335,"Pink Panther, The (1963)",Comedy|Crime +6663,3.6875,"Pink Panther Strikes Again, The (1976)",Comedy|Crime +6664,3.5,Commando (1985),Action|Adventure +6665,3.5,Dracula (1979),Horror|Romance +6666,4.111111111111111,"Discreet Charm of the Bourgeoisie, The (Charme discret de la bourgeoisie, Le) (1972)",Comedy|Drama|Fantasy +6669,4.75,Ikiru (1952),Drama +6671,0.5,"Angel at My Table, An (1990)",Drama +6676,3.0,Incident at Oglala (1992),Documentary +6678,2.3333333333333335,"Handmaid's Tale, The (1990)",Drama|Sci-Fi +6679,3.5,Revolution OS (2001),Documentary +6684,2.5,Death in Venice (Morte a Venezia) (1971),Drama|Romance +6686,2.1666666666666665,"Medallion, The (2003)",Action|Comedy|Crime|Fantasy +6690,3.5,Don't Tempt Me (Sin noticias de Dios) (2001),Comedy|Fantasy|Mystery +6695,1.5,Jeepers Creepers 2 (2003),Horror|Thriller +6703,3.5,"Order, The (2003)",Horror|Mystery|Thriller +6706,2.0,Taking Sides (2001),Drama +6707,2.5,Cabin Fever (2002),Horror|Thriller +6708,3.75,Matchstick Men (2003),Comedy|Crime|Drama +6709,3.15,Once Upon a Time in Mexico (2003),Action|Adventure|Crime|Thriller +6710,3.3333333333333335,Dummy (2002),Comedy|Drama|Romance +6711,3.8176470588235296,Lost in Translation (2003),Comedy|Drama|Romance +6713,3.8333333333333335,Millennium Actress (Sennen joyû) (2001),Animation|Drama|Romance +6718,4.0,Gotcha! (1985),Comedy +6721,3.75,Once Upon a Time in China (Wong Fei Hung) (1991),Action|Adventure|Drama +6722,3.75,Once Upon a Time in China II (Wong Fei-hung Ji Yi: Naam yi dong ji keung) (1992),Action|Romance +6723,3.5,Once Upon a Time in China III (Wong Fei-hung tsi sam: Siwong tsangba) (1993),Action +6724,3.9166666666666665,Paper Moon (1973),Comedy|Crime|Drama +6725,5.0,Sgt. Pepper's Lonely Hearts Club Band (1978),Adventure|Musical +6728,2.5,"Ugly American, The (1963)",Drama +6730,3.5,Convoy (1978),Action|Comedy|Drama +6731,3.25,Day of the Dead (1985),Horror|Sci-Fi|Thriller +6732,4.25,"Hello, Dolly! (1969)",Comedy|Musical|Romance +6735,3.25,"Rose, The (1979)",Drama +6739,2.5,At War with the Army (1950),Comedy|Musical|Romance +6743,3.6,Jungle Book (1942),Adventure|Fantasy +6744,3.25,Once Bitten (1985),Comedy|Horror +6748,3.0,"Brood, The (1979)",Horror +6751,0.5,Cold Creek Manor (2003),Drama|Thriller +6753,3.4,Secondhand Lions (2003),Children|Comedy|Drama +6754,3.1904761904761907,Underworld (2003),Action|Fantasy|Horror +6755,3.2777777777777777,Bubba Ho-tep (2002),Comedy|Horror +6757,4.0,Demonlover (2002),Crime|Drama|Mystery|Thriller +6760,3.5,In This World (2002),Adventure|Drama +6762,4.0,Yossi & Jagger (2002),Drama|Romance +6763,2.1666666666666665,Duplex (2003),Comedy|Crime +6764,3.25,"Rundown, The (2003)",Action|Adventure|Comedy +6765,3.3333333333333335,Under the Tuscan Sun (2003),Comedy|Drama|Romance +6768,3.75,Luther (2003),Drama +6769,5.0,Mambo Italiano (2003),Comedy +6770,4.25,My Life Without Me (2003),Drama|Romance +6771,1.0,Dorm Daze (National Lampoon Presents Dorm Daze) (2003),Comedy +6772,2.5,To Be and to Have (Être et avoir) (2002),Documentary +6773,3.923076923076923,"Triplets of Belleville, The (Les triplettes de Belleville) (2003)",Animation|Comedy|Fantasy +6774,3.7857142857142856,Videodrome (1983),Fantasy|Horror|Sci-Fi|Thriller +6776,4.375,Lagaan: Once Upon a Time in India (2001),Comedy|Drama|Musical|Romance +6777,3.9444444444444446,Judgment at Nuremberg (1961),Drama +6779,3.75,"Same Time, Next Year (1978)",Comedy|Drama|Romance +6780,4.25,"Brief History of Time, A (1991)",Documentary +6782,4.0,Leningrad Cowboys Go America (1989),Comedy|Musical +6783,4.0,"Rules of the Game, The (La règle du jeu) (1939)",Comedy|Drama +6785,3.2,Seven Brides for Seven Brothers (1954),Comedy|Musical|Romance|Western +6786,3.75,Kiss of the Spider Woman (1985),Drama +6787,4.125,All the President's Men (1976),Drama|Thriller +6788,2.25,Angie (1994),Comedy|Drama|Romance +6790,3.625,Avalon (2001),Drama|Fantasy|Sci-Fi +6791,3.8,Babette's Feast (Babettes gæstebud) (1987),Drama +6793,3.125,Beethoven (1992),Children|Comedy|Drama +6794,2.1666666666666665,Beethoven's 2nd (1993),Children|Comedy +6796,3.9814814814814814,Boyz N the Hood (1991),Crime|Drama +6797,2.25,Bugsy (1991),Crime|Drama +6798,3.0,Bugsy Malone (1976),Children|Comedy|Crime|Musical +6800,3.0,Cobra (1986),Action|Crime +6803,4.0,Phenomena (a.k.a. Creepers) (1985),Horror|Mystery|Thriller +6806,3.0,Time and Tide (Seunlau Ngaklau) (2000),Action|Crime|Thriller +6807,4.054054054054054,Monty Python's The Meaning of Life (1983),Comedy +6808,2.375,Where Eagles Dare (1968),Action|Adventure|War +6810,2.3333333333333335,Sleeping with the Enemy (1991),Drama|Thriller +6811,2.875,PCU (1994),Comedy +6812,2.5,"Rookie, The (1990)",Action|Comedy|Thriller +6813,2.25,"Ghost and Mr. Chicken, The (1966)",Comedy|Romance +6814,3.0,City Heat (1984),Action|Comedy +6816,4.0,Three O'Clock High (1987),Comedy +6818,4.25,Come and See (Idi i smotri) (1985),Drama|War +6820,3.0,Ginger Snaps (2000),Drama|Horror|Thriller +6822,3.0,"Ballad of Little Jo, The (1993)",Drama|Western +6826,1.0,"Shakiest Gun in the West, The (1968)",Comedy|Western +6827,2.5,It's Pat (1994),Comedy +6828,4.0,"Sunday in the Country, A (Un dimanche à la campagne) (1984)",Drama +6829,4.0,"Gun in Betty Lou's Handbag, The (1992)",Comedy|Mystery +6832,3.125,Regarding Henry (1991),Drama +6835,4.0,Alien Contamination (1980),Action|Horror|Sci-Fi +6840,3.5,"Hospital, The (1971)",Comedy|Drama +6850,3.1666666666666665,Leap of Faith (1992),Comedy|Drama +6851,3.5,"Gas, Food, Lodging (1992)",Drama|Romance +6852,4.125,In Cold Blood (1967),Crime|Drama +6856,3.5,Yankee Doodle Dandy (1942),Drama|Musical +6857,3.3636363636363638,Ninja Scroll (Jûbei ninpûchô) (1995),Action|Adventure|Animation|Fantasy +6858,3.25,Knife in the Water (Nóz w wodzie) (1962),Drama +6862,3.5,Out of Time (2003),Crime|Drama|Thriller +6863,3.5294117647058822,School of Rock (2003),Comedy|Musical +6864,3.75,"Concert for George, The (2003)",Documentary|Musical +6867,3.576923076923077,"Station Agent, The (2003)",Comedy|Drama +6868,3.8333333333333335,Wonderland (2003),Crime|Drama|Mystery|Thriller +6869,4.125,Bus 174 (Ônibus 174) (2002),Crime|Documentary +6870,3.619565217391304,Mystic River (2003),Crime|Drama|Mystery +6872,0.5,"House of the Dead, The (2003)",Action|Horror +6873,3.107142857142857,Intolerable Cruelty (2003),Comedy|Romance +6874,3.81981981981982,Kill Bill: Vol. 1 (2003),Action|Crime|Thriller +6875,1.0,Dopamine (2003),Comedy|Drama|Romance +6877,4.0,Girls Will Be Girls (2003),Comedy +6879,3.2,Runaway Jury (2003),Drama|Thriller +6880,2.6666666666666665,"Texas Chainsaw Massacre, The (2003)",Horror +6881,3.55,Pieces of April (2003),Comedy|Drama +6883,4.5,Sylvia (2003),Drama|Romance +6884,4.0,Veronica Guerin (2003),Crime|Drama|Thriller +6885,1.0,In the Cut (2003),Crime|Drama|Mystery|Romance|Thriller +6887,3.0,Radio (2003),Drama +6888,2.4166666666666665,Scary Movie 3 (2003),Comedy|Horror +6889,2.4,Brother Bear (2003),Adventure|Animation|Children +6890,3.35,Elephant (2003),Drama +6892,2.5,"Singing Detective, The (2003)",Comedy|Drama|Musical|Mystery +6893,3.357142857142857,"Italian Job, The (1969)",Action|Comedy|Crime +6896,3.5,Shoah (1985),Documentary|War +6898,4.0,Sweet Sixteen (2002),Drama +6902,3.8333333333333335,Interstate 60 (2002),Adventure|Comedy|Drama|Fantasy|Mystery|Sci-Fi|Thriller +6906,2.5,That Was Then... This Is Now (1985),Drama +6909,3.75,"Eye, The (Gin gwai) (Jian gui) (2002)",Thriller +6918,5.0,"Unvanquished, The (Aparajito) (1957)",Drama +6920,4.5,"Cercle Rouge, Le (Red Circle, The) (1970)",Crime|Thriller +6927,3.25,"Human Stain, The (2003)",Drama|Romance|Thriller +6930,3.5,Girlhood (2003),Documentary +6932,3.75,Shattered Glass (2003),Crime|Drama +6934,3.037037037037037,"Matrix Revolutions, The (2003)",Action|Adventure|Sci-Fi|Thriller|IMAX +6935,3.8333333333333335,"Revolution Will Not Be Televised, The (a.k.a. Chavez: Inside the Coup) (2003)",Documentary +6936,3.1666666666666665,Elf (2003),Children|Comedy|Fantasy +6940,4.0,In My Skin (Dans ma Peau) (2002),Drama +6942,3.581818181818182,Love Actually (2003),Comedy|Drama|Romance +6944,3.1363636363636362,Father of the Bride (1991),Comedy +6945,3.6666666666666665,My Architect: A Son's Journey (2003),Documentary +6947,3.4558823529411766,Master and Commander: The Far Side of the World (2003),Adventure|Drama|War +6950,2.5,"Missing, The (2003)",Adventure|Thriller|Western +6951,2.3333333333333335,"Cat in the Hat, The (2003)",Children|Comedy +6952,3.3333333333333335,Gothika (2003),Horror|Thriller +6953,3.316666666666667,21 Grams (2003),Crime|Drama|Mystery|Romance|Thriller +6954,4.25,"Barbarian Invasions, The (Les invasions barbares) (2003)",Comedy|Crime|Drama|Mystery|Romance +6957,3.5,Bad Santa (2003),Comedy|Crime +6958,2.5,"Haunted Mansion, The (2003)",Children|Comedy|Fantasy|Horror +6959,4.0,Timeline (2003),Action|Adventure|Sci-Fi +6961,3.25,Damage (Fatale) (1992),Drama +6963,4.0,Devil's Playground (2002),Documentary +6964,3.5,Dance with a Stranger (1985),Crime|Drama|Thriller +6966,3.5,Darkman (1990),Action|Crime|Fantasy|Sci-Fi|Thriller +6970,3.5,Desk Set (1957),Comedy|Romance +6971,4.0,Europa (Zentropa) (1991),Drama|Thriller +6974,4.1,"Freshman, The (1990)",Comedy|Crime +6975,3.8,Funny Games (1997),Drama|Horror|Thriller +6977,3.25,New Jack City (1991),Action|Crime|Drama +6978,3.3,Slacker (1991),Comedy|Drama +6979,3.621212121212121,WarGames (1983),Drama|Sci-Fi|Thriller +6981,2.5,"Ordet (Word, The) (1955)",Drama +6982,3.1666666666666665,Forbidden Games (Jeux interdits) (1952),Drama|War +6983,3.5,Jane Eyre (1944),Drama|Romance +6985,4.3,"Passion of Joan of Arc, The (Passion de Jeanne d'Arc, La) (1928)",Drama +6986,4.1,Ben-Hur: A Tale of the Christ (1925),Adventure|Drama|Romance +6987,4.0,"Cabinet of Dr. Caligari, The (Cabinet des Dr. Caligari., Das) (1920)",Crime|Fantasy|Horror +6989,3.1666666666666665,Gorky Park (1983),Crime|Drama|Thriller +6990,4.0,The Great Train Robbery (1978),Action|Adventure|Comedy|Crime|Drama +6991,3.5,"Greystoke: The Legend of Tarzan, Lord of the Apes (1984)",Adventure|Drama|Romance +6992,3.0,Guarding Tess (1994),Comedy|Drama +6993,3.8,Hannah and Her Sisters (1986),Comedy|Drama|Romance +6995,1.0,Hercules in New York (1970),Action|Comedy|Fantasy +6996,2.2,Highlander II: The Quickening (1991),Action|Sci-Fi +6997,3.0,Hoffa (1992),Crime|Drama +6999,3.5,Housesitter (1992),Comedy|Romance +7000,2.9,Hudson Hawk (1991),Action|Adventure|Comedy +7001,3.5,Invasion of the Body Snatchers (1978),Horror|Mystery|Sci-Fi|Thriller +7002,4.5,Mindwalk (1990),Drama +7003,3.0,Kafka (1991),Comedy|Drama|Mystery|Sci-Fi|Thriller +7004,2.8846153846153846,Kindergarten Cop (1990),Action|Comedy|Crime|Thriller +7005,1.5,King Ralph (1991),Comedy +7007,3.3333333333333335,"Last Boy Scout, The (1991)",Action|Comedy|Crime|Drama|Thriller +7008,2.9,Last Tango in Paris (Ultimo tango a Parigi) (1972),Drama|Romance +7009,3.0,Lorenzo's Oil (1992),Drama +7010,3.75,"Lover, The (Amant, L') (1992)",Drama|Romance +7011,3.5,"Bullfighter, The (Matador) (1986)",Comedy|Crime|Drama +7012,2.0,Mr. Destiny (1990),Comedy|Fantasy +7013,3.95,"Night of the Hunter, The (1955)",Drama|Film-Noir|Thriller +7016,1.0,Over the Top (1987),Action|Drama +7017,3.0,Passenger 57 (1992),Action|Thriller +7018,3.0,Presumed Innocent (1990),Crime|Drama|Thriller +7020,4.0,Proof (1991),Comedy|Drama|Romance +7022,3.769230769230769,Battle Royale (Batoru rowaiaru) (2000),Action|Drama|Horror|Thriller +7023,3.0,"Wedding Banquet, The (Xi yan) (1993)",Comedy|Drama|Romance +7024,4.0,"Salo, or The 120 Days of Sodom (Salò o le 120 giornate di Sodoma) (1976)",Drama +7025,4.0,"Midnight Clear, A (1992)",Drama|War +7026,2.0,Summer School (1987),Comedy +7027,3.9,Silverado (1985),Action|Western +7028,4.0,Quick Change (1990),Comedy|Crime +7029,3.0,Rabid (1977),Horror|Thriller +7034,3.7,Show Me Love (Fucking Åmål) (1998),Drama|Romance +7036,2.875,Teen Wolf (1985),Comedy|Fantasy +7038,3.6666666666666665,Things You Can Tell Just by Looking at Her (2000),Drama|Romance +7040,3.5,To Live and Die in L.A. (1985),Action|Crime|Drama|Thriller +7042,2.5,Betty Blue (37°2 le matin) (1986),Drama|Romance +7043,4.25,Vivre sa vie: Film en douze tableaux (My Life to Live) (1962),Drama +7044,3.4166666666666665,Wild at Heart (1990),Crime|Drama|Mystery|Romance|Thriller +7045,3.5,"Witches, The (1990)",Children|Fantasy +7046,2.857142857142857,"Witches of Eastwick, The (1987)",Comedy|Fantasy|Horror|Thriller +7048,4.0,Nothing to Lose (1997),Action|Adventure|Comedy|Crime +7050,3.5,Follow the Fleet (1936),Comedy|Musical|Romance +7051,4.0,"What's New, Pussycat (1965)",Comedy +7055,3.5,Swing Time (1936),Comedy|Musical|Romance +7056,3.875,"Public Enemy, The (1931)",Action|Crime|Drama +7058,3.0,Life with Father (1947),Comedy +7059,3.5,National Velvet (1944),Children|Drama +7060,3.0625,Jesus Christ Superstar (1973),Drama|Musical +7061,3.8333333333333335,Dark Victory (1939),Drama|Romance +7062,3.5,Birdman of Alcatraz (1962),Drama +7063,4.333333333333333,"Aguirre: The Wrath of God (Aguirre, der Zorn Gottes) (1972)",Adventure|Drama +7064,3.857142857142857,Beauty and the Beast (La belle et la bête) (1946),Drama|Fantasy +7065,3.0,"Birth of a Nation, The (1915)",Drama|War +7067,3.0,Juliet of the Spirits (Giulietta degli spiriti) (1965),Comedy|Drama|Fantasy|Romance +7068,3.25,Last Year at Marienbad (L'Année dernière à Marienbad) (1961),Drama|Mystery|Romance +7069,4.25,"Macbeth (a.k.a. Tragedy of Macbeth, The) (1971)",Drama +7070,3.75,Red River (1948),Action|Adventure|Western +7071,3.25,"Woman Under the Influence, A (1974)",Drama +7072,4.0,Stagecoach (1939),Action|Drama|Romance|Western +7073,3.8,"Shot in the Dark, A (1964)",Comedy|Crime|Mystery +7074,4.5,"Navigator, The (1924)",Comedy +7075,4.5,"Court Jester, The (1956)",Adventure|Comedy|Musical +7076,2.8333333333333335,Bullitt (1968),Action|Crime|Drama|Thriller +7078,3.5,Jezebel (1938),Drama +7079,3.5,"Hunchback of Notre Dame, The (1939)",Drama +7080,3.5,42nd Street (1933),Drama|Musical|Romance +7081,5.0,I'm No Angel (1933),Comedy +7082,4.0,That Touch of Mink (1962),Comedy|Romance +7083,2.5,Sweet Dreams (1985),Drama +7084,3.625,"Play It Again, Sam (1972)",Comedy|Romance +7085,3.5,Send Me No Flowers (1964),Comedy|Romance +7086,3.0,Pygmalion (1938),Comedy|Drama +7087,5.0,"Passage to India, A (1984)",Adventure|Drama +7088,4.25,Black Orpheus (Orfeu Negro) (1959),Drama|Romance +7089,4.083333333333333,Amarcord (1973),Comedy|Drama +7090,3.8636363636363638,Hero (Ying xiong) (2002),Action|Adventure|Drama +7091,4.111111111111111,Horse Feathers (1932),Comedy +7093,0.5,"Front Page, The (1974)",Comedy +7095,2.5,Looking for Mr. Goodbar (1977),Drama +7096,4.0,Rivers and Tides (2001),Documentary +7099,4.1,Nausicaä of the Valley of the Wind (Kaze no tani no Naushika) (1984),Adventure|Animation|Drama|Fantasy|Sci-Fi +7101,3.0,Doc Hollywood (1991),Comedy|Romance +7102,2.375,Dragnet (1987),Comedy|Crime|Drama +7104,2.625,1941 (1979),Comedy|War +7107,3.3333333333333335,Foul Play (1978),Comedy|Thriller +7108,1.5,Crime Story (Zhong an zu) (1993),Action|Crime|Drama +7110,3.0,Blind Beast (Môjuu) (1969),Drama|Thriller +7111,4.5,Ryan's Daughter (1970),Drama|Romance +7115,3.75,Deep Red (Profondo rosso) (1975),Horror|Mystery|Thriller +7116,4.7,Diabolique (Les diaboliques) (1955),Horror|Mystery|Thriller +7117,3.0,Leprechaun (1993),Comedy|Horror +7121,3.75,Adam's Rib (1949),Comedy|Romance +7122,3.75,King of Hearts (1966),Comedy|Drama|War +7123,3.75,Naked Lunch (1991),Drama|Fantasy|Mystery|Sci-Fi +7125,3.5,Spring Forward (1999),Drama +7126,4.5,"Killing of a Chinese Bookie, The (1976)",Comedy|Crime|Drama|Film-Noir|Musical +7130,4.0,Darling (1965),Drama +7131,3.5,"Summer Place, A (1959)",Drama +7132,4.0,"Night at the Opera, A (1935)",Comedy|Musical|Romance +7135,3.625,Shoot the Piano Player (Tirez sur le pianiste) (1960),Crime|Drama|Romance|Thriller +7136,4.25,Stolen Kisses (Baisers volés) (1968),Comedy|Drama|Romance +7137,4.0,"Cooler, The (2003)",Comedy|Drama|Romance +7139,3.8529411764705883,In America (2002),Drama|Romance +7142,3.0,Honey (2003),Drama|Romance +7143,3.6444444444444444,"Last Samurai, The (2003)",Action|Adventure|Drama|War +7147,3.827272727272727,Big Fish (2003),Drama|Fantasy|Romance +7149,3.2083333333333335,Something's Gotta Give (2003),Comedy|Drama|Romance +7150,2.3,Stuck on You (2003),Comedy +7151,3.75,Girl with a Pearl Earring (2003),Drama|Romance +7152,4.0,"Statement, The (2003)",Drama|Thriller +7153,4.127840909090909,"Lord of the Rings: The Return of the King, The (2003)",Action|Adventure|Drama|Fantasy +7154,3.4375,Mona Lisa Smile (2003),Drama|Romance +7155,3.25,Calendar Girls (2003),Comedy +7156,4.0,"Fog of War: Eleven Lessons from the Life of Robert S. McNamara, The (2003)",Documentary|War +7158,3.3,House of Sand and Fog (2003),Drama +7160,3.5625,Monster (2003),Crime|Drama +7161,2.5714285714285716,Cheaper by the Dozen (2003),Children|Comedy +7162,3.28125,Cold Mountain (2003),Drama|Romance|War +7163,2.95,Paycheck (2003),Action|Sci-Fi|Thriller +7164,3.3333333333333335,Peter Pan (2003),Action|Adventure|Children|Fantasy +7165,3.5,"Company, The (2003)",Drama|Musical +7171,3.0,Aileen: Life and Death of a Serial Killer (2003),Documentary +7172,4.0,Distant (Uzak) (2002),Drama +7173,2.3461538461538463,Along Came Polly (2004),Comedy|Romance +7177,4.0,Osama (2003),Drama +7178,3.5,"Great Gatsby, The (1974)",Drama +7179,4.0,Wuthering Heights (1992),Drama|Romance +7180,4.0,Odds Against Tomorrow (1959),Crime|Drama|Thriller +7182,3.0,Lord Love a Duck (1966),Comedy +7186,3.5,Once Upon a Crime... (1992),Comedy|Mystery +7189,1.5,"Car 54, Where Are You? (1994)",Comedy +7190,4.0,Jane Eyre (1970),Drama +7192,2.0,Only the Strong (1993),Action +7193,3.5,"Adventures of Ford Fairlane, The (1990)",Action|Comedy +7195,3.5,"Enforcer, The (1951)",Crime|Drama|Film-Noir +7196,3.0,"Men, The (1950)",Drama +7198,3.0,The Pick-up Artist (1987),Comedy|Crime|Drama|Romance +7199,1.0,Melvin Goes to Dinner (2003),Comedy|Drama +7204,0.5,Hells Angels on Wheels (1967),Drama +7206,4.0,Mon Oncle (My Uncle) (1958),Comedy +7207,3.0,Where the Boys Are (1960),Comedy +7208,5.0,Dr. Jekyll and Mr. Hyde (1941),Drama|Horror +7209,3.6666666666666665,"M. Hulot’s Holiday (Mr. Hulot's Holiday) (Vacances de Monsieur Hulot, Les) (1953)",Comedy +7210,3.8333333333333335,My Darling Clementine (1946),Western +7211,4.5,People Will Talk (1951),Comedy|Romance +7212,4.0,I Was a Male War Bride (1949),Comedy|Romance +7215,4.0,To Have and Have Not (1944),Adventure|Drama|Romance|Thriller|War +7216,3.1666666666666665,High Sierra (1941),Crime|Drama|Film-Noir|Thriller +7217,3.75,Dark Passage (1947),Crime|Drama|Film-Noir|Romance|Thriller +7219,4.0,They Drive by Night (1940),Drama +7222,3.0,Reefer Madness (a.k.a. Tell Your Children) (1938),Comedy|Drama +7223,3.1666666666666665,D.O.A. (1950),Drama|Film-Noir|Mystery +7228,2.5,Cool World (1992),Animation|Comedy|Fantasy +7234,3.9,"Strada, La (1954)",Drama +7235,4.0,Ichi the Killer (Koroshiya 1) (2001),Action|Comedy|Crime|Drama|Horror|Thriller +7236,3.0,"Boy and His Dog, A (1975)",Sci-Fi +7238,4.0,Ashes and Diamonds (Popiól i diament) (1958),Drama|War +7245,1.0,Tormented (1960),Horror|Thriller +7247,3.4,Chitty Chitty Bang Bang (1968),Adventure|Children|Comedy|Fantasy|Musical +7248,3.0,"Suriyothai (a.k.a. Legend of Suriyothai, The) (2001)",Action|Adventure|Drama|War +7250,2.0,"Out of Towners, The (1970)",Comedy +7254,3.46875,The Butterfly Effect (2004),Drama|Sci-Fi|Thriller +7255,2.357142857142857,Win a Date with Tad Hamilton! (2004),Comedy|Romance +7256,4.2,Touching the Void (2003),Adventure|Documentary +7257,2.25,"Big Bounce, The (2004)",Comedy|Crime|Thriller +7258,1.5,"Perfect Score, The (2004)",Comedy|Crime +7260,5.0,Latter Days (2003),Comedy|Drama|Romance +7263,3.8636363636363638,Miracle (2004),Drama +7265,3.8333333333333335,"Dreamers, The (2003)",Drama +7266,3.25,"Lost Skeleton of Cadavra, The (2002)",Comedy|Horror|Sci-Fi +7272,2.5,Super Fly (Superfly) (1972),Action|Crime|Drama +7282,0.5,"Hip Hop Witch, Da (2000)",Comedy|Horror|Thriller +7283,1.75,Swing Shift (1984),Drama +7285,3.9375,Thirteen (2003),Drama +7293,3.2758620689655173,50 First Dates (2004),Comedy|Romance +7294,2.1666666666666665,Welcome to Mooseport (2004),Comedy +7299,4.0,Monsieur Ibrahim (Monsieur Ibrahim et les fleurs du Coran) (2003),Drama +7300,4.0,Vanishing Point (1971),Action|Drama +7302,5.0,"Thief of Bagdad, The (1924)",Action|Adventure|Fantasy +7303,3.5,The Diary of Anne Frank (1959),Drama|War +7305,2.5,Black Widow (1987),Crime|Drama|Mystery|Thriller +7307,4.0,Flesh & Blood (1985),Action|Adventure|Drama|War +7308,3.25,King Solomon's Mines (1985),Adventure|Comedy +7309,4.0,"Black Pirate, The (1926)",Action|Adventure +7311,3.0,"Goodbye, Mr. Chips (1939)",Drama|Romance +7312,0.5,"Follow Me, Boys! (1966)",Comedy|Drama +7315,2.0,Against the Ropes (2004),Comedy|Drama +7316,2.6666666666666665,Confessions of a Teenage Drama Queen (2004),Comedy +7317,3.1875,EuroTrip (2004),Adventure|Comedy +7318,3.0416666666666665,"Passion of the Christ, The (2004)",Drama +7319,3.0,Club Dread (2004),Comedy|Horror +7320,4.0,Dirty Dancing: Havana Nights (2004),Romance +7323,3.7142857142857144,"Good bye, Lenin! (2003)",Comedy|Drama +7324,3.5,Hidalgo (2004),Adventure|Drama +7325,2.5,Starsky & Hutch (2004),Action|Comedy|Crime|Thriller +7327,3.8333333333333335,Persona (1966),Drama +7334,3.1666666666666665,"Front, The (1976)",Comedy|Drama +7340,4.5,Just One of the Guys (1985),Comedy +7343,1.5,Wisconsin Death Trip (1999),Documentary +7346,3.269230769230769,"Girl Next Door, The (2004)",Comedy|Romance +7347,3.1666666666666665,Secret Window (2004),Mystery|Thriller +7348,3.357142857142857,Spartan (2004),Thriller +7349,4.5,Broken Wings (Knafayim Shvurot) (2002),Drama +7352,4.0,Wilbur Wants to Kill Himself (2002),Comedy|Drama|Romance +7354,3.0,Mad Dog and Glory (1993),Comedy|Drama|Romance +7355,5.0,Mr. Toad's Wild Ride (a.k.a. The Wind in the Willows) (1996),Adventure|Animation|Comedy +7357,3.75,Peyton Place (1957),Drama|Romance +7358,2.5,Searching for Debra Winger (2002),Documentary +7360,3.4,Dawn of the Dead (2004),Action|Drama|Horror|Thriller +7361,4.122641509433962,Eternal Sunshine of the Spotless Mind (2004),Drama|Romance|Sci-Fi +7362,3.375,Taking Lives (2004),Crime|Drama|Thriller +7366,2.1666666666666665,Jersey Girl (2004),Comedy|Drama|Romance +7367,2.5,"Ladykillers, The (2004)",Comedy|Crime +7369,2.25,Scooby-Doo 2: Monsters Unleashed (2004),Action|Adventure|Children|Comedy|Mystery +7371,3.875,Dogville (2003),Drama|Mystery|Thriller +7372,3.0,Ned Kelly (2003),Drama +7373,3.2857142857142856,Hellboy (2004),Action|Adventure|Fantasy|Horror +7374,4.0,Home on the Range (2004),Animation|Children|Comedy|Musical|Western +7375,4.333333333333333,"Prince & Me, The (2004)",Comedy|Romance +7376,2.3333333333333335,Walking Tall (2004),Action +7379,4.0,The Alamo (2004),Drama|War|Western +7380,4.0,Ella Enchanted (2004),Comedy|Fantasy|Romance +7381,2.6666666666666665,"Whole Ten Yards, The (2004)",Action|Comedy|Crime +7382,3.5,I'm Not Scared (Io non ho paura) (2003),Drama|Mystery|Thriller +7386,4.0,"Ten Commandments, The (1956)",Adventure|Drama +7387,3.6,Dawn of the Dead (1978),Action|Drama|Horror +7394,3.0,Those Magnificent Men in Their Flying Machines (1965),Action|Adventure|Comedy +7395,3.5,Cheaper by the Dozen (1950),Comedy|Drama +7396,4.1,Scenes From a Marriage (Scener ur ett äktenskap) (1973),Drama +7407,2.5,Africa Screams (1949),Adventure|Comedy +7411,2.0,Munchies (1987),Comedy|Horror +7415,2.5,"Late Show, The (1977)",Comedy|Crime|Drama|Mystery +7419,3.875,After Hours (1985),Comedy|Thriller +7437,3.0,Connie and Carla (2004),Comedy +7438,3.6650485436893203,Kill Bill: Vol. 2 (2004),Action|Drama|Thriller +7439,2.7857142857142856,"Punisher, The (2004)",Action|Crime|Thriller +7444,2.8529411764705883,13 Going on 30 (2004),Comedy|Fantasy|Romance +7445,3.391304347826087,Man on Fire (2004),Action|Crime|Drama|Mystery|Thriller +7448,0.5,Envy (2004),Comedy +7449,2.75,Godsend (2004),Drama|Horror|Thriller +7450,2.0,Laws of Attraction (2004),Comedy|Romance +7451,3.517857142857143,Mean Girls (2004),Comedy +7453,3.0,New York Minute (2004),Action|Adventure|Comedy +7454,2.84375,Van Helsing (2004),Action|Adventure|Fantasy|Horror +7456,4.5,Valentin (Valentín) (2002),Drama +7458,3.1875,Troy (2004),Action|Adventure|Drama|War +7459,4.75,Carandiru (2003),Crime|Drama +7460,3.142857142857143,Coffee and Cigarettes (2003),Comedy|Drama +7478,4.0,Swimming to Cambodia (1987),Drama +7481,3.375,Enemy Mine (1985),Adventure|Drama|Sci-Fi +7482,4.0,Enter the Dragon (1973),Action|Crime +7484,3.8333333333333335,Gimme Shelter (1970),Documentary +7487,3.3333333333333335,Henry & June (1990),Drama +7492,3.0,Martin (1977),Drama|Horror +7493,3.8,"Three Faces of Eve, The (1957)",Drama +7505,3.1666666666666665,"Kingdom, The (Riget) (1994)",Drama|Horror|Mystery +7541,3.25,100 Girls (2000),Comedy|Romance +7560,3.375,Fail-Safe (1964),Drama|Thriller|War +7564,5.0,Kwaidan (Kaidan) (1964),Horror +7566,4.625,28 Up (1985),Documentary +7569,3.727272727272727,You Only Live Twice (1967),Action|Adventure|Sci-Fi|Thriller +7570,3.5,Octopussy (1983),Action|Adventure|Thriller +7571,4.0,"Blue Gardenia, The (1953)",Crime|Drama|Film-Noir|Thriller +7572,3.5,Wit (2001),Drama +7573,3.0714285714285716,Never Say Never Again (1983),Action|Adventure|Thriller +7574,5.0,Maborosi (Maboroshi no hikari) (1995),Drama +7577,2.25,"Magic Flute, The (Trollflöjten) (1975)",Comedy|Fantasy|Musical|Romance +7579,2.8333333333333335,Pride and Prejudice (1940),Comedy|Drama|Romance +7583,3.5,In This Our Life (1942),Drama +7584,3.375,Woman of the Year (1942),Comedy|Romance +7585,2.0,Summertime (1955),Drama|Romance +7586,4.0,Soldier of Orange (a.k.a. Survival Run) (Soldaat van Oranje) (1977),Drama|Thriller|War +7587,4.0,"Samouraï, Le (Godson, The) (1967)",Crime|Drama|Thriller +7613,3.0,White Palace (1990),Drama +7614,3.5833333333333335,Oklahoma! (1955),Musical|Romance|Western +7615,3.75,Desert Hearts (1985),Drama +7616,3.75,Body Double (1984),Mystery|Thriller +7619,3.8333333333333335,"Miracle Worker, The (1962)",Drama +7620,4.0,Monster in a Box (1992),Comedy|Drama +7624,4.0,School Ties (1992),Drama +7625,4.0,Girl (1998),Drama +7627,4.5,Just Write (1997),Comedy +7636,1.0,Raising Cain (1992),Horror|Thriller +7650,3.0,"Witchfinder General (Conquerer Worm, The) (1968)",Horror +7669,4.416666666666667,Pride and Prejudice (1995),Drama|Romance +7697,3.5,"Prince and the Showgirl, The (1957)",Comedy|Romance +7698,4.125,"China Syndrome, The (1979)",Drama|Thriller +7700,4.75,"Wages of Fear, The (Salaire de la peur, Le) (1953)",Action|Adventure|Drama|Thriller +7701,1.6666666666666667,Look Who's Talking Too (1990),Comedy|Romance +7702,3.5,"Bells of St. Mary's, The (1945)",Drama +7705,3.5,Pat and Mike (1952),Comedy|Romance +7706,3.5833333333333335,Animal Crackers (1930),Comedy|Musical +7708,2.5,Bedazzled (1967),Comedy|Fantasy +7713,3.5,Cat People (1942),Drama|Horror|Romance|Thriller +7714,3.75,Camelot (1967),Drama|Musical|Romance +7720,4.25,"Four Musketeers, The (1974)",Action|Adventure|Comedy|Romance +7728,3.625,"Postman Always Rings Twice, The (1946)",Crime|Drama|Film-Noir|Thriller +7738,3.75,That's The Way I Like It (a.k.a. Forever Fever) (1998),Comedy|Drama|Romance +7743,3.25,Explorers (1985),Adventure|Children|Sci-Fi +7748,3.5,Pierrot le fou (1965),Crime|Drama +7753,3.5,Tuesdays with Morrie (1999),Drama +7757,4.125,Jason and the Argonauts (1963),Action|Adventure|Fantasy +7759,1.0,Nostalghia (1983),Drama +7764,3.0,"Driller Killer, The (1979)",Drama|Horror +7766,4.071428571428571,Throne of Blood (Kumonosu jô) (1957),Action|Drama|Thriller|War +7767,4.25,"Best of Youth, The (La meglio gioventù) (2003)",Drama +7771,4.5,Zorba the Greek (Alexis Zorbas) (1964),Adventure|Drama +7773,5.0,"Bang, Bang, You're Dead (2002)",Drama +7774,3.5,My Side of the Mountain (1969),Adventure|Children +7782,3.5,Sniper (1993),Action|Drama +7786,3.5,Genghis Blues (1999),Documentary +7787,4.5,To Hell and Back (1955),Action|Drama|War +7789,2.0,"11'09""01 - September 11 (2002)",Drama +7790,4.0,"Bon Voyage, Charlie Brown (and Don't Come Back!) (1980)",Animation|Children|Comedy +7791,2.8333333333333335,Internal Affairs (1990),Crime|Thriller +7792,3.3333333333333335,"Parallax View, The (1974)",Thriller +7802,4.2,"Warriors, The (1979)",Action|Adventure|Crime|Thriller +7809,3.5,Ambush (Rukajärven tie) (1999),Drama|Romance|War +7815,1.5,True Stories (1986),Comedy|Musical +7817,3.5,Zardoz (1974),Fantasy|Sci-Fi +7818,2.5,School For Scoundrels (1960),Comedy +7820,4.0,"Virgin Spring, The (Jungfrukällan) (1960)",Crime|Drama +7822,3.5,Mogambo (1953),Adventure|Drama|Romance +7826,4.0,"Secret Life of Walter Mitty, The (1947)",Comedy|Romance|Thriller +7827,4.5,Cypher (2002),Action|Sci-Fi|Thriller +7831,3.6666666666666665,Another Thin Man (1939),Comedy|Crime|Drama|Mystery|Romance +7832,4.0,"Thin Man Goes Home, The (1945)",Comedy|Crime|Mystery +7833,3.8333333333333335,Shadow of the Thin Man (1941),Comedy|Crime|Mystery +7834,3.6666666666666665,After the Thin Man (1936),Comedy|Crime|Mystery|Romance +7835,3.75,Song of the Thin Man (1947),Comedy|Crime|Drama|Musical|Mystery|Romance +7836,3.5833333333333335,Woodstock (1970),Documentary|Musical +7840,3.8333333333333335,Gunga Din (1939),Adventure|Comedy|War +7844,4.0,"Legend, The (Legend of Fong Sai-Yuk, The) (Fong Sai Yuk) (1993)",Action|Comedy +7845,3.0,Tremors II: Aftershocks (1996),Comedy|Horror|Sci-Fi +7846,2.5,Tremors 3: Back to Perfection (2001),Comedy|Horror|Sci-Fi +7872,2.5,Getting It Right (1989),Comedy|Drama +7878,4.5,Straight to Hell (1987),Comedy|Crime|Western +7881,3.5,White Zombie (1932),Horror +7882,2.5,The Plague of the Zombies (1966),Horror +7883,3.0,I Walked with a Zombie (1943),Drama|Horror +7888,3.5,How to Succeed in Business Without Really Trying (1967),Comedy|Musical +7889,4.5,Pat Garrett and Billy the Kid (1973),Western +7892,2.0,"Street Fighter, The (Gekitotsu! Satsujin ken) (1974)",Action +7894,4.0,"Duck, You Sucker (1971)",Action|Western +7895,3.5,Bring Me the Head of Alfredo Garcia (1974),Crime|Drama|Thriller +7897,3.0,"Ballad of Cable Hogue, The (1970)",Comedy|Western +7899,3.1666666666666665,Master of the Flying Guillotine (Du bi quan wang da po xue di zi) (1975),Action +7914,4.0,Berlin: Symphony of a Great City (Berlin: Die Sinfonie der Großstadt) (1927),Documentary +7915,3.5,Samurai Fiction (SF: Episode One) (1998),Action|Adventure|Comedy +7916,3.5,Gidget (1959),Comedy +7919,4.5,Drunken Angel (Yoidore tenshi) (1948),Drama|Film-Noir +7920,3.5,Desperate Living (1977),Comedy|Crime +7921,3.0,"Devil's Rain, The (1975)",Horror +7922,2.5,"Valachi Papers,The (1972)",Crime|Drama +7924,4.5,Stray Dog (Nora inu) (1949),Drama|Film-Noir|Thriller +7925,3.25,"Hidden Fortress, The (Kakushi-toride no san-akunin) (1958)",Action|Adventure +7926,4.5,High and Low (Tengoku to jigoku) (1963),Crime|Drama|Film-Noir|Thriller +7932,5.0,Dark Days (2000),Documentary +7934,3.5833333333333335,Zelig (1983),Comedy +7935,4.0,Face to Face (Ansikte mot ansikte) (1976),Drama|Fantasy|Horror|Mystery +7936,4.5,Shame (Skammen) (1968),Drama|War +7938,3.5,Winter Light (Nattvardsgästerna) (1963),Drama +7939,3.0,Through a Glass Darkly (Såsom i en spegel) (1961),Drama +7941,4.125,Smiles of a Summer Night (Sommarnattens leende) (1955),Comedy|Romance +7942,3.0,Summer with Monika (Sommaren med Monika) (1953),Drama|Romance +7943,4.125,"Killers, The (1946)",Crime|Film-Noir +7944,4.0,"Night of the Iguana, The (1964)",Drama|Thriller +7946,1.5,Reflections in a Golden Eye (1967),Drama +7947,4.0,Under the Volcano (1984),Drama +7948,4.0,Wise Blood (1979),Comedy|Drama +7951,2.5,Nightbreed (1990),Fantasy|Horror +7958,3.5,Bloody Mama (1970),Crime|Drama +7959,3.5,"Trip, The (1967)",Drama +7976,3.8333333333333335,Ken Park (2002),Drama +7979,3.9,Monterey Pop (1968),Documentary|Musical +7980,3.357142857142857,"Bridge Too Far, A (1977)",Action|Drama|War +7981,4.166666666666667,Infernal Affairs (Mou gaan dou) (2002),Crime|Drama|Thriller +7982,3.1666666666666665,"Tale of Two Sisters, A (Janghwa, Hongryeon) (2003)",Drama|Horror|Mystery|Thriller +7983,3.375,Broadway Danny Rose (1984),Comedy +7984,3.5,From Beyond (1986),Horror|Sci-Fi +7987,3.5,Dolls (1987),Horror +7990,3.0,Rock 'N' Roll High School (1979),Comedy|Musical +7991,2.8333333333333335,Death Race 2000 (1975),Action|Sci-Fi +7995,3.0,"Wild Angels, The (1966)",Action|Drama +8003,2.0,Bedlam (1946),Drama|Horror +8008,3.3333333333333335,Brigadoon (1954),Fantasy|Musical|Romance +8009,3.5,Marjorie Morningstar (1958),Drama +8010,3.5,"Power of One, The (1992)",Drama +8011,3.3,"Weather Underground, The (2002)",Documentary +8012,4.375,Kikujiro (Kikujirô no natsu) (1999),Comedy|Drama +8014,3.5833333333333335,"Spring, Summer, Fall, Winter... and Spring (Bom yeoreum gaeul gyeoul geurigo bom) (2003)",Drama +8015,3.5,"Phantom Tollbooth, The (1970)",Adventure|Animation|Children|Fantasy +8016,2.25,"Getaway, The (1972)",Action|Crime|Drama|Thriller +8019,4.0,Dark Water (Honogurai mizu no soko kara) (2002),Drama|Horror|Mystery|Thriller +8033,3.0,How to Steal a Million (1966),Comedy|Crime|Romance +8039,3.25,Support Your Local Sheriff! (1969),Comedy|Western +8042,3.9285714285714284,Mean Streets (1973),Crime|Drama +8044,3.75,I Am a Fugitive from a Chain Gang (1932),Crime|Drama|Film-Noir +8056,2.5,Harper (1966),Crime|Drama|Mystery +8057,3.0,Sweet Bird of Youth (1962),Drama +8070,3.5,Grill Point (Halbe Treppe) (2002),Drama +8093,2.75,Shiri (Swiri) (1999),Action|Drama|Romance|Thriller +8094,4.0,Bad Day at Black Rock (1955),Drama|Thriller|Western +8117,2.75,In China They Eat Dogs (I Kina spiser de hunde) (1999),Action|Comedy +8121,5.0,"Seducing Doctor Lewis (Grande séduction, La) (2003)",Comedy +8123,5.0,Sammy and Rosie Get Laid (1987),Comedy|Drama +8125,4.333333333333333,Sunrise: A Song of Two Humans (1927),Drama|Romance +8126,4.5,Shock Corridor (1963),Drama +8128,3.625,Au revoir les enfants (1987),Drama +8129,1.75,Sex: The Annabel Chong Story (1999),Documentary +8130,3.0,"Girl Next Door, The (1999)",Documentary +8131,4.166666666666667,Pursuit of Happiness (2001),Comedy|Romance +8132,4.454545454545454,Gladiator (1992),Action|Drama +8133,1.5,"Inheritance, The (Arven) (2003)",Drama +8136,0.5,Indestructible Man (1956),Crime|Horror|Sci-Fi +8137,2.0,"Wasp Woman, The (1959)",Horror|Sci-Fi +8138,1.75,Attack of the Giant Leeches (1959),Horror|Sci-Fi +8142,4.0,Dead or Alive: Hanzaisha (1999),Action|Crime +8143,3.5,Lola Montès (1955),Drama +8147,3.5,Charly (1968),Drama|Sci-Fi +8154,4.0625,"Dolce Vita, La (1960)",Drama +8157,3.6875,Jin Roh: The Wolf Brigade (Jin-Rô) (1998),Animation|Fantasy|Thriller +8158,3.5,Rush (1991),Crime|Drama +8167,2.25,Captain Blood (1935),Action|Adventure|Romance +8169,3.142857142857143,*batteries not included (1987),Children|Comedy|Fantasy|Sci-Fi +8183,4.125,Educating Rita (1983),Comedy|Drama +8187,3.5,On Moonlight Bay (1951),Comedy|Musical +8188,4.333333333333333,Sansho the Bailiff (Sanshô dayû) (1954),Drama +8189,4.0,Zazie dans le métro (1960),Comedy +8190,3.0,"Americanization of Emily, The (1964)",Comedy|Drama|War +8191,4.0,Anne of the Thousand Days (1969),Drama +8194,2.75,Baby Doll (1956),Drama +8195,2.8333333333333335,"Avventura, L' (Adventure, The) (1960)",Drama|Mystery|Romance +8196,2.5,Beyond the Valley of the Dolls (1970),Comedy|Horror +8197,3.6666666666666665,Hiroshima Mon Amour (1959),Drama|Romance|War +8199,4.75,Ugetsu (Ugetsu monogatari) (1953),Drama|Thriller +8207,4.2,"Day of the Jackal, The (1973)",Crime|Thriller +8208,5.0,"Razor's Edge, The (1946)",Drama +8225,3.625,Night of the Living Dead (1990),Horror +8228,4.1,"Maltese Falcon, The (a.k.a. Dangerous Female) (1931)",Mystery +8235,4.0,Safety Last! (1923),Action|Comedy|Romance +8239,4.5,Viridiana (1961),Comedy|Drama +8240,5.0,Totally F***ed Up (1993),Drama +8253,3.5,Lupin III: The Castle Of Cagliostro (Rupan sansei: Kariosutoro no shiro) (1979),Action|Adventure|Animation|Comedy|Crime|Mystery +8254,5.0,Arizona Dream (1993),Comedy|Drama|Fantasy|Romance +8256,4.0,Queen Christina (1933),Drama|Romance +8257,3.0,Battleground (1949),Action|Drama|War +8261,5.0,3 Women (Three Women) (1977),Drama +8263,3.5,Take Me Out to the Ball Game (1949),Comedy|Musical|Romance +8264,4.333333333333333,Grey Gardens (1975),Documentary +8266,2.5,Purple Rain (1984),Drama|Musical +8267,3.5,Signs of Life (Lebenszeichen) (1968),Drama +8268,2.75,Point of No Return (1993),Action|Thriller +8273,4.0,"Tale of Ham and Passion, A (Jamón, Jamón) (1992)",Comedy|Drama|Romance +8275,2.6666666666666665,College (1927),Comedy +8290,0.5,Mitchell (1975),Action|Crime +8327,4.25,Dolls (2002),Drama|Romance +8331,3.5,"Man Who Came to Dinner, The (1942)",Comedy +8332,3.5,Sunday Bloody Sunday (1971),Drama +8336,3.5,"Major and the Minor, The (1942)",Comedy|Romance +8337,3.6666666666666665,"Caine Mutiny, The (1954)",Drama|War +8338,3.8333333333333335,Black Narcissus (1947),Drama +8340,3.6666666666666665,Escape from Alcatraz (1979),Drama|Thriller +8341,4.5,Oliver Twist (1948),Adventure|Crime|Drama +8360,3.574074074074074,Shrek 2 (2004),Adventure|Animation|Children|Comedy|Musical|Romance +8361,3.06,"Day After Tomorrow, The (2004)",Action|Adventure|Drama|Sci-Fi|Thriller +8362,2.5,Raising Helen (2004),Comedy|Drama|Romance +8363,2.0,Soul Plane (2004),Comedy +8364,3.25,Baadasssss! (How to Get the Man's Foot Outta Your Ass) (2003),Drama +8366,3.3333333333333335,Saved! (2004),Comedy|Drama +8367,3.0,"Time of the Wolf, The (Le temps du loup) (2003)",Drama +8368,3.761904761904762,Harry Potter and the Prisoner of Azkaban (2004),Adventure|Fantasy|IMAX +8369,3.3,Mindhunters (2004),Action|Crime|Horror|Mystery|Thriller +8370,3.9285714285714284,"Blind Swordsman: Zatoichi, The (Zatôichi) (2003)",Action|Comedy|Crime|Drama +8371,3.2,"Chronicles of Riddick, The (2004)",Action|Sci-Fi|Thriller +8372,1.5,Garfield: The Movie (2004),Animation|Children|Comedy +8373,2.45,"Stepford Wives, The (2004)",Comedy|Fantasy|Thriller +8376,3.1333333333333333,Napoleon Dynamite (2004),Comedy +8385,3.5,Lover Come Back (1961),Comedy|Romance +8387,1.9166666666666667,Police Academy: Mission to Moscow (1994),Comedy|Crime +8388,4.0,Ring of Bright Water (1969),Comedy|Drama +8392,2.0,Fool for Love (1985),Drama +8403,2.0,Helen of Troy (1956),Action|Adventure|Drama|Romance|War +8404,4.0,"Hound of the Baskervilles, The (1939)",Crime|Mystery|Thriller +8410,4.0,Suddenly (1954),Crime|Drama|Film-Noir +8420,4.0,Possessed (1947),Drama|Film-Noir +8422,3.0,Kings Row (1942),Drama|Romance +8423,3.0,"Kid Brother, The (1927)",Children|Comedy|Romance +8447,1.0,This Island Earth (1955),Sci-Fi +8451,3.5,Blackboard Jungle (1955),Drama +8453,4.0,It Had to Be You (2000),Comedy|Romance +8459,4.0,"Heiress, The (1949)",Drama|Romance +8460,3.75,State Fair (1945),Musical|Romance +8462,2.5,Executive Suite (1954),Drama +8463,2.5,Johnny Belinda (1948),Drama +8464,3.533333333333333,Super Size Me (2004),Comedy|Documentary|Drama +8465,2.5,Johnny Eager (1942),Crime|Drama|Film-Noir|Romance +8477,4.25,"Jetée, La (1962)",Romance|Sci-Fi +8482,3.0,"Picture of Dorian Gray, The (1945)",Drama|Fantasy|Horror +8484,3.5,"Human Condition I, The (Ningen no joken I) (1959)",Drama|War +8485,4.0,Samsara (2001),Adventure|Drama|Romance +8487,2.75,Please Don't Eat the Daisies (1960),Children|Comedy|Musical +8491,3.5,White Heat (1949),Crime|Drama|Film-Noir +8492,3.8333333333333335,"Christmas Carol, A (Scrooge) (1951)",Drama|Fantasy +8493,3.7142857142857144,Memphis Belle (1990),Action|Drama|War +8499,3.125,Pretty Baby (1978),Drama +8502,3.5,Show Boat (1951),Drama|Musical|Romance +8504,4.5,Box of Moon Light (1996),Comedy|Drama +8507,3.388888888888889,Freaks (1932),Crime|Drama|Horror +8511,4.25,"Immigrant, The (1917)",Comedy +8522,3.75,My Little Chickadee (1940),Comedy|Western +8524,3.5,"High and the Mighty, The (1954)",Drama +8525,2.5,"Ugly Dachshund, The (1966)",Children|Comedy +8526,2.3333333333333335,Around the World in 80 Days (2004),Adventure|Children|Comedy +8527,3.0,I'll Sleep When I'm Dead (2003),Crime|Drama +8528,3.3378378378378377,Dodgeball: A True Underdog Story (2004),Comedy +8529,3.364864864864865,"Terminal, The (2004)",Comedy|Drama|Romance +8530,3.875,Dear Frankie (2004),Drama|Romance +8531,2.7,White Chicks (2004),Action|Comedy|Crime +8533,3.393939393939394,"Notebook, The (2004)",Drama|Romance +8534,2.5,Two Brothers (Deux frères) (2004),Adventure|Children|Drama +8535,3.5,De-Lovely (2004),Drama|Musical +8537,4.0,Kaena: The Prophecy (Kaena: La prophétie) (2003),Action|Adventure|Animation|Children|Sci-Fi +8542,4.0,"Day at the Races, A (1937)",Comedy|Musical +8544,3.5,"Now You See Him, Now You Don't (1972)",Comedy|Sci-Fi +8571,3.0,Bob & Carol & Ted & Alice (1969),Comedy|Drama +8572,4.5,"Littlest Rebel, The (1935)",Children|Drama +8574,2.25,"Claymation Christmas Celebration, A (1987)",Animation|Children|Comedy|Musical +8575,2.0,"Happenstance (Battement d'ailes du papillon, Le) (2001)",Comedy|Drama +8576,4.0,Kopps (2003),Action|Comedy +8577,4.0,Comandante (2003),Documentary +8580,4.333333333333333,Into the Woods (1991),Adventure|Comedy|Fantasy|Musical +8581,3.5,Pirates of Silicon Valley (1999),Documentary|Drama +8582,3.9,Manufacturing Consent: Noam Chomsky and the Media (1992),Documentary|War +8583,2.5,"Clock, The (1945)",Adventure|Drama|Romance +8584,3.75,Leave Her to Heaven (1945),Drama|Film-Noir +8589,4.25,Winter War (Talvisota) (1989),Drama|War +8591,3.5,"Philadelphia Experiment, The (1984)",Adventure|Drama|Sci-Fi +8596,3.6666666666666665,Revenge of the Pink Panther (1978),Comedy|Crime +8600,4.0,Angels with Dirty Faces (1938),Crime|Drama|Film-Noir|Thriller +8604,2.5,Taxi (1998),Action|Comedy +8607,3.8333333333333335,Tokyo Godfathers (2003),Adventure|Animation|Drama +8609,4.5,Our Hospitality (1923),Comedy +8610,3.4166666666666665,All of Me (1984),Comedy|Fantasy +8611,2.25,"Farmer's Daughter, The (1947)",Comedy +8612,3.25,Lassie Come Home (1943),Adventure|Children|Drama +8614,2.625,Overboard (1987),Comedy|Romance +8616,3.5,By the Light of the Silvery Moon (1953),Children|Musical|Romance +8617,3.25,Butterfield 8 (1960),Drama +8618,3.6666666666666665,Johnny Guitar (1954),Drama|Western +8620,3.75,"Exterminating Angel, The (Ángel exterminador, El) (1962)",Comedy|Drama|Fantasy|Mystery +8622,3.5652173913043477,Fahrenheit 9/11 (2004),Documentary +8623,3.4615384615384617,Roxanne (1987),Comedy|Romance +8625,3.0,"Same River Twice, The (2003)",Documentary +8629,3.0,"Book of Life, The (1998)",Comedy|Fantasy +8633,3.6875,"Last Starfighter, The (1984)",Action|Adventure|Comedy|Sci-Fi +8636,3.625,Spider-Man 2 (2004),Action|Adventure|Sci-Fi|IMAX +8638,3.8823529411764706,Before Sunset (2004),Drama|Romance +8640,2.5,King Arthur (2004),Action|Adventure|Drama|War +8641,3.514705882352941,Anchorman: The Legend of Ron Burgundy (2004),Comedy +8642,3.0,Sleepover (2004),Comedy +8643,3.5,"Cinderella Story, A (2004)",Comedy|Romance +8644,3.3421052631578947,"I, Robot (2004)",Action|Adventure|Sci-Fi|Thriller +8645,3.676470588235294,"Maria Full of Grace (Maria, Llena eres de gracia) (2004)",Crime|Drama +8650,4.25,Long Day's Journey Into Night (1962),Drama +8654,2.0,Prince Valiant (1954),Adventure +8656,3.8333333333333335,"Short Film About Killing, A (Krótki film o zabijaniu) (1988)",Crime|Drama +8657,3.5,"Tin Star, The (1957)",Western +8661,3.25,How the West Was Won (1962),Adventure|Drama|Western +8665,3.7905405405405403,"Bourne Supremacy, The (2004)",Action|Crime|Thriller +8666,2.0714285714285716,Catwoman (2004),Action|Crime|Fantasy +8667,2.75,A Home at the End of the World (2004),Drama|Romance +8670,4.5,"Testament of Dr. Mabuse, The (Das Testament des Dr. Mabuse) (1933)",Crime|Horror|Mystery|Thriller +8672,3.5,Battle Hymn (1957),Drama +8675,5.0,"Enemy Below, The (1957)",Action|Drama|War +8684,4.0,"Man Escaped, A (Un condamné à mort s'est échappé ou Le vent souffle où il veut) (1956)",Adventure|Drama +8689,4.0,"Shock to the System, A (1990)",Comedy|Crime|Thriller +8690,3.0,Slaughterhouse-Five (1972),Comedy|Drama|Sci-Fi|War +8695,3.0,"Bachelor and the Bobby-Soxer, The (1947)",Comedy +8699,5.0,Dancing in September (2000),Drama +8700,3.0,Destination Tokyo (1943),Adventure|War +8709,3.0,How I Got Into College (1989),Comedy|Romance +8711,3.75,Mr. Blandings Builds His Dream House (1948),Comedy +8712,4.0,My Favorite Wife (1940),Comedy|Romance +8713,3.5,"New Adventures of Pippi Longstocking, The (1988)",Adventure|Children|Fantasy|Musical +8718,2.5,"Snake Pit, The (1948)",Drama +8720,2.5,"Super, The (1991)",Comedy +8722,1.0,Two of a Kind (1983),Comedy|Fantasy|Romance +8724,3.75,"Leopard, The (Gattopardo, Il) (1963)",Drama|War +8725,2.5,"Goodbye, Columbus (1969)",Comedy|Drama|Romance +8727,1.5,"Day of the Locust, The (1975)",Drama +8730,4.5,To End All Wars (2001),Action|Drama|War +8743,2.5,Biggles (1986),Adventure|Fantasy|Sci-Fi +8745,3.5,"World of Suzie Wong, The (1960)",Drama|Romance +8751,4.5,Gun Crazy (a.k.a. Deadly Is the Female) (1949),Crime|Drama|Film-Noir +8752,4.0,"Set-Up, The (1949)",Drama|Film-Noir|Romance +8753,4.0,Unprecedented: The 2000 Presidential Election (2002),Documentary +8754,4.0,"Prime of Miss Jean Brodie, The (1969)",Drama +8761,3.5,"Three Lives of Thomasina, The (1964)",Children|Drama +8763,1.5,"One and Only, Genuine, Original Family Band, The (1968)",Children|Comedy|Musical +8765,4.0,This Gun for Hire (1942),Crime|Film-Noir|Thriller +8768,3.5,Criss Cross (1949),Crime|Drama|Film-Noir +8772,3.75,"Spy Who Came in from the Cold, The (1965)",Drama|Thriller +8777,0.5,Roadkill (a.k.a. Roadkill: Move or Die) (1989),Drama +8779,4.0,Bon Voyage (2003),Comedy|Drama +8781,3.0,"Manchurian Candidate, The (2004)",Thriller +8783,3.0172413793103448,"Village, The (2004)",Drama|Mystery|Thriller +8784,3.6293103448275863,Garden State (2004),Comedy|Drama|Romance +8785,3.5,Early Summer (Bakushû) (1951),Drama +8790,3.0,Revengers Tragedy (2002),Comedy|Horror +8795,2.5,Musa the Warrior (Musa) (2001),Action|Adventure|Drama|War +8796,3.25,"Funny Thing Happened on the Way to the Forum, A (1966)",Comedy|Musical +8797,4.5,Salesman (1969),Documentary +8798,3.7125,Collateral (2004),Action|Crime|Drama|Thriller +8799,2.5,Little Black Book (2004),Comedy|Romance +8800,4.0,Code 46 (2003),Romance|Sci-Fi +8807,3.6363636363636362,Harold and Kumar Go to White Castle (2004),Adventure|Comedy +8808,3.0625,"Princess Diaries 2: Royal Engagement, The (2004)",Comedy|Romance +8810,2.638888888888889,AVP: Alien vs. Predator (2004),Action|Horror|Sci-Fi|Thriller +8811,0.5,Yu-Gi-Oh! (2004),Action|Adventure|Animation|Fantasy +8813,3.0,We Don't Live Here Anymore (2004),Drama +8814,1.0,Without a Paddle (2004),Comedy +8819,2.5,Double Trouble (1967),Musical +8820,2.5,Spinout (1966),Comedy|Musical +8821,2.5,Harum Scarum (1965),Comedy|Musical +8823,3.0,"Sting II, The (1983)",Comedy|Crime +8827,4.357142857142857,"Bill Cosby, Himself (1983)",Comedy|Documentary +8828,3.0,Dead Ringer (1964),Drama|Thriller +8830,2.25,Anacondas: The Hunt for the Blood Orchid (2004),Adventure|Drama|Horror|Sci-Fi|Thriller +8831,2.5,Suspect Zero (2004),Crime|Thriller +8832,1.5,Warriors of Heaven and Earth (Tian di ying xiong) (2003),Action|Adventure|Drama +8833,3.875,Vanity Fair (2004),Drama|Romance +8835,1.5,Paparazzi (2004),Drama|Thriller +8836,2.3333333333333335,Wicker Park (2004),Drama|Romance|Thriller +8838,3.6,Alice Doesn't Live Here Anymore (1974),Drama|Romance +8839,2.5,"Mangler, The (1995)",Horror +8840,2.5,Who's That Knocking at My Door? (1967),Drama +8848,2.0,"Vitelloni, I (a.k.a. The Young and the Passionate) (1953)",Drama +8850,2.5,Flipper (1963),Adventure|Children|Drama +8851,2.0,Smile (1975),Comedy +8853,2.5,"Small Circle of Friends, A (1980)",Drama +8854,3.5,Night of the Demons (1988),Horror +8857,3.0,Lilith (1964),Drama +8859,0.5,SuperBabies: Baby Geniuses 2 (2004),Comedy +8860,2.5454545454545454,Cellular (2004),Action|Crime|Drama|Mystery|Thriller +8861,2.75,Resident Evil: Apocalypse (2004),Action|Horror|Sci-Fi|Thriller +8864,3.5,Mr. 3000 (2004),Comedy|Drama +8865,2.727272727272727,Sky Captain and the World of Tomorrow (2004),Action|Adventure|Sci-Fi +8866,2.75,Wimbledon (2004),Comedy|Romance +8870,3.1,"Forgotten, The (2004)",Drama|Mystery|Sci-Fi|Thriller +8871,3.5,"Last Shot, The (2004)",Comedy +8872,3.5,"Dirty Shame, A (2004)",Comedy +8873,3.673076923076923,"Motorcycle Diaries, The (Diarios de motocicleta) (2004)",Adventure|Drama +8874,3.8714285714285714,Shaun of the Dead (2004),Comedy|Horror +8879,4.0,Murder on the Orient Express (1974),Crime|Mystery|Thriller +8880,3.375,Mask (1985),Drama +8882,3.25,"Boston Strangler, The (1968)",Crime|Drama|Mystery|Thriller +8884,4.0,"Man with One Red Shoe, The (1985)",Comedy|Thriller +8892,4.0,Basket Case 3: The Progeny (1992),Comedy|Horror +8893,4.5,Basket Case 2 (1990),Comedy|Horror +8899,4.0,Hardcore (1979),Drama +8903,3.5,"Terror, The (1963)",Horror|Mystery +8906,3.5,Cannibal Holocaust (1980),Horror +8907,2.6818181818181817,Shark Tale (2004),Animation|Children|Comedy +8908,3.25,Ladder 49 (2004),Action|Drama|Thriller +8910,3.611111111111111,I Heart Huckabees (2004),Comedy +8911,2.5,Raise Your Voice (2004),Romance +8914,3.75,Primer (2004),Drama|Sci-Fi +8915,2.0,Stage Beauty (2004),Drama +8916,3.4285714285714284,Shall We Dance? (2004),Comedy|Romance +8917,3.425,Team America: World Police (2004),Action|Adventure|Animation|Comedy +8918,3.0,Eulogy (2004),Comedy|Crime|Drama +8920,3.5,"Country Girl, The (1954)",Drama +8921,2.5,"Rose Tattoo, The (1955)",Drama|Romance +8923,4.25,Tess (1979),Drama|Romance +8927,3.0,Cannonball (1976),Action|Comedy|Drama +8928,3.5,"Fearless Vampire Killers, The (1967)",Comedy|Horror +8929,4.0,Black Beauty (1971),Children|Drama +8930,3.5,"Five Obstructions, The (Fem benspænd, De) (2003)",Documentary +8931,3.5,Born Rich (2003),Documentary +8933,4.666666666666667,"Decline of the American Empire, The (Déclin de l'empire américain, Le) (1986)",Comedy|Drama +8935,1.0,All I Want for Christmas (1991),Children|Comedy|Romance +8937,4.375,Friday Night Lights (2004),Action|Drama +8938,4.666666666666667,Tarnation (2003),Documentary +8943,3.5,Being Julia (2004),Comedy|Drama +8946,2.5,Surviving Christmas (2004),Comedy +8947,2.769230769230769,"Grudge, The (2004)",Horror|Mystery|Thriller +8948,2.625,Alfie (2004),Comedy|Drama|Romance +8949,3.6666666666666665,Sideways (2004),Comedy|Drama|Romance +8950,3.6842105263157894,The Machinist (2004),Drama|Mystery|Thriller +8951,4.0,Vera Drake (2004),Drama +8954,3.5,Lightning in a Bottle (2004),Documentary +8955,5.0,Undertow (2004),Crime|Drama|Thriller +8957,3.272727272727273,Saw (2004),Horror|Mystery|Thriller +8958,3.9523809523809526,Ray (2004),Drama +8961,3.861111111111111,"Incredibles, The (2004)",Action|Adventure|Animation|Children|Comedy +8963,0.5,It's All About Love (2003),Drama|Romance|Sci-Fi|Thriller +8964,1.5,Callas Forever (2002),Drama +8965,2.7857142857142856,"Polar Express, The (2004)",Adventure|Animation|Children|Fantasy|IMAX +8966,3.5357142857142856,Kinsey (2004),Drama +8968,2.3333333333333335,After the Sunset (2004),Action|Adventure|Comedy|Crime|Thriller +8969,3.3125,Bridget Jones: The Edge of Reason (2004),Comedy|Drama|Romance +8970,3.8513513513513513,Finding Neverland (2004),Drama +8972,3.414285714285714,National Treasure (2004),Action|Adventure|Drama|Mystery|Thriller +8973,3.9375,Bad Education (La mala educación) (2004),Drama|Thriller +8974,2.5,"SpongeBob SquarePants Movie, The (2004)",Adventure|Animation|Children|Comedy +8977,3.5,Alexander (2004),Action|Adventure|Drama|War +8979,4.25,Guerrilla: The Taking of Patty Hearst (2004),Documentary +8981,3.9210526315789473,Closer (2004),Drama|Romance +8982,3.5,I Am David (2003),Drama +8983,3.323529411764706,House of Flying Daggers (Shi mian mai fu) (2004),Action|Drama|Romance +8984,2.911764705882353,Ocean's Twelve (2004),Action|Comedy|Crime|Thriller +8985,1.7916666666666667,Blade: Trinity (2004),Action|Fantasy|Horror|Thriller +8986,4.0,"Bellboy, The (1960)",Comedy +8987,3.5,Bush's Brain (2004),Documentary +8988,4.0,Cinderfella (1960),Comedy +8989,3.5,Damn Yankees! (1958),Comedy|Musical +8998,3.5,That's Entertainment (1974),Documentary +8999,4.0,"That's Entertainment, Part II (1976)",Documentary +9000,3.5,That's Entertainment! III (1994),Documentary +9001,4.0,"Wackiest Ship in the Army, The (1960)",Comedy|War +9004,3.5,D.A.R.Y.L. (1985),Adventure|Children|Sci-Fi +9005,2.5,Fire in the Sky (1993),Drama|Mystery|Sci-Fi +9010,5.0,Love Me If You Dare (Jeux d'enfants) (2003),Drama|Romance +9012,4.0,Ruby Gentry (1952),Drama +9018,3.6666666666666665,Control Room (2004),Documentary|War +25737,0.5,"Golem, The (Golem, wie er in die Welt kam, Der) (1920)",Fantasy|Horror +25744,4.5,Haxan: Witchcraft Through the Ages (a.k.a. The Witches) (1922),Documentary|Horror +25750,4.3,Sherlock Jr. (1924),Comedy|Fantasy|Romance +25752,4.0,"Freshman, The (1925)",Comedy +25753,3.5,Greed (1924),Drama +25755,3.5,"Phantom of the Opera, The (1925)",Drama|Horror +25763,2.0,"Pandora's Box (Büchse der Pandora, Die) (1929)",Drama +25764,4.5,"Cameraman, The (1928)",Comedy|Drama|Romance +25769,4.0,"Steamboat Bill, Jr. (1928)",Comedy|Romance +25771,3.35,"Andalusian Dog, An (Chien andalou, Un) (1929)",Fantasy +25773,4.0,Little Caesar (1931),Crime|Drama +25774,3.0,"Golden Age, The (Âge d'Or, L') (1930)",Comedy|Drama|Romance +25777,3.6666666666666665,Monkey Business (1931),Comedy +25788,3.5,Scarface (1932),Crime|Drama +25792,3.5,"I Was Born, But... (a.k.a. Children of Tokyo) (Otona no miru ehon - Umarete wa mita keredo) (1932)",Comedy|Drama +25795,4.0,Dinner at Eight (1933),Comedy|Drama|Romance +25801,5.0,She Done Him Wrong (1933),Comedy|Romance +25805,3.8333333333333335,"Atalante, L' (1934)",Comedy|Drama|Romance +25807,3.0,"Black Cat, The (1934)",Adventure|Crime|Horror|Thriller +25825,3.75,Fury (1936),Drama|Film-Noir +25826,0.5,Libeled Lady (1936),Comedy|Romance +25827,3.5,Mr. Deeds Goes to Town (1936),Comedy|Romance +25828,4.0,"Petrified Forest, The (1936)",Crime|Drama|Romance +25839,3.5,Nothing Sacred (1937),Comedy|Drama|Romance +25841,2.5,Stage Door (1937),Drama +25842,3.5,Topper (1937),Comedy|Fantasy|Romance +25850,3.875,Holiday (1938),Comedy|Drama|Romance +25852,5.0,Gaslight (1940),Mystery|Thriller +25856,4.0,Wuthering Heights (1939),Drama|Romance +25865,4.0,"Letter, The (1940)",Drama|Film-Noir +25868,3.6666666666666665,Ball of Fire (1941),Comedy|Romance +25874,1.75,Never Give a Sucker an Even Break (1941),Comedy|Musical +25882,4.5,"Hard Way, The (1943)",Drama +25886,4.0,Random Harvest (1942),Drama|Romance +25891,2.75,Heaven Can Wait (1943),Comedy|Fantasy|Romance +25898,3.5,Day of Wrath (Vredens dag) (1943),Drama +25900,3.5,"Curse of the Cat People, The (1944)",Drama +25901,0.5,"Henry V (Chronicle History of King Henry the Fift with His Battell Fought at Agincourt in France, The) (1944)",Drama|War +25904,3.5,Ministry of Fear (1944),Drama|Film-Noir|Thriller +25906,2.5,Mr. Skeffington (1944),Drama|Romance +25911,3.0,"Woman in the Window, The (1944)",Crime|Film-Noir|Thriller +25916,2.5,They Were Expendable (1945),Drama|War +25920,3.5,"Blue Dahlia, The (1946)",Crime|Drama|Film-Noir|Mystery|Thriller +25929,4.0,Nightmare Alley (1947),Drama|Film-Noir +25930,3.5,Odd Man Out (1947),Crime|Drama|Film-Noir|Thriller +25937,2.8333333333333335,Easter Parade (1948),Musical|Romance +25940,2.5,"Lady from Shanghai, The (1947)",Drama|Film-Noir|Mystery +25941,4.0,Letter from an Unknown Woman (1948),Drama|Romance +25945,4.5,They Live by Night (1949),Crime|Film-Noir|Romance +25947,4.25,Unfaithfully Yours (1948),Comedy +25952,4.25,"Letter to Three Wives, A (1949)",Comedy|Drama +25962,4.0,King Solomon's Mines (1950),Action|Adventure|Romance +25965,2.0,Summer Stock (1950),Comedy|Musical|Romance +25971,3.75,Carrie (1952),Drama|Romance +25972,4.0,Clash by Night (1952),Drama|Film-Noir +25993,2.5,Magnificent Obsession (1954),Drama|Romance +25995,3.5,Samurai I: Musashi Miyamoto (Miyamoto Musashi) (1954),Action|Adventure|Drama +25996,4.5,"Star Is Born, A (1954)",Drama|Musical +25999,4.5,The Wild One (1953),Drama +26003,3.5,Night and Fog (Nuit et brouillard) (1955),Crime|Documentary|War +26005,3.5,Samurai II: Duel at Ichijoji Temple (Zoku Miyamoto Musashi: Ichijôji no kettô) (1955),Action|Adventure|Drama +26007,4.5,"Unknown Soldier, The (Tuntematon sotilas) (1955)",Drama|War +26009,0.5,"Burmese Harp, The (Biruma no tategoto) (1956)",Drama|War +26010,3.0,Carousel (1956),Musical|Romance +26012,3.5,Samurai III: Duel on Ganryu Island (a.k.a. Bushido) (Miyamoto Musashi kanketsuhen: kettô Ganryûjima) (1956),Action|Adventure|Drama +26013,2.5,Rodan (Sora no daikaijû Radon) (1956),Adventure +26025,2.0,"Spirit of St. Louis, The (1957)",Adventure|Drama +26052,3.75,Pickpocket (1959),Crime|Drama +26079,4.0,David and Lisa (1962),Drama +26082,4.5,Harakiri (Seppuku) (1962),Drama +26084,3.75,"Music Man, The (1962)",Children|Comedy|Musical|Romance +26085,3.0,Mutiny on the Bounty (1962),Adventure|Drama|Romance +26093,3.5,"Wonderful World of the Brothers Grimm, The (1962)",Adventure|Animation|Children|Comedy|Drama|Fantasy|Musical|Romance +26094,5.0,"Eclisse, L' (Eclipse) (1962)",Drama +26111,3.3333333333333335,Becket (1964),Drama +26116,3.0,"Hush... Hush, Sweet Charlotte (1964)",Horror|Thriller +26117,3.5,"Killers, The (1964)",Action|Crime|Drama|Film-Noir|Thriller +26122,3.5,Onibaba (1964),Drama|Horror|War +26125,3.5,"Spider Baby or, The Maddest Story Ever Told (Spider Baby) (1968)",Comedy|Horror +26131,4.083333333333333,"Battle of Algiers, The (La battaglia di Algeri) (1966)",Drama|War +26133,3.375,"Charlie Brown Christmas, A (1965)",Animation|Children|Comedy +26147,4.5,"Thousand Clowns, A (1965)",Comedy|Drama|Romance +26150,5.0,Andrei Rublev (Andrey Rublyov) (1969),Drama|War +26151,5.0,Au Hasard Balthazar (1966),Crime|Drama +26152,4.0,Batman (1966),Action|Adventure|Comedy +26157,0.5,Manos: The Hands of Fate (1966),Horror +26160,3.5,Asterix and the Gauls (Astérix le Gaulois) (1967),Action|Adventure|Animation|Children|Comedy +26163,4.0,Don't Look Back (1967),Documentary|Musical +26164,4.0,Fando and Lis (Fando y Lis) (1968),Adventure|Fantasy +26171,3.75,Play Time (a.k.a. Playtime) (1967),Comedy +26172,4.0,Point Blank (1967),Action|Crime|Drama|Thriller +26176,3.0,Titicut Follies (1967),Documentary|Drama +26178,3.6666666666666665,Two for the Road (1967),Comedy|Drama|Romance +26180,3.5,Up the Down Staircase (1967),Drama +26188,0.5,"Heart Is a Lonely Hunter, The (1968)",Drama +26198,3.0,"Yours, Mine and Ours (1968)",Children|Comedy +26199,4.0,Alice's Restaurant (1969),Comedy|Drama +26208,4.0,My Night At Maud's (Ma Nuit Chez Maud) (1969),Comedy|Drama|Romance +26228,4.0,"Swedish Love Story, A (Kärlekshistoria, En) (1970)",Drama|Romance +26229,3.5,"Landlord, The (1970)",Comedy|Drama +26231,3.8333333333333335,Performance (1970),Crime|Drama|Thriller +26241,4.0,The Devils (1971),Drama +26242,4.0,Duel (1971),Action|Mystery|Thriller +26251,4.0,Mon Oncle Antoine (1971),Drama +26258,4.0,"Topo, El (1970)",Fantasy|Western +26265,3.5,Dr. Phibes Rises Again (1972),Adventure|Comedy|Horror|Romance +26268,4.0,The Tall Blond Man with One Black Shoe (1972),Comedy|Mystery +26271,4.0,Lady Sings the Blues (1972),Drama|Musical +26294,3.75,My Name Is Nobody (Il Mio nome è Nessuno) (1973),Comedy|Western +26302,3.5,Scarecrow (1973),Drama +26303,2.5,Sisters (1973),Horror|Thriller +26313,3.75,California Split (1974),Comedy|Drama +26317,2.0,Emmanuelle (1974),Drama|Romance +26318,4.5,"Phantom of Liberty, The (Fantôme de la liberté, Le) (1974)",Comedy|Drama +26320,2.5,Flesh for Frankenstein (a.k.a. Andy Warhol's Frankenstein) (1973),Drama|Horror|Sci-Fi +26322,3.5,Gone in 60 Seconds (1974),Action|Crime|Drama +26323,4.5,"Groove Tube, The (1974)",Comedy +26324,3.5,Harry and Tonto (1974),Comedy|Drama +26325,4.0,Hearts and Minds (1974),Documentary|War +26326,4.5,"Holy Mountain, The (Montaña sagrada, La) (1973)",Drama +26338,3.0,Cousin cousine (1975),Comedy|Romance +26342,3.5,"Farewell, My Lovely (1975)",Crime|Mystery|Thriller +26346,3.0,"Story of Adele H., The (Histoire d'Adèle H., L') (1975)",Drama +26349,3.5,Night Moves (1975),Crime|Thriller +26350,4.5,"Passenger, The (Professione: reporter) (1975)",Drama +26366,2.25,Harlan County U.S.A. (1976),Documentary +26371,2.5,The Missouri Breaks (1976),Drama|Western +26375,2.5,Silver Streak (1976),Action|Comedy|Crime +26386,3.75,High Anxiety (1977),Comedy|Thriller +26391,2.0,"New York, New York (1977)",Drama|Musical|Romance +26393,3.5,Sorcerer (1977),Action|Thriller +26394,3.0,"Turning Point, The (1977)",Drama|Romance +26400,4.5,Gates of Heaven (1978),Documentary +26404,2.5,In Praise of Older Women (1978),Drama +26409,1.0,"Clonus Horror, The (1979)",Horror|Sci-Fi +26413,4.0,Snake in the Eagle's Shadow (Se ying diu sau) (1978),Action|Comedy +26414,3.5,"Wedding, A (1978)",Comedy|Drama +26422,5.0,Hair (1979),Comedy|Drama|Musical +26425,3.5,"In-Laws, The (1979)",Action|Comedy +26430,1.0,"Luna, La (1979)",Drama +26435,2.5,Starting Over (1979),Comedy|Romance +26462,3.0,Bad Boys (1983),Crime|Drama|Thriller +26464,3.0,Blue Thunder (1983),Action|Crime|Drama +26467,1.0,"Day After, The (1983)",Drama|Sci-Fi +26471,2.0,Eddie Murphy Delirious (1983),Comedy|Documentary +26472,3.8333333333333335,"Norte, El (1984)",Adventure|Drama +26485,0.5,Rumble Fish (1983),Drama +26487,2.0,Star 80 (1983),Drama +26492,3.5,Twilight Zone: The Movie (1983),Fantasy|Horror|Sci-Fi|Thriller +26494,3.8333333333333335,Suburbia (1984),Drama +26501,5.0,Choose Me (1984),Comedy|Romance +26505,4.5,Comfort and Joy (1984),Comedy +26509,4.5,Electric Dreams (1984),Comedy|Drama|Romance|Sci-Fi +26513,2.5,"Ice Pirates, The (1984)",Action|Adventure|Comedy|Sci-Fi +26524,4.5,"Times of Harvey Milk, The (1984)",Documentary +26547,4.0,Police Story (Ging chaat goo si) (1985),Action|Comedy|Crime|Thriller +26554,4.25,"Quiet Earth, The (1985)",Drama|Mystery|Sci-Fi +26555,3.1666666666666665,Spies Like Us (1985),Comedy +26562,4.0,White Nights (1985),Drama +26564,2.25,'Round Midnight (1986),Drama|Musical +26574,4.0,Ginger and Fred (Ginger e Fred) (1986),Comedy|Drama +26578,5.0,"Sacrifice, The (Offret - Sacraficatio) (1986)",Drama +26581,2.0,Sherman's March (1985),Documentary +26585,3.5,"Better Tomorrow, A (Ying hung boon sik) (1986)",Crime|Drama|Thriller +26587,4.4,"Decalogue, The (Dekalog) (1989)",Crime|Drama|Romance +26599,5.0,"Law of Desire (Ley del deseo, La) (1987)",Comedy|Drama|Romance +26603,3.75,Prince of Darkness (1987),Fantasy|Horror|Sci-Fi|Thriller +26606,4.25,"Chinese Ghost Story, A (Sinnui yauwan) (1987)",Action|Fantasy|Horror|Romance +26622,3.5,Dominick and Eugene (1988),Drama +26631,3.0,Alice (Neco z Alenky) (1988),Animation|Fantasy|Mystery +26662,3.8333333333333335,Kiki's Delivery Service (Majo no takkyûbin) (1989),Adventure|Animation|Children|Drama|Fantasy +26663,4.0,Monsieur Hire (1989),Crime|Romance|Thriller +26680,3.5,Cry-Baby (1990),Comedy|Musical|Romance +26684,4.0,Frankenhooker (1990),Comedy|Horror +26686,3.5,Ghost Dad (1990),Comedy|Fantasy +26689,2.0,Havana (1990),Drama +26694,4.0,Ju Dou (1990),Drama +26695,3.5,"Krays, The (1990)",Drama +26700,1.6666666666666667,Nuns on the Run (1990),Comedy|Crime +26702,4.0,"Reflecting Skin, The (1990)",Drama|Horror|Thriller +26704,4.0,State of Grace (1990),Crime|Drama|Thriller +26712,4.5,35 Up (1991),Documentary +26726,2.5,Dutch (1991),Comedy +26729,4.375,Hearts of Darkness: A Filmmakers Apocalypse (1991),Documentary +26731,4.0,Homicide (1991),Crime|Drama|Thriller +26732,4.0,Johnny Stecchino (1991),Comedy +26736,4.0,Riki-Oh: The Story of Ricky (Lik Wong) (1991),Action|Crime|Thriller +26737,4.0,Light Sleeper (1992),Crime|Drama +26749,5.0,Prospero's Books (1991),Drama|Fantasy +26750,3.0,Quigley Down Under (1990),Adventure|Drama|Western +26775,1.5,Johnny Suede (1991),Comedy|Musical|Romance +26776,3.9166666666666665,Porco Rosso (Crimson Pig) (Kurenai no buta) (1992),Adventure|Animation|Comedy|Fantasy|Romance +26782,3.0,"Mambo Kings, The (1992)",Drama|Musical +26784,3.0,Night and the City (1992),Crime|Drama +26788,3.5,"Story of Qiu Ju, The (Qiu Ju da guan si) (1992)",Comedy|Drama +26791,5.0,Shining Through (1992),Drama|Romance|Thriller|War +26797,5.0,Visions of Light: The Art of Cinematography (1992),Documentary +26809,4.5,"Baby of Mâcon, The (a.k.a. The Baby of Macon) (1993)",Drama +26812,4.0,Barbarians at the Gate (1993),Drama +26819,4.0,Fortress (1992),Action|Sci-Fi +26838,3.5,"Snapper, The (1993)",Comedy|Drama +26840,3.5,Sonatine (Sonachine) (1993),Action|Comedy|Crime|Drama +26842,4.0,Tai Chi Master (Twin Warriors) (Tai ji: Zhang San Feng) (1993),Action|Adventure|Comedy|Drama +26843,5.0,Three of Hearts (1993),Comedy|Romance +26850,3.0,71 Fragments of a Chronology of Chance (71 Fragmente einer Chronologie des Zufalls) (1994),Drama +26865,4.5,Fist of Legend (Jing wu ying xiong) (1994),Action|Drama +26870,1.5,Major League II (1994),Comedy +26886,3.0,"Defender, The (a.k.a. Bodyguard from Beijing, The) (Zhong Nan Hai bao biao) (1994)",Action +26903,3.75,Whisper of the Heart (Mimi wo sumaseba) (1995),Animation|Drama|Romance +26915,4.5,Tromeo and Juliet (1996),Comedy|Drama +26947,4.5,Pusher (1996),Crime|Thriller +26974,4.166666666666667,Gummo (1997),Drama +27005,3.5,"Interview, The (1998)",Crime|Drama|Mystery|Thriller +27020,3.5,Gia (1998),Drama|Romance +27022,4.333333333333333,Thursday (1998),Action|Crime|Thriller +27032,2.0,Who Am I? (Wo shi shei) (1998),Action|Adventure|Comedy|Sci-Fi|Thriller +27109,3.75,Lady Snowblood (Shurayukihime) (1973),Action|Crime|Drama|Thriller +27156,4.5,"Neon Genesis Evangelion: The End of Evangelion (Shin seiki Evangelion Gekijô-ban: Air/Magokoro wo, kimi ni) (1997)",Action|Animation|Drama|Fantasy|Sci-Fi +27178,2.75,In July (Im Juli) (2000),Comedy|Romance +27186,4.5,Kirikou and the Sorceress (Kirikou et la sorcière) (1998),Adventure|Animation|Children|Fantasy +27193,2.0,Taxi 2 (2000),Action|Comedy +27255,2.5,"Wind Will Carry Us, The (Bad ma ra khahad bord) (1999)",Drama +27266,3.375,2046 (2004),Drama|Fantasy|Romance|Sci-Fi +27317,3.75,Audition (Ôdishon) (1999),Drama|Horror|Mystery|Romance|Thriller +27322,3.5,Paragraph 175 (2000),Documentary +27329,4.0,Paradise Lost 2: Revelations (2000),Documentary +27334,3.5,Sound and Fury (2000),Documentary +27338,3.0,The Hole (2001),Drama|Horror|Mystery|Thriller +27351,1.0,Spiral (2000),Horror +27369,3.5,Daria: Is It Fall Yet? (2000),Animation|Comedy +27373,3.5,61* (2001),Drama +27376,0.5,"Tunnel, The (Tunnel, Der) (2001)",Action|Drama|Thriller +27397,4.0,Joint Security Area (Gongdong gyeongbi guyeok JSA) (2000),Crime|Drama|Mystery|Thriller|War +27416,4.0,Jalla! Jalla! (2000),Comedy|Drama|Romance +27423,4.0,"O Auto da Compadecida (Dog's Will, A) (2000)",Adventure|Comedy +27441,3.0,Blood: The Last Vampire (2000),Action|Animation|Horror +27478,2.6666666666666665,Ali G Indahouse (2002),Comedy +27482,1.0,Cube 2: Hypercube (2002),Horror|Mystery|Sci-Fi +27523,4.25,My Sassy Girl (Yeopgijeogin geunyeo) (2001),Comedy|Romance +27544,4.0,Waterboys (2001),Comedy +27555,4.0,Fubar (2002),Comedy +27592,5.0,Sympathy for Mr. Vengeance (Boksuneun naui geot) (2002),Crime|Drama +27604,2.8,Suicide Club (Jisatsu saakuru) (2001),Horror|Mystery|Thriller +27646,4.5,Soldier's Girl (2003),Drama +27648,1.5,Bright Young Things (2003),Comedy|Drama +27660,3.676470588235294,"Animatrix, The (2003)",Action|Animation|Drama|Sci-Fi +27664,5.0,"Brown Bunny, The (2003)",Drama +27674,3.75,11:14 (2003),Comedy|Crime|Drama|Mystery|Thriller +27685,1.0,Bring It On Again (2004),Comedy +27689,1.0,"Crimson Rivers 2: Angels of the Apocalypse (Rivières pourpres II - Les anges de l'apocalypse, Les) (2004)",Action|Crime|Thriller +27700,4.5,Evil (Ondskan) (2003),Drama +27704,2.5,Battle Royale 2: Requiem (Batoru rowaiaru II: Chinkonka) (2003),Action|Drama|Thriller|War +27706,3.1333333333333333,Lemony Snicket's A Series of Unfortunate Events (2004),Adventure|Children|Comedy|Fantasy +27713,4.0,Bukowski: Born into This (2003),Documentary +27721,3.909090909090909,"Very Long Engagement, A (Un long dimanche de fiançailles) (2004)",Drama|Mystery|Romance|War +27722,2.5,Last Life in the Universe (Ruang rak noi nid mahasan) (2003),Drama|Romance +27724,5.0,Hitler: The Rise of Evil (2003),Drama +27727,4.0,Head-On (Gegen die Wand) (2004),Drama|Romance +27728,4.333333333333333,Ghost in the Shell 2: Innocence (a.k.a. Innocence) (Inosensu) (2004),Action|Animation|Drama|Sci-Fi|Thriller +27731,3.6666666666666665,"Cat Returns, The (Neko no ongaeshi) (2002)",Adventure|Animation|Children|Fantasy +27741,4.25,"Twilight Samurai, The (Tasogare Seibei) (2002)",Drama|Romance +27751,3.5,'Salem's Lot (2004),Drama|Horror|Mystery|Thriller +27768,3.5,Intimate Strangers (Confidences trop intimes) (2004),Drama +27772,2.25,Ju-on: The Grudge (2002),Horror +27773,3.921875,Old Boy (2003),Mystery|Thriller +27778,3.5,Ginger Snaps Back: The Beginning (2004),Fantasy|Horror +27783,4.0,"Lost Embrace (Abrazo partido, El) (2004)",Comedy|Drama +27784,2.0,One Missed Call (Chakushin ari) (2003),Horror|Mystery +27788,3.2142857142857144,"Jacket, The (2005)",Drama|Mystery|Sci-Fi|Thriller +27790,3.9,Millions (2004),Children|Comedy|Crime|Drama|Fantasy +27792,5.0,"Saddest Music in the World, The (2003)",Comedy|Drama|Fantasy|Musical|Romance +27793,1.75,Starship Troopers 2: Hero of the Federation (2004),Action|Horror|Sci-Fi|War +27798,1.0,Ju-on: The Grudge 2 (2003),Horror +27800,3.5,Interstella 5555: The 5tory of the 5ecret 5tar 5ystem (2003),Adventure|Animation|Fantasy|Musical|Sci-Fi +27801,3.25,Ong-Bak: The Thai Warrior (Ong Bak) (2003),Action|Thriller +27802,4.0,Infernal Affairs 2 (Mou gaan dou II) (2003),Action|Crime|Drama|Thriller +27803,4.333333333333333,"Sea Inside, The (Mar adentro) (2004)",Drama +27808,2.8333333333333335,Spanglish (2004),Comedy|Drama|Romance +27812,4.5,Festival Express (2003),Documentary|Musical +27815,3.5833333333333335,"Chorus, The (Choristes, Les) (2004)",Drama +27816,2.5,Saints and Soldiers (2003),Action|Adventure|Drama|War +27821,3.107142857142857,"Interpreter, The (2005)",Drama|Thriller +27822,3.1,Open Water (2003),Drama|Thriller +27826,5.0,Touch of Pink (2004),Comedy|Drama|Romance +27831,3.7222222222222223,Layer Cake (2004),Crime|Drama|Thriller +27834,4.5,"Return, The (Vozvrashcheniye) (2003)",Drama +27837,3.0,Flight of the Phoenix (2004),Action|Adventure +27838,3.625,Mean Creek (2004),Drama|Thriller +27839,1.5,"Ring Two, The (2005)",Drama|Horror|Mystery|Thriller +27846,4.25,"Corporation, The (2003)",Documentary +27850,3.3,"Yes Men, The (2003)",Documentary +27851,3.5,"Fond Kiss, A (Ae Fond Kiss...) (2004)",Drama|Romance +27857,0.5,As it is in Heaven (Så som i himmelen) (2004),Drama|Musical|Romance +27869,3.0,Tae Guk Gi: The Brotherhood of War (Taegukgi hwinalrimyeo) (2004),Action|Drama|War +27871,3.0,Something the Lord Made (2004),Drama +27873,3.5,Metallica: Some Kind of Monster (2004),Documentary +27875,4.0,Redemption: The Stan Tookie Williams Story (2004),Crime|Documentary|Drama +27876,3.0,Schultze Gets the Blues (2003),Comedy|Drama +27878,3.7857142857142856,Born into Brothels (2004),Documentary +27879,2.3333333333333335,DiG! (2004),Documentary +27882,5.0,Riding Giants (2004),Documentary +27899,3.5,What the #$*! Do We Know!? (a.k.a. What the Bleep Do We Know!?) (2004),Comedy|Documentary|Drama +27904,3.392857142857143,"Scanner Darkly, A (2006)",Animation|Drama|Mystery|Sci-Fi|Thriller +27912,4.0,Outfoxed: Rupert Murdoch's War on Journalism (2004),Documentary +27922,4.0,Jerry Seinfeld: 'I'm Telling You for the Last Time' (1998),Comedy|Documentary +30707,3.7,Million Dollar Baby (2004),Drama +30712,4.25,"Narrow Margin, The (1952)",Crime|Drama|Film-Noir +30723,4.0,Vincent & Theo (1990),Drama +30745,3.6666666666666665,Gozu (Gokudô kyôfu dai-gekijô: Gozu) (2003),Comedy|Crime|Drama|Horror|Mystery +30749,3.984375,Hotel Rwanda (2004),Drama|War +30783,3.0,Blood and Black Lace (Sei donne per l'assassino) (1964),Horror|Thriller +30793,3.1808510638297873,Charlie and the Chocolate Factory (2005),Adventure|Children|Comedy|Fantasy|IMAX +30803,3.8333333333333335,3-Iron (Bin-jip) (2004),Drama|Romance +30810,3.5689655172413794,"Life Aquatic with Steve Zissou, The (2004)",Adventure|Comedy|Fantasy +30812,3.6176470588235294,"Aviator, The (2004)",Drama +30816,3.8125,"Phantom of the Opera, The (2004)",Drama|Musical|Romance +30818,2.5,Beyond the Sea (2004),Drama|Musical +30820,3.4285714285714284,"Woodsman, The (2004)",Drama +30822,3.7222222222222223,In Good Company (2004),Comedy|Drama +30825,3.32,Meet the Fockers (2004),Comedy +30846,3.0,"Assassination of Richard Nixon, The (2004)",Crime|Drama|Thriller +30848,2.5,"Love Song for Bobby Long, A (2004)",Drama +30850,4.5,"Merchant of Venice, The (2004)",Drama +30867,4.0,Kamikaze Girls (Shimotsuma monogatari) (2004),Comedy +30883,2.0,Fat Albert (2004),Comedy|Fantasy +30892,3.5,In the Realms of the Unreal (2004),Animation|Documentary +30894,2.0,White Noise (2005),Drama|Horror|Mystery|Sci-Fi|Thriller +30898,3.3333333333333335,"Upside of Anger, The (2005)",Comedy|Drama|Romance +31000,2.5,Sweet Liberty (1986),Comedy +31026,4.5,"Phantom of the Opera, The (1989)",Drama|Horror|Musical +31035,3.25,Testament (1983),Drama +31101,4.0,Stander (2003),Action|Crime|Drama +31104,3.0,Hester Street (1975),Drama +31109,3.0,"Bigamist, The (1953)",Drama +31114,4.0,Imaginary Heroes (2004),Comedy|Drama +31116,3.75,Sergeant York (1941),Drama|War +31150,3.75,Wizards (1977),Animation|Fantasy|Sci-Fi|War +31156,3.0,Abbott and Costello Meet the Invisible Man (1951),Comedy|Sci-Fi +31162,2.5,"Life and Death of Peter Sellers, The (2004)",Comedy|Drama +31184,4.5,Appleseed (Appurushîdo) (2004),Action|Animation|Fantasy|Sci-Fi +31193,4.0,"Many Adventures of Winnie the Pooh, The (1977)",Animation|Children|Musical +31221,2.3,Elektra (2005),Action|Adventure|Crime|Drama +31225,4.25,Coach Carter (2005),Drama +31270,3.5,Shivers (They Came from Within) (1975),Drama|Horror|Sci-Fi +31284,3.5,"Star Is Born, A (1976)",Drama|Musical|Romance +31290,0.5,Beastmaster 2: Through the Portal of Time (1991),Action|Adventure|Fantasy|Sci-Fi +31364,2.25,Memories of Murder (Salinui chueok) (2003),Crime|Drama|Mystery|Thriller +31374,2.25,Hobson's Choice (1954),Comedy|Drama|Romance +31408,4.25,Summer Storm (Sommersturm) (2004),Drama|Romance +31410,3.975,"Downfall (Untergang, Der) (2004)",Drama|War +31413,5.0,"White Sound, The (Das weiße Rauschen) (2001)",Drama +31420,3.5,Assault on Precinct 13 (2005),Action|Crime|Drama|Thriller +31422,2.0,Are We There Yet? (2005),Children|Comedy +31427,4.5,Hide and Seek (2005),Horror|Mystery|Thriller +31431,1.0,Boogeyman (2005),Drama|Horror|Mystery|Thriller +31433,4.166666666666667,"Wedding Date, The (2005)",Comedy|Romance +31435,4.75,Rory O'Shea Was Here (Inside I'm Dancing) (2004),Drama +31437,4.0,Nobody Knows (Dare mo shiranai) (2004),Drama +31445,2.0,Employee of the Month (2004),Comedy|Drama +31502,2.5,Salem's Lot (1979),Drama|Horror|Mystery|Thriller +31522,2.75,"Marriage of Maria Braun, The (Ehe der Maria Braun, Die) (1979)",Drama +31524,4.0,"Bitter Tears of Petra von Kant, The (bitteren Tränen der Petra von Kant, Die) (1972)",Drama +31547,4.5,Lessons of Darkness (Lektionen in Finsternis) (1992),Documentary|War +31549,4.0,Fata Morgana (1971),Documentary|Drama|Sci-Fi +31658,4.203703703703703,Howl's Moving Castle (Hauru no ugoku shiro) (2004),Adventure|Animation|Fantasy|Romance +31660,4.0,Steamboy (Suchîmubôi) (2004),Action|Animation|Drama|Sci-Fi +31682,4.5,"Nomi Song, The (2004)",Documentary|Musical +31685,3.2291666666666665,Hitch (2005),Comedy|Romance +31689,4.5,Inside Deep Throat (2005),Documentary +31694,2.1666666666666665,Bride & Prejudice (2004),Comedy|Musical|Romance +31696,3.24,Constantine (2005),Action|Fantasy|Horror|Thriller +31700,2.5,Because of Winn-Dixie (2005),Children|Comedy|Drama +31724,1.0,Pauly Shore Is Dead (2003),Comedy +31737,3.25,Bunny Lake Is Missing (1965),Mystery|Thriller +31747,0.5,The Boyfriend School (1990),Comedy|Romance +31770,3.0,Night and the City (1950),Film-Noir|Thriller +31804,3.5,Night Watch (Nochnoy dozor) (2004),Action|Fantasy|Horror|Mystery|Sci-Fi|Thriller +31878,3.6578947368421053,Kung Fu Hustle (Gong fu) (2004),Action|Comedy +31903,5.0,Zelary (2003),Drama|Romance +31921,4.0,"Seven-Per-Cent Solution, The (1976)",Adventure|Comedy|Crime|Drama|Mystery|Thriller +31923,4.0,"Three Musketeers, The (1973)",Action|Adventure|Comedy +31930,4.0,Masculin Féminin (1966),Drama +31952,3.6666666666666665,Control (Kontroll) (2003),Comedy|Crime|Drama|Mystery +31956,2.5,5x2 (2004),Drama|Romance +31963,3.5,Bed & Board (Domicile conjugal) (1970),Comedy|Drama +31973,5.0,Germany Year Zero (Germania anno zero) (Deutschland im Jahre Null) (1948),Drama|War +32017,3.0,"Pacifier, The (2005)",Action|Comedy +32019,2.1666666666666665,Be Cool (2005),Comedy|Crime|Musical +32022,3.0,Gunner Palace (2004),Documentary|War +32025,4.0,Walk on Water (2004),Drama|Thriller +32029,3.4444444444444446,Hostage (2005),Action|Crime|Drama|Thriller +32031,3.269230769230769,Robots (2005),Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi|IMAX +32078,3.0,Godzilla vs. Mechagodzilla II (Gojira VS Mekagojira) (1993),Action|Drama|Sci-Fi +32139,4.0,"Agony and the Ecstasy, The (1965)",Drama +32153,0.5,Once Upon a Forest (1993),Adventure|Animation|Children|Fantasy +32160,3.5,Twentieth Century (1934),Comedy +32170,1.5,Chronicles (Crónicas) (2004),Crime|Drama +32174,2.0,"Green Berets, The (1968)",Action|Drama|War +32203,4.0,Brian's Song (1971),Drama +32211,3.5,Thriller: A Cruel Picture (Thriller - en grym film) (1974),Action|Crime|Drama|Thriller +32234,4.25,Julia (1977),Drama +32280,2.0,The 3 Penny Opera (1931),Comedy|Drama|Musical +32289,5.0,Ice Princess (2005),Children|Comedy|Drama +32291,2.5,Melinda and Melinda (2004),Comedy|Drama +32296,2.1666666666666665,Miss Congeniality 2: Armed and Fabulous (2005),Adventure|Comedy|Crime +32298,3.5,Guess Who (2005),Comedy|Romance +32302,2.0,"League of Ordinary Gentlemen, A (2004)",Documentary +32349,3.0,Stella Dallas (1937),Drama +32352,3.0,"Thief and the Cobbler, The (a.k.a. Arabian Knight) (1995)",Adventure|Animation|Comedy|Fantasy +32369,3.5,Panic in the Streets (1950),Crime|Drama|Film-Noir|Thriller +32371,3.5,Call Northside 777 (1948),Crime|Drama|Film-Noir +32381,4.0,Bells Are Ringing (1960),Comedy|Musical|Romance +32387,4.0,"Sword of Doom, The (Dai-bosatsu tôge) (1966)",Action|Drama +32395,3.0,Attack of the Mushroom People (Matango) (1963),Fantasy|Horror|Sci-Fi|Thriller +32444,3.25,Carmen (1983),Drama|Musical|Romance +32460,5.0,Knockin' on Heaven's Door (1997),Action|Comedy|Crime|Drama +32464,3.0,City of Hope (1991),Drama +32469,4.0,We're No Angels (1955),Comedy|Crime|Drama +32515,5.0,Walker (1987),Adventure|Drama|War|Western +32525,5.0,The Earrings of Madame de... (1953),Drama|Romance +32562,4.0,Harvie Krumpet (2003),Animation|Comedy|Drama +32582,4.0,"Wild Parrots of Telegraph Hill, The (2003)",Documentary +32587,3.95,Sin City (2005),Action|Crime|Film-Noir|Mystery|Thriller +32591,4.0,Look at Me (Comme une image) (2004),Comedy|Drama|Romance +32596,3.1,Sahara (2005),Action|Adventure|Comedy +32598,3.0625,Fever Pitch (2005),Comedy|Romance +32632,4.0,Electra Glide in Blue (1973),Action|Crime +32666,1.0,National Lampoon's Lady Killers (National Lampoon's Gold Diggers) (2003),Comedy +32686,3.0,Blood on Satan's Claw (a.k.a. Satan's Skin) (1971),Horror|Thriller +32728,3.0,"Little Girl Who Lives Down the Lane, The (1976)",Drama|Mystery|Thriller +32735,4.0,Arabian Nights (Il fiore delle mille e una notte) (1974),Comedy|Drama|Fantasy +32743,3.5,Ringu 0: Bâsudei (2000),Drama|Horror|Thriller +32797,4.5,Satan's Brew (Satansbraten) (1976),Comedy|Drama +32825,4.25,Sexmission (Seksmisja) (1984),Adventure|Comedy|Sci-Fi +32840,4.5,Vincent (1982),Animation +32844,0.5,Waterloo Bridge (1940),Drama|Romance|War +32853,3.0,"Sorrow and the Pity, The (Le chagrin et la pitié) (1969)",Documentary|War +32882,2.75,"Big Store, The (1941)",Comedy|Musical +32892,4.0,Ivan's Childhood (a.k.a. My Name is Ivan) (Ivanovo detstvo) (1962),Drama|War +32898,4.333333333333333,"Trip to the Moon, A (Voyage dans la lune, Le) (1902)",Action|Adventure|Fantasy|Sci-Fi +32914,3.0,Carrie (2002),Drama|Horror|Thriller +32943,4.0,Life Is Sweet (1990),Comedy|Drama +33004,3.2941176470588234,"Hitchhiker's Guide to the Galaxy, The (2005)",Adventure|Comedy|Sci-Fi +33021,3.5,Dark Habits (Entre tinieblas) (1983),Comedy|Drama +33085,2.0,"Amityville Horror, The (2005)",Horror|Thriller +33124,3.5,Before the Fall (NaPolA - Elite für den Führer) (2004),Drama|War +33138,4.5,Palindromes (2004),Adventure|Comedy|Drama +33145,3.5,"Lot Like Love, A (2005)",Comedy|Drama|Romance +33154,3.642857142857143,Enron: The Smartest Guys in the Room (2005),Documentary +33158,1.0,xXx: State of the Union (2005),Action|Crime|Thriller +33162,2.95,Kingdom of Heaven (2005),Action|Drama|Romance|War +33164,1.8333333333333333,House of Wax (2005),Horror|Thriller +33166,4.0,Crash (2004),Crime|Drama +33171,4.0,Mysterious Skin (2004),Drama|Mystery +33296,3.0,Buying the Cow (2002),Comedy|Romance +33312,4.0,"Cocoanuts, The (1929)",Comedy|Musical +33358,4.0,Off the Map (2003),Comedy|Drama +33380,3.5,25 Watts (2001),Comedy|Drama +33437,3.75,Unleashed (Danny the Dog) (2005),Action|Crime|Drama|Thriller +33493,3.629032258064516,Star Wars: Episode III - Revenge of the Sith (2005),Action|Adventure|Sci-Fi +33495,2.75,Kicking & Screaming (2005),Comedy +33499,2.25,Monster-in-Law (2005),Comedy|Romance +33558,3.0,"Snow Walker, The (2003)",Adventure|Drama +33587,3.0,"Uninvited, The (1944)",Horror|Mystery|Romance +33592,2.5,Bad Guy (Nabbeun namja) (2001),Drama +33615,3.2857142857142856,Madagascar (2005),Adventure|Animation|Children|Comedy +33621,3.5,Somersault (2004),Drama +33639,3.8333333333333335,Mad Hot Ballroom (2005),Children|Documentary +33646,3.1666666666666665,"Longest Yard, The (2005)",Comedy|Drama +33660,3.5789473684210527,Cinderella Man (2005),Drama|Romance +33669,3.75,"Sisterhood of the Traveling Pants, The (2005)",Adventure|Comedy|Drama +33672,3.5,Lords of Dogtown (2005),Action|Comedy|Drama +33679,3.1020408163265305,Mr. & Mrs. Smith (2005),Action|Adventure|Comedy|Romance +33681,1.5,"Adventures of Sharkboy and Lavagirl 3-D, The (2005)",Action|Adventure|Children|Fantasy +33683,2.5,High Tension (Haute tension) (Switchblade Romance) (2003),Horror|Thriller +33688,1.0,Parineeta (2005),Drama|Musical|Romance +33750,4.0,Innocent Voices (Voces inocentes) (2004),Drama|War +33760,3.5,Anna and the King of Siam (1946),Drama|Romance +33794,3.857142857142857,Batman Begins (2005),Action|Crime|IMAX +33817,2.25,My Summer of Love (2004),Drama|Romance +33826,4.0,Saint Ralph (2004),Comedy|Drama +33830,2.5,Herbie: Fully Loaded (2005),Adventure|Comedy|Romance +33834,3.3,Land of the Dead (2005),Action|Horror|Thriller +33836,2.2142857142857144,Bewitched (2005),Comedy|Fantasy|Romance +33838,3.5,Rize (2005),Documentary +33880,2.7,Me and You and Everyone We Know (2005),Comedy|Drama +33896,2.5,3 Extremes (Three... Extremes) (Saam gaang yi) (2004),Horror +33903,4.25,"Edukators, The (Die Fetten Jahre sind vorbei) (2004)",Comedy|Crime|Drama|Romance +33912,4.0,"Unmarried Woman, An (1978)",Comedy|Drama|Romance +33917,4.0,"Member of the Wedding, The (1952)",Drama +34002,2.5,Room Service (1938),Comedy +34018,3.0,At the Circus (1939),Comedy|Musical +34048,2.85,War of the Worlds (2005),Action|Adventure|Sci-Fi|Thriller +34072,3.888888888888889,"March of the Penguins (Marche de l'empereur, La) (2005)",Documentary +34129,2.0,Rebound (2005),Comedy +34143,2.6666666666666665,Dark Water (2005),Drama|Horror|Thriller +34150,2.533333333333333,Fantastic Four (2005),Action|Adventure|Sci-Fi +34153,4.0,Murderball (2005),Documentary +34162,3.5476190476190474,Wedding Crashers (2005),Comedy|Romance +34164,4.25,Happy Endings (2005),Comedy|Drama +34198,3.0,Russian Dolls (Les poupées russes) (2005),Comedy|Romance +34271,2.75,Hustle & Flow (2005),Crime|Drama +34319,3.159090909090909,"Island, The (2005)",Action|Sci-Fi|Thriller +34321,3.3333333333333335,Bad News Bears (2005),Children|Comedy +34323,3.3333333333333335,"Devil's Rejects, The (2005)",Action|Crime|Horror +34326,4.5,Last Days (2005),Drama +34332,3.4583333333333335,Sky High (2005),Action|Adventure|Children|Comedy +34334,2.125,Stealth (2005),Action|Adventure|Sci-Fi|Thriller +34336,3.0,Must Love Dogs (2005),Comedy|Romance +34338,4.0,"Aristocrats, The (2005)",Comedy|Documentary +34359,3.5,Georgy Girl (1966),Comedy +34364,3.0,This Is My Life (1992),Comedy|Drama +34405,3.7875,Serenity (2005),Action|Adventure|Sci-Fi +34435,4.5,Sholay (1975),Action|Adventure|Comedy|Musical|Romance|Thriller +34437,3.6,Broken Flowers (2005),Comedy|Drama +34520,2.5,"Dukes of Hazzard, The (2005)",Action|Adventure|Comedy +34523,2.25,The Chumscrubber (2005),Comedy|Drama +34528,4.0,Junebug (2005),Comedy|Drama +34530,1.5,Deuce Bigalow: European Gigolo (2005),Comedy +34532,3.6,"Skeleton Key, The (2005)",Drama|Horror|Mystery|Thriller +34534,2.5,Four Brothers (2005),Action|Crime|Drama +34536,4.0,The Great Raid (2005),Action|Drama|War +34542,3.75,Grizzly Man (2005),Documentary +34552,3.75,"Girl in the Café, The (2005)",Drama|Romance +34583,3.0,Prime Cut (1972),Action|Crime|Drama +34608,3.0,"Best of Everything, The (1959)",Drama|Romance +35836,3.6470588235294117,"40-Year-Old Virgin, The (2005)",Comedy|Romance +35957,3.5,Red Eye (2005),Horror|Thriller +36152,3.0,Dreamchild (1985),Drama|Fantasy|Romance +36276,3.0833333333333335,Hidden (a.k.a. Cache) (Caché) (2005),Drama|Mystery|Thriller +36289,2.0,Asterix & Obelix vs. Caesar (Astérix et Obélix contre César) (1999),Adventure|Children|Comedy|Fantasy +36397,1.5,Valiant (2005),Adventure|Animation|Children|Comedy|Fantasy|War +36401,2.5454545454545454,"Brothers Grimm, The (2005)",Comedy|Fantasy|Horror|Thriller +36509,2.5,"Cave, The (2005)",Action|Adventure|Horror|Mystery|Sci-Fi|Thriller +36517,3.4444444444444446,"Constant Gardener, The (2005)",Drama|Thriller +36519,3.0,Transporter 2 (2005),Action|Crime|Thriller +36525,3.0625,Just Like Heaven (2005),Comedy|Fantasy|Romance +36527,4.083333333333333,Proof (2005),Drama +36529,3.6774193548387095,Lord of War (2005),Action|Crime|Drama|Thriller|War +36533,2.5,Cry_Wolf (a.k.a. Cry Wolf) (2005),Drama|Horror|Mystery|Thriller +36535,3.2857142857142856,Everything Is Illuminated (2005),Comedy|Drama +36553,3.0,In Old Chicago (1937),Action|Drama|Musical|War +37211,2.75,Go West (1940),Comedy|Musical|Western +37240,3.75,Why We Fight (2005),Documentary +37277,1.0,200 Motels (1971),Comedy|Musical +37380,2.2,Doom (2005),Action|Horror|Sci-Fi +37382,3.25,Domino (2005),Crime|Drama|Thriller +37384,3.4,Waiting... (2005),Comedy +37386,2.5384615384615383,Aeon Flux (2005),Action|Sci-Fi +37475,4.0,"Unfinished Life, An (2005)",Drama +37477,2.5,"Man, The (2005)",Action|Comedy|Crime +37720,3.25,"Exorcism of Emily Rose, The (2005)",Crime|Drama|Horror|Thriller +37727,2.4545454545454546,Flightplan (2005),Action|Drama|Thriller +37729,3.738095238095238,Corpse Bride (2005),Animation|Comedy|Fantasy|Musical|Romance +37731,3.65,Green Street Hooligans (a.k.a. Hooligans) (2005),Crime|Drama +37733,3.625,"History of Violence, A (2005)",Action|Crime|Drama|Thriller +37736,3.0,Oliver Twist (2005),Drama +37739,3.5,"Greatest Game Ever Played, The (2005)",Drama +37741,3.9210526315789473,Capote (2005),Crime|Drama +37785,3.0,"Anderson Tapes, The (1971)",Crime|Drama|Thriller +37830,3.3125,Final Fantasy VII: Advent Children (2004),Action|Adventure|Animation|Fantasy|Sci-Fi +37853,3.25,Into the Blue (2005),Action|Adventure|Crime|Thriller +37855,3.0,"Prize Winner of Defiance Ohio, The (2005)",Drama +37857,4.333333333333333,MirrorMask (2005),Adventure|Children|Drama|Fantasy +38038,3.75,Wallace & Gromit in The Curse of the Were-Rabbit (2005),Adventure|Animation|Children|Comedy +38061,3.793103448275862,Kiss Kiss Bang Bang (2005),Comedy|Crime|Mystery|Thriller +38304,4.166666666666667,No Direction Home: Bob Dylan (2005),Documentary +38384,3.5,Hail the Conquering Hero (1944),Comedy +38798,3.125,In Her Shoes (2005),Comedy|Drama +38886,3.5,"Squid and the Whale, The (2005)",Comedy|Drama +38992,3.25,Two for the Money (2005),Drama +38994,2.0,Separate Lies (2005),Drama|Romance|Thriller +39183,3.6206896551724137,Brokeback Mountain (2005),Drama|Romance +39231,3.75,Elizabethtown (2005),Comedy|Drama|Romance +39234,4.0,North Country (2005),Drama +39292,3.8518518518518516,"Good Night, and Good Luck. (2005)",Crime|Drama +39307,3.25,Dreamer: Inspired by a True Story (2005),Children|Drama +39381,3.0,"Proposition, The (2005)",Crime|Drama|Western +39398,3.0,C.S.A.: The Confederate States of America (2004),Comedy|Drama +39408,0.5,Left Behind: World at War (2005),Drama +39414,4.333333333333333,Shopgirl (2005),Comedy|Drama|Romance +39416,5.0,Kids in America (2005),Comedy|Drama +39419,2.5,Where the Truth Lies (2005),Drama|Thriller +39427,4.5,Stay (2005),Thriller +39435,3.125,"Legend of Zorro, The (2005)",Action|Adventure|Drama|Western +39444,3.1666666666666665,"Weather Man, The (2005)",Comedy|Drama +39446,3.25,Saw II (2005),Horror|Thriller +39659,3.5,Teorema (1968),Drama +39768,4.5,Life is a Miracle (Zivot je cudo) (2004),Comedy|Drama|Musical|Romance|War +39779,3.5,Tarzan and His Mate (1934),Action|Adventure +39869,4.0,Manderlay (2005),Drama +39941,4.0,"Love on the Run (Amour en fuite, L') (1979)",Comedy|Drama|Romance +40148,4.5,Revolver (2005),Crime|Drama|Thriller +40226,5.0,Wild Zero (2000),Action|Comedy|Horror|Romance|Sci-Fi +40278,3.5,Jarhead (2005),Action|Drama|War +40339,2.3333333333333335,Chicken Little (2005),Action|Adventure|Animation|Children|Comedy|Sci-Fi +40412,4.75,Dead Man's Shoes (2004),Crime|Thriller +40414,4.333333333333333,Joyeux Noël (Merry Christmas) (2005),Drama|War +40491,4.5,"Match Factory Girl, The (Tulitikkutehtaan tyttö) (1990)",Comedy|Drama +40574,3.0,Get Rich or Die Tryin' (2005),Action|Crime|Drama +40581,4.25,Just Friends (2005),Comedy|Romance +40583,3.6875,Syriana (2005),Drama|Thriller +40597,2.0,One-Way Ticket to Mombasa (Menolippu Mombasaan) (2002),Comedy|Drama +40614,3.25,Derailed (2005),Drama|Thriller +40629,3.725,Pride & Prejudice (2005),Drama|Romance +40723,3.0,Wolf Creek (2005),Crime|Horror|Thriller +40732,3.857142857142857,"Descent, The (2005)",Adventure|Drama|Horror|Thriller +40815,3.8813559322033897,Harry Potter and the Goblet of Fire (2005),Adventure|Fantasy|Thriller|IMAX +40817,2.5,Dinner with Friends (2001),Comedy|Drama +40819,3.880952380952381,Walk the Line (2005),Drama|Musical|Romance +40826,2.9,Rent (2005),Drama|Musical|Romance +40833,2.5,"Fists in the Pocket (Pugni in tasca, I) (1965)",Drama +40851,2.875,Zathura (2005),Action|Adventure|Children|Fantasy +40870,3.5,C.R.A.Z.Y. (2005),Drama +40946,4.0,Sarah Silverman: Jesus Is Magic (2005),Comedy|Musical +40959,1.75,"Ice Harvest, The (2005)",Action|Comedy|Crime|Thriller +41226,3.8333333333333335,Sounder (1972),Drama +41285,3.5,Match Point (2005),Crime|Drama|Romance +41336,4.0,Nazarin (Nazarín) (1959),Drama +41527,4.666666666666667,Paradise Now (2005),Crime|Drama|Thriller|War +41566,3.4591836734693877,"Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The (2005)",Adventure|Children|Fantasy +41569,3.282608695652174,King Kong (2005),Action|Adventure|Drama|Fantasy|Thriller +41571,3.3181818181818183,Memoirs of a Geisha (2005),Drama|Romance +41573,5.0,"Family Stone, The (2005)",Comedy|Drama|Romance +41714,3.5,Dona Flor and Her Two Husbands (Dona Flor e Seus Dois Maridos) (1976),Comedy +41716,3.25,"Matador, The (2005)",Comedy|Drama|Thriller +41769,3.0,Mozart and the Whale (2005),Comedy|Drama|Romance +41863,3.75,"Three Burials of Melquiades Estrada, The (2006)",Adventure|Crime|Drama +41912,4.5,Slim Susie (Smala Sussie) (2003),Comedy|Crime|Mystery +41997,3.6875,Munich (2005),Action|Crime|Drama|Thriller +42002,2.8333333333333335,"Producers, The (2005)",Comedy|Musical +42004,4.4,Transamerica (2005),Adventure|Comedy|Drama +42007,2.5,Rumor Has It... (2005),Comedy|Drama|Romance +42009,3.0,Cheaper by the Dozen 2 (2005),Adventure|Comedy +42011,2.25,Fun with Dick and Jane (2005),Comedy|Crime +42013,1.75,"Ringer, The (2005)",Comedy +42015,2.8333333333333335,Casanova (2005),Action|Adventure|Comedy|Drama|Romance +42163,4.25,Richard Pryor: Live in Concert (1979),Comedy|Documentary +42197,3.1666666666666665,Keeping Mum (2005),Comedy|Crime +42418,3.75,"New World, The (2005)",Adventure|Drama|Romance +42632,3.1666666666666665,Lady Vengeance (Sympathy for Lady Vengeance) (Chinjeolhan geumjassi) (2005),Crime|Drama|Mystery|Thriller +42677,4.5,"Cutting Edge: The Magic of Movie Editing, The (2004)",Documentary +42681,3.5,49th Parallel (1941),Adventure|Drama|Thriller|War +42718,3.75,District 13 (Banlieue 13) (2004),Action|Crime|Sci-Fi +42721,1.0,BloodRayne (2005),Action|Fantasy +42723,2.625,Hostel (2005),Horror +42725,3.5,Grandma's Boy (2006),Comedy +42728,3.0,Tristan & Isolde (2006),Drama|Romance +42730,3.0,Glory Road (2006),Drama +42732,3.25,Last Holiday (2006),Comedy +42734,3.5,Hoodwinked! (2005),Animation|Children|Comedy +42738,3.1666666666666665,Underworld: Evolution (2006),Action|Fantasy|Horror +42740,2.5,Looking for Comedy in the Muslim World (2005),Comedy +42783,1.5,Shadows of Our Forgotten Ancestors (Tini zabutykh predkiv) (1964),Drama|Romance +42900,5.0,Cul-de-sac (1966),Comedy|Crime|Drama|Thriller +42935,4.0,Riding Alone for Thousands of Miles (Qian li zou dan qi) (2005),Drama +42946,3.0,Project A ('A' gai waak) (1983),Action|Comedy +42958,3.5,Little Manhattan (2005),Children|Comedy|Romance +43177,1.0,Over the Edge (1979),Crime|Drama +43267,5.0,On Probation (Tiempo de Valientes) (2005),Action|Comedy +43333,4.0,Water (2005),Drama|Romance +43351,3.0,"Temptations, The (1998)",Drama|Musical +43376,3.6666666666666665,Sophie Scholl: The Final Days (Sophie Scholl - Die letzten Tage) (2005),Drama|War +43391,3.0,Matti: Hell Is for Heroes (Matti) (2006),Comedy|Drama +43396,3.5625,"World's Fastest Indian, The (2005)",Drama +43419,2.0,Bandidas (2006),Action|Comedy|Crime|Western +43556,3.5,Annapolis (2006),Drama +43558,2.0,Big Momma's House 2 (2006),Action|Comedy|Crime +43560,3.75,Nanny McPhee (2005),Children|Comedy|Fantasy +43635,4.0,Bye Bye Birdie (1963),Comedy|Musical +43679,4.0,Final Destination 3 (2006),Horror|Mystery|Thriller +43708,3.5,Block Party (a.k.a. Dave Chappelle's Block Party) (2005),Comedy|Documentary +43744,4.0,Imagine Me & You (2005),Comedy|Drama|Romance +43832,3.0,"Call of Cthulhu, The (2005)",Horror|Thriller +43836,2.125,"Pink Panther, The (2006)",Adventure|Comedy|Crime +43838,3.5,Troll (1986),Comedy|Fantasy|Horror +43869,4.0,Curious George (2006),Adventure|Animation|Children|Comedy +43871,2.6666666666666665,Firewall (2006),Crime|Drama|Thriller +43899,3.0,Tony Takitani (2004),Drama +43904,2.5,When a Stranger Calls (2006),Horror|Thriller +43908,3.5,London (2005),Drama +43910,4.0,Neil Young: Heart of Gold (2006),Documentary|Musical +43917,3.0,Eight Below (2006),Action|Adventure|Drama|Romance +43919,1.6,Date Movie (2006),Comedy|Romance +43921,4.0,Running Scared (2006),Action|Crime|Thriller +43928,2.142857142857143,Ultraviolet (2006),Action|Fantasy|Sci-Fi|Thriller +43930,3.5,Just My Luck (2006),Comedy|Romance +43932,2.0,Pulse (2006),Action|Drama|Fantasy|Horror|Mystery|Sci-Fi|Thriller +43936,2.888888888888889,16 Blocks (2006),Crime|Thriller +44004,2.9166666666666665,Failure to Launch (2006),Comedy|Romance +44022,3.175,Ice Age 2: The Meltdown (2006),Adventure|Animation|Children|Comedy +44073,2.0,Stromboli (1950),Drama +44191,4.013698630136986,V for Vendetta (2006),Action|Sci-Fi|Thriller|IMAX +44193,2.8333333333333335,She's the Man (2006),Comedy|Romance +44195,3.9125,Thank You for Smoking (2006),Comedy|Drama +44197,4.5,Find Me Guilty (2006),Comedy|Crime|Drama +44199,3.875,Inside Man (2006),Crime|Drama|Thriller +44204,3.8,Tsotsi (2005),Crime|Drama +44225,3.25,Aquamarine (2006),Children|Comedy|Fantasy +44301,4.0,Lights in the Dusk (Laitakaupungin valot) (2006),Crime|Drama +44317,2.0,Kummeli Stories (1995),Comedy +44397,2.0,"Hills Have Eyes, The (2006)",Drama|Horror|Thriller +44421,4.0,"Personal Journey with Martin Scorsese Through American Movies, A (1995)",Documentary +44511,4.0,Unknown White Male (2005),Documentary +44555,3.9324324324324325,"Lives of Others, The (Das leben der Anderen) (2006)",Drama|Romance|Thriller +44587,4.0,Nanook of the North (1922),Documentary|Drama +44597,2.5,Youth of the Beast (Yaju no seishun) (1963),Action|Crime|Mystery +44613,3.5,Take the Lead (2006),Drama +44633,4.0,"Devil and Daniel Johnston, The (2005)",Documentary +44665,3.84,Lucky Number Slevin (2006),Crime|Drama|Mystery +44671,3.0,"Wild Blue Yonder, The (2005)",Sci-Fi +44694,3.45,Volver (2006),Comedy|Drama +44709,3.8333333333333335,Akeelah and the Bee (2006),Drama +44731,4.0,Stay Alive (2006),Horror|Sci-Fi|Thriller +44759,1.5,Basic Instinct 2 (2006),Crime|Drama|Mystery|Thriller +44761,3.0,Brick (2005),Crime|Drama|Film-Noir|Mystery +44788,4.1,This Film Is Not Yet Rated (2006),Documentary +44828,1.75,Slither (2006),Comedy|Horror|Sci-Fi +44840,3.5,"Benchwarmers, The (2006)",Comedy +44849,3.5,Renaissance (2006),Action|Animation|Film-Noir|Sci-Fi|Thriller +44864,2.5,Friends with Money (2006),Comedy|Drama|Romance +44911,2.0,Magic (1978),Drama|Horror|Romance|Thriller +44972,2.875,Scary Movie 4 (2006),Comedy|Horror +44974,3.8333333333333335,Hard Candy (2005),Drama|Thriller +45000,4.0,"Chinoise, La (1967)",Comedy|Drama +45028,3.25,"Prairie Home Companion, A (2006)",Comedy|Drama|Musical +45062,2.25,"Sentinel, The (2006)",Crime|Drama|Thriller +45081,2.875,Silent Hill (2006),Fantasy|Horror|Thriller +45172,4.5,23 (23 - Nichts ist so wie es scheint) (1998),Drama|Thriller +45179,3.5,"Glass Key, The (1942)",Crime|Drama|Film-Noir|Mystery +45183,3.75,"Protector, The (a.k.a. Warrior King) (Tom yum goong) (2005)",Action|Comedy|Crime|Thriller +45186,3.3095238095238093,Mission: Impossible III (2006),Action|Adventure|Thriller +45208,1.5,RV (2006),Adventure|Children|Comedy +45210,3.75,United 93 (2006),Crime|Drama +45221,2.0,Stick It (2006),Comedy +45382,3.0,Down in the Valley (2005),Drama|Romance +45431,2.9,Over the Hedge (2006),Adventure|Animation|Children|Comedy +45440,3.75,Art School Confidential (2006),Comedy|Drama +45442,3.5,Poseidon (2006),Action|Adventure|Thriller|IMAX +45447,2.9857142857142858,"Da Vinci Code, The (2006)",Drama|Mystery|Thriller +45499,3.3181818181818183,X-Men: The Last Stand (2006),Action|Sci-Fi|Thriller +45501,2.1,"Break-Up, The (2006)",Comedy|Drama|Romance +45506,4.0,Twelve and Holding (2005),Drama +45517,3.16,Cars (2006),Animation|Children|Comedy +45521,3.5,Wassup Rockers (2005),Comedy|Drama +45662,1.0,"Omen, The (2006)",Horror|Thriller +45666,2.9285714285714284,Nacho Libre (2006),Comedy +45668,3.125,"Lake House, The (2006)",Drama|Fantasy|Romance +45672,2.55,Click (2006),Adventure|Comedy|Drama|Fantasy|Romance +45679,4.0,"Seventh Victim, The (1943)",Drama|Film-Noir|Horror|Mystery +45720,3.142857142857143,"Devil Wears Prada, The (2006)",Comedy|Drama +45722,3.4152542372881354,Pirates of the Caribbean: Dead Man's Chest (2006),Action|Adventure|Fantasy +45726,2.5,"You, Me and Dupree (2006)",Comedy +45728,3.5,Clerks II (2006),Comedy +45730,2.25,Lady in the Water (2006),Drama|Fantasy|Mystery +45732,2.25,My Super Ex-Girlfriend (2006),Comedy|Fantasy|Romance +45837,2.75,Let It Be (1970),Documentary +45880,2.75,Marie Antoinette (2006),Drama|Romance +45928,3.5,Who Killed the Electric Car? (2006),Documentary +45942,4.0,"Mother and the Whore, The (Maman et la putain, La) (1973)",Drama +45950,3.789473684210526,"Inconvenient Truth, An (2006)",Documentary +45969,3.5,Career Opportunities (1991),Comedy|Romance +45987,4.0,Chuck Berry Hail! Hail! Rock 'n' Roll (1987),Documentary|Musical +46062,3.5,High School Musical (2006),Children|Comedy|Drama|Musical|Romance +46322,4.083333333333333,Jet Li's Fearless (Huo Yuan Jia) (2006),Action|Drama +46335,2.5714285714285716,"Fast and the Furious: Tokyo Drift, The (Fast and the Furious 3, The) (2006)",Action|Crime|Drama|Thriller +46337,1.25,Garfield: A Tail of Two Kitties (2006),Animation|Children|Comedy +46347,4.5,Metal: A Headbanger's Journey (2005),Documentary +46530,2.6153846153846154,Superman Returns (2006),Action|Adventure|Sci-Fi|IMAX +46544,4.5,Edward II (1991),Drama +46559,4.0,"Road to Guantanamo, The (2006)",Drama|War +46561,3.0,Leonard Cohen: I'm Your Man (2005),Documentary|Musical +46574,0.5,"OH in Ohio, The (2006)",Comedy +46578,3.9078947368421053,Little Miss Sunshine (2006),Adventure|Comedy|Drama +46664,3.5,"Fallen Idol, The (1948)",Drama|Mystery|Thriller +46723,3.5625,Babel (2006),Drama|Thriller +46772,2.0,Strangers with Candy (2005),Comedy +46850,3.6666666666666665,Wordplay (2006),Documentary +46855,3.5,Army of Shadows (L'armée des ombres) (1969),Action|Drama|Thriller|War +46865,1.75,Little Man (2006),Comedy +46919,4.0,End of the Spear (2005),Drama +46948,3.25,Monster House (2006),Animation|Children|Fantasy|Mystery +46965,2.75,Snakes on a Plane (2006),Action|Comedy|Horror|Thriller +46967,2.75,Scoop (2006),Comedy|Fantasy|Mystery +46970,3.0588235294117645,Talladega Nights: The Ballad of Ricky Bobby (2006),Action|Comedy +46972,3.0555555555555554,Night at the Museum (2006),Action|Comedy|Fantasy|IMAX +46974,2.0,World Trade Center (2006),Drama +46976,3.6625,Stranger than Fiction (2006),Comedy|Drama|Fantasy|Romance +47044,2.7,Miami Vice (2006),Action|Crime|Drama|Thriller +47092,4.5,On Dangerous Ground (1952),Crime|Drama|Film-Noir +47099,3.7916666666666665,"Pursuit of Happyness, The (2006)",Drama +47122,4.0,John Tucker Must Die (2006),Comedy|Romance +47124,2.75,"Ant Bully, The (2006)",Adventure|Animation|Children|Comedy|Fantasy|IMAX +47148,4.5,Mrs. Palfrey at the Claremont (2005),Comedy|Drama +47152,4.25,Cria Cuervos (1976),Drama +47196,1.5,"Rainmaker, The (1956)",Comedy|Romance|Thriller|Western +47200,3.142857142857143,Crank (2006),Action|Thriller +47202,4.0,"Secret Life of Words, The (2005)",Drama|Romance +47254,3.75,Chaos (2005),Action|Crime|Drama|Thriller +47261,3.0,"Night Listener, The (2006)",Fantasy|Mystery|Thriller +47274,4.0,Murmur of the Heart (Le souffle au coeur) (1971),Drama +47287,3.5,Compulsion (1959),Crime|Drama|Thriller +47330,1.0,Dirty Mary Crazy Larry (1974),Action|Crime|Drama|Romance +47382,3.25,Step Up (2006),Drama|Romance +47384,2.5,Zoom (2006),Adventure|Comedy|Drama|Fantasy +47404,4.0,Mind Game (2004),Adventure|Animation|Comedy|Fantasy|Romance|Sci-Fi +47423,2.75,Half Nelson (2006),Drama +47465,3.5,Tideland (2005),Drama|Fantasy|Thriller +47491,3.25,Adam's Apples (Adams æbler) (2005),Comedy|Drama +47493,3.0,Cabin in the Sky (1943),Fantasy|Musical +47518,3.590909090909091,Accepted (2006),Comedy +47606,3.0,Captain January (1936),Children|Comedy|Musical +47610,3.727272727272727,"Illusionist, The (2006)",Drama|Fantasy|Mystery|Romance +47629,3.4,The Queen (2006),Drama +47640,2.6875,Beerfest (2006),Comedy +47714,3.0,Blithe Spirit (1945),Comedy|Drama|Fantasy|Romance +47721,3.1,"Red Balloon, The (Ballon rouge, Le) (1956)",Children|Fantasy +47728,5.0,Green for Danger (1946),Crime|Mystery +47810,1.0,"Wicker Man, The (2006)",Horror|Mystery|Thriller +47815,0.5,Crossover (2006),Action|Drama +47894,2.0,"Wind That Shakes the Barley, The (2006)",Drama|War +47937,3.0,Severance (2006),Comedy|Horror|Thriller +47950,2.8333333333333335,Hollywoodland (2006),Crime|Drama|Mystery|Thriller +47952,3.0,"Covenant, The (2006)",Action|Horror|Thriller +47978,4.0,SherryBaby (2006),Drama +47997,3.1363636363636362,Idiocracy (2006),Adventure|Comedy|Sci-Fi|Thriller +47999,3.5833333333333335,Jesus Camp (2006),Documentary|Drama +48032,4.0,"Tiger and the Snow, The (La tigre e la neve) (2005)",Comedy|Drama|Romance|War +48043,3.125,"Fountain, The (2006)",Drama|Fantasy|Romance +48061,4.5,Snoopy Come Home (1972),Animation|Children|Comedy|Musical +48082,3.2777777777777777,"Science of Sleep, The (La science des rêves) (2006)",Comedy|Drama|Fantasy|Romance +48142,3.0,"Black Dahlia, The (2006)",Crime|Drama|Mystery|Thriller +48159,3.0,Everyone's Hero (2006),Adventure|Animation|Children|Comedy +48165,4.5,"Seventh Continent, The (Der siebente Kontinent) (1989)",Drama +48198,3.0,Streamers (1983),Drama|War +48231,3.5,Taxidermia (2006),Comedy|Drama|Horror +48262,3.75,"Bridge, The (2006)",Documentary +48268,4.0,Empire Falls (2005),Drama|Romance +48301,4.0,"Private Life of Henry VIII, The (1933)",Comedy|Drama +48304,4.0,Apocalypto (2006),Adventure|Drama|Thriller +48319,2.75,Flyboys (2006),Action|Adventure|Drama|War +48322,3.1666666666666665,Jackass Number Two (2006),Comedy|Documentary +48385,3.272727272727273,Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan (2006),Comedy +48394,3.673076923076923,"Pan's Labyrinth (Laberinto del fauno, El) (2006)",Drama|Fantasy|Thriller +48414,3.0,Open Season (2006),Adventure|Animation|Children|Comedy|IMAX +48501,4.5,G.O.R.A. (2004),Adventure|Comedy|Sci-Fi +48516,4.2023809523809526,"Departed, The (2006)",Crime|Drama|Thriller +48518,3.0,"Texas Chainsaw Massacre: The Beginning, The (2006)",Horror|Thriller +48520,4.0,Employee of the Month (2006),Comedy +48522,0.5,Stormbreaker (Alex Rider: Operation Stormbreaker) (2006),Action|Children +48560,3.75,Running With Scissors (2006),Comedy|Drama +48591,0.5,"Grudge 2, The (2006)",Drama|Horror|Mystery|Thriller +48593,4.0,Man of the Year (2006),Comedy|Thriller +48596,3.0,"Marine, The (2006)",Action|Drama|Thriller +48660,1.0,"Elementary Particles, The (Elementarteilchen) (2006)",Drama|Romance +48682,5.0,Offside (2006),Comedy|Drama +48696,3.888888888888889,Little Children (2006),Drama|Romance +48698,4.333333333333333,Deliver Us from Evil (2006),Documentary +48738,4.033333333333333,"Last King of Scotland, The (2006)",Drama|Thriller +48741,3.6666666666666665,"U.S. vs. John Lennon, The (2006)",Documentary +48744,3.25,Shortbus (2006),Comedy|Drama|Romance +48774,3.627906976744186,Children of Men (2006),Action|Adventure|Drama|Sci-Fi|Thriller +48780,4.125,"Prestige, The (2006)",Drama|Mystery|Sci-Fi|Thriller +48783,3.875,Flags of Our Fathers (2006),Drama|War +48791,5.0,Flicka (2006),Children|Drama +48817,3.5,Sleeping Dogs Lie (a.k.a. Stay) (2006),Comedy|Drama|Romance +48856,3.5,"Guide to Recognizing Your Saints, A (2006)",Crime|Drama +48872,3.3333333333333335,13 Tzameti (2005),Film-Noir|Thriller +48877,2.857142857142857,Saw III (2006),Crime|Horror|Thriller +48972,1.0,Lunacy (Sílení) (2006),Animation|Horror +48982,3.5,Flushed Away (2006),Animation|Comedy +48997,3.2222222222222223,Perfume: The Story of a Murderer (2006),Crime|Drama|Thriller +49013,1.0,"Santa Clause 3: The Escape Clause, The (2006)",Comedy|Fantasy +49132,4.0,Shut Up & Sing (2006),Documentary +49220,3.0,For Your Consideration (2006),Comedy +49225,3.5,Street Fight (2005),Documentary +49265,4.0,Shooting Dogs (a.k.a. Beyond the Gates) (2005),Documentary|Drama|War +49272,3.877049180327869,Casino Royale (2006),Action|Adventure|Thriller +49274,2.1666666666666665,Happy Feet (2006),Adventure|Animation|Children|Comedy|IMAX +49278,3.4615384615384617,Déjà Vu (Deja Vu) (2006),Action|Sci-Fi|Thriller +49280,5.0,Bobby (2006),Drama +49284,3.5,10 Items or Less (2006),Comedy|Drama|Romance +49286,3.269230769230769,"Holiday, The (2006)",Comedy|Romance +49299,4.0,Luna de Avellaneda (2004),Drama|Romance +49314,3.5,Harsh Times (2006),Action|Crime|Drama +49394,3.5,Simon of the Desert (Simón del desierto) (1965),Drama +49396,3.5,Tenacious D in The Pick of Destiny (2006),Adventure|Comedy|Musical +49526,3.0,National Lampoon's Van Wilder: The Rise of Taj (2006),Comedy +49528,2.25,Turistas (2006),Adventure|Drama|Horror|Mystery|Thriller +49530,4.04054054054054,Blood Diamond (2006),Action|Adventure|Crime|Drama|Thriller|War +49647,3.5,Charlotte's Web (2006),Children|Comedy|Drama|Fantasy +49649,2.1666666666666665,Eragon (2006),Action|Adventure|Fantasy +49651,3.6,Rocky Balboa (2006),Action|Drama +49688,4.0,"Dam Busters, The (1955)",Action|Drama|War +49772,3.5,"Painted Veil, The (2006)",Drama|Romance +49817,4.0,"Plague Dogs, The (1982)",Adventure|Animation|Drama +49822,3.25,"Good Shepherd, The (2006)",Drama|Thriller +49824,3.25,Dreamgirls (2006),Drama|Musical +49902,4.0,"Decameron, The (Decameron, Il) (1971)",Comedy|Drama +49910,2.5,Freedom Writers (2007),Drama +49932,3.1666666666666665,Inland Empire (2006),Drama|Mystery|Thriller +49957,4.5,"History Boys, The (2006)",Comedy|Drama +49961,3.5,Notes on a Scandal (2006),Drama +50005,2.25,Curse of the Golden Flower (Man cheng jin dai huang jin jia) (2006),Action|Drama +50011,4.5,"Bothersome Man, The (Brysomme mannen, Den) (2006)",Comedy|Drama|Fantasy|Mystery +50064,3.0,"Good German, The (2006)",Drama|Mystery|Thriller +50068,4.045454545454546,Letters from Iwo Jima (2006),Drama|War +50147,2.0,Black Christmas (2006),Action|Horror|Thriller +50160,4.0,Miss Potter (2006),Drama +50162,3.0,Arthur and the Invisibles (2007),Action|Children|Fantasy +50259,4.0,Old Joy (2006),Drama +50442,2.0,Alpha Dog (2007),Crime|Drama +50445,3.5,"Hitcher, The (2007)",Action|Horror|Thriller +50514,4.0,After the Wedding (Efter brylluppet) (2006),Drama +50583,3.0,Linda Linda Linda (2005),Comedy|Drama +50601,2.625,Bridge to Terabithia (2007),Adventure|Children|Fantasy +50641,4.75,House (Hausu) (1977),Comedy|Fantasy|Horror +50651,3.0,Kenny (2006),Comedy +50658,4.375,49 Up (2005),Documentary +50685,3.5,Waitress (2007),Comedy|Drama|Romance +50703,5.0,"Secret, The (2006)",Documentary +50740,4.5,Seven Up! (1964),Documentary +50742,4.5,7 Plus Seven (1970),Documentary +50792,2.5,Catch and Release (2006),Comedy|Drama|Romance +50794,3.5,Smokin' Aces (2006),Action|Crime|Drama|Thriller +50798,1.5,Epic Movie (2007),Adventure|Comedy +50802,3.25,Because I Said So (2007),Comedy|Drama|Romance +50804,2.25,Hannibal Rising (2007),Drama|Horror|Thriller +50806,1.5,Norbit (2007),Comedy|Romance +50842,4.0,"Boss of It All, The (Direktøren for det hele) (2006)",Comedy|Drama +50851,3.75,Cocaine Cowboys (2006),Documentary +50872,3.983050847457627,Ratatouille (2007),Animation|Children|Drama +50912,3.625,"Paris, I Love You (Paris, je t'aime) (2006)",Romance +50923,3.0,"Astronaut Farmer, The (2007)",Drama +50954,3.75,It's a Boy Girl Thing (2006),Comedy|Romance +51044,4.0,Magical Mystery Tour (1967),Comedy|Musical +51077,2.2857142857142856,Ghost Rider (2007),Action|Fantasy|Thriller +51080,3.9,Breach (2007),Drama|Thriller +51084,3.1875,Music and Lyrics (2007),Comedy|Romance +51086,3.1,"Number 23, The (2007)",Drama|Mystery|Thriller +51088,4.0,Reno 911!: Miami (2007),Comedy +51091,4.0,Black Snake Moan (2006),Drama +51094,3.5,Gray Matters (2006),Comedy|Drama|Romance +51127,4.5,loudQUIETloud: A Film About the Pixies (2006),Documentary +51174,4.0,Factory Girl (2006),Drama +51207,2.5,Street Trash (1987),Comedy|Horror +51255,3.761904761904762,Hot Fuzz (2007),Action|Comedy|Crime|Mystery +51277,4.5,"36th Chamber of Shaolin, The (Shao Lin san shi liu fang) (Master Killer) (1978)",Action|Adventure +51357,4.0,Citizen X (1995),Crime|Drama|Thriller +51372,1.75,"""Great Performances"" Cats (1998)",Musical +51380,4.0,"Canterbury Tales, The (I racconti di Canterbury) (1972)",Comedy|Drama +51412,3.5,Next (2007),Action|Sci-Fi|Thriller +51418,1.0,Breaking and Entering (2006),Drama +51471,5.0,Amazing Grace (2006),Drama|Romance +51540,3.925,Zodiac (2007),Crime|Drama|Thriller +51575,1.5,Wild Hogs (2007),Adventure|Comedy +51662,3.559322033898305,300 (2007),Action|Fantasy|War|IMAX +51698,3.0,"Last Mimzy, The (2007)",Adventure|Children|Sci-Fi +51705,3.5,Priceless (Hors de prix) (2006),Comedy|Romance +51709,4.0,"Host, The (Gwoemul) (2006)",Comedy|Drama|Horror|Sci-Fi|Thriller +51773,3.0,"America, America (1963)",Drama +51834,3.25,Becoming Jane (2007),Drama|Romance +51884,3.0,"Namesake, The (2006)",Drama|Romance +51925,2.75,Premonition (2007),Drama|Fantasy|Mystery|Thriller +51927,3.0,Dead Silence (2007),Horror|Mystery|Thriller +51931,4.0,Reign Over Me (2007),Drama +51935,4.214285714285714,Shooter (2007),Action|Drama|Thriller +51937,2.5,"Hills Have Eyes II, The (2007)",Horror|Thriller +51939,2.0,TMNT (Teenage Mutant Ninja Turtles) (2007),Action|Adventure|Animation|Children|Comedy|Fantasy +52241,3.5,"Lookout, The (2007)",Crime|Drama|Thriller +52245,3.142857142857143,Blades of Glory (2007),Comedy|Romance +52281,3.6666666666666665,Grindhouse (2007),Action|Crime|Horror|Sci-Fi|Thriller +52287,3.3125,Meet the Robinsons (2007),Action|Adventure|Animation|Children|Comedy|Sci-Fi +52319,4.0,Inglorious Bastards (Quel maledetto treno blindato) (1978),Action|Adventure|Drama|War +52328,3.409090909090909,Sunshine (2007),Adventure|Drama|Sci-Fi|Thriller +52378,2.5,No Way Out (1950),Drama|Film-Noir +52435,3.8846153846153846,How the Grinch Stole Christmas! (1966),Animation|Comedy|Fantasy|Musical +52456,3.5,Perfect Stranger (2007),Crime|Drama|Mystery|Thriller +52458,3.65,Disturbia (2007),Drama|Thriller +52460,2.0,Pathfinder (2007),Action|Adventure|Drama|Thriller|War +52462,3.75,Aqua Teen Hunger Force Colon Movie Film for Theaters (2007),Action|Adventure|Animation|Comedy|Fantasy|Mystery|Sci-Fi +52528,4.0,Tristana (1970),Drama +52545,4.0,Puccini for Beginners (2006),Comedy|Romance +52579,3.5,"Vie en Rose, La (Môme, La) (2007)",Drama|Musical +52604,3.5,Fracture (2007),Crime|Drama|Mystery|Thriller +52606,3.5,Big Nothing (2006),Comedy|Crime|Thriller +52617,5.0,Woman on the Beach (Haebyeonui yeoin) (2006),Comedy|Drama +52644,2.8333333333333335,Vacancy (2007),Horror|Thriller +52666,3.375,Benny's Video (1992),Drama|Horror +52668,4.5,In the Land of Women (2007),Comedy|Drama|Romance +52694,2.25,Mr. Bean's Holiday (2007),Comedy +52712,3.0,"Invisible, The (2007)",Crime|Drama|Fantasy|Mystery|Thriller +52717,3.5,"Condemned, The (2007)",Action|Adventure|Crime|Thriller +52722,2.717391304347826,Spider-Man 3 (2007),Action|Adventure|Sci-Fi|Thriller|IMAX +52730,2.5,It's a Very Merry Muppet Christmas Movie (2002),Children|Comedy +52767,4.5,21 Up (1977),Documentary +52831,4.0,Maniac Cop (1988),Action|Crime|Horror|Thriller +52885,4.090909090909091,Paprika (Papurika) (2006),Animation|Mystery|Sci-Fi +52913,4.0,Sylvia Scarlett (1935),Comedy|Drama|Romance +52950,4.0,Day Watch (Dnevnoy dozor) (2006),Action|Fantasy|Horror|Thriller +52952,4.166666666666667,This Is England (2006),Drama +52967,3.625,Away from Her (2006),Drama +52973,3.3958333333333335,Knocked Up (2007),Comedy|Drama|Romance +52975,3.7777777777777777,Hairspray (2007),Comedy|Drama|Musical +53000,3.4285714285714284,28 Weeks Later (2007),Horror|Sci-Fi|Thriller +53024,4.25,Jonestown: The Life and Death of Peoples Temple (2006),Documentary +53038,0.5,Red Dust (1932),Drama +53121,3.1153846153846154,Shrek the Third (2007),Adventure|Animation|Children|Comedy|Fantasy +53123,3.8636363636363638,Once (2006),Drama|Musical|Romance +53125,3.272727272727273,Pirates of the Caribbean: At World's End (2007),Action|Adventure|Comedy|Fantasy +53129,4.0,Mr. Brooks (2007),Crime|Drama|Thriller +53133,2.5,Gracie (2007),Drama +53138,4.0,"Librarian: Return to King Solomon's Mines, The (2006)",Action|Adventure|Fantasy +53189,4.0,Eagle vs Shark (2007),Comedy +53207,3.25,88 Minutes (2008),Crime|Drama|Mystery|Thriller +53318,3.9,Cashback (2006),Comedy|Drama|Romance +53322,3.24,Ocean's Thirteen (2007),Crime|Thriller +53326,2.0,Them (Ils) (2006),Horror +53435,3.1666666666666665,Hostel: Part II (2007),Crime|Horror|Thriller +53447,4.0,Paranoid Park (2007),Crime|Drama +53460,2.75,Surf's Up (2007),Animation|Children|Comedy +53464,1.9375,Fantastic Four: Rise of the Silver Surfer (2007),Action|Adventure|Sci-Fi +53466,2.5,Nancy Drew (2007),Adventure|Crime|Thriller +53468,3.8333333333333335,Fido (2006),Comedy|Horror|Thriller +53519,3.6153846153846154,Death Proof (2007),Action|Adventure|Crime|Horror|Thriller +53550,3.6666666666666665,Rescue Dawn (2006),Action|Adventure|Drama|War +53737,0.5,"Night of the Generals, The (1967)",Crime|Drama|Mystery|Thriller|War +53883,4.5,"Power of Nightmares, The: The Rise of the Politics of Fear (2004)",Documentary +53887,5.0,O Lucky Man! (1973),Comedy|Drama|Fantasy|Musical +53894,2.9166666666666665,Sicko (2007),Documentary|Drama +53953,3.5714285714285716,1408 (2007),Drama|Horror|Thriller +53956,3.642857142857143,Death at a Funeral (2007),Comedy +53972,3.5,Live Free or Die Hard (2007),Action|Adventure|Crime|Thriller +53974,2.75,License to Wed (2007),Comedy|Romance +53993,1.6,Evan Almighty (2007),Comedy|Fantasy +53996,3.225806451612903,Transformers (2007),Action|Sci-Fi|Thriller|IMAX +53999,2.5,Captivity (2007),Crime|Thriller +54001,3.75,Harry Potter and the Order of the Phoenix (2007),Adventure|Drama|Fantasy|IMAX +54004,2.7142857142857144,I Now Pronounce You Chuck and Larry (2007),Comedy|Romance +54190,3.4,Across the Universe (2007),Drama|Fantasy|Musical|Romance +54220,4.0,"Sterile Cuckoo, The (1969)",Comedy|Drama +54251,5.0,Dorian Blues (2004),Comedy +54256,4.0,Hot Rod (2007),Comedy +54259,3.869565217391304,Stardust (2007),Adventure|Comedy|Fantasy|Romance +54270,1.5,Skinwalkers (2007),Horror|Thriller +54272,3.3378378378378377,"Simpsons Movie, The (2007)",Animation|Comedy +54276,3.6666666666666665,No Reservations (2007),Comedy|Drama|Romance +54281,4.125,Charlie Bartlett (2007),Comedy|Drama +54286,3.959016393442623,"Bourne Ultimatum, The (2007)",Action|Crime|Thriller +54290,0.5,Bratz: The Movie (2007),Comedy +54328,5.0,My Best Friend (Mon meilleur ami) (2006),Comedy +54331,3.75,You Kill Me (2007),Comedy|Crime|Thriller +54372,4.5,Tell No One (Ne le dis à personne) (2006),Crime|Drama|Mystery|Thriller +54419,3.0,Czech Dream (Ceský sen) (2004),Documentary +54426,3.5,12:08 East of Bucharest (A fost sau n-a fost?) (2006),Comedy|Drama +54503,3.7386363636363638,Superbad (2007),Comedy +54513,4.0,Talk to Me (2007),Drama +54648,2.3333333333333335,Rush Hour 3 (2007),Action|Comedy|Crime|Thriller +54732,2.8333333333333335,Balls of Fury (2007),Comedy +54734,4.5,Sydney White (2007),Comedy +54736,4.0,"Kingdom, The (2007)",Action|Drama|Thriller +54745,3.5,Rocket Science (2007),Comedy|Drama +54768,0.5,Daddy Day Camp (2007),Children|Comedy +54771,3.0,"Invasion, The (2007)",Action|Drama|Horror|Sci-Fi|Thriller +54775,3.5,War (2007),Action|Thriller +54780,2.5,"Nanny Diaries, The (2007)",Comedy|Drama|Romance +54785,4.0,Halloween (2007),Horror +54787,4.0,Death Sentence (2007),Drama|Thriller +54881,4.222222222222222,"King of Kong, The (2007)",Documentary +54910,0.5,Behind the Mask: The Rise of Leslie Vernon (2006),Comedy|Horror|Thriller +54995,3.6785714285714284,Planet Terror (2007),Action|Horror|Sci-Fi +54997,4.0,3:10 to Yuma (2007),Action|Crime|Drama|Western +54999,3.875,Shoot 'Em Up (2007),Action|Comedy|Crime +55052,3.8333333333333335,Atonement (2007),Drama|Romance|War +55063,4.25,My Winnipeg (2007),Documentary|Fantasy +55069,4.375,"4 Months, 3 Weeks and 2 Days (4 luni, 3 saptamâni si 2 zile) (2007)",Drama +55071,3.0,No End in Sight (2007),Documentary +55078,4.0,Far from the Madding Crowd (1967),Drama|Romance +55094,3.5,In the Valley of Elah (2007),Drama|Mystery +55110,3.75,December Boys (2007),Drama +55116,4.0,"Hunting Party, The (2007)",Action|Adventure|Comedy|Drama|Thriller +55118,3.710526315789474,Eastern Promises (2007),Crime|Drama|Thriller +55156,4.0,"Unreasonable Man, An (2006)",Documentary +55167,2.375,Tekkonkinkreet (Tekkon kinkurîto) (2006),Action|Adventure|Animation|Crime|Fantasy +55207,4.0,Cashback (2004),Comedy|Drama +55232,2.875,Resident Evil: Extinction (2007),Action|Horror|Sci-Fi|Thriller +55245,3.25,Good Luck Chuck (2007),Comedy|Romance +55247,3.629032258064516,Into the Wild (2007),Action|Adventure|Drama +55250,2.75,"Game Plan, The (2007)",Comedy +55253,4.25,"Lust, Caution (Se, jie) (2007)",Drama|Romance|Thriller|War +55259,2.5,"Seeker: The Dark Is Rising, The (2007)",Action|Adventure|Drama|Fantasy +55261,2.25,"Heartbreak Kid, The (2007)",Comedy|Drama|Romance +55267,3.5833333333333335,Dan in Real Life (2007),Comedy|Drama|Romance +55269,3.7857142857142856,"Darjeeling Limited, The (2007)",Adventure|Comedy|Drama +55272,4.0,We Own the Night (2007),Crime|Drama +55274,4.5,Elizabeth: The Golden Age (2007),Drama +55276,3.8333333333333335,Michael Clayton (2007),Drama|Thriller +55280,3.6666666666666665,Lars and the Real Girl (2007),Comedy|Drama +55282,3.142857142857143,30 Days of Night (2007),Horror|Thriller +55290,3.7857142857142856,Gone Baby Gone (2007),Crime|Drama|Mystery +55294,2.5,Weirdsville (2007),Comedy|Crime|Drama +55363,3.3333333333333335,"Assassination of Jesse James by the Coward Robert Ford, The (2007)",Crime|Drama|Western +55417,3.0,Irina Palm (2007),Drama +55442,4.0,Persepolis (2007),Animation|Drama +55444,2.0,Control (2007),Drama +55451,4.2,The Jane Austen Book Club (2007),Comedy|Drama|Romance +55498,3.5,Silk (2007),Adventure|Drama|Romance +55555,5.0,"Edge of Heaven, The (Auf der anderen Seite) (2007)",Drama +55566,4.0,Tyler Perry's Why Did I Get Married? (2007),Comedy|Drama +55577,2.9166666666666665,Saw IV (2007),Crime|Horror|Thriller +55652,3.0,Scum (1979),Crime|Drama +55684,3.0,"City of Violence, The (Jjakpae) (2006)",Action|Crime|Drama +55687,3.0,My Kid Could Paint That (2007),Documentary +55721,3.875,Elite Squad (Tropa de Elite) (2007),Action|Crime|Drama|Thriller +55732,2.0,Martian Child (2007),Comedy|Drama +55757,2.5,Chilly Scenes of Winter (Head Over Heels) (1979),Comedy|Drama|Romance +55765,3.4545454545454546,American Gangster (2007),Crime|Drama|Thriller +55768,2.857142857142857,Bee Movie (2007),Animation|Comedy +55805,3.4,Before the Devil Knows You're Dead (2007),Crime|Drama|Thriller +55814,3.9,"Diving Bell and the Butterfly, The (Scaphandre et le papillon, Le) (2007)",Drama +55820,4.010204081632653,No Country for Old Men (2007),Crime|Drama +55830,2.8125,Be Kind Rewind (2008),Comedy +55851,3.5,Crazy Love (2007),Documentary +55872,3.0,August Rush (2007),Drama|Musical +55895,3.5,"Desperate Hours, The (1955)",Drama|Film-Noir|Thriller +55908,3.9166666666666665,"Man from Earth, The (2007)",Drama|Sci-Fi +55995,2.5,Beowulf (2007),Action|Adventure|Animation|Fantasy|IMAX +55999,3.25,Mr. Magorium's Wonder Emporium (2007),Children|Comedy|Fantasy +56003,2.75,Southland Tales (2006),Comedy|Drama|Sci-Fi|Thriller +56030,3.5,Darfur Now (2007),Documentary +56079,1.0,Smiley Face (2007),Comedy +56095,3.0,XXY (2007),Drama +56145,3.625,"Mist, The (2007)",Horror|Sci-Fi +56152,3.7333333333333334,Enchanted (2007),Adventure|Animation|Children|Comedy|Fantasy|Musical|Romance +56156,2.5,Hitman (2007),Action|Crime|Thriller +56169,3.75,Awake (2007),Drama|Thriller +56171,3.2,"Golden Compass, The (2007)",Adventure|Children|Fantasy +56174,3.1904761904761907,I Am Legend (2007),Action|Horror|Sci-Fi|Thriller|IMAX +56176,1.8333333333333333,Alvin and the Chipmunks (2007),Children|Comedy +56274,4.0,Margot at the Wedding (2007),Drama +56286,3.5,I'm Not There (2007),Drama +56333,3.75,"Savages, The (2007)",Comedy|Drama +56339,3.875,"Orphanage, The (Orfanato, El) (2007)",Drama|Horror|Mystery|Thriller +56367,3.8541666666666665,Juno (2007),Comedy|Drama|Romance +56563,3.75,Helvetica (2007),Documentary +56587,3.625,"Bucket List, The (2007)",Comedy|Drama +56607,4.25,"Kite Runner, The (2007)",Drama +56633,4.5,Butterfly on a Wheel (Shattered) (2007),Crime|Drama|Thriller +56715,4.0,Wristcutters: A Love Story (2006),Drama|Fantasy|Romance +56757,3.3157894736842106,Sweeney Todd: The Demon Barber of Fleet Street (2007),Drama|Horror|Musical|Thriller +56775,3.357142857142857,National Treasure: Book of Secrets (2007),Action|Adventure +56782,4.153846153846154,There Will Be Blood (2007),Drama|Western +56788,3.857142857142857,Charlie Wilson's War (2007),Comedy|Drama|War +56801,1.875,AVPR: Aliens vs. Predator - Requiem (2007),Action|Horror|Sci-Fi +56805,3.75,Walk Hard: The Dewey Cox Story (2007),Comedy|Musical +56869,5.0,Drained (O cheiro do Ralo) (2006),Comedy +56885,3.0,"Great Debaters, The (2007)",Drama +56908,4.0,Dedication (2007),Comedy|Drama|Romance +56915,2.5,"Water Horse: Legend of the Deep, The (2007)",Adventure|Children|Fantasy +56941,3.625,P.S. I Love You (2007),Comedy|Drama|Romance +56949,3.125,27 Dresses (2008),Comedy|Romance +57038,5.0,To the Left of the Father (Lavoura Arcaica) (2001),Drama +57223,0.5,D-War (Dragon Wars) (2007),Action|Adventure|Drama|Fantasy +57243,4.333333333333333,"Band's Visit, The (Bikur Ha-Tizmoret) (2007)",Comedy|Drama +57274,3.3333333333333335,[REC] (2007),Drama|Horror|Thriller +57326,2.5,In the Name of the King: A Dungeon Siege Tale (2008),Action|Adventure|Fantasy +57353,4.25,Flawless (2007),Crime|Drama +57368,3.210526315789474,Cloverfield (2008),Action|Mystery|Sci-Fi|Thriller +57401,3.75,Cleaner (2007),Crime|Thriller +57418,3.5,"Rachel, Rachel (1968)",Drama|Romance +57430,3.5,Welcome to L.A. (1976),Drama|Musical +57453,3.0,Arranged (2007),Comedy|Drama|Romance +57504,3.8333333333333335,"Girl Who Leapt Through Time, The (Toki o kakeru shôjo) (2006)",Animation|Comedy|Drama|Romance|Sci-Fi +57526,2.5,Untraceable (2008),Crime|Thriller +57528,3.5833333333333335,Rambo (Rambo 4) (2008),Action|Drama|Thriller|War +57532,1.3333333333333333,Meet the Spartans (2008),Comedy +57640,3.3055555555555554,Hellboy II: The Golden Army (2008),Action|Adventure|Fantasy|Sci-Fi +57669,3.9473684210526314,In Bruges (2008),Comedy|Crime|Drama|Thriller +57792,3.5,Caramel (Sukkar banat) (2007),Comedy +57845,4.5,Joe Strummer: The Future Is Unwritten (2007),Documentary +57910,2.5,Teeth (2007),Comedy|Horror +57951,3.0,Fool's Gold (2008),Action|Adventure|Comedy|Romance +57980,3.0,"Art of Negative Thinking, The (Kunsten å tenke negativt) (2006)",Comedy|Drama +58025,2.272727272727273,Jumper (2008),Action|Adventure|Drama|Sci-Fi|Thriller +58029,4.0,It's a Free World... (2007),Drama +58047,3.9166666666666665,"Definitely, Maybe (2008)",Comedy|Drama|Romance +58103,3.25,Vantage Point (2008),Action|Drama|Thriller +58105,2.75,"Spiderwick Chronicles, The (2008)",Adventure|Children|Drama|Fantasy|IMAX +58107,1.0,Step Up 2 the Streets (2008),Drama|Musical|Romance +58146,0.5,Witless Protection (2008),Comedy +58154,3.75,"Other Boleyn Girl, The (2008)",Drama|Romance +58156,2.5,Semi-Pro (2008),Comedy +58191,4.25,Taxi to the Dark Side (2007),Documentary +58293,1.5,"10,000 BC (2008)",Adventure|Romance|Thriller +58295,3.590909090909091,"Bank Job, The (2008)",Action|Crime|Thriller +58297,2.5,Doomsday (2008),Action|Drama|Sci-Fi|Thriller +58299,3.375,Horton Hears a Who! (2008),Adventure|Animation|Children|Comedy +58301,4.0,Funny Games U.S. (2007),Drama|Thriller +58303,4.2,"Counterfeiters, The (Die Fälscher) (2007)",Crime|Drama|War +58306,3.1666666666666665,Mongol (2007),Drama|War +58315,2.25,"Love Guru, The (2008)",Comedy +58347,3.75,Penelope (2006),Comedy|Fantasy|Romance +58351,4.166666666666667,City of Men (Cidade dos Homens) (2007),Drama +58365,4.0,Chicago 10 (2007),Animation|Documentary +58376,3.5,Zeitgeist: The Movie (2007),Documentary|War +58425,4.5,Heima (2007),Documentary +58432,3.0,What Just Happened (2008),Comedy|Drama +58520,4.5,Mala Noche (1985),Drama +58554,3.5,"Class, The (Klass) (2007)",Drama +58559,4.235537190082645,"Dark Knight, The (2008)",Action|Crime|Drama|IMAX +58627,3.75,Never Back Down (2008),Action +58649,5.0,Napoléon (1927),Drama|War +58655,1.5,Drillbit Taylor (2008),Comedy +58706,4.0,"Under the Same Moon (Misma luna, La) (2007)",Drama +58803,3.8055555555555554,21 (2008),Crime|Drama|Romance|Thriller +58839,3.25,Leatherheads (2008),Comedy|Drama|Romance +58879,3.8333333333333335,Shine a Light (2008),Documentary|Musical|IMAX +58889,3.0,"Business of Being Born, The (2008)",Documentary +58904,3.5,Chan Is Missing (1982),Crime +58964,3.0,Inside (À l'intérieur) (2007),Horror|Thriller +58972,2.5,Nim's Island (2008),Adventure|Comedy|Fantasy +58975,2.5,"Ruins, The (2008)",Horror|Thriller +58998,3.2954545454545454,Forgetting Sarah Marshall (2008),Comedy|Romance +59014,2.125,Superhero Movie (2008),Action|Comedy|Sci-Fi +59016,3.0,Street Kings (2008),Crime|Drama|Thriller +59018,4.2,"Visitor, The (2007)",Drama|Romance +59022,2.9166666666666665,Harold & Kumar Escape from Guantanamo Bay (2008),Adventure|Comedy +59037,2.5,Speed Racer (2008),Action|Children|Sci-Fi|IMAX +59103,2.6666666666666665,"Forbidden Kingdom, The (2008)",Action|Adventure|Comedy|Fantasy +59118,4.0,Happy-Go-Lucky (2008),Comedy|Drama +59126,4.0,Religulous (2008),Comedy|Documentary +59141,3.5,Son of Rambow (2007),Children|Comedy|Drama +59143,3.0,Super High Me (2007),Comedy|Documentary +59180,4.0,Tarzan Finds a Son! (1939),Action|Adventure +59258,3.5,Baby Mama (2008),Comedy +59273,5.0,Delirious (2006),Comedy|Drama +59306,4.0,Prom Night (2008),Horror|Mystery|Thriller +59315,4.026666666666666,Iron Man (2008),Action|Adventure|Sci-Fi +59333,3.0,Made of Honor (2008),Comedy|Romance +59339,4.5,Mister Lonely (2007),Comedy|Drama +59369,3.467741935483871,Taken (2008),Action|Crime|Drama|Thriller +59387,3.9545454545454546,"Fall, The (2006)",Adventure|Drama|Fantasy +59418,3.75,"American Crime, An (2007)",Crime +59421,2.75,What Happens in Vegas... (2008),Comedy|Romance +59447,5.0,Fiorile (1993),Drama +59501,3.2,"Chronicles of Narnia: Prince Caspian, The (2008)",Adventure|Children|Fantasy +59519,3.5,Reprise (2006),Drama +59549,5.0,Shelter (2007),Drama|Romance +59590,2.0,Young at Heart (a.k.a. Young@Heart) (2007),Documentary|Musical +59594,2.6666666666666665,"War, Inc. (2008)",Comedy|Crime|Thriller +59615,2.5625,Indiana Jones and the Kingdom of the Crystal Skull (2008),Action|Adventure|Comedy|Sci-Fi +59669,3.0,Following Sean (2005),Documentary +59684,5.0,Lake of Fire (2006),Documentary +59721,4.0,"Grand, The (2007)",Comedy +59725,3.4,Sex and the City (2008),Comedy|Romance +59727,3.25,"Strangers, The (2008)",Horror|Thriller +59731,4.5,"Bigger, Stronger, Faster* (2008)",Documentary +59784,3.803030303030303,Kung Fu Panda (2008),Action|Animation|Children|Comedy|IMAX +59805,4.0,Antonio das Mortes (O Dragão da Maldade contra o Santo Guerreiro) (1969),Drama|Western +59810,4.0,Recount (2008),Drama +59814,4.5,Ex Drummer (2007),Comedy|Crime|Drama|Horror +59832,3.0,Where the Sidewalk Ends (1950),Crime|Drama|Film-Noir +59834,0.5,100 Rifles (1969),Adventure|War|Western +59846,3.5,"Iron Mask, The (1929)",Adventure|Drama|Romance +59900,2.3333333333333335,You Don't Mess with the Zohan (2008),Comedy +59945,3.0,"Mark of Zorro, The (1920)",Adventure|Romance|Western +59985,3.5,Chaos Theory (2007),Comedy|Drama|Romance +59995,3.8333333333333335,Boy A (2007),Crime|Drama +60037,2.3333333333333335,"Happening, The (2008)",Drama|Sci-Fi|Thriller +60040,3.176470588235294,"Incredible Hulk, The (2008)",Action|Sci-Fi +60069,3.7039473684210527,WALL·E (2008),Adventure|Animation|Children|Romance|Sci-Fi +60072,2.7222222222222223,Wanted (2008),Action|Thriller +60074,2.8947368421052633,Hancock (2008),Action|Adventure|Comedy|Crime|Fantasy +60086,4.0,Boy Culture (2006),Drama +60126,3.1923076923076925,Get Smart (2008),Action|Comedy +60128,4.0,Young People Fucking (a.k.a. YPF) (2007),Comedy +60135,4.0,Surfwise (2007),Documentary +60137,0.5,"Rape of Europa, The (2006)",Documentary +60291,4.0,Gonzo: The Life and Work of Dr. Hunter S. Thompson (2008),Documentary +60293,3.375,"Wackness, The (2008)",Comedy|Drama|Romance +60295,3.5,Up the Yangtze (2007),Documentary +60333,4.25,Encounters at the End of the World (2008),Documentary +60343,2.5,Wee Willie Winkie (1937),Adventure +60382,3.8333333333333335,Roman Polanski: Wanted and Desired (2008),Documentary +60384,5.0,Z Channel: A Magnificent Obsession (2004),Documentary +60397,3.3333333333333335,Mamma Mia! (2008),Comedy|Musical|Romance +60471,2.5,Rogue (2007),Action|Adventure|Horror|Sci-Fi|Thriller +60487,3.5,"It's the Great Pumpkin, Charlie Brown (1966)",Animation|Children|Comedy +60514,2.75,Journey to the Center of the Earth (2008),Action|Adventure|Sci-Fi +60516,2.5,Meet Dave (2008),Adventure|Children|Comedy|Romance|Sci-Fi +60609,4.0,Death Note (2006),Adventure|Crime|Drama|Horror|Mystery +60649,1.0,Space Chimps (2008),Adventure|Animation|Comedy +60684,3.6538461538461537,Watchmen (2009),Action|Drama|Mystery|Sci-Fi|Thriller|IMAX +60753,3.6666666666666665,Felon (2008),Crime|Drama +60756,3.7857142857142856,Step Brothers (2008),Comedy +60760,3.5,"X-Files: I Want to Believe, The (2008)",Drama|Mystery|Sci-Fi|Thriller +60763,3.3333333333333335,American Teen (2008),Documentary +60766,3.8333333333333335,Man on Wire (2008),Documentary +60832,3.0,Pathology (2008),Crime|Horror|Thriller +60857,4.0,"Tracey Fragments, The (2007)",Drama +60937,2.3333333333333335,"Mummy: Tomb of the Dragon Emperor, The (2008)",Action|Adventure|Fantasy|Thriller +60943,3.6666666666666665,Frozen River (2008),Drama +60950,3.2083333333333335,Vicky Cristina Barcelona (2008),Comedy|Drama|Romance +60990,0.5,"End of Summer, The (Early Autumn) (Kohayagawa-ke no aki) (1961)",Drama +61013,5.0,Absolute Giganten (1999),Action|Comedy|Drama|Romance +61024,3.522727272727273,Pineapple Express (2008),Action|Comedy|Crime +61026,4.0,Red Cliff (Chi bi) (2008),Action|Adventure|Drama|War +61071,3.8333333333333335,"Sisterhood of the Traveling Pants 2, The (2008)",Adventure|Comedy|Drama|Romance +61075,3.0,Elegy (2008),Drama|Romance +61123,3.0,High School Musical 2 (2007),Comedy|Drama|Musical|Romance +61132,3.4210526315789473,Tropic Thunder (2008),Action|Adventure|Comedy|War +61160,2.6666666666666665,Star Wars: The Clone Wars (2008),Action|Adventure|Animation|Sci-Fi +61167,4.5,Henry Poole is Here (2008),Drama|Mystery +61206,4.5,In the City of Sylvia (En la ciudad de Sylvia) (2007),Drama +61210,2.5,Mutant Chronicles (2008),Action|Adventure|Sci-Fi +61236,4.25,Waltz with Bashir (Vals im Bashir) (2008),Animation|Documentary|Drama|War +61240,3.7777777777777777,Let the Right One In (Låt den rätte komma in) (2008),Drama|Fantasy|Horror|Romance +61248,3.375,Death Race (2008),Action|Adventure|Sci-Fi|Thriller +61250,5.0,"House Bunny, The (2008)",Comedy +61289,2.5,Sukiyaki Western Django (2008),Action|Western +61323,3.783333333333333,Burn After Reading (2008),Comedy|Crime|Drama +61348,0.5,Disaster Movie (2008),Comedy +61350,2.25,Babylon A.D. (2008),Action|Adventure|Sci-Fi|Thriller +61352,3.8333333333333335,Traitor (2008),Crime|Drama|Thriller +61357,4.25,Trouble the Water (2008),Documentary +61361,3.0,"Women, The (2008)",Comedy|Drama +61401,3.0,"Spirit, The (2008)",Action|Comedy|Fantasy|Thriller +61465,0.5,Bangkok Dangerous (2008),Action|Crime|Thriller +61634,3.5,Son of Lassie (1945),Children|Drama +61646,4.0,DarkBlueAlmostBlack (Azuloscurocasinegro) (2006),Drama|Romance +61705,1.5,Lakeview Terrace (2008),Drama|Thriller +61729,3.25,Ghost Town (2008),Comedy|Fantasy|Romance +62049,4.5,1984 (1956),Drama|Sci-Fi +62081,3.375,Eagle Eye (2008),Action|Crime|Thriller|IMAX +62113,3.25,How to Lose Friends & Alienate People (2008),Comedy +62115,5.0,Six Shooter (2004),Comedy|Drama +62155,3.2857142857142856,Nick and Norah's Infinite Playlist (2008),Comedy|Drama|Romance +62203,4.0,Martyrs (2008),Horror +62250,3.0,Gomorrah (Gomorra) (2008),Crime|Drama +62344,3.5,Rachel Getting Married (2008),Drama|Romance +62374,3.9,Body of Lies (2008),Action|Drama|Thriller +62376,3.75,City of Ember (2008),Adventure|Children|Sci-Fi +62378,3.0,Magicians (2007),Comedy +62383,3.5,"20,000 Leagues Under the Sea (1916)",Action|Adventure|Sci-Fi +62394,1.3333333333333333,Max Payne (2008),Action|Crime|Drama|Thriller +62434,3.269230769230769,Zack and Miri Make a Porno (2008),Comedy|Drama|Romance +62437,3.8333333333333335,W. (2008),Drama +62511,3.8333333333333335,"Synecdoche, New York (2008)",Comedy|Drama +62644,3.25,"Wave, The (Welle, Die) (2008)",Drama +62718,4.5,"Angus, Thongs and Perfect Snogging (2008)",Comedy|Romance +62733,1.5,Quarantine (2008),Drama|Horror|Mystery|Thriller +62764,4.5,Black Moon (1975),Fantasy|Mystery|Sci-Fi|War +62792,3.5,Pride and Glory (2008),Crime|Drama +62801,4.0,Lone Wolf and Cub: Baby Cart to Hades (Kozure Ôkami: Shinikazeni mukau ubaguruma) (1972),Action|Drama +62849,3.55,RocknRolla (2008),Action|Crime +62912,3.0,High School Musical 3: Senior Year (2008),Musical +62999,3.1875,Madagascar: Escape 2 Africa (2008),Action|Adventure|Animation|Children|Comedy|IMAX +63062,3.6666666666666665,Changeling (2008),Crime|Drama|Mystery +63072,3.375,"Road, The (2009)",Adventure|Drama|Thriller +63082,3.7596153846153846,Slumdog Millionaire (2008),Crime|Drama|Romance +63113,3.1470588235294117,Quantum of Solace (2008),Action|Adventure|Thriller +63131,3.4285714285714284,Role Models (2008),Comedy +63179,4.5,Tokyo! (2008),Drama +63239,2.5,Cinderella (1997),Children|Fantasy|Musical|Romance +63276,3.75,Crows Zero (Kurôzu zero) (2007),Action +63393,1.75,Camp Rock (2008),Comedy|Musical|Romance +63436,3.3333333333333335,Saw V (2008),Crime|Horror|Thriller +63479,3.5,Sex Drive (2008),Comedy +63481,2.0,Soul Men (2008),Comedy|Musical +63515,3.5,The Island (2006),Drama|Mystery +63540,0.5,Beverly Hills Chihuahua (2008),Adventure|Children|Comedy +63629,4.0,Fanny (1961),Drama|Romance +63808,3.6666666666666665,"Class, The (Entre les murs) (2008)",Drama +63826,3.0,Splinter (2008),Action|Horror|Thriller +63836,5.0,"Manson Family, The (2003)",Crime|Drama|Horror +63853,3.125,Australia (2008),Adventure|Drama|War|Western +63859,3.409090909090909,Bolt (2008),Action|Adventure|Animation|Children|Comedy +63876,3.6363636363636362,Milk (2008),Drama +63992,2.5384615384615383,Twilight (2008),Drama|Fantasy|Romance|Thriller +64030,2.0,Transporter 3 (2008),Action|Adventure|Crime|Thriller +64032,1.5,Four Christmases (2008),Comedy +64034,4.0625,"Boy in the Striped Pajamas, The (Boy in the Striped Pyjamas, The) (2008)",Drama|War +64114,4.5,Fireproof (2008),Drama|Romance +64116,1.0,Igor (2008),Animation|Comedy +64153,1.0,"Devil's Chair, The (2006)",Horror +64197,4.166666666666667,Hunger (2008),Drama +64229,3.5,Cadillac Records (2008),Drama|Musical +64249,3.25,Shrek the Halls (2007),Adventure|Animation|Comedy|Fantasy +64278,5.0,"Pervert's Guide to Cinema, The (2006)",Documentary +64285,3.75,Wallace and Gromit in 'A Matter of Loaf and Death' (2008),Animation|Comedy +64321,4.5,"Friend of Mine, A (Ein Freund von mir) (2006)",Comedy|Drama +64338,2.5,Gypsy (1993),Comedy|Drama|Musical +64497,2.5,"Day the Earth Stood Still, The (2008)",Drama|Sci-Fi|Thriller|IMAX +64499,4.5,Che: Part One (2008),Drama|War +64501,4.5,Che: Part Two (2008),Drama|War +64575,3.1,Doubt (2008),Drama|Mystery +64614,3.8333333333333335,Gran Torino (2008),Crime|Drama +64620,3.85,Frost/Nixon (2008),Drama +64622,3.25,"Reader, The (2008)",Drama|Romance +64660,5.0,Waiter (Ober) (2006),Comedy +64695,3.0,Sword of the Stranger (Sutorejia: Mukô hadan) (2007),Action|Adventure|Animation +64701,3.0,I've Loved You So Long (Il y a longtemps que je t'aime) (2008),Drama|Mystery +64716,4.045454545454546,Seven Pounds (2008),Drama +64839,3.9705882352941178,"Wrestler, The (2008)",Drama +64957,3.6333333333333333,"Curious Case of Benjamin Button, The (2008)",Drama|Fantasy|Mystery|Romance +64969,3.1538461538461537,Yes Man (2008),Comedy +64983,3.357142857142857,Valkyrie (2008),Drama|Thriller|War +64990,3.0,Pete Seeger: The Power of Song (2007),Documentary +64993,3.75,5 Centimeters per Second (Byôsoku 5 senchimêtoru) (2007),Animation|Drama|Romance +64997,2.5,War of the Worlds (2005),Action|Sci-Fi +65037,5.0,Ben X (2007),Drama +65088,4.0,Bedtime Stories (2008),Adventure|Children|Comedy +65126,3.75,Choke (2008),Comedy|Drama +65130,3.5,Revolutionary Road (2008),Drama|Romance +65133,3.75,Blackadder Back & Forth (1999),Comedy +65188,3.6,Dear Zachary: A Letter to a Son About His Father (2008),Documentary +65193,4.0,Wild Child (2008),Drama|Romance +65216,5.0,Defiance (2008),Drama|Thriller|War +65230,2.8,Marley & Me (2008),Comedy|Drama +65259,4.0,Involuntary (De ofrivilliga) (2008),Drama +65261,4.178571428571429,Ponyo (Gake no ue no Ponyo) (2008),Adventure|Animation|Children|Fantasy +65310,3.0,Poultrygeist: Night of the Chicken Dead (2006),Comedy|Horror|Musical +65418,2.5,Wendy and Lucy (2008),Drama +65465,3.0,Last Chance Harvey (2008),Drama|Romance +65514,3.9583333333333335,Ip Man (2008),Action|Drama|War +65552,3.5,Replicant (2001),Action|Sci-Fi|Thriller +65567,2.5,Passengers (2008),Drama|Mystery|Thriller +65577,1.5,"Tale of Despereaux, The (2008)",Adventure|Animation|Children|Comedy|Fantasy +65585,2.1,Bride Wars (2009),Comedy|Romance +65601,2.5,My Bloody Valentine 3-D (2009),Horror|Thriller +65642,4.125,"Timecrimes (Cronocrímenes, Los) (2007)",Sci-Fi|Thriller +65665,4.0,Hamlet (2000),Drama +65682,3.142857142857143,Underworld: Rise of the Lycans (2009),Action|Fantasy|Horror|Thriller +65685,3.0,Inkheart (2008),Adventure|Fantasy +65802,0.5,Paul Blart: Mall Cop (2009),Action|Comedy|Crime +65982,3.1666666666666665,Outlander (2008),Action|Adventure|Sci-Fi +66019,2.5,"Great Ecstasy of Woodcarver Steiner, The (Große Ekstase des Bildschnitzers Steiner, Die) (1974)",Documentary +66066,0.5,"Grudge 3, The (2009)",Horror +66090,3.75,Eden Lake (2008),Horror|Thriller +66097,3.7916666666666665,Coraline (2009),Animation|Fantasy|Thriller +66130,2.5,Chocolate (2008),Action|Drama +66171,3.0,Push (2009),Sci-Fi|Thriller +66198,2.5,"International, The (2009)",Drama|Thriller +66200,2.5,Two Lovers (2008),Drama|Romance +66203,3.125,He's Just Not That Into You (2009),Comedy|Drama|Romance +66246,2.5,Numbskull Emptybrook (Uuno Turhapuro) (1973),Comedy +66310,2.0,Frontière(s) (2007),Drama|Horror|Thriller +66317,3.5,Comet in Moominland (1992),Adventure|Animation|Fantasy +66335,2.25,Afro Samurai: Resurrection (2009),Animation +66371,4.2,Departures (Okuribito) (2008),Drama +66427,3.5,My Name Is Bruce (2007),Comedy|Horror +66509,2.5,Funny People (2009),Comedy|Drama +66544,3.0,Nuremberg (2000),Drama|War +66596,1.5,Mystery Team (2009),Comedy|Crime|Mystery +66659,0.5,Tyler Perry's Madea Goes to Jail (2009),Comedy|Crime|Drama +66665,4.2,Away We Go (2009),Comedy|Drama|Romance +66686,3.5,"Unsuspected, The (1947)",Drama|Film-Noir|Thriller +66744,4.0,"Divo, Il (2008)",Drama +66785,4.0,"Good, the Bad, the Weird, The (Joheunnom nabbeunnom isanghannom) (2008)",Action|Adventure|Comedy|Western +66798,4.0,"Pink Panther 2, The (2009)",Adventure|Comedy|Mystery +66808,1.0,Far Cry (2008),Action|Adventure|Drama +66915,3.0,Rock-A-Doodle (1991),Adventure|Animation|Children|Musical +66934,3.625,Dr. Horrible's Sing-Along Blog (2008),Comedy|Drama|Musical|Sci-Fi +67087,3.888888888888889,"I Love You, Man (2009)",Comedy +67193,2.6666666666666665,Duplicity (2009),Crime|Romance|Thriller +67197,2.7142857142857144,Knowing (2009),Action|Drama|Mystery|Sci-Fi|Thriller +67252,3.3333333333333335,Ong-Bak 2: The Beginning (Ong Bak 2) (2008),Action +67255,3.5714285714285716,"Girl with the Dragon Tattoo, The (Män som hatar kvinnor) (2009)",Crime|Drama|Mystery|Thriller +67267,3.625,Sunshine Cleaning (2008),Comedy|Drama +67361,2.0,Echelon Conspiracy (2009),Action|Mystery|Thriller +67408,3.3,Monsters vs. Aliens (2009),Animation|Sci-Fi|IMAX +67429,4.0,Sita Sings the Blues (2008),Animation|Musical +67504,5.0,Land of Silence and Darkness (Land des Schweigens und der Dunkelheit) (1971),Documentary +67508,4.75,"Baader Meinhof Komplex, Der (2008)",Action|Crime|Drama|Thriller +67665,3.125,Anvil! The Story of Anvil (2008),Documentary|Musical +67695,2.5,Observe and Report (2009),Action|Comedy +67734,3.142857142857143,Adventureland (2009),Comedy|Drama +67788,3.0,Confessions of a Shopaholic (2009),Comedy|Romance +67799,2.5,The Butterfly Effect 3: Revelations (2009),Drama|Fantasy|Sci-Fi|Thriller +67867,2.0,Dragonball Evolution (2009),Action|Adventure|Fantasy|Sci-Fi +67923,3.2,"Fast & Furious (Fast and the Furious 4, The) (2009)",Action|Crime|Drama|Thriller +67957,3.75,Superstar: The Karen Carpenter Story (1988),Drama|Musical +67997,4.1,In the Loop (2009),Comedy +68073,3.9,Pirate Radio (2009),Comedy|Drama +68099,4.5,Apollo 13: To the Edge and Back (1994),Documentary +68135,3.6818181818181817,17 Again (2009),Comedy|Drama +68137,2.0,Nana (2005),Drama +68157,4.135593220338983,Inglourious Basterds (2009),Action|Drama|War +68159,3.857142857142857,State of Play (2009),Crime|Drama|Thriller +68194,3.75,"Damned United, The (2009)",Drama +68205,2.75,Crank: High Voltage (2009),Action|Comedy|Crime +68237,4.125,Moon (2009),Drama|Mystery|Sci-Fi|Thriller +68269,4.166666666666667,"Young Victoria, The (2009)",Drama|Romance +68319,2.911764705882353,X-Men Origins: Wolverine (2009),Action|Sci-Fi|Thriller +68324,1.0,"Girlfriend Experience, The (2009)",Drama +68347,4.5,Sin Nombre (2009),Crime|Drama|Thriller +68358,3.8333333333333335,Star Trek (2009),Action|Adventure|Sci-Fi|IMAX +68444,3.0,"Great Buck Howard, The (2008)",Comedy +68486,4.0,Red Cliff Part II (Chi Bi Xia: Jue Zhan Tian Xia) (2009),Action|Drama|War +68536,4.0,Stanley Kubrick: A Life in Pictures (2001),Documentary +68554,3.2,Angels & Demons (2009),Crime|Drama|Mystery|Thriller +68614,2.5,"Seduction of Joe Tynan, The (1979)",Drama +68659,3.375,Fanboys (2009),Adventure|Comedy|Drama +68791,3.3846153846153846,Terminator Salvation (2009),Action|Adventure|Sci-Fi|Thriller +68793,2.8,Night at the Museum: Battle of the Smithsonian (2009),Action|Comedy|IMAX +68835,4.5,Were the World Mine (2008),Adventure|Fantasy|Musical|Romance +68838,4.25,Every Little Step (2008),Documentary +68848,3.5,"Brothers Bloom, The (2008)",Adventure|Comedy|Crime|Romance +68872,4.0,Paisan (Paisà) (1946),Drama|War +68884,0.5,Shall We Kiss? (Un baiser s'il vous plait) (2007),Comedy|Romance +68901,3.5,Chop Shop (2007),Drama +68932,2.0,"Soloist, The (2009)",Drama|Musical +68952,3.5,Drag Me to Hell (2009),Comedy|Horror +68954,3.942622950819672,Up (2009),Adventure|Animation|Children|Drama +68959,2.5,Fullmetal Alchemist the Movie: Conqueror of Shamballa (Gekijô-ban hagane no renkinjutsushi: Shanbara wo yuku mono) (2005),Action|Adventure|Animation|Drama +68965,0.5,Dance Flick (2009),Comedy|Musical +68967,4.0,"Summer Hours (Heure d'été, L') (2008)",Drama +69069,3.6666666666666665,Fired Up (2009),Comedy +69118,1.5,In the Electric Mist (2009),Drama|Mystery +69122,3.6136363636363638,"Hangover, The (2009)",Comedy|Crime +69134,3.6,Antichrist (2009),Drama|Fantasy +69241,2.5,Berlin Alexanderplatz (1980),Drama +69253,3.0,New in Town (2009),Comedy|Romance +69275,2.25,Dead Snow (Død snø) (2009),Action|Adventure|Comedy|Horror +69278,2.75,Land of the Lost (2009),Action|Adventure|Comedy|Sci-Fi +69280,4.0,"Clique, The (2008)",Comedy +69306,2.388888888888889,"Taking of Pelham 1 2 3, The (2009)",Crime|Drama|Thriller +69406,3.0,"Proposal, The (2009)",Comedy|Romance +69436,1.0,Year One (2009),Adventure|Comedy +69458,3.5,Tyson (2008),Documentary +69481,4.134615384615385,"Hurt Locker, The (2008)",Action|Drama|Thriller|War +69495,3.0,Breakfast with Scot (2007),Drama|Romance +69516,4.25,"Limits of Control, The (2009)",Crime|Drama|Film-Noir +69524,3.75,Raiders of the Lost Ark: The Adaptation (1989),Action|Adventure|Thriller +69526,2.625,Transformers: Revenge of the Fallen (2009),Action|Adventure|Sci-Fi|IMAX +69529,4.0,Home (2009),Documentary +69559,4.0,"File on Thelma Jordan, The (1950)",Crime|Drama|Film-Noir|Mystery +69604,2.75,Whatever Works (2009),Comedy|Romance +69606,3.1,Ghosts of Girlfriends Past (2009),Comedy|Fantasy|Romance +69640,3.642857142857143,Public Enemies (2009),Crime|Drama|Thriller +69644,3.3333333333333335,Ice Age: Dawn of the Dinosaurs (2009),Action|Adventure|Animation|Children|Comedy|Romance +69654,4.0,Prison Break: The Final Break (2009),Action|Drama|Thriller +69685,3.0,Daria: Is It College Yet? (2002),Animation|Comedy +69712,2.875,My Sister's Keeper (2009),Drama +69746,2.5,Watchmen: Tales of the Black Freighter (2009),Action|Adventure|Animation|Horror +69757,3.7555555555555555,(500) Days of Summer (2009),Comedy|Drama|Romance +69761,5.0,Through the Olive Trees (Zire darakhatan zeyton) (1994),Drama +69784,2.375,Brüno (Bruno) (2009),Comedy +69805,3.25,"Librarian, The: The Curse of the Judas Chalice (2008)",Action|Adventure|Fantasy +69821,1.5,Men of War (1994),Action|Drama +69844,4.068965517241379,Harry Potter and the Half-Blood Prince (2009),Adventure|Fantasy|Mystery|Romance|IMAX +69849,4.5,Roots (1977),Drama|War +69908,4.0,"Group, The (1966)",Drama +69945,2.5,"Fast and the Furious, The (1955)",Crime|Mystery +69951,3.4285714285714284,"Imaginarium of Doctor Parnassus, The (2009)",Drama|Fantasy +70121,0.5,'Neath the Arizona Skies (1934),Western +70159,4.0,Orphan (2009),Drama|Horror|Mystery|Thriller +70183,3.625,"Ugly Truth, The (2009)",Comedy|Drama|Romance +70188,2.5,Wild River (1960),Drama|Romance +70201,3.5,High Hopes (1988),Comedy +70282,3.5,Aliens in the Attic (2009),Adventure|Children|Fantasy|Sci-Fi +70286,4.009433962264151,District 9 (2009),Mystery|Sci-Fi|Thriller +70293,3.7857142857142856,Julie & Julia (2009),Comedy|Drama|Romance +70305,2.5,Race to Witch Mountain (2009),Adventure|Children|Fantasy|Sci-Fi|Thriller +70336,2.4166666666666665,G.I. Joe: The Rise of Cobra (2009),Action|Adventure|Sci-Fi|Thriller +70344,3.5,Cold Souls (2009),Comedy|Drama +70418,3.0,Introducing Dorothy Dandridge (1999),Drama|Musical|Romance +70465,4.0,Jerusalema (Gangster's Paradise: Jerusalema) (2008),Action|Crime|Drama +70488,3.5,Wings of Hope (Julianes Sturz in den Dschungel) (2000),Adventure|Documentary +70533,3.3,Evangelion: 1.0 You Are (Not) Alone (Evangerion shin gekijôban: Jo) (2007),Action|Animation|Sci-Fi +70545,2.0,"Deal, The (2008)",Comedy +70565,3.0,"Goods: Live Hard, Sell Hard, The (2009)",Comedy +70567,3.5,Adam (2009),Drama|Romance +70597,2.5,Gigantic (2008),Comedy|Romance +70599,2.5,"Time Traveler's Wife, The (2009)",Drama|Romance|Sci-Fi +70663,3.5,"I Love You, Beth Cooper (2009)",Comedy|Romance +70678,4.5,Huhwihaji Anha (No Regret) (2006),Drama +70697,1.75,G-Force (2009),Action|Adventure|Children|Fantasy +70728,3.5,Bronson (2009),Action|Comedy|Drama|Thriller +70751,2.5,Little Richard (2000),Drama +70762,5.0,"Curiosity of Chance, The (2006)",Comedy +70846,2.0,Lorna's Silence (Le silence de Lorna) (2008),Drama +70862,3.1666666666666665,It Might Get Loud (2008),Documentary +70898,4.5,Post Grad (2009),Comedy +70927,3.0,To Each His Own Cinema (Chacun son cinéma ou Ce petit coup au coeur quand la lumière s'éteint et que le film commence) (2007),Comedy|Drama +70984,3.5,Taking Woodstock (2009),Comedy +70994,3.5,Halloween II (2009),Horror|Thriller +71033,3.7142857142857144,"Secret in Their Eyes, The (El secreto de sus ojos) (2009)",Crime|Drama|Mystery|Romance|Thriller +71057,3.4166666666666665,9 (2009),Adventure|Animation|Sci-Fi +71102,4.0,"Three Musketeers, The (1933)",Action|Adventure|Thriller +71106,3.75,Frequently Asked Questions About Time Travel (2009),Comedy|Sci-Fi +71108,4.333333333333333,"White Ribbon, The (Das weiße Band) (2009)",Drama|Mystery +71131,3.5,"Most Hated Family in America, The (2007)",Documentary +71135,3.857142857142857,Pandorum (2009),Horror|Sci-Fi|Thriller +71156,3.625,"Men Who Stare at Goats, The (2009)",Action|Comedy|Drama +71180,5.0,Padre padrone (1977),Drama +71205,3.5,Jennifer's Body (2009),Comedy|Horror|Sci-Fi|Thriller +71211,3.0555555555555554,"Informant!, The (2009)",Comedy|Crime|Drama|Thriller +71248,2.625,Extract (2009),Comedy +71252,2.1666666666666665,"Final Destination, The (Final Destination 4) (Final Destination in 3-D, The) (2009)",Horror|Thriller +71254,2.875,Gamer (2009),Action|Sci-Fi|Thriller +71264,3.6666666666666665,Cloudy with a Chance of Meatballs (2009),Animation|Children|Fantasy|IMAX +71282,3.1666666666666665,"Food, Inc. (2008)",Documentary +71304,2.25,Thirst (Bakjwi) (2009),Drama|Horror +71318,2.5,Terra (a.k.a. Battle for Terra) (2007),Adventure|Animation|Sci-Fi +71379,2.9285714285714284,Paranormal Activity (2009),Horror|Thriller +71390,5.0,"Not Quite Hollywood: The Wild, Untold Story of Ozploitation! (2008)",Documentary +71404,4.0,"3 Worlds of Gulliver, The (1960)",Adventure|Fantasy +71429,4.333333333333333,World's Greatest Dad (2009),Comedy|Drama +71433,4.5,"Black God, White Devil (Deus e o Diabo na Terra do Sol) (1964)",Adventure|Crime|Drama|Western +71438,3.5,Still Walking (Aruitemo aruitemo) (2008),Drama +71460,1.0,Wanted (2009),Action|Romance +71462,4.1,"Cove, The (2009)",Documentary +71464,3.230769230769231,"Serious Man, A (2009)",Comedy|Drama +71466,3.875,City Island (2009),Comedy|Drama +71490,2.5,Grace (2009),Drama|Horror|Thriller +71494,4.0,"Haunted World of El Superbeasto, The (2009)",Action|Animation|Comedy|Horror|Thriller +71518,3.1666666666666665,Whip It (2009),Comedy|Drama +71520,2.9285714285714284,"Invention of Lying, The (2009)",Comedy +71525,3.0,A-Haunting We Will Go (1942),Comedy +71530,3.0714285714285716,Surrogates (2009),Action|Sci-Fi|Thriller +71533,3.0,Next Day Air (2009),Action|Comedy|Crime +71535,3.635135135135135,Zombieland (2009),Action|Comedy|Horror +71573,1.5,Whiteout (2009),Action|Crime|Drama|Mystery|Thriller +71579,3.5833333333333335,"Education, An (2009)",Drama|Romance +71640,4.5,Burma VJ: Reporting from a Closed Country (Burma VJ: Reporter i et lukket land) (2008),Documentary +71650,4.0,Werner Herzog Eats His Shoe (1980),Documentary +71668,2.0,Couples Retreat (2009),Comedy|Romance +71700,1.5,Deadgirl (2008),Horror +71732,2.8333333333333335,I Sell the Dead (2008),Comedy|Horror +71745,3.0,Where the Wild Things Are (2009),Adventure|Children|Drama|Fantasy|IMAX +71755,5.0,Earth Entranced (Terra em Transe) (1967),Drama +71804,2.5,Reckless (1984),Comedy|Drama|Romance +71823,2.5,"New York, I Love You (2009)",Drama|Romance +71838,3.5833333333333335,Law Abiding Citizen (2009),Drama|Thriller +71876,0.5,Amelia (2009),Drama +72011,3.480769230769231,Up in the Air (2009),Drama|Romance +72043,2.5,Monsters vs Aliens: Mutant Pumpkins from Outer Space (2009),Animation|Comedy|Sci-Fi +72104,3.0,Balance (1989),Animation|Drama|Mystery|Sci-Fi|Thriller +72129,3.25,Saw VI (2009),Crime|Horror|Mystery|Thriller +72131,4.0,Michael Jackson's This Is It (2009),Documentary|Musical|IMAX +72165,3.0,Cirque du Freak: The Vampire's Assistant (2009),Action|Adventure|Comedy|Fantasy|Horror|Thriller +72169,3.25,Good Hair (2009),Comedy|Documentary +72171,4.083333333333333,Black Dynamite (2009),Action|Comedy +72176,3.0,Big Fan (2009),Comedy|Crime|Drama +72209,2.75,Astro Boy (2009),Action|Animation|Children|Sci-Fi +72224,2.5,Gentlemen Broncos (2009),Comedy +72226,4.021739130434782,Fantastic Mr. Fox (2009),Adventure|Animation|Children|Comedy|Crime +72294,4.0,"Christmas Carol, A (2009)",Animation|Children|Drama|Fantasy|IMAX +72356,4.75,Partly Cloudy (2009),Animation|Children|Comedy|Fantasy +72378,2.411764705882353,2012 (2009),Action|Drama|Sci-Fi|Thriller +72380,3.5,"Box, The (2009)",Drama|Horror|Mystery|Sci-Fi|Thriller +72386,3.75,Broken Embraces (Los abrazos rotos) (2009),Drama|Romance|Thriller +72393,4.0,"Fourth Kind, The (2009)",Horror|Mystery|Sci-Fi|Thriller +72395,2.9166666666666665,Precious (2009),Drama +72405,2.1666666666666665,Bad Lieutenant: Port of Call New Orleans (2009),Crime|Drama +72407,2.0,"Twilight Saga: New Moon, The (2009)",Drama|Fantasy|Horror|Romance|Thriller +72479,3.5,"Messenger, The (2009)",Drama|Romance|War +72489,2.8,Ninja Assassin (2009),Action|Crime|Drama|Thriller +72603,3.0,Merry Madagascar (2009),Animation +72605,3.0,Brothers (2009),Drama|Thriller|War +72612,2.5,"Fly, The (Légy, A) (1980)",Animation|Comedy +72626,3.0,"Billy Blazes, Esq. (1919)",Comedy|Western +72630,3.5,Sleep Dealer (2008),Sci-Fi +72641,3.8947368421052633,"Blind Side, The (2009)",Drama +72647,4.5,Zorn's Lemma (1970),Drama +72683,4.0,Limit (Limite) (1931),Drama +72694,2.0,Shrink (2009),Drama +72696,1.5,Old Dogs (2009),Comedy +72701,2.75,Planet 51 (2009),Adventure|Animation|Children|Comedy|Sci-Fi +72720,3.5,"Single Man, A (2009)",Drama +72731,3.0,"Lovely Bones, The (2009)",Crime|Drama|Fantasy|Horror|Thriller +72733,3.75,Invictus (2009),Drama +72737,2.9,"Princess and the Frog, The (2009)",Animation|Children|Fantasy|Musical|Romance +72741,3.5,Everybody's Fine (2009),Drama +72762,2.5,Armored (2009),Action|Drama|Thriller +72781,4.5,Red Chapel (Røde kapel) (2006),Comedy|Documentary +72880,4.0,Flaming Creatures (1963),Drama +72919,2.5,Did You Hear About the Morgans? (2009),Comedy|Crime|Drama|Romance +72947,4.0,Make the Yuletide Gay (2009),Comedy|Romance +72998,3.6417910447761193,Avatar (2009),Action|Adventure|Sci-Fi|IMAX +73015,2.375,It's Complicated (2009),Comedy|Romance +73017,3.875,Sherlock Holmes (2009),Action|Crime|Mystery|Thriller +73023,3.7857142857142856,Crazy Heart (2009),Drama|Romance +73042,2.25,Alvin and the Chipmunks: The Squeakquel (2009),Animation|Children|Comedy|Musical +73101,4.0,Looking for Eric (2009),Comedy|Drama|Fantasy +73168,2.5,Carriers (2009),Drama|Horror|Thriller +73211,3.75,Pontypool (2008),Horror|Thriller +73266,3.6,Youth in Revolt (2009),Comedy|Drama|Romance +73268,3.3333333333333335,Daybreakers (2010),Action|Drama|Horror|Thriller +73276,3.0,"Age of Stupid, The (2009)",Documentary +73290,4.5,Hachiko: A Dog's Story (a.k.a. Hachi: A Dog's Tale) (2009),Drama +73319,3.0,Leap Year (2010),Comedy|Romance +73321,3.588235294117647,"Book of Eli, The (2010)",Action|Adventure|Drama +73323,3.5,"Girl Who Kicked the Hornet's Nest, The (Luftslottet som sprängdes) (2009)",Action|Crime|Mystery +73344,4.416666666666667,"Prophet, A (Un Prophète) (2009)",Crime|Drama +73386,1.5,Staten Island (2009),Crime|Drama +73392,3.5,Collapse (2009),Documentary +73469,3.0,Mr. Warmth: The Don Rickles Project (2007),Documentary +73488,2.5,Blood: The Last Vampire (2009),Action|Horror|Thriller +73531,4.0,"Last of England, The (1988)",Drama +73572,3.0,"My Son, My Son, What Have Ye Done (2009)",Drama|Horror +73587,4.75,Soul Kitchen (2009),Comedy +73664,3.0,Dragon Hunters (Chasseurs de dragons) (2008),Adventure|Animation|Children +73741,2.0,Ninja (2009),Action|Crime|Drama|Thriller +73808,4.5,"Chaser, The (Chugyeogja) (2008)",Crime|Drama|Thriller +73854,3.5,"Rudolph, the Red-Nosed Reindeer (1964)",Adventure|Animation|Children|Fantasy|Musical +73860,3.0,Nowhere Boy (2009),Drama +73881,3.875,3 Idiots (2009),Comedy|Drama|Romance +73929,2.375,Legion (2010),Action|Fantasy|Horror|Thriller +74089,5.0,Peter Pan (1960),Children|Fantasy|Musical +74115,2.0,Dante's Inferno Animated (2010),Action|Animation|Fantasy +74152,4.5,Zach Galifianakis: Live at the Purple Onion (2006),Comedy|Documentary +74154,3.5,When in Rome (2010),Comedy|Romance +74156,2.0,Edge of Darkness (2010),Drama|Thriller +74228,3.2,Triangle (2009),Drama|Horror|Mystery|Thriller +74275,3.875,I Love You Phillip Morris (2009),Comedy|Drama|Romance +74327,0.5,"First Day of the Rest of Your Life, The (Le premier jour du reste de ta vie) (2008)",Comedy|Drama +74370,3.0,"House of the Devil, The (2009)",Horror|Thriller +74416,4.25,Fish Tank (2009),Drama +74438,2.0,"Legend of the Red Dragon (a.k.a. New Legend of Shaolin, The) (Hong Xi Guan: Zhi Shao Lin wu zu) (1994)",Action|Adventure|Comedy|Drama|Romance +74450,3.75,Valentine's Day (2010),Comedy|Romance +74452,2.8333333333333335,"Wolfman, The (2010)",Horror|Thriller +74458,3.7941176470588234,Shutter Island (2010),Drama|Mystery|Thriller +74486,3.8333333333333335,$9.99 (2008),Animation +74508,4.0,Persuasion (2007),Drama|Romance +74510,3.8333333333333335,"Girl Who Played with Fire, The (Flickan som lekte med elden) (2009)",Action|Crime|Drama|Mystery|Thriller +74530,3.5,Percy Jackson & the Olympians: The Lightning Thief (2010),Adventure|Fantasy +74532,2.6666666666666665,Cop Out (2010),Action|Comedy|Crime +74545,3.25,"Ghost Writer, The (2010)",Drama|Mystery|Thriller +74580,3.25,"Spy Next Door, The (2010)",Action|Children|Comedy +74624,3.5,Agora (2009),Adventure|Drama|Romance +74630,3.0,Tom Thumb (1958),Children|Fantasy|Musical +74649,4.0,Shades of Ray (2008),Comedy|Drama|Romance +74668,3.0,District 13: Ultimatum (Banlieue 13 - Ultimatum) (2009),Action|Sci-Fi +74677,4.0,"Yes Men Fix the World, The (2009)",Documentary +74685,3.1666666666666665,"Crazies, The (2010)",Action|Drama|Horror|Sci-Fi|Thriller +74688,2.0,Dear John (2010),Drama|Romance|War +74698,2.0,Tooth Fairy (2010),Comedy|Fantasy +74727,5.0,Gentlemen of Fortune (Dzhentlmeny udachi) (1972),Comedy|Crime|Drama|Mystery +74740,3.5,Fermat's Room (La habitación de Fermat) (2007),Mystery|Thriller +74754,5.0,"Room, The (2003)",Comedy|Drama|Romance +74787,3.0,My Name is Khan (2010),Drama|Romance +74789,3.125,Alice in Wonderland (2010),Adventure|Fantasy|IMAX +74795,3.2142857142857144,Green Zone (2010),Action|Drama|Thriller|War +74851,3.0,From Paris with Love (2010),Action|Crime +74868,3.0,Dorian Gray (2009),Drama|Horror|Sci-Fi +74916,3.125,Greenberg (2010),Comedy|Drama +74944,3.0,Brooklyn's Finest (2010),Crime|Drama|Thriller +74946,3.375,She's Out of My League (2010),Comedy +74948,3.6666666666666665,Harry Brown (2009),Crime|Drama|Thriller +75341,2.25,Remember Me (2010),Drama|Romance +75349,2.5,Teenage Caveman (2002),Horror|Sci-Fi|Thriller +75803,1.5,Our Family Wedding (2010),Comedy +75805,2.125,"Bounty Hunter, The (2010)",Action|Comedy|Romance +75813,3.1666666666666665,Leaves of Grass (2009),Comedy|Crime|Drama|Thriller +75816,2.0,Women in Trouble (2009),Comedy +75823,4.5,Combat Shock (1986),Drama|Horror|War +75983,4.0,North Face (Nordwand) (2008),Adventure|Drama +75985,3.0,Repo Men (2010),Action|Sci-Fi|Thriller +75990,4.5,"Apprenticeship of Duddy Kravitz, The (1974)",Comedy|Drama +76030,2.75,Case 39 (2009),Horror|Thriller +76054,3.5,Oceans (Océans) (2009),Documentary|Drama +76060,2.0,"Slammin' Salmon, The (2009)",Comedy +76077,3.0,Hot Tub Time Machine (2010),Comedy|Sci-Fi +76091,4.0,Mother (Madeo) (2009),Crime|Drama|Mystery|Thriller +76093,4.151515151515151,How to Train Your Dragon (2010),Adventure|Animation|Children|Fantasy|IMAX +76111,4.333333333333333,About Elly (Darbareye Elly) (2009),Drama|Mystery +76173,4.5,Micmacs (Micmacs à tire-larigot) (2009),Comedy|Crime +76175,1.6666666666666667,Clash of the Titans (2010),Action|Adventure|Drama|Fantasy +76210,3.5,Defendor (2009),Comedy|Crime|Drama +76251,3.6666666666666665,Kick-Ass (2010),Action|Comedy +76272,3.5,Five Minutes of Heaven (2009),Crime|Drama|Thriller +76293,3.0,Date Night (2010),Action|Comedy|Romance +76303,3.0,Mark of the Devil (Hexen bis aufs Blut gequält) (1970),Drama|Horror +76738,2.5,Steam of Life (Miesten vuoro) (2010),Documentary +76763,3.0,"Runaways, The (2010)",Drama|Musical +77191,2.5,Death at a Funeral (2010),Comedy +77201,2.0,Valhalla Rising (2009),Action|Drama|War +77206,2.5,Diary of a Wimpy Kid (2010),Children|Comedy +77291,5.0,Aria (1987),Comedy|Drama +77307,3.6666666666666665,Dogtooth (Kynodontas) (2009),Drama +77359,3.0,Red Riding: 1983 (2009),Crime|Drama|Mystery +77364,3.375,"Losers, The (2010)",Action|Adventure|Drama|Mystery|Thriller +77414,4.0,"Last Song, The (2010)",Drama|Romance +77421,3.0,Cyrus (2010),Comedy|Drama|Romance +77427,1.25,"Human Centipede, The (First Sequence) (2009)",Horror +77435,5.0,This Is the Army (1943),Comedy|Musical|War +77455,3.9166666666666665,Exit Through the Gift Shop (2010),Comedy|Documentary +77561,3.4655172413793105,Iron Man 2 (2010),Action|Adventure|Sci-Fi|Thriller|IMAX +77798,2.5,"Nightmare on Elm Street, A (2010)",Fantasy|Horror|Thriller +77800,3.6,Four Lions (2010),Comedy|Drama +77808,2.5,Bobby Deerfield (1977),Drama|Romance +77810,4.0,Diary of a Nymphomaniac (Diario de una Ninfómana) (2008),Drama +77837,4.0,You Don't Know Jack (2010),Drama +77846,4.125,12 Angry Men (1997),Crime|Drama +77866,2.75,Robin Hood (2010),Action|Adventure|Drama|Romance|War +77907,4.5,"Red Chapel, The (Røde kapel, Det) (2009)",Comedy|Documentary +78034,3.3333333333333335,Cemetery Junction (2010),Comedy|Drama|Romance +78039,3.75,Blue Valentine (2010),Drama|Romance +78041,2.75,Killers (2010),Action|Comedy +78088,3.5,Buried (2010),Mystery|Thriller +78101,2.0,Life After Tomorrow (2006),Documentary +78105,2.75,Prince of Persia: The Sands of Time (2010),Action|Adventure|Fantasy|Romance|IMAX +78111,2.0,Artists and Models (1955),Comedy|Musical +78116,3.5,Please Give (2010),Comedy|Drama +78122,0.5,Peter & the Wolf (2006),Animation|Musical +78174,3.0,Sex and the City 2 (2010),Comedy|Drama|Romance +78209,3.0625,Get Him to the Greek (2010),Comedy +78218,3.5,Unthinkable (2010),Drama|Thriller +78264,2.0,"Back-up Plan, The (2010)",Comedy|Romance +78266,2.0,Splice (2009),Horror|Sci-Fi|Thriller +78316,3.5,Letters to Juliet (2010),Drama|Romance +78349,3.1666666666666665,Exam (2009),Mystery|Thriller +78467,1.8333333333333333,Jonah Hex (2010),Action|Drama|Thriller|Western +78469,2.8333333333333335,"A-Team, The (2010)",Action|Comedy|Thriller +78499,4.071428571428571,Toy Story 3 (2010),Adventure|Animation|Children|Comedy|Fantasy|IMAX +78517,3.0,Joan Rivers: A Piece of Work (2010),Documentary +78574,3.5833333333333335,Winter's Bone (2010),Drama|Thriller +78637,2.8,Shrek Forever After (a.k.a. Shrek: The Final Chapter) (2010),Adventure|Animation|Children|Comedy|Fantasy|IMAX +78653,3.5,Everyone Else (Alle Anderen) (2009),Drama|Romance +78703,3.5,TiMER (2009),Comedy|Drama|Fantasy|Romance +78729,2.25,24: Redemption (2008),Action|Adventure|Crime|Drama|Thriller +78772,1.75,"Twilight Saga: Eclipse, The (2010)",Fantasy|Romance|Thriller|IMAX +78829,3.0,"Betrayal, The (Nerakhoon) (2008)",Documentary +78836,4.5,Enter the Void (2009),Drama +78893,1.5,"Last Airbender, The (2010)",Action|Adventure|Fantasy +78903,5.0,State of Siege (État de siège) (1972),Drama|Thriller +78967,4.0,"Island of Dr. Moreau, The (1977)",Adventure|Fantasy|Horror|Romance|Sci-Fi|Thriller +79006,4.0,Empire of Dreams: The Story of the 'Star Wars' Trilogy (2004),Documentary +79029,4.0,Kurt Cobain About a Son (2006),Documentary|Musical +79057,3.1666666666666665,Predators (2010),Action|Sci-Fi|Thriller +79091,3.71875,Despicable Me (2010),Animation|Children|Comedy|Crime +79132,4.04954954954955,Inception (2010),Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX +79134,3.0,Grown Ups (2010),Comedy +79136,4.5,Thirst (2008),Drama +79139,4.0,"Sorcerer's Apprentice, The (2010)",Action|Adventure|Children|Comedy|Fantasy +79163,4.0,Swedish Auto (2006),Drama|Romance +79185,2.8125,Knight and Day (2010),Action|Comedy|Romance +79203,4.5,Nightwatching (2007),Drama|Mystery +79224,2.25,"Karate Kid, The (2010)",Action|Children|Drama +79242,3.25,"Kids Are All Right, The (2010)",Comedy|Drama +79251,2.75,"Serbian Film, A (Srpski film) (2010)",Horror|Thriller +79259,2.5,Cherrybomb (2009),Drama|Thriller +79293,2.7083333333333335,Salt (2010),Action|Thriller +79299,2.5,"No. 1 Ladies' Detective Agency, The (2008)",Comedy|Crime|Mystery +79318,4.0,Winnebago Man (2009),Comedy|Documentary +79357,4.166666666666667,Mr. Nobody (2009),Drama|Fantasy|Romance|Sci-Fi +79428,2.5,Dinner for Schmucks (2010),Comedy +79469,5.0,"Northerners, The (De noorderlingen) (1992)",Comedy +79553,3.75,Ip Man 2 (2010),Action +79588,3.5,Charlie St. Cloud (2010),Drama|Fantasy|Romance +79590,2.5,"Rebound, The (2009)",Comedy|Romance +79592,3.4285714285714284,"Other Guys, The (2010)",Action|Comedy +79686,4.5,All Tomorrow's Parties (2009),Documentary|Musical +79695,2.5,"Expendables, The (2010)",Action|Adventure|Thriller +79702,3.9615384615384617,Scott Pilgrim vs. the World (2010),Action|Comedy|Fantasy|Musical|Romance +79720,3.25,Animal Kingdom (2010),Crime|Drama +79796,3.5,Centurion (2010),Action|Adventure|Drama|Thriller|War +79824,4.0,Babies (Bébé(s)) (2010),Documentary +79868,3.5,Heartless (2009),Fantasy|Horror|Mystery|Thriller +79879,2.75,Piranha (Piranha 3D) (2010),Action|Horror|Thriller +79946,3.5,"Joneses, The (2009)",Comedy|Drama +80026,4.5,Tekken (2010),Action|Sci-Fi +80083,3.5,Dragon Ball Z: Dead Zone (Doragon bôru Z 1: Ora no Gohan wo kaese) (1989),Action|Adventure|Animation|Fantasy|Sci-Fi +80126,3.0,"American, The (2010)",Drama|Thriller +80166,2.75,"Switch, The (2010)",Comedy|Romance +80185,3.0,GasLand (2010),Documentary +80219,4.0,Machete (2010),Action|Adventure|Comedy|Crime|Thriller +80241,3.0,Going the Distance (2010),Comedy|Romance +80346,3.5,"Song to Remember, A (1945)",Drama +80350,0.5,Vampires Suck (2010),Comedy +80363,3.125,Resident Evil: Afterlife (2010),Action|Horror|Sci-Fi|Thriller|IMAX +80463,3.9767441860465116,"Social Network, The (2010)",Drama +80489,3.764705882352941,"Town, The (2010)",Crime|Drama|Thriller +80549,3.6785714285714284,Easy A (2010),Comedy|Romance +80551,2.5,Eat Pray Love (2010),Drama|Romance +80553,5.0,Howl (2010),Drama +80572,2.5,I'm Still Here (2010),Comedy|Drama +80584,4.5,"Patrik Age 1.5 (Patrik 1,5) (2008)",Comedy|Drama|Romance +80586,3.75,Flipped (2010),Comedy|Drama|Romance +80590,2.0,Wall Street: Money Never Sleeps (2010),Drama +80599,4.5,Buster Keaton: A Hard Act to Follow (1987),Documentary +80615,2.0,Legend of the Guardians: The Owls of Ga'Hoole (2010),Adventure|Animation|Fantasy|IMAX +80693,4.0,It's Kind of a Funny Story (2010),Comedy|Drama +80717,5.0,Voyeur (Abel) (1986),Comedy +80727,3.25,Middle Men (2009),Comedy|Crime|Drama +80748,4.5,Alice in Wonderland (1933),Adventure|Children|Fantasy +80831,3.25,Let Me In (2010),Drama|Horror|Mystery +80839,5.0,Secretariat (2010),Adventure|Drama +80844,1.0,Lake Mungo (2008),Drama|Mystery|Thriller +80846,3.25,Devil (2010),Horror|Mystery|Thriller +80858,2.0,You Again (2010),Comedy +80860,4.0,Life as We Know It (2010),Comedy|Romance +80862,3.1,Catfish (2010),Documentary|Mystery +80864,3.25,You Will Meet a Tall Dark Stranger (2010),Comedy|Romance +80906,3.95,Inside Job (2010),Documentary +80917,3.0,Monsters (2010),Drama|Sci-Fi +80969,3.5,Never Let Me Go (2010),Drama|Romance|Sci-Fi +81018,3.5,"Illusionist, The (L'illusionniste) (2010)",Animation +81054,4.0,Love Is Colder Than Death (Liebe ist kälter als der Tod) (1969),Comedy|Crime|Romance +81083,3.75,Kaboom (2010),Comedy|Sci-Fi +81132,4.0,Rubber (2010),Action|Adventure|Comedy|Crime|Drama|Film-Noir|Horror|Mystery|Thriller|Western +81138,2.5,7 Days (Les 7 jours du talion) (2010),Thriller +81156,3.75,Jackass 3D (2010),Action|Comedy|Documentary +81158,3.3333333333333335,Restrepo (2010),Documentary|War +81191,3.0,Waiting for 'Superman' (2010),Documentary +81229,4.027777777777778,Red (2010),Action|Comedy +81417,3.5,Paranormal Activity 2 (2010),Horror|IMAX +81512,3.0,Hereafter (2010),Drama|Fantasy +81516,4.0,Black Death (2010),Adventure|Drama|Horror|Mystery +81535,2.75,Saw VII 3D - The Final Chapter (2010),Horror|Mystery|Thriller +81537,2.8,Due Date (2010),Comedy +81562,3.630434782608696,127 Hours (2010),Adventure|Drama|Thriller +81564,4.0,Megamind (2010),Action|Animation|Children|Comedy|Sci-Fi|IMAX +81591,3.7794117647058822,Black Swan (2010),Drama|Thriller +81641,3.5,Fair Game (2010),Drama|Thriller +81660,2.5,1990: The Bronx Warriors (1990: I guerrieri del Bronx) (1982),Action|Sci-Fi +81782,3.0,Unstoppable (2010),Action|Drama|Thriller +81784,2.7,Morning Glory (2010),Comedy|Drama|Romance +81786,4.25,Certified Copy (Copie conforme) (2010),Drama +81788,4.166666666666667,"Next Three Days, The (2010)",Crime|Drama|Romance|Thriller +81819,4.0,Biutiful (2010),Drama +81831,4.0,"First Beautiful Thing, The (La prima cosa bella) (2010)",Comedy|Drama +81834,3.9242424242424243,Harry Potter and the Deathly Hallows: Part 1 (2010),Action|Adventure|Fantasy|IMAX +81845,3.925,"King's Speech, The (2010)",Drama +81847,3.6666666666666665,Tangled (2010),Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX +81898,0.5,"Agony and the Ecstasy of Phil Spector, The (2009)",Documentary +81910,3.0,"Art of the Steal, The (2009)",Documentary +81932,4.136363636363637,"Fighter, The (2010)",Drama +81949,3.0,"Romantics, The (2010)",Comedy|Drama|Romance +82037,3.0,"Tillman Story, The (2010)",Documentary +82041,3.5,"Loved Ones, The (2009)",Horror +82093,1.5,London Boulevard (2010),Crime|Romance +82095,1.375,Skyline (2010),Sci-Fi|Thriller +82150,3.5,Bunny and the Bull (2009),Adventure|Comedy|Drama +82152,3.5,Beastly (2011),Drama|Fantasy|Romance +82167,2.8333333333333335,Love and Other Drugs (2010),Comedy|Drama|Romance +82169,3.625,"Chronicles of Narnia: The Voyage of the Dawn Treader, The (2010)",Adventure|Children|Fantasy +82173,2.5,Tiny Furniture (2010),Comedy +82202,2.4285714285714284,"Tourist, The (2010)",Drama|Thriller +82242,4.0,Rare Exports: A Christmas Tale (Rare Exports) (2010),Action|Comedy +82378,2.75,All Good Things (2010),Drama|Mystery|Thriller +82459,3.840909090909091,True Grit (2010),Western +82461,2.8846153846153846,Tron: Legacy (2010),Action|Adventure|Sci-Fi|IMAX +82463,3.5,Another Year (2010),Drama +82499,3.25,How Do You Know (2010),Comedy|Drama|Romance +82527,4.166666666666667,Barney's Version (2010),Drama +82534,3.0,"Company Men, The (2010)",Drama +82608,5.0,Zerophilia (2005),Comedy|Romance +82667,3.875,I Saw the Devil (Akmareul boatda) (2010),Crime|Thriller +82852,2.3333333333333335,Little Fockers (2010),Comedy +82854,1.75,Gulliver's Travels (2010),Adventure|Comedy|Fantasy +82931,3.5,"Last Circus, The (Balada triste de trompeta) (Sad Trumpet Ballad, A) (2010)",Comedy|Drama|War +82934,3.0,"Most Dangerous Man in America: Daniel Ellsberg and the Pentagon Papers, The (2009)",Documentary +83086,1.0,Burlesque (2010),Drama|Musical|Romance +83096,3.5,"Haunted House, The (1921)",Comedy +83132,3.75,"Secret World of Arrietty, The (Kari-gurashi no Arietti) (2010)",Animation|Children|Fantasy +83134,3.875,Tucker & Dale vs Evil (2010),Comedy|Horror +83177,2.0,Yogi Bear (2010),Children|Comedy +83270,1.0,Made in Dagenham (2010),Comedy|Drama +83293,3.5,Waste Land (2010),Documentary +83318,5.0,"Goat, The (1921)",Comedy +83322,4.0,"Boat, The (1921)",Comedy +83332,4.0,Who Is Harry Nilsson (And Why Is Everybody Talkin' About Him?) (2010),Documentary +83349,2.1875,"Green Hornet, The (2011)",Action|Comedy|Crime|Fantasy|Thriller|IMAX +83359,5.0,"Play House, The (1921)",Comedy +83361,3.5,"Paleface, The (1922)",Comedy +83374,2.5,"Warrior's Way, The (2010)",Action|Fantasy|Western +83411,5.0,Cops (1922),Comedy +83480,3.0,Season of the Witch (2011),Adventure|Drama|Fantasy +83603,3.5,Fern flowers (Fleur de fougère) (1949),Animation +83613,2.3125,Cowboys & Aliens (2011),Action|Sci-Fi|Thriller|Western|IMAX +83803,3.75,Day & Night (2010),Animation|Children +83827,4.0,Marwencol (2010),Documentary +83910,2.25,"Dilemma, The (2011)",Comedy|Drama +83976,4.0,"Trip, The (2010)",Comedy|Drama +84098,3.5,Phone Call from a Stranger (1952),Drama +84116,4.0,Poetry (Shi) (2010),Drama +84152,3.8157894736842106,Limitless (2011),Sci-Fi|Thriller +84160,3.5,Wishful Drinking (2010),Documentary +84187,3.75,Evangelion: 2.0 You Can (Not) Advance (Evangerion shin gekijôban: Ha) (2009),Action|Animation|Drama|Sci-Fi +84236,4.0,"White Stripes Under Great White Northern Lights, The (2009)",Documentary +84304,3.5,What Women Want (a.k.a. I Know a Woman's Heart) (2011),Comedy|Romance +84312,1.0,Home Alone 4 (2002),Children|Comedy|Crime +84374,2.9375,No Strings Attached (2011),Comedy|Romance +84392,3.5,"Lincoln Lawyer, The (2011)",Crime|Drama|Thriller +84395,2.5,"Rite, The (2011)",Drama|Horror|Thriller +84506,3.5,Silent Souls (Ovsyanki) (2010),Drama +84601,3.5,Unknown (2011),Drama|Mystery|Thriller +84615,3.0,Cedar Rapids (2011),Comedy +84637,1.5,Gnomeo & Juliet (2011),Adventure|Animation|Children|Comedy|Fantasy|Romance +84696,4.0,Burke and Hare (2010),Comedy|Thriller +84772,2.8125,Paul (2011),Adventure|Comedy|Sci-Fi +84844,4.1,Brother 2 (Brat 2) (2000),Crime|Drama +84944,3.7142857142857144,Rango (2011),Action|Adventure|Animation|Children|Comedy|Western +84950,2.5,Take Me Home Tonight (2011),Comedy|Drama +84952,4.25,Confessions (Kokuhaku) (2010),Drama|Horror +84954,3.2916666666666665,"Adjustment Bureau, The (2011)",Romance|Sci-Fi|Thriller +85016,3.5,Cropsey (2009),Documentary|Horror +85020,3.5,"Mechanic, The (2011)",Action|Drama|Thriller +85022,2.7,Hall Pass (2011),Comedy +85025,2.75,"Eagle, The (2011)",Adventure|Drama +85056,2.6666666666666665,I Am Number Four (2011),Action|Sci-Fi|Thriller|IMAX +85131,2.3125,Battle: Los Angeles (2011),Action|Sci-Fi|War +85179,4.0,Summer Wars (Samâ wôzu) (2009),Adventure|Animation|Comedy|Sci-Fi +85213,4.0,"Sunset Limited, The (2011)",Drama +85261,2.5,Mars Needs Moms (2011),Action|Adventure|Animation|Children|Comedy|Sci-Fi|IMAX +85316,4.0,Winnie the Pooh and Tigger Too (1974),Animation|Children +85342,4.1,Elite Squad: The Enemy Within (Tropa de Elite 2 - O Inimigo Agora É Outro) (2010),Action|Crime|Drama +85367,2.6666666666666665,Just Go with It (2011),Comedy|Romance +85394,4.5,Cave of Forgotten Dreams (2010),Documentary +85397,1.5,Red Riding Hood (2011),Fantasy|Horror|Mystery|Thriller +85399,1.0,"Big Mommas: Like Father, Like Son (2011)",Comedy +85401,3.5,Super (2010),Action|Comedy|Drama +85412,3.625,"Troll Hunter, The (Trolljegeren) (2010)",Fantasy|Horror +85414,4.020833333333333,Source Code (2011),Action|Drama|Mystery|Sci-Fi|Thriller +85438,3.75,Jane Eyre (2011),Drama|Romance +85510,2.1666666666666665,Sucker Punch (2011),Action|Fantasy|Thriller|IMAX +85774,4.111111111111111,Senna (2010),Documentary +85788,3.5,Insidious (2010),Fantasy|Horror|Thriller +85796,2.25,Hobo with a Shotgun (2011),Action|Adventure|Crime|Thriller +85881,3.4166666666666665,Win Win (2011),Comedy|Drama +86000,4.75,Boy (2010),Comedy|Drama +86014,3.0,Diary of a Wimpy Kid: Rodrick Rules (2011),Comedy +86028,2.0,Henry's Crime (2010),Comedy|Crime +86059,1.0,Hop (2011),Animation|Children|Comedy +86142,3.3,13 Assassins (Jûsan-nin no shikaku) (2010),Action +86190,3.0,Hanna (2011),Action|Adventure|Mystery|Thriller +86290,3.5,American: The Bill Hicks Story (2009),Comedy|Documentary +86293,2.75,Arthur (2011),Comedy +86298,3.1,Rio (2011),Adventure|Animation|Children|Comedy +86320,4.0,Melancholia (2011),Drama|Sci-Fi +86332,3.357142857142857,Thor (2011),Action|Adventure|Drama|Fantasy|IMAX +86345,4.25,Louis C.K.: Hilarious (2010),Comedy +86347,4.25,Louis C.K.: Chewed Up (2008),Comedy +86377,4.5,Louis C.K.: Shameless (2007),Comedy +86487,5.0,Mildred Pierce (2011),Drama +86548,4.25,Water for Elephants (2011),Drama|Romance +86593,2.5,African Cats (2011),Adventure|Documentary +86626,4.0,Socialism (Film socialisme) (2010),Drama +86644,2.5,"Fast Five (Fast and the Furious 5, The) (2011)",Action|Crime|Drama|Thriller|IMAX +86721,3.0,Idiots and Angels (2008),Animation|Drama|Fantasy +86781,4.0,Incendies (2010),Drama|Mystery|War +86817,5.0,Something Borrowed (2011),Comedy|Drama|Romance +86833,3.4375,Bridesmaids (2011),Comedy +86835,2.0,Priest (2011),Action|Horror|Sci-Fi|Thriller +86852,3.0,"Beaver, The (2011)",Drama +86864,4.0,Mothra (Mosura) (1961),Adventure|Fantasy|Sci-Fi +86880,2.65,Pirates of the Caribbean: On Stranger Tides (2011),Action|Adventure|Fantasy|IMAX +86882,3.9285714285714284,Midnight in Paris (2011),Comedy|Fantasy|Romance +86884,4.0,"Kid With a Bike, The (Le gamin au vélo) (2011)",Drama +86892,3.0,The Man from Nowhere (2010),Action|Crime|Thriller +86898,3.5,"Tree of Life, The (2011)",Drama +86911,2.5,"Hangover Part II, The (2011)",Comedy +86982,2.0,Destroy All Monsters (Kaijû sôshingeki) (1968),Action|Sci-Fi|Thriller +87192,3.6666666666666665,Attack the Block (2011),Action|Comedy|Sci-Fi +87205,1.5,"Tunnel, The (2011)",Drama|Horror|Thriller +87218,3.5,He Ran All the Way (1951),Crime|Drama|Film-Noir +87222,3.8333333333333335,Kung Fu Panda 2 (2011),Action|Adventure|Animation|Children|Comedy|IMAX +87232,3.982142857142857,X-Men: First Class (2011),Action|Adventure|Sci-Fi|Thriller|War +87234,3.75,Submarine (2010),Comedy|Drama|Romance +87298,2.875,Everything Must Go (2010),Comedy|Drama +87304,3.0,Beginners (2010),Drama +87306,3.375,Super 8 (2011),Mystery|Sci-Fi|Thriller|IMAX +87383,3.0,Curly Top (1935),Children|Musical|Romance +87430,2.4,Green Lantern (2011),Action|Adventure|Sci-Fi +87444,1.5,Elektra Luxx (2010),Comedy +87483,2.0,Mr. Popper's Penguins (2011),Comedy +87485,2.25,Bad Teacher (2011),Comedy +87520,2.7222222222222223,Transformers: Dark of the Moon (2011),Action|Adventure|Sci-Fi|War|IMAX +87522,2.75,Larry Crowne (2011),Comedy|Drama|Romance +87529,1.3333333333333333,Your Highness (2011),Action|Adventure|Comedy|Fantasy +87598,3.0,"Dolly Sisters, The (1945)",Drama|Musical|Romance +87660,4.5,Too Big to Fail (2011),Drama +87785,2.0,Takers (2010),Action|Crime|Thriller +87869,2.909090909090909,Horrible Bosses (2011),Comedy|Crime +87876,1.5,Cars 2 (2011),Adventure|Animation|Children|Comedy|IMAX +87884,3.5,Savage Messiah (1972),Drama +87930,2.0,Page One: Inside the New York Times (2011),Documentary +88024,2.5,To Sleep with Anger (1990),Drama +88106,3.5,Mahler (1974),Drama +88118,4.0,"Perfect Host, The (2010)",Crime|Drama|Thriller +88125,4.220588235294118,Harry Potter and the Deathly Hallows: Part 2 (2011),Action|Adventure|Drama|Fantasy|Mystery|IMAX +88129,3.9,Drive (2011),Crime|Drama|Film-Noir|Thriller +88140,3.659090909090909,Captain America: The First Avenger (2011),Action|Adventure|Sci-Fi|Thriller|War +88163,3.6785714285714284,"Crazy, Stupid, Love. (2011)",Comedy|Drama|Romance +88179,4.25,One Day (2011),Drama|Romance +88235,4.0,"Guard, The (2011)",Comedy|Crime +88267,3.25,Winnie the Pooh (2011),Animation|Children|Comedy +88272,2.0,"Woman, The (2011)",Horror +88356,2.0,"Smurfs, The (2011)",Animation|Children|Comedy +88380,3.5,Dylan Dog: Dead of Night (2010),Comedy|Horror|Mystery|Thriller +88405,3.111111111111111,Friends with Benefits (2011),Comedy|Romance +88672,3.6666666666666665,Our Idiot Brother (2011),Comedy +88682,4.0,"Letter to Elia, A (2010)",Documentary +88744,3.7916666666666665,Rise of the Planet of the Apes (2011),Action|Drama|Sci-Fi|Thriller +88785,2.6666666666666665,"Change-Up, The (2011)",Comedy +88810,4.0,"Help, The (2011)",Drama +88812,3.0833333333333335,30 Minutes or Less (2011),Action|Comedy|Crime +88879,2.5,Gantz (2011),Action|Horror|Sci-Fi +88932,1.0,Final Destination 5 (2011),Horror|Thriller|IMAX +88950,0.5,"Conspirator, The (2010)",Drama +88954,1.5,"Very Harold & Kumar 3D Christmas, A (2011)",Comedy +89000,3.5,Carancho (2010),Crime|Drama|Romance +89030,2.75,Fright Night (2011),Comedy|Horror +89039,3.8333333333333335,Another Earth (2011),Drama|Romance|Sci-Fi +89047,3.5,Hesher (2010),Drama +89072,3.5,Stake Land (2010),Horror +89085,4.5,"Debt, The (2011)",Drama|Thriller +89087,2.3333333333333335,Colombiana (2011),Action|Adventure|Drama|Thriller +89090,1.5,Bill Cunningham New York (2011),Documentary +89102,2.0,Freakonomics (2010),Documentary +89118,2.5,"Skin I Live In, The (La piel que habito) (2011)",Drama +89194,3.0,Prom (2011),Comedy|Drama +89203,4.0,Magic Trip (2011),Documentary +89260,4.0,Project Nim (2011),Documentary +89300,3.5,Win/win (2010),Drama +89305,4.0,"Inbetweeners Movie, The (2011)",Adventure|Comedy +89321,2.0,"Future, The (2011)",Drama +89337,3.0,"Interrupters, The (2011)",Documentary +89343,3.5,Red State (2011),Action|Crime|Horror|Thriller +89356,3.5,Chinese Take-Out (Chinese Take-Away) (Un cuento chino) (2011),Comedy +89388,1.0,I Don't Know How She Does It (2011),Comedy +89408,3.0,April Love (1957),Comedy|Drama|Musical +89427,1.5,Shark Night 3D (2011),Horror|Thriller +89470,3.5,Contagion (2011),Sci-Fi|Thriller|IMAX +89492,3.78125,Moneyball (2011),Drama +89678,3.5,Northanger Abbey (2007),Drama|Romance +89745,4.010869565217392,"Avengers, The (2012)",Action|Adventure|Sci-Fi|IMAX +89753,3.5,Tinker Tailor Soldier Spy (2011),Drama|Film-Noir|Thriller +89759,4.3,"Separation, A (Jodaeiye Nader az Simin) (2011)",Drama +89761,3.5,"Dangerous Method, A (2011)",Drama|Thriller +89774,3.9,Warrior (2011),Drama +89804,3.9444444444444446,"Ides of March, The (2011)",Drama +89837,3.25,Kill List (2011),Horror|Mystery|Thriller +89840,2.0,Killer Elite (2011),Action|Thriller +89864,3.6923076923076925,50/50 (2011),Comedy|Drama +89881,4.0,Superman and the Mole-Men (1951),Children|Mystery|Sci-Fi +89904,3.8333333333333335,The Artist (2011),Comedy|Drama|Romance +90057,4.0,Take Shelter (2011),Drama +90061,5.0,"Myth of the American Sleepover, The (2010)",Comedy|Drama|Romance +90249,3.0,Real Steel (2011),Action|Drama|Sci-Fi|IMAX +90266,2.75,Buck (2011),Documentary +90343,2.5,Footloose (2011),Comedy|Drama|Musical +90345,3.5,"Thing, The (2011)",Horror|Mystery|Sci-Fi|Thriller +90357,4.0,Tyrannosaur (2011),Drama +90374,3.2,Martha Marcy May Marlene (2011),Drama|Thriller +90376,3.5,We Need to Talk About Kevin (2011),Drama|Thriller +90403,3.0,"Three Musketeers, The (2011)",Action|Adventure +90405,3.388888888888889,In Time (2011),Crime|Sci-Fi|Thriller +90428,4.166666666666667,Margaret (2011),Drama +90430,4.25,Carnage (2011),Comedy|Drama +90439,3.25,Margin Call (2011),Drama|Thriller +90469,2.3333333333333335,Paranormal Activity 3 (2011),Horror +90522,2.0,Johnny English Reborn (2011),Adventure|Comedy|Thriller +90524,2.0,Abduction (2011),Action|Drama|Mystery|Thriller +90531,3.642857142857143,Shame (2011),Drama +90576,4.25,What's Your Number? (2011),Comedy|Romance +90600,4.166666666666667,Headhunters (Hodejegerne) (2011),Action|Crime|Thriller +90647,2.5,Puss in Boots (2011),Adventure|Animation|Comedy|Fantasy|IMAX +90717,3.0,Tower Heist (2011),Action|Comedy|Crime +90719,3.0,J. Edgar (2011),Drama +90738,1.5,"Double, The (2011)",Action|Crime|Drama|Mystery|Thriller +90746,3.357142857142857,"Adventures of Tintin, The (2011)",Action|Animation|Mystery|IMAX +90863,4.5,George Harrison: Living in the Material World (2011),Documentary +90866,3.3,Hugo (2011),Children|Drama|Mystery +90870,0.5,Trespass (2011),Crime|Drama|Thriller +90888,2.75,Immortals (2011),Action|Drama|Fantasy +90890,1.5,Jack and Jill (2011),Comedy +90947,4.0,"Oslo, August 31st (Oslo, 31. august) (2011)",Drama +91077,3.8,"Descendants, The (2011)",Comedy|Drama +91094,3.6666666666666665,"Muppets, The (2011)",Children|Comedy|Musical +91104,2.5,"Twilight Saga: Breaking Dawn - Part 1, The (2011)",Adventure|Drama|Fantasy|Romance +91126,3.5,War Horse (2011),Drama|War +91128,3.0,"Rum Diary, The (2011)",Comedy|Drama|Thriller +91134,3.0,My Week with Marilyn (2011),Drama +91199,3.75,Weekend (2011),Drama|Romance +91273,1.5,Bunraku (2010),Action|Drama|Fantasy +91286,4.0,"Little Colonel, The (1935)",Children|Comedy|Crime|Drama +91323,1.5,"Sitter, The (2011)",Comedy +91325,2.0,Extremely Loud and Incredibly Close (2011),Drama +91355,3.5,Asterix and the Vikings (Astérix et les Vikings) (2006),Adventure|Animation|Children|Comedy|Fantasy +91414,3.0,Arthur Christmas (2011),Animation|Children|Comedy|Drama +91483,2.0,Bullet to the Head (2012),Action|Crime|Film-Noir +91485,3.0,"Expendables 2, The (2012)",Action|Adventure +91488,2.5,"Snowman, The (1982)",Animation|Children|Musical +91500,3.3815789473684212,The Hunger Games (2012),Action|Adventure|Drama|Sci-Fi|Thriller +91505,1.0,Clone (Womb) (2010),Drama|Romance|Sci-Fi +91529,3.6875,"Dark Knight Rises, The (2012)",Action|Adventure|Crime|IMAX +91535,2.857142857142857,"Bourne Legacy, The (2012)",Action|Adventure|Drama|Thriller|IMAX +91542,3.769230769230769,Sherlock Holmes: A Game of Shadows (2011),Action|Adventure|Comedy|Crime|Mystery|Thriller +91548,4.0,Life in a Day (2011),Documentary|Drama +91582,2.5,Stagecoach (1966),Western +91610,2.0,Toronto Stories (2008),Drama +91622,2.5,Young Adult (2011),Comedy|Drama +91628,1.75,New Year's Eve (2011),Comedy|Romance +91630,3.7222222222222223,Mission: Impossible - Ghost Protocol (2011),Action|Adventure|Thriller|IMAX +91653,3.5,We Bought a Zoo (2011),Comedy|Drama +91658,3.8125,"Girl with the Dragon Tattoo, The (2011)",Drama|Thriller +91660,1.5,"Darkest Hour, The (2011)",Action|Horror|Sci-Fi|Thriller +91673,5.0,Albert Nobbs (2011),Drama +91688,1.5,Salvation Boulevard (2011),Comedy|Thriller +91690,5.0,Friends with Kids (2011),Comedy +91842,2.375,Contraband (2012),Action|Crime|Drama|Thriller +91869,3.0,Being Elmo: A Puppeteer's Journey (2011),Documentary +91873,1.5,Joyful Noise (2012),Comedy|Musical +91886,4.0,Dolphin Tale (2011),Children|Drama +91890,3.5,"Iron Lady, The (2011)",Drama +91935,2.5,Albatross (2011),Drama +91947,3.5,"Revenant, The (2009)",Comedy|Horror +91974,2.6666666666666665,Underworld: Awakening (2012),Action|Fantasy|Horror|IMAX +91976,2.0,"Grey, The (2012)",Action|Drama +91978,4.5,Man on a Ledge (2012),Crime|Thriller +92004,4.0,Chill Out! (Descongélate!) (2003),Comedy|Drama +92008,3.0,Haywire (2011),Action|Thriller +92048,2.5,"Whistleblower, The (2010)",Drama|Thriller +92058,2.0,"Human Centipede II (Full Sequence), The (2011)",Horror +92163,4.0,Fados (2007),Documentary|Musical +92198,2.0,Seeking Justice (2011),Action|Drama|Thriller +92210,5.0,"Disappearance of Haruhi Suzumiya, The (Suzumiya Haruhi no shôshitsu) (2010)",Adventure|Animation|Drama|Mystery|Sci-Fi +92234,2.5,Red Tails (2012),Action|Adventure|Drama|War +92259,4.166666666666667,Intouchables (2011),Comedy|Drama +92264,2.0,One for the Money (2012),Action|Comedy|Crime +92309,2.5,"Innkeepers, The (2011)",Horror|Thriller +92420,3.2,Chronicle (2012),Action|Sci-Fi|Thriller +92424,4.0,Dottie Gets Spanked (1993),Drama +92439,2.0,"Art of Getting By, The (2011)",Drama|Romance +92507,3.125,Safe House (2012),Action|Crime|Mystery|Thriller +92509,4.0,"Vow, The (2012)",Drama|Romance +92613,4.0,Holding Trevor (2007),Drama|Romance +92665,2.5,"For a Good Time, Call... (2012)",Comedy|Drama|Romance +92681,2.5,Journey 2: The Mysterious Island (2012),Action|Adventure|Comedy|Sci-Fi|IMAX +92694,3.5,Perfect Sense (2011),Drama|Romance|Sci-Fi +92751,4.0,Kokowääh (2011),Comedy +92756,2.5,Hearts of the West (1975),Comedy|Western +92938,1.0,Ghost Rider: Spirit of Vengeance (2012),Action|Fantasy|Thriller +92954,3.0,Prayers for Bobby (2009),Drama +92966,4.0,Love Wrecked (2005),Comedy|Romance +93040,4.666666666666667,"Civil War, The (1990)",Documentary|War +93061,4.5,October Baby (2011),Drama +93242,1.5,Gone (2012),Drama|Thriller +93265,4.5,Courageous (2011),Drama +93270,1.6666666666666667,Project X (2012),Comedy +93272,2.0,Dr. Seuss' The Lorax (2012),Animation|Fantasy|Musical|IMAX +93287,3.25,"Big Year, The (2011)",Comedy +93320,5.0,Trailer Park Boys (1999),Comedy|Crime +93324,5.0,Undefeated (2011),Documentary +93326,2.9,This Means War (2012),Action|Comedy|Romance +93363,2.9375,John Carter (2012),Action|Adventure|Sci-Fi|IMAX +93422,4.0,Starbuck (2011),Comedy +93432,3.0,Forks Over Knives (2011),Documentary +93443,4.166666666666667,Goon (2011),Comedy|Drama +93498,4.0,Game Change (2012),Drama +93510,4.0,21 Jump Street (2012),Action|Comedy|Crime +93512,3.375,"Jeff, Who Lives at Home (2012)",Comedy|Drama +93563,1.5,Lockout (2012),Action|Sci-Fi|Thriller +93693,4.0,Casa de mi Padre (2012),Comedy +93700,4.0,Corman's World: Exploits of a Hollywood Rebel (2011),Documentary +93721,3.75,Jiro Dreams of Sushi (2011),Documentary +93766,1.0,Wrath of the Titans (2012),Action|Adventure|Fantasy|IMAX +93805,3.5,Iron Sky (2012),Action|Comedy|Sci-Fi +93831,2.3333333333333335,American Reunion (American Pie 4) (2012),Comedy +93838,4.083333333333333,The Raid: Redemption (2011),Action|Crime +93840,3.6538461538461537,"Cabin in the Woods, The (2012)",Comedy|Horror|Sci-Fi|Thriller +93855,4.5,God Bless America (2011),Comedy|Drama +93980,1.5,"Three Stooges, The (2012)",Comedy +93982,2.0,"Raven, The (2012)",Mystery|Thriller +94011,1.5,"Big Bang, The (2011)",Action|Thriller +94015,2.3333333333333335,Mirror Mirror (2012),Adventure|Comedy|Fantasy +94018,2.5,Battleship (2012),Action|Sci-Fi|Thriller|IMAX +94024,4.5,Louis Theroux: The Most Hated Family in America in Crisis (2011),Documentary +94070,3.5,"Best Exotic Marigold Hotel, The (2011)",Comedy|Drama +94266,2.75,"Five-Year Engagement, The (2012)",Comedy|Romance +94323,3.0,Think Like a Man (2012),Comedy +94325,4.0,"Lucky One, The (2012)",Drama +94478,2.25,Dark Shadows (2012),Comedy|Horror|IMAX +94480,1.0,The Scorpion King: Rise of a Warrior (2008),Action|Adventure|Fantasy +94494,2.5,96 Minutes (2011) ,Drama|Thriller +94672,2.0,Across the Line: The Exodus of Charlie Wright (2010),Crime|Drama +94677,3.5,"Dictator, The (2012)",Comedy +94777,3.1923076923076925,Men in Black III (M.III.B.) (M.I.B.³) (2012),Action|Comedy|Sci-Fi|IMAX +94780,2.0,Snow White and the Huntsman (2012),Action|Adventure|Drama +94799,4.0,Sound of My Voice (2011),Drama|Mystery|Sci-Fi +94833,2.8333333333333335,"Pirates! Band of Misfits, The (2012)",Adventure|Animation|Children|Comedy +94864,3.125,Prometheus (2012),Action|Horror|Sci-Fi|IMAX +94896,3.5,Bernie (2011),Comedy|Crime|Drama +94919,2.5,Inhale (2010),Drama|Thriller +94931,4.5,Take This Waltz (2011),Drama|Romance +94939,4.5,Sound of Noise (2010),Comedy|Crime|Musical +94953,2.0,Wanderlust (2012),Comedy +94959,3.7115384615384617,Moonrise Kingdom (2012),Comedy|Drama|Romance +95067,2.5,"Thousand Words, A (2012)",Comedy|Drama +95088,4.166666666666667,Safety Not Guaranteed (2012),Comedy|Drama +95105,1.75,Madagascar 3: Europe's Most Wanted (2012),Adventure|Animation|Children|Comedy|IMAX +95135,4.0,Your Sister's Sister (2011),Comedy|Drama +95165,3.0,Dragon Ball Z the Movie: The World's Strongest (a.k.a. Dragon Ball Z: The Strongest Guy in The World) (Doragon bôru Z: Kono yo de ichiban tsuyoi yatsu) (1990),Action|Adventure|Animation|Sci-Fi|Thriller +95167,3.576923076923077,Brave (2012),Action|Adventure|Animation|Children +95182,3.0,Dragon Ball Z the Movie: The Tree of Might (Doragon bôru Z 3: Chikyû marugoto chô kessen) (1990),Action|Adventure|Animation|Sci-Fi +95199,2.25,What to Expect When You're Expecting (2012),Comedy|Drama|Romance +95201,3.0,To Rome with Love (2012),Comedy +95207,1.75,Abraham Lincoln: Vampire Hunter (2012),Action|Fantasy|Horror|Thriller +95307,2.6,Rock of Ages (2012),Comedy|Drama|Musical|IMAX +95309,3.6666666666666665,Seeking a Friend for the End of the World (2012),Comedy|Drama|Romance +95311,3.3333333333333335,Presto (2008),Animation|Children|Comedy|Fantasy +95375,3.0,Boundin' (2003),Animation|Children +95441,2.95,Ted (2012),Comedy|Fantasy +95443,0.5,"Giant Mechanical Man, The (2012)",Comedy|Drama|Romance +95449,3.3333333333333335,Magic Mike (2012),Drama|Romance +95508,3.5,Cleanskin (2012),Crime|Drama|Thriller +95510,3.325,"Amazing Spider-Man, The (2012)",Action|Adventure|Sci-Fi|IMAX +95543,3.0,Ice Age 4: Continental Drift (2012),Adventure|Animation|Comedy +95558,3.3,Beasts of the Southern Wild (2012),Drama|Fantasy +95567,4.5,People Like Us (2012),Drama +95583,2.75,Savages (2012),Crime|Drama|Thriller +95654,3.5,Geri's Game (1997),Animation|Children +95720,2.5,"Watch, The (2012)",Comedy|Sci-Fi +95744,2.5,2 Days in New York (2012),Comedy +95752,4.5,Terminal USA (1993),Comedy +95761,4.0,Killer Joe (2011),Crime|Thriller +95858,4.5,For the Birds (2000),Animation|Children|Comedy +95873,3.8333333333333335,Ruby Sparks (2012),Comedy|Fantasy|Romance +95875,2.7222222222222223,Total Recall (2012),Action|Sci-Fi|Thriller +95949,3.5,"Immature, The (Immaturi) (2011)",Comedy +96020,4.0,Sidewalls (Medianeras) (2011),Drama +96075,5.0,Bleak House (2005),Drama +96079,3.9375,Skyfall (2012),Action|Adventure|Thriller|IMAX +96110,2.6666666666666665,"Campaign, The (2012)",Comedy +96114,2.0,Brake (2012),Crime|Thriller +96150,2.0,"Queen of Versailles, The (2012)",Documentary +96281,3.0,ParaNorman (2012),Adventure|Animation|Comedy +96314,3.5,Celeste and Jesse Forever (Celeste & Jesse Forever) (2012),Comedy|Drama|Romance +96373,4.0,Broken (2012),Drama +96417,2.5,Premium Rush (2012),Action|Thriller +96432,3.0,Lawless (2012),Crime|Drama +96448,2.5,Piranha 3DD (a.k.a. Piranha DD) (2012),Comedy|Horror +96467,4.25,Sleepwalk with Me (2012),Comedy|Drama +96488,3.75,Searching for Sugar Man (2012),Documentary +96490,2.0,"Possession, The (2012)",Horror|Thriller +96530,2.5,Conception (2011),Comedy|Romance +96563,3.5,Paradise Lost 3: Purgatory (2011),Documentary +96565,1.5,Bachelorette (2012),Comedy +96588,3.9285714285714284,Pitch Perfect (2012),Comedy|Musical +96590,2.5,"Cold Light of Day, The (2012)",Action|Thriller +96606,4.0,Samsara (2011),Documentary +96610,3.5,Looper (2012),Action|Crime|Sci-Fi +96616,2.25,That's My Boy (2012),Comedy +96634,1.0,Apartment 143 (2011),Horror|Thriller +96655,4.5,Robot & Frank (2012),Comedy|Drama|Sci-Fi +96667,2.5,Ai Weiwei: Never Sorry (2012),Documentary +96691,2.0,Resident Evil: Retribution (2012),Action|Horror|Sci-Fi|IMAX +96726,1.5,Lola Versus (2012),Comedy|Romance +96728,4.0,"Master, The (2012)",Drama +96737,3.2,Dredd (2012),Action|Sci-Fi +96792,3.5,Kismet (1955),Adventure|Comedy|Fantasy|Musical|Romance +96811,4.0,End of Watch (2012),Crime|Drama|Thriller +96815,3.0,V/H/S (2012),Horror|Thriller +96821,3.9285714285714284,"Perks of Being a Wallflower, The (2012)",Drama|Romance +96829,4.25,"Hunt, The (Jagten) (2012)",Drama +96832,5.0,Holy Motors (2012),Drama|Fantasy|Musical|Mystery|Sci-Fi +96849,3.0,Sparkle (2012),Drama|Musical +96861,2.375,Taken 2 (2012),Action|Crime|Drama|Thriller +96863,1.5,"Paperboy, The (2012)",Thriller +96911,4.5,"Royal Affair, A (Kongelig affære, En) (2012)",Drama|Romance +97057,5.0,Kon-Tiki (2012),Adventure|Documentary|Drama +97168,2.5,Marley (2012),Documentary +97188,2.75,Sinister (2012),Horror|Thriller +97225,3.2,Hotel Transylvania (2012),Animation|Children|Comedy +97254,3.5,Shakespeare-Wallah (1965),Drama +97304,3.9473684210526314,Argo (2012),Drama|Thriller +97306,4.0,Seven Psychopaths (2012),Comedy|Crime +97328,3.0,Liberal Arts (2012),Comedy|Drama +97393,3.5,"House I Live In, The (2012)",Documentary +97395,4.0,West of Memphis (2012),Documentary +97470,1.5,Catch .44 (2011),Action|Drama|Thriller +97593,3.5,Tony (2009),Drama|Horror|Thriller +97639,3.5,How to Survive a Plague (2012),Documentary +97673,4.5,56 Up (2012),Documentary +97742,2.0,Alex Cross (2012),Action|Crime|Mystery|Thriller +97744,4.5,"Ambassador, The (Ambassadøren) (2011)",Documentary +97752,3.4285714285714284,Cloud Atlas (2012),Drama|Sci-Fi|IMAX +97757,2.0,'Hellboy': The Seeds of Creation (2004),Action|Adventure|Comedy|Documentary|Fantasy +97817,4.0,Pumping Iron II: The Women (1985),Documentary +97826,5.0,"Patience Stone, The (2012)",Drama|War +97836,1.75,Here Comes the Boom (2012),Action|Comedy +97858,2.0,Mental (2012),Comedy|Drama +97860,3.0,Killing Them Softly (2012),Crime|Drama|Thriller +97866,4.0,"Imposter, The (2012)",Documentary +97870,4.0,"Sessions, The (Surrogate, The) (2012)",Drama +97895,3.5,What Richard Did (2012),Drama +97913,3.526315789473684,Wreck-It Ralph (2012),Animation|Comedy +97921,3.6818181818181817,Silver Linings Playbook (2012),Comedy|Drama +97923,3.3333333333333335,Flight (2012),Drama +97936,3.0,Anna Karenina (2012),Drama +97938,3.772727272727273,Life of Pi (2012),Adventure|Drama|IMAX +97957,4.5,Excision (2012),Crime|Drama|Horror|Thriller +97994,3.5,Union Square (2011),Drama +98000,4.0,Student of the Year (2012),Comedy|Romance +98056,3.5,Amour (2012),Drama|Romance +98122,2.25,Indie Game: The Movie (2012),Documentary +98126,5.0,Capital (Le capital) (2012),Drama +98154,3.4285714285714284,Lincoln (2012),Drama|War +98160,1.5,Nature Calls (2012),Comedy +98175,1.5,Vamps (2012),Comedy|Horror|Romance +98230,3.5,10 Years (2011),Comedy|Drama|Romance +98243,3.3,Rise of the Guardians (2012),Adventure|Animation|Children|Fantasy|IMAX +98279,3.0,"Fantastic Fear of Everything, A (2012)",Comedy +98296,2.0,Deadfall (2012),Crime|Drama|Thriller +98441,4.0,Rebecca of Sunnybrook Farm (1938),Children|Comedy|Drama|Musical +98458,2.0,Baby Take a Bow (1934),Children|Comedy|Drama +98473,3.5,"Sleeping Car Murder, The (Compartiment tueurs) (1965)",Drama|Mystery|Thriller +98491,4.75,Paperman (2012),Animation|Comedy|Romance +98585,3.0,Hitchcock (2012),Drama +98587,5.0,Caesar Must Die (Cesare deve morire) (2012),Drama +98604,4.0,From Up on Poppy Hill (Kokuriko-zaka kara) (2011),Animation|Drama|Romance +98607,3.75,Redline (2009),Action|Animation|Sci-Fi +98611,3.0,Just Around the Corner (1938),Comedy|Musical +98803,3.0,Little Miss Broadway (1938),Drama|Musical +98809,3.52,"Hobbit: An Unexpected Journey, The (2012)",Adventure|Fantasy|IMAX +98829,4.0,"Evil Cult, The (Lord of the Wu Tang) (Yi tian tu long ji: Zhi mo jiao jiao zhu) (1993)",Action|Fantasy +98836,2.0,Hyde Park on Hudson (2012),Comedy|Drama +98913,4.0,Violeta Went to Heaven (Violeta se fue a los cielos) (2011),Drama +98933,5.0,Yossi (Ha-Sippur Shel Yossi) (2012),Drama|Romance +98961,3.590909090909091,Zero Dark Thirty (2012),Action|Drama|Thriller +98963,5.0,Neighbouring Sounds (O som ao redor) (2012),Drama|Thriller +99007,3.2142857142857144,Warm Bodies (2013),Comedy|Horror|Romance +99030,5.0,Wrong (2012),Comedy|Drama +99085,2.5,Our Little Girl (1935),Comedy|Drama|Romance +99089,4.0,Poor Little Rich Girl (1936),Adventure|Musical|Romance +99106,2.5,"Guilt Trip, The (2012)",Comedy +99112,2.9375,Jack Reacher (2012),Action|Crime|Thriller +99114,3.977272727272727,Django Unchained (2012),Action|Drama|Western +99117,2.125,This Is 40 (2012),Drama +99145,4.0,"Impossible, The (Imposible, Lo) (2012)",Drama|Thriller +99149,3.3333333333333335,"Misérables, Les (2012)",Drama|Musical|Romance|IMAX +99220,3.0,Quartet (2012),Comedy|Drama +99270,2.5,Stand Up and Cheer! (1934),Comedy|Musical +99273,2.5,Stowaway (1936),Adventure|Musical +99276,2.5,Susannah of the Mounties (1939),Drama +99415,2.0,Parental Guidance (2012),Comedy +99437,3.0,John Dies at the End (2012),Comedy|Fantasy|Horror +99468,2.5,"Central Park Five, The (2012)",Documentary +99470,1.5,"Collection, The (2012)",Action|Horror|Thriller +99574,3.0,Promised Land (2012),Drama +99615,4.0,Role/Play (2010),Drama +99669,2.5,Aftermath (1994),Horror +99675,4.0,Eat Sleep Die (Äta sova dö) (2012),Drama +99728,3.375,Gangster Squad (2013),Action|Crime|Drama +99741,3.5,"Company You Keep, The (2012)",Thriller +99764,5.0,It's Such a Beautiful Day (2012),Animation|Comedy|Drama|Fantasy|Sci-Fi +99795,4.5,Whores' Glory (2011),Documentary +99811,4.0,Beware of Mr. Baker (2012),Documentary +99839,4.0,Paul Williams Still Alive (2011),Comedy|Documentary|Musical +99846,3.0,Everything or Nothing: The Untold Story of 007 (2012),Documentary +99912,2.5,Mama (2013),Horror +99917,2.0,Upstream Color (2013),Romance|Sci-Fi|Thriller +99992,3.0,Shadow Dancer (2012),Crime|Drama|Thriller +100017,3.0,Keep the Lights On (2012),Drama +100032,2.0,Beauty Is Embarrassing (2012),Documentary +100034,4.0,Girl Model (2011),Documentary +100083,1.5,Movie 43 (2013),Comedy +100106,4.5,"Pervert's Guide to Ideology, The (2012)",Documentary +100159,3.5,Sightseers (2012),Comedy +100163,2.25,Hansel & Gretel: Witch Hunters (2013),Action|Fantasy|Horror|IMAX +100272,4.0,Snow White (Blancanieves) (2012),Drama +100304,3.0,"Liability, The (2012)",Action|Thriller +100326,2.5,Stand Up Guys (2012),Comedy|Crime +100365,2.5,Call Me Kuchu (2012),Documentary +100383,3.5,Side Effects (2013),Crime|Drama|Mystery|Thriller +100390,1.5,Identity Thief (2013),Comedy|Crime +100487,2.25,Beautiful Creatures (2013),Drama|Fantasy|Romance +100498,1.875,"Good Day to Die Hard, A (2013)",Action|Crime|Thriller|IMAX +100517,3.0,"World Before Her, The (2012)",Documentary +100527,4.0,Safe Haven (2013),Drama|Mystery|Romance +100556,4.125,"Act of Killing, The (2012)",Documentary +100581,2.3333333333333335,Room 237 (2012),Documentary +100714,3.8333333333333335,Before Midnight (2013),Drama|Romance +100745,2.25,TPB AFK: The Pirate Bay Away from Keyboard (2013),Documentary +100843,4.5,Oh Boy (A Coffee in Berlin) (2012),Comedy|Drama +101025,2.5,Jack the Giant Slayer (2013),Adventure|Fantasy|IMAX +101070,3.0,Wadjda (2012),Drama +101076,2.5,G.I. Joe: Retaliation (2013),Action|Adventure|Sci-Fi|Thriller|IMAX +101088,2.0,Stoker (2013),Drama|Mystery|Thriller +101106,3.0,Sound City (2013),Documentary +101112,1.625,Oz the Great and Powerful (2013),Action|Adventure|Fantasy|IMAX +101142,3.125,"Croods, The (2013)",Adventure|Animation|Comedy +101283,2.5,"Incredible Burt Wonderstone, The (2013)",Comedy +101285,3.1666666666666665,Spring Breakers (2013),Comedy|Crime|Drama +101360,1.5,"Call, The (2013)",Drama|Thriller +101362,3.1,Olympus Has Fallen (2013),Action|Thriller +101415,2.75,"First Time, The (2012)",Comedy|Drama|Romance +101525,3.9,"Place Beyond the Pines, The (2012)",Crime|Drama +101529,2.0,"Brass Teapot, The (2012)",Comedy|Fantasy|Thriller +101531,1.75,Phil Spector (2013),Drama +101577,1.6666666666666667,"Host, The (2013)",Action|Adventure|Romance +101612,2.1666666666666665,Admission (2013),Comedy|Romance +101741,4.0,Trance (2013),Crime|Thriller +101850,5.0,Death on the Staircase (Soupçons) (2004),Crime|Documentary +101864,3.2,Oblivion (2013),Action|Adventure|Sci-Fi|IMAX +101884,1.5,Dark Tide (2012),Adventure|Drama|Thriller +101895,3.1666666666666665,42 (2013),Drama +101904,3.5,Happy (2011),Documentary|Drama +101947,3.5,From the Sky Down (2011),Documentary +101962,5.0,Wolf Children (Okami kodomo no ame to yuki) (2012),Animation|Fantasy +102033,3.0,Pain & Gain (2013),Action|Comedy|Crime +102123,3.5,This Is the End (2013),Action|Comedy +102125,3.5,Iron Man 3 (2013),Action|Sci-Fi|Thriller|IMAX +102194,3.7,Mud (2012),Adventure|Crime|Drama +102378,1.5,Syrup (2013),Comedy|Drama +102396,3.5,"Woman in the Fifth, The (Femme du Vème, La) (2011)",Drama|Mystery|Thriller +102407,2.875,"Great Gatsby, The (2013)",Drama +102445,3.775,Star Trek Into Darkness (2013),Action|Adventure|Sci-Fi|IMAX +102481,2.8333333333333335,"Internship, The (2013)",Comedy +102588,4.0,Stories We Tell (2012),Documentary +102666,5.0,Ivan Vasilievich: Back to the Future (Ivan Vasilievich menyaet professiyu) (1973),Adventure|Comedy +102684,4.0,Only God Forgives (2013),Drama|Thriller +102686,2.0,"Hangover Part III, The (2013)",Comedy +102716,3.25,"Fast & Furious 6 (Fast and the Furious 6, The) (2013)",Action|Crime|Thriller|IMAX +102720,3.0,Epic (2013),Adventure|Animation|Fantasy +102753,5.0,"Past, The (Le passé) (2013)",Drama|Mystery|Romance +102800,3.625,Frances Ha (2012),Comedy|Drama +102819,3.6666666666666665,Behind the Candelabra (2013),Drama +102880,1.2,After Earth (2013),Action|Adventure|Sci-Fi|IMAX +102903,3.1,Now You See Me (2013),Crime|Mystery|Thriller +102905,3.0,Lovelace (2013),Drama +102993,3.75,"Way, Way Back, The (2013)",Comedy|Drama +102995,2.0,Foxfire (2012),Drama +103042,2.9545454545454546,Man of Steel (2013),Action|Adventure|Fantasy|Sci-Fi|IMAX +103048,3.6666666666666665,"Kings of Summer, The (2013)",Comedy +103107,4.0,20 Feet from Stardom (Twenty Feet from Stardom) (2013),Documentary +103137,3.0,"Bling Ring, The (2013)",Crime|Drama +103141,3.5714285714285716,Monsters University (2013),Adventure|Animation|Comedy +103210,3.5,Fullmetal Alchemist: The Sacred Star of Milos (2011),Action|Adventure|Animation +103221,2.5,Not Suitable for Children (2012),Comedy|Romance +103228,3.125,Pacific Rim (2013),Action|Adventure|Sci-Fi|IMAX +103249,2.6875,World War Z (2013),Action|Drama|Horror|IMAX +103253,2.892857142857143,Elysium (2013),Action|Drama|Sci-Fi|IMAX +103279,3.5,What Maisie Knew (2012),Drama +103299,3.25,American Mary (2012),Horror|Thriller +103335,3.375,Despicable Me 2 (2013),Animation|Children|Comedy|IMAX +103339,2.0,White House Down (2013),Action|Drama|Thriller|IMAX +103341,3.55,"World's End, The (2013)",Action|Comedy|Sci-Fi +103372,1.8333333333333333,"Heat, The (2013)",Action|Comedy|Crime +103384,2.1666666666666665,"Lone Ranger, The (2013)",Action|Adventure|Western|IMAX +103444,4.5,Woody Allen: A Documentary (2012),Documentary +103502,1.5,"Knot, The (2012)",Comedy|Romance +103539,3.75,The Spectacular Now (2013),Comedy|Drama|Romance +103543,2.0,"Lifeguard, The (2013)",Comedy|Drama +103624,3.875,Fruitvale Station (2013),Drama +103655,1.1666666666666667,R.I.P.D. (2013),Action|Comedy|Fantasy +103671,2.5,Joker (2012),Comedy +103688,2.875,"Conjuring, The (2013)",Horror|Thriller +103731,5.0,"Angel Named Billy, An (2007)",Drama +103755,2.5,Turbo (2013),Adventure|Animation|Children|Comedy|Fantasy +103772,3.0,"Wolverine, The (2013)",Action|Adventure|Fantasy|Sci-Fi +103801,2.5,Drinking Buddies (2013),Comedy|Drama|Romance +103810,3.0,Red 2 (2013),Action|Comedy|Crime|Thriller +103819,3.0,Coffee Town (2013),Comedy +103865,2.0,Revenge for Jolly! (2012),Comedy|Drama +103883,2.6666666666666665,2 Guns (2013),Action|Comedy|Crime +103980,3.75,Blue Jasmine (2013),Drama +103984,2.0,"Great Beauty, The (Grande Bellezza, La) (2013)",Comedy|Drama +104074,3.0,Percy Jackson: Sea of Monsters (2013),Adventure|Children|Fantasy +104076,1.5,"Smurfs 2, The (2013)",Animation|Children|Comedy +104078,4.0,Alan Partridge: Alpha Papa (2013),Comedy +104119,5.0,"Forsyte Saga, The (1967)",Drama +104211,3.0,We're the Millers (2013),Comedy|Crime +104218,2.5,Grown Ups 2 (2013),Comedy +104241,2.3333333333333335,Kick-Ass 2 (2013),Action|Comedy|Crime +104243,2.9,Riddick (2013),Action|Sci-Fi|Thriller|IMAX +104245,2.5,Planes (2013),Adventure|Animation|Comedy +104272,3.0,Blackfish (2013),Documentary +104283,4.5,"Wind Rises, The (Kaze tachinu) (2013)",Animation|Drama|Romance +104303,3.0,Jobs (2013),Drama +104312,3.0,"Mortal Instruments: City of Bones, The (2013)",Action|Adventure|Drama|IMAX +104321,2.5,Touchy Feely (2013),Drama +104337,4.0,Lee Daniels' The Butler (2013),Drama +104339,4.0,In a World... (2013),Comedy +104374,4.033333333333333,About Time (2013),Drama|Fantasy|Romance +104441,3.5,"Frozen Ground, The (2013)",Crime|Drama|Thriller +104457,3.5,You're Next (2011),Horror|Thriller +104590,4.0,Tidal Wave (2009),Drama +104595,4.0,Family Band: The Cowsills Story (2011) ,Documentary +104597,3.5,"Chicago 8, The (2011)",Drama +104662,1.5,"First Nudie Musical, The (1976)",Comedy|Musical +104726,3.0,Koch (2012),Documentary +104757,4.0,Evocateur: The Morton Downey Jr. Movie (2012),Documentary +104760,1.0,Getaway (2013),Action|Crime +104841,3.7413793103448274,Gravity (2013),Action|Sci-Fi|IMAX +104863,4.0,What If (2013),Comedy|Drama|Romance +104879,3.4,Prisoners (2013),Drama|Mystery|Thriller +104881,4.0,"Out of the Furnace (Dust to Dust) (Low Dweller, The) (2013)",Drama|Thriller +104906,2.5,Austenland (2013),Comedy|Romance +104913,4.363636363636363,Rush (2013),Action|Drama +104925,3.6666666666666665,"Family, The (2013)",Action|Comedy|Crime +104944,4.25,Short Term 12 (2013),Drama +105037,2.0,"To Do List, The (2013)",Comedy +105121,1.0,Inescapable (2012),Action|Drama|War +105197,4.375,Nebraska (2013),Adventure|Drama +105211,3.5,Enough Said (2013),Comedy|Drama|Romance +105213,3.2,Don Jon (2013),Comedy|Drama|Romance +105246,4.25,Mood Indigo (L'écume des jours) (2013),Drama|Fantasy +105254,3.0,Crystal Fairy & the Magical Cactus and 2012 (2013),Adventure|Comedy +105351,1.5,Runner Runner (2013),Crime|Drama|Thriller +105355,4.5,Blue Is the Warmest Color (La vie d'Adèle) (2013),Drama|Romance +105429,4.0,Inequality for All (2013),Documentary +105468,4.0,Cloudy with a Chance of Meatballs 2 (2013),Animation|Children|Comedy|Fantasy +105504,4.2,Captain Phillips (2013),Adventure|Drama|Thriller|IMAX +105585,2.0,Machete Kills (Machete 2) (2013),Action|Crime|Thriller +105593,4.0,Filth (2013),Comedy|Crime|Drama +105715,2.0,Just Wright (2010),Comedy|Romance +105731,3.5,Carrie (2013),Drama|Horror +105755,1.3333333333333333,"Counselor, The (2013)",Crime|Drama|Thriller +105769,4.5,"Congress, The (2013)",Animation|Sci-Fi +105844,3.9583333333333335,12 Years a Slave (2013),Drama +105954,3.25,All Is Lost (2013),Action|Adventure|Drama +106002,3.409090909090909,Ender's Game (2013),Action|Adventure|Sci-Fi|IMAX +106004,3.5,Maniac (1963),Crime|Horror|Mystery|Romance|Thriller +106011,4.5,"Blue Umbrella, The (2013)",Animation +106022,4.0,Toy Story of Terror (2013),Animation|Children|Comedy +106062,3.0,Jackass Presents: Bad Grandpa (2013),Comedy +106072,3.1818181818181817,Thor: The Dark World (2013),Action|Adventure|Fantasy|IMAX +106100,3.880952380952381,Dallas Buyers Club (2013),Drama +106111,1.0,Marc Maron: Thinky Pain (2013),Comedy +106144,4.0,"Selfish Giant, The (2013)",Drama +106204,3.0,Pieta (2013),Drama +106236,3.0,Somm (2012),Documentary +106330,1.75,Last Vegas (2013),Comedy|Drama|Romance +106332,3.6666666666666665,Muscle Shoals (2013),Documentary +106397,2.5,Stephen Tobolowsky's Birthday Party (2005),Comedy|Documentary|Drama +106438,4.083333333333333,Philomena (2013),Comedy|Drama +106441,4.25,"Book Thief, The (2013)",Children|Drama|War +106452,3.5,Ida (2013),Drama +106471,5.0,One Piece Film: Strong World (2009),Action|Adventure|Animation|Comedy|Fantasy +106473,3.5,One Piece Film Z (2012),Action|Adventure|Animation|Fantasy +106487,3.2884615384615383,The Hunger Games: Catching Fire (2013),Action|Adventure|Sci-Fi|IMAX +106489,3.909090909090909,"Hobbit: The Desolation of Smaug, The (2013)",Adventure|Fantasy|IMAX +106491,2.6666666666666665,47 Ronin (2013),Action|Adventure|Fantasy +106540,4.0,Delivery Man (2013),Comedy +106542,1.5,Charlie Countryman (2013),Action|Comedy|Romance +106696,4.041666666666667,Frozen (2013),Adventure|Animation|Comedy|Fantasy|Musical|Romance +106762,4.0,Trigun: Badlands Rumble (2010),Action|Animation|Sci-Fi|Western +106766,3.75,Inside Llewyn Davis (2013),Drama +106782,4.120689655172414,"Wolf of Wall Street, The (2013)",Comedy|Crime|Drama +106839,3.5,Mandela: Long Walk to Freedom (2013),Drama +106870,3.0,Grave Encounters 2 (2012),Horror +106883,1.5,All is Bright (2013),Comedy|Drama +106916,3.375,American Hustle (2013),Crime|Drama +106918,3.5714285714285716,"Secret Life of Walter Mitty, The (2013)",Adventure|Comedy|Drama +106920,4.08,Her (2013),Drama|Romance|Sci-Fi +107042,4.0,Six by Sondheim (2013),Documentary +107069,3.5,Lone Survivor (2013),Action|Drama|Thriller|War +107081,4.5,Zatoichi on the Road (Zatôichi kenka-tabi) (Zatôichi 5) (1963),Action|Drama +107083,4.5,Geography Club (2013),Comedy|Drama|Romance +107141,3.25,Saving Mr. Banks (2013),Comedy|Drama +107314,4.0,Oldboy (2013),Action|Drama|Mystery +107348,2.7222222222222223,Anchorman 2: The Legend Continues (2013),Comedy +107382,3.0,Whoopi Goldberg Presents Moms Mabley (2013),Documentary +107406,3.5714285714285716,Snowpiercer (2013),Action|Drama|Sci-Fi +107412,5.0,"Kidnapping, Caucasian Style (Kavkazskaya plennitsa) (1967)",Comedy|Romance +107447,5.0,Wrong Cops (2013),Comedy|Crime +107516,3.5,Punk's Dead: SLC Punk! 2 (2014),Comedy +107649,5.0,Borgman (2013),Thriller +107702,1.5,Grudge Match (2013),Comedy +107769,2.5,Paranormal Activity: The Marked Ones (2014),Horror|Thriller +107771,3.5,Only Lovers Left Alive (2013),Drama|Horror|Romance +107910,4.5,I Know That Voice (2013),Documentary +107953,3.0,Dragon Ball Z: Battle of Gods (2013),Action|Animation|Fantasy|IMAX +108076,2.0,"Other Shore, The (2013)",Adventure|Documentary +108156,2.0,Ride Along (2014),Action|Comedy +108188,2.3333333333333335,Jack Ryan: Shadow Recruit (2014),Action|Drama|Thriller|IMAX +108190,2.727272727272727,Divergent (2014),Adventure|Romance|Sci-Fi|IMAX +108447,1.5,Atrocious (2010),Horror|Thriller +108506,2.5,Dark Touch (2013),Horror +108514,4.5,Yeh Jawaani Hai Deewani (2013),Comedy|Drama|Musical|Romance +108551,3.0,"String, The (Le fil) (2009)",Drama +108601,2.0,Drift (2013),Drama +108689,0.5,"I, Frankenstein (2014)",Action|Fantasy|Sci-Fi|IMAX +108715,1.5,Better Living Through Chemistry (2014),Comedy|Drama +108727,4.166666666666667,Nymphomaniac: Volume I (2013),Drama +108729,2.25,Enemy (2013),Mystery|Thriller +108873,3.5,"Same Love, Same Rain (El mismo amor, la misma lluvia) (1999)",Comedy|Drama|Romance +108928,2.3333333333333335,"Monuments Men, The (2014)",Action|Drama|War +108932,4.076923076923077,The Lego Movie (2014),Action|Adventure|Animation|Children|Comedy|Fantasy +108945,2.3333333333333335,RoboCop (2014),Action|Crime|Sci-Fi|IMAX +108949,2.5,"Art of the Steal, The (2013)",Crime +108981,4.0,Nymphomaniac: Volume II (2013),Drama|Mystery +109042,2.0,Knights of Badassdom (2013),Adventure|Comedy|Fantasy +109074,4.0,"Four, The (Si da ming bu) (2012)",Action|Crime|Fantasy +109183,4.0,Date and Switch (2014),Comedy +109187,1.75,"Zero Theorem, The (2013)",Drama|Fantasy|Sci-Fi +109191,1.5,Winter's Tale (2014),Drama|Fantasy|Mystery +109205,4.0,No Nukes (1980),Documentary|Musical +109295,2.0,Cold Comes the Night (2013),Crime|Drama|Thriller +109317,2.5,Someone Marry Barry (2014),Comedy +109359,4.0,Gerontophilia (2013),Comedy|Romance +109372,1.5,About Last Night (2014),Comedy|Romance +109374,4.0285714285714285,"Grand Budapest Hotel, The (2014)",Comedy|Drama +109483,3.0,That Awkward Moment (2014),Comedy|Romance +109487,4.151162790697675,Interstellar (2014),Sci-Fi|IMAX +109576,1.5,Welcome to the Jungle (2013),Comedy +109578,3.5833333333333335,Non-Stop (2014),Action|Mystery|Thriller +109673,2.1,300: Rise of an Empire (2014),Action|Drama|War|IMAX +109687,2.5,Particle Fever (2013),Documentary +109740,3.0,Obvious Child (2014),Comedy|Romance +109742,4.5,Cheap Thrills (2013),Comedy|Thriller +109846,3.0,Mr. Peabody & Sherman (2014),Adventure|Animation|Comedy +109848,3.1666666666666665,Under the Skin (2013),Horror|Sci-Fi|Thriller +109850,2.5,Need for Speed (2014),Action|Crime|Drama|IMAX +109853,2.0,Barefoot (2014),Comedy|Drama|Romance +109864,2.75,Veronica Mars (2014),Comedy|Crime|Drama +109895,3.25,Bad Words (2013),Comedy +110058,3.0,Broderskab (Brotherhood) (2009),Drama +110102,4.117647058823529,Captain America: The Winter Soldier (2014),Action|Adventure|Sci-Fi|IMAX +110110,3.0,Starred Up (2013),Drama +110127,2.25,Noah (2014),Adventure|Drama|IMAX +110194,4.0,Mistaken for Strangers (2013),Comedy|Documentary +110297,3.0,Muppets Most Wanted (2014),Adventure|Comedy|Crime +110352,4.5,Survival Island (Three) (2005),Adventure|Drama|Horror +110453,3.0,Draft Day (2014),Drama +110461,4.0,We Are the Best! (Vi är bäst!) (2013),Children|Comedy|Drama +110501,3.8333333333333335,The Raid 2: Berandal (2014),Action|Crime|Thriller +110553,2.5,The Amazing Spider-Man 2 (2014),Action|Sci-Fi|IMAX +110586,4.5,Calvary (2014),Comedy|Drama +110591,2.8333333333333335,Oculus (2013),Horror +110611,2.5,Cold in July (2014),Drama|Thriller +110655,2.5,Rio 2 (2014),Adventure|Animation|Children|Comedy +110730,2.111111111111111,Transcendence (2014),Drama|Sci-Fi|IMAX +110748,2.5,Wake Wood (2010) ,Drama|Horror|Mystery +110752,4.5,Mondo Hollywood (1967),Documentary +110771,2.0,"Other Woman, The (2014)",Comedy|Romance +110826,1.5,Brick Mansions (2014),Action|Crime|Drama +110858,1.5,Firstborn (1984),Drama|Thriller +110882,3.25,Locke (2013),Drama +111113,3.125,Neighbors (2014),Comedy +111235,3.5,Jodorowsky's Dune (2013),Documentary|Sci-Fi +111360,2.2857142857142856,Lucy (2014),Action|Sci-Fi +111362,3.7916666666666665,X-Men: Days of Future Past (2014),Action|Adventure|Sci-Fi +111364,2.9285714285714284,Godzilla (2014),Action|Adventure|Sci-Fi|IMAX +111384,3.75,Blue Ruin (2013),Thriller +111443,3.3333333333333335,Chef (2014),Comedy +111617,2.1666666666666665,Blended (2014),Comedy +111622,3.7,Begin Again (2013),Comedy|Romance +111624,3.5,Kelly & Cal (2014),Comedy|Drama +111659,3.25,Maleficent (2014),Action|Adventure|Children|IMAX +111663,1.5,Zombeavers (2014),Action|Comedy|Horror +111680,1.5,At Middleton (2013),Comedy|Romance +111743,2.8333333333333335,A Million Ways to Die in the West (2014),Comedy|Western +111759,3.9423076923076925,Edge of Tomorrow (2014),Action|Sci-Fi|IMAX +111781,3.5714285714285716,Mission: Impossible - Rogue Nation (2015),Action|Adventure|Thriller +111913,3.0,Lilting (2014),Drama +111921,3.9166666666666665,The Fault in Our Stars (2014),Drama|Romance +111931,2.0,Raze (2013),Action|Horror +112062,4.0,Camille Claudel 1915 (2013),Drama +112070,4.0,Maps to the Stars (2014),Drama +112112,2.0,Back in the Day (2014),Comedy +112138,3.875,22 Jump Street (2014),Action|Comedy|Crime +112171,2.6,"Equalizer, The (2014)",Action|Crime|Thriller +112175,4.125,How to Train Your Dragon 2 (2014),Action|Adventure|Animation +112183,3.8,Birdman: Or (The Unexpected Virtue of Ignorance) (2014),Comedy|Drama +112277,1.5,Haunt (2013),Horror|Mystery +112290,3.357142857142857,Boyhood (2014),Drama +112303,1.5,Think Like a Man Too (2014),Comedy|Romance +112334,3.5,"Internet's Own Boy: The Story of Aaron Swartz, The (2014)",Documentary +112370,2.1,Transformers: Age of Extinction (2014),Action|Adventure|Sci-Fi +112399,4.5,Finding Vivian Maier (2013),Documentary +112421,4.166666666666667,Frank (2014),Comedy|Drama|Mystery +112450,2.0,They Came Together (2014),Comedy|Romance +112460,2.0,Planes: Fire & Rescue (2014),Adventure|Animation|Comedy +112497,1.0,Tammy (2014),Comedy +112552,3.875,Whiplash (2014),Drama +112556,3.72,Gone Girl (2014),Drama|Thriller +112577,5.0,Willie & Phil (1980),Comedy|Drama|Romance +112582,4.0,Life Itself (2014),Documentary +112623,3.5,Dawn of the Planet of the Apes (2014),Sci-Fi +112653,4.0,"Battered Bastards of Baseball, The (2014)",Documentary +112655,2.5,No One Lives (2012),Horror|Thriller +112689,2.5,Miss Violence (2013),Drama|Mystery +112735,4.5,Charlie's Country (2013),Drama +112749,2.0,And So It Goes (2014),Comedy|Drama|Romance +112767,4.0,Premature (2014),Comedy +112788,1.25,Sex Tape (2014),Comedy +112804,3.0,I Origins (2014),Drama|Sci-Fi +112818,2.5,"Purge: Anarchy, The (2014)",Action|Horror|Thriller +112850,2.5,Words and Pictures (2013),Comedy|Drama|Romance +112852,3.9864864864864864,Guardians of the Galaxy (2014),Action|Adventure|Sci-Fi +112897,3.5,The Expendables 3 (2014),Action|Adventure +112911,2.75,Hercules (2014),Action|Adventure +112921,4.0,Once My Mother (2014),Documentary +112940,2.25,A Most Wanted Man (2014),Thriller +113064,3.75,"Trip to Italy, The (2014)",Comedy|Drama +113186,3.0,Felony (2013),Thriller +113207,4.0,Get on Up (2014),Drama|Musical +113220,3.0,"Dog, The (2013)",Documentary +113225,3.0,Magic in the Moonlight (2014),Comedy|Drama|Romance +113252,3.5,Housebound (2014),Comedy|Horror|Thriller +113275,3.5,The Hundred-Foot Journey (2014),Comedy|Drama +113345,1.5,Jupiter Ascending (2015),Action|Adventure|Sci-Fi +113348,2.1666666666666665,Teenage Mutant Ninja Turtles (2014),Action|Adventure|Comedy +113378,2.1666666666666665,"Giver, The (2014)",Drama|Sci-Fi +113416,1.5,Revenge of the Green Dragons (2014),Action|Crime|Drama +113453,2.3333333333333335,Let's Be Cops (2014),Comedy|Crime +113532,3.5,"Inbetweeners 2, The (2014)",Comedy +113565,3.0,"Sacrament, The (2013)",Horror|Thriller +113573,3.0,Sin City: A Dame to Kill For (2014),Action|Crime|Thriller +113640,2.5,"Canal, The (2014)",Horror|Thriller +113705,2.75,"Two Days, One Night (Deux jours, une nuit) (2014)",Drama +113741,2.5,Coherence (2013),Drama|Mystery|Sci-Fi|Thriller +113780,3.0,"As Above, So Below (2014)",Horror|Thriller +113829,3.5,"One I Love, The (2014)",Comedy|Drama|Romance +113862,3.8333333333333335,"Guest, The (2014)",Thriller +113938,3.5,Nixon by Nixon: In His Own Words (2014),Documentary +114028,4.333333333333333,Pride (2014),Comedy|Drama +114044,2.5,Honeymoon (2014),Horror +114060,3.5,The Drop (2014),Crime|Drama|Thriller +114074,3.0,The Skeleton Twins (2014),Drama +114122,3.5,Dim Sum: A Little Bit of Heart (1985),Comedy +114180,2.857142857142857,"Maze Runner, The (2014)",Action|Mystery|Sci-Fi +114265,3.5,Laggies (2014),Comedy|Romance +114342,4.0,Force Majeure (Turist) (2014),Drama +114552,4.5,"Boxtrolls, The (2014)",Adventure|Animation|Children|Comedy|Fantasy +114601,2.75,This Is Where I Leave You (2014),Comedy|Drama +114635,4.0,"Look of Silence, The (2014)",Documentary +114662,2.7777777777777777,American Sniper (2014),Action|War +114670,3.25,Tusk (2014),Comedy|Drama|Horror +114762,1.5,Two Night Stand (2014),Comedy|Romance +114766,2.0,SS Experiment Love Camp (Lager SSadis Kastrat Kommandantur) (1976),Horror|War +114795,3.5,Dracula Untold (2014),Action|Drama|Fantasy +114818,2.5,Stretch (2014),Action|Comedy|Crime +114925,2.0,"Captive, The (2014)",Crime|Drama|Thriller +114935,3.4,Predestination (2014),Action|Mystery|Sci-Fi|Thriller +115122,4.375,What We Do in the Shadows (2014),Comedy|Horror +115147,4.0,The Best of Me (2014),Drama|Romance +115149,3.45,John Wick (2014),Action|Thriller +115151,2.0,Plastic (2014),Action|Crime +115170,3.1666666666666665,"Judge, The (2014)",Drama +115174,3.5,Love Is Strange (2014),Drama +115210,3.75,Fury (2014),Action|Drama|War +115216,3.5,"Salvation, The (2014)",Drama|Western +115231,3.75,St. Vincent (2014),Comedy +115502,3.5,"Rewrite, The (2014)",Comedy|Romance +115534,2.0,Ouija (2014),Horror +115569,3.9615384615384617,Nightcrawler (2014),Crime|Drama|Thriller +115617,4.095238095238095,Big Hero 6 (2014),Action|Animation|Comedy +115664,4.5,The Book of Life (2014),Adventure|Animation|Romance +115680,3.5,Time Lapse (2014),Crime|Drama|Sci-Fi|Thriller +115713,3.9423076923076925,Ex Machina (2015),Drama|Sci-Fi|Thriller +115881,2.0,9 (2005),Animation|Fantasy +115927,4.0,Doctor Strange (2007),Action|Animation|Children|Fantasy|Sci-Fi +116012,4.0,The Young Savages (1961),Crime|Drama +116136,2.5,Olive Kitteridge (2014),Drama +116161,2.6666666666666665,Foxcatcher (2014),Drama +116207,1.5,Zulu (2013),Crime|Drama|Thriller +116397,3.75,Stonehearst Asylum (2014),Thriller +116413,3.0,Life Partners (2014),Comedy|Romance +116419,1.5,Drive Hard (2014),Action|Comedy|Crime +116503,1.5,The Possession of Michael King (2014),Horror +116660,4.0,Free Fall (2013),Drama +116797,4.109375,The Imitation Game (2014),Drama|Thriller|War +116799,2.1666666666666665,Inherent Vice (2014),Comedy|Crime|Drama|Mystery|Romance +116823,2.9,The Hunger Games: Mockingjay - Part 1 (2014),Adventure|Sci-Fi|Thriller +116849,2.5,Sex Ed (2014),Comedy|Romance +116855,4.0,The Way He Looks (2014),Drama|Romance +116887,2.0,Exodus: Gods and Kings (2014),Action|Adventure|Drama +116897,4.666666666666667,Wild Tales (2014),Comedy|Drama|Thriller +116939,0.5,Werner - Beinhart! (1990),Action|Animation|Comedy +116977,2.6666666666666665,Dumb and Dumber To (2014),Comedy +116985,1.5,The Longest Week (2014),Comedy|Drama +117107,2.5,Miss Meadows (2014),Drama +117121,3.0,Dorothy Mills (2008),Drama|Horror|Mystery|Thriller +117123,3.0,Dear White People (2014),Comedy|Drama +117176,3.6666666666666665,The Theory of Everything (2014),Drama|Romance +117434,1.5,Starry Eyes (2014),Horror +117444,3.75,Song of the Sea (2014),Animation|Children|Fantasy +117456,3.5,Beyond the Lights (2014),Drama +117511,3.0,Hello Ladies: The Movie (2014),Comedy +117529,3.4444444444444446,Jurassic World (2015),Action|Adventure|Drama|Sci-Fi|Thriller +117533,3.5,Citizenfour (2014),Documentary +117590,2.0,Horrible Bosses 2 (2014),Comedy|Crime +117851,1.5,Penguins of Madagascar (2014),Adventure|Animation|Children|Comedy +117871,3.0,"Water Diviner, The (2014)",Action|Drama|War +117895,3.1666666666666665,Maze Runner: Scorch Trials (2015),Action|Thriller +118082,3.5,The Voices (2014),Comedy|Crime|Thriller +118105,4.0,Trailer Park Boys: Live at the North Pole (2014),Comedy +118248,1.5,Dying of the Light (2014),Drama|Thriller +118260,2.5,The Borderlands (2013),Horror|Mystery +118326,2.0,By the Gun (2014),Crime|Drama|Thriller +118334,2.0,Omen IV: The Awakening (1991),Horror|Mystery|Thriller +118354,3.0,Kill the Messenger (2014),Crime|Drama|Mystery|Thriller +118696,3.1,The Hobbit: The Battle of the Five Armies (2014),Adventure|Fantasy +118702,2.5,Unbroken (2014),Drama|War +118814,2.0,Playing It Cool (2014),Comedy|Romance +118880,4.0,"Girl Walks Home Alone at Night, A (2014)",Horror|Romance|Thriller +118898,4.0,A Most Violent Year (2014),Action|Crime|Drama|Thriller +118900,3.5,Wild (2014),Drama +118924,2.75,Top Five (2014),Comedy +118985,3.25,Big Eyes (2014),Drama +118997,2.625,Into the Woods (2014),Children|Comedy|Fantasy|Musical +119068,2.0,"Men, Women & Children (2014)",Comedy|Drama +119141,3.0,The Interview (2014),Action|Comedy +119145,3.6538461538461537,Kingsman: The Secret Service (2015),Action|Adventure|Comedy|Crime +119155,3.25,Night at the Museum: Secret of the Tomb (2014),Adventure|Children|Comedy|Fantasy +119655,1.0,Seventh Son (2014),Adventure|Children|Fantasy +120392,2.5,Comet (2014),Comedy|Drama|Romance|Sci-Fi +120466,2.6666666666666665,Chappie (2015),Action|Thriller +120635,1.0,Taken 3 (2015),Action|Crime|Thriller +120637,1.75,Blackhat (2015),Action|Crime|Drama|Mystery|Thriller +120783,2.5,Son of a Gun (2014),Action|Crime|Drama +120799,2.9285714285714284,Terminator Genisys (2015),Action|Adventure|Sci-Fi|Thriller +120805,5.0,Robin Williams: Weapons of Self Destruction (2009),Comedy +120821,4.5,The War at Home (1979),Documentary|War +121113,1.0,Shriek If You Know What I Did Last Friday the Thirteenth (2000),Comedy|Horror +121126,5.0,The Car (1977),Horror|Mystery|Thriller +121171,3.0,Red Army (2014),Documentary +121231,4.0,It Follows (2014),Horror +121491,4.5,Off Beat (2004),Drama|Romance +121618,3.0,The Great Gatsby (1926),Drama +122490,1.5,Wicked Blood (2014),Action|Drama|Thriller +122882,3.7903225806451615,Mad Max: Fury Road (2015),Action|Adventure|Sci-Fi|Thriller +122886,3.5172413793103448,Star Wars: Episode VII - The Force Awakens (2015),Action|Adventure|Fantasy|Sci-Fi|IMAX +122888,5.0,Ben-hur (2016),(no genres listed) +122890,4.0,Warcraft (2016),Action|Adventure|Fantasy +122892,3.8846153846153846,Avengers: Age of Ultron (2015),Action|Adventure|Sci-Fi +122900,3.7941176470588234,Ant-Man (2015),Action|Adventure|Sci-Fi +122902,2.0,Fantastic Four (2015),Action|Adventure|Fantasy|Sci-Fi +122904,3.388888888888889,Deadpool (2016),Action|Adventure|Comedy|Sci-Fi +122920,3.5714285714285716,Captain America: Civil War (2016),Action|Sci-Fi|Thriller +122924,3.0,X-Men: Apocalypse (2016),Action|Adventure|Fantasy|Sci-Fi +122932,2.0,Elsa & Fred (2014),Children|Comedy|Romance +123947,3.0,Cake (2014),Drama +124859,2.0,The Gambler (2014),Crime|Drama|Thriller +125916,0.5,Fifty Shades of Grey (2015),Drama|Romance +126006,3.5,Rudolph the Red-Nosed Reindeer (1948),Animation|Children|Fantasy +126106,3.5,Beastie Boys: Sabotage (1994),(no genres listed) +126420,1.5,American Heist (2015),Action +126430,5.0,The Pacific (2010),Action|Adventure|Drama|War +126548,3.0,The DUFF (2015),Comedy +127052,5.0,Operation 'Y' & Other Shurik's Adventures (1965),Comedy|Crime|Romance +127096,2.5,Project Almanac (2015),Sci-Fi|Thriller +127098,4.0,Louis C.K.: Live at The Comedy Store (2015),Comedy +127108,5.0,Brooklyn (2015),Drama|Romance +127114,4.0,The End of the Tour (2015),Drama +127124,4.0,I'll See You in My Dreams (2015),Comedy|Drama +127136,2.1666666666666665,True Story (2015),Drama|Mystery|Thriller +127152,4.25,Going Clear: Scientology and the Prison of Belief (2015),Documentary +127158,3.5,Tig (2015),Documentary +127164,4.5,"What Happened, Miss Simone? (2015)",Documentary +127178,3.5,99 Homes (2014),Drama +127194,2.0,The D Train (2015),Comedy +127198,3.125,Dope (2015),Comedy|Drama +127202,4.0,Me and Earl and the Dying Girl (2015),Drama +127204,3.0,The Overnight (2015),Comedy +127206,2.0,"People, Places, Things (2015)",Comedy +127319,1.5,The Loft (2014),Thriller +127728,5.0,Back Soon (2007),Drama|Romance +128360,4.0625,The Hateful Eight (2015),Western +128512,3.5,Paper Towns (2015),Drama|Mystery|Romance +128520,2.0,The Wedding Ringer (2015),Comedy +128592,1.0,The Boy Next Door (2015),Mystery|Thriller +128606,4.5,45 Years (2015),Drama +128616,4.0,As We Were Dreaming (2015),(no genres listed) +128620,5.0,Victoria (2015),Crime|Drama|Romance +129009,4.0,"Getting Go, the Go Doc Project (2013)",Drama +129191,4.0,The Clowns (1970),Comedy|Drama|Fantasy|Sci-Fi +129250,0.5,Superfast! (2015),(no genres listed) +129313,5.0,Reality (2014),Comedy +129354,3.5,Focus (2015),Comedy|Crime|Drama|Romance +129364,2.0,Every Thing Will Be Fine (2015),Drama +129428,3.0,The Second Best Exotic Marigold Hotel (2015),Comedy|Drama +129514,5.0,George Carlin: It's Bad for Ya! (2008),Comedy +129653,3.0,Ismael (2013),Drama +129657,1.0,Tracers (2015),Action +129659,3.5,"McFarland, USA (2015)",Drama +129737,2.0,Unfinished Business (2015),Comedy +129937,1.75,Run All Night (2015),Action|Crime|Drama|Thriller +130073,3.0,Cinderella (2015),Children|Drama|Fantasy|Romance +130083,2.0,Kidnapping Mr. Heineken (2015),Action|Crime|Drama|Thriller +130087,3.5,The Cobbler (2015),Comedy|Drama|Fantasy +130351,4.0,The Wrecking Crew (2008),Documentary +130448,0.5,Poltergeist (2015),Horror|Thriller +130450,1.5,Pan (2015),Adventure|Children|Fantasy +130452,3.0,While We're Young (2014),Comedy|Drama +130490,2.3333333333333335,Insurgent (2015),Action|Sci-Fi|Thriller +130520,4.0,Home (2015),Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi +130522,5.0,The Brave Little Toaster Goes to Mars (1998),Animation|Children +130576,2.0,Midnight Special (2015),Drama|Sci-Fi +130580,3.5,The Disappearance of Eleanor Rigby: Her (2013),Drama +130628,4.0,Boys (2014),Drama +130634,2.25,Furious 7 (2015),Action|Crime|Thriller +130642,3.5,Backcountry (2014),Drama|Horror|Thriller +130682,3.5,Muck (2015),Horror +130960,3.5,The Conrad Boys (2006),Drama +130970,5.0,George Carlin: Life Is Worth Losing (2005),Comedy +130980,4.5,The Day That Lasted 21 Years (2012),Documentary +131013,2.5,Get Hard (2015),Comedy|Crime +131168,4.0,Phoenix (2014),Drama +131451,1.0,The Atticus Institute (2015),Horror +131714,1.5,Last Knights (2015),Action|Adventure +131724,4.5,The Jinx: The Life and Deaths of Robert Durst (2015),Documentary +131830,4.0,Samba (2014),Comedy|Drama +132046,3.0714285714285716,Tomorrowland (2015),Action|Adventure|Children|Mystery|Sci-Fi +132074,4.0,No No: A Dockumentary (2014),Documentary +132146,3.0,The Harvest (2013),Drama|Thriller +132157,2.0,Paul Blart: Mall Cop 2 (2015),Action|Comedy|Crime +132333,5.0,Seve (2014),Documentary|Drama +132462,1.0,Sword of Vengeance (2014),Action|Adventure|Drama +132480,3.0,The Age of Adaline (2015),Drama|Fantasy|Romance +132488,2.0,Lovesick (2014),Comedy|Romance +132496,3.5,Danny Collins (2015),Comedy|Drama +132618,1.5,Kite (2014),Action|Crime|Drama|Mystery|Thriller +132796,2.6666666666666665,San Andreas (2015),Action|Drama|Thriller +132888,3.5,Comedy Central Roast of James Franco (2013),Comedy +132952,4.0,Sarfarosh (1999),(no genres listed) +132961,3.0,Far from the Madding Crowd (2015),Drama +133195,2.0,Hitman: Agent 47 (2015),Action|Crime|Thriller +133281,2.0,Ricki and the Flash (2015),Comedy|Drama +133295,2.5,Cocaine Cowboys: Reloaded (2014),Documentary +133365,2.0,Partisan (2015),Drama|Thriller +133377,1.5,Infini (2015),Horror|Sci-Fi|Thriller +133419,2.9166666666666665,Pitch Perfect 2 (2015),Comedy +133545,1.0,Just Before I Go (2014),Comedy|Drama +133645,4.0,Carol (2015),Drama|Romance +133771,4.25,The Lobster (2015),Comedy|Romance|Sci-Fi +133782,2.0,Maggie (2015),Drama|Horror|Thriller +133798,1.5,Hot Pursuit (2015),Action|Comedy +133824,2.0,The Human Centipede III (Final Sequence) (2015),Horror +134025,3.0,Open Secret (2013),(no genres listed) +134130,4.1,The Martian (2015),Adventure|Drama|Sci-Fi +134158,1.5,Return to Sender (2015),Thriller +134170,3.4166666666666665,Kung Fury (2015),Action|Comedy|Fantasy|Sci-Fi +134246,3.0,Survivor (2015),Action|Thriller +134368,3.7,Spy (2015),Action|Comedy|Crime +134393,3.7,Trainwreck (2015),Comedy|Romance +134528,3.5,Aloha (2015),Comedy|Drama|Romance +134569,3.5,She's Funny That Way (2015),Comedy +134783,3.0,Entourage (2015),Comedy +134853,4.041666666666667,Inside Out (2015),Adventure|Animation|Children|Comedy|Drama|Fantasy +134859,3.5,The Wolfpack (2015),Documentary +134881,4.0,Love & Mercy (2014),Drama +135133,2.75,The Hunger Games: Mockingjay - Part 2 (2015),Adventure|Sci-Fi +135137,2.5,Pixels (2015),Action|Comedy|Sci-Fi +135264,4.0,Zenon: Girl of the 21st Century (1999),Adventure|Children|Comedy +135266,4.0,Zenon: The Zequel (2001),Adventure|Children|Comedy|Sci-Fi +135268,4.0,Zenon: Z3 (2004),Adventure|Children|Comedy +135436,3.0,The Secret Life of Pets (2016),Animation|Comedy +135508,3.5,A Deadly Adoption (2015),Comedy|Thriller +135518,2.8333333333333335,Self/less (2015),Action|Mystery|Sci-Fi|Thriller +135532,2.5,The Last Witch Hunter (2015),Action|Adventure|Fantasy +135536,3.0,Suicide Squad (2016),Action|Crime|Sci-Fi +135567,3.75,Independence Day: Resurgence (2016),Action|Adventure|Sci-Fi +135569,2.75,Star Trek Beyond (2016),Action|Adventure|Sci-Fi +135861,4.0,Ted 2 (2015),Comedy +135887,2.9,Minions (2015),Adventure|Animation|Children|Comedy +136016,4.5,The Good Dinosaur (2015),Adventure|Animation|Children|Comedy|Fantasy +136018,3.5,Black Mass (2015),Crime|Drama +136020,2.875,Spectre (2015),Action|Adventure|Crime +136305,1.0,Sharknado 3: Oh Hell No! (2015),Horror|Sci-Fi +136445,5.0,George Carlin: Back in Town (1996),Comedy +136447,5.0,George Carlin: You Are All Diseased (1999),Comedy +136449,5.0,Ghost in the Shell 2.0 (2008),Action|Animation|Sci-Fi +136562,2.5,Steve Jobs (2015),Drama +136592,1.5,Freaky Friday (1995),(no genres listed) +136598,2.5,Vacation (2015),Adventure|Comedy +136602,2.0,Creep (2014),Horror|Thriller +136654,1.5,The Face of an Angel (2015),Drama +136666,1.0,Search Party (2014),Comedy +136800,1.5,Robot Overlords (2014),Action|Adventure|Sci-Fi +136816,2.5,Bad Asses on the Bayou (2015),Action|Comedy +136864,2.4375,Batman v Superman: Dawn of Justice (2016),Action|Adventure|Fantasy|Sci-Fi +137337,3.5,Amy (2015),Documentary +137403,3.5,Swimming Upstream (2002),Drama +137595,3.0,Magic Mike XXL (2015),Comedy|Drama +137857,3.625,The Jungle Book (2016),Adventure|Drama|Fantasy +138036,3.4285714285714284,The Man from U.N.C.L.E. (2015),Action|Adventure|Comedy +138204,3.5,7 Days in Hell (2015),Comedy +138208,4.0,The Walk (2015),Adventure|Drama|Thriller +138258,3.0,Nasty Baby (2015),Drama +138546,1.5,The Opposite Sex (2014),Comedy +138696,5.0,Hands in the Air (2010),Comedy|Drama|Romance +138698,4.5,El vals de los inútiles (2014),Documentary +139116,5.0,Requiem For The Big East (2014),Documentary +139130,4.0,Afro Samurai (2007),Action|Adventure|Animation|Drama|Fantasy +139385,3.625,The Revenant (2015),Adventure|Drama +139415,3.0,Irrational Man (2015),Crime|Drama +139620,4.0,Everything's Gonna Be Great (1998),Adventure|Children|Comedy|Drama +139642,3.5,Southpaw (2015),Action|Drama +139644,3.4285714285714284,Sicario (2015),Crime|Drama|Mystery +139757,4.25,Best of Enemies (2015),Documentary +139855,2.0,Anomalisa (2015),Animation|Comedy|Fantasy +139915,2.0,How to Make Love Like an Englishman (2014),Comedy|Romance +140110,4.0,The Intern (2015),Comedy +140152,4.0,Dreamcatcher (2015),Children|Crime|Documentary +140174,3.9,Room (2015),Drama +140237,2.0,The Runner (2015),Drama +140247,4.0,The Gift (2015),Drama|Horror +140265,5.0,George Carlin: Jammin' in New York (1992),Comedy +140267,4.0,The Witch (2015),Horror +140523,2.5,"Visit, The (2015)",Comedy|Horror +140711,3.1666666666666665,American Ultra (2015),Action|Comedy|Sci-Fi|Thriller +140715,3.5,Straight Outta Compton (2015),Drama +140725,3.0,Cop Car (2015),Crime|Thriller +140739,5.0,Eighteen (2005),Drama +140741,5.0,Get Your Stuff (2000),Drama|Romance +140743,5.0,The Man I Love (1997),Drama +140745,5.0,10 Attitudes (2001),Comedy|Drama|Romance +140747,5.0,16 Wishes (2010),Children|Drama|Fantasy +140749,5.0,29th and Gay (2005),Comedy +140751,5.0,Almost Normal (2005),Comedy|Drama|Sci-Fi +140753,4.0,The Men Next Door (2012),(no genres listed) +140755,5.0,Long-Term Relationship (2006),Comedy|Romance +140757,4.0,3-Day Weekend (2008),Drama +140759,5.0,The Big Gay Musical (2009),Comedy|Drama|Romance +140761,5.0,The Biggest Fan (2002),Comedy|Romance +140763,5.0,Boy Crazy (2009),(no genres listed) +140816,3.5,Tangerine (2015),Comedy|Drama +140880,4.0,Fashion Victims (2007),Comedy +140928,1.3333333333333333,Joy (2015),Comedy|Drama +141124,5.0,FAQs (2005),Drama +141422,2.5,Suffragette (2015),Drama +141668,5.0,War Room (2015),Drama +141688,2.5,Legend (2015),Crime|Thriller +141718,3.5,Deathgasm (2015),Comedy|Horror +141749,4.0,The Danish Girl (2015),Drama +141866,4.0,Green Room (2015),(no genres listed) +141886,5.0,The Dress (1996),Comedy|Drama +141890,4.0,Beasts of No Nation (2015),Drama|War +141956,1.0,Contracted: Phase II (2015),Drama|Horror|Thriller +142068,5.0,Tiger Orange (2014),Drama +142192,3.5,Female on the Beach (1955),Crime|Drama|Mystery|Romance|Thriller +142240,5.0,Romeos (2011),Drama +142258,1.5,Listen to Me Marlon (2015),Documentary +142422,4.0,The Night Before (2015),Comedy +142448,3.5,Everest (2015),Adventure|Drama|Thriller +142488,3.8333333333333335,Spotlight (2015),Thriller +142507,3.0,Pawn Sacrifice (2015),Drama +142536,2.0,Burnt (2015),Drama +142997,3.5,Hotel Transylvania 2 (2015),Animation|Comedy +143255,1.5,Narcopolis (2014),Mystery|Sci-Fi|Thriller +143257,2.5,Ashby (2015),Comedy|Drama +143377,3.5,Glen Campbell: I'll Be Me (2014),Documentary|Drama +143385,3.5,Bridge of Spies (2015),Drama|Thriller +143410,2.0,Hyena Road,(no genres listed) +143472,1.5,Into the Grizzly Maze (2015),Action|Horror|Thriller +143657,2.0,The Invitation (2015),Horror|Thriller +143859,3.0,"Hail, Caesar! (2016)",Comedy +144620,4.0,Goosebumps (2015),Adventure|Comedy|Horror +144714,1.5,The Perfect Guy (2015),Drama|Thriller +144976,5.0,Bone Tomahawk (2015),Horror|Western +145150,3.0,The Dressmaker (2015),Comedy|Drama|Thriller +145307,2.5,Strictly Business (1991),Comedy|Romance +145775,3.0,Rubble Kings (2015),Documentary +145839,1.0,Concussion (2015),Drama +145935,4.0,"Peanuts Movie, The (2015)",Adventure|Animation|Children|Comedy +146309,4.0,The Boy and the Beast (2015),Action|Adventure|Animation +146443,3.0,Plan B (2009),Comedy|Drama|Romance +146501,2.5,Land of Storms (2014),Drama +146604,3.0,Naomi and Ely's No Kiss List (2015),Comedy|Drama|Romance +146656,4.166666666666667,Creed (2015),Drama +146682,3.5,Twinsters (2015),Documentary +146688,2.0,Solace (2015),Fantasy|Mystery|Thriller +147006,3.0,Bana Masal Anlatma (2015),Comedy|Drama +147010,4.0,Thou Gild'st the Even (2013),Drama|Fantasy|Romance +147037,5.0,Straight-Jacket (2004),Comedy +147426,3.5,İtirazım Var (2014),Action|Crime|Drama +147845,3.5,Manson Family Vacation (2015),Comedy|Drama|Thriller +148168,4.0,Pek Yakında (2014),Action|Comedy|Drama +148238,3.0,A Very Murray Christmas (2015),Comedy +148372,5.0,Schneider vs. Bax (2015),Comedy|Thriller +148626,3.6,"Big Short, The (2015)",Drama +148652,2.5,The Ridiculous 6 (2015),Comedy|Western +148881,5.0,World of Tomorrow (2015),Animation|Comedy +148888,3.0,Zoolander 2 (2016),Comedy +148956,4.0,How to Be Single (2016),Comedy|Romance +149352,3.0,Daddy's Home (2015),Comedy +149354,3.5,Sisters (2015),Children|Comedy +149406,4.333333333333333,Kung Fu Panda 3 (2016),Action|Adventure|Animation +149532,3.0,Marco Polo: One Hundred Eyes (2015),(no genres listed) +149572,3.0,A.R.O.G. (2008),Comedy|Fantasy +149590,2.5,Standoff (2016),Thriller +149606,4.5,Bajirao Mastani (2015),Romance|War +149612,2.0,Swelter (2014),Action|Drama|Thriller +149830,3.0,Pride and Prejudice and Zombies (2016),Comedy|Horror|Romance|Thriller +150401,3.0,Close Range (2015),Action|Crime +151307,4.5,The Lovers and the Despot,(no genres listed) +151639,2.5,The Boy (2016),Horror|Thriller +152017,5.0,Me Before You (2016),Drama|Romance +152025,2.5,SOMM: Into the Bottle (2016),Documentary +152057,0.5,Miles Ahead (2016),Drama +152077,3.7,10 Cloverfield Lane (2016),Thriller +152079,1.5,London Has Fallen (2016),Action|Crime|Thriller +152081,4.0,Zootopia (2016),Action|Adventure|Animation|Children|Comedy +152091,3.0,The Brothers Grimsby (2016),Comedy +152844,4.0,Demons (1971),Horror +153584,5.0,The Last Days of Emma Blank (2009),Comedy +155392,4.0,"Hello, My Name Is Doris (2016)",Drama +155611,4.0,Life Is Sacred (2014),Documentary +155820,1.0,Keanu (2016),Comedy +156025,5.0,Ice Age: The Great Egg-Scapade (2016),Adventure|Animation|Children|Comedy +156387,4.0,Sing Street (2016),Drama +156607,1.25,The Huntsman Winter's War (2016),Action|Adventure|Drama|Fantasy +156609,3.75,Neighbors 2: Sorority Rising (2016),Comedy +156726,3.5,Hush (2016),Thriller +157200,1.5,Money Monster (2016),Drama|Thriller +157296,3.3333333333333335,Finding Dory (2016),Adventure|Animation|Comedy +157407,1.5,I Am Wrath (2016),Action|Crime|Drama|Thriller +157667,1.5,Mother's Day (2016),Comedy +158238,3.75,The Nice Guys (2016),Crime|Mystery|Thriller +158314,4.5,Daniel Tosh: Completely Serious (2007),Comedy +158528,3.5,The Shallows (2016),Drama|Thriller +158956,4.0,Kill Command (2016),Action|Horror|Sci-Fi +159093,2.0,Now You See Me 2 (2016),Action|Comedy|Thriller +159462,3.0,The Video Dead (1987),Horror +159690,2.0,Teenage Mutant Ninja Turtles: Out of the Shadows (2016),Action|Adventure|Comedy +159755,1.0,Popstar: Never Stop Never Stopping (2016),Comedy +159858,3.75,The Conjuring 2 (2016),Horror +159972,0.5,Approaching the Unknown (2016),Drama|Sci-Fi|Thriller +160080,1.0,Ghostbusters (2016),Action|Comedy|Horror|Sci-Fi +160271,2.5,Central Intelligence (2016),Action|Comedy +160438,4.25,Jason Bourne (2016),Action +160440,1.5,The Maid's Room (2014),Thriller +160563,2.5,The Legend of Tarzan (2016),Action|Adventure +160565,2.0,The Purge: Election Year (2016),Action|Horror|Sci-Fi +160567,4.0,Mike & Dave Need Wedding Dates (2016),Comedy +160590,5.0,Survive and Advance (2013),(no genres listed) +160656,3.5,Tallulah (2016),Drama +160718,4.0,Piper (2016),Animation +161084,2.5,My Friend Rockefeller (2015),Documentary +161155,0.5,Sunspring (2016),Sci-Fi +161594,3.0,Kingsglaive: Final Fantasy XV (2016),Action|Adventure|Animation|Drama|Fantasy|Sci-Fi +161830,1.0,Body (2015),Drama|Horror|Thriller +161918,1.5,Sharknado 4: The 4th Awakens (2016),Action|Adventure|Horror|Sci-Fi +161944,5.0,The Last Brickmaker in America (2001),Drama +162542,5.0,Rustom (2016),Romance|Thriller +162672,3.0,Mohenjo Daro (2016),Adventure|Drama|Romance +163949,5.0,The Beatles: Eight Days a Week - The Touring Years (2016),Documentary diff --git a/resources/imgs/EDA1.jpg b/resources/imgs/EDA1.jpg new file mode 100644 index 00000000..d842591a Binary files /dev/null and b/resources/imgs/EDA1.jpg differ diff --git a/resources/imgs/EDA2.jpg b/resources/imgs/EDA2.jpg new file mode 100644 index 00000000..50a6d85c Binary files /dev/null and b/resources/imgs/EDA2.jpg differ diff --git a/resources/imgs/header_image.jpg b/resources/imgs/header_image.jpg new file mode 100644 index 00000000..0b929ca7 Binary files /dev/null and b/resources/imgs/header_image.jpg differ diff --git a/resources/imgs/meet_our_team.jpg b/resources/imgs/meet_our_team.jpg new file mode 100644 index 00000000..abfc3ac3 Binary files /dev/null and b/resources/imgs/meet_our_team.jpg differ diff --git a/resources/models/train_colbased.py b/resources/models/train_colbased.py index c90e1908..ecba09a3 100644 --- a/resources/models/train_colbased.py +++ b/resources/models/train_colbased.py @@ -16,7 +16,7 @@ import pickle # Importing datasets -ratings = pd.read_csv('ratings.csv') +ratings = pd.read_csv('/home/explore-student/unsupervised_data/edsa-movie-recommendation-predict/train.csv') ratings.drop('timestamp',axis=1,inplace=True) def svd_pp(save_path): diff --git a/unsupervised-predict-streamlit-teames2/README.md b/unsupervised-predict-streamlit-teames2/README.md new file mode 100644 index 00000000..4df8efe4 --- /dev/null +++ b/unsupervised-predict-streamlit-teames2/README.md @@ -0,0 +1,183 @@ +# Streamlit-based Recommender System +#### EXPLORE Data Science Academy Unsupervised Predict + +## 1) Overview + +![Movie_Recommendations](resources/imgs/Image_header.png) + +This repository forms the basis of *Task 2* for the **Unsupervised Predict** within EDSA's Data Science course. It hosts template code which will enable students to deploy a basic recommender engine based upon the [Streamlit](https://www.streamlit.io/) web application framework. + +As part of the predict, students are expected to expand on this base template; improving (and fixing) the given base recommender algorithms, as well as providing greater context to the problem and attempted solutions through additional application pages/functionality. + +#### 1.1) What is a Recommender System? + +[![What is an API](resources/imgs/What_is_a_recommender_system.png)](https://youtu.be/Eeg1DEeWUjA) + +Recommender systems are the unsung heroes of our modern technological world. Search engines, online shopping, streaming multimedia platforms, news-feeds - all of these services depend on recommendation algorithms in order to provide users the content they want to interact with. + +At a fundamental level, these systems operate using similarity, where we try to match people (users) to things (items). Two primary approaches are used in recommender systems are content-based and collaborative-based filtering. In content-based filtering this similarity is measured between items based on their properties, while collaborative filtering uses similarities amongst users to drive recommendations. + +Throughout the course of this Sprint, you'll work on defining this brief explanation further as you come to understand the theoretical and practical aspects of recommendation algorithms. + +#### 1.2) Description of contents + +Below is a high-level description of the contents within this repo: + +| File Name | Description | +| :--------------------- | :-------------------- | +| `edsa_recommender.py` | Base Streamlit application definition. | +| `recommenders/collaborative_based.py` | Simple implementation of collaborative filtering. | +| `recommenders/content_based.py` | Simple implementation of content-based filtering. | +| `resources/data/` | Sample movie and rating data used to demonstrate app functioning. | +| `resources/models/` | Folder to store model and data binaries if produced. | +| `utils/` | Folder to store additional helper functions for the Streamlit app | + +## 2) Usage Instructions + +#### 2.1) Improving your recommender system +The primary goal of this task within the Unsupervised Predict is to make students aware of (and ultimately competent in handling) the complexities associated with deploying recommender algorithms in a live environment. These algorithms are resource heavy - requiring high amounts of memory and processing power when associated with larger data sources. As such, you'll need to research and determine the modifications required to deploy this app so that it produces appropriate recommendations with as little latency as possible. This will not be a trivial task, but we know you'll give your best shot :star:! + +In order to make your improvements, we have a few instructions to guide you: + - **Only modify the sections of the base `edsa_recommender.py` file which have been indicated**. The code which has been designated to be left unaltered is used to provide a standard interface during our automated testing of your app. Changing this code may result in our system assigning you a mark of 0 :( + + - **Do not modify the function name and signature for the `*_model` functions in `collaborative_based.py` and `content_based.py`**. As stated above, these functions are used during automated testing. You are, however, supposed to modify/improve the content of these functions with your algorithms developed within Task 1 of the Unsupervised Predict. + + - **Add additional data where needed**. The data files which we've provided you within this repo template serve only as examples. For correct/improved functioning, you may need to add additional data files from sources such as the Kaggle challenge in Task 1, or the S3 bucket provided to you during this sprint. (**NB:** Github doesn't accept large file uploads during a commit. As such, you may need to keep only local copies of your data files. Have a look at how to exclude files from your git commits using a `.gitignore` file [here](https://docs.github.com/en/github/using-git/ignoring-files)) + + - **Focus on both algorithmic approaches**. There will be trade-offs for using either collaborative or content based filtering. Try to discover these by attempting to use both approaches in your app. + + - **Use computing power if necessary**. As mentioned before, the compute resources required for this task are heavy. As such, when the need arises, switch to an AWS instance with greater computing power. (**NB:** We'll require that you restrict this to one large AWS instance (t2.2xlarge/t2.xlarge) per team). + + +#### 2.2) Creating a copy of this repo + +| :zap: WARNING :zap: | +| :-------------------- | +| Do **NOT** *clone* this repository. Instead follow the instructions in this section to *fork* the repo. | + +As described within the Predict instructions for the Unsupervised Sprint, this code represents a *template* from which to extend your own work. As such, in order to modify the template, you will need to **[fork](https://help.github.com/en/github/getting-started-with-github/fork-a-repo)** this repository. Failing to do this will lead to complications when trying to work on the web application remotely. + +To fork the repo, simply ensure that you are logged into your GitHub account, and then click on the 'fork' button at the top of this page. + +#### 2.3) Running the recommender system locally + +As a first step to becoming familiar with our web app's functioning, we recommend setting up a running instance on your own local machine. + +To do this, follow the steps below by running the given commands within a Git bash (Windows), or terminal (Mac/Linux): + + 1. Ensure that you have the prerequisite Python libraries installed on your local machine: + + ```bash + pip install -U streamlit numpy pandas scikit-learn + conda install -c conda-forge scikit-surprise + ``` + + 2. Clone the *forked* repo to your local machine. + + ```bash + git clone https://github.com/{your-account-name}/unsupervised-predict-streamlit-template.git + ``` + + 3. Navigate to the base of the cloned repo, and start the Streamlit app. + + ```bash + cd unsupervised-predict-streamlit-template/ + streamlit run edsa_recommender.py + ``` + + If the web server was able to initialise successfully, the following message should be displayed within your bash/terminal session: + +``` + You can now view your Streamlit app in your browser. + + Local URL: http://localhost:8501 + Network URL: http://192.168.43.41:8501 +``` + +You should also be automatically directed to the base page of your web app. This should look something like: + +![Streamlit base page](resources/imgs/landing_page_sample.png) + +Congratulations! You've now officially deployed your web-based recommender engine! + +While we leave the modification of your recommender system up to you, the latter process of cloud deployment is outlined within the next section. + +#### 2.4) Running the recommender system on a remote AWS EC2 instance + +| :zap: WARNING :zap: | +| :-------------------- | +| As outlined in the previous section, we recommend deploying this app on a larger AWS instance with sufficient memory (t2.2xlarge/t2.xlarge). Note that a restriction of one large compute instance per team will be applied. | + +The following steps will enable you to run your recommender system on a remote EC2 instance, allowing it to the accessed by any device/application which has internet access. + +Within these setup steps, we will be using a remote EC2 instance, which we will refer to as the ***Host***, in addition to our local machine, which we will call the ***Client***. We use these designations for convenience, and to align our terminology with that of common web server practices. In cases where commands are provided, use Git bash (Windows) or Terminal (Mac/Linux) to enter these. + +1. Ensure that you have access to a running AWS EC2 instance with an assigned public IP address. + +**[On the Host]:** + +2. Install the prerequisite python libraries: + +```bash +pip install -U streamlit numpy pandas scikit-learn +conda install -c conda-forge scikit-surprise +``` + +3. Clone your copy of the API repo, and navigate to its root directory: + +```bash +git clone https://github.com/{your-account-name}/unsupervised-predict-streamlit-template.git +cd unsupervised-predict-streamlit-template/ +``` + +| :information_source: NOTE :information_source: | +| :-------------------- | +| In the following steps we make use of the `tmux` command. This programme has many powerful functions, but for our purposes, we use it to gracefully keep our web app running in the background - even when we end our `ssh` session. | + +4. Enter into a Tmux window within the current directory. To do this, simply type `tmux`. + +5. Start the Streamlit web app on port `5000` of the host + +```bash +streamlit run --server.port 5000 edsa_recommender.py +``` + +If this command ran successfully, output similar to the following should be observed on the Host: + +``` +You can now view your Streamlit app in your browser. + + Network URL: http://172.31.47.109:5000 + External URL: http://3.250.50.104:5000 + +``` + +Where the specific `Network` and `External` URLs correspond to those assigned to your own EC2 instance. Copy the value of the external URL. + +**[On the Client]:** + +6. Within your favourite web browser (we hope this isn't Internet Explorer 9), navigate to external URL you just copied from the Host. This should correspond to the following form: + + `http://{public-ip-address-of-remote-machine}:5000` + + Where the above public IP address corresponds to the one given to your AWS EC2 instance. + + If successful, you should see the landing page of your recommender system app (image identical to that for the local setup instructions). + +**[On the Host]:** + +7. To keep your app running continuously in the background, detach from the Tmux window by pressing `ctrl + b` and then `d`. This should return you to the view of your terminal before you opened the Tmux window. + + To go back to your Tmux window at any time (even if you've left your `ssh` session and then return), simply type `tmux attach-session`. + + To see more functionality of the Tmux command, type `man tmux`. + +Having run your web app within Tmux, you should be now free to end your ssh session while your webserver carries on purring along. Well done :zap:! + +## 3) FAQ + +This section of the repo will be periodically updated to represent common questions which may arise around its use. If you detect any problems/bugs, please [create an issue](https://help.github.com/en/github/managing-your-work-on-github/creating-an-issue) and we will do our best to resolve it as quickly as possible. + +We wish you all the best in your learning experience :rocket: + +![Explore Data Science Academy](resources/imgs/EDSA_logo.png) diff --git a/unsupervised-predict-streamlit-teames2/edsa_recommender.py b/unsupervised-predict-streamlit-teames2/edsa_recommender.py new file mode 100644 index 00000000..dad6c9e3 --- /dev/null +++ b/unsupervised-predict-streamlit-teames2/edsa_recommender.py @@ -0,0 +1,339 @@ +""" + + Streamlit webserver-based Recommender Engine. + + Author: Explore Data Science Academy. + + Note: + --------------------------------------------------------------------- + Please follow the instructions provided within the README.md file + located within the root of this repository for guidance on how to use + this script correctly. + + NB: !! Do not remove/modify the code delimited by dashes !! + + This application is intended to be partly marked in an automated manner. + Altering delimited code may result in a mark of 0. + --------------------------------------------------------------------- + + Description: This file is used to launch a minimal streamlit web + application. You are expected to extend certain aspects of this script + and its dependencies as part of your predict project. + + For further help with the Streamlit framework, see: + + https://docs.streamlit.io/en/latest/ + +""" +# Streamlit dependencies +import streamlit as st + +# Data handling dependencies +import pandas as pd +import numpy as np +import matplotlib.pyplot as plt + +# Custom Libraries +from utils.data_loader import load_movie_titles +from recommenders.collaborative_based import collab_model +from recommenders.content_based import content_model +from googleapiclient.discovery import build + +# Data Loading +title_list = load_movie_titles('resources/data/movies.csv') +movies_df = pd.read_csv('resources/data/rated_movies.csv') + + + +# Function to fetch the YouTube video ID of a trailer based on the movie title +def get_youtube_trailer_id(movie_title, api_key, num_results=1): + youtube = build('youtube', 'v3', developerKey=api_key) + search_response = youtube.search().list( + q=f"{movie_title} official trailer", + part='id', + type='video', + maxResults=num_results + ).execute() + + # Extract the video ID from the API response + video_id = search_response['items'][0]['id']['videoId'] if search_response['items'] else None + return video_id + + +def extract_year_from_title(title): + year_start = title.find("(") + 1 + year_end = title.find(")") + return title[year_start:year_end] + + +# Extract year from the title and create a new "year" column +movies_df['year'] = movies_df['title'].apply(extract_year_from_title) + +# Convert the "year" column to integer type +movies_df['year'] = pd.to_numeric(movies_df['year'], errors='coerce') + + +# App declaration +def main(): + + # DO NOT REMOVE the 'Recommender System' option below, however, + # you are welcome to add more options to enrich your app. + page_options = ["Recommender System","Solution Overview","Movie Search","Top Rated Movies","EDA", "About Us"] + + # ------------------------------------------------------------------- + # ----------- !! THIS CODE MUST NOT BE ALTERED !! ------------------- + # ------------------------------------------------------------------- + page_selection = st.sidebar.selectbox("Choose Option", page_options) + if page_selection == "Recommender System": + # Header contents + st.write('# Movie Recommender Engine') + st.write('### EXPLORE Data Science Academy Unsupervised Predict') + st.image('resources/imgs/Image_header.png',use_column_width=True) + # Recommender System algorithm selection + sys = st.radio("Select an algorithm", + ('Content Based Filtering', + 'Collaborative Based Filtering')) + + # User-based preferences + st.write('### Enter Your Three Favorite Movies') + movie_1 = st.selectbox('First Option',title_list[14930:15200]) + movie_2 = st.selectbox('Second Option',title_list[25055:25255]) + movie_3 = st.selectbox('Third Option',title_list[21100:21200]) + fav_movies = [movie_1,movie_2,movie_3] + + # Perform top-10 movie recommendation generation + if sys == 'Content Based Filtering': + if st.button("Recommend"): + try: + with st.spinner('Crunching the numbers...'): + top_recommendations = content_model(movie_list=fav_movies, + top_n=10) + st.title("We think you'll like:") + for i,j in enumerate(top_recommendations): + st.subheader(str(i+1)+'. '+j) + except: + st.error("Oops! Looks like this algorithm does't work.\ + We'll need to fix it!") + + + if sys == 'Collaborative Based Filtering': + if st.button("Recommend"): + try: + with st.spinner('Crunching the numbers...'): + top_recommendations = collab_model(movie_list=fav_movies, + top_n=10) + st.title("We think you'll like:") + for i,j in enumerate(top_recommendations): + st.subheader(str(i+1)+'. '+j) + except: + st.error("Oops! Looks like this algorithm does't work.\ + We'll need to fix it!") + + + # ------------------------------------------------------------------- + # Code for "Movie Search" page + if page_selection == "Movie Search": + st.title("Movie Search") + + # Sidebar - Movie Search + genre = st.sidebar.text_input('Enter a Genre (e.g., Action, Drama, Comedy):') + title = st.sidebar.text_input('Enter a Movie Title:') + # Function to filter movies based on user criteria + def filter_movies(df, genre=None, title=None): + if genre: + df = df[df['genres'].str.contains(genre, case=False)] + if title: + df = df[df['title'].str.contains(title, case=False)] + df = df.sort_values(by='rating', ascending=False) + return df + + # Filter the movies based on user criteria + filtered_movies = filter_movies(movies_df, genre=genre, title=title) + + # Display the filtered movie results + st.table(filtered_movies[['title', 'genres', 'rating']]) + + + # ------------------------------------------------------------------- + + # Code for "Top Rated Movies" page + if page_selection == "Top Rated Movies": + # st.title('Top Rated Movies') + # num_top_rated_movies = st.slider('Number of Top Rated Movies to Display:', 5, 20, 10) + + # # Function to get top-rated movies + # def get_top_rated_movies(df, num_movies=10): + # return df.nlargest(num_movies, 'rating') + + # top_rated_movies = get_top_rated_movies(movies_df, num_top_rated_movies) + # st.table(top_rated_movies[['title', 'genres', 'rating']]) + + st.title('Top Rated Movies') + num_top_rated_movies = st.slider('Number of Top Rated Movies to Display:', 5, 20, 10) + + # Function to get top-rated movies + def get_top_rated_movies(df, num_movies=10): + return df.nlargest(num_movies, 'rating') + + top_rated_movies = get_top_rated_movies(movies_df, num_top_rated_movies) + + # Fetch and display trailers for each top-rated movie + st.write("Trailers:") + api_key = 'AIzaSyAz-2bMsUmJ6DdJioEFAPZYNdoKjbEABEs' # Replace with your YouTube API key + for _, row in top_rated_movies.iterrows(): + movie_title = row['title'] + trailer_id = get_youtube_trailer_id(movie_title, api_key) + if trailer_id: + st.write(f"**{movie_title}**: ") + st.video(f"https://www.youtube.com/watch?v={trailer_id}", format="mp4") + + + + + # ------------- SAFE FOR ALTERING/EXTENSION ------------------- + if page_selection == "Solution Overview": + st.title("Solution Overview") + st.image('resources/imgs/header_image.jpg',use_column_width=True) + + # Button to expand/collapse the "Movie Recommender App" subsection + if st.button("Movie Recommender App"): + st.write(""" + **Solution Overview: Movie Recommender App** + + Our Movie Recommender App is an intelligent system designed to help users discover their ideal movies by leveraging the power of collaborative-based and content-based filtering techniques. The primary goal of this app is to provide personalized movie recommendations based on user preferences and movie features. + """) + + if st.button("Key Features"): + st.write(""" + **Key Features:** + + 1. **User-Friendly Interface:** The app offers a simple and intuitive user interface. Users can easily navigate through different sections, including "Recommender System," "Movie Search," and "Top Rated Movies." + + 2. **Recommender System:** Our app presents two advanced recommendation algorithms: Collaborative-Based Filtering and Content-Based Filtering. Users can input their three favorite movies, and the system will generate a list of movie recommendations tailored to their unique tastes. + + 3. **Movie Search:** Users have the freedom to search for specific movies or explore movies by genres. The app efficiently filters movies based on user-provided genre criteria, allowing users to quickly discover movies that match their interests. + + 4. **Top Rated Movies:** Our app presents a list of top-rated movies based on user ratings or other metrics. Users can adjust the number of movies displayed to explore the best movies based on their preferences. + """) + + if st.button("How It Works"): + st.write(""" + **How It Works:** + + 1. **Collaborative-Based Filtering:** This approach builds user-item interactions to uncover patterns in user preferences. By analyzing how similar users have rated movies, the system identifies movies that align with a user's taste. The resulting recommendations are personalized and considerate of user behavior. + + 2. **Content-Based Filtering:** The content-based approach focuses on movie features such as genres and tags. By comparing movie attributes with user preferences, the app suggests movies that align with a user's previous movie choices. + """) + + if st.button("Benefits"): + st.write(""" + **Benefits:** + + 1. **Personalized Recommendations:** Our app provides personalized movie recommendations, ensuring that users receive tailored suggestions based on their individual interests. + + 2. **Exploration and Discovery:** Users can discover new movies outside their typical choices through the diverse recommendations generated by the app. + + 3. **Enhanced Movie Search:** The movie search feature enables users to find movies based on specific genres, empowering them to explore movies relevant to their mood or interests. + + """) + + st.write("""Our Movie Recommender App is committed to delivering an engaging and dynamic movie discovery experience for users. We continuously strive to improve our recommendation algorithms and user interface to ensure movie enthusiasts find their perfect watchlist with ease. Enjoy exploring the world of cinema with our smart and sophisticated movie recommender system! + """) + + + + # You may want to add more sections here for aspects such as an EDA, + # or to provide your business pitch. + +#-------------------------------------------------------------------------------------------------------------------------------- +#----------------------------------------------------------------------------------------------------------------------------- + + + # Add code for "About Us" page + if page_selection == "About Us": + st.title("About Us") + + # Insert information about your team, project, or organization + + st.image('resources/imgs/meet_our_team.jpg',use_column_width=True) + st.markdown(""" + - Ayodele Marcus: Movie Analyst + - Toka Ramakau: Data Engineer + - Mmatlou Matlakala: Lead Data Scientist + - Jacinta Muindi: Machine Learning Engineer + - Oladimeji Akanni: Data Scientist + - Emmanuel Alabi: App Designer + + Contact us at [teames2_dreamteam@gmail.com](mailto:teames2_dreamteam@gmail.com) for inquiries. + """) + + +#-------------------------------------------------------------------------------------------------- + elif page_selection == "EDA": + st.title("Exploratory Data Analysis (EDA)") + + # Show basic statistics + st.header("Basic Statistics") + st.write("Total Number of Movies:", len(movies_df)) + st.write("Overall Average Rating:", movies_df['rating'].mean()) + + # Button to show ratings distribution + if st.button("Show Ratings Distribution"): + st.header("Ratings Distribution") + ratings_counts = movies_df['rating'].value_counts().sort_index() + fig, ax = plt.subplots(figsize=(6.4, 2)) + ax.bar(ratings_counts.index, ratings_counts.values) + ax.set_xlabel("Rating") + ax.set_ylabel("Number of Movies") + st.pyplot(fig) + + # Button to show top rated movies + #if st.button("Show Top Rated Movies"): + # st.header("Top Rated Movies") + # top_rated_movies = movies_df.groupby('title')['rating'].mean().sort_values(ascending=False).head(10) + # st.table(top_rated_movies.reset_index().rename(columns={'rating': 'Average Rating'})) + +# Button to show genres distribution + if st.button("Show Genres Distribution"): + st.header("Genres Distribution") + genres_counts = movies_df['genres'].str.split('|', expand=True).stack().value_counts() + fig, ax = plt.subplots(figsize=(6.4, 2)) + ax.bar(genres_counts.index, genres_counts.values) + ax.set_xticklabels(genres_counts.index, rotation=90) + ax.set_xlabel("Genre") + ax.set_ylabel("Number of Movies") + st.pyplot(fig) + + +# Button to show most common genres + if st.button("Show Most Common Genres"): + st.header("Most Common Genres") + most_common_genres = movies_df['genres'].str.split('|', expand=True).stack().value_counts().head(10) + st.table(most_common_genres.reset_index().rename(columns={'index': 'Genre', 0: 'Count'})) + + # Button to show movie count by year + #if st.button("Show Movie Count by Year"): + # st.header("Movie Count by Year") + # movie_count_by_year = movies_df['year'].value_counts().sort_index() + # fig, ax = plt.subplots() + # ax.plot(movie_count_by_year.index, movie_count_by_year.values) + # ax.set_xlabel("Year") + # ax.set_ylabel("Number of Movies") + #st.pyplot(fig) + + # User rating stats + st.header("User Rating Statistics") + user_rating_stats = movies_df['rating'].describe() + st.table(user_rating_stats) + + + # You can add other EDA visualizations and analysis here + + # ------------------------------------------------------------------- + + + + + +if __name__ == '__main__': + main() diff --git a/unsupervised-predict-streamlit-teames2/recommenders/__init__.py b/unsupervised-predict-streamlit-teames2/recommenders/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/unsupervised-predict-streamlit-teames2/recommenders/__pycache__/__init__.cpython-310.pyc b/unsupervised-predict-streamlit-teames2/recommenders/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 00000000..574856b0 Binary files /dev/null and b/unsupervised-predict-streamlit-teames2/recommenders/__pycache__/__init__.cpython-310.pyc differ diff --git a/unsupervised-predict-streamlit-teames2/recommenders/__pycache__/collaborative_based.cpython-310.pyc b/unsupervised-predict-streamlit-teames2/recommenders/__pycache__/collaborative_based.cpython-310.pyc new file mode 100644 index 00000000..7e60b1b4 Binary files /dev/null and b/unsupervised-predict-streamlit-teames2/recommenders/__pycache__/collaborative_based.cpython-310.pyc differ diff --git a/unsupervised-predict-streamlit-teames2/recommenders/__pycache__/content_based.cpython-310.pyc b/unsupervised-predict-streamlit-teames2/recommenders/__pycache__/content_based.cpython-310.pyc new file mode 100644 index 00000000..75d3e8fa Binary files /dev/null and b/unsupervised-predict-streamlit-teames2/recommenders/__pycache__/content_based.cpython-310.pyc differ diff --git a/unsupervised-predict-streamlit-teames2/recommenders/collaborative_based.py b/unsupervised-predict-streamlit-teames2/recommenders/collaborative_based.py new file mode 100644 index 00000000..f70d38ed --- /dev/null +++ b/unsupervised-predict-streamlit-teames2/recommenders/collaborative_based.py @@ -0,0 +1,170 @@ +""" + + Collaborative-based filtering for item recommendation. + + Author: Explore Data Science Academy. + + Note: + --------------------------------------------------------------------- + Please follow the instructions provided within the README.md file + located within the root of this repository for guidance on how to use + this script correctly. + + NB: You are required to extend this baseline algorithm to enable more + efficient and accurate computation of recommendations. + + !! You must not change the name and signature (arguments) of the + prediction function, `collab_model` !! + + You must however change its contents (i.e. add your own collaborative + filtering algorithm), as well as altering/adding any other functions + as part of your improvement. + + --------------------------------------------------------------------- + + Description: Provided within this file is a baseline collaborative + filtering algorithm for rating predictions on Movie data. + +""" + +# Script dependencies +import pandas as pd +import numpy as np +import pickle +import copy +from surprise import Reader, Dataset +from surprise import SVD, NormalPredictor, BaselineOnly, KNNBasic, NMF +from sklearn.metrics.pairwise import cosine_similarity +from sklearn.feature_extraction.text import CountVectorizer + +# Importing data +movies_df = pd.read_csv('resources/data/movies.csv',sep = ',') +ratings_df = pd.read_csv('resources/data/ratings.csv') +ratings_df.drop(['timestamp'], axis=1,inplace=True) + +# We make use of an SVD model trained on a subset of the MovieLens 10k dataset. +model=pickle.load(open('resources/models/SVD.pkl', 'rb')) + +def prediction_item(item_id): + """Map a given favourite movie to users within the + MovieLens dataset with the same preference. + + Parameters + ---------- + item_id : int + A MovieLens Movie ID. + + Returns + ------- + list + User IDs of users with similar high ratings for the given movie. + + """ + # Data preprosessing + reader = Reader(rating_scale=(0, 5)) + load_df = Dataset.load_from_df(ratings_df,reader) + a_train = load_df.build_full_trainset() + + predictions = [] + for ui in a_train.all_users(): + predictions.append(model.predict(iid=item_id,uid=ui, verbose = False)) + return predictions + +def pred_movies(movie_list): + """Maps the given favourite movies selected within the app to corresponding + users within the MovieLens dataset. + + Parameters + ---------- + movie_list : list + Three favourite movies selected by the app user. + + Returns + ------- + list + User-ID's of users with similar high ratings for each movie. + + """ + # Store the id of users + id_store=[] + # For each movie selected by a user of the app, + # predict a corresponding user within the dataset with the highest rating + for i in movie_list: + predictions = prediction_item(item_id = i) + predictions.sort(key=lambda x: x.est, reverse=True) + # Take the top 10 user id's from each movie with highest rankings + for pred in predictions[:10]: + id_store.append(pred.uid) + # Return a list of user id's + return id_store + +# !! DO NOT CHANGE THIS FUNCTION SIGNATURE !! +# You are, however, encouraged to change its content. +def collab_model(movie_list,top_n=10): + """Performs Collaborative filtering based upon a list of movies supplied + by the app user. + + Parameters + ---------- + movie_list : list (str) + Favorite movies chosen by the app user. + top_n : type + Number of top recommendations to return to the user. + + Returns + ------- + list (str) + Titles of the top-n movie recommendations to the user. + + + """ + + indices = pd.Series(movies_df['title']) + movie_ids = pred_movies(movie_list) + df_init_users = ratings_df[ratings_df['userId']==movie_ids[0]] + for i in movie_ids : + df_init_users = pd.concat([df_init_users,ratings_df[ratings_df['userId']==i]]) + # df_init_users=df_init_users.append(ratings_df[ratings_df['userId']==i]) + # Getting the cosine similarity matrix + cosine_sim = cosine_similarity(np.array(df_init_users), np.array(df_init_users)) + idx_1 = 1 + idx_2 = 2 + idx_3 = 3 + + try: + x = indices[indices == movie_list[0]].index[0] + idx_1 = df_init_users[df_init_users['movieId'] == x].index[0] + except IndexError: + pass + + try: + y = indices[indices == movie_list[1]].index[0] + idx_2 = df_init_users[df_init_users['movieId'] == y].index[0] + except IndexError: + pass + + try: + z = indices[indices == movie_list[2]].index[0] + idx_3 = df_init_users[df_init_users['movieId'] == z].index[0] + except IndexError: + pass + + + # Creating a Series with the similarity scores in descending order + rank_1 = cosine_sim[idx_1] + rank_2 = cosine_sim[idx_2] + rank_3 = cosine_sim[idx_3] + # Calculating the scores + score_series_1 = pd.Series(rank_1).sort_values(ascending = False) + score_series_2 = pd.Series(rank_2).sort_values(ascending = False) + score_series_3 = pd.Series(rank_3).sort_values(ascending = False) + # Appending the names of movies + listings = pd.concat([score_series_1,score_series_2,score_series_3]).sort_values(ascending = False) + recommended_movies = [] + # Choose top 50 + top_50_indexes = list(listings.iloc[1:50].index) + # Removing chosen movies + top_indexes = np.setdiff1d(top_50_indexes,[idx_1,idx_2,idx_3]) + for i in top_indexes[:top_n]: + recommended_movies.append(list(movies_df['title'])[i]) + return recommended_movies diff --git a/unsupervised-predict-streamlit-teames2/recommenders/content_based.py b/unsupervised-predict-streamlit-teames2/recommenders/content_based.py new file mode 100644 index 00000000..ed7df363 --- /dev/null +++ b/unsupervised-predict-streamlit-teames2/recommenders/content_based.py @@ -0,0 +1,112 @@ +""" + + Content-based filtering for item recommendation. + + Author: Explore Data Science Academy. + + Note: + --------------------------------------------------------------------- + Please follow the instructions provided within the README.md file + located within the root of this repository for guidance on how to use + this script correctly. + + NB: You are required to extend this baseline algorithm to enable more + efficient and accurate computation of recommendations. + + !! You must not change the name and signature (arguments) of the + prediction function, `content_model` !! + + You must however change its contents (i.e. add your own content-based + filtering algorithm), as well as altering/adding any other functions + as part of your improvement. + + --------------------------------------------------------------------- + + Description: Provided within this file is a baseline content-based + filtering algorithm for rating predictions on Movie data. + +""" + +# Script dependencies +import os +import pandas as pd +import numpy as np +from sklearn.metrics.pairwise import cosine_similarity +from sklearn.feature_extraction.text import CountVectorizer + +# Importing data +movies = pd.read_csv('resources/data/movies.csv', sep = ',') +ratings = pd.read_csv('resources/data/ratings.csv') +movies.dropna(inplace=True) + +def data_preprocessing(subset_size): + """Prepare data for use within Content filtering algorithm. + + Parameters + ---------- + subset_size : int + Number of movies to use within the algorithm. + + Returns + ------- + Pandas Dataframe + Subset of movies selected for content-based filtering. + + """ + # Split genre data into individual words. + movies['keyWords'] = movies['genres'].str.replace('|', ' ') + # Subset of the data + movies_subset = movies[:subset_size] + return movies_subset + +# !! DO NOT CHANGE THIS FUNCTION SIGNATURE !! +# You are, however, encouraged to change its content. +def content_model(movie_list,top_n=10): + """Performs Content filtering based upon a list of movies supplied + by the app user. + + Parameters + ---------- + movie_list : list (str) + Favorite movies chosen by the app user. + top_n : type + Number of top recommendations to return to the user. + + Returns + ------- + list (str) + Titles of the top-n movie recommendations to the user. + + """ + # Initializing the empty list of recommended movies + recommended_movies = [] + data = data_preprocessing(27000) + # Instantiating and generating the count matrix + count_vec = CountVectorizer() + count_matrix = count_vec.fit_transform(data['keyWords']) + indices = pd.Series(data['title']) + cosine_sim = cosine_similarity(count_matrix, count_matrix) + # Getting the index of the movie that matches the title + idx_1 = indices[indices == movie_list[0]].index[0] + idx_2 = indices[indices == movie_list[1]].index[0] + idx_3 = indices[indices == movie_list[2]].index[0] + # Creating a Series with the similarity scores in descending order + rank_1 = cosine_sim[idx_1] + rank_2 = cosine_sim[idx_2] + rank_3 = cosine_sim[idx_3] + # Calculating the scores + score_series_1 = pd.Series(rank_1).sort_values(ascending = False) + score_series_2 = pd.Series(rank_2).sort_values(ascending = False) + score_series_3 = pd.Series(rank_3).sort_values(ascending = False) + # Getting the indexes of the 10 most similar movies + listings = score_series_1.append(score_series_1).append(score_series_3).sort_values(ascending = False) + + # Store movie names + recommended_movies = [] + # Appending the names of movies + top_50_indexes = list(listings.iloc[1:50].index) + # Removing chosen movies + top_indexes = np.setdiff1d(top_50_indexes,[idx_1,idx_2,idx_3]) + for i in top_indexes[:top_n]: + recommended_movies.append(list(movies['title'])[i]) + return recommended_movies diff --git a/unsupervised-predict-streamlit-teames2/resources/data/movies.csv b/unsupervised-predict-streamlit-teames2/resources/data/movies.csv new file mode 100644 index 00000000..63f70970 --- /dev/null +++ b/unsupervised-predict-streamlit-teames2/resources/data/movies.csv @@ -0,0 +1,62424 @@ +movieId,title,genres +1,Toy Story (1995),Adventure|Animation|Children|Comedy|Fantasy +2,Jumanji (1995),Adventure|Children|Fantasy +3,Grumpier Old Men (1995),Comedy|Romance +4,Waiting to Exhale (1995),Comedy|Drama|Romance +5,Father of the Bride Part II (1995),Comedy +6,Heat (1995),Action|Crime|Thriller +7,Sabrina (1995),Comedy|Romance +8,Tom and Huck (1995),Adventure|Children +9,Sudden Death (1995),Action +10,GoldenEye (1995),Action|Adventure|Thriller +11,"American President, The (1995)",Comedy|Drama|Romance +12,Dracula: Dead and Loving It (1995),Comedy|Horror +13,Balto (1995),Adventure|Animation|Children +14,Nixon (1995),Drama +15,Cutthroat Island (1995),Action|Adventure|Romance +16,Casino (1995),Crime|Drama +17,Sense and Sensibility (1995),Drama|Romance +18,Four Rooms (1995),Comedy +19,Ace Ventura: When Nature Calls (1995),Comedy +20,Money Train (1995),Action|Comedy|Crime|Drama|Thriller +21,Get Shorty (1995),Comedy|Crime|Thriller +22,Copycat (1995),Crime|Drama|Horror|Mystery|Thriller +23,Assassins (1995),Action|Crime|Thriller +24,Powder (1995),Drama|Sci-Fi +25,Leaving Las Vegas (1995),Drama|Romance +26,Othello (1995),Drama +27,Now and Then (1995),Children|Drama +28,Persuasion (1995),Drama|Romance +29,"City of Lost Children, The (Cité des enfants perdus, La) (1995)",Adventure|Drama|Fantasy|Mystery|Sci-Fi +30,Shanghai Triad (Yao a yao yao dao waipo qiao) (1995),Crime|Drama +31,Dangerous Minds (1995),Drama +32,Twelve Monkeys (a.k.a. 12 Monkeys) (1995),Mystery|Sci-Fi|Thriller +33,Wings of Courage (1995),Adventure|Romance|IMAX +34,Babe (1995),Children|Drama +35,Carrington (1995),Drama|Romance +36,Dead Man Walking (1995),Crime|Drama +37,Across the Sea of Time (1995),Documentary|IMAX +38,It Takes Two (1995),Children|Comedy +39,Clueless (1995),Comedy|Romance +40,"Cry, the Beloved Country (1995)",Drama +41,Richard III (1995),Drama|War +42,Dead Presidents (1995),Action|Crime|Drama +43,Restoration (1995),Drama +44,Mortal Kombat (1995),Action|Adventure|Fantasy +45,To Die For (1995),Comedy|Drama|Thriller +46,How to Make an American Quilt (1995),Drama|Romance +47,Seven (a.k.a. Se7en) (1995),Mystery|Thriller +48,Pocahontas (1995),Animation|Children|Drama|Musical|Romance +49,When Night Is Falling (1995),Drama|Romance +50,"Usual Suspects, The (1995)",Crime|Mystery|Thriller +51,Guardian Angel (1994),Action|Drama|Thriller +52,Mighty Aphrodite (1995),Comedy|Drama|Romance +53,Lamerica (1994),Adventure|Drama +54,"Big Green, The (1995)",Children|Comedy +55,Georgia (1995),Drama +56,Kids of the Round Table (1995),Adventure|Children|Comedy|Fantasy +57,Home for the Holidays (1995),Drama +58,"Postman, The (Postino, Il) (1994)",Comedy|Drama|Romance +59,"Confessional, The (Confessionnal, Le) (1995)",Drama|Mystery +60,"Indian in the Cupboard, The (1995)",Adventure|Children|Fantasy +61,Eye for an Eye (1996),Drama|Thriller +62,Mr. Holland's Opus (1995),Drama +63,Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996),Comedy|Crime +64,Two if by Sea (1996),Comedy|Romance +65,Bio-Dome (1996),Comedy +66,Lawnmower Man 2: Beyond Cyberspace (1996),Action|Sci-Fi|Thriller +67,Two Bits (1995),Drama +68,French Twist (Gazon maudit) (1995),Comedy|Romance +69,Friday (1995),Comedy +70,From Dusk Till Dawn (1996),Action|Comedy|Horror|Thriller +71,Fair Game (1995),Action +72,Kicking and Screaming (1995),Comedy|Drama +73,"Misérables, Les (1995)",Drama|War +74,Bed of Roses (1996),Drama|Romance +75,Big Bully (1996),Comedy|Drama +76,Screamers (1995),Action|Sci-Fi|Thriller +77,Nico Icon (1995),Documentary +78,"Crossing Guard, The (1995)",Action|Crime|Drama|Thriller +79,"Juror, The (1996)",Drama|Thriller +80,"White Balloon, The (Badkonake sefid) (1995)",Children|Drama +81,Things to Do in Denver When You're Dead (1995),Crime|Drama|Romance +82,Antonia's Line (Antonia) (1995),Comedy|Drama +83,Once Upon a Time... When We Were Colored (1995),Drama|Romance +84,Last Summer in the Hamptons (1995),Comedy|Drama +85,Angels and Insects (1995),Drama|Romance +86,White Squall (1996),Action|Adventure|Drama +87,Dunston Checks In (1996),Children|Comedy +88,Black Sheep (1996),Comedy +89,Nick of Time (1995),Action|Thriller +90,The Journey of August King (1995),Drama +92,Mary Reilly (1996),Drama|Horror|Thriller +93,Vampire in Brooklyn (1995),Comedy|Horror|Romance +94,Beautiful Girls (1996),Comedy|Drama|Romance +95,Broken Arrow (1996),Action|Adventure|Thriller +96,In the Bleak Midwinter (1995),Comedy|Drama +97,"Hate (Haine, La) (1995)",Crime|Drama +98,Shopping (1994),Action|Thriller +99,Heidi Fleiss: Hollywood Madam (1995),Documentary +100,City Hall (1996),Drama|Thriller +101,Bottle Rocket (1996),Adventure|Comedy|Crime|Romance +102,Mr. Wrong (1996),Comedy +103,Unforgettable (1996),Mystery|Sci-Fi|Thriller +104,Happy Gilmore (1996),Comedy +105,"Bridges of Madison County, The (1995)",Drama|Romance +106,Nobody Loves Me (Keiner liebt mich) (1994),Comedy|Drama +107,Muppet Treasure Island (1996),Adventure|Children|Comedy|Musical +108,Catwalk (1996),Documentary +109,Headless Body in Topless Bar (1995),Comedy|Drama|Thriller +110,Braveheart (1995),Action|Drama|War +111,Taxi Driver (1976),Crime|Drama|Thriller +112,Rumble in the Bronx (Hont faan kui) (1995),Action|Adventure|Comedy|Crime +113,Before and After (1996),Drama|Mystery +114,Margaret's Museum (1995),Drama +115,"Happiness Is in the Field (Bonheur est dans le pré, Le) (1995)",Comedy +116,Anne Frank Remembered (1995),Documentary +117,"Young Poisoner's Handbook, The (1995)",Crime|Drama +118,If Lucy Fell (1996),Comedy|Romance +119,"Steal Big, Steal Little (1995)",Comedy +120,Race the Sun (1996),Adventure|Comedy|Drama +121,"Boys of St. Vincent, The (1992)",Drama +122,Boomerang (1992),Comedy|Romance +123,Chungking Express (Chung Hing sam lam) (1994),Drama|Mystery|Romance +124,"Star Maker, The (Uomo delle stelle, L') (1995)",Drama +125,Flirting With Disaster (1996),Comedy +126,"NeverEnding Story III, The (1994)",Adventure|Children|Fantasy +127,"Silences of the Palace, The (Saimt el Qusur) (1994)",Drama +128,Jupiter's Wife (1994),Documentary +129,Pie in the Sky (1996),Comedy|Romance +130,Angela (1995),Drama +131,Frankie Starlight (1995),Drama|Romance +132,Jade (1995),Thriller +133,Nueba Yol (1995),Comedy|Drama +134,Sonic Outlaws (1995),Documentary +135,Down Periscope (1996),Comedy +136,From the Journals of Jean Seberg (1995),Documentary +137,Man of the Year (1995),Documentary +138,"Neon Bible, The (1995)",Drama +139,Target (1995),Action|Drama +140,Up Close and Personal (1996),Drama|Romance +141,"Birdcage, The (1996)",Comedy +142,Shadows (Cienie) (1988),Drama +143,Gospa (1995),Drama +144,"Brothers McMullen, The (1995)",Comedy +145,Bad Boys (1995),Action|Comedy|Crime|Drama|Thriller +146,"Amazing Panda Adventure, The (1995)",Adventure|Children +147,"Basketball Diaries, The (1995)",Drama +148,"Awfully Big Adventure, An (1995)",Drama +149,Amateur (1994),Crime|Drama|Thriller +150,Apollo 13 (1995),Adventure|Drama|IMAX +151,Rob Roy (1995),Action|Drama|Romance|War +152,"Addiction, The (1995)",Drama|Horror +153,Batman Forever (1995),Action|Adventure|Comedy|Crime +154,Beauty of the Day (Belle de jour) (1967),Drama +155,Beyond Rangoon (1995),Adventure|Drama|War +156,Blue in the Face (1995),Comedy|Drama +157,Canadian Bacon (1995),Comedy|War +158,Casper (1995),Adventure|Children +159,Clockers (1995),Crime|Drama|Mystery +160,Congo (1995),Action|Adventure|Mystery|Sci-Fi +161,Crimson Tide (1995),Drama|Thriller|War +162,Crumb (1994),Documentary +163,Desperado (1995),Action|Romance|Western +164,Devil in a Blue Dress (1995),Crime|Film-Noir|Mystery|Thriller +165,Die Hard: With a Vengeance (1995),Action|Crime|Thriller +166,"Doom Generation, The (1995)",Comedy|Crime|Drama +167,Feast of July (1995),Drama +168,First Knight (1995),Action|Drama|Romance +169,Free Willy 2: The Adventure Home (1995),Adventure|Children|Drama +170,Hackers (1995),Action|Adventure|Crime|Thriller +171,Jeffrey (1995),Comedy|Drama +172,Johnny Mnemonic (1995),Action|Sci-Fi|Thriller +173,Judge Dredd (1995),Action|Crime|Sci-Fi +174,Jury Duty (1995),Comedy +175,Kids (1995),Drama +176,Living in Oblivion (1995),Comedy +177,Lord of Illusions (1995),Horror +178,Love & Human Remains (1993),Comedy|Drama +179,Mad Love (1995),Drama|Romance +180,Mallrats (1995),Comedy|Romance +181,Mighty Morphin Power Rangers: The Movie (1995),Action|Children +182,Moonlight and Valentino (1995),Drama|Romance +183,Mute Witness (1994),Comedy|Horror|Thriller +184,Nadja (1994),Drama +185,"Net, The (1995)",Action|Crime|Thriller +186,Nine Months (1995),Comedy|Romance +187,Party Girl (1995),Comedy +188,"Prophecy, The (1995)",Fantasy|Horror|Mystery +189,Reckless (1995),Comedy|Fantasy +190,Safe (1995),Thriller +191,"Scarlet Letter, The (1995)",Drama|Romance +192,The Show (1995),Documentary +193,Showgirls (1995),Drama +194,Smoke (1995),Comedy|Drama +195,Something to Talk About (1995),Comedy|Drama|Romance +196,Species (1995),Horror|Sci-Fi +197,"Stars Fell on Henrietta, The (1995)",Drama +198,Strange Days (1995),Action|Crime|Drama|Mystery|Sci-Fi|Thriller +199,"Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964)",Drama|Musical|Romance +200,"Tie That Binds, The (1995)",Thriller +201,Three Wishes (1995),Drama|Fantasy +202,Total Eclipse (1995),Drama|Romance +203,"To Wong Foo, Thanks for Everything! Julie Newmar (1995)",Comedy +204,Under Siege 2: Dark Territory (1995),Action +205,Unstrung Heroes (1995),Comedy|Drama +206,Unzipped (1995),Documentary +207,"Walk in the Clouds, A (1995)",Drama|Romance +208,Waterworld (1995),Action|Adventure|Sci-Fi +209,White Man's Burden (1995),Drama +210,Wild Bill (1995),Western +211,"Browning Version, The (1994)",Drama +212,Bushwhacked (1995),Adventure|Comedy|Crime|Mystery +213,Burnt by the Sun (Utomlyonnye solntsem) (1994),Drama +214,Before the Rain (Pred dozhdot) (1994),Drama|War +215,Before Sunrise (1995),Drama|Romance +216,Billy Madison (1995),Comedy +217,"Babysitter, The (1995)",Drama|Thriller +218,Boys on the Side (1995),Comedy|Drama +219,"Cure, The (1995)",Drama +220,Castle Freak (1995),Horror +222,Circle of Friends (1995),Drama|Romance +223,Clerks (1994),Comedy +224,Don Juan DeMarco (1995),Comedy|Drama|Romance +225,Disclosure (1994),Drama|Thriller +226,Dream Man (1995),Thriller +227,Drop Zone (1994),Action|Thriller +228,Destiny Turns on the Radio (1995),Comedy +229,Death and the Maiden (1994),Drama|Thriller +230,Dolores Claiborne (1995),Drama|Thriller +231,Dumb & Dumber (Dumb and Dumber) (1994),Adventure|Comedy +232,Eat Drink Man Woman (Yin shi nan nu) (1994),Comedy|Drama|Romance +233,Exotica (1994),Drama +234,Exit to Eden (1994),Comedy +235,Ed Wood (1994),Comedy|Drama +236,French Kiss (1995),Action|Comedy|Romance +237,Forget Paris (1995),Comedy|Romance +238,Far From Home: The Adventures of Yellow Dog (1995),Adventure|Children +239,"Goofy Movie, A (1995)",Animation|Children|Comedy|Romance +240,Hideaway (1995),Thriller +241,Fluke (1995),Children|Drama +242,Farinelli: il castrato (1994),Drama|Musical +243,Gordy (1995),Children|Comedy|Fantasy +244,Gumby: The Movie (1995),Animation|Children +245,The Glass Shield (1994),Crime|Drama +246,Hoop Dreams (1994),Documentary +247,Heavenly Creatures (1994),Crime|Drama +248,Houseguest (1994),Comedy +249,Immortal Beloved (1994),Drama|Romance +250,Heavyweights (Heavy Weights) (1995),Children|Comedy +251,"Hunted, The (1995)",Action +252,I.Q. (1994),Comedy|Romance +253,Interview with the Vampire: The Vampire Chronicles (1994),Drama|Horror +254,Jefferson in Paris (1995),Drama +255,"Jerky Boys, The (1995)",Comedy +256,Junior (1994),Comedy|Sci-Fi +257,Just Cause (1995),Mystery|Thriller +258,"Kid in King Arthur's Court, A (1995)",Adventure|Children|Comedy|Fantasy|Romance +259,Kiss of Death (1995),Crime|Drama|Thriller +260,Star Wars: Episode IV - A New Hope (1977),Action|Adventure|Sci-Fi +261,Little Women (1994),Drama +262,"Little Princess, A (1995)",Children|Drama +263,Ladybird Ladybird (1994),Drama +264,"Enfer, L' (1994)",Drama +265,Like Water for Chocolate (Como agua para chocolate) (1992),Drama|Fantasy|Romance +266,Legends of the Fall (1994),Drama|Romance|War|Western +267,Major Payne (1995),Comedy +268,Little Odessa (1994),Crime|Drama +269,My Crazy Life (Mi vida loca) (1993),Drama +270,Love Affair (1994),Drama|Romance +271,Losing Isaiah (1995),Drama +272,"Madness of King George, The (1994)",Comedy|Drama +273,Mary Shelley's Frankenstein (Frankenstein) (1994),Drama|Horror|Sci-Fi +274,Man of the House (1995),Comedy +275,Mixed Nuts (1994),Comedy +276,Milk Money (1994),Comedy|Romance +277,Miracle on 34th Street (1994),Drama +278,Miami Rhapsody (1995),Comedy +279,My Family (1995),Drama +280,Murder in the First (1995),Drama|Thriller +281,Nobody's Fool (1994),Comedy|Drama|Romance +282,Nell (1994),Drama +283,New Jersey Drive (1995),Crime|Drama +284,New York Cop (Nyû Yôku no koppu) (1993),Action|Crime +285,Beyond Bedlam (1993),Drama|Horror +286,Nemesis 2: Nebula (1995),Action|Sci-Fi|Thriller +287,Nina Takes a Lover (1994),Comedy|Romance +288,Natural Born Killers (1994),Action|Crime|Thriller +289,Only You (1994),Comedy|Romance +290,Once Were Warriors (1994),Crime|Drama +292,Outbreak (1995),Action|Drama|Sci-Fi|Thriller +293,Léon: The Professional (a.k.a. The Professional) (Léon) (1994),Action|Crime|Drama|Thriller +294,"Perez Family, The (1995)",Comedy|Romance +295,"Pyromaniac's Love Story, A (1995)",Comedy|Romance +296,Pulp Fiction (1994),Comedy|Crime|Drama|Thriller +297,Panther (1995),Drama +298,Pushing Hands (Tui shou) (1992),Drama +299,Priest (1994),Drama +300,Quiz Show (1994),Drama +301,Picture Bride (Bijo photo) (1994),Drama|Romance +302,"Queen Margot (Reine Margot, La) (1994)",Drama|Romance +303,"Quick and the Dead, The (1995)",Action|Thriller|Western +304,Roommates (1995),Comedy|Drama +305,Ready to Wear (Pret-A-Porter) (1994),Comedy +306,Three Colors: Red (Trois couleurs: Rouge) (1994),Drama +307,Three Colors: Blue (Trois couleurs: Bleu) (1993),Drama +308,Three Colors: White (Trzy kolory: Bialy) (1994),Comedy|Drama +309,"Red Firecracker, Green Firecracker (Pao Da Shuang Deng) (1994)",Drama +310,Rent-a-Kid (1995),Comedy +311,Relative Fear (1994),Horror|Thriller +312,Stuart Saves His Family (1995),Comedy +313,"Swan Princess, The (1994)",Animation|Children +314,"Secret of Roan Inish, The (1994)",Children|Drama|Fantasy|Mystery +315,"Specialist, The (1994)",Action|Drama|Thriller +316,Stargate (1994),Action|Adventure|Sci-Fi +317,"Santa Clause, The (1994)",Comedy|Drama|Fantasy +318,"Shawshank Redemption, The (1994)",Crime|Drama +319,Shallow Grave (1994),Comedy|Drama|Thriller +320,Suture (1993),Film-Noir|Thriller +321,Strawberry and Chocolate (Fresa y chocolate) (1993),Drama +322,Swimming with Sharks (1995),Comedy|Drama +324,"Sum of Us, The (1994)",Comedy|Drama +325,National Lampoon's Senior Trip (1995),Comedy +326,To Live (Huozhe) (1994),Drama +327,Tank Girl (1995),Action|Comedy|Sci-Fi +328,Tales from the Crypt Presents: Demon Knight (1995),Horror|Thriller +329,Star Trek: Generations (1994),Adventure|Drama|Sci-Fi +330,Tales from the Hood (1995),Action|Crime|Horror +331,Tom & Viv (1994),Drama +332,Village of the Damned (1995),Horror|Sci-Fi +333,Tommy Boy (1995),Comedy +334,Vanya on 42nd Street (1994),Drama +335,Underneath (1995),Mystery|Thriller +336,"Walking Dead, The (1995)",Drama|War +337,What's Eating Gilbert Grape (1993),Drama +338,Virtuosity (1995),Action|Sci-Fi|Thriller +339,While You Were Sleeping (1995),Comedy|Romance +340,"War, The (1994)",Adventure|Drama|War +341,Double Happiness (1994),Drama +342,Muriel's Wedding (1994),Comedy +343,"Baby-Sitters Club, The (1995)",Children +344,Ace Ventura: Pet Detective (1994),Comedy +345,"Adventures of Priscilla, Queen of the Desert, The (1994)",Comedy|Drama +346,Backbeat (1993),Drama|Musical +347,Bitter Moon (1992),Drama|Film-Noir|Romance +348,Bullets Over Broadway (1994),Comedy +349,Clear and Present Danger (1994),Action|Crime|Drama|Thriller +350,"Client, The (1994)",Drama|Mystery|Thriller +351,"Corrina, Corrina (1994)",Comedy|Drama|Romance +352,Crooklyn (1994),Comedy|Drama +353,"Crow, The (1994)",Action|Crime|Fantasy|Thriller +354,Cobb (1994),Drama +355,"Flintstones, The (1994)",Children|Comedy|Fantasy +356,Forrest Gump (1994),Comedy|Drama|Romance|War +357,Four Weddings and a Funeral (1994),Comedy|Romance +358,Higher Learning (1995),Drama +359,I Like It Like That (1994),Comedy|Drama|Romance +360,I Love Trouble (1994),Action|Comedy +361,It Could Happen to You (1994),Comedy|Drama|Romance +362,"Jungle Book, The (1994)",Adventure|Children|Romance +363,"Wonderful, Horrible Life of Leni Riefenstahl, The (Macht der Bilder: Leni Riefenstahl, Die) (1993)",Documentary +364,"Lion King, The (1994)",Adventure|Animation|Children|Drama|Musical|IMAX +365,Little Buddha (1993),Drama +366,"Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A) (1994)",Drama|Horror|Mystery|Thriller +367,"Mask, The (1994)",Action|Comedy|Crime|Fantasy +368,Maverick (1994),Adventure|Comedy|Western +369,Mrs. Parker and the Vicious Circle (1994),Drama +370,Naked Gun 33 1/3: The Final Insult (1994),Action|Comedy +371,"Paper, The (1994)",Comedy|Drama +372,Reality Bites (1994),Comedy|Drama|Romance +373,Red Rock West (1992),Thriller +374,Richie Rich (1994),Children|Comedy +375,Safe Passage (1994),Drama +376,"River Wild, The (1994)",Action|Thriller +377,Speed (1994),Action|Romance|Thriller +378,Speechless (1994),Comedy|Romance +379,Timecop (1994),Action|Sci-Fi|Thriller +380,True Lies (1994),Action|Adventure|Comedy|Romance|Thriller +381,When a Man Loves a Woman (1994),Drama|Romance +382,Wolf (1994),Drama|Horror|Romance|Thriller +383,Wyatt Earp (1994),Western +384,Bad Company (1995),Action|Crime|Drama +385,"Man of No Importance, A (1994)",Drama +386,S.F.W. (1994),Drama +387,"Low Down Dirty Shame, A (1994)",Action|Comedy +388,Boys Life (1995),Drama +389,"Colonel Chabert, Le (1994)",Drama|Romance|War +390,Faster Pussycat! Kill! Kill! (1965),Action|Crime|Drama +391,Jason's Lyric (1994),Crime|Drama +392,"Secret Adventures of Tom Thumb, The (1993)",Adventure|Animation +393,Street Fighter (1994),Action|Adventure|Fantasy +394,Coldblooded (1995),Comedy +395,Desert Winds (1995),Drama|Fantasy|Romance +396,Fall Time (1995),Drama +397,"Fear, The (1995)",Horror +398,Frank and Ollie (1995),Documentary +399,Girl in the Cadillac (1995),Drama +400,Homage (1995),Drama +401,Mirage (1995),Action|Thriller +402,Open Season (1996),Comedy +403,Two Crimes (Dos crímenes) (1995),Comedy|Crime|Drama +404,Brother Minister: The Assassination of Malcolm X (1994),Documentary +405,Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension) (1994),Action|Fantasy +406,Federal Hill (1994),Drama +407,In the Mouth of Madness (1995),Horror|Thriller +408,8 Seconds (1994),Drama +409,Above the Rim (1994),Crime|Drama +410,Addams Family Values (1993),Children|Comedy|Fantasy +411,Martin Lawrence: You So Crazy (1994),Comedy|Documentary +412,"Age of Innocence, The (1993)",Drama +413,Airheads (1994),Comedy +414,"Air Up There, The (1994)",Comedy +415,Another Stakeout (1993),Comedy|Thriller +416,Bad Girls (1994),Western +417,Barcelona (1994),Comedy|Romance +418,Being Human (1993),Drama +419,"Beverly Hillbillies, The (1993)",Comedy +420,Beverly Hills Cop III (1994),Action|Comedy|Crime|Thriller +421,Black Beauty (1994),Adventure|Children|Drama +422,Blink (1994),Thriller +423,Blown Away (1994),Action|Thriller +424,Blue Chips (1994),Drama +425,Blue Sky (1994),Drama|Romance +426,Body Snatchers (1993),Horror|Sci-Fi|Thriller +427,Boxing Helena (1993),Drama|Mystery|Romance|Thriller +428,"Bronx Tale, A (1993)",Drama +429,Cabin Boy (1994),Comedy +430,Calendar Girl (1993),Comedy|Drama +431,Carlito's Way (1993),Crime|Drama +432,City Slickers II: The Legend of Curly's Gold (1994),Adventure|Comedy|Western +433,Clean Slate (1994),Comedy +434,Cliffhanger (1993),Action|Adventure|Thriller +435,Coneheads (1993),Comedy|Sci-Fi +436,Color of Night (1994),Drama|Thriller +437,Cops and Robbersons (1994),Comedy +438,"Cowboy Way, The (1994)",Action|Comedy|Drama +439,Dangerous Game (1993),Drama +440,Dave (1993),Comedy|Romance +441,Dazed and Confused (1993),Comedy +442,Demolition Man (1993),Action|Adventure|Sci-Fi +443,"Endless Summer 2, The (1994)",Adventure|Documentary +444,Even Cowgirls Get the Blues (1993),Comedy|Romance +445,Fatal Instinct (1993),Comedy +446,Farewell My Concubine (Ba wang bie ji) (1993),Drama|Romance +447,"Favor, The (1994)",Comedy|Romance +448,Fearless (1993),Drama +449,Fear of a Black Hat (1994),Comedy +450,With Honors (1994),Comedy|Drama +451,Flesh and Bone (1993),Drama|Mystery|Romance +452,Widows' Peak (1994),Drama +453,For Love or Money (1993),Comedy|Romance +454,"Firm, The (1993)",Drama|Thriller +455,Free Willy (1993),Adventure|Children|Drama +456,Fresh (1994),Crime|Drama|Thriller +457,"Fugitive, The (1993)",Thriller +458,Geronimo: An American Legend (1993),Drama|Western +459,"Getaway, The (1994)",Action|Adventure|Crime|Drama|Romance|Thriller +460,Getting Even with Dad (1994),Comedy +461,Go Fish (1994),Drama|Romance +462,"Good Man in Africa, A (1994)",Action|Adventure +463,Guilty as Sin (1993),Crime|Drama|Thriller +464,Hard Target (1993),Action|Adventure|Crime|Thriller +465,Heaven & Earth (1993),Action|Drama|War +466,Hot Shots! Part Deux (1993),Action|Comedy|War +467,Live Nude Girls (1995),Comedy +468,"Englishman Who Went Up a Hill But Came Down a Mountain, The (1995)",Comedy|Romance +469,"House of the Spirits, The (1993)",Drama|Romance +470,House Party 3 (1994),Comedy +471,"Hudsucker Proxy, The (1994)",Comedy +472,I'll Do Anything (1994),Comedy|Drama +473,In the Army Now (1994),Comedy|War +474,In the Line of Fire (1993),Action|Thriller +475,In the Name of the Father (1993),Drama +476,"Inkwell, The (1994)",Comedy|Drama +477,What's Love Got to Do with It? (1993),Drama|Musical +478,Jimmy Hollywood (1994),Comedy|Crime|Drama +479,Judgment Night (1993),Action|Crime|Thriller +480,Jurassic Park (1993),Action|Adventure|Sci-Fi|Thriller +481,Kalifornia (1993),Drama|Thriller +482,Killing Zoe (1994),Crime|Drama|Thriller +483,King of the Hill (1993),Drama +484,Lassie (1994),Adventure|Children +485,Last Action Hero (1993),Action|Adventure|Comedy|Fantasy +486,Life with Mikey (1993),Comedy +487,Lightning Jack (1994),Comedy|Western +488,M. Butterfly (1993),Drama|Romance +489,Made in America (1993),Comedy +490,Malice (1993),Thriller +491,"Man Without a Face, The (1993)",Drama +492,Manhattan Murder Mystery (1993),Comedy|Mystery +493,Menace II Society (1993),Action|Crime|Drama +494,Executive Decision (1996),Action|Adventure|Thriller +495,In the Realm of the Senses (Ai no corrida) (1976),Drama +496,What Happened Was... (1994),Comedy|Drama|Romance|Thriller +497,Much Ado About Nothing (1993),Comedy|Romance +498,Mr. Jones (1993),Drama|Romance +499,Mr. Wonderful (1993),Comedy|Romance +500,Mrs. Doubtfire (1993),Comedy|Drama +501,Naked (1993),Drama +502,"Next Karate Kid, The (1994)",Action|Children|Romance +503,"New Age, The (1994)",Drama +504,No Escape (1994),Action|Drama|Sci-Fi +505,North (1994),Comedy +506,Orlando (1992),Drama|Fantasy|Romance +507,"Perfect World, A (1993)",Crime|Drama|Thriller +508,Philadelphia (1993),Drama +509,"Piano, The (1993)",Drama|Romance +510,Poetic Justice (1993),Drama +511,"Program, The (1993)",Action|Drama +512,"Puppet Masters, The (1994)",Horror|Sci-Fi +513,Radioland Murders (1994),Comedy|Mystery|Romance +514,"Ref, The (1994)",Comedy +515,"Remains of the Day, The (1993)",Drama|Romance +516,Renaissance Man (1994),Comedy|Drama +517,Rising Sun (1993),Action|Drama|Mystery +518,"Road to Wellville, The (1994)",Comedy +519,RoboCop 3 (1993),Action|Crime|Drama|Sci-Fi|Thriller +520,Robin Hood: Men in Tights (1993),Comedy +521,Romeo Is Bleeding (1993),Crime|Thriller +522,Romper Stomper (1992),Action|Drama +523,Ruby in Paradise (1993),Drama +524,Rudy (1993),Drama +525,"Saint of Fort Washington, The (1993)",Drama +526,"Savage Nights (Nuits fauves, Les) (1992)",Drama +527,Schindler's List (1993),Drama|War +528,"Scout, The (1994)",Comedy|Drama +529,Searching for Bobby Fischer (1993),Drama +530,Second Best (1994),Drama +531,"Secret Garden, The (1993)",Children|Drama +532,Serial Mom (1994),Comedy|Crime|Horror +533,"Shadow, The (1994)",Action|Adventure|Fantasy|Mystery +534,Shadowlands (1993),Drama|Romance +535,Short Cuts (1993),Drama +536,"Simple Twist of Fate, A (1994)",Drama +537,Sirens (1994),Drama +538,Six Degrees of Separation (1993),Drama +539,Sleepless in Seattle (1993),Comedy|Drama|Romance +540,Sliver (1993),Thriller +541,Blade Runner (1982),Action|Sci-Fi|Thriller +542,Son in Law (1993),Comedy|Drama|Romance +543,So I Married an Axe Murderer (1993),Comedy|Romance|Thriller +544,Striking Distance (1993),Action|Crime +546,Super Mario Bros. (1993),Action|Adventure|Children|Comedy|Fantasy|Sci-Fi +547,Surviving the Game (1994),Action|Adventure|Thriller +548,Terminal Velocity (1994),Action|Mystery|Thriller +549,Thirty-Two Short Films About Glenn Gould (1993),Drama|Musical +550,Threesome (1994),Comedy|Romance +551,"Nightmare Before Christmas, The (1993)",Animation|Children|Fantasy|Musical +552,"Three Musketeers, The (1993)",Action|Adventure|Comedy|Romance +553,Tombstone (1993),Action|Drama|Western +554,Trial by Jury (1994),Crime|Drama|Thriller +555,True Romance (1993),Crime|Thriller +556,"War Room, The (1993)",Documentary +558,"Pagemaster, The (1994)",Action|Adventure|Animation|Children|Fantasy +559,"Paris, France (1993)",Comedy +560,"Beans of Egypt, Maine, The (1994)",Drama +561,Killer (Bulletproof Heart) (1994),Drama|Thriller +562,Welcome to the Dollhouse (1995),Comedy|Drama +563,Germinal (1993),Drama|Romance +564,Chasers (1994),Comedy +565,Cronos (1993),Drama|Horror +566,Naked in New York (1994),Comedy|Romance +567,Kika (1993),Comedy|Drama +568,Bhaji on the Beach (1993),Comedy|Drama +569,Little Big League (1994),Comedy|Drama +570,"Slingshot, The (Kådisbellan) (1993)",Comedy|Drama +571,"Wedding Gift, The (1994)",Drama|Romance +572,Foreign Student (1994),Drama +573,"Ciao, Professore! (Io speriamo che me la cavo) (1992)",Drama +574,Spanking the Monkey (1994),Comedy|Drama +575,"Little Rascals, The (1994)",Children|Comedy +576,Fausto (1993),Comedy +577,Andre (1994),Adventure|Children|Drama +579,"Escort, The (Scorta, La) (1993)",Crime|Thriller +580,Princess Caraboo (1994),Drama +581,"Celluloid Closet, The (1995)",Documentary +582,Métisse (Café au Lait) (1993),Comedy|Drama +583,Dear Diary (Caro Diario) (1994),Comedy|Drama +584,I Don't Want to Talk About It (De eso no se habla) (1993),Drama|Romance +585,"Brady Bunch Movie, The (1995)",Comedy +586,Home Alone (1990),Children|Comedy +587,Ghost (1990),Comedy|Drama|Fantasy|Romance|Thriller +588,Aladdin (1992),Adventure|Animation|Children|Comedy|Musical +589,Terminator 2: Judgment Day (1991),Action|Sci-Fi +590,Dances with Wolves (1990),Adventure|Drama|Western +591,Tough and Deadly (1995),Action|Drama|Thriller +592,Batman (1989),Action|Crime|Thriller +593,"Silence of the Lambs, The (1991)",Crime|Horror|Thriller +594,Snow White and the Seven Dwarfs (1937),Animation|Children|Drama|Fantasy|Musical +595,Beauty and the Beast (1991),Animation|Children|Fantasy|Musical|Romance|IMAX +596,Pinocchio (1940),Animation|Children|Fantasy|Musical +597,Pretty Woman (1990),Comedy|Romance +598,Window to Paris (Okno v Parizh) (1994),Comedy|Fantasy +599,"Wild Bunch, The (1969)",Adventure|Western +600,Love and a .45 (1994),Action|Comedy|Crime +601,"Wooden Man's Bride, The (Yan shen) (1994)",Drama +602,"Great Day in Harlem, A (1994)",Documentary +603,"Bye Bye, Love (1995)",Comedy +604,Criminals (1996),Documentary +605,One Fine Day (1996),Drama|Romance +606,Candyman: Farewell to the Flesh (1995),Fantasy|Horror +607,Century (1993),Drama +608,Fargo (1996),Comedy|Crime|Drama|Thriller +609,Homeward Bound II: Lost in San Francisco (1996),Adventure|Children +610,Heavy Metal (1981),Action|Adventure|Animation|Horror|Sci-Fi +611,Hellraiser: Bloodline (1996),Action|Horror|Sci-Fi +612,"Pallbearer, The (1996)",Comedy +613,Jane Eyre (1996),Drama|Romance +614,Loaded (1994),Drama|Thriller +615,Bread and Chocolate (Pane e cioccolata) (1973),Comedy|Drama +616,"Aristocats, The (1970)",Animation|Children +617,"Flower of My Secret, The (La flor de mi secreto) (1995)",Comedy|Drama +618,Two Much (1995),Comedy|Romance +619,Ed (1996),Comedy +620,Scream of Stone (Cerro Torre: Schrei aus Stein) (1991),Drama +621,My Favorite Season (1993),Drama +623,"Modern Affair, A (1995)",Romance +625,Asfour Stah (1990),Drama +626,"Thin Line Between Love and Hate, A (1996)",Comedy +627,"Last Supper, The (1995)",Drama|Thriller +628,Primal Fear (1996),Crime|Drama|Mystery|Thriller +629,Rude (1995),Drama +630,Carried Away (1996),Drama|Romance +631,All Dogs Go to Heaven 2 (1996),Adventure|Animation|Children|Fantasy|Musical|Romance +632,Land and Freedom (Tierra y libertad) (1995),Drama|War +633,Denise Calls Up (1995),Comedy +634,Theodore Rex (1995),Comedy +635,"Family Thing, A (1996)",Comedy|Drama +636,Frisk (1995),Drama +637,Sgt. Bilko (1996),Comedy +638,Jack and Sarah (1995),Romance +639,Girl 6 (1996),Comedy|Drama +640,Diabolique (1996),Drama|Thriller +641,"Little Indian, Big City (Un indien dans la ville) (1994)",Adventure|Children|Comedy +642,Roula (1995),Drama +643,Peanuts - Die Bank zahlt alles (1996),Comedy +644,Happy Weekend (1996),Comedy +645,Nelly & Monsieur Arnaud (1995),Drama +647,Courage Under Fire (1996),Action|Crime|Drama|War +648,Mission: Impossible (1996),Action|Adventure|Mystery|Thriller +649,Cold Fever (Á köldum klaka) (1995),Comedy|Drama +650,Moll Flanders (1996),Drama +651,"Superweib, Das (1996)",Comedy +652,"301, 302 (301/302) (1995)",Horror|Mystery|Thriller +653,Dragonheart (1996),Action|Adventure|Fantasy +654,And Nobody Weeps for Me (Und keiner weint mir nach) (1996),Drama|Romance +655,My Mother's Courage (Mutters Courage) (1995),Comedy +656,Eddie (1996),Comedy +657,Yankee Zulu (1994),Comedy|Drama +658,Billy's Holiday (1995),Drama|Musical +659,Purple Noon (Plein soleil) (1960),Crime|Drama|Thriller +660,August (1996),Drama +661,James and the Giant Peach (1996),Adventure|Animation|Children|Fantasy|Musical +662,Fear (1996),Thriller +663,Kids in the Hall: Brain Candy (1996),Comedy +664,Faithful (1996),Comedy +665,Underground (1995),Comedy|Drama|War +666,All Things Fair (Lust och fägring stor) (1995),Drama|Romance|War +667,Bloodsport 2 (a.k.a. Bloodsport II: The Next Kumite) (1996),Action +668,Song of the Little Road (Pather Panchali) (1955),Drama +670,"World of Apu, The (Apur Sansar) (1959)",Drama +671,Mystery Science Theater 3000: The Movie (1996),Comedy|Sci-Fi +672,Tarantella (1995),Drama +673,Space Jam (1996),Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi +674,Barbarella (1968),Adventure|Comedy|Sci-Fi +675,Hostile Intentions (1994),Action|Drama|Thriller +676,They Bite (1996),Comedy|Horror|Sci-Fi +678,Some Folks Call It a Sling Blade (1993),Drama|Thriller +679,"Run of the Country, The (1995)",Drama +680,"Alphaville (Alphaville, une étrange aventure de Lemmy Caution) (1965)",Drama|Mystery|Romance|Sci-Fi|Thriller +681,Coup de torchon (Clean Slate) (1981),Crime +682,Tigrero: A Film That Was Never Made (1994),Documentary|Drama +683,"Eye of Vichy, The (Oeil de Vichy, L') (1993)",Documentary +684,Windows (1980),Drama +685,It's My Party (1996),Drama +687,Country Life (1994),Drama|Romance +688,Operation Dumbo Drop (1995),Action|Adventure|Comedy|War +690,"Promise, The (Versprechen, Das) (1995)",Drama|Romance +691,Mrs. Winterbourne (1996),Comedy|Romance +692,Solo (1996),Action|Sci-Fi|Thriller +693,Under the Domim Tree (Etz Hadomim Tafus) (1994),Drama +694,"Substitute, The (1996)",Action|Crime|Drama +695,True Crime (1996),Mystery|Thriller +696,Butterfly Kiss (1995),Drama|Thriller +697,Feeling Minnesota (1996),Drama|Romance +698,Delta of Venus (1995),Drama +699,To Cross the Rubicon (1991),Drama +700,Angus (1995),Comedy +701,Daens (1992),Drama +702,Faces (1968),Drama +703,Boys (1996),Drama +704,"Quest, The (1996)",Action|Adventure +705,Cosi (1996),Comedy +706,Sunset Park (1996),Drama +707,Mulholland Falls (1996),Crime|Drama|Thriller +708,"Truth About Cats & Dogs, The (1996)",Comedy|Romance +709,Oliver & Company (1988),Adventure|Animation|Children|Comedy|Musical +710,Celtic Pride (1996),Comedy +711,Flipper (1996),Adventure|Children +712,Captives (1994),Crime|Drama|Romance|Thriller +713,Of Love and Shadows (1994),Drama +714,Dead Man (1995),Drama|Mystery|Western +715,"Horseman on the Roof, The (Hussard sur le toit, Le) (1995)",Drama|Romance +716,Switchblade Sisters (1975),Crime +717,Mouth to Mouth (Boca a boca) (1995),Comedy +718,"Visitors, The (Visiteurs, Les) (1993)",Comedy|Fantasy|Sci-Fi +719,Multiplicity (1996),Comedy +720,Wallace & Gromit: The Best of Aardman Animation (1996),Adventure|Animation|Comedy +721,Halfmoon (Paul Bowles - Halbmond) (1995),Drama +722,"Haunted World of Edward D. Wood Jr., The (1996)",Documentary +723,Two Friends (1986),Drama +724,"Craft, The (1996)",Drama|Fantasy|Horror|Thriller +725,"Great White Hype, The (1996)",Comedy +726,Last Dance (1996),Drama +727,War Stories (1995),Documentary +728,Cold Comfort Farm (1995),Comedy +729,"Institute Benjamenta, or This Dream People Call Human Life (1995)",Drama +730,Low Life (1994),Drama +731,Heaven's Prisoners (1996),Crime|Thriller +732,Original Gangstas (1996),Crime +733,"Rock, The (1996)",Action|Adventure|Thriller +734,Getting Away With Murder (1996),Comedy +735,Cemetery Man (Dellamorte Dellamore) (1994),Horror +736,Twister (1996),Action|Adventure|Romance|Thriller +737,Barb Wire (1996),Action|Sci-Fi +738,"Garçu, Le (1995)",Drama +739,Honey Moon (Honigmond) (1996),Comedy +741,Ghost in the Shell (Kôkaku kidôtai) (1995),Animation|Sci-Fi +742,Thinner (1996),Horror|Thriller +743,Spy Hard (1996),Comedy +744,Brothers in Trouble (1995),Drama +745,Wallace & Gromit: A Close Shave (1995),Animation|Children|Comedy +746,Force of Evil (1948),Film-Noir +747,"Stupids, The (1996)",Comedy +748,"Arrival, The (1996)",Action|Sci-Fi|Thriller +749,"Man from Down Under, The (1943)",Drama +750,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964),Comedy|War +751,Careful (1992),Comedy|Horror +752,Vermont Is For Lovers (1992),Comedy|Documentary|Romance +753,"Month by the Lake, A (1995)",Comedy|Drama|Romance +754,Gold Diggers: The Secret of Bear Mountain (1995),Adventure|Children +755,Kim (1950),Children|Drama +756,Carmen Miranda: Bananas Is My Business (1994),Documentary +757,Ashes of Time (Dung che sai duk) (1994),Drama +758,"Jar, The (Khomreh) (1992)",Drama +759,Maya Lin: A Strong Clear Vision (1994),Documentary +760,Stalingrad (1993),Drama|War +761,"Phantom, The (1996)",Action|Adventure +762,Striptease (1996),Comedy|Crime +763,"Last of the High Kings, The (a.k.a. Summer Fling) (1996)",Comedy|Drama +764,Heavy (1995),Drama|Romance +765,Jack (1996),Comedy|Drama +766,I Shot Andy Warhol (1996),Drama +767,"Grass Harp, The (1995)",Comedy|Drama +768,Someone Else's America (1995),Drama +769,Marlene Dietrich: Shadow and Light (1996),Documentary +770,Costa Brava (1946),Drama +771,"Life Is Rosy (a.k.a. Life Is Beautiful) (Vie est belle, La) (1987)",Comedy|Drama +772,Quartier Mozart (1992),Comedy +773,Touki Bouki (1973),Drama +774,Wend Kuuni (a.k.a. God's Gift) (1982),Drama +775,Spirits of the Dead (1968),Horror|Mystery +776,Babyfever (1994),Comedy|Drama +777,Pharaoh's Army (1995),War +778,Trainspotting (1996),Comedy|Crime|Drama +779,'Til There Was You (1997),Drama|Romance +780,Independence Day (a.k.a. ID4) (1996),Action|Adventure|Sci-Fi|Thriller +781,Stealing Beauty (1996),Drama +782,"Fan, The (1996)",Drama|Thriller +783,"Hunchback of Notre Dame, The (1996)",Animation|Children|Drama|Musical|Romance +784,"Cable Guy, The (1996)",Comedy|Thriller +785,Kingpin (1996),Comedy +786,Eraser (1996),Action|Drama|Thriller +787,"Gate of Heavenly Peace, The (1995)",Documentary +788,"Nutty Professor, The (1996)",Comedy|Fantasy|Romance|Sci-Fi +789,"I, the Worst of All (Yo, la peor de todas) (1990)",Drama +790,"Unforgettable Summer, An (Un été inoubliable) (1994)",Drama +791,"Last Klezmer: Leopold Kozlowski, His Life and Music, The (1994)",Documentary +792,"Hungarian Fairy Tale, A (Hol volt, hol nem volt) (1987)",Fantasy +793,My Life and Times With Antonin Artaud (En compagnie d'Antonin Artaud) (1993),Drama +794,Midnight Dancers (Sibak) (1994),Comedy|Drama +795,Somebody to Love (1994),Drama +796,"Very Natural Thing, A (1974)",Drama +797,"Old Lady Who Walked in the Sea, The (Vieille qui marchait dans la mer, La) (1991)",Comedy +798,Daylight (1996),Action|Adventure|Drama|Thriller +799,"Frighteners, The (1996)",Comedy|Horror|Thriller +800,Lone Star (1996),Drama|Mystery|Western +801,Harriet the Spy (1996),Children|Comedy +802,Phenomenon (1996),Drama|Romance +803,Walking and Talking (1996),Comedy|Drama|Romance +804,She's the One (1996),Comedy|Romance +805,"Time to Kill, A (1996)",Drama|Thriller +806,American Buffalo (1996),Crime|Drama +807,"Rendezvous in Paris (Rendez-vous de Paris, Les) (1995)",Comedy|Romance +808,Alaska (1996),Adventure|Children +809,Fled (1996),Action|Adventure +810,Kazaam (1996),Children|Comedy|Fantasy +812,Magic Hunter (Büvös vadász) (1994),Drama +813,Larger Than Life (1996),Comedy +814,"Boy Called Hate, A (1995)",Drama +815,Power 98 (1996),Action|Mystery|Thriller +816,Two Deaths (1995),Drama +818,"Very Brady Sequel, A (1996)",Comedy +819,Stefano Quantestorie (1993),Comedy|Drama +820,"Death in the Garden (Mort en ce jardin, La) (1956)",Drama +821,"Crude Oasis, The (1995)",Drama|Romance +822,Hedd Wyn (1992),Drama|Romance|War +823,"Collector, The (La collectionneuse) (1967)",Drama +824,Kaspar Hauser (1993),Drama|Mystery +825,Regular Guys (Echte Kerle) (1996),Comedy|Romance +826,Women Robbers (Diebinnen) (1995),Drama +827,"Convent, The (O Convento) (1995)",Drama +828,"Adventures of Pinocchio, The (1996)",Adventure|Children +829,Joe's Apartment (1996),Comedy|Fantasy|Musical +830,"First Wives Club, The (1996)",Comedy +831,Stonewall (1995),Drama +832,Ransom (1996),Crime|Thriller +833,High School High (1996),Comedy +834,Phat Beach (1996),Comedy +835,Foxfire (1996),Drama +836,Chain Reaction (1996),Action|Adventure|Thriller +837,Matilda (1996),Children|Comedy|Fantasy +838,Emma (1996),Comedy|Drama|Romance +839,"Crow: City of Angels, The (1996)",Action|Thriller +840,House Arrest (1996),Children|Comedy +841,"Eyes Without a Face (Yeux sans visage, Les) (1959)",Horror +842,Tales from the Crypt Presents: Bordello of Blood (1996),Comedy|Horror +843,Lotto Land (1995),Drama +844,"Story of Xinghua, The (Xinghua san yue tian) (1994)",Drama +845,"Day the Sun Turned Cold, The (Tianguo niezi) (1994)",Drama +846,Flirt (1995),Drama +847,"Big Squeeze, The (1996)",Comedy|Drama +848,"Spitfire Grill, The (1996)",Drama +849,Escape from L.A. (1996),Action|Adventure|Sci-Fi|Thriller +850,Cyclo (Xich lo) (1995),Crime|Drama +851,Basquiat (1996),Drama +852,Tin Cup (1996),Comedy|Drama|Romance +853,Dingo (1991),Drama +854,"Ballad of Narayama, The (Narayama Bushiko) (1958)",Drama +855,Every Other Weekend (Un week-end sur deux) (1990),Drama +856,Mille bolle blu (1993),Comedy +857,Crows and Sparrows (Wuya yu maque) (1949),Drama +858,"Godfather, The (1972)",Crime|Drama +859,"Hippie Revolution, The (1996)",Documentary +860,"Maybe, Maybe Not (Bewegte Mann, Der) (1994)",Comedy +861,Supercop (Police Story 3: Supercop) (Jing cha gu shi III: Chao ji jing cha) (1992),Action|Comedy|Crime|Thriller +862,Manny & Lo (1996),Drama +864,"Wife, The (1995)",Comedy|Drama +865,Small Faces (1996),Drama +866,Bound (1996),Crime|Drama|Romance|Thriller +867,Carpool (1996),Comedy|Crime +868,Death in Brunswick (1991),Comedy +869,Kansas City (1996),Crime|Drama|Musical|Thriller +870,Gone Fishin' (1997),Comedy +871,Lover's Knot (1996),Comedy +872,Vive L'Amour (Ai qing wan sui) (1994),Drama +873,Shadow of Angels (Schatten der Engel) (1976),Drama +874,Killer: A Journal of Murder (1995),Crime|Drama +875,Nothing to Lose (1994),Action|Crime|Drama +876,Supercop 2 (Project S) (Chao ji ji hua) (1993),Action|Comedy|Crime|Thriller +877,Girls Town (1996),Comedy|Drama +878,Bye-Bye (1995),Drama +879,"Relic, The (1997)",Horror|Thriller +880,"Island of Dr. Moreau, The (1996)",Sci-Fi|Thriller +881,First Kid (1996),Children|Comedy +882,"Trigger Effect, The (1996)",Drama|Thriller +884,Sweet Nothing (1996),Drama +885,Bogus (1996),Children|Drama|Fantasy +886,Bulletproof (1996),Action|Comedy|Crime +887,Talk of Angels (1998),Drama +889,1-900 (06) (1994),Drama|Romance +890,Baton Rouge (Bâton rouge) (1988),Thriller +891,Halloween: The Curse of Michael Myers (Halloween 6: The Curse of Michael Myers) (1995),Horror|Thriller +892,Twelfth Night (1996),Comedy|Drama|Romance +893,Mother Night (1996),Drama +894,Liebelei (1933),Romance +895,Venice/Venice (1992),Drama +896,Wild Reeds (Les roseaux sauvages) (1994),Drama +897,For Whom the Bell Tolls (1943),Adventure|Drama|Romance|War +898,"Philadelphia Story, The (1940)",Comedy|Drama|Romance +899,Singin' in the Rain (1952),Comedy|Musical|Romance +900,"American in Paris, An (1951)",Musical|Romance +901,Funny Face (1957),Comedy|Musical +902,Breakfast at Tiffany's (1961),Drama|Romance +903,Vertigo (1958),Drama|Mystery|Romance|Thriller +904,Rear Window (1954),Mystery|Thriller +905,It Happened One Night (1934),Comedy|Romance +906,Gaslight (1944),Drama|Thriller +907,"Gay Divorcee, The (1934)",Comedy|Musical|Romance +908,North by Northwest (1959),Action|Adventure|Mystery|Romance|Thriller +909,"Apartment, The (1960)",Comedy|Drama|Romance +910,Some Like It Hot (1959),Comedy|Crime +911,Charade (1963),Comedy|Crime|Mystery|Romance|Thriller +912,Casablanca (1942),Drama|Romance +913,"Maltese Falcon, The (1941)",Film-Noir|Mystery +914,My Fair Lady (1964),Comedy|Drama|Musical|Romance +915,Sabrina (1954),Comedy|Romance +916,Roman Holiday (1953),Comedy|Drama|Romance +917,"Little Princess, The (1939)",Children|Drama +918,Meet Me in St. Louis (1944),Musical +919,"Wizard of Oz, The (1939)",Adventure|Children|Fantasy|Musical +920,Gone with the Wind (1939),Drama|Romance|War +921,My Favorite Year (1982),Comedy +922,Sunset Blvd. (a.k.a. Sunset Boulevard) (1950),Drama|Film-Noir|Romance +923,Citizen Kane (1941),Drama|Mystery +924,2001: A Space Odyssey (1968),Adventure|Drama|Sci-Fi +925,Golden Earrings (1947),Adventure|Romance|War +926,All About Eve (1950),Drama +927,"Women, The (1939)",Comedy +928,Rebecca (1940),Drama|Mystery|Romance|Thriller +929,Foreign Correspondent (1940),Drama|Film-Noir|Mystery|Thriller +930,Notorious (1946),Film-Noir|Romance|Thriller +931,Spellbound (1945),Mystery|Romance|Thriller +932,"Affair to Remember, An (1957)",Drama|Romance +933,To Catch a Thief (1955),Crime|Mystery|Romance|Thriller +934,Father of the Bride (1950),Comedy +935,"Band Wagon, The (1953)",Comedy|Musical +936,Ninotchka (1939),Comedy|Romance +937,Love in the Afternoon (1957),Comedy|Romance +938,Gigi (1958),Musical +939,"Reluctant Debutante, The (1958)",Comedy|Drama +940,"Adventures of Robin Hood, The (1938)",Action|Adventure|Romance +941,"Mark of Zorro, The (1940)",Adventure +942,Laura (1944),Crime|Film-Noir|Mystery +943,"Ghost and Mrs. Muir, The (1947)",Drama|Fantasy|Romance +944,Lost Horizon (1937),Drama +945,Top Hat (1935),Comedy|Musical|Romance +946,To Be or Not to Be (1942),Comedy|Drama|War +947,My Man Godfrey (1936),Comedy|Romance +948,Giant (1956),Drama|Romance|Western +949,East of Eden (1955),Drama +950,"Thin Man, The (1934)",Comedy|Crime +951,His Girl Friday (1940),Comedy|Romance +952,Around the World in 80 Days (1956),Adventure|Comedy +953,It's a Wonderful Life (1946),Children|Drama|Fantasy|Romance +954,Mr. Smith Goes to Washington (1939),Drama +955,Bringing Up Baby (1938),Comedy|Romance +956,Penny Serenade (1941),Drama|Romance +957,"Scarlet Letter, The (1926)",Drama +958,Lady of Burlesque (1943),Comedy|Mystery +959,Of Human Bondage (1934),Drama +960,Angel on My Shoulder (1946),Crime|Drama +961,Little Lord Fauntleroy (1936),Drama +962,They Made Me a Criminal (1939),Crime|Drama +963,"Inspector General, The (1949)",Musical +964,Angel and the Badman (1947),Romance|Western +965,"39 Steps, The (1935)",Drama|Mystery|Thriller +966,A Walk in the Sun (1945),Drama|War +967,"Outlaw, The (1943)",Western +968,Night of the Living Dead (1968),Horror|Sci-Fi|Thriller +969,"African Queen, The (1951)",Adventure|Comedy|Romance|War +970,Beat the Devil (1953),Adventure|Comedy|Crime|Drama|Romance +971,Cat on a Hot Tin Roof (1958),Drama +972,"Last Time I Saw Paris, The (1954)",Drama +973,Meet John Doe (1941),Comedy|Drama +974,Algiers (1938),Drama|Romance +975,Something to Sing About (1937),Comedy|Musical +976,"Farewell to Arms, A (1932)",Romance|War +977,Moonlight Murder (1936),Mystery +979,Nothing Personal (1995),Drama|War +980,"Yes, Madam (a.k.a. Police Assassins) (a.k.a. In the Line of Duty 2) (Huang gu shi jie) (1985)",Action +981,Dangerous Ground (1997),Drama +982,Picnic (1955),Drama +983,Madagascar Skin (1995),Romance +984,"Pompatus of Love, The (1996)",Comedy|Drama +985,Small Wonders (1995),Documentary +986,Fly Away Home (1996),Adventure|Children +987,Bliss (1997),Drama|Romance +988,Grace of My Heart (1996),Comedy|Drama +989,Brother of Sleep (Schlafes Bruder) (1995),Drama +990,Maximum Risk (1996),Action|Adventure|Thriller +991,Michael Collins (1996),Drama +992,"Rich Man's Wife, The (1996)",Thriller +993,Infinity (1996),Drama +994,Big Night (1996),Comedy|Drama +996,Last Man Standing (1996),Action|Crime|Drama|Thriller +997,Caught (1996),Drama|Thriller +998,Set It Off (1996),Action|Crime +999,2 Days in the Valley (1996),Crime|Film-Noir +1000,Curdled (1996),Crime +1001,"Associate, The (Associé, L') (1979)",Comedy +1002,Ed's Next Move (1996),Comedy|Romance +1003,Extreme Measures (1996),Drama|Thriller +1004,"Glimmer Man, The (1996)",Action|Thriller +1005,D3: The Mighty Ducks (1996),Children|Comedy +1006,"Chamber, The (1996)",Drama +1007,"Apple Dumpling Gang, The (1975)",Children|Comedy|Western +1008,"Davy Crockett, King of the Wild Frontier (1955)",Adventure|Western +1009,Escape to Witch Mountain (1975),Adventure|Children|Fantasy +1010,"Love Bug, The (1969)",Children|Comedy +1011,Herbie Rides Again (1974),Children|Comedy|Fantasy|Romance +1012,Old Yeller (1957),Children|Drama +1013,"Parent Trap, The (1961)",Children|Comedy|Romance +1014,Pollyanna (1960),Children|Comedy|Drama +1015,Homeward Bound: The Incredible Journey (1993),Adventure|Children|Drama +1016,"Shaggy Dog, The (1959)",Children|Comedy +1017,Swiss Family Robinson (1960),Adventure|Children +1018,That Darn Cat! (1965),Children|Comedy|Mystery +1019,"20,000 Leagues Under the Sea (1954)",Adventure|Drama|Sci-Fi +1020,Cool Runnings (1993),Comedy +1021,Angels in the Outfield (1994),Children|Comedy +1022,Cinderella (1950),Animation|Children|Fantasy|Musical|Romance +1023,Winnie the Pooh and the Blustery Day (1968),Animation|Children|Musical +1024,"Three Caballeros, The (1945)",Animation|Children|Musical +1025,"Sword in the Stone, The (1963)",Animation|Children|Fantasy|Musical +1026,So Dear to My Heart (1949),Children|Drama +1027,Robin Hood: Prince of Thieves (1991),Adventure|Drama +1028,Mary Poppins (1964),Children|Comedy|Fantasy|Musical +1029,Dumbo (1941),Animation|Children|Drama|Musical +1030,Pete's Dragon (1977),Adventure|Animation|Children|Musical +1031,Bedknobs and Broomsticks (1971),Adventure|Children|Musical +1032,Alice in Wonderland (1951),Adventure|Animation|Children|Fantasy|Musical +1033,"Fox and the Hound, The (1981)",Animation|Children|Drama +1034,Freeway (1996),Comedy|Crime|Drama|Thriller +1035,"Sound of Music, The (1965)",Musical|Romance +1036,Die Hard (1988),Action|Crime|Thriller +1037,"Lawnmower Man, The (1992)",Action|Horror|Sci-Fi|Thriller +1038,Unhook the Stars (1996),Drama +1039,Synthetic Pleasures (1995),Documentary +1040,"Secret Agent, The (1996)",Drama +1041,Secrets & Lies (1996),Drama +1042,That Thing You Do! (1996),Comedy|Drama +1043,To Gillian on Her 37th Birthday (1996),Drama|Romance +1044,Surviving Picasso (1996),Drama +1045,Love Is All There Is (1996),Comedy|Drama +1046,Beautiful Thing (1996),Drama|Romance +1047,"Long Kiss Goodnight, The (1996)",Action|Drama|Thriller +1049,"Ghost and the Darkness, The (1996)",Action|Adventure +1050,Looking for Richard (1996),Documentary|Drama +1051,Trees Lounge (1996),Drama +1052,"Proprietor, The (1996)",Drama +1053,Normal Life (1996),Crime|Drama|Romance +1054,Get on the Bus (1996),Drama +1055,Shadow Conspiracy (1997),Thriller +1056,Jude (1996),Drama +1057,Everyone Says I Love You (1996),Comedy|Musical|Romance +1058,Bitter Sugar (Azúcar amarga) (1996),Drama +1059,William Shakespeare's Romeo + Juliet (1996),Drama|Romance +1060,Swingers (1996),Comedy|Drama +1061,Sleepers (1996),Thriller +1062,"Sunchaser, The (1996)",Drama +1063,Johns (1996),Drama +1065,Five Angles on Murder (1950),Mystery +1066,Shall We Dance (1937),Comedy|Musical|Romance +1067,"Damsel in Distress, A (1937)",Comedy|Musical|Romance +1068,Crossfire (1947),Crime|Film-Noir +1069,"Murder, My Sweet (1944)",Crime|Film-Noir|Thriller +1070,Macao (1952),Adventure +1071,For the Moment (1994),Romance|War +1073,Willy Wonka & the Chocolate Factory (1971),Children|Comedy|Fantasy|Musical +1075,"Sexual Life of the Belgians, The (Vie sexuelle des Belges 1950-1978, La) (1994)",Comedy|Romance +1076,"Innocents, The (1961)",Drama|Horror|Thriller +1077,Sleeper (1973),Comedy|Sci-Fi +1078,Bananas (1971),Comedy|War +1079,"Fish Called Wanda, A (1988)",Comedy|Crime +1080,Monty Python's Life of Brian (1979),Comedy +1081,Victor/Victoria (1982),Comedy|Musical|Romance +1082,"Candidate, The (1972)",Drama +1083,"Great Race, The (1965)",Comedy|Musical +1084,Bonnie and Clyde (1967),Crime|Drama +1085,"Old Man and the Sea, The (1958)",Adventure|Drama +1086,Dial M for Murder (1954),Crime|Mystery|Thriller +1087,Madame Butterfly (1995),Musical +1088,Dirty Dancing (1987),Drama|Musical|Romance +1089,Reservoir Dogs (1992),Crime|Mystery|Thriller +1090,Platoon (1986),Drama|War +1091,Weekend at Bernie's (1989),Comedy +1092,Basic Instinct (1992),Crime|Mystery|Thriller +1093,"Doors, The (1991)",Drama +1094,"Crying Game, The (1992)",Drama|Romance|Thriller +1095,Glengarry Glen Ross (1992),Drama +1096,Sophie's Choice (1982),Drama +1097,E.T. the Extra-Terrestrial (1982),Children|Drama|Sci-Fi +1098,"Search for One-eye Jimmy, The (1996)",Comedy +1099,"Christmas Carol, A (1938)",Children|Drama|Fantasy +1100,Days of Thunder (1990),Action|Drama|Romance +1101,Top Gun (1986),Action|Romance +1102,American Strays (1996),Action +1103,Rebel Without a Cause (1955),Drama +1104,"Streetcar Named Desire, A (1951)",Drama +1105,Children of the Corn IV: The Gathering (1996),Horror +1106,"Leopard Son, The (1996)",Documentary +1107,Loser (1991),Comedy +1109,Charm's Incidents (Charms Zwischenfälle) (1996),Drama +1110,Bird of Prey (1996),Action +1111,Microcosmos (Microcosmos: Le peuple de l'herbe) (1996),Documentary +1112,Palookaville (1996),Action|Comedy|Drama +1113,"Associate, The (1996)",Comedy +1114,"Funeral, The (1996)",Crime|Drama +1115,Sleepover (1995),Drama +1116,"Single Girl, A (Fille seule, La) (1995)",Drama +1117,"Eighth Day, The (Huitième jour, Le) (1996)",Drama +1118,North Star (a.k.a. Tashunga) (1995),Action|Adventure|Crime|Drama|Western +1119,Drunks (1995),Drama +1120,"People vs. Larry Flynt, The (1996)",Comedy|Drama +1121,Glory Daze (1995),Drama +1122,Plutonium Circus (1995),Documentary +1123,"Perfect Candidate, A (1996)",Documentary +1124,On Golden Pond (1981),Drama +1125,"Return of the Pink Panther, The (1975)",Comedy|Crime +1126,Drop Dead Fred (1991),Comedy|Fantasy +1127,"Abyss, The (1989)",Action|Adventure|Sci-Fi|Thriller +1128,"Fog, The (1980)",Horror +1129,Escape from New York (1981),Action|Adventure|Sci-Fi|Thriller +1130,"Howling, The (1980)",Horror|Mystery +1131,Jean de Florette (1986),Drama|Mystery +1132,Manon of the Spring (Manon des sources) (1986),Drama +1133,Talking About Sex (1994),Comedy|Drama +1134,Johnny 100 Pesos (Johnny cien pesos) (1993),Action|Drama +1135,Private Benjamin (1980),Comedy +1136,Monty Python and the Holy Grail (1975),Adventure|Comedy|Fantasy +1137,Hustler White (1996),Romance +1138,Dadetown (1995),Drama +1139,Everything Relative (1996),Drama +1140,Entertaining Angels: The Dorothy Day Story (1996),Drama +1141,Last Call (Hoogste tijd) (1995),Drama +1142,Get Over It (1996),Drama +1143,Three Lives and Only One Death (Trois vies & une seule mort) (1996),Comedy +1144,"Line King: The Al Hirschfeld Story, The (1996)",Documentary +1145,Snowriders (1996),Documentary +1146,Curtis's Charm (1995),Comedy|Drama +1147,When We Were Kings (1996),Documentary +1148,Wallace & Gromit: The Wrong Trousers (1993),Animation|Children|Comedy|Crime +1149,JLG/JLG (JLG/JLG - autoportrait de décembre) (1994),Documentary|Drama +1150,"Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)",Drama +1151,Lesson Faust (1994),Animation|Comedy|Drama|Fantasy +1152,He Walked by Night (1948),Crime|Film-Noir|Thriller +1153,Raw Deal (1948),Film-Noir +1154,T-Men (1947),Film-Noir +1155,"Invitation, The (Zaproszenie) (1986)",Drama +1156,"Children Are Watching Us, The (Bambini ci guardano, I) (1944)",Drama +1157,"Symphonie pastorale, La (1946)",Drama +1158,Here Comes Cookie (1935),Comedy +1159,Love in Bloom (1935),Romance +1160,Six of a Kind (1934),Comedy +1161,"Tin Drum, The (Blechtrommel, Die) (1979)",Drama|War +1162,"Ruling Class, The (1972)",Comedy|Drama +1163,Mina Tannenbaum (1994),Drama +1164,2 ou 3 choses que je sais d'elle (2 or 3 Things I Know About Her) (1967),Drama +1165,"Bloody Child, The (1996)",Drama|Thriller +1166,Farmer & Chase (1997),Comedy +1167,Dear God (1996),Comedy +1168,Bad Moon (1996),Action|Adventure|Horror +1169,American Dream (1990),Documentary +1170,Best of the Best 3: No Turning Back (1995),Action +1171,Bob Roberts (1992),Comedy +1172,Cinema Paradiso (Nuovo cinema Paradiso) (1989),Drama +1173,"Cook the Thief His Wife & Her Lover, The (1989)",Comedy|Drama +1174,Dead Tired (Grosse Fatigue) (1994),Comedy +1175,Delicatessen (1991),Comedy|Drama|Romance +1176,"Double Life of Veronique, The (Double Vie de Véronique, La) (1991)",Drama|Fantasy|Romance +1177,Enchanted April (1992),Drama|Romance +1178,Paths of Glory (1957),Drama|War +1179,"Grifters, The (1990)",Crime|Drama|Film-Noir +1180,Hear My Song (1991),Comedy +1181,"Shooter, The (1997)",Western +1183,"English Patient, The (1996)",Drama|Romance|War +1184,Mediterraneo (1991),Comedy|Drama +1185,My Left Foot (1989),Drama +1186,"Sex, Lies, and Videotape (1989)",Drama +1187,Passion Fish (1992),Drama +1188,Strictly Ballroom (1992),Comedy|Romance +1189,"Thin Blue Line, The (1988)",Documentary +1190,Tie Me Up! Tie Me Down! (¡Átame!) (1990),Crime|Drama|Romance +1191,Madonna: Truth or Dare (1991),Documentary|Musical +1192,Paris Is Burning (1990),Documentary +1193,One Flew Over the Cuckoo's Nest (1975),Drama +1194,Cheech and Chong's Up in Smoke (1978),Comedy +1196,Star Wars: Episode V - The Empire Strikes Back (1980),Action|Adventure|Sci-Fi +1197,"Princess Bride, The (1987)",Action|Adventure|Comedy|Fantasy|Romance +1198,Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981),Action|Adventure +1199,Brazil (1985),Fantasy|Sci-Fi +1200,Aliens (1986),Action|Adventure|Horror|Sci-Fi +1201,"Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il) (1966)",Action|Adventure|Western +1202,Withnail & I (1987),Comedy +1203,12 Angry Men (1957),Drama +1204,Lawrence of Arabia (1962),Adventure|Drama|War +1206,"Clockwork Orange, A (1971)",Crime|Drama|Sci-Fi|Thriller +1207,To Kill a Mockingbird (1962),Drama +1208,Apocalypse Now (1979),Action|Drama|War +1209,Once Upon a Time in the West (C'era una volta il West) (1968),Action|Drama|Western +1210,Star Wars: Episode VI - Return of the Jedi (1983),Action|Adventure|Sci-Fi +1211,"Wings of Desire (Himmel über Berlin, Der) (1987)",Drama|Fantasy|Romance +1212,"Third Man, The (1949)",Film-Noir|Mystery|Thriller +1213,Goodfellas (1990),Crime|Drama +1214,Alien (1979),Horror|Sci-Fi +1215,Army of Darkness (1993),Action|Adventure|Comedy|Fantasy|Horror +1216,"Big Blue, The (Grand bleu, Le) (1988)",Adventure|Drama|Romance +1217,Ran (1985),Drama|War +1218,"Killer, The (Die xue shuang xiong) (1989)",Action|Crime|Drama|Thriller +1219,Psycho (1960),Crime|Horror +1220,"Blues Brothers, The (1980)",Action|Comedy|Musical +1221,"Godfather: Part II, The (1974)",Crime|Drama +1222,Full Metal Jacket (1987),Drama|War +1223,"Grand Day Out with Wallace and Gromit, A (1989)",Adventure|Animation|Children|Comedy|Sci-Fi +1224,Henry V (1989),Action|Drama|Romance|War +1225,Amadeus (1984),Drama +1226,"Quiet Man, The (1952)",Drama|Romance +1227,Once Upon a Time in America (1984),Crime|Drama +1228,Raging Bull (1980),Drama +1230,Annie Hall (1977),Comedy|Romance +1231,"Right Stuff, The (1983)",Drama +1232,Stalker (1979),Drama|Mystery|Sci-Fi +1233,"Boot, Das (Boat, The) (1981)",Action|Drama|War +1234,"Sting, The (1973)",Comedy|Crime +1235,Harold and Maude (1971),Comedy|Drama|Romance +1236,Trust (1990),Comedy|Drama|Romance +1237,"Seventh Seal, The (Sjunde inseglet, Det) (1957)",Drama +1238,Local Hero (1983),Comedy +1240,"Terminator, The (1984)",Action|Sci-Fi|Thriller +1241,Dead Alive (Braindead) (1992),Comedy|Fantasy|Horror +1242,Glory (1989),Drama|War +1243,Rosencrantz and Guildenstern Are Dead (1990),Comedy|Drama +1244,Manhattan (1979),Comedy|Drama|Romance +1245,Miller's Crossing (1990),Crime|Drama|Film-Noir|Thriller +1246,Dead Poets Society (1989),Drama +1247,"Graduate, The (1967)",Comedy|Drama|Romance +1248,Touch of Evil (1958),Crime|Film-Noir|Thriller +1249,"Femme Nikita, La (Nikita) (1990)",Action|Crime|Romance|Thriller +1250,"Bridge on the River Kwai, The (1957)",Adventure|Drama|War +1251,8 1/2 (8½) (1963),Drama|Fantasy +1252,Chinatown (1974),Crime|Film-Noir|Mystery|Thriller +1253,"Day the Earth Stood Still, The (1951)",Drama|Sci-Fi|Thriller +1254,"Treasure of the Sierra Madre, The (1948)",Action|Adventure|Drama|Western +1255,Bad Taste (1987),Comedy|Horror|Sci-Fi +1256,Duck Soup (1933),Comedy|Musical|War +1257,Better Off Dead... (1985),Comedy|Romance +1258,"Shining, The (1980)",Horror +1259,Stand by Me (1986),Adventure|Drama +1260,M (1931),Crime|Film-Noir|Thriller +1261,Evil Dead II (Dead by Dawn) (1987),Action|Comedy|Fantasy|Horror +1262,"Great Escape, The (1963)",Action|Adventure|Drama|War +1263,"Deer Hunter, The (1978)",Drama|War +1264,Diva (1981),Action|Drama|Mystery|Romance|Thriller +1265,Groundhog Day (1993),Comedy|Fantasy|Romance +1266,Unforgiven (1992),Drama|Western +1267,"Manchurian Candidate, The (1962)",Crime|Thriller|War +1268,Pump Up the Volume (1990),Comedy|Drama +1269,Arsenic and Old Lace (1944),Comedy|Mystery|Thriller +1270,Back to the Future (1985),Adventure|Comedy|Sci-Fi +1271,Fried Green Tomatoes (1991),Comedy|Crime|Drama +1272,Patton (1970),Drama|War +1273,Down by Law (1986),Comedy|Drama|Film-Noir +1274,Akira (1988),Action|Adventure|Animation|Sci-Fi +1275,Highlander (1986),Action|Adventure|Fantasy +1276,Cool Hand Luke (1967),Drama +1277,Cyrano de Bergerac (1990),Comedy|Drama|Romance +1278,Young Frankenstein (1974),Comedy|Fantasy +1279,Night on Earth (1991),Comedy|Drama +1280,Raise the Red Lantern (Da hong deng long gao gao gua) (1991),Drama +1281,"Great Dictator, The (1940)",Comedy|Drama|War +1282,Fantasia (1940),Animation|Children|Fantasy|Musical +1283,High Noon (1952),Drama|Western +1284,"Big Sleep, The (1946)",Crime|Film-Noir|Mystery +1285,Heathers (1989),Comedy +1286,Somewhere in Time (1980),Drama|Romance +1287,Ben-Hur (1959),Action|Adventure|Drama +1288,This Is Spinal Tap (1984),Comedy +1289,Koyaanisqatsi (a.k.a. Koyaanisqatsi: Life Out of Balance) (1983),Documentary +1290,Some Kind of Wonderful (1987),Drama|Romance +1291,Indiana Jones and the Last Crusade (1989),Action|Adventure +1292,Being There (1979),Comedy|Drama +1293,Gandhi (1982),Drama +1295,"Unbearable Lightness of Being, The (1988)",Drama +1296,"Room with a View, A (1986)",Drama|Romance +1297,Real Genius (1985),Comedy +1298,Pink Floyd: The Wall (1982),Drama|Musical +1299,"Killing Fields, The (1984)",Drama|War +1300,My Life as a Dog (Mitt liv som hund) (1985),Comedy|Drama +1301,Forbidden Planet (1956),Drama|Sci-Fi +1302,Field of Dreams (1989),Children|Drama|Fantasy +1303,"Man Who Would Be King, The (1975)",Adventure|Drama +1304,Butch Cassidy and the Sundance Kid (1969),Action|Western +1305,"Paris, Texas (1984)",Drama|Romance +1306,Until the End of the World (Bis ans Ende der Welt) (1991),Adventure|Drama|Sci-Fi +1307,When Harry Met Sally... (1989),Comedy|Romance +1308,I Shot a Man in Vegas (1995),Comedy +1309,Parallel Sons (1995),Drama|Romance +1310,Hype! (1996),Documentary +1311,Santa with Muscles (1996),Comedy +1312,Female Perversions (1996),Drama +1313,Mad Dog Time (1996),Crime +1314,Breathing Room (1996),Romance +1315,Paris Was a Woman (1995),Documentary +1316,Anna (1996),Drama +1317,I'm Not Rappaport (1996),Comedy +1318,Blue Juice (1995),Comedy|Drama +1319,Kids of Survival (1996),Documentary +1320,Alien³ (a.k.a. Alien 3) (1992),Action|Horror|Sci-Fi|Thriller +1321,"American Werewolf in London, An (1981)",Comedy|Horror|Thriller +1322,Amityville 1992: It's About Time (1992),Horror +1323,Amityville 3-D (1983),Horror +1324,Amityville: Dollhouse (1996),Horror +1325,Amityville: A New Generation (1993),Horror +1326,Amityville II: The Possession (1982),Horror +1327,"Amityville Horror, The (1979)",Drama|Horror|Mystery|Thriller +1328,"Amityville Curse, The (1990)",Horror +1329,Blood for Dracula (Andy Warhol's Dracula) (1974),Horror +1330,April Fool's Day (1986),Horror +1331,Audrey Rose (1977),Horror +1332,"Believers, The (1987)",Horror|Thriller +1333,"Birds, The (1963)",Horror|Thriller +1334,"Blob, The (1958)",Horror|Sci-Fi +1335,Blood Beach (1981),Horror|Mystery +1336,Body Parts (1991),Horror|Thriller +1337,"Body Snatcher, The (1945)",Drama|Horror|Thriller +1339,Dracula (Bram Stoker's Dracula) (1992),Fantasy|Horror|Romance|Thriller +1340,"Bride of Frankenstein, The (Bride of Frankenstein) (1935)",Drama|Horror|Sci-Fi +1341,Burnt Offerings (1976),Horror +1342,Candyman (1992),Horror|Thriller +1343,Cape Fear (1991),Thriller +1344,Cape Fear (1962),Crime|Drama|Thriller +1345,Carrie (1976),Drama|Fantasy|Horror|Thriller +1346,Cat People (1982),Drama|Fantasy|Horror +1347,"Nightmare on Elm Street, A (1984)",Horror|Thriller +1348,"Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)",Horror +1349,Vampire in Venice (Nosferatu a Venezia) (Nosferatu in Venice) (1986),Horror +1350,"Omen, The (1976)",Horror|Mystery|Thriller +1351,Blood and Wine (Blood & Wine) (1996),Crime|Drama|Thriller +1352,Albino Alligator (1996),Crime|Thriller +1353,"Mirror Has Two Faces, The (1996)",Comedy|Drama|Romance +1354,Breaking the Waves (1996),Drama|Mystery +1355,Nightwatch (1997),Horror|Thriller +1356,Star Trek: First Contact (1996),Action|Adventure|Sci-Fi|Thriller +1357,Shine (1996),Drama|Romance +1358,Sling Blade (1996),Drama +1359,Jingle All the Way (1996),Children|Comedy +1360,Identification of a Woman (Identificazione di una donna) (1982),Drama +1361,Paradise Lost: The Child Murders at Robin Hood Hills (1996),Documentary +1363,"Preacher's Wife, The (1996)",Drama +1364,Zero Kelvin (Kjærlighetens kjøtere) (1995),Drama +1365,Ridicule (1996),Drama +1366,"Crucible, The (1996)",Drama +1367,101 Dalmatians (1996),Adventure|Children|Comedy +1368,"Forbidden Christ, The (Cristo proibito, Il) (1950)",Drama +1369,I Can't Sleep (J'ai pas sommeil) (1994),Drama|Thriller +1370,Die Hard 2 (1990),Action|Adventure|Thriller +1371,Star Trek: The Motion Picture (1979),Adventure|Sci-Fi +1372,Star Trek VI: The Undiscovered Country (1991),Action|Mystery|Sci-Fi +1373,Star Trek V: The Final Frontier (1989),Action|Sci-Fi +1374,Star Trek II: The Wrath of Khan (1982),Action|Adventure|Sci-Fi|Thriller +1375,Star Trek III: The Search for Spock (1984),Action|Adventure|Sci-Fi +1376,Star Trek IV: The Voyage Home (1986),Adventure|Comedy|Sci-Fi +1377,Batman Returns (1992),Action|Crime +1378,Young Guns (1988),Action|Comedy|Western +1379,Young Guns II (1990),Action|Western +1380,Grease (1978),Comedy|Musical|Romance +1381,Grease 2 (1982),Comedy|Musical|Romance +1382,Marked for Death (1990),Action|Drama +1383,Adrenalin: Fear the Rush (1996),Action|Sci-Fi +1384,"Substance of Fire, The (1996)",Drama +1385,Under Siege (1992),Action|Drama|Thriller +1386,Terror in a Texas Town (1958),Western +1387,Jaws (1975),Action|Horror +1388,Jaws 2 (1978),Horror|Thriller +1389,Jaws 3-D (1983),Action|Horror +1390,My Fellow Americans (1996),Comedy +1391,Mars Attacks! (1996),Action|Comedy|Sci-Fi +1392,Citizen Ruth (1996),Comedy|Drama +1393,Jerry Maguire (1996),Drama|Romance +1394,Raising Arizona (1987),Comedy +1395,Tin Men (1987),Comedy|Drama +1396,Sneakers (1992),Action|Comedy|Crime|Drama|Sci-Fi +1397,Bastard Out of Carolina (1996),Drama +1398,In Love and War (1996),Romance|War +1399,Marvin's Room (1996),Drama +1400,Somebody is Waiting (1996),Drama +1401,Ghosts of Mississippi (1996),Drama +1404,Night Falls on Manhattan (1996),Crime|Drama +1405,Beavis and Butt-Head Do America (1996),Adventure|Animation|Comedy|Crime +1406,La Cérémonie (1995),Crime|Drama|Mystery|Thriller +1407,Scream (1996),Comedy|Horror|Mystery|Thriller +1408,"Last of the Mohicans, The (1992)",Action|Romance|War|Western +1409,Michael (1996),Comedy|Drama|Fantasy|Romance +1410,"Evening Star, The (1996)",Comedy|Drama +1411,Hamlet (1996),Crime|Drama|Romance +1412,Some Mother's Son (1996),Drama +1413,"Whole Wide World, The (1996)",Drama +1414,Mother (1996),Comedy +1415,"Thieves (Voleurs, Les) (1996)",Crime|Drama|Romance +1416,Evita (1996),Drama|Musical +1417,"Portrait of a Lady, The (1996)",Drama +1419,Walkabout (1971),Adventure|Drama +1420,Message to Love: The Isle of Wight Festival (1996),Documentary +1421,Grateful Dead (1995),Documentary +1422,Murder at 1600 (1997),Crime|Drama|Mystery|Thriller +1423,Hearts and Minds (1996),Drama +1424,Inside (1996),Action +1425,Fierce Creatures (1997),Comedy +1426,Zeus and Roxanne (1997),Children +1427,Turbulence (1997),Action|Thriller +1428,Angel Baby (1995),Drama +1429,First Strike (Police Story 4: First Strike) (Ging chaat goo si 4: Ji gaan daan yam mo) (1996),Action|Adventure|Comedy|Thriller +1430,Underworld (1996),Comedy|Thriller +1431,Beverly Hills Ninja (1997),Action|Comedy +1432,Metro (1997),Action|Comedy|Crime|Drama|Thriller +1433,The Machine (1994),Horror|Sci-Fi|Thriller +1434,"Stranger, The (1994)",Action +1436,Falling in Love Again (1980),Comedy +1437,"Cement Garden, The (1993)",Drama +1438,Dante's Peak (1997),Action|Thriller +1439,Meet Wally Sparks (1997),Comedy +1440,Amos & Andrew (1993),Comedy +1441,Benny & Joon (1993),Comedy|Romance +1442,Prefontaine (1997),Drama +1443,"Tickle in the Heart, A (1996)",Documentary +1444,Guantanamera (1994),Comedy +1445,McHale's Navy (1997),Comedy|War +1446,Kolya (Kolja) (1996),Comedy|Drama +1447,Gridlock'd (1997),Crime +1448,Fire on the Mountain (1996),Documentary +1449,Waiting for Guffman (1996),Comedy +1450,Prisoner of the Mountains (Kavkazsky plennik) (1996),War +1453,"Beautician and the Beast, The (1997)",Comedy|Romance +1454,SubUrbia (1997),Comedy|Drama +1455,Hotel de Love (1996),Comedy|Romance +1456,"Pest, The (1997)",Comedy +1457,Fools Rush In (1997),Comedy|Drama|Romance +1458,Touch (1997),Drama|Fantasy|Romance +1459,Absolute Power (1997),Mystery|Thriller +1460,That Darn Cat (1997),Children|Comedy|Mystery +1461,Vegas Vacation (National Lampoon's Las Vegas Vacation) (1997),Comedy +1462,Unforgotten: Twenty-Five Years After Willowbrook (1996),Documentary +1463,That Old Feeling (1997),Comedy|Romance +1464,Lost Highway (1997),Crime|Drama|Fantasy|Film-Noir|Mystery|Romance +1465,Rosewood (1997),Action|Drama +1466,Donnie Brasco (1997),Crime|Drama +1467,Salut cousin! (1996),Comedy|Drama +1468,Booty Call (1997),Comedy|Romance +1470,Rhyme & Reason (1997),Documentary +1471,Boys Life 2 (1997),Drama +1472,City of Industry (1997),Crime|Thriller +1473,Best Men (1997),Action|Comedy|Crime|Drama +1474,Jungle2Jungle (a.k.a. Jungle 2 Jungle) (1997),Children|Comedy +1475,Kama Sutra: A Tale of Love (1996),Romance +1476,Private Parts (1997),Comedy|Drama +1477,Love Jones (1997),Romance +1479,"Saint, The (1997)",Action|Romance|Sci-Fi|Thriller +1480,Smilla's Sense of Snow (1997),Drama|Thriller +1482,"Van, The (1996)",Comedy|Drama +1483,Crash (1996),Drama|Thriller +1484,"Daytrippers, The (1996)",Comedy|Drama|Mystery|Romance +1485,Liar Liar (1997),Comedy +1486,"Quiet Room, The (1996)",Drama +1487,Selena (1997),Drama|Musical +1488,"Devil's Own, The (1997)",Action|Drama|Thriller +1489,Cats Don't Dance (1997),Animation|Children|Musical +1490,B*A*P*S (1997),Comedy +1493,Love and Other Catastrophes (1996),Romance +1495,Turbo: A Power Rangers Movie (1997),Action|Adventure|Children +1496,Anna Karenina (1997),Drama|Romance +1497,Double Team (1997),Action +1498,Inventing the Abbotts (1997),Drama|Romance +1499,Anaconda (1997),Action|Adventure|Thriller +1500,Grosse Pointe Blank (1997),Comedy|Crime|Romance +1501,Keys to Tulsa (1997),Crime +1502,Kissed (1996),Drama|Romance +1503,8 Heads in a Duffel Bag (1997),Comedy +1504,Hollow Reed (1996),Drama +1507,Paradise Road (1997),Drama|War +1508,Traveller (1997),Drama +1509,All Over Me (1997),Drama +1510,"Brother's Kiss, A (1997)",Drama +1511,"Chef in Love, A (Shekvarebuli kulinaris ataserti retsepti) (1997)",Comedy|Romance +1513,Romy and Michele's High School Reunion (1997),Comedy +1514,Temptress Moon (Feng Yue) (1996),Romance +1515,Volcano (1997),Action|Drama|Thriller +1516,Children of the Revolution (1996),Comedy +1517,Austin Powers: International Man of Mystery (1997),Action|Adventure|Comedy +1518,Breakdown (1997),Action|Thriller +1519,Broken English (1996),Drama +1520,Commandments (1997),Romance +1522,Ripe (1996),Drama +1523,"Truth or Consequences, N.M. (1997)",Action|Crime|Romance +1524,"Turning, The (1992)",Drama +1525,Warriors of Virtue (1997),Action|Adventure|Children|Fantasy +1526,Fathers' Day (1997),Comedy +1527,"Fifth Element, The (1997)",Action|Adventure|Comedy|Sci-Fi +1528,Intimate Relations (1996),Comedy +1529,Nowhere (1997),Comedy|Drama +1531,Losing Chase (1996),Drama +1532,Sprung (1997),Comedy +1533,"Promise, The (La promesse) (1996)",Drama +1534,"Bonheur, Le (1965)",Drama +1535,Love! Valour! Compassion! (1997),Drama|Romance +1537,Shall We Dance? (Shall We Dansu?) (1996),Comedy|Drama|Romance +1538,"Second Jungle Book: Mowgli & Baloo, The (1997)",Adventure|Children +1539,Twin Town (1997),Comedy|Crime +1541,Addicted to Love (1997),Comedy|Romance +1542,Brassed Off (1996),Comedy|Drama|Romance +1543,"Designated Mourner, The (1997)",Drama +1544,"Lost World: Jurassic Park, The (1997)",Action|Adventure|Sci-Fi|Thriller +1545,Ponette (1996),Drama +1546,Schizopolis (1996),Comedy +1547,Shiloh (1997),Children|Drama +1548,"War at Home, The (1996)",Drama +1549,Rough Magic (1995),Drama|Romance +1550,Trial and Error (1997),Comedy|Romance +1551,Buddy (1997),Adventure|Children|Drama +1552,Con Air (1997),Action|Adventure|Thriller +1553,Late Bloomers (1996),Comedy +1554,"Pillow Book, The (1996)",Drama|Romance +1555,"To Have, or Not (En avoir (ou pas)) (1995)",Drama +1556,Speed 2: Cruise Control (1997),Action|Romance|Thriller +1557,Squeeze (1997),Drama +1558,Sudden Manhattan (1997),Comedy +1559,"Next Step, The (1997)",Drama +1561,Wedding Bell Blues (1996),Comedy +1562,Batman & Robin (1997),Action|Adventure|Fantasy|Thriller +1563,Dream With the Fishes (1997),Drama +1564,For Roseanna (Roseanna's Grave) (1997),Comedy|Drama|Romance +1565,Head Above Water (1996),Comedy|Thriller +1566,Hercules (1997),Adventure|Animation|Children|Comedy|Musical +1567,The Last Time I Committed Suicide (1997),Drama +1568,MURDER and murder (1996),Crime|Drama|Mystery +1569,My Best Friend's Wedding (1997),Comedy|Romance +1570,Tetsuo II: Body Hammer (1992),Horror|Sci-Fi +1571,When the Cat's Away (Chacun cherche son chat) (1996),Comedy|Romance +1572,"Contempt (Mépris, Le) (1963)",Drama +1573,Face/Off (1997),Action|Crime|Drama|Thriller +1574,Fall (1997),Romance +1575,Gabbeh (1996),Drama +1577,Mondo (1996),Drama +1578,"Innocent Sleep, The (1996)",Crime +1579,For Ever Mozart (1996),Drama +1580,Men in Black (a.k.a. MIB) (1997),Action|Comedy|Sci-Fi +1581,Out to Sea (1997),Comedy +1582,Wild America (1997),Adventure|Children +1583,"Simple Wish, A (1997)",Children|Fantasy +1584,Contact (1997),Drama|Sci-Fi +1585,Love Serenade (1996),Comedy +1586,G.I. Jane (1997),Action|Drama +1587,Conan the Barbarian (1982),Action|Adventure|Fantasy +1588,George of the Jungle (1997),Children|Comedy +1589,Cop Land (1997),Action|Crime|Drama|Thriller +1590,Event Horizon (1997),Horror|Sci-Fi|Thriller +1591,Spawn (1997),Action|Adventure|Sci-Fi|Thriller +1592,Air Bud (1997),Children|Comedy +1593,Picture Perfect (1997),Comedy|Romance +1594,In the Company of Men (1997),Comedy|Drama +1595,Free Willy 3: The Rescue (1997),Adventure|Children|Drama +1596,Career Girls (1997),Drama +1597,Conspiracy Theory (1997),Drama|Mystery|Romance|Thriller +1598,Desperate Measures (1998),Crime|Drama|Thriller +1599,Steel (1997),Action +1600,She's So Lovely (1997),Drama|Romance +1601,Hoodlum (1997),Crime|Drama|Film-Noir +1602,Leave It to Beaver (1997),Comedy +1603,Mimic (1997),Horror|Sci-Fi|Thriller +1604,Money Talks (1997),Action|Comedy +1605,Excess Baggage (1997),Adventure|Romance +1606,Kull the Conqueror (1997),Action|Adventure +1608,Air Force One (1997),Action|Thriller +1609,187 (One Eight Seven) (1997),Drama|Thriller +1610,"Hunt for Red October, The (1990)",Action|Adventure|Thriller +1611,My Own Private Idaho (1991),Drama|Romance +1612,"Kiss Me, Guido (1997)",Comedy +1613,Star Maps (1997),Drama +1614,In & Out (1997),Comedy +1615,"Edge, The (1997)",Adventure|Drama +1616,"Peacemaker, The (1997)",Action|Thriller|War +1617,L.A. Confidential (1997),Crime|Film-Noir|Mystery|Thriller +1619,Seven Years in Tibet (1997),Adventure|Drama|War +1620,Kiss the Girls (1997),Crime|Drama|Mystery|Thriller +1621,Soul Food (1997),Drama +1622,Kicked in the Head (1997),Comedy|Drama +1623,Wishmaster (1997),Horror +1624,"Thousand Acres, A (1997)",Drama +1625,"Game, The (1997)",Drama|Mystery|Thriller +1626,Fire Down Below (1997),Action|Drama|Thriller +1627,U Turn (1997),Crime|Drama|Mystery +1628,"Locusts, The (1997)",Drama +1629,"MatchMaker, The (1997)",Comedy|Romance +1630,"Lay of the Land, The (1997)",Comedy|Drama +1631,"Assignment, The (1997)",Action|Thriller +1632,"Smile Like Yours, A (1997)",Comedy|Romance +1633,Ulee's Gold (1997),Drama +1635,"Ice Storm, The (1997)",Drama +1636,Stag (1997),Action|Thriller +1639,Chasing Amy (1997),Comedy|Drama|Romance +1640,How to Be a Player (1997),Comedy +1641,"Full Monty, The (1997)",Comedy|Drama +1642,Indian Summer (a.k.a. Alive & Kicking) (1996),Comedy|Drama +1643,"Mrs. Brown (a.k.a. Her Majesty, Mrs. Brown) (1997)",Drama|Romance +1644,I Know What You Did Last Summer (1997),Horror|Mystery|Thriller +1645,The Devil's Advocate (1997),Drama|Mystery|Thriller +1646,RocketMan (a.k.a. Rocket Man) (1997),Children|Comedy|Romance|Sci-Fi +1647,Playing God (1997),Crime|Drama|Thriller +1648,"House of Yes, The (1997)",Comedy|Drama +1649,"Fast, Cheap & Out of Control (1997)",Documentary +1650,Washington Square (1997),Drama +1651,Telling Lies in America (1997),Drama +1652,Year of the Horse (1997),Documentary +1653,Gattaca (1997),Drama|Sci-Fi|Thriller +1654,FairyTale: A True Story (1997),Children|Drama|Fantasy +1655,Phantoms (1998),Drama|Horror|Thriller +1656,Swept from the Sea (1997),Drama|Romance +1657,Wonderland (1997),Comedy|Documentary +1658,"Life Less Ordinary, A (1997)",Romance|Thriller +1659,Hurricane Streets (1997),Drama +1660,Eve's Bayou (1997),Drama +1661,Switchback (1997),Crime|Mystery|Thriller +1662,Gang Related (1997),Crime +1663,Stripes (1981),Comedy|War +1664,Nenette and Boni (Nénette et Boni) (1996),Drama +1665,Bean (1997),Comedy +1666,Hugo Pool (1997),Romance +1667,Mad City (1997),Action|Drama +1668,One Night Stand (1997),Drama +1669,"Tango Lesson, The (1997)",Romance +1670,Welcome to Sarajevo (1997),Drama|War +1671,Deceiver (1997),Crime|Drama|Thriller +1672,"Rainmaker, The (1997)",Drama +1673,Boogie Nights (1997),Drama +1674,Witness (1985),Drama|Romance|Thriller +1675,Incognito (1997),Crime|Thriller +1676,Starship Troopers (1997),Action|Sci-Fi +1677,Critical Care (1997),Comedy|Drama +1678,"Joy Luck Club, The (1993)",Drama|Romance +1679,Chairman of the Board (1998),Comedy +1680,Sliding Doors (1998),Drama|Romance +1681,Mortal Kombat: Annihilation (1997),Action|Adventure|Fantasy +1682,"Truman Show, The (1998)",Comedy|Drama|Sci-Fi +1683,"Wings of the Dove, The (1997)",Drama|Romance +1684,Mrs. Dalloway (1997),Drama|Romance +1685,"I Love You, I Love You Not (1996)",Drama|Romance +1686,Red Corner (1997),Crime|Thriller +1687,"Jackal, The (1997)",Action|Thriller +1688,Anastasia (1997),Adventure|Animation|Children|Drama|Musical +1689,"Man Who Knew Too Little, The (1997)",Comedy|Crime|Thriller +1690,Alien: Resurrection (1997),Action|Horror|Sci-Fi +1692,Alien Escape (1995),Horror|Sci-Fi +1693,Amistad (1997),Drama|Mystery +1694,"Apostle, The (1997)",Drama +1695,Artemisia (1997),Drama +1696,Bent (1997),Drama|War +1697,Bang (1995),Crime|Drama +1698,"Boys, Les (1997)",Comedy +1699,"Butcher Boy, The (1997)",Comedy|Drama +1701,Deconstructing Harry (1997),Comedy|Drama +1702,Flubber (1997),Children|Comedy|Fantasy +1703,For Richer or Poorer (1997),Comedy +1704,Good Will Hunting (1997),Drama|Romance +1705,Guy (1997),Drama +1706,Tar (1996),Drama +1707,Home Alone 3 (1997),Children|Comedy +1708,Ill Gotten Gains (1997),Drama +1709,Legal Deceit (1997),Thriller +1711,Midnight in the Garden of Good and Evil (1997),Crime|Drama|Mystery +1713,Mouse Hunt (1997),Children|Comedy +1714,Never Met Picasso (1996),Romance +1715,Office Killer (1997),Thriller +1716,"Other Voices, Other Rooms (1995)",Drama +1717,Scream 2 (1997),Comedy|Horror|Mystery|Thriller +1718,Stranger in the House (1997),Thriller +1719,"Sweet Hereafter, The (1997)",Drama +1720,Time Tracers (1995),Action|Adventure|Sci-Fi +1721,Titanic (1997),Drama|Romance +1722,Tomorrow Never Dies (1997),Action|Adventure|Thriller +1723,Twisted (1996),Comedy|Drama +1724,Full Speed (À toute vitesse) (1996),Drama +1725,"Education of Little Tree, The (1997)",Drama +1726,"Postman, The (1997)",Action|Adventure|Drama|Sci-Fi +1727,"Horse Whisperer, The (1998)",Drama|Romance +1728,"Winter Guest, The (1997)",Drama +1729,Jackie Brown (1997),Crime|Drama|Thriller +1730,Kundun (1997),Drama +1731,Mr. Magoo (1997),Comedy +1732,"Big Lebowski, The (1998)",Comedy|Crime +1733,Afterglow (1997),Drama|Romance +1734,My Life in Pink (Ma vie en rose) (1997),Comedy|Drama +1735,Great Expectations (1998),Drama|Romance +1738,Vermin (1998),Comedy +1739,3 Ninjas: High Noon On Mega Mountain (1998),Action|Children|Comedy +1740,Men of Means (1999),Action|Drama +1742,Caught Up (1998),Crime +1743,Arguing the World (1998),Documentary +1744,Firestorm (1998),Action|Adventure|Thriller +1746,Senseless (1998),Comedy +1747,Wag the Dog (1997),Comedy +1748,Dark City (1998),Adventure|Film-Noir|Sci-Fi|Thriller +1749,The Leading Man (1996),Drama|Romance|Thriller +1750,Star Kid (1997),Adventure|Children|Fantasy|Sci-Fi +1752,Hard Rain (1998),Action|Crime|Thriller +1753,Half Baked (1998),Comedy +1754,Fallen (1998),Crime|Drama|Fantasy|Thriller +1755,Shooting Fish (1997),Comedy|Romance +1756,"Prophecy II, The (1998)",Horror +1757,Fallen Angels (Duo luo tian shi) (1995),Drama|Romance +1759,"Four Days in September (O Que É Isso, Companheiro?) (1997)",Drama +1760,Spice World (1997),Comedy +1762,Deep Rising (1998),Action|Horror|Sci-Fi +1764,Tainted (1998),Comedy|Thriller +1765,"Letter From Death Row, A (1998)",Crime|Drama +1767,Music From Another Room (1998),Drama|Romance +1768,Mother and Son (Mat i syn) (1997),Drama +1769,"Replacement Killers, The (1998)",Action|Crime|Thriller +1770,B. Monkey (1998),Crime|Romance|Thriller +1771,Night Flier (1997),Horror +1772,Blues Brothers 2000 (1998),Action|Comedy|Musical +1773,Tokyo Fist (Tokyo ken) (1995),Action|Drama +1774,Mass Transit (1998),Comedy|Drama +1776,Ride (1998),Drama +1777,"Wedding Singer, The (1998)",Comedy|Romance +1779,Sphere (1998),Sci-Fi|Thriller +1780,Ayn Rand: A Sense of Life (1997),Documentary +1781,"Further Gesture, A (1996)",Drama +1782,Little City (1998),Comedy|Romance +1783,Palmetto (1998),Crime|Drama|Mystery|Romance|Thriller +1784,As Good as It Gets (1997),Comedy|Drama|Romance +1785,King of New York (1990),Crime|Thriller +1787,"Paralyzing Fear: The Story of Polio in America, A (1998)",Documentary +1788,Men with Guns (1997),Action|Drama +1789,"Sadness of Sex, The (1995)",Drama +1791,Twilight (1998),Crime|Drama|Thriller +1792,U.S. Marshals (1998),Action|Crime|Thriller +1793,Welcome to Woop-Woop (1997),Comedy +1794,Love and Death on Long Island (1997),Comedy|Drama +1795,"Callejón de los milagros, El (1995)",Drama +1796,In God's Hands (1998),Action|Drama +1797,Everest (1998),Documentary|IMAX +1798,Hush (1998),Thriller +1799,Suicide Kings (1997),Comedy|Crime|Drama|Mystery|Thriller +1801,"Man in the Iron Mask, The (1998)",Action|Adventure|Drama +1804,"Newton Boys, The (1998)",Crime|Drama +1805,Wild Things (1998),Crime|Drama|Mystery|Thriller +1806,Paulie (1998),Adventure|Children|Comedy +1807,"Cool, Dry Place, A (1998)",Drama +1809,Fireworks (Hana-bi) (1997),Crime|Drama +1810,Primary Colors (1998),Comedy|Drama +1811,"Niagara, Niagara (1997)",Drama +1812,Wide Awake (1998),Children|Comedy|Drama +1814,"Price Above Rubies, A (1998)",Drama +1815,Eden (1997),Drama +1816,Two Girls and a Guy (1997),Comedy|Drama +1817,No Looking Back (1998),Drama|Romance +1819,Storefront Hitchcock (1997),Documentary|Musical +1820,"Proposition, The (1998)",Drama|Romance +1821,"Object of My Affection, The (1998)",Comedy|Romance +1822,Meet the Deedles (1998),Children|Comedy +1824,Homegrown (1998),Comedy|Thriller +1825,The Players Club (1998),Comedy|Drama +1826,Barney's Great Adventure (1998),Adventure|Children +1827,"Big One, The (1997)",Comedy|Documentary +1829,Chinese Box (1997),Drama|Romance +1830,Follow the Bitch (1996),Comedy +1831,Lost in Space (1998),Action|Adventure|Sci-Fi +1832,Heaven's Burning (1997),Action|Drama +1833,Mercury Rising (1998),Action|Drama|Thriller +1834,"Spanish Prisoner, The (1997)",Crime|Drama|Mystery|Thriller +1835,City of Angels (1998),Drama|Fantasy|Romance +1836,"Last Days of Disco, The (1998)",Comedy|Drama +1837,"Odd Couple II, The (1998)",Comedy +1839,My Giant (1998),Comedy +1840,He Got Game (1998),Drama +1841,"Gingerbread Man, The (1998)",Drama|Thriller +1842,Illtown (1996),Crime|Drama +1843,Slappy and the Stinkers (1998),Children|Comedy +1844,Live Flesh (Carne trémula) (1997),Drama|Romance +1845,Zero Effect (1998),Comedy|Mystery|Thriller +1846,Nil By Mouth (1997),Drama +1847,Ratchet (1996),Drama|Thriller +1848,"Borrowers, The (1997)",Adventure|Children|Comedy|Fantasy +1849,Prince Valiant (1997),Adventure +1850,"I Love You, Don't Touch Me! (1998)",Drama|Romance +1851,Leather Jacket Love Story (1997),Drama|Romance +1852,Love Walked In (1998),Drama|Thriller +1853,"Alan Smithee Film: Burn Hollywood Burn, An (1997)",Comedy +1854,Kissing a Fool (1998),Comedy|Romance +1855,Krippendorf's Tribe (1998),Comedy +1856,Kurt & Courtney (1998),Documentary +1857,"Real Blonde, The (1997)",Comedy +1858,Mr. Nice Guy (Yat goh ho yan) (1997),Action|Comedy +1859,Taste of Cherry (Ta'm e guilass) (1997),Drama +1860,Character (Karakter) (1997),Drama +1861,Junk Mail (Budbringeren) (1997),Comedy|Thriller +1862,Species II (1998),Horror|Sci-Fi +1863,Major League: Back to the Minors (1998),Comedy +1864,Sour Grapes (1998),Comedy +1865,Wild Man Blues (1997),Documentary +1866,"Big Hit, The (1998)",Action|Comedy|Crime +1867,Tarzan and the Lost City (1998),Action|Adventure +1869,Black Dog (1998),Action|Thriller +1870,"Dancer, Texas Pop. 81 (1998)",Comedy|Drama +1871,"Friend of the Deceased, A (Priyatel pokonika) (1997)",Comedy|Drama +1872,Go Now (1995),Drama +1873,"Misérables, Les (1998)",Crime|Drama|Romance|War +1874,Still Breathing (1997),Comedy|Romance +1875,Clockwatchers (1997),Comedy +1876,Deep Impact (1998),Drama|Sci-Fi|Thriller +1877,Little Men (1998),Drama +1878,Woo (1998),Comedy|Romance +1879,"Hanging Garden, The (1997)",Drama|Romance +1880,Lawn Dogs (1997),Drama +1881,Quest for Camelot (1998),Adventure|Animation|Children|Fantasy|Musical +1882,Godzilla (1998),Action|Sci-Fi|Thriller +1883,Bulworth (1998),Comedy|Drama|Romance +1884,Fear and Loathing in Las Vegas (1998),Adventure|Comedy|Drama +1885,"Opposite of Sex, The (1998)",Comedy|Drama|Romance +1886,I Got the Hook Up (1998),Comedy +1887,Almost Heroes (1998),Adventure|Comedy|Western +1888,Hope Floats (1998),Comedy|Drama|Romance +1889,Insomnia (1997),Drama|Mystery|Thriller +1890,Little Boy Blue (1997),Drama +1891,"Ugly, The (1997)",Horror|Thriller +1892,"Perfect Murder, A (1998)",Thriller +1893,Beyond Silence (Jenseits der Stille) (1996),Drama +1894,Six Days Seven Nights (1998),Adventure|Comedy|Romance +1895,Can't Hardly Wait (1998),Comedy|Drama|Romance +1896,Cousin Bette (1998),Comedy +1897,High Art (1998),Drama|Romance +1898,"Land Girls, The (1998)",Drama|War +1899,Passion in the Desert (1998),Adventure|Drama +1900,"Children of Heaven, The (Bacheha-Ye Aseman) (1997)",Comedy|Drama +1901,Dear Jesse (1997),Documentary +1902,Dream for an Insomniac (1996),Drama|Romance +1903,Hav Plenty (1997),Comedy +1904,Henry Fool (1997),Comedy|Drama +1905,Marie from the Bay of Angels (Marie Baie Des Anges) (1997),Drama +1906,Mr. Jealousy (1997),Comedy|Romance +1907,Mulan (1998),Adventure|Animation|Children|Comedy|Drama|Musical|Romance +1908,Resurrection Man (1998),Drama|Thriller +1909,"X-Files: Fight the Future, The (1998)",Action|Crime|Mystery|Sci-Fi|Thriller +1910,I Went Down (1997),Comedy|Crime|Drama +1911,Dr. Dolittle (1998),Comedy +1912,Out of Sight (1998),Comedy|Crime|Drama|Romance|Thriller +1913,Picnic at Hanging Rock (1975),Drama|Mystery +1914,Smoke Signals (1998),Comedy|Drama +1915,Voyage to the Beginning of the World (Viagem ao Princípio do Mundo) (1997),Drama +1916,Buffalo '66 (a.k.a. Buffalo 66) (1998),Drama|Romance +1917,Armageddon (1998),Action|Romance|Sci-Fi|Thriller +1918,Lethal Weapon 4 (1998),Action|Comedy|Crime|Thriller +1919,Madeline (1998),Children|Comedy +1920,Small Soldiers (1998),Animation|Children|Fantasy|War +1921,Pi (1998),Drama|Sci-Fi|Thriller +1922,Whatever (1998),Drama +1923,There's Something About Mary (1998),Comedy|Romance +1924,Plan 9 from Outer Space (1959),Horror|Sci-Fi +1925,Wings (1927),Action|Drama|Romance|War +1926,"Broadway Melody, The (1929)",Musical +1927,All Quiet on the Western Front (1930),Action|Drama|War +1928,Cimarron (1931),Drama|Western +1929,Grand Hotel (1932),Drama|Romance +1930,Cavalcade (1933),Drama|Romance|War +1931,Mutiny on the Bounty (1935),Adventure|Drama +1932,"Great Ziegfeld, The (1936)",Drama|Musical +1933,"Life of Emile Zola, The (1937)",Drama +1934,You Can't Take It with You (1938),Comedy|Romance +1935,How Green Was My Valley (1941),Drama|Musical|Romance +1936,Mrs. Miniver (1942),Drama|War +1937,Going My Way (1944),Comedy|Drama|Musical +1938,"Lost Weekend, The (1945)",Drama +1939,"Best Years of Our Lives, The (1946)",Drama|War +1940,Gentleman's Agreement (1947),Drama +1941,Hamlet (1948),Drama +1942,All the King's Men (1949),Drama +1943,"Greatest Show on Earth, The (1952)",Drama +1944,From Here to Eternity (1953),Drama|Romance|War +1945,On the Waterfront (1954),Crime|Drama +1946,Marty (1955),Drama|Romance +1947,West Side Story (1961),Drama|Musical|Romance +1948,Tom Jones (1963),Adventure|Comedy|Romance +1949,"Man for All Seasons, A (1966)",Drama +1950,In the Heat of the Night (1967),Drama|Mystery +1951,Oliver! (1968),Drama|Musical +1952,Midnight Cowboy (1969),Drama +1953,"French Connection, The (1971)",Action|Crime|Thriller +1954,Rocky (1976),Drama +1955,Kramer vs. Kramer (1979),Drama +1956,Ordinary People (1980),Drama +1957,Chariots of Fire (1981),Drama +1958,Terms of Endearment (1983),Comedy|Drama +1959,Out of Africa (1985),Drama|Romance +1960,"Last Emperor, The (1987)",Drama +1961,Rain Man (1988),Drama +1962,Driving Miss Daisy (1989),Drama +1963,Take the Money and Run (1969),Comedy|Crime +1964,Klute (1971),Drama|Mystery +1965,Repo Man (1984),Comedy|Sci-Fi +1966,Metropolitan (1990),Comedy +1967,Labyrinth (1986),Adventure|Fantasy|Musical +1968,"Breakfast Club, The (1985)",Comedy|Drama +1969,"Nightmare on Elm Street 2: Freddy's Revenge, A (1985)",Horror +1970,"Nightmare on Elm Street 3: Dream Warriors, A (1987)",Horror|Thriller +1971,"Nightmare on Elm Street 4: The Dream Master, A (1988)",Horror|Thriller +1972,"Nightmare on Elm Street 5: The Dream Child, A (1989)",Horror +1973,"Freddy's Dead: The Final Nightmare (Nightmare on Elm Street Part 6: Freddy's Dead, A) (1991)",Horror +1974,Friday the 13th (1980),Horror|Mystery|Thriller +1975,Friday the 13th Part 2 (1981),Horror +1976,Friday the 13th Part 3: 3D (1982),Horror +1977,Friday the 13th Part IV: The Final Chapter (1984),Horror +1978,Friday the 13th Part V: A New Beginning (1985),Horror +1979,Friday the 13th Part VI: Jason Lives (1986),Horror +1980,Friday the 13th Part VII: The New Blood (1988),Horror +1981,Friday the 13th Part VIII: Jason Takes Manhattan (1989),Horror +1982,Halloween (1978),Horror +1983,Halloween II (1981),Horror +1984,Halloween III: Season of the Witch (1982),Horror +1985,Halloween 4: The Return of Michael Myers (1988),Horror +1986,Halloween 5: The Revenge of Michael Myers (1989),Horror +1987,Prom Night (1980),Horror +1988,Prom Night II (1987),Horror|Thriller +1989,Prom Night III: The Last Kiss (1989),Horror +1990,Prom Night IV: Deliver Us From Evil (1992),Horror +1991,Child's Play (1988),Horror|Thriller +1992,Child's Play 2 (1990),Horror|Thriller +1993,Child's Play 3 (1991),Comedy|Horror|Thriller +1994,Poltergeist (1982),Horror|Thriller +1995,Poltergeist II: The Other Side (1986),Horror|Thriller +1996,Poltergeist III (1988),Horror|Thriller +1997,"Exorcist, The (1973)",Horror|Mystery +1998,Exorcist II: The Heretic (1977),Horror +1999,"Exorcist III, The (1990)",Horror +2000,Lethal Weapon (1987),Action|Comedy|Crime|Drama +2001,Lethal Weapon 2 (1989),Action|Comedy|Crime|Drama +2002,Lethal Weapon 3 (1992),Action|Comedy|Crime|Drama +2003,Gremlins (1984),Comedy|Horror +2004,Gremlins 2: The New Batch (1990),Comedy|Horror +2005,"Goonies, The (1985)",Action|Adventure|Children|Comedy|Fantasy +2006,"Mask of Zorro, The (1998)",Action|Comedy|Romance +2007,Polish Wedding (1998),Comedy +2008,"This World, Then the Fireworks (1997)",Crime|Drama|Film-Noir +2009,Soylent Green (1973),Drama|Mystery|Sci-Fi|Thriller +2010,Metropolis (1927),Drama|Sci-Fi +2011,Back to the Future Part II (1989),Adventure|Comedy|Sci-Fi +2012,Back to the Future Part III (1990),Adventure|Comedy|Sci-Fi|Western +2013,"Poseidon Adventure, The (1972)",Action|Adventure|Drama +2014,Freaky Friday (1977),Children|Comedy|Fantasy +2015,"Absent-Minded Professor, The (1961)",Children|Comedy|Fantasy +2016,"Apple Dumpling Gang Rides Again, The (1979)",Children|Comedy|Western +2017,Babes in Toyland (1961),Children|Fantasy|Musical +2018,Bambi (1942),Animation|Children|Drama +2019,Seven Samurai (Shichinin no samurai) (1954),Action|Adventure|Drama +2020,Dangerous Liaisons (1988),Drama|Romance +2021,Dune (1984),Adventure|Sci-Fi +2022,"Last Temptation of Christ, The (1988)",Drama +2023,"Godfather: Part III, The (1990)",Crime|Drama|Mystery|Thriller +2024,"Rapture, The (1991)",Drama|Mystery +2025,Lolita (1997),Drama|Romance +2026,Disturbing Behavior (1998),Horror|Thriller +2027,Jane Austen's Mafia! (1998),Comedy|Crime +2028,Saving Private Ryan (1998),Action|Drama|War +2029,Billy's Hollywood Screen Kiss (1997),Comedy|Romance +2030,East Palace West Palace (Dong gong xi gong) (1997),Drama +2031,"Million Dollar Duck, The (a.k.a. $1,000,000 Duck) (1971)",Children|Comedy +2032,"Barefoot Executive, The (1971)",Children|Comedy +2033,"Black Cauldron, The (1985)",Adventure|Animation|Children|Fantasy +2034,"Black Hole, The (1979)",Children|Sci-Fi +2035,Blackbeard's Ghost (1968),Children|Comedy +2036,Blank Check (1994),Children|Comedy +2037,Candleshoe (1977),Adventure|Children|Comedy +2038,"Cat from Outer Space, The (1978)",Children|Comedy|Sci-Fi +2039,Cheetah (1989),Adventure|Children +2040,"Computer Wore Tennis Shoes, The (1969)",Children|Comedy +2041,Condorman (1981),Action|Adventure|Children|Comedy +2042,D2: The Mighty Ducks (1994),Children|Comedy +2043,Darby O'Gill and the Little People (1959),Adventure|Children|Fantasy +2044,"Devil and Max Devlin, The (1981)",Comedy|Fantasy +2045,"Far Off Place, A (1993)",Adventure|Children|Drama|Romance +2046,Flight of the Navigator (1986),Adventure|Children|Sci-Fi +2047,"Gnome-Mobile, The (1967)",Adventure|Children|Fantasy|Musical +2048,"Great Mouse Detective, The (1986)",Action|Animation|Children|Crime +2049,"Happiest Millionaire, The (1967)",Comedy|Musical +2050,Herbie Goes Bananas (1980),Adventure|Children|Comedy +2051,Herbie Goes to Monte Carlo (1977),Adventure|Children|Comedy +2052,Hocus Pocus (1993),Children|Comedy|Fantasy|Horror +2053,"Honey, I Blew Up the Kid (1992)",Children|Comedy|Sci-Fi +2054,"Honey, I Shrunk the Kids (1989)",Adventure|Children|Comedy|Fantasy|Sci-Fi +2055,Hot Lead and Cold Feet (1978),Action|Comedy|Western +2056,In Search of the Castaways (1962),Adventure|Children +2057,"Incredible Journey, The (1963)",Adventure|Children +2058,"Negotiator, The (1998)",Action|Crime|Drama|Mystery|Thriller +2059,"Parent Trap, The (1998)",Children|Comedy|Romance +2060,BASEketball (1998),Comedy +2061,Full Tilt Boogie (1997),Documentary +2062,"Governess, The (1998)",Drama|Romance +2063,"Seventh Heaven (Septième ciel, Le) (1997)",Drama|Romance +2064,Roger & Me (1989),Documentary +2065,"Purple Rose of Cairo, The (1985)",Comedy|Drama|Fantasy|Romance +2066,Out of the Past (1947),Film-Noir +2067,Doctor Zhivago (1965),Drama|Romance|War +2068,Fanny and Alexander (Fanny och Alexander) (1982),Drama|Fantasy|Mystery +2069,"Trip to Bountiful, The (1985)",Drama +2070,Tender Mercies (1983),Drama|Romance|Western +2071,And the Band Played On (1993),Drama +2072,"'burbs, The (1989)",Comedy +2073,Fandango (1985),Comedy +2074,"Night Porter, The (Portiere di notte, Il) (1974)",Crime|Drama|Romance +2075,Mephisto (1981),Drama|War +2076,Blue Velvet (1986),Drama|Mystery|Thriller +2077,"Journey of Natty Gann, The (1985)",Adventure|Children +2078,"Jungle Book, The (1967)",Animation|Children|Comedy|Musical +2079,Kidnapped (1960),Adventure|Children|Drama +2080,Lady and the Tramp (1955),Animation|Children|Comedy|Romance +2081,"Little Mermaid, The (1989)",Animation|Children|Comedy|Musical|Romance +2082,"Mighty Ducks, The (1992)",Children|Comedy +2083,"Muppet Christmas Carol, The (1992)",Children|Comedy|Musical +2084,Newsies (1992),Children|Musical +2085,101 Dalmatians (One Hundred and One Dalmatians) (1961),Adventure|Animation|Children +2086,One Magic Christmas (1985),Drama|Fantasy +2087,Peter Pan (1953),Animation|Children|Fantasy|Musical +2088,Popeye (1980),Adventure|Comedy|Musical +2089,"Rescuers Down Under, The (1990)",Adventure|Animation|Children +2090,"Rescuers, The (1977)",Adventure|Animation|Children|Crime|Drama +2091,Return from Witch Mountain (1978),Children|Sci-Fi +2093,Return to Oz (1985),Adventure|Children|Fantasy +2094,"Rocketeer, The (1991)",Action|Adventure|Sci-Fi +2095,"Shaggy D.A., The (1976)",Children|Comedy +2096,Sleeping Beauty (1959),Animation|Children|Musical +2097,Something Wicked This Way Comes (1983),Children|Drama|Fantasy|Mystery|Thriller +2098,Son of Flubber (1963),Children|Comedy +2099,Song of the South (1946),Adventure|Animation|Children|Musical +2100,Splash (1984),Comedy|Fantasy|Romance +2101,Squanto: A Warrior's Tale (1994),Adventure|Drama +2102,Steamboat Willie (1928),Animation|Children|Comedy|Musical +2103,Tall Tale (1995),Adventure|Children|Fantasy|Western +2104,Tex (1982),Drama +2105,Tron (1982),Action|Adventure|Sci-Fi +2106,Swing Kids (1993),Drama|War +2107,Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode) (1998),Horror|Thriller +2108,L.A. Story (1991),Comedy|Romance +2109,"Jerk, The (1979)",Comedy +2110,Dead Men Don't Wear Plaid (1982),Comedy|Crime|Thriller +2111,"Man with Two Brains, The (1983)",Comedy +2112,Grand Canyon (1991),Crime|Drama +2113,Graveyard Shift (Stephen King's Graveyard Shift) (1990),Horror|Thriller +2114,"Outsiders, The (1983)",Drama +2115,Indiana Jones and the Temple of Doom (1984),Action|Adventure|Fantasy +2116,"Lord of the Rings, The (1978)",Adventure|Animation|Children|Fantasy +2117,1984 (Nineteen Eighty-Four) (1984),Drama|Sci-Fi +2118,"Dead Zone, The (1983)",Thriller +2119,Maximum Overdrive (1986),Horror +2120,Needful Things (1993),Drama|Horror +2121,Cujo (1983),Horror|Thriller +2122,Children of the Corn (1984),Horror|Thriller +2123,All Dogs Go to Heaven (1989),Animation|Children|Comedy|Drama|Fantasy +2124,"Addams Family, The (1991)",Children|Comedy|Fantasy +2125,Ever After: A Cinderella Story (1998),Comedy|Drama|Romance +2126,Snake Eyes (1998),Action|Crime|Mystery|Thriller +2127,"First Love, Last Rites (1997)",Drama|Romance +2128,Safe Men (1998),Comedy +2129,"Saltmen of Tibet, The (Salzmänner von Tibet, Die) (1997)",Documentary +2130,Atlantic City (1980),Crime|Drama|Romance +2131,Autumn Sonata (Höstsonaten) (1978),Drama +2132,Who's Afraid of Virginia Woolf? (1966),Drama +2133,Adventures in Babysitting (1987),Adventure|Comedy +2134,Weird Science (1985),Comedy|Fantasy|Sci-Fi +2135,Doctor Dolittle (1967),Adventure|Children|Musical +2136,"Nutty Professor, The (1963)",Comedy|Sci-Fi +2137,Charlotte's Web (1973),Animation|Children +2138,Watership Down (1978),Adventure|Animation|Children|Drama|Fantasy +2139,"Secret of NIMH, The (1982)",Adventure|Animation|Children|Drama +2140,"Dark Crystal, The (1982)",Adventure|Fantasy +2141,"American Tail, An (1986)",Adventure|Animation|Children|Comedy +2142,"American Tail: Fievel Goes West, An (1991)",Adventure|Animation|Children|Musical|Western +2143,Legend (1985),Adventure|Fantasy|Romance +2144,Sixteen Candles (1984),Comedy|Romance +2145,Pretty in Pink (1986),Comedy|Drama|Romance +2146,St. Elmo's Fire (1985),Drama|Romance +2147,"Clan of the Cave Bear, The (1986)",Adventure|Drama|Fantasy +2148,House (1986),Comedy|Fantasy|Horror +2149,House II: The Second Story (1987),Comedy|Fantasy|Horror +2150,"Gods Must Be Crazy, The (1980)",Adventure|Comedy +2151,"Gods Must Be Crazy II, The (1989)",Comedy +2152,Air Bud: Golden Receiver (1998),Children|Comedy +2153,"Avengers, The (1998)",Action|Adventure +2154,How Stella Got Her Groove Back (1998),Drama|Romance +2155,"Slums of Beverly Hills, The (1998)",Comedy|Drama +2156,"Best Man, The (Testimone dello sposo, Il) (1998)",Comedy|Drama|Romance +2157,"Chambermaid on the Titanic, The (Femme de chambre du Titanic, La) (1998)",Romance +2158,"Henry: Portrait of a Serial Killer, Part 2 (1998)",Crime|Horror +2159,Henry: Portrait of a Serial Killer (1986),Crime|Horror|Thriller +2160,Rosemary's Baby (1968),Drama|Horror|Thriller +2161,"NeverEnding Story, The (1984)",Adventure|Children|Fantasy +2162,"NeverEnding Story II: The Next Chapter, The (1990)",Adventure|Children|Fantasy +2163,Attack of the Killer Tomatoes! (1978),Comedy|Horror +2164,Surf Nazis Must Die (1987),Action|Comedy|Drama|Horror +2165,Your Friends and Neighbors (1998),Comedy|Drama +2166,Return to Paradise (1998),Crime|Drama|Romance|Thriller +2167,Blade (1998),Action|Horror|Thriller +2168,Dance with Me (1998),Drama|Romance +2169,Dead Man on Campus (1998),Comedy +2170,Wrongfully Accused (1998),Action|Comedy +2171,Next Stop Wonderland (1998),Comedy|Drama|Romance +2172,"Strike! (a.k.a. All I Wanna Do, The Hairy Bird) (1998)",Comedy|Drama +2173,"Navigator: A Mediaeval Odyssey, The (1988)",Adventure|Fantasy|Sci-Fi +2174,Beetlejuice (1988),Comedy|Fantasy +2175,Déjà Vu (1997),Drama|Romance +2176,Rope (1948),Crime|Drama|Thriller +2177,Family Plot (1976),Comedy|Thriller +2178,Frenzy (1972),Thriller +2179,Topaz (1969),Thriller +2180,Torn Curtain (1966),Thriller +2181,Marnie (1964),Drama|Mystery|Romance|Thriller +2182,"Wrong Man, The (1956)",Drama|Film-Noir|Thriller +2183,"Man Who Knew Too Much, The (1956)",Adventure|Drama|Mystery|Thriller +2184,"Trouble with Harry, The (1955)",Comedy|Mystery +2185,I Confess (1953),Thriller +2186,Strangers on a Train (1951),Crime|Drama|Film-Noir|Thriller +2187,Stage Fright (1950),Mystery|Romance|Thriller +2188,54 (1998),Drama +2189,I Married A Strange Person! (1997),Animation|Comedy|Fantasy|Sci-Fi +2190,Why Do Fools Fall In Love? (1998),Drama +2191,"Merry War, A (1997)",Comedy +2192,See the Sea (1997),Thriller +2193,Willow (1988),Action|Adventure|Fantasy +2194,"Untouchables, The (1987)",Action|Crime|Drama +2195,Dirty Work (1998),Comedy +2196,Knock Off (1998),Action +2197,Firelight (1997),Drama +2198,Modulations (1998),Documentary +2199,Phoenix (1998),Crime|Drama +2200,Under Capricorn (1949),Drama +2201,"Paradine Case, The (1947)",Drama +2202,Lifeboat (1944),Drama|War +2203,Shadow of a Doubt (1943),Crime|Drama|Thriller +2204,Saboteur (1942),Mystery|Thriller +2205,Mr. & Mrs. Smith (1941),Comedy|Romance +2206,Suspicion (1941),Film-Noir|Mystery|Thriller +2207,Jamaica Inn (1939),Drama +2208,"Lady Vanishes, The (1938)",Drama|Mystery|Thriller +2209,Young and Innocent (1937),Crime|Thriller +2210,Sabotage (1936),Thriller +2211,Secret Agent (1936),Thriller +2212,"Man Who Knew Too Much, The (1934)",Drama|Thriller +2213,Waltzes from Vienna (1933),Comedy|Musical +2214,Number Seventeen (a.k.a. Number 17) (1932),Thriller +2215,Rich and Strange (1931),Comedy|Romance +2216,"Skin Game, The (1931)",Drama +2217,Elstree Calling (1930),Comedy|Musical +2218,Juno and the Paycock (1930),Drama +2219,Murder! (1930),Mystery|Thriller +2220,"Manxman, The (1929)",Drama +2221,Blackmail (1929),Drama|Thriller +2222,Champagne (1928),Comedy +2223,"Farmer's Wife, The (1928)",Comedy +2224,Downhill (1927),Drama +2225,Easy Virtue (1928),Drama +2226,"Ring, The (1927)",Drama +2227,"Lodger: A Story of the London Fog, The (1927)",Crime|Drama|Thriller +2229,"Pleasure Garden, The (1925)",Drama +2230,Always Tell Your Wife (1914),Comedy +2231,Rounders (1998),Drama +2232,Cube (1997),Horror|Mystery|Sci-Fi|Thriller +2233,Digging to China (1998),Drama +2234,Let's Talk About Sex (1998),Drama +2235,One Man's Hero (1999),Drama|War +2236,Simon Birch (1998),Drama +2237,Without Limits (1998),Drama +2238,Seven Beauties (Pasqualino Settebellezze) (1976),Comedy|Drama +2239,Swept Away (Travolti da un insolito destino nell'azzurro mare d'Agosto) (1975),Comedy|Drama +2240,My Bodyguard (1980),Drama +2241,Class (1983),Comedy +2242,"Grandview, U.S.A. (1984)",Drama +2243,Broadcast News (1987),Comedy|Drama|Romance +2244,"Allnighter, The (1987)",Comedy|Romance +2245,Working Girl (1988),Comedy|Drama|Romance +2246,Stars and Bars (1988),Action|Comedy|Romance +2247,Married to the Mob (1988),Comedy +2248,Say Anything... (1989),Comedy|Drama|Romance +2249,My Blue Heaven (1990),Comedy +2250,Men Don't Leave (1990),Drama +2251,"Cabinet of Dr. Ramirez, The (1991)",Comedy +2252,Hero (1992),Comedy|Drama +2253,Toys (1992),Comedy|Fantasy +2254,Choices (1981),Drama +2255,Young Doctors in Love (1982),Comedy +2256,Parasite (1982),Horror|Sci-Fi +2257,No Small Affair (1984),Comedy|Romance +2258,"Master, The (1984)",Action +2259,Blame It on Rio (1984),Comedy|Romance +2260,Wisdom (1986),Crime|Drama +2261,One Crazy Summer (1986),Comedy +2262,About Last Night... (1986),Comedy|Drama|Romance +2263,"Seventh Sign, The (1988)",Drama|Fantasy|Thriller +2264,We're No Angels (1989),Comedy|Crime +2265,Nothing But Trouble (1991),Adventure|Comedy +2266,"Butcher's Wife, The (1991)",Comedy|Romance +2267,Mortal Thoughts (1991),Mystery|Thriller +2268,"Few Good Men, A (1992)",Crime|Drama|Thriller +2269,Indecent Proposal (1993),Drama|Romance +2270,"Century of Cinema, A (1994)",Documentary +2271,Permanent Midnight (1998),Drama +2272,One True Thing (1998),Drama +2273,Rush Hour (1998),Action|Comedy|Crime|Thriller +2274,Lilian's Story (1995),Drama +2275,Six-String Samurai (1998),Action|Adventure|Sci-Fi +2276,"Soldier's Daughter Never Cries, A (1998)",Drama +2277,Somewhere in the City (1998),Comedy|Drama +2278,Ronin (1998),Action|Crime|Thriller +2279,Urban Legend (1998),Horror|Thriller +2280,Clay Pigeons (1998),Crime +2281,Monument Ave. (1998),Action|Crime|Drama +2282,Pecker (1998),Comedy|Drama +2283,"Sheltering Sky, The (1990)",Drama +2284,Bandit Queen (1994),Drama +2285,If.... (1968),Drama +2286,"Fiendish Plot of Dr. Fu Manchu, The (1980)",Comedy +2287,Them! (1954),Horror|Sci-Fi|Thriller +2288,"Thing, The (1982)",Action|Horror|Sci-Fi|Thriller +2289,"Player, The (1992)",Comedy|Crime|Drama +2290,Stardust Memories (1980),Comedy|Drama +2291,Edward Scissorhands (1990),Drama|Fantasy|Romance +2292,Overnight Delivery (1998),Comedy|Romance +2293,Shadrach (1998),Drama +2294,Antz (1998),Adventure|Animation|Children|Comedy|Fantasy +2295,"Impostors, The (1998)",Comedy +2296,"Night at the Roxbury, A (1998)",Comedy +2297,What Dreams May Come (1998),Adventure|Drama|Fantasy|Romance +2298,Strangeland (1998),Thriller +2299,"Battle of the Sexes, The (1959)",Comedy +2300,"Producers, The (1968)",Comedy +2301,History of the World: Part I (1981),Comedy|Musical +2302,My Cousin Vinny (1992),Comedy +2303,Nashville (1975),Drama|Musical +2304,Love Is the Devil (1998),Drama +2305,Slam (1998),Drama +2306,Holy Man (1998),Comedy +2307,One Tough Cop (1998),Action|Crime +2308,Detroit 9000 (1973),Action|Crime +2309,"Inheritors, The (Siebtelbauern, Die) (1998)",Drama|Mystery +2310,"Mighty, The (1998)",Drama +2311,2010: The Year We Make Contact (1984),Sci-Fi +2312,Children of a Lesser God (1986),Drama +2313,"Elephant Man, The (1980)",Drama +2314,Beloved (1998),Drama +2315,Bride of Chucky (Child's Play 4) (1998),Comedy|Horror|Thriller +2316,Practical Magic (1998),Drama|Fantasy|Mystery|Romance +2317,"Alarmist, The (a.k.a. Life During Wartime) (1997)",Comedy +2318,Happiness (1998),Comedy|Drama +2319,Reach the Rock (1998),Comedy|Drama +2320,Apt Pupil (1998),Drama|Thriller +2321,Pleasantville (1998),Comedy|Drama|Fantasy +2322,Soldier (1998),Action|Sci-Fi|War +2323,"Cruise, The (1998)",Documentary +2324,Life Is Beautiful (La Vita è bella) (1997),Comedy|Drama|Romance|War +2325,Orgazmo (1997),Comedy +2326,Shattered Image (1998),Drama|Thriller +2327,Tales from the Darkside: The Movie (1990),Fantasy|Horror|Thriller +2328,Vampires (1998),Horror|Western +2329,American History X (1998),Crime|Drama +2330,Hands on a Hard Body (1996),Comedy|Documentary +2331,Living Out Loud (1998),Comedy|Drama|Romance +2332,Belly (1998),Crime|Drama +2333,Gods and Monsters (1998),Drama +2334,"Siege, The (1998)",Action|Thriller +2335,"Waterboy, The (1998)",Comedy +2336,Elizabeth (1998),Drama +2337,Velvet Goldmine (1998),Drama +2338,I Still Know What You Did Last Summer (1998),Horror|Mystery|Thriller +2339,I'll Be Home For Christmas (1998),Comedy|Romance +2340,Meet Joe Black (1998),Romance +2341,Dancing at Lughnasa (1998),Drama +2342,Hard Core Logo (1996),Comedy|Drama +2343,"Naked Man, The (1998)",Drama +2344,Runaway Train (1985),Action|Adventure|Drama|Thriller +2345,Desert Bloom (1986),Drama +2346,"Stepford Wives, The (1975)",Mystery|Sci-Fi|Thriller +2347,"Pope of Greenwich Village, The (1984)",Drama +2348,Sid and Nancy (1986),Drama +2349,Mona Lisa (1986),Comedy|Thriller +2350,Heart Condition (1990),Comedy +2351,"Nights of Cabiria (Notti di Cabiria, Le) (1957)",Drama +2352,"Big Chill, The (1983)",Comedy|Drama +2353,Enemy of the State (1998),Action|Thriller +2354,"Rugrats Movie, The (1998)",Animation|Children|Comedy +2355,"Bug's Life, A (1998)",Adventure|Animation|Children|Comedy +2356,Celebrity (1998),Comedy +2357,Central Station (Central do Brasil) (1998),Drama +2358,Savior (1998),Drama|War +2359,Waking Ned Devine (a.k.a. Waking Ned) (1998),Comedy +2360,"Celebration, The (Festen) (1998)",Drama +2361,Pink Flamingos (1972),Comedy +2362,Glen or Glenda (1953),Drama +2363,Godzilla (Gojira) (1954),Drama|Horror|Sci-Fi +2364,"Godzilla 1985: The Legend Is Reborn (Gojira) (Godzilla) (Return of Godzilla, The) (1984)",Action|Horror|Sci-Fi|Thriller +2365,King Kong vs. Godzilla (Kingukongu tai Gojira) (1962),Action|Sci-Fi +2366,King Kong (1933),Action|Adventure|Fantasy|Horror +2367,King Kong (1976),Adventure|Fantasy|Romance|Sci-Fi|Thriller +2368,King Kong Lives (1986),Adventure|Sci-Fi +2369,Desperately Seeking Susan (1985),Comedy|Drama|Romance +2370,"Emerald Forest, The (1985)",Action|Adventure|Drama +2371,Fletch (1985),Comedy|Crime|Mystery +2372,Fletch Lives (1989),Comedy +2373,Red Sonja (1985),Action|Adventure|Fantasy +2374,Gung Ho (1986),Comedy|Drama +2375,"Money Pit, The (1986)",Comedy +2376,"View to a Kill, A (1985)",Action|Adventure|Thriller +2377,Lifeforce (1985),Horror|Sci-Fi +2378,Police Academy (1984),Comedy|Crime +2379,Police Academy 2: Their First Assignment (1985),Comedy|Crime +2380,Police Academy 3: Back in Training (1986),Comedy|Crime +2381,Police Academy 4: Citizens on Patrol (1987),Comedy|Crime +2382,Police Academy 5: Assignment: Miami Beach (1988),Comedy|Crime +2383,Police Academy 6: City Under Siege (1989),Comedy|Crime +2384,Babe: Pig in the City (1998),Adventure|Children|Drama +2385,Home Fries (1998),Comedy|Romance +2386,Jerry Springer: Ringmaster (1998),Comedy|Drama +2387,Very Bad Things (1998),Comedy|Crime +2388,Steam: The Turkish Bath (Hamam) (1997),Drama|Romance +2389,Psycho (1998),Crime|Horror|Thriller +2390,Little Voice (1998),Comedy +2391,"Simple Plan, A (1998)",Crime|Drama|Thriller +2392,Jack Frost (1998),Children|Comedy|Drama +2393,Star Trek: Insurrection (1998),Action|Drama|Romance|Sci-Fi +2394,"Prince of Egypt, The (1998)",Animation|Musical +2395,Rushmore (1998),Comedy|Drama +2396,Shakespeare in Love (1998),Comedy|Drama|Romance +2397,Mass Appeal (1984),Drama +2398,Miracle on 34th Street (1947),Comedy|Drama +2399,Santa Claus: The Movie (1985),Adventure|Children|Fantasy +2400,Prancer (1989),Children|Drama|Fantasy +2401,Pale Rider (1985),Western +2402,Rambo: First Blood Part II (1985),Action|Adventure|Thriller +2403,First Blood (Rambo: First Blood) (1982),Action|Adventure|Drama|Thriller +2404,Rambo III (1988),Action|Adventure|Thriller|War +2405,"Jewel of the Nile, The (1985)",Action|Adventure|Comedy|Romance +2406,Romancing the Stone (1984),Action|Adventure|Comedy|Romance +2407,Cocoon (1985),Comedy|Sci-Fi +2408,Cocoon: The Return (1988),Comedy|Sci-Fi +2409,Rocky II (1979),Action|Drama +2410,Rocky III (1982),Action|Drama +2411,Rocky IV (1985),Action|Drama +2412,Rocky V (1990),Action|Drama +2413,Clue (1985),Comedy|Crime|Mystery|Thriller +2414,Young Sherlock Holmes (1985),Action|Adventure|Children|Fantasy|Mystery|Thriller +2415,Violets Are Blue... (1986),Drama|Romance +2416,Back to School (1986),Comedy +2417,Heartburn (1986),Comedy|Drama +2418,Nothing in Common (1986),Comedy +2419,Extremities (1986),Drama|Thriller +2420,"Karate Kid, The (1984)",Drama +2421,"Karate Kid, Part II, The (1986)",Action|Adventure|Drama +2422,"Karate Kid, Part III, The (1989)",Action|Adventure|Children|Drama +2423,Christmas Vacation (National Lampoon's Christmas Vacation) (1989),Comedy +2424,You've Got Mail (1998),Comedy|Romance +2425,"General, The (1998)",Crime +2426,"Theory of Flight, The (1998)",Comedy|Drama|Romance +2427,"Thin Red Line, The (1998)",Action|Drama|War +2428,"Faculty, The (1998)",Horror|Sci-Fi +2429,Mighty Joe Young (1998),Action|Adventure|Drama|Fantasy|Thriller +2430,Mighty Joe Young (1949),Adventure|Children|Drama +2431,Patch Adams (1998),Comedy|Drama +2432,Stepmom (1998),Drama +2433,"Civil Action, A (1998)",Drama +2434,Down in the Delta (1998),Drama +2435,Hurlyburly (1998),Drama +2436,Tea with Mussolini (1999),Comedy|Drama|War +2437,Wilde (1997),Drama +2438,Outside Ozona (1998),Comedy|Drama|Thriller +2439,Affliction (1997),Drama +2440,Another Day in Paradise (1998),Drama +2441,"Hi-Lo Country, The (1998)",Drama|Romance|Western +2442,Hilary and Jackie (1998),Drama +2443,Playing by Heart (1998),Drama|Romance +2444,24 7: Twenty Four Seven (1997),Comedy|Drama +2445,At First Sight (1999),Drama +2446,In Dreams (1999),Horror|Thriller +2447,Varsity Blues (1999),Comedy|Drama +2448,Virus (1999),Horror|Sci-Fi +2449,"Garbage Pail Kids Movie, The (1987)",Adventure|Children|Comedy +2450,Howard the Duck (1986),Adventure|Comedy|Sci-Fi +2451,"Gate, The (1987)",Horror +2452,"Gate II: Trespassers, The (1990)",Horror +2453,"Boy Who Could Fly, The (1986)",Drama|Fantasy +2454,"Fly, The (1958)",Horror|Mystery|Sci-Fi +2455,"Fly, The (1986)",Drama|Horror|Sci-Fi|Thriller +2456,"Fly II, The (1989)",Horror|Sci-Fi +2457,Running Scared (1986),Action|Comedy +2458,Armed and Dangerous (1986),Comedy|Crime +2459,"Texas Chainsaw Massacre, The (1974)",Horror +2460,"Texas Chainsaw Massacre 2, The (1986)",Horror +2461,Leatherface: Texas Chainsaw Massacre III (1990),Comedy|Horror|Thriller +2462,Texas Chainsaw Massacre: The Next Generation (a.k.a. The Return of the Texas Chainsaw Massacre) (1994),Horror +2463,Ruthless People (1986),Comedy +2464,Trick or Treat (1986),Horror +2465,Deadly Friend (1986),Horror +2466,Belizaire the Cajun (1986),Drama +2467,"Name of the Rose, The (Name der Rose, Der) (1986)",Crime|Drama|Mystery|Thriller +2468,Jumpin' Jack Flash (1986),Action|Comedy|Romance|Thriller +2469,Peggy Sue Got Married (1986),Comedy|Drama +2470,Crocodile Dundee (1986),Adventure|Comedy +2471,Crocodile Dundee II (1988),Action|Adventure|Comedy +2472,Tough Guys (1986),Comedy +2473,Soul Man (1986),Comedy +2474,"Color of Money, The (1986)",Drama +2475,52 Pick-Up (1986),Action|Mystery|Thriller +2476,Heartbreak Ridge (1986),Action|War +2477,Firewalker (1986),Adventure +2478,¡Three Amigos! (1986),Comedy|Western +2479,Gloria (1999),Drama|Thriller +2480,Dry Cleaning (Nettoyage à sec) (1997),Drama +2481,My Name Is Joe (1998),Drama|Romance +2482,Still Crazy (1998),Comedy|Romance +2483,"Day of the Beast, The (Día de la Bestia, El) (1995)",Adventure|Comedy|Thriller +2484,Tinseltown (1997),Comedy|Crime|Drama +2485,She's All That (1999),Comedy|Romance +2486,"24 Hour Woman, The (1998)",Comedy|Drama +2487,"Blood, Guts, Bullets and Octane (1998)",Action|Comedy +2488,Peeping Tom (1960),Drama|Horror|Thriller +2489,Spanish Fly (1998),Drama +2490,Payback (1999),Action|Thriller +2491,Simply Irresistible (1999),Comedy|Romance +2492,20 Dates (1998),Comedy|Romance +2493,"Harmonists, The (1997)",Drama +2494,"Last Days, The (1998)",Documentary +2495,"Fantastic Planet, The (Planète sauvage, La) (1973)",Animation|Sci-Fi +2496,Blast from the Past (1999),Comedy|Romance +2497,Message in a Bottle (1999),Romance +2498,My Favorite Martian (1999),Comedy|Sci-Fi +2499,God Said 'Ha!' (1998),Comedy +2500,Jawbreaker (1999),Comedy +2501,October Sky (1999),Drama +2502,Office Space (1999),Comedy|Crime +2503,"Apple, The (Sib) (1998)",Drama +2504,200 Cigarettes (1999),Comedy|Drama +2505,8MM (1999),Drama|Mystery|Thriller +2506,"Other Sister, The (1999)",Comedy|Drama|Romance +2507,Breakfast of Champions (1999),Comedy|Sci-Fi +2508,"Breaks, The (1999)",Comedy +2509,Eight Days a Week (1997),Comedy +2510,Just the Ticket (1999),Comedy|Romance +2511,"Long Goodbye, The (1973)",Crime|Film-Noir +2512,"Ballad of Narayama, The (Narayama bushiko) (1983)",Drama +2513,Pet Sematary (1989),Horror +2514,Pet Sematary II (1992),Comedy|Horror +2515,Children of the Corn II: The Final Sacrifice (1993),Horror +2516,Children of the Corn III (1994),Horror +2517,Christine (1983),Horror +2518,Night Shift (1982),Comedy +2519,House on Haunted Hill (1959),Drama|Horror|Thriller +2520,Airport (1970),Drama +2521,Airport 1975 (1974),Action|Drama|Thriller +2522,Airport '77 (1977),Drama +2523,Rollercoaster (1977),Drama|Thriller +2524,"Towering Inferno, The (1974)",Action|Adventure|Drama|Thriller +2525,Alligator (1980),Action|Horror|Sci-Fi +2526,Meteor (1979),Sci-Fi +2527,Westworld (1973),Action|Sci-Fi|Thriller|Western +2528,Logan's Run (1976),Action|Adventure|Sci-Fi +2529,Planet of the Apes (1968),Action|Drama|Sci-Fi +2530,Beneath the Planet of the Apes (1970),Action|Sci-Fi +2531,Battle for the Planet of the Apes (1973),Action|Sci-Fi +2532,Conquest of the Planet of the Apes (1972),Action|Sci-Fi +2533,Escape from the Planet of the Apes (1971),Action|Sci-Fi +2534,Avalanche (1978),Action +2535,Earthquake (1974),Action|Drama|Thriller +2536,"Concorde: Airport '79, The (1979)",Drama +2537,Beyond the Poseidon Adventure (1979),Adventure +2538,Dancemaker (1998),Documentary +2539,Analyze This (1999),Comedy +2540,"Corruptor, The (1999)",Action|Crime|Drama|Thriller +2541,Cruel Intentions (1999),Drama +2542,"Lock, Stock & Two Smoking Barrels (1998)",Comedy|Crime|Thriller +2543,Six Ways to Sunday (1997),Comedy +2544,"School of Flesh, The (École de la chair, L') (1998)",Drama|Romance +2545,Relax... It's Just Sex (1998),Comedy +2546,"Deep End of the Ocean, The (1999)",Drama +2547,Harvest (1998),Drama +2548,"Rage: Carrie 2, The (1999)",Horror +2549,Wing Commander (1999),Action|Sci-Fi +2550,"Haunting, The (1963)",Horror|Thriller +2551,Dead Ringers (1988),Drama|Horror|Thriller +2552,My Boyfriend's Back (1993),Comedy +2553,Village of the Damned (1960),Horror|Sci-Fi|Thriller +2554,Children of the Damned (1963),Horror|Sci-Fi|Thriller +2555,Baby Geniuses (1999),Comedy +2556,Telling You (1998),Comedy|Drama|Romance +2557,I Stand Alone (Seul contre tous) (1998),Drama|Thriller +2558,Forces of Nature (1999),Comedy|Romance +2559,"King and I, The (1999)",Animation|Children +2560,Ravenous (1999),Horror|Thriller +2561,True Crime (1999),Crime|Thriller +2562,Bandits (1997),Drama +2563,Dangerous Beauty (1998),Drama +2564,"Empty Mirror, The (1996)",Drama +2565,"King and I, The (1956)",Drama|Musical|Romance +2566,Doug's 1st Movie (1999),Animation|Children +2567,EDtv (1999),Comedy +2568,"Mod Squad, The (1999)",Action|Crime +2569,Among Giants (1998),Comedy|Drama|Romance +2570,"Walk on the Moon, A (1999)",Drama|Romance +2571,"Matrix, The (1999)",Action|Sci-Fi|Thriller +2572,10 Things I Hate About You (1999),Comedy|Romance +2573,Tango (1998),Drama|Musical +2574,"Out-of-Towners, The (1999)",Comedy +2575,"Dreamlife of Angels, The (Vie rêvée des anges, La) (1998)",Drama +2576,"Love, etc. (1996)",Drama +2577,Metroland (1997),Comedy|Drama +2578,"Sticky Fingers of Time, The (1997)",Sci-Fi +2579,Following (1998),Crime|Mystery|Thriller +2580,Go (1999),Comedy|Crime +2581,Never Been Kissed (1999),Comedy|Romance +2582,Twin Dragons (Shuang long hui) (1992),Action|Comedy +2583,Cookie's Fortune (1999),Comedy|Drama +2584,Foolish (1999),Comedy +2585,"Lovers of the Arctic Circle, The (Los Amantes del Círculo Polar) (1998)",Drama|Romance +2586,Goodbye Lover (1999),Comedy|Crime|Thriller +2587,Life (1999),Comedy|Crime|Drama +2588,Cloudland (1998),Animation +2589,Friends & Lovers (1999),Comedy|Drama|Romance +2590,Hideous Kinky (1998),Drama +2591,Jeanne and the Perfect Guy (Jeanne et le garçon formidable) (1998),Comedy|Drama|Romance +2592,"Joyriders, The (1999)",Drama +2593,"Monster, The (Mostro, Il) (1994)",Comedy +2594,Open Your Eyes (Abre los ojos) (1997),Drama|Romance|Sci-Fi|Thriller +2595,Photographer (Fotoamator) (1998),Documentary +2596,SLC Punk! (1998),Comedy|Drama +2597,Lost & Found (1999),Comedy|Romance +2598,Pushing Tin (1999),Comedy +2599,Election (1999),Comedy +2600,eXistenZ (1999),Action|Sci-Fi|Thriller +2601,"Little Bit of Soul, A (1998)",Comedy +2602,Mighty Peking Man (a.k.a. Goliathon) (Xing xing wang) (1977),Action|Adventure|Horror|Sci-Fi +2603,Nô (1998),Drama +2604,Let it Come Down: The Life of Paul Bowles (1998),Documentary +2605,Entrapment (1999),Crime|Thriller +2606,Idle Hands (1999),Comedy|Horror +2607,Get Real (1998),Drama|Romance +2608,Heaven (1998),Thriller +2609,"King of Masks, The (Bian Lian) (1996)",Drama +2610,Three Seasons (1999),Drama +2611,"Winslow Boy, The (1999)",Drama +2612,Mildred Pierce (1945),Drama|Film-Noir +2613,Night of the Comet (1984),Comedy|Horror|Sci-Fi +2614,Chopping Mall (a.k.a. Killbots) (1986),Action|Horror|Sci-Fi +2615,My Science Project (1985),Adventure|Sci-Fi +2616,Dick Tracy (1990),Action|Crime +2617,"Mummy, The (1999)",Action|Adventure|Comedy|Fantasy|Horror|Thriller +2618,"Castle, The (1997)",Comedy +2619,Mascara (1999),Drama +2620,This Is My Father (1998),Drama|Romance +2621,Xiu Xiu: The Sent-Down Girl (Tian yu) (1998),Drama +2622,William Shakespeare's A Midsummer Night's Dream (1999),Comedy|Fantasy +2623,Trippin' (1999),Comedy +2624,After Life (Wandafuru raifu) (1998),Drama|Fantasy +2625,Black Mask (Hak hap) (1996),Action|Adventure|Crime|Sci-Fi|Thriller +2626,Edge of Seventeen (1998),Comedy|Drama|Romance +2627,Endurance (1999),Documentary|Drama +2628,Star Wars: Episode I - The Phantom Menace (1999),Action|Adventure|Sci-Fi +2629,"Love Letter, The (1999)",Comedy|Romance +2630,Besieged (a.k.a. L' Assedio) (1998),Drama +2631,Frogs for Snakes (1998),Comedy|Film-Noir|Thriller +2632,"Saragossa Manuscript, The (Rekopis znaleziony w Saragossie) (1965)",Adventure|Drama|Mystery +2633,"Mummy, The (1932)",Horror|Romance +2634,"Mummy, The (1959)",Horror +2635,"Mummy's Curse, The (1944)",Horror +2636,"Mummy's Ghost, The (1944)",Horror +2637,"Mummy's Hand, The (1940)",Horror +2638,"Mummy's Tomb, The (1942)",Horror +2639,Mommie Dearest (1981),Drama +2640,Superman (1978),Action|Adventure|Sci-Fi +2641,Superman II (1980),Action|Sci-Fi +2642,Superman III (1983),Action|Adventure|Sci-Fi +2643,Superman IV: The Quest for Peace (1987),Action|Adventure|Sci-Fi +2644,Dracula (1931),Horror +2646,House of Dracula (1945),Horror +2647,House of Frankenstein (1944),Horror +2648,Frankenstein (1931),Drama|Horror|Sci-Fi +2649,Son of Frankenstein (1939),Horror +2650,"Ghost of Frankenstein, The (1942)",Horror +2651,Frankenstein Meets the Wolf Man (1943),Horror +2652,"Curse of Frankenstein, The (1957)",Horror +2653,Son of Dracula (1943),Horror +2654,"Wolf Man, The (1941)",Drama|Fantasy|Horror +2655,Howling II: Your Sister Is a Werewolf (1985),Horror +2656,Tarantula (1955),Horror|Sci-Fi +2657,"Rocky Horror Picture Show, The (1975)",Comedy|Horror|Musical|Sci-Fi +2658,"Flying Saucer, The (1950)",Sci-Fi +2659,It Came from Hollywood (1982),Comedy|Documentary +2660,"Thing from Another World, The (1951)",Horror|Sci-Fi +2661,It Came from Outer Space (1953),Sci-Fi +2662,"War of the Worlds, The (1953)",Action|Drama|Sci-Fi +2663,It Came from Beneath the Sea (1955),Sci-Fi +2664,Invasion of the Body Snatchers (1956),Horror|Sci-Fi|Thriller +2665,Earth vs. the Flying Saucers (1956),Sci-Fi +2666,It Conquered the World (1956),Sci-Fi +2667,"Mole People, The (1956)",Horror|Sci-Fi +2668,Swamp Thing (1982),Horror|Sci-Fi +2669,Pork Chop Hill (1959),War +2670,Run Silent Run Deep (1958),War +2671,Notting Hill (1999),Comedy|Romance +2672,"Thirteenth Floor, The (1999)",Drama|Sci-Fi|Thriller +2673,Eternity and a Day (Mia aoniotita kai mia mera) (1998),Drama +2674,"Loss of Sexual Innocence, The (1999)",Drama|Fantasy +2675,"Twice Upon a Yesterday (a.k.a. Man with Rain in His Shoes, The) (1998)",Comedy|Drama|Romance +2676,Instinct (1999),Drama|Thriller +2677,Buena Vista Social Club (1999),Documentary|Musical +2678,Desert Blue (1998),Drama +2679,Finding North (1998),Comedy|Drama|Romance +2680,Floating (1997),Drama +2681,Free Enterprise (1998),Comedy|Romance|Sci-Fi +2682,Limbo (1999),Drama +2683,Austin Powers: The Spy Who Shagged Me (1999),Action|Adventure|Comedy +2684,Promise Her Anything (1999),Comedy|Drama +2685,"Red Dwarf, The (Nain rouge, Le) (1998)",Comedy|Drama +2686,"Red Violin, The (Violon rouge, Le) (1998)",Drama|Mystery +2687,Tarzan (1999),Adventure|Animation|Children|Drama +2688,"General's Daughter, The (1999)",Crime|Drama|Mystery|Thriller +2689,Get Bruce (1999),Documentary +2690,"Ideal Husband, An (1999)",Comedy|Romance +2691,"Legend of 1900, The (a.k.a. The Legend of the Pianist on the Ocean) (Leggenda del pianista sull'oceano) (1998)",Drama +2692,Run Lola Run (Lola rennt) (1998),Action|Crime +2693,Trekkies (1997),Documentary +2694,Big Daddy (1999),Comedy +2695,"Boys, The (1998)",Drama +2696,"Dinner Game, The (Dîner de cons, Le) (1998)",Comedy +2697,My Son the Fanatic (1997),Comedy|Drama|Romance +2698,Zone 39 (1997),Sci-Fi +2699,Arachnophobia (1990),Comedy|Horror +2700,"South Park: Bigger, Longer and Uncut (1999)",Animation|Comedy|Musical +2701,Wild Wild West (1999),Action|Comedy|Sci-Fi|Western +2702,Summer of Sam (1999),Drama +2703,Broken Vessels (1998),Drama +2704,"Lovers on the Bridge, The (Amants du Pont-Neuf, Les) (1991)",Drama|Romance +2705,"Late August, Early September (Fin août, début septembre) (1998)",Drama +2706,American Pie (1999),Comedy|Romance +2707,Arlington Road (1999),Thriller +2708,"Autumn Tale, An (Conte d'automne) (1998)",Romance +2709,Muppets From Space (1999),Children|Comedy +2710,"Blair Witch Project, The (1999)",Drama|Horror|Thriller +2711,My Life So Far (1999),Drama +2712,Eyes Wide Shut (1999),Drama|Mystery|Thriller +2713,Lake Placid (1999),Horror|Thriller +2714,"Wood, The (1999)",Drama +2715,"Velocity of Gary, The (1998)",Comedy|Romance +2716,Ghostbusters (a.k.a. Ghost Busters) (1984),Action|Comedy|Sci-Fi +2717,Ghostbusters II (1989),Comedy|Fantasy|Sci-Fi +2718,Drop Dead Gorgeous (1999),Comedy +2719,"Haunting, The (1999)",Horror|Thriller +2720,Inspector Gadget (1999),Action|Adventure|Children|Comedy +2721,Trick (1999),Comedy|Romance +2722,Deep Blue Sea (1999),Action|Horror|Sci-Fi|Thriller +2723,Mystery Men (1999),Action|Comedy|Fantasy +2724,Runaway Bride (1999),Comedy|Romance +2725,Twin Falls Idaho (1999),Drama +2726,"Killing, The (1956)",Crime|Film-Noir +2727,Killer's Kiss (1955),Crime|Film-Noir +2728,Spartacus (1960),Action|Drama|Romance|War +2729,Lolita (1962),Drama|Romance +2730,Barry Lyndon (1975),Drama|Romance|War +2731,"400 Blows, The (Les quatre cents coups) (1959)",Crime|Drama +2732,Jules and Jim (Jules et Jim) (1961),Drama|Romance +2733,Vibes (1988),Adventure|Comedy|Romance +2734,"Mosquito Coast, The (1986)",Adventure|Drama|Thriller +2735,"Golden Child, The (1986)",Action|Adventure|Comedy|Fantasy|Mystery +2736,Brighton Beach Memoirs (1986),Comedy +2737,Assassination (1987),Action|Drama|Thriller +2738,Crimes of the Heart (1986),Comedy|Drama +2739,"Color Purple, The (1985)",Drama +2740,"Kindred, The (1986)",Horror|Sci-Fi +2741,No Mercy (1986),Action|Crime|Thriller +2742,Ménage (Tenue de soirée) (1986),Comedy|Drama +2743,Native Son (1986),Drama +2744,Otello (1986),Drama +2745,"Mission, The (1986)",Drama +2746,Little Shop of Horrors (1986),Comedy|Horror|Musical +2747,"Little Shop of Horrors, The (1960)",Comedy|Horror +2748,Allan Quatermain and the Lost City of Gold (1987),Action|Adventure|Comedy +2749,"Morning After, The (1986)",Drama|Mystery +2750,Radio Days (1987),Comedy|Drama +2751,From the Hip (1987),Comedy|Drama +2752,Outrageous Fortune (1987),Comedy|Mystery +2753,"Bedroom Window, The (1987)",Thriller +2754,Deadtime Stories (1987),Horror +2755,Light of Day (1987),Drama +2756,Wanted: Dead or Alive (1987),Action +2757,Frances (1982),Drama +2758,Plenty (1985),Drama +2759,Dick (1999),Comedy +2760,"Gambler, The (Játékos, A) (1997)",Drama +2761,"Iron Giant, The (1999)",Adventure|Animation|Children|Drama|Sci-Fi +2762,"Sixth Sense, The (1999)",Drama|Horror|Mystery +2763,"Thomas Crown Affair, The (1999)",Action|Mystery +2764,"Thomas Crown Affair, The (1968)",Crime|Drama|Romance|Thriller +2765,"Acid House, The (1998)",Comedy|Drama +2766,"Adventures of Sebastian Cole, The (1998)",Comedy|Drama +2767,Illuminata (1998),Comedy +2768,Stiff Upper Lips (1998),Comedy +2769,"Yards, The (2000)",Crime|Drama +2770,Bowfinger (1999),Comedy +2771,Brokedown Palace (1999),Drama +2772,Detroit Rock City (1999),Comedy +2773,Alice and Martin (Alice et Martin) (1998),Drama +2774,Better Than Chocolate (1999),Comedy|Romance +2775,Head On (1998),Drama +2776,"Marcello Mastroianni: I Remember Yes, I Remember (Marcello Mastroianni: mi ricordo, sì, io mi ricordo) (1997)",Documentary +2777,Cobra (1925),Drama +2778,Never Talk to Strangers (1995),Crime|Drama|Romance|Thriller +2779,Heaven Can Wait (1978),Comedy +2780,"Raven, The (1963)",Comedy|Horror +2781,"Tingler, The (1959)",Horror +2782,Pit and the Pendulum (1961),Horror +2783,"Tomb of Ligeia, The (1965)",Horror +2784,"Masque of the Red Death, The (1964)",Horror +2785,Tales of Terror (1962),Horror +2786,Haunted Honeymoon (1986),Comedy +2787,Cat's Eye (1985),Horror +2788,Monty Python's And Now for Something Completely Different (1971),Comedy +2789,Damien: Omen II (1978),Horror +2790,"Final Conflict, The (a.k.a. Omen III: The Final Conflict) (1981)",Horror|Thriller +2791,Airplane! (1980),Comedy +2792,Airplane II: The Sequel (1982),Comedy +2793,"American Werewolf in Paris, An (1997)",Comedy|Horror|Romance|Thriller +2794,European Vacation (aka National Lampoon's European Vacation) (1985),Adventure|Comedy|Romance +2795,National Lampoon's Vacation (1983),Comedy +2796,Funny Farm (1988),Comedy +2797,Big (1988),Comedy|Drama|Fantasy|Romance +2798,Problem Child (1990),Children|Comedy +2799,Problem Child 2 (1991),Comedy +2800,Little Nemo: Adventures in Slumberland (1992),Adventure|Animation|Children|Drama|Fantasy +2801,Oscar and Lucinda (a.k.a. Oscar & Lucinda) (1997),Drama|Romance +2802,Tequila Sunrise (1988),Action|Drama|Romance|Thriller +2803,"Pelican Brief, The (1993)",Crime|Drama|Mystery|Romance|Thriller +2804,"Christmas Story, A (1983)",Children|Comedy +2805,Mickey Blue Eyes (1999),Comedy|Romance +2806,Teaching Mrs. Tingle (1999),Comedy|Thriller +2807,Universal Soldier: The Return (1999),Action|Sci-Fi +2808,Universal Soldier (1992),Action|Sci-Fi +2809,Love Stinks (1999),Comedy +2810,Perfect Blue (1997),Animation|Horror|Mystery|Thriller +2811,With Friends Like These... (1998),Comedy +2812,In Too Deep (1999),Action|Thriller +2813,"Source, The (1999)",Documentary +2814,"Bat, The (1959)",Horror +2815,Iron Eagle (1986),Action|War +2816,Iron Eagle II (1988),Action|War +2817,Aces: Iron Eagle III (1992),Action +2818,Iron Eagle IV (1995),Action|War +2819,Three Days of the Condor (3 Days of the Condor) (1975),Drama|Mystery|Romance|Thriller +2820,Hamlet (1964),Drama +2821,Male and Female (1919),Adventure|Drama +2822,Medicine Man (1992),Adventure|Romance +2823,"Spiders Part 1: The Golden Lake, The (Die Spinnen, 1. Teil: Der Goldene See) (1919)",Action|Adventure|Drama +2824,On the Ropes (1999),Documentary|Drama +2825,Rosie (1998),Drama +2826,"13th Warrior, The (1999)",Action|Adventure|Fantasy +2827,"Astronaut's Wife, The (1999)",Horror|Sci-Fi|Thriller +2828,Dudley Do-Right (1999),Children|Comedy +2829,"Muse, The (1999)",Comedy +2830,Cabaret Balkan (Bure Baruta) (1998),Drama +2831,A Dog of Flanders (1999),Children|Drama +2832,"Lost Son, The (1999)",Drama +2833,Lucie Aubrac (1997),Romance|War +2834,"Very Thought of You, The (1998)",Comedy|Romance +2835,Chill Factor (1999),Action|Adventure|Comedy|Thriller +2836,Outside Providence (1999),Comedy +2837,Bedrooms & Hallways (1998),Comedy|Romance +2838,I Woke Up Early the Day I Died (1998),Comedy|Crime|Thriller +2839,West Beirut (West Beyrouth) (1998),Drama +2840,Stigmata (1999),Drama|Thriller +2841,Stir of Echoes (1999),Horror|Mystery|Thriller +2842,Best Laid Plans (1999),Crime|Drama +2843,"Black Cat, White Cat (Crna macka, beli macor) (1998)",Comedy|Romance +2844,"Minus Man, The (1999)",Drama|Mystery +2845,Whiteboyz (1999),Comedy|Drama +2846,"Adventures of Milo and Otis, The (Koneko monogatari) (1986)",Adventure|Children|Comedy|Drama +2847,Only Angels Have Wings (1939),Adventure|Drama|Romance +2848,"Othello (Tragedy of Othello: The Moor of Venice, The) (1952)",Drama +2849,Queens Logic (1991),Comedy|Drama +2850,Public Access (1993),Drama|Thriller +2851,Saturn 3 (1980),Adventure|Sci-Fi|Thriller +2852,"Soldier's Story, A (1984)",Drama +2853,"Alice, Sweet Alice (a.k.a. Communion) (a.k.a. Holy Terror) (1976)",Horror|Mystery +2854,Don't Look in the Basement! (1973),Horror +2855,Nightmares (1983),Horror +2856,I Saw What You Did (1965),Thriller +2857,Yellow Submarine (1968),Adventure|Animation|Comedy|Fantasy|Musical +2858,American Beauty (1999),Drama|Romance +2859,Stop Making Sense (1984),Documentary|Musical +2860,Blue Streak (1999),Comedy +2861,For Love of the Game (1999),Comedy|Drama +2862,Caligula (1979),Drama +2863,"Hard Day's Night, A (1964)",Adventure|Comedy|Musical +2864,Splendor (1999),Comedy +2865,Sugar Town (1999),Comedy +2866,"Buddy Holly Story, The (1978)",Drama +2867,Fright Night (1985),Comedy|Horror|Thriller +2868,Fright Night Part II (1988),Horror +2869,"Separation, The (Séparation, La) (1994)",Drama +2870,Barefoot in the Park (1967),Comedy +2871,Deliverance (1972),Adventure|Drama|Thriller +2872,Excalibur (1981),Adventure|Fantasy +2873,Lulu on the Bridge (1998),Drama|Mystery|Romance +2874,"Pajama Game, The (1957)",Comedy|Musical|Romance +2875,Sommersby (1993),Drama|Mystery|Romance +2876,Thumbelina (1994),Animation|Children|Fantasy +2877,Tommy (1975),Musical +2878,Hell Night (1981),Horror +2879,Armour of God II: Operation Condor (Operation Condor) (Fei ying gai wak) (1991),Action|Adventure|Comedy +2880,Armour of God (Long xiong hu di) (1987),Action|Adventure|Comedy +2881,Double Jeopardy (1999),Action|Crime|Drama|Thriller +2882,Jakob the Liar (1999),Drama +2883,Mumford (1999),Comedy|Drama +2884,Dog Park (1998),Comedy|Romance +2885,Guinevere (1999),Drama|Romance +2886,"Adventures of Elmo in Grouchland, The (1999)",Children|Comedy +2887,Simon Sez (1999),Action|Comedy +2888,Drive Me Crazy (1999),Comedy|Romance +2889,"Mystery, Alaska (1999)",Comedy|Drama +2890,Three Kings (1999),Action|Adventure|Comedy|Drama|War +2891,"Happy, Texas (1999)",Comedy +2892,New Rose Hotel (1998),Action|Drama +2893,Plunkett & MaCleane (1999),Action|Adventure|Drama +2894,Romance (1999),Drama|Romance +2895,Napoleon and Samantha (1972),Adventure|Drama +2896,Alvarez Kelly (1966),Western +2897,And the Ship Sails On (E la nave va) (1983),Comedy|War +2898,"Dark Half, The (1993)",Horror|Mystery +2899,Gulliver's Travels (1939),Adventure|Animation|Children +2900,Monkey Shines (1988),Horror|Sci-Fi +2901,Phantasm (1979),Horror|Sci-Fi +2902,Psycho II (1983),Horror|Mystery|Thriller +2903,Psycho III (1986),Horror|Thriller +2904,Rain (1932),Drama +2905,Sanjuro (Tsubaki Sanjûrô) (1962),Action|Adventure|Drama +2906,Random Hearts (1999),Drama|Romance +2907,Superstar (1999),Comedy +2908,Boys Don't Cry (1999),Drama +2909,"Five Wives, Three Secretaries and Me (1998)",Documentary +2910,"Ennui, L' (1998)",Drama|Romance +2911,"Grandfather, The (Abuelo, El) (1998)",Drama +2912,"Limey, The (1999)",Crime|Drama|Thriller +2913,The Mating Habits of the Earthbound Human (1999),Comedy|Sci-Fi +2914,Molly (1999),Comedy|Drama +2915,Risky Business (1983),Comedy +2916,Total Recall (1990),Action|Adventure|Sci-Fi|Thriller +2917,Body Heat (1981),Crime|Thriller +2918,Ferris Bueller's Day Off (1986),Comedy +2919,"Year of Living Dangerously, The (1982)",Drama|Romance|War +2920,Children of Paradise (Les enfants du paradis) (1945),Drama|Romance +2921,High Plains Drifter (1973),Western +2922,Hang 'Em High (1968),Crime|Drama|Western +2923,Handle with Care (a.k.a. Citizen's Band) (1977),Comedy +2924,Drunken Master (Jui kuen) (1978),Action|Comedy +2925,"Conformist, The (Conformista, Il) (1970)",Drama +2926,Hairspray (1988),Comedy|Drama +2927,Brief Encounter (1946),Drama|Romance +2928,"Razor's Edge, The (1984)",Drama +2929,Reds (1981),Drama|Romance +2930,Return with Honor (1998),Documentary +2931,Time of the Gypsies (Dom za vesanje) (1989),Comedy|Crime|Drama|Fantasy +2932,Days of Heaven (1978),Drama +2933,"Fire Within, The (Feu follet, Le) (1963)",Drama +2934,"Amor brujo, El (Love Bewitched, A) (1986)",Drama|Musical +2935,"Lady Eve, The (1941)",Comedy|Romance +2936,Sullivan's Travels (1941),Adventure|Comedy|Romance +2937,"Palm Beach Story, The (1942)",Comedy +2938,Man Facing Southeast (1986),Drama|Sci-Fi +2939,Niagara (1953),Drama|Thriller +2940,Gilda (1946),Drama|Film-Noir|Mystery|Romance +2941,South Pacific (1958),Musical|Romance|War +2942,Flashdance (1983),Drama|Romance +2943,Indochine (1992),Drama|Romance +2944,"Dirty Dozen, The (1967)",Action|Drama|War +2945,Mike's Murder (1984),Mystery +2946,Help! (1965),Comedy|Musical +2947,Goldfinger (1964),Action|Adventure|Thriller +2948,From Russia with Love (1963),Action|Adventure|Thriller +2949,Dr. No (1962),Action|Adventure|Thriller +2950,"Blue Lagoon, The (1980)",Adventure|Drama|Romance +2951,"Fistful of Dollars, A (Per un pugno di dollari) (1964)",Action|Western +2952,Sydney (Hard Eight) (1996),Crime|Drama|Thriller +2953,Home Alone 2: Lost in New York (1992),Children|Comedy +2954,Penitentiary (1979),Drama +2955,Penitentiary II (1982),Drama +2956,Someone to Watch Over Me (1987),Action|Crime|Thriller +2957,Sparrows (1926),Drama +2958,Naturally Native (1998),Drama +2959,Fight Club (1999),Action|Crime|Drama|Thriller +2960,Beefcake (1999),Drama +2961,"Story of Us, The (1999)",Comedy|Drama +2962,Fever Pitch (1997),Comedy|Romance +2963,Joe the King (1999),Crime|Drama +2964,Julien Donkey-Boy (1999),Drama +2965,"Omega Code, The (1999)",Action +2966,"Straight Story, The (1999)",Adventure|Drama +2967,"Bad Seed, The (1956)",Drama|Thriller +2968,Time Bandits (1981),Adventure|Comedy|Fantasy|Sci-Fi +2969,"Man and a Woman, A (Un homme et une femme) (1966)",Drama|Romance +2970,Fitzcarraldo (1982),Adventure|Drama +2971,All That Jazz (1979),Drama|Fantasy|Musical +2972,Red Sorghum (Hong gao liang) (1987),Drama|War +2973,Crimes and Misdemeanors (1989),Comedy|Crime|Drama +2974,Bats (1999),Horror|Thriller +2975,"Best Man, The (1999)",Comedy|Drama +2976,Bringing Out the Dead (1999),Drama +2977,Crazy in Alabama (1999),Comedy|Drama +2978,Three to Tango (1999),Comedy|Romance +2979,Body Shots (1999),Drama +2980,Men Cry Bullets (1997),Comedy|Drama +2981,"Brother, Can You Spare a Dime? (1975)",Documentary +2982,"Guardian, The (1990)",Horror|Thriller +2983,"Ipcress File, The (1965)",Thriller +2984,On Any Sunday (1971),Documentary +2985,RoboCop (1987),Action|Crime|Drama|Sci-Fi|Thriller +2986,RoboCop 2 (1990),Action|Crime|Sci-Fi|Thriller +2987,Who Framed Roger Rabbit? (1988),Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery +2988,Melvin and Howard (1980),Drama +2989,For Your Eyes Only (1981),Action|Adventure|Thriller +2990,Licence to Kill (1989),Action|Adventure|Thriller +2991,Live and Let Die (1973),Action|Adventure|Thriller +2992,Rawhead Rex (1986),Horror|Thriller +2993,Thunderball (1965),Action|Adventure|Thriller +2994,"City, The (Ciudad, La) (1998)",Drama +2995,House on Haunted Hill (1999),Horror|Thriller +2996,Music of the Heart (1999),Drama +2997,Being John Malkovich (1999),Comedy|Drama|Fantasy +2998,Dreaming of Joseph Lees (1999),Drama|Romance +2999,Man of the Century (1999),Comedy +3000,Princess Mononoke (Mononoke-hime) (1997),Action|Adventure|Animation|Drama|Fantasy +3001,"Suburbans, The (1999)",Drama +3002,My Best Fiend (Mein liebster Feind) (1999),Documentary +3003,Train of Life (Train de vie) (1998),Comedy|Drama|Romance|War +3004,"Bachelor, The (1999)",Comedy|Romance +3005,"Bone Collector, The (1999)",Thriller +3006,"Insider, The (1999)",Drama|Thriller +3007,American Movie (1999),Documentary +3008,Last Night (1998),Drama|Sci-Fi +3009,Portraits Chinois (1996),Drama +3010,Rosetta (1999),Drama +3011,"They Shoot Horses, Don't They? (1969)",Drama +3012,Battling Butler (1926),Comedy +3013,Bride of Re-Animator (1990),Comedy|Horror +3014,Bustin' Loose (1981),Comedy +3015,Coma (1978),Thriller +3016,Creepshow (1982),Horror +3017,Creepshow 2 (1987),Horror +3018,Re-Animator (1985),Comedy|Horror|Sci-Fi +3019,Drugstore Cowboy (1989),Crime|Drama +3020,Falling Down (1993),Action|Drama +3021,"Funhouse, The (1981)",Horror +3022,"General, The (1926)",Comedy|War +3023,My Best Girl (1927),Comedy|Romance +3024,Piranha (1978),Horror|Sci-Fi +3025,Rough Night in Jericho (1967),Western +3026,Slaughterhouse (1987),Comedy|Horror +3028,"Taming of the Shrew, The (1967)",Comedy +3029,Nighthawks (1981),Action|Drama +3030,Yojimbo (1961),Action|Adventure +3031,Repossessed (1990),Comedy +3032,"Omega Man, The (1971)",Action|Drama|Sci-Fi|Thriller +3033,Spaceballs (1987),Comedy|Sci-Fi +3034,Robin Hood (1973),Adventure|Animation|Children|Comedy|Musical +3035,Mister Roberts (1955),Comedy|Drama|War +3036,"Quest for Fire (Guerre du feu, La) (1981)",Adventure|Drama +3037,Little Big Man (1970),Western +3038,"Face in the Crowd, A (1957)",Drama +3039,Trading Places (1983),Comedy +3040,Meatballs (1979),Comedy +3041,Meatballs Part II (1984),Comedy +3042,Meatballs III (1987),Comedy +3043,Meatballs 4 (1992),Comedy +3044,Dead Again (1991),Mystery|Romance|Thriller +3045,Peter's Friends (1992),Comedy|Drama +3046,"Incredibly True Adventure of Two Girls in Love, The (1995)",Comedy|Romance +3047,Experience Preferred... But Not Essential (1982),Drama +3048,Under the Rainbow (1981),Comedy +3049,How I Won the War (1967),Comedy|War +3050,Light It Up (1999),Drama +3051,Anywhere But Here (1999),Comedy|Drama +3052,Dogma (1999),Adventure|Comedy|Fantasy +3053,"Messenger: The Story of Joan of Arc, The (1999)",Drama|War +3054,Pokémon: The First Movie (1998),Adventure|Animation|Children|Fantasy|Sci-Fi +3055,Felicia's Journey (1999),Thriller +3056,Oxygen (1999),Crime|Drama|Thriller +3057,Where's Marlowe? (1998),Comedy +3058,"Ape, The (1940)",Horror|Sci-Fi +3059,British Intelligence (1940),Drama +3060,"Commitments, The (1991)",Comedy|Drama|Musical +3061,Holiday Inn (1942),Comedy|Musical +3062,"Longest Day, The (1962)",Action|Drama|War +3063,Poison Ivy (1992),Drama|Thriller +3064,Poison Ivy: New Seduction (1997),Drama|Thriller +3065,Nothing to Lose (a.k.a. Ten Benny) (1996),Drama +3066,Tora! Tora! Tora! (1970),Action|Drama|War +3067,Women on the Verge of a Nervous Breakdown (Mujeres al borde de un ataque de nervios) (1988),Comedy|Drama +3068,"Verdict, The (1982)",Drama|Mystery +3069,"Effect of Gamma Rays on Man-in-the-Moon Marigolds, The (1972)",Drama +3070,"Adventures of Buckaroo Banzai Across the 8th Dimension, The (1984)",Adventure|Comedy|Sci-Fi +3071,Stand and Deliver (1988),Comedy|Drama +3072,Moonstruck (1987),Comedy|Romance +3073,"Sandpiper, The (1965)",Drama|Romance +3074,Jeremiah Johnson (1972),Western +3075,Repulsion (1965),Drama|Horror +3076,Irma la Douce (1963),Comedy +3077,42 Up (1998),Documentary +3078,Liberty Heights (1999),Drama +3079,Mansfield Park (1999),Comedy|Drama|Romance +3080,"Goodbye, 20th Century (1998)",Drama|Sci-Fi +3081,Sleepy Hollow (1999),Fantasy|Horror|Mystery|Romance +3082,"World Is Not Enough, The (1999)",Action|Adventure|Thriller +3083,All About My Mother (Todo sobre mi madre) (1999),Drama +3084,Home Page (1999),Documentary +3085,"Living Dead Girl, The (Morte Vivante, La) (1982)",Horror +3086,Babes in Toyland (1934),Children|Comedy|Fantasy|Musical +3087,Scrooged (1988),Comedy|Fantasy|Romance +3088,Harvey (1950),Comedy|Fantasy +3089,Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette) (1948),Drama +3090,Matewan (1987),Drama +3091,Kagemusha (1980),Drama|War +3092,"47 Samurai (Chûshingura) (Loyal 47 Ronin, The) (1962)",Drama +3093,McCabe & Mrs. Miller (1971),Drama|Western +3094,Maurice (1987),Drama|Romance +3095,"Grapes of Wrath, The (1940)",Drama +3096,My Man Godfrey (1957),Comedy +3097,"Shop Around the Corner, The (1940)",Comedy|Drama|Romance +3098,"Natural, The (1984)",Drama +3099,Shampoo (1975),Comedy|Drama|Romance +3100,"River Runs Through It, A (1992)",Drama +3101,Fatal Attraction (1987),Drama|Thriller +3102,Jagged Edge (1985),Crime|Romance|Thriller +3103,Stanley & Iris (1990),Drama|Romance +3104,Midnight Run (1988),Action|Comedy|Crime|Thriller +3105,Awakenings (1990),Drama|Mystery +3106,Come See the Paradise (1990),Drama|Romance +3107,Backdraft (1991),Action|Drama +3108,"Fisher King, The (1991)",Comedy|Drama|Fantasy|Romance +3109,"River, The (1984)",Drama +3110,Country (1984),Drama +3111,Places in the Heart (1984),Drama +3112,'night Mother (1986),Drama +3113,End of Days (1999),Action|Fantasy|Horror|Mystery|Thriller +3114,Toy Story 2 (1999),Adventure|Animation|Children|Comedy|Fantasy +3115,Flawless (1999),Drama +3116,Miss Julie (1999),Drama +3117,Ride with the Devil (1999),Drama|Romance|War +3118,Tumbleweeds (1999),Drama +3119,Bay of Blood (a.k.a. Twitch of the Death Nerve) (Reazione a catena) (1971),Horror +3120,"Distinguished Gentleman, The (1992)",Comedy +3121,"Hitch-Hiker, The (1953)",Drama|Film-Noir +3122,Santa Fe Trail (1940),Drama|Romance|Western +3123,Lauderdale (a.k.a. Spring Break USA) (a.k.a. Spring Fever USA) (1989),Comedy +3124,Agnes Browne (1999),Comedy|Drama +3125,"End of the Affair, The (1999)",Drama +3126,"End of the Affair, The (1955)",Drama +3127,Holy Smoke (1999),Comedy|Drama +3128,"Map of the World, A (1999)",Drama +3129,Sweet and Lowdown (1999),Comedy|Drama +3130,Bonfire of the Vanities (1990),Comedy|Crime|Drama +3131,Broadway Damage (1997),Comedy +3132,Daddy Long Legs (1919),Comedy|Drama +3133,Go West (1925),Comedy|Western +3134,Grand Illusion (La grande illusion) (1937),Drama|War +3135,"Great Santini, The (1979)",Drama +3136,"James Dean Story, The (1957)",Documentary +3137,"Sea Wolves, The (1980)",Action|War +3138,Stealing Home (1988),Drama +3139,Tarzan the Fearless (1933),Action|Adventure +3140,Three Ages (1923),Comedy +3141,"Two Jakes, The (1990)",Drama +3142,U2: Rattle and Hum (1988),Documentary|Musical +3143,Hell in the Pacific (1968),Drama|War +3144,"Glass Bottom Boat, The (1966)",Comedy|Romance +3145,Cradle Will Rock (1999),Drama +3146,Deuce Bigalow: Male Gigolo (1999),Comedy +3147,"Green Mile, The (1999)",Crime|Drama +3148,"Cider House Rules, The (1999)",Drama +3149,Diamonds (1999),Mystery +3150,"War Zone, The (1999)",Drama|Thriller +3151,"Bat Whispers, The (1930)",Crime|Drama|Mystery +3152,"Last Picture Show, The (1971)",Drama +3153,"7th Voyage of Sinbad, The (1958)",Action|Adventure|Fantasy +3154,Blood on the Sun (1945),Drama|War +3155,Anna and the King (1999),Drama|Romance +3156,Bicentennial Man (1999),Drama|Romance|Sci-Fi +3157,Stuart Little (1999),Children|Comedy|Fantasy +3158,"Emperor and the Assassin, The (Jing ke ci qin wang) (1999)",Drama +3159,Fantasia 2000 (1999),Animation|Children|Musical|IMAX +3160,Magnolia (1999),Drama +3161,Onegin (1999),Drama|Romance +3162,Simpatico (1999),Comedy|Drama +3163,Topsy-Turvy (1999),Comedy|Drama|Musical +3164,"Alley Cats, The (1966)",Drama +3165,Boiling Point (1993),Action|Drama +3166,Brenda Starr (1989),Adventure +3167,Carnal Knowledge (1971),Comedy|Drama +3168,Easy Rider (1969),Adventure|Drama +3169,The Falcon and the Snowman (1985),Crime|Drama|Thriller +3170,Hi-Yo Silver (1940),Western +3171,Room at the Top (1959),Drama +3172,Ulysses (Ulisse) (1954),Adventure +3173,Any Given Sunday (1999),Drama +3174,Man on the Moon (1999),Comedy|Drama +3175,Galaxy Quest (1999),Adventure|Comedy|Sci-Fi +3176,"Talented Mr. Ripley, The (1999)",Drama|Mystery|Thriller +3177,Next Friday (2000),Comedy +3178,"Hurricane, The (1999)",Drama +3179,Angela's Ashes (1999),Drama +3180,Play it to the Bone (1999),Comedy|Drama +3181,Titus (1999),Drama +3182,"Mr. Death: The Rise and Fall of Fred A. Leuchter, Jr. (1999)",Documentary +3183,"Third Miracle, The (1999)",Drama +3184,Montana (1998),Action|Comedy|Crime|Drama +3185,Snow Falling on Cedars (1999),Drama +3186,"Girl, Interrupted (1999)",Drama +3187,Trans (1998),Drama +3188,"Life and Times of Hank Greenberg, The (1998)",Documentary +3189,My Dog Skip (1999),Children|Drama +3190,Supernova (2000),Adventure|Sci-Fi|Thriller +3191,"Quarry, The (1998)",Drama +3192,"Terrorist, The (a.k.a. Malli) (Theeviravaathi) (1998)",Drama +3193,Creature (1999),Documentary +3194,"Way We Were, The (1973)",Drama|Romance +3195,Tess of the Storm Country (1922),Drama +3196,Stalag 17 (1953),Drama|War +3197,"Presidio, The (1988)",Action|Crime|Romance|Thriller +3198,Papillon (1973),Crime|Drama +3199,Pal Joey (1957),Comedy|Drama|Musical|Romance +3200,"Last Detail, The (1973)",Comedy|Drama +3201,Five Easy Pieces (1970),Drama +3202,Even Dwarfs Started Small (Auch Zwerge haben klein angefangen) (1971),Drama|Horror +3203,Dead Calm (1989),Thriller +3204,"Boys from Brazil, The (1978)",Action|Mystery|Thriller +3205,Black Sunday (La maschera del demonio) (1960),Horror +3206,Against All Odds (1984),Romance +3207,"Snows of Kilimanjaro, The (1952)",Adventure +3208,Loaded Weapon 1 (National Lampoon's Loaded Weapon 1) (1993),Action|Comedy +3209,"Loves of Carmen, The (1948)",Drama +3210,Fast Times at Ridgemont High (1982),Comedy|Drama|Romance +3211,"Cry in the Dark, A (1988)",Drama +3212,Born to Win (1971),Drama +3213,Batman: Mask of the Phantasm (1993),Animation|Children +3214,American Flyers (1985),Drama +3215,Voyage of the Damned (1976),Drama +3216,"Vampyros Lesbos (Vampiras, Las) (1971)",Fantasy|Horror|Thriller +3217,"Star Is Born, A (1937)",Drama +3218,Poison (1991),Drama +3219,Pacific Heights (1990),Mystery|Thriller +3220,Night Tide (1961),Drama +3221,"Draughtsman's Contract, The (1982)",Drama +3222,Carmen (1984),Drama +3223,"Zed & Two Noughts, A (1985)",Drama +3224,Woman in the Dunes (Suna no onna) (1964),Drama +3225,Down to You (2000),Comedy|Romance +3226,Hellhounds on My Trail (1999),Documentary +3227,"Not Love, Just Frenzy (Más que amor, frenesí) (1996)",Comedy|Drama|Thriller +3228,Wirey Spindell (2000),Comedy +3229,Another Man's Poison (1952),Crime|Drama +3230,"Odessa File, The (1974)",Thriller +3231,"Saphead, The (1920)",Comedy +3232,Seven Chances (1925),Comedy +3233,Smashing Time (1967),Comedy +3234,Train Ride to Hollywood (1975),Comedy|Fantasy|Musical +3235,Where the Buffalo Roam (1980),Comedy +3236,Zachariah (1971),Comedy|Musical|Western +3237,Kestrel's Eye (Falkens öga) (1998),Documentary +3238,Eye of the Beholder (1999),Thriller +3239,Isn't She Great? (2000),Comedy +3240,"Big Tease, The (1999)",Comedy +3241,"Cup, The (Phörpa) (1999)",Comedy +3242,Santitos (1999),Comedy +3243,Encino Man (1992),Comedy +3244,"Goodbye Girl, The (1977)",Comedy|Romance +3245,I Am Cuba (Soy Cuba/Ya Kuba) (1964),Drama +3246,Malcolm X (1992),Drama +3247,Sister Act (1992),Comedy|Crime +3248,Sister Act 2: Back in the Habit (1993),Comedy +3249,"Hand That Rocks the Cradle, The (1992)",Drama|Thriller +3250,Alive (1993),Drama +3251,Agnes of God (1985),Drama|Mystery +3252,Scent of a Woman (1992),Drama +3253,Wayne's World (1992),Comedy +3254,Wayne's World 2 (1993),Comedy +3255,"League of Their Own, A (1992)",Comedy|Drama +3256,Patriot Games (1992),Action|Crime|Drama|Thriller +3257,"Bodyguard, The (1992)",Drama|Romance|Thriller +3258,Death Becomes Her (1992),Comedy|Fantasy +3259,Far and Away (1992),Adventure|Drama|Romance +3260,Howards End (1992),Drama +3261,Singles (1992),Comedy|Drama|Romance +3262,Twin Peaks: Fire Walk with Me (1992),Crime|Drama|Mystery|Thriller +3263,White Men Can't Jump (1992),Comedy|Drama +3264,Buffy the Vampire Slayer (1992),Action|Comedy|Horror +3265,Hard-Boiled (Lat sau san taam) (1992),Action|Crime|Drama|Thriller +3266,Man Bites Dog (C'est arrivé près de chez vous) (1992),Comedy|Crime|Drama|Thriller +3267,"Mariachi, El (1992)",Action|Crime|Thriller|Western +3268,Stop! Or My Mom Will Shoot (1992),Action|Comedy +3269,Forever Young (1992),Drama|Romance|Sci-Fi +3270,"Cutting Edge, The (1992)",Comedy|Drama|Romance +3271,Of Mice and Men (1992),Drama +3272,Bad Lieutenant (1992),Crime|Drama +3273,Scream 3 (2000),Comedy|Horror|Mystery|Thriller +3274,Single White Female (1992),Drama|Thriller +3275,"Boondock Saints, The (2000)",Action|Crime|Drama|Thriller +3276,Gun Shy (2000),Comedy +3277,Beloved/Friend (a.k.a. Amigo/Amado) (Amic/Amat) (1999),Drama +3278,Gendernauts (1999),Documentary +3279,Knockout (2000),Action|Drama +3280,"Baby, The (1973)",Horror +3281,"Brandon Teena Story, The (1998)",Documentary +3282,Different for Girls (1996),Comedy +3283,Minnie and Moskowitz (1971),Action +3284,They Might Be Giants (1971),Comedy|Mystery|Romance +3285,"Beach, The (2000)",Adventure|Drama +3286,Snow Day (2000),Comedy +3287,"Tigger Movie, The (2000)",Animation|Children +3288,Cotton Mary (1999),Drama +3289,Not One Less (Yi ge dou bu neng shao) (1999),Drama +3290,Soft Toilet Seats (1999),Comedy +3291,Trois (2000),Thriller +3292,"Big Combo, The (1955)",Film-Noir +3293,Conceiving Ada (1997),Drama|Sci-Fi +3294,Eaten Alive (1977),Horror +3295,Raining Stones (1993),Drama +3296,To Sir with Love (1967),Drama +3297,With Byrd at the South Pole (1930),Documentary +3298,Boiler Room (2000),Crime|Drama|Thriller +3299,Hanging Up (2000),Comedy|Drama +3300,Pitch Black (2000),Horror|Sci-Fi|Thriller +3301,"Whole Nine Yards, The (2000)",Comedy|Crime +3302,Beautiful People (1999),Comedy +3303,Black Tar Heroin: The Dark End of the Street (2000),Documentary +3304,Blue Collar (1978),Crime|Drama +3305,Bluebeard (1944),Film-Noir|Horror +3306,"Circus, The (1928)",Comedy +3307,City Lights (1931),Comedy|Drama|Romance +3308,"Flamingo Kid, The (1984)",Comedy|Drama +3309,"Dog's Life, A (1918)",Comedy +3310,"Kid, The (1921)",Comedy|Drama +3311,"Man from Laramie, The (1955)",Western +3312,"McCullochs, The (1975)",Drama +3313,Class Reunion (1982),Comedy +3314,"Big Trees, The (1952)",Action|Drama +3315,Happy Go Lovely (1951),Musical +3316,Reindeer Games (2000),Action|Thriller +3317,Wonder Boys (2000),Comedy|Drama +3318,Deterrence (1999),Drama|Thriller +3319,Judy Berlin (1999),Drama +3320,Mifune's Last Song (Mifunes sidste sang) (1999),Comedy|Drama|Romance +3321,"Waiting Game, The (2000)",Comedy +3322,3 Strikes (2000),Comedy +3323,Chain of Fools (2000),Comedy|Crime +3324,Drowning Mona (2000),Comedy +3325,"Next Best Thing, The (2000)",Comedy|Drama +3326,What Planet Are You From? (2000),Comedy|Sci-Fi +3327,Beyond the Mat (1999),Documentary +3328,Ghost Dog: The Way of the Samurai (1999),Crime|Drama +3329,The Year My Voice Broke (1987),Drama|Romance +3330,Splendor in the Grass (1961),Drama|Romance +3331,My Tutor (1983),Drama +3332,"Legend of Lobo, The (1962)",Adventure|Children +3333,"Killing of Sister George, The (1968)",Drama +3334,Key Largo (1948),Crime|Drama|Film-Noir|Thriller +3335,Jail Bait (1954),Crime|Drama +3336,It Happened Here (1966),Drama|Fantasy|War +3337,I'll Never Forget What's'isname (1967),Comedy|Drama +3338,For All Mankind (1989),Documentary +3339,Cross of Iron (1977),War +3340,Bride of the Monster (1955),Horror|Sci-Fi +3341,Born Yesterday (1950),Comedy +3342,Birdy (1984),Drama|War +3343,And God Created Woman (1988),Comedy|Drama|Romance +3344,Blood Feast (1963),Horror +3345,"Charlie, the Lonesome Cougar (1967)",Adventure|Children +3346,Color Me Blood Red (1965),Horror +3347,Never Cry Wolf (1983),Adventure|Drama +3348,The Night Visitor (1971),Crime|Horror|Thriller +3349,"Perils of Pauline, The (1947)",Comedy +3350,"Raisin in the Sun, A (1961)",Drama +3351,Two Thousand Maniacs! (1964),Horror +3352,Brown's Requiem (1998),Drama +3353,"Closer You Get, The (2000)",Comedy|Romance +3354,Mission to Mars (2000),Sci-Fi +3355,"Ninth Gate, The (1999)",Fantasy|Horror|Mystery|Thriller +3357,East-West (Est-ouest) (1999),Drama|Romance +3358,Defending Your Life (1991),Comedy|Drama|Fantasy|Romance +3359,Breaking Away (1979),Comedy|Drama +3360,Hoosiers (a.k.a. Best Shot) (1986),Drama|Romance +3361,Bull Durham (1988),Comedy|Drama|Romance +3362,Dog Day Afternoon (1975),Crime|Drama +3363,American Graffiti (1973),Comedy|Drama +3364,"Asphalt Jungle, The (1950)",Crime|Film-Noir +3365,"Searchers, The (1956)",Drama|Western +3367,"Devil's Brigade, The (1968)",War +3368,"Big Country, The (1958)",Romance|Western +3369,Any Number Can Win (Mélodie en sous-sol ) (1963),Crime +3370,Betrayed (1988),Drama|Thriller +3371,Bound for Glory (1976),Drama +3372,"Bridge at Remagen, The (1969)",Action|War +3373,Buck and the Preacher (1972),Western +3374,Daughters of the Dust (1991),Drama +3375,Destination Moon (1950),Sci-Fi +3376,"Fantastic Night, The (Nuit fantastique, La) (1942)",Romance +3377,Hangmen Also Die! (1943),Drama|War +3378,"Ogre, The (Unhold, Der) (1996)",Drama +3379,On the Beach (1959),Drama +3380,Railroaded! (1947),Film-Noir +3381,Slaves to the Underground (1997),Comedy|Drama +3382,Song of Freedom (1936),Drama +3383,Big Fella (1937),Drama|Musical +3384,"Taking of Pelham One Two Three, The (1974)",Action|Crime +3385,Volunteers (1985),Comedy +3386,JFK (1991),Drama|Mystery|Thriller +3387,Who's Harry Crumb? (1989),Comedy|Mystery +3388,Harry and the Hendersons (1987),Children|Comedy +3389,Let's Get Harry (1986),Action|Adventure +3390,Shanghai Surprise (1986),Adventure|Crime|Drama|Romance +3391,Who's That Girl? (1987),Comedy +3392,She-Devil (1989),Comedy +3393,Date with an Angel (1987),Comedy|Fantasy|Romance +3394,Blind Date (1987),Comedy|Romance +3395,Nadine (1987),Comedy +3396,"Muppet Movie, The (1979)",Adventure|Children|Comedy|Musical +3397,"Great Muppet Caper, The (1981)",Children|Comedy +3398,"Muppets Take Manhattan, The (1984)",Children|Comedy|Musical +3399,Sesame Street Presents Follow That Bird (1985),Children|Comedy +3400,We're Back! A Dinosaur's Story (1993),Adventure|Animation|Children|Fantasy +3401,Baby... Secret of the Lost Legend (1985),Adventure|Sci-Fi +3402,Turtle Diary (1985),Comedy|Drama|Romance +3403,Raise the Titanic (1980),Drama|Thriller +3404,Titanic (1953),Action|Drama +3405,"Night to Remember, A (1958)",Action|Drama +3406,Captain Horatio Hornblower R.N. (1951),Action|Adventure|Drama|War +3407,"Carriers Are Waiting, The (Convoyeurs attendent, Les) (1999)",Comedy|Drama +3408,Erin Brockovich (2000),Drama +3409,Final Destination (2000),Drama|Thriller +3410,Soft Fruit (1999),Comedy|Drama +3411,Babymother (1998),Drama +3412,"Bear, The (Ours, L') (1988)",Adventure|Children|Drama +3413,Impact (1949),Crime|Drama +3414,Love Is a Many-Splendored Thing (1955),Drama|Romance|War +3415,"Mirror, The (Zerkalo) (1975)",Drama +3417,"Crimson Pirate, The (1952)",Adventure|Comedy +3418,Thelma & Louise (1991),Adventure|Crime|Drama +3419,Something for Everyone (1970),Comedy|Crime +3420,...And Justice for All (1979),Drama|Thriller +3421,Animal House (1978),Comedy +3422,She's Gotta Have It (1986),Comedy|Romance +3423,School Daze (1988),Drama +3424,Do the Right Thing (1989),Drama +3425,Mo' Better Blues (1990),Drama|Musical +3426,Jungle Fever (1991),Drama|Romance +3427,Coogan's Bluff (1968),Crime +3428,"Champ, The (1979)",Drama +3429,Creature Comforts (1989),Animation|Comedy +3430,Death Wish (1974),Action|Crime|Drama +3431,Death Wish 2 (1982),Action|Drama +3432,Death Wish 3 (1985),Action|Drama +3433,Death Wish 4: The Crackdown (1987),Action|Drama +3434,Death Wish 5: The Face of Death (1994),Action|Drama +3435,Double Indemnity (1944),Crime|Drama|Film-Noir +3436,Dying Young (1991),Drama|Romance +3437,Cool as Ice (1991),Drama +3438,Teenage Mutant Ninja Turtles (1990),Action|Children|Comedy|Fantasy|Sci-Fi +3439,Teenage Mutant Ninja Turtles II: The Secret of the Ooze (1991),Action|Children|Fantasy +3440,Teenage Mutant Ninja Turtles III (1993),Action|Adventure|Children|Comedy|Fantasy +3441,Red Dawn (1984),Action|Drama|War +3442,Band of the Hand (1986),Action|Crime|Drama +3443,Born American (1986),Action|Drama|Thriller +3444,Bloodsport (1988),Action +3445,Eyes of Laura Mars (1978),Mystery|Thriller +3446,Funny Bones (1995),Comedy|Drama +3447,"Good Earth, The (1937)",Drama +3448,"Good Morning, Vietnam (1987)",Comedy|Drama|War +3449,"Good Mother, The (1988)",Drama +3450,Grumpy Old Men (1993),Comedy +3451,Guess Who's Coming to Dinner (1967),Drama +3452,Romeo Must Die (2000),Action|Crime|Romance|Thriller +3453,Here on Earth (2000),Drama|Romance +3454,Whatever It Takes (2000),Comedy|Romance +3455,Buddy Boy (1999),Drama|Thriller +3456,"Color of Paradise, The (Rang-e khoda) (1999)",Drama +3457,Waking the Dead (2000),Drama|Thriller +3458,Blood and Sand (Sangre y Arena) (1989),Drama|Romance +3459,Gothic (1986),Drama|Horror +3460,Hillbillys in a Haunted House (1967),Comedy +3461,Lord of the Flies (1963),Adventure|Drama|Thriller +3462,Modern Times (1936),Comedy|Drama|Romance +3463,Last Resort (National Lampoon's Last Resort) (1994),Comedy +3465,That's Life! (1986),Drama +3466,Heart and Souls (1993),Comedy|Fantasy +3467,Hud (1963),Drama|Western +3468,"Hustler, The (1961)",Drama +3469,Inherit the Wind (1960),Drama +3470,Dersu Uzala (1975),Adventure|Drama +3471,Close Encounters of the Third Kind (1977),Adventure|Drama|Sci-Fi +3472,"Horror Hotel (a.k.a. City of the Dead, The) (1960)",Horror|Thriller +3473,Jonah Who Will Be 25 in the Year 2000 (Jonas qui aura 25 ans en l'an 2000) (1976),Comedy +3474,Retroactive (1997),Sci-Fi|Thriller +3475,"Place in the Sun, A (1951)",Drama|Romance +3476,Jacob's Ladder (1990),Horror|Mystery +3477,Empire Records (1995),Comedy|Drama +3478,"Bamba, La (1987)",Drama +3479,Ladyhawke (1985),Adventure|Fantasy|Romance +3480,Lucas (1986),Drama|Romance +3481,High Fidelity (2000),Comedy|Drama|Romance +3483,"Road to El Dorado, The (2000)",Animation|Children +3484,"Skulls, The (2000)",Thriller +3485,Autopsy (Macchie Solari) (1975),Horror +3486,Devil Girl From Mars (1954),Sci-Fi +3487,El Dorado (1966),Western +3488,"Hideous Sun Demon, The (1959)",Horror|Sci-Fi +3489,Hook (1991),Adventure|Comedy|Fantasy +3490,Horror Express (1972),Horror +3491,My Chauffeur (1986),Comedy +3492,"Son of the Sheik, The (1926)",Adventure|Comedy|Romance +3493,Torso (1973),Horror|Mystery|Thriller +3494,True Grit (1969),Adventure|Drama|Western +3495,Roadside Prophets (1992),Comedy|Drama +3496,Madame Sousatzka (1988),Drama +3497,Max Dugan Returns (1983),Comedy +3498,Midnight Express (1978),Drama +3499,Misery (1990),Drama|Horror|Thriller +3500,Mr. Saturday Night (1992),Comedy|Drama +3501,Murphy's Romance (1985),Comedy|Romance +3502,My Life (1993),Drama +3503,Solaris (Solyaris) (1972),Drama|Mystery|Sci-Fi +3504,Network (1976),Comedy|Drama +3505,No Way Out (1987),Drama|Mystery|Thriller +3506,North Dallas Forty (1979),Comedy|Drama +3507,"Odd Couple, The (1968)",Comedy +3508,"Outlaw Josey Wales, The (1976)",Action|Adventure|Drama|Thriller|Western +3509,Black and White (1999),Drama +3510,Frequency (2000),Drama|Thriller +3511,Ready to Rumble (2000),Comedy +3512,Return to Me (2000),Drama|Romance +3513,Rules of Engagement (2000),Drama|Thriller +3514,Joe Gould's Secret (2000),Drama +3515,Me Myself I (2000),Comedy|Romance +3516,"Bell, Book and Candle (1958)",Comedy|Fantasy|Romance +3517,"Bells, The (1926)",Crime|Drama +3518,"End of Violence, The (1997)",Drama|Thriller +3519,Force 10 from Navarone (1978),Action|Drama|War +3520,How to Stuff a Wild Bikini (1965),Comedy +3521,Mystery Train (1989),Comedy|Drama +3522,Sacco and Vanzetti (Sacco e Vanzetti) (1971),Drama +3523,Taffin (1988),Action|Thriller +3524,Arthur (1981),Comedy|Romance +3525,Bachelor Party (1984),Comedy +3526,Parenthood (1989),Comedy|Drama +3527,Predator (1987),Action|Sci-Fi|Thriller +3528,"Prince of Tides, The (1991)",Drama|Romance +3529,"Postman Always Rings Twice, The (1981)",Crime|Thriller +3530,Smoking/No Smoking (1993),Comedy +3531,All the Vermeers in New York (1990),Comedy|Drama|Romance +3533,"Actor's Revenge, An (Yukinojô henge) (1963)",Drama +3534,28 Days (2000),Drama +3535,American Psycho (2000),Crime|Horror|Mystery|Thriller +3536,Keeping the Faith (2000),Comedy|Drama|Romance +3537,Where the Money Is (2000),Comedy|Drama +3538,East is East (1999),Comedy +3539,"Filth and the Fury, The (2000)",Documentary +3540,Passion of Mind (2000),Drama|Mystery|Romance +3541,Third World Cop (1999),Action +3542,Coming Apart (1969),Drama +3543,Diner (1982),Comedy|Drama +3544,Shakes the Clown (1992),Comedy +3545,Cabaret (1972),Drama|Musical +3546,What Ever Happened to Baby Jane? (1962),Drama|Horror|Thriller +3547,Prick Up Your Ears (1987),Comedy|Drama +3548,Auntie Mame (1958),Comedy|Drama +3549,Guys and Dolls (1955),Comedy|Musical|Romance +3550,The Hunger (1983),Horror +3551,Marathon Man (1976),Crime|Drama|Thriller +3552,Caddyshack (1980),Comedy +3553,Gossip (2000),Drama|Thriller +3554,Love and Basketball (2000),Drama|Romance +3555,U-571 (2000),Action|Thriller|War +3556,"Virgin Suicides, The (1999)",Drama|Romance +3557,Jennifer 8 (1992),Mystery|Thriller +3558,"Law, The (a.k.a. Where the Hot Wind Blows!) (Legge, La) (1958)",Drama +3559,Limelight (1952),Comedy|Drama|Romance +3560,Empire of Passion (a.k.a. In the Realm of Passion) (a.k.a. Phantom Love) (Ai No Borei) (1978),Crime|Drama|Romance +3561,Stacy's Knights (1982),Drama +3562,Committed (2000),Comedy|Drama +3563,"Crow: Salvation, The (2000)",Action|Horror +3564,"Flintstones in Viva Rock Vegas, The (2000)",Children|Comedy +3565,Where the Heart Is (2000),Comedy|Drama +3566,"Big Kahuna, The (2000)",Comedy|Drama +3567,Bossa Nova (2000),Comedy|Drama|Romance +3568,Smiling Fish and Goat on Fire (1999),Comedy|Romance +3569,"Idiots, The (Idioterne) (1998)",Comedy|Drama +3570,"Last September, The (1999)",Drama +3571,Time Code (2000),Comedy|Drama +3572,Carnosaur (1993),Horror|Sci-Fi +3573,Carnosaur 2 (1995),Horror|Sci-Fi +3574,Carnosaur 3: Primal Species (1996),Horror|Sci-Fi +3575,Defying Gravity (1997),Drama +3576,"Hidden, The (1987)",Action|Horror|Sci-Fi +3577,Two Moon Junction (1988),Drama|Romance +3578,Gladiator (2000),Action|Adventure|Drama +3579,I Dreamed of Africa (2000),Drama +3580,Up at the Villa (2000),Drama +3581,Human Traffic (1999),Comedy +3582,"Jails, Hospitals & Hip-Hop (2000)",Comedy|Documentary|Drama +3583,Black Tights (1-2-3-4 ou Les Collants noirs) (1960),Drama|Musical +3584,Breathless (1983),Action|Drama|Romance|Thriller +3585,"Great Locomotive Chase, The (1956)",Adventure|War +3586,The Idolmaker (1980),Drama|Romance +3587,Inferno (1980),Horror +3588,"King of Marvin Gardens, The (1972)",Crime|Drama +3589,"Whom the Gods Wish to Destroy (Nibelungen, Teil 1: Siegfried, Die) (1966)",Adventure|Fantasy +3590,"Lords of Flatbush, The (1974)",Comedy|Drama +3591,Mr. Mom (1983),Comedy|Drama +3592,"Time Masters (Maîtres du temps, Les) (1982)",Animation|Sci-Fi +3593,Battlefield Earth (2000),Action|Sci-Fi +3594,Center Stage (2000),Drama|Musical +3595,Held Up (1999),Comedy +3596,Screwed (2000),Comedy +3597,Whipped (2000),Comedy +3598,Hamlet (2000),Crime|Drama|Romance|Thriller +3599,Anchors Aweigh (1945),Comedy|Musical +3600,Blue Hawaii (1961),Comedy|Musical +3601,"Castaway Cowboy, The (1974)",Comedy|Western +3602,G.I. Blues (1960),Comedy|Musical|Romance +3603,"Gay Deceivers, The (1969)",Comedy +3604,Gypsy (1962),Musical +3605,King Creole (1958),Crime|Drama|Musical +3606,On the Town (1949),Comedy|Musical|Romance +3607,One Little Indian (1973),Comedy|Western +3608,Pee-wee's Big Adventure (1985),Adventure|Comedy +3609,Regret to Inform (1998),Documentary +3610,Roustabout (1964),Drama|Musical|Romance +3611,Saludos Amigos (1943),Animation|Children|Comedy +3612,The Slipper and the Rose: The Story of Cinderella (1976),Adventure|Children|Fantasy|Musical|Romance +3613,Things Change (1988),Comedy +3614,Honeymoon in Vegas (1992),Comedy|Romance +3615,Dinosaur (2000),Adventure|Animation|Children +3616,Loser (2000),Comedy|Romance +3617,Road Trip (2000),Comedy +3618,Small Time Crooks (2000),Comedy|Crime +3619,"Hollywood Knights, The (1980)",Comedy +3620,"Myth of Fingerprints, The (1997)",Comedy|Drama +3621,Possession (1981),Drama|Horror +3622,"Twelve Chairs, The (1970)",Comedy +3623,Mission: Impossible II (2000),Action|Adventure|Thriller +3624,Shanghai Noon (2000),Action|Adventure|Comedy|Western +3625,Better Living Through Circuitry (1999),Documentary +3626,8 ½ Women (a.k.a. 8 1/2 Women) (a.k.a. Eight and a Half Women) (1999),Comedy +3627,Carnival of Souls (1962),Horror|Thriller +3628,Flying Tigers (1942),Action|Drama|Romance|War +3629,"Gold Rush, The (1925)",Adventure|Comedy|Romance +3630,"House of Exorcism, The (a.k.a. Lisa and the Devil) (Casa dell'esorcismo, La) (1973)",Horror +3631,It's in the Water (1998),Comedy +3632,Monsieur Verdoux (1947),Comedy|Crime +3633,On Her Majesty's Secret Service (1969),Action|Adventure|Romance|Thriller +3634,Seven Days in May (1964),Thriller +3635,"Spy Who Loved Me, The (1977)",Action|Adventure|Thriller +3636,Those Who Love Me Can Take the Train (Ceux qui m'aiment prendront le train) (1998),Drama +3637,Vagabond (Sans toit ni loi) (1985),Drama +3638,Moonraker (1979),Action|Adventure|Sci-Fi|Thriller +3639,"Man with the Golden Gun, The (1974)",Action|Adventure|Thriller +3640,"King in New York, A (1957)",Comedy|Drama +3641,"Woman of Paris, A (1923)",Drama +3642,In Old California (1942),Western +3643,"Fighting Seabees, The (1944)",Action|Drama|War +3644,Dark Command (1940),Western +3645,Cleo from 5 to 7 (Cléo de 5 à 7) (1962),Drama +3646,Big Momma's House (2000),Comedy +3647,Running Free (1999),Adventure|Children|Drama +3648,"Abominable Snowman, The (Abominable Snowman of the Himalayas, The) (1957)",Horror|Sci-Fi +3649,American Gigolo (1980),Drama +3650,Anguish (Angustia) (1987),Horror +3651,"Blood Spattered Bride, The (La novia ensangrentada) (1972)",Horror +3652,"City of the Living Dead (a.k.a. Gates of Hell, The) (Paura nella città dei morti viventi) (1980)",Horror +3653,"Endless Summer, The (1966)",Documentary +3654,"Guns of Navarone, The (1961)",Action|Adventure|Drama|War +3655,Blow-Out (La grande bouffe) (1973),Drama +3656,Lured (1947),Crime|Film-Noir|Mystery|Thriller +3657,Pandora and the Flying Dutchman (1951),Drama +3658,Quatermass and the Pit (1967),Horror|Sci-Fi +3659,Quatermass 2 (Enemy from Space) (1957),Sci-Fi|Thriller +3662,Puppet Master III: Toulon's Revenge (1991),Horror|Sci-Fi|Thriller +3663,Puppet Master 4 (1993),Horror|Sci-Fi|Thriller +3664,Puppet Master 5: The Final Chapter (1994),Horror|Sci-Fi|Thriller +3665,Curse of the Puppet Master (Puppet Master 6: The Curse) (1998),Horror|Sci-Fi|Thriller +3666,Retro Puppet Master (Puppet Master 7) (1999),Horror|Sci-Fi|Thriller +3667,Rent-A-Cop (1988),Action|Comedy|Crime +3668,Romeo and Juliet (1968),Drama|Romance +3669,Stay Tuned (1992),Comedy +3670,Story of G.I. Joe (1945),War +3671,Blazing Saddles (1974),Comedy|Western +3672,Benji (1974),Adventure|Children +3673,Benji the Hunted (1987),Adventure|Children +3674,For the Love of Benji (1977),Adventure|Children|Comedy|Drama +3675,White Christmas (1954),Comedy|Musical|Romance +3676,Eraserhead (1977),Drama|Horror +3677,Baraka (1992),Documentary +3678,"Man with the Golden Arm, The (1955)",Drama +3679,"Decline of Western Civilization, The (1981)",Documentary|Musical +3680,"Decline of Western Civilization Part II: The Metal Years, The (1988)",Documentary +3681,For a Few Dollars More (Per qualche dollaro in più) (1965),Action|Drama|Thriller|Western +3682,Magnum Force (1973),Action|Crime|Drama|Thriller +3683,Blood Simple (1984),Crime|Drama|Film-Noir +3684,"Fabulous Baker Boys, The (1989)",Drama|Romance +3685,Prizzi's Honor (1985),Comedy|Drama|Romance +3686,Flatliners (1990),Horror|Sci-Fi|Thriller +3687,Light Years (Gandahar) (1988),Adventure|Animation|Fantasy|Sci-Fi +3688,Porky's (1982),Comedy +3689,Porky's II: The Next Day (1983),Comedy +3690,Porky's Revenge (1985),Comedy +3691,Private School (1983),Comedy +3692,Class of Nuke 'Em High (1986),Comedy|Horror +3693,"Toxic Avenger, The (1985)",Comedy|Horror +3694,"Toxic Avenger, Part II, The (1989)",Comedy|Horror +3695,"Toxic Avenger Part III: The Last Temptation of Toxie, The (1989)",Comedy|Horror +3696,Night of the Creeps (1986),Comedy|Horror|Sci-Fi|Thriller +3697,Predator 2 (1990),Action|Sci-Fi|Thriller +3698,"Running Man, The (1987)",Action|Sci-Fi +3699,Starman (1984),Adventure|Drama|Romance|Sci-Fi +3700,"Brother from Another Planet, The (1984)",Drama|Sci-Fi +3701,Alien Nation (1988),Crime|Drama|Sci-Fi|Thriller +3702,Mad Max (1979),Action|Adventure|Sci-Fi +3703,"Road Warrior, The (Mad Max 2) (1981)",Action|Adventure|Sci-Fi|Thriller +3704,Mad Max Beyond Thunderdome (1985),Action|Adventure|Sci-Fi +3705,Bird on a Wire (1990),Action|Comedy|Romance +3706,Angel Heart (1987),Film-Noir|Horror|Mystery|Thriller +3707,9 1/2 Weeks (Nine 1/2 Weeks) (1986),Drama|Romance +3708,Firestarter (1984),Horror|Thriller +3709,Sleepwalkers (1992),Horror +3710,Action Jackson (1988),Action|Comedy|Crime|Thriller +3711,Sarafina! (1992),Drama +3712,Soapdish (1991),Comedy +3713,"Long Walk Home, The (1990)",Drama +3714,Clara's Heart (1988),Drama +3715,Burglar (1987),Comedy|Crime +3716,Fatal Beauty (1987),Action|Comedy|Crime|Drama +3717,Gone in 60 Seconds (2000),Action|Crime +3718,American Pimp (1999),Documentary +3719,Love's Labour's Lost (2000),Comedy|Romance +3720,Sunshine (1999),Drama +3721,Trixie (2000),Comedy|Crime|Mystery +3722,American Virgin (2000),Comedy +3723,Hamlet (1990),Drama +3724,Coming Home (1978),Drama|War +3725,American Pop (1981),Animation|Musical +3726,Assault on Precinct 13 (1976),Action|Thriller +3727,Near Dark (1987),Horror|Western +3728,One False Move (1992),Crime|Drama|Film-Noir|Thriller +3729,Shaft (1971),Action|Crime|Drama|Thriller +3730,"Conversation, The (1974)",Drama|Mystery +3731,Cutter's Way (1981),Drama|Thriller +3732,"Fury, The (1978)",Horror +3733,"Paper Chase, The (1973)",Drama +3734,Prince of the City (1981),Drama +3735,Serpico (1973),Crime|Drama +3736,"Ace in the Hole (Big Carnival, The) (1951)",Drama +3737,Lonely Are the Brave (1962),Drama|Western +3738,"Sugarland Express, The (1974)",Drama +3739,Trouble in Paradise (1932),Comedy|Romance +3740,Big Trouble in Little China (1986),Action|Adventure|Comedy|Fantasy +3741,Badlands (1973),Crime|Drama|Thriller +3742,Battleship Potemkin (1925),Drama|War +3743,Boys and Girls (2000),Comedy|Romance +3744,Shaft (2000),Action|Crime|Thriller +3745,Titan A.E. (2000),Action|Adventure|Animation|Children|Sci-Fi +3746,Butterfly (La lengua de las mariposas) (1999),Drama +3747,Jesus' Son (1999),Drama +3748,"Match, The (1999)",Comedy|Romance +3749,"Time Regained (Temps retrouvé, Le) (1999)",Drama +3750,Boricua's Bond (2000),Drama +3751,Chicken Run (2000),Animation|Children|Comedy +3752,"Me, Myself & Irene (2000)",Adventure|Comedy +3753,"Patriot, The (2000)",Action|Drama|War +3754,"Adventures of Rocky and Bullwinkle, The (2000)",Adventure|Animation|Children|Comedy|Fantasy +3755,"Perfect Storm, The (2000)",Drama|Thriller +3756,"Golden Bowl, The (2000)",Drama +3757,Asylum (1972),Horror +3758,Communion (1989),Drama|Sci-Fi|Thriller +3759,Fun and Fancy Free (1947),Animation|Children|Musical +3760,"Kentucky Fried Movie, The (1977)",Comedy +3761,"Blood In, Blood Out (1993)",Action|Crime|Drama|Thriller +3762,Daughter of Dr. Jeckyll (1957),Horror +3763,F/X (1986),Action|Crime|Thriller +3764,F/X2 (a.k.a. F/X 2 - The Deadly Art of Illusion) (1991),Action|Crime|Thriller +3765,"Hot Spot, The (1990)",Crime|Drama|Romance +3766,Missing in Action (1984),Action|War +3767,Missing in Action 2: The Beginning (1985),Action|War +3768,Braddock: Missing in Action III (1988),Action|War +3769,Thunderbolt and Lightfoot (1974),Action +3770,Dreamscape (1984),Horror|Sci-Fi|Thriller +3771,The Golden Voyage of Sinbad (1973),Action|Adventure|Fantasy +3772,"Hatchet for the Honeymoon (Rosso segno della follia, Il) (1970)",Fantasy|Horror|Thriller +3773,House Party (1990),Comedy +3774,House Party 2 (1991),Comedy|Drama|Romance +3775,Make Mine Music (1946),Animation|Children|Musical +3776,Melody Time (1948),Animation|Children|Musical +3777,Nekromantik (1987),Comedy|Horror +3778,On Our Merry Way (1948),Comedy +3779,Project Moon Base (1953),Sci-Fi +3780,Rocketship X-M (1950),Sci-Fi +3781,Shaft in Africa (1973),Action|Crime +3782,Shaft's Big Score! (1972),Action|Crime +3783,Croupier (1998),Crime|Drama +3784,"Kid, The (2000)",Comedy|Fantasy +3785,Scary Movie (2000),Comedy|Horror +3786,But I'm a Cheerleader (1999),Comedy +3787,Shower (Xizao) (1999),Comedy +3788,Blow-Up (Blowup) (1966),Drama|Mystery +3789,"Pawnbroker, The (1964)",Drama +3790,Groove (2000),Drama +3791,Footloose (1984),Drama +3792,Duel in the Sun (1946),Drama|Romance|Western +3793,X-Men (2000),Action|Adventure|Sci-Fi +3794,Chuck & Buck (2000),Comedy|Drama +3795,"Five Senses, The (1999)",Drama +3796,"Wisdom of Crocodiles, The (a.k.a. Immortality) (2000)",Romance|Thriller +3797,"In Crowd, The (2000)",Thriller +3798,What Lies Beneath (2000),Drama|Horror|Mystery +3799,Pokémon the Movie 2000 (2000),Animation|Children +3800,Criminal Lovers (1999),Crime|Drama|Romance|Thriller +3801,Anatomy of a Murder (1959),Drama|Mystery +3802,Freejack (1992),Action|Sci-Fi +3803,Greaser's Palace (1972),Comedy|Drama|Western +3804,H.O.T.S. (1979),Comedy +3805,Knightriders (1981),Action|Adventure|Drama +3806,Mackenna's Gold (1969),Western +3807,Sinbad and the Eye of the Tiger (1977),Adventure|Fantasy +3808,"Two Women (Ciociara, La) (1960)",Drama|War +3809,What About Bob? (1991),Comedy +3810,White Sands (1992),Drama|Thriller +3811,Breaker Morant (1980),Drama|War +3812,Everything You Always Wanted to Know About Sex * But Were Afraid to Ask (1972),Comedy +3813,Interiors (1978),Drama +3814,Love and Death (1975),Comedy +3816,"Official Story, The (La historia oficial) (1985)",Drama +3817,"Other Side of Sunday, The (Søndagsengler) (1996)",Comedy|Drama +3818,Pot O' Gold (1941),Comedy|Musical +3819,Tampopo (1985),Comedy +3820,Thomas and the Magic Railroad (2000),Children +3821,Nutty Professor II: The Klumps (2000),Comedy +3822,"Girl on the Bridge, The (Fille sur le pont, La) (1999)",Drama|Romance +3823,Wonderland (1999),Drama +3824,Autumn in New York (2000),Drama|Romance +3825,Coyote Ugly (2000),Comedy|Drama|Romance +3826,Hollow Man (2000),Horror|Sci-Fi|Thriller +3827,Space Cowboys (2000),Action|Adventure|Comedy|Sci-Fi +3828,Better Living (1998),Comedy +3829,Mad About Mambo (2000),Comedy|Romance +3830,Psycho Beach Party (2000),Comedy|Horror|Thriller +3831,Saving Grace (2000),Comedy +3832,"Black Sabbath (Tre volti della paura, I) (1963)",Horror +3833,"Brain That Wouldn't Die, The (1962)",Horror|Sci-Fi +3834,Bronco Billy (1980),Adventure|Drama|Romance +3835,"Crush, The (1993)",Thriller +3836,Kelly's Heroes (1970),Action|Comedy|War +3837,Phantasm II (1988),Action|Fantasy|Horror|Sci-Fi|Thriller +3838,Phantasm III: Lord of the Dead (1994),Horror +3839,Phantasm IV: Oblivion (1998),Horror +3840,Pumpkinhead (1988),Horror +3841,Air America (1990),Action|Comedy +3843,Sleepaway Camp (1983),Horror +3844,Steel Magnolias (1989),Drama +3845,And God Created Woman (Et Dieu... créa la femme) (1956),Drama +3846,Easy Money (1983),Comedy +3847,"Ilsa, She Wolf of the SS (1974)",Horror +3848,Silent Fall (1994),Drama|Thriller +3849,The Spiral Staircase (1945),Horror|Mystery|Thriller +3850,Whatever Happened to Aunt Alice? (1969),Crime|Thriller +3851,I'm the One That I Want (2000),Comedy +3852,"Tao of Steve, The (2000)",Comedy +3853,"Tic Code, The (1998)",Drama +3854,Aimée & Jaguar (1999),Drama|Romance|War +3855,"Affair of Love, An (Liaison pornographique, Une) (1999)",Drama|Romance +3856,"Autumn Heart, The (1999)",Drama +3857,Bless the Child (2000),Thriller +3858,Cecil B. DeMented (2000),Comedy +3859,"Eyes of Tammy Faye, The (2000)",Documentary +3860,"Opportunists, The (2000)",Comedy|Crime|Drama +3861,"Replacements, The (2000)",Comedy +3862,About Adam (2000),Comedy +3863,"Cell, The (2000)",Drama|Horror|Thriller +3864,Godzilla 2000 (Gojira ni-sen mireniamu) (1999),Action|Adventure|Sci-Fi +3865,"Original Kings of Comedy, The (2000)",Comedy|Documentary +3866,Sunset Strip (2000),Comedy +3867,All the Rage (It's the Rage) (1999),Drama +3868,"Naked Gun: From the Files of Police Squad!, The (1988)",Action|Comedy|Crime|Romance +3869,"Naked Gun 2 1/2: The Smell of Fear, The (1991)",Comedy +3870,Our Town (1940),Drama +3871,Shane (1953),Drama|Western +3872,"Suddenly, Last Summer (1959)",Drama +3873,Cat Ballou (1965),Comedy|Western +3874,"Couch in New York, A (1996)",Comedy|Drama|Romance +3875,"Devil Rides Out, The (1968)",Horror +3876,Jerry and Tom (1998),Comedy|Crime|Drama +3877,Supergirl (1984),Action|Adventure|Fantasy +3878,X: The Unknown (1956),Horror|Sci-Fi +3879,"Art of War, The (2000)",Action|Thriller +3880,"Ballad of Ramblin' Jack, The (2000)",Documentary +3881,Phish: Bittersweet Motel (2000),Documentary +3882,Bring It On (2000),Comedy +3883,Catfish in Black Bean Sauce (2000),Comedy|Drama +3884,"Crew, The (2000)",Comedy +3885,Love & Sex (2000),Comedy|Drama|Romance +3886,Steal This Movie! (2000),Drama +3887,Went to Coney Island on a Mission From God... Be Back by Five (1998),Drama +3888,Skipped Parts (2000),Drama|Romance +3889,Highlander: Endgame (Highlander IV) (2000),Action|Adventure|Fantasy +3890,Back Stage (2000),Documentary +3891,Turn It Up (2000),Crime|Drama +3892,Anatomy (Anatomie) (2000),Horror +3893,Nurse Betty (2000),Comedy|Crime|Drama|Romance|Thriller +3894,Solas (1999),Drama +3895,"Watcher, The (2000)",Crime|Thriller +3896,"Way of the Gun, The (2000)",Crime|Thriller +3897,Almost Famous (2000),Drama +3898,Bait (2000),Action|Comedy +3899,Circus (2000),Crime|Drama|Thriller +3900,Crime and Punishment in Suburbia (2000),Comedy|Drama +3901,Duets (2000),Comedy|Drama +3902,Goya in Bordeaux (Goya en Burdeos) (1999),Drama +3903,Urbania (2000),Drama +3904,Uninvited Guest (1999),Drama +3905,"Specials, The (2000)",Comedy +3906,Under Suspicion (2000),Crime|Thriller +3907,"Prince of Central Park, The (1999)",Action|Adventure|Drama +3908,Urban Legends: Final Cut (2000),Horror +3909,Woman on Top (2000),Comedy|Romance +3910,Dancer in the Dark (2000),Drama|Musical +3911,Best in Show (2000),Comedy +3912,Beautiful (2000),Comedy|Drama +3913,Barenaked in America (1999),Documentary +3914,"Broken Hearts Club, The (2000)",Drama +3915,Girlfight (2000),Drama +3916,Remember the Titans (2000),Drama +3917,Hellraiser (1987),Horror +3918,Hellbound: Hellraiser II (1988),Horror +3919,Hellraiser III: Hell on Earth (1992),Horror +3920,"Faraway, So Close (In weiter Ferne, so nah!) (1993)",Drama|Fantasy|Mystery|Romance +3921,Beach Party (1963),Comedy +3922,Bikini Beach (1964),Comedy +3923,Return of the Fly (1959),Horror|Sci-Fi +3924,Pajama Party (1964),Comedy +3925,Stranger Than Paradise (1984),Comedy|Drama +3926,Voyage to the Bottom of the Sea (1961),Adventure|Sci-Fi +3927,Fantastic Voyage (1966),Adventure|Sci-Fi +3928,Abbott and Costello Meet Frankenstein (1948),Comedy|Horror +3929,"Bank Dick, The (1940)",Comedy +3930,"Creature from the Black Lagoon, The (1954)",Adventure|Horror|Sci-Fi +3931,"Giant Gila Monster, The (1959)",Horror|Sci-Fi +3932,"Invisible Man, The (1933)",Horror|Sci-Fi +3933,"Killer Shrews, The (1959)",Horror|Sci-Fi +3934,Kronos (1957),Sci-Fi +3936,Phantom of the Opera (1943),Horror|Musical|Thriller +3937,Runaway (1984),Sci-Fi|Thriller +3938,"Slumber Party Massacre, The (1982)",Horror +3939,Slumber Party Massacre II (1987),Horror +3940,Slumber Party Massacre III (1990),Horror +3941,Sorority House Massacre (1986),Horror +3942,Sorority House Massacre II (1990),Horror +3943,Bamboozled (2000),Comedy +3944,Bootmen (2000),Comedy|Drama +3945,Digimon: The Movie (2000),Adventure|Animation|Children +3946,Get Carter (2000),Action|Drama|Thriller +3947,Get Carter (1971),Action|Crime|Drama|Thriller +3948,Meet the Parents (2000),Comedy +3949,Requiem for a Dream (2000),Drama +3950,Tigerland (2000),Drama +3951,Two Family House (2000),Drama +3952,"Contender, The (2000)",Drama|Thriller +3953,Dr. T and the Women (2000),Comedy|Romance +3954,Just Looking (1999),Comedy +3955,"Ladies Man, The (2000)",Comedy +3956,Lost Souls (2000),Drama|Horror|Thriller +3957,Billy Jack (1971),Action|Drama +3958,Billy Jack Goes to Washington (1977),Drama +3959,"Time Machine, The (1960)",Action|Adventure|Sci-Fi +3960,Haunted (1995),Drama|Thriller +3961,Ghoulies (1985),Horror +3962,Ghoulies II (1987),Comedy|Horror +3963,"Unsinkable Molly Brown, The (1964)",Musical +3964,"Adventures of Ichabod and Mr. Toad, The (1949)",Animation|Children +3965,"Strange Love of Martha Ivers, The (1946)",Drama|Film-Noir +3966,Detour (1945),Crime|Film-Noir +3967,Billy Elliot (2000),Drama +3968,Bedazzled (2000),Comedy +3969,Pay It Forward (2000),Drama +3970,"Beyond, The (E tu vivrai nel terrore - L'aldilà) (1981)",Horror +3971,"Private Eyes, The (1981)",Comedy|Mystery +3972,"Legend of Drunken Master, The (Jui kuen II) (1994)",Action|Comedy +3973,Book of Shadows: Blair Witch 2 (2000),Crime|Horror|Mystery|Thriller +3974,"Little Vampire, The (2000)",Adventure|Children +3975,Lucky Numbers (2000),Comedy|Drama +3976,Stardom (2000),Comedy|Drama +3977,Charlie's Angels (2000),Action|Comedy +3978,"Legend of Bagger Vance, The (2000)",Drama|Romance +3979,Little Nicky (2000),Comedy +3980,Men of Honor (2000),Drama +3981,Red Planet (2000),Action|Sci-Fi|Thriller +3982,What's Cooking? (2000),Drama +3983,You Can Count on Me (2000),Drama|Romance +3984,Diamonds Are Forever (1971),Action|Adventure|Thriller +3985,"Eagle Has Landed, The (1976)",Drama|War +3986,"6th Day, The (2000)",Action|Sci-Fi|Thriller +3987,Bounce (2000),Drama|Romance +3988,How the Grinch Stole Christmas (a.k.a. The Grinch) (2000),Children|Comedy|Fantasy +3989,One Day in September (1999),Documentary +3990,Rugrats in Paris: The Movie (2000),Animation|Children|Comedy +3991,102 Dalmatians (2000),Children|Comedy +3992,Malèna (2000),Drama|Romance|War +3993,Quills (2000),Drama|Romance +3994,Unbreakable (2000),Drama|Sci-Fi +3995,Boys Life 3 (2000),Drama +3996,"Crouching Tiger, Hidden Dragon (Wo hu cang long) (2000)",Action|Drama|Romance +3997,Dungeons & Dragons (2000),Action|Adventure|Comedy|Fantasy +3998,Proof of Life (2000),Drama +3999,Vertical Limit (2000),Action|Adventure +4000,"Bounty, The (1984)",Adventure|Drama +4001,Code of Silence (1985),Action +4002,"Planes, Trains & Automobiles (1987)",Comedy +4003,She's Having a Baby (1988),Comedy +4004,Secrets of the Heart (Secretos del Corazón) (1997),Drama +4005,"Living Daylights, The (1987)",Action|Adventure|Thriller +4006,Transformers: The Movie (1986),Adventure|Animation|Children|Sci-Fi +4007,Wall Street (1987),Drama +4008,Born on the Fourth of July (1989),Drama|War +4009,Talk Radio (1988),Drama +4010,Brewster's Millions (1985),Comedy +4011,Snatch (2000),Comedy|Crime|Thriller +4012,Punchline (1988),Comedy|Drama +4013,Mr. Accident (2000),Comedy +4014,Chocolat (2000),Drama|Romance +4015,"Dude, Where's My Car? (2000)",Comedy|Sci-Fi +4016,"Emperor's New Groove, The (2000)",Adventure|Animation|Children|Comedy|Fantasy +4017,Pollock (2000),Drama +4018,What Women Want (2000),Comedy|Romance +4019,Finding Forrester (2000),Drama +4020,"Gift, The (2000)",Thriller +4021,Before Night Falls (2000),Drama +4022,Cast Away (2000),Drama +4023,"Family Man, The (2000)",Comedy|Drama|Romance +4024,"House of Mirth, The (2000)",Romance +4025,Miss Congeniality (2000),Comedy|Crime +4026,Nowhere to Hide (Injeong sajeong bol geot eobtda) (1999),Action|Comedy|Crime|Thriller +4027,"O Brother, Where Art Thou? (2000)",Adventure|Comedy|Crime +4028,Songcatcher (2000),Drama +4029,State and Main (2000),Comedy|Drama +4030,Dracula 2000 (2000),Horror +4031,All the Pretty Horses (2000),Drama|Romance|Western +4032,"Everlasting Piece, An (2000)",Comedy +4033,Thirteen Days (2000),Drama|Thriller|War +4034,Traffic (2000),Crime|Drama|Thriller +4035,"Claim, The (2000)",Romance|Western +4036,Shadow of the Vampire (2000),Drama|Horror +4037,House of Games (1987),Crime|Film-Noir|Mystery|Thriller +4038,Kill Me Again (1989),Crime|Drama|Thriller +4039,Annie (1982),Children|Musical +4040,Don't Tell Mom the Babysitter's Dead (1991),Comedy +4041,"Officer and a Gentleman, An (1982)",Drama|Romance +4042,"Alamo, The (1960)",Action|Drama|War|Western +4043,At Close Range (1986),Crime|Drama +4044,Breaker! Breaker! (1977),Action|Adventure|Crime +4045,Breakheart Pass (1975),Western +4046,Friendly Persuasion (1956),Drama +4047,Gettysburg (1993),Drama|War +4048,Imaginary Crimes (1994),Drama +4049,Rancho Deluxe (1975),Comedy|Western +4050,"St. Francisville Experiment, The (2000)",Horror|Thriller +4051,Horrors of Spider Island (Ein Toter Hing im Netz) (1960),Horror|Sci-Fi +4052,Antitrust (2001),Crime|Drama|Thriller +4053,Double Take (2001),Action|Comedy +4054,Save the Last Dance (2001),Drama|Romance +4055,Panic (2000),Drama +4056,"Pledge, The (2001)",Crime|Drama|Mystery|Thriller +4057,Kids World (2000),Adventure|Children|Comedy +4058,"Personals, The (Zheng hun qi shi) (1998)",Drama +4059,"Amati Girls, The (2000)",Drama +4060,Love Field (1992),Drama +4061,The Man in the Moon (1991),Drama|Romance +4062,Mystic Pizza (1988),Comedy|Drama|Romance +4063,Prelude to a Kiss (1992),Comedy|Drama|Romance +4064,Coffy (1973),Action|Crime|Thriller +4065,Foxy Brown (1974),Action|Crime|Drama +4066,I'm Gonna Git You Sucka (1988),Action|Comedy +4067,Untamed Heart (1993),Drama|Romance +4068,Sugar & Spice (2001),Comedy +4069,"Wedding Planner, The (2001)",Comedy|Romance +4070,Amy (1998),Comedy|Drama +4071,Dog Run (1996),Drama +4072,Faithless (Trolösa) (2000),Drama|Romance +4073,"Invisible Circus, The (2001)",Drama|Romance +4074,"Legend of Rita, The (Stille nach dem Schuß, Die) (1999)",Drama +4075,"Monkey's Tale, A (Château des singes, Le) (1999)",Animation|Children +4076,Two Ninas (1999),Comedy|Romance +4077,"With a Friend Like Harry... (Harry, un ami qui vous veut du bien) (2000)",Drama|Thriller +4078,Amazing Grace and Chuck (1987),Drama +4079,Amazon Women on the Moon (1987),Comedy|Sci-Fi +4080,Baby Boom (1987),Comedy +4081,Back to the Beach (1987),Comedy +4082,Barfly (1987),Comedy|Drama|Romance +4083,Best Seller (1987),Thriller +4084,Beverly Hills Cop II (1987),Action|Comedy|Crime|Thriller +4085,Beverly Hills Cop (1984),Action|Comedy|Crime|Drama +4086,"Big Easy, The (1987)",Action|Crime|Mystery|Romance|Thriller +4087,Big Shots (1987),Adventure|Children|Comedy +4088,"Big Town, The (1987)",Drama|Romance|Thriller +4089,Born in East L.A. (1987),Comedy +4090,"Brave Little Toaster, The (1987)",Animation|Children +4091,Can't Buy Me Love (1987),Comedy|Romance +4092,Cherry 2000 (1987),Romance|Sci-Fi +4093,Cop (1988),Thriller +4094,Critical Condition (1987),Comedy +4095,Cry Freedom (1987),Drama +4096,"Curse, The (a.k.a. The Farm) (1987)",Horror|Sci-Fi +4097,Dead of Winter (1987),Horror|Thriller +4098,"Dead, The (1987)",Drama +4099,Death Before Dishonor (1987),Action|Drama +4100,Disorderlies (1987),Comedy +4101,Dogs in Space (1987),Drama +4102,Eddie Murphy Raw (1987),Comedy|Documentary +4103,Empire of the Sun (1987),Action|Adventure|Drama|War +4104,Ernest Goes to Camp (1987),Comedy +4105,"Evil Dead, The (1981)",Fantasy|Horror|Thriller +4106,Extreme Prejudice (1987),Action|Crime|Drama|Thriller|Western +4107,Family Viewing (1987),Drama +4108,Five Corners (1987),Drama +4109,Flowers in the Attic (1987),Drama|Thriller +4110,"Fourth Protocol, The (1987)",Thriller +4111,Gardens of Stone (1987),Drama|War +4112,Julia and Julia (Giulia e Giulia) (1987),Drama|Mystery|Thriller +4113,"Glass Menagerie, The (1987)",Drama +4114,"Good Morning, Babylon (1987)",Drama +4115,Hiding Out (1987),Comedy +4116,Hollywood Shuffle (1987),Comedy +4117,Hope and Glory (1987),Drama +4118,Hot Pursuit (1987),Comedy +4119,Housekeeping (1987),Comedy|Drama +4120,Hunk (1987),Comedy +4121,Innerspace (1987),Action|Adventure|Comedy|Sci-Fi +4122,Ironweed (1987),Drama +4123,Ishtar (1987),Comedy +4124,Jaws: The Revenge (1987),Horror|Thriller +4125,Leonard Part 6 (1987),Comedy|Sci-Fi +4126,Less Than Zero (1987),Drama +4127,"Like Father, Like Son (1987)",Comedy +4128,"Lost Boys, The (1987)",Comedy|Horror|Thriller +4129,Made in Heaven (1987),Fantasy|Romance +4130,Maid to Order (1987),Comedy|Fantasy +4131,Making Mr. Right (1987),Comedy|Romance|Sci-Fi +4132,Mannequin (1987),Comedy|Romance +4133,Masters of the Universe (1987),Action|Adventure|Fantasy|Sci-Fi +4134,Million Dollar Mystery (1987),Comedy +4135,"Monster Squad, The (1987)",Adventure|Comedy|Horror +4136,"Month in the Country, A (1987)",Drama +4137,Morgan Stewart's Coming Home (1987),Comedy +4138,My Demon Lover (1987),Comedy|Horror +4139,No Man's Land (1987),Crime|Drama +4140,North Shore (1987),Drama|Romance +4141,Head Over Heels (2001),Comedy|Romance +4142,Left Behind: The Movie (2000),Action|Adventure|Drama|Thriller +4143,Valentine (2001),Horror|Mystery +4144,In the Mood For Love (Fa yeung nin wa) (2000),Drama|Romance +4145,Fever (1999),Thriller +4146,"Million Dollar Hotel, The (2001)",Drama|Mystery|Romance +4147,Nico and Dani (Krámpack) (2000),Comedy|Drama|Romance +4148,Hannibal (2001),Horror|Thriller +4149,Saving Silverman (Evil Woman) (2001),Comedy|Romance +4150,Signs & Wonders (2001),Drama +4151,"Taste of Others, The (Le goût des autres) (2000)",Comedy|Drama|Romance +4152,Vatel (2000),Drama +4153,Down to Earth (2001),Comedy|Fantasy|Romance +4154,Recess: School's Out (2001),Animation|Children +4155,Sweet November (2001),Drama|Romance +4156,Company Man (2000),Comedy +4157,"Price of Milk, The (2000)",Comedy|Drama|Fantasy|Romance +4158,Monkeybone (2001),Animation|Comedy|Fantasy +4159,3000 Miles to Graceland (2001),Action|Thriller +4160,"Widow of St. Pierre, The (Veuve de Saint-Pierre, La) (2000)",Drama|Romance +4161,"Mexican, The (2001)",Action|Comedy +4162,See Spot Run (2001),Comedy +4163,Carman: The Champion (2001),Action|Drama +4164,"Caveman's Valentine, The (2001)",Drama +4165,"Me You Them (Eu, Tu, Eles) (2000)",Comedy|Drama|Romance +4166,Series 7: The Contenders (2001),Action|Drama +4167,15 Minutes (2001),Thriller +4168,Get Over It (2001),Comedy|Romance +4169,Blow Dry (a.k.a. Never Better) (2001),Comedy +4170,Hit and Runway (1999),Comedy +4171,Long Night's Journey Into Day (2000),Documentary +4172,Simon Magus (1999),Drama|Fantasy|Mystery|Romance +4173,When Brendan Met Trudy (2000),Comedy|Romance +4174,Avalon (1990),Drama +4175,Gray's Anatomy (1996),Comedy|Drama +4176,Madadayo (a.k.a. Not Yet) (1993),Drama +4177,"Mirror Crack'd, The (1980)",Crime|Mystery|Thriller +4178,Of Mice and Men (1939),Drama +4179,Pixote (1981),Drama +4180,Reform School Girls (1986),Action|Drama +4181,Tapeheads (1988),Comedy +4182,Tuff Turf (1985),Drama +4183,"Unbelievable Truth, The (1989)",Comedy|Drama +4184,"Bishop's Wife, The (1947)",Comedy|Drama|Romance +4185,Elvis: That's the Way It Is (1970),Documentary +4186,"Fortune Cookie, The (1966)",Comedy|Drama|Romance +4187,Lilies of the Field (1963),Drama +4188,Hans Christian Andersen (1952),Children|Musical +4189,"Greatest Story Ever Told, The (1965)",Drama +4190,Elmer Gantry (1960),Drama +4191,Alfie (1966),Comedy|Drama|Romance +4192,Demetrius and the Gladiators (1954),Drama +4193,"Fantasticks, The (1995)",Musical +4194,I Know Where I'm Going! (1945),Drama|Romance|War +4195,"Abominable Dr. Phibes, The (1971)",Horror|Mystery +4196,"Die, Monster, Die! (1965)",Horror|Mystery|Sci-Fi +4197,Real Life (1979),Comedy +4198,Battle Beyond the Stars (1980),Sci-Fi +4199,Death Warrant (1990),Action +4200,Double Impact (1991),Action +4201,"End, The (1978)",Comedy +4202,Fuzz (1972),Drama +4203,Harley Davidson and the Marlboro Man (1991),Action|Crime|Drama +4204,Losin' It (1983),Comedy +4205,Mermaids (1990),Comedy|Drama|Romance +4206,"Mighty Quinn, The (1989)",Crime|Mystery +4207,Navy Seals (1990),Action|Adventure|War +4208,Unmade Beds (1997),Documentary +4209,Rated X (2000),Drama +4210,Manhunter (1986),Action|Crime|Drama|Horror|Thriller +4211,Reversal of Fortune (1990),Drama +4212,Death on the Nile (1978),Crime|Mystery +4213,Deepstar Six (1989),Horror|Sci-Fi|Thriller +4214,Revenge of the Nerds (1984),Comedy +4215,Revenge of the Nerds II: Nerds in Paradise (1987),Comedy +4216,Longtime Companion (1990),Drama +4217,4 Little Girls (1997),Documentary +4218,River's Edge (1986),Crime|Drama +4219,Girls Just Want to Have Fun (1985),Comedy +4220,"Longest Yard, The (1974)",Comedy +4221,Necessary Roughness (1991),Comedy +4222,C.H.U.D. (1984),Horror +4223,Enemy at the Gates (2001),Drama|War +4224,Exit Wounds (2001),Action|Thriller +4225,"Dish, The (2001)",Comedy +4226,Memento (2000),Mystery|Thriller +4227,"Brothers, The (2001)",Comedy|Drama +4228,Heartbreakers (2001),Comedy|Crime|Romance +4229,Say It Isn't So (2001),Comedy|Romance +4230,Too Much Sleep (1997),Comedy +4231,Someone Like You (2001),Comedy|Romance +4232,Spy Kids (2001),Action|Adventure|Children|Comedy +4233,Tomcats (2001),Comedy +4234,"Tailor of Panama, The (2001)",Drama|Thriller +4235,Amores Perros (Love's a Bitch) (2000),Drama|Thriller +4236,Keep the River on Your Right: A Modern Cannibal Tale (2000),Documentary +4237,"Gleaners & I, The (Les glaneurs et la glaneuse) (2000)",Documentary +4238,Along Came a Spider (2001),Action|Crime|Mystery|Thriller +4239,Blow (2001),Crime|Drama +4240,Just Visiting (2001),Comedy|Fantasy +4241,Pokémon 3: The Movie (2001),Animation|Children +4242,Beautiful Creatures (2000),Comedy|Crime|Drama|Thriller +4243,Brigham City (2001),Crime|Drama|Mystery +4244,"Day I Became a Woman, The (Roozi khe zan shodam) (2000)",Drama +4245,Shadow Magic (2000),Drama|Romance +4246,Bridget Jones's Diary (2001),Comedy|Drama|Romance +4247,Joe Dirt (2001),Adventure|Comedy|Mystery|Romance +4248,Josie and the Pussycats (2001),Comedy +4249,Kingdom Come (2001),Comedy +4250,"Body, The (2001)",Drama|Sci-Fi +4251,Chopper (2000),Drama|Thriller +4252,"Circle, The (Dayereh) (2000)",Drama +4253,Lakeboat (2000),Comedy +4254,Crocodile Dundee in Los Angeles (2001),Comedy|Drama +4255,Freddy Got Fingered (2001),Comedy +4256,"Center of the World, The (2001)",Drama +4257,"Girl, The (2000)",Drama|Mystery|Romance +4258,"Low Down, The (2000)",Drama +4259,"Luzhin Defence, The (2000)",Drama|Romance +4260,"Visit, The (2000)",Drama +4261,Lilies (1996),Drama|Fantasy|Romance +4262,Scarface (1983),Action|Crime|Drama +4263,Days of Wine and Roses (1962),Drama +4265,Driven (2001),Action|Thriller +4266,"Forsaken, The (2001)",Horror +4267,One Night at McCool's (2001),Comedy +4268,Town & Country (2001),Comedy +4269,Rat (2000),Comedy|Drama|Romance +4270,"Mummy Returns, The (2001)",Action|Adventure|Comedy|Thriller +4271,Eureka (Yurîka) (2000),Drama +4272,Tuvalu (1999),Comedy +4273,Under the Sand (2000),Drama +4274,Cleopatra (1963),Drama|Romance +4275,Krull (1983),Action|Adventure|Fantasy|Sci-Fi +4276,Lost in America (1985),Comedy +4277,"Lost World, The (1925)",Adventure|Sci-Fi +4278,Triumph of the Will (Triumph des Willens) (1934),Documentary +4279,True Believer (1989),Crime +4280,"World According to Garp, The (1982)",Comedy|Drama|Romance +4281,Candy (1968),Comedy +4282,Fellini Satyricon (1969),Drama|Fantasy +4283,Fellini's Roma (Roma) (1972),Drama +4284,Frankie and Johnny (1966),Comedy +4285,Frankie and Johnny (1991),Comedy|Romance +4286,"Home of Our Own, A (1993)",Drama +4287,Paris When It Sizzles (1964),Comedy|Romance +4288,Pola X (1999),Drama|Romance +4289,"City of Women, The (Città delle donne, La) (1980)",Comedy|Drama +4290,For the Boys (1991),Comedy|Drama|Musical +4291,Nine to Five (a.k.a. 9 to 5) (1980),Comedy|Crime +4292,Norma Rae (1979),Drama +4293,Summer Rental (1985),Comedy +4294,"5,000 Fingers of Dr. T, The (1953)",Children|Fantasy|Musical +4295,Backtrack (Catchfire) (1990),Action|Drama|Thriller +4296,Love Story (1970),Drama|Romance +4297,Pelle the Conqueror (Pelle erobreren) (1987),Drama +4298,Rififi (Du rififi chez les hommes) (1955),Crime|Film-Noir|Thriller +4299,"Knight's Tale, A (2001)",Action|Comedy|Romance +4300,Bread and Roses (2000),Drama +4301,Calle 54 (2000),Documentary|Musical +4302,"King Is Alive, The (2000)",Drama +4303,Sordid Lives (2000),Comedy +4304,Startup.com (2001),Documentary +4305,Angel Eyes (2001),Romance|Thriller +4306,Shrek (2001),Adventure|Animation|Children|Comedy|Fantasy|Romance +4307,"Fast Food, Fast Women (2000)",Comedy|Romance +4308,Moulin Rouge (2001),Drama|Musical|Romance +4309,Petits Freres (Petits Frères) (1999),Drama +4310,Pearl Harbor (2001),Action|Drama|Romance|War +4311,Bloody Angels (1732 Høtten: Marerittet har et postnummer) (1998),Thriller +4312,Himalaya (Himalaya - l'enfance d'un chef) (1999),Adventure|Drama +4313,"Man Who Cried, The (2000)",Drama +4314,Our Song (2000),Drama +4315,Gabriela (2001),Comedy|Drama|Romance +4316,Ice Castles (1978),Drama +4317,Love Potion #9 (1992),Comedy|Romance +4318,Postcards From the Edge (1990),Comedy|Drama +4319,Apache (1954),Western +4320,"Buffalo Bill and the Indians, or Sitting Bull's History Lesson (a.k.a. Buffalo Bill and the Indians) (1976)",Comedy|Western +4321,City Slickers (1991),Comedy|Western +4322,Eight Men Out (1988),Drama +4323,"Horse Soldiers, The (1959)",Adventure|War|Western +4324,"Kentuckian, The (1955)",Drama|Western +4325,"Night, The (Notte, La) (1960)",Drama +4326,Mississippi Burning (1988),Crime|Drama|Thriller +4327,"Magnificent Seven, The (1960)",Adventure|Western +4328,"Return of the Magnificent Seven, The (a.k.a. Return of the Seven) (1966)",Western +4329,Rio Bravo (1959),Western +4330,"Scarlet Empress, The (1934)",Drama +4331,Semi-Tough (1978),Comedy +4332,Suspect (1987),Crime|Drama|Thriller +4333,Throw Momma from the Train (1987),Comedy|Crime +4334,Yi Yi (2000),Drama +4335,Midnight Madness (1980),Comedy +4336,Nightwatch (Nattevagten) (1994),Horror|Thriller +4337,"Sand Pebbles, The (1966)",Drama|Romance|War +4338,Twelve O'Clock High (1949),Drama|War +4339,Von Ryan's Express (1965),Action|Adventure|Drama|War +4340,"Animal, The (2001)",Comedy +4341,What's the Worst That Could Happen? (2001),Comedy +4342,Big Eden (2000),Drama|Romance +4343,Evolution (2001),Comedy|Sci-Fi +4344,Swordfish (2001),Action|Crime|Drama +4345,"Anniversary Party, The (2001)",Drama +4346,Bride of the Wind (2001),Drama|Musical|Romance +4347,Divided We Fall (Musíme si pomáhat) (2000),Comedy|Drama +4348,Whatever Happened to Harold Smith? (1999),Comedy +4349,Catch-22 (1970),Comedy|War +4350,Forgotten Silver (1996),Comedy|Documentary +4351,Point Break (1991),Action|Crime|Thriller +4352,Shag (1989),Comedy|Drama +4353,Uncommon Valor (1983),Action|War +4354,Unlawful Entry (1992),Crime|Thriller +4355,Youngblood (1986),Action|Drama +4356,Gentlemen Prefer Blondes (1953),Comedy|Musical|Romance +4357,How to Marry a Millionaire (1953),Comedy|Drama|Romance +4358,Macabre (1958),Horror|Thriller +4359,"Seven Year Itch, The (1955)",Comedy +4360,There's No Business Like Show Business (1954),Musical +4361,Tootsie (1982),Comedy|Romance +4362,"Boys Next Door, The (1986)",Crime|Drama +4363,Too Late the Hero (1970),Action|War +4364,"Trio, The (Trio, Das) (1998)",Drama|Romance +4365,Pavilion of Women (2000),Drama +4366,Atlantis: The Lost Empire (2001),Adventure|Animation|Children|Fantasy +4367,Lara Croft: Tomb Raider (2001),Action|Adventure +4368,Dr. Dolittle 2 (2001),Comedy +4369,"Fast and the Furious, The (2001)",Action|Crime|Thriller +4370,A.I. Artificial Intelligence (2001),Adventure|Drama|Sci-Fi +4371,Baby Boy (2001),Crime|Drama +4372,Crazy/Beautiful (2001),Drama|Romance +4373,Pootie Tang (2001),Comedy +4374,Let It Snow (1999),Comedy|Romance +4375,"Adventures of Felix, The (a.k.a. Funny Felix) (Drôle de Félix) (2000)",Comedy|Drama +4376,Down From the Mountain (2000),Documentary +4377,Russian Doll (2000),Comedy|Romance +4378,Sexy Beast (2000),Crime|Drama +4379,"South of Heaven, West of Hell (2000)",Drama|Western +4380,"Princess and the Warrior, The (Krieger und die Kaiserin, Der) (2000)",Drama|Romance +4381,"Closet, The (Placard, Le) (2001)",Comedy +4382,Wolves (1999),Documentary|IMAX +4383,"Crimson Rivers, The (Rivières pourpres, Les) (2000)",Crime|Drama|Mystery|Thriller +4384,Lumumba (2000),Drama +4385,Pandaemonium (2000),Drama +4386,Cats & Dogs (2001),Children|Comedy +4387,Kiss of the Dragon (2001),Action +4388,Scary Movie 2 (2001),Comedy +4389,Lost and Delirious (2001),Drama +4390,Rape Me (Baise-moi) (2000),Crime|Drama|Thriller +4391,"Vertical Ray of the Sun, The (Mua he chieu thang dung) (2000)",Drama +4392,Alice (1990),Comedy|Drama|Fantasy|Romance +4393,Another Woman (1988),Drama +4394,Beach Blanket Bingo (1965),Comedy|Musical +4395,Big Deal on Madonna Street (I Soliti Ignoti) (1958),Comedy|Crime +4396,"Cannonball Run, The (1981)",Action|Comedy +4397,Cannonball Run II (1984),Action|Comedy +4398,Speed Zone! (a.k.a. Cannonball Run III) (1989),Action|Comedy +4399,"Diary of a Chambermaid (Journal d'une femme de chambre, Le) (1964)",Comedy|Drama +4400,Donovan's Brain (1953),Sci-Fi +4401,Donovan's Reef (1963),Action|Comedy|Romance +4402,Dr. Goldfoot and the Bikini Machine (1965),Comedy +4403,"Fall of the House of Usher, The (House of Usher) (1960)",Horror +4404,Faust (1926),Drama|Fantasy|Horror +4405,"Last Laugh, The (Letzte Mann, Der) (1924)",Drama +4406,"Man Who Shot Liberty Valance, The (1962)",Crime|Drama|Western +4407,Salvador (1986),Drama|Thriller|War +4408,September (1987),Drama +4409,Shadows and Fog (1991),Comedy|Drama|Mystery|Thriller +4410,Something Wild (1986),Comedy|Crime|Drama +4411,Sons of Katie Elder (1965),Western +4412,"Thing with Two Heads, The (1972)",Comedy|Horror|Sci-Fi +4413,Village of the Giants (1965),Sci-Fi +4414,X: The Man with the X-Ray Eyes (1963),Sci-Fi|Thriller +4415,Cheech & Chong's Nice Dreams (1981),Comedy +4416,"Day the Earth Caught Fire, The (1961)",Sci-Fi +4417,"House by the Cemetery, The (Quella villa accanto al cimitero) (1981)",Horror +4418,Things Are Tough All Over (1982),Comedy +4419,All That Heaven Allows (1955),Drama|Romance +4420,"Barefoot Contessa, The (1954)",Drama +4421,"Blackout, The (1997)",Drama +4422,Cries and Whispers (Viskningar och rop) (1972),Drama +4423,"Entertainer, The (1960)",Drama +4424,"Garden of the Finzi-Continis, The (Giardino dei Finzi-Contini, Il) (1970)",Drama +4425,Howling III: The Marsupials (1987),Comedy|Horror +4426,Kiss Me Deadly (1955),Film-Noir +4427,"Lion in Winter, The (1968)",Drama +4428,"Misfits, The (1961)",Comedy|Drama|Romance|Western +4429,Moby Dick (1956),Drama +4430,Popcorn (1991),Horror +4431,Rembrandt (1936),Drama +4432,Sweet Smell of Success (1957),Drama|Film-Noir +4433,Written on the Wind (1956),Drama +4434,"10th Victim, The (La decima vittima) (1965)",Action|Comedy|Sci-Fi|Thriller +4435,Colonel Redl (Oberst Redl) (1985),Drama +4436,Obsession (1976),Mystery|Thriller +4437,Suspiria (1977),Horror +4438,"Fist of Fury (Chinese Connection, The) (Jing wu men) (1972)",Action|Drama|Romance|Thriller +4439,Christiane F. (a.k.a. We Children from Bahnhof Zoo) (Christiane F. - Wir Kinder vom Bahnhof Zoo) (1981),Drama +4440,"Big Boss, The (Fists of Fury) (Tang shan da xiong) (1971)",Action|Thriller +4441,Game of Death (1978),Action +4442,"Last Dragon, The (1985)",Action|Comedy|Drama +4443,Outland (1981),Action|Sci-Fi|Thriller +4444,"Way of the Dragon, The (a.k.a. Return of the Dragon) (Meng long guo jiang) (1972)",Action|Crime +4445,T-Rex: Back to the Cretaceous (1998),Adventure|Documentary|IMAX +4446,Final Fantasy: The Spirits Within (2001),Adventure|Animation|Fantasy|Sci-Fi +4447,Legally Blonde (2001),Comedy|Romance +4448,"Score, The (2001)",Action|Drama +4449,Adanggaman (2000),Drama +4450,Bully (2001),Crime|Drama|Thriller +4451,Jump Tomorrow (2001),Comedy|Drama|Romance +4452,Made (2001),Comedy +4453,Michael Jordan to the Max (2000),Documentary|IMAX +4454,More (1998),Animation|Drama|Sci-Fi|IMAX +4455,Thrill Ride: The Science of Fun (1997),Adventure|Documentary|IMAX +4456,Haunted Castle (2001),Animation|Horror|IMAX +4457,All Access (2001),Documentary|Musical|IMAX +4458,Africa: The Serengeti (1994),Documentary|IMAX +4459,Alaska: Spirit of the Wild (1997),Documentary|IMAX +4460,Encounter in the Third Dimension (1999),IMAX +4461,Siegfried & Roy: The Magic Box (1999),Documentary|IMAX +4462,18 Again! (1988),Comedy|Fantasy +4463,1969 (1988),Drama|War +4464,"Accidental Tourist, The (1988)",Comedy|Drama|Romance +4465,"Accused, The (1988)",Drama +4466,Above the Law (1988),Action|Crime|Drama +4467,"Adventures of Baron Munchausen, The (1988)",Adventure|Comedy|Fantasy +4468,Apartment Zero (1988),Drama|Thriller +4469,Appointment with Death (1988),Crime|Mystery +4470,Ariel (1988),Drama +4471,Arthur 2: On the Rocks (1988),Comedy|Romance +4472,Bad Dreams (1988),Horror|Thriller +4473,Bat*21 (1988),Drama|War +4474,Beaches (1988),Comedy|Drama|Musical +4475,"Beast of War, The (Beast, The) (1988)",Drama|War +4476,Big Business (1988),Comedy +4477,Big Top Pee-Wee (1988),Adventure|Children|Comedy +4478,Biloxi Blues (1988),Comedy|Drama +4479,Bird (1988),Drama|Musical +4480,"Blob, The (1988)",Horror|Sci-Fi +4481,"Boost, The (1988)",Drama +4482,"Bright Lights, Big City (1988)",Drama +4483,Caddyshack II (1988),Comedy +4484,Camille Claudel (1988),Drama +4485,Casual Sex? (1988),Comedy +4486,Clean and Sober (1988),Drama +4487,Cocktail (1988),Drama|Romance +4488,Colors (1988),Action|Crime|Drama +4489,Coming to America (1988),Comedy|Romance +4490,"Couch Trip, The (1988)",Comedy +4491,Criminal Law (1988),Thriller +4492,Critters (1986),Comedy|Sci-Fi +4493,Critters 2: The Main Course (1988),Comedy|Horror|Sci-Fi +4494,Critters 3 (1991),Comedy|Sci-Fi +4495,Crossing Delancey (1988),Comedy|Romance +4496,D.O.A. (1988),Film-Noir|Mystery|Thriller +4497,Dead Heat (1988),Action|Comedy|Horror|Sci-Fi +4498,"Dead Pool, The (1988)",Action|Crime|Thriller +4499,Dirty Rotten Scoundrels (1988),Comedy +4500,Drowning by Numbers (1988),Comedy|Drama +4501,"Elvira, Mistress of the Dark (1988)",Comedy|Horror +4502,Ernest Saves Christmas (1988),Children|Comedy +4503,Everybody's All-American (1988),Romance +4504,Feds (1988),Comedy +4505,For Keeps (1988),Drama|Romance +4506,Frantic (1988),Crime|Mystery|Thriller +4507,Fresh Horses (1988),Drama +4508,Gorillas in the Mist (1988),Drama +4509,"Great Outdoors, The (1988)",Comedy +4510,Heartbreak Hotel (1988),Comedy +4511,High Spirits (1988),Comedy +4512,Hot to Trot (1988),Comedy +4513,"House on Carroll Street, The (1988)",Thriller +4514,Howling IV: The Original Nightmare (1988),Horror +4515,Imagine: John Lennon (1988),Documentary +4516,Johnny Be Good (1988),Comedy +4517,Lady in White (a.k.a. The Mystery of the Lady in White) (1988),Horror|Mystery|Thriller +4518,The Lair of the White Worm (1988),Comedy|Horror +4519,"Land Before Time, The (1988)",Adventure|Animation|Children|Fantasy +4520,License to Drive (1988),Comedy +4521,Little Nikita (1988),Drama +4522,Masquerade (1988),Mystery|Romance|Thriller +4523,Milagro Beanfield War (1988),Comedy|Drama|Fantasy +4524,Moon Over Parador (1988),Comedy +4525,Moving (1988),Comedy +4526,My Stepmother Is an Alien (1988),Comedy|Romance|Sci-Fi +4527,"Night in the Life of Jimmy Reardon, A (1988)",Comedy|Romance +4528,Off Limits (1988),Action|Thriller|War +4529,Bagdad Cafe (Out of Rosenheim) (1987),Comedy|Drama +4530,Permanent Record (1988),Drama +4531,Red Heat (1988),Action +4532,Return of the Living Dead Part II (1988),Comedy|Horror +4533,"Return of the Living Dead, The (1985)",Comedy|Horror|Sci-Fi +4534,Return to Snowy River (a.k.a. The Man From Snowy River II) (1988),Adventure|Drama|Western +4535,"Man from Snowy River, The (1982)",Drama|Romance|Western +4536,Rocket Gibraltar (1988),Drama +4537,Running on Empty (1988),Drama +4538,Salome's Last Dance (1988),Comedy|Drama +4539,Salsa (1988),Musical|Romance +4540,Satisfaction (a.k.a. Girls of Summer) (1988),Comedy|Drama|Romance +4541,"Serpent and the Rainbow, The (1988)",Horror +4542,Shakedown (1988),Action +4543,Shoot to Kill (1988),Action|Adventure +4544,Short Circuit 2 (1988),Comedy|Sci-Fi +4545,Short Circuit (1986),Comedy|Sci-Fi +4546,"Vanishing, The (Spoorloos) (1988)",Drama|Thriller +4547,Stormy Monday (1988),Crime|Drama +4548,Sunset (1988),Action|Comedy|Thriller|Western +4549,Sweet Hearts Dance (1988),Drama +4550,Switching Channels (1988),Comedy +4551,"Telephone, The (1988)",Comedy +4552,"Tetsuo, the Ironman (Tetsuo) (1988)",Action|Horror|Sci-Fi|Thriller +4553,They Live (1988),Action|Sci-Fi|Thriller +4554,To Kill a Priest (1988),Drama +4555,Torch Song Trilogy (1988),Comedy|Drama|Romance +4556,Track 29 (1988),Drama|Mystery +4557,Tucker: The Man and His Dream (1988),Drama +4558,Twins (1988),Comedy +4559,Vice Versa (1988),Comedy +4560,Watchers (1988),Horror|Sci-Fi +4561,Waxwork (1988),Comedy|Horror +4562,Without a Clue (1988),Comedy|Mystery +4563,Young Einstein (1988),Comedy +4564,Always (1989),Drama|Fantasy|Romance +4565,American Ninja (1985),Action|Adventure +4566,American Ninja 2: The Confrontation (1987),Action|Adventure +4567,American Ninja 3: Blood Hunt (1989),Action|Adventure +4568,Best of the Best (1989),Action +4569,Best of the Best 2 (1993),Action +4570,"Big Picture, The (1989)",Comedy|Drama +4571,Bill & Ted's Excellent Adventure (1989),Adventure|Comedy|Sci-Fi +4572,Black Rain (1989),Action|Crime|Drama +4573,Blaze (1989),Comedy|Drama +4574,Blind Fury (1989),Action|Thriller +4575,Breaking In (1989),Adventure|Comedy +4576,C.H.U.D. II - Bud the Chud (1989),Comedy|Horror +4577,Casualties of War (1989),Drama|War +4578,Chances Are (1989),Comedy|Romance +4579,Cookie (1989),Comedy|Crime +4580,Cyborg (1989),Action|Sci-Fi +4581,Dad (1989),Drama +4582,Dead Bang (1989),Thriller +4583,Disorganized Crime (1989),Action|Comedy +4584,Dream a Little Dream (1989),Comedy|Drama|Romance +4585,"Dream Team, The (1989)",Comedy +4586,"Dry White Season, A (1989)",Drama|Thriller +4587,Earth Girls Are Easy (1988),Comedy|Musical|Sci-Fi +4588,Eddie and the Cruisers II: Eddie Lives! (1989),Drama|Musical +4589,Eddie and the Cruisers (1983),Drama|Musical|Mystery +4590,Enemies: A Love Story (1989),Drama +4591,Erik the Viking (1989),Adventure|Comedy|Fantasy +4592,"Experts, The (1989)",Comedy +4593,Family Business (1989),Comedy +4594,Farewell to the King (1989),Action|War +4595,Fat Man and Little Boy (1989),Drama +4596,The Girl in a Swing (1988),Drama|Romance +4597,Gleaming the Cube (1989),Action|Drama|Mystery +4598,Going Overboard (1989),Comedy +4599,Great Balls of Fire! (1989),Drama +4600,Gross Anatomy (a.k.a. A Cut Above) (1989),Comedy|Drama +4601,Happy Together (1989),Drama|Romance +4602,Harlem Nights (1989),Comedy|Crime|Romance +4603,Her Alibi (1989),Comedy|Romance +4604,Homer & Eddie (1989),Drama +4605,How to Get Ahead in Advertising (1989),Comedy|Fantasy +4606,Immediate Family (1989),Drama +4607,In Country (1989),Drama +4608,"Innocent Man, An (1989)",Crime|Drama +4609,Jacknife (1989),Drama +4610,"January Man, The (1989)",Comedy|Crime|Mystery|Thriller +4611,Johnny Handsome (1989),Crime|Drama +4612,Jesus of Montreal (Jésus de Montréal) (1989),Drama +4613,K-9 (1989),Action|Comedy|Crime +4614,Kickboxer (1989),Action +4615,Last Exit to Brooklyn (1989),Drama +4616,Lean on Me (1989),Drama +4617,Let It Ride (1989),Comedy +4618,Leviathan (1989),Horror|Sci-Fi|Thriller +4619,Little Monsters (1989),Comedy +4620,Lock Up (1989),Action|Adventure|Crime|Drama|Thriller +4621,Look Who's Talking (1989),Comedy|Romance +4622,Loverboy (1989),Comedy +4623,Major League (1989),Comedy +4624,Meet the Feebles (1989),Animation|Comedy|Musical +4625,Millennium (1989),Drama|Sci-Fi|Thriller +4626,Miracle Mile (1989),Drama|Romance|Sci-Fi +4627,Miss Firecracker (1989),Comedy +4628,New York Stories (1989),Comedy|Drama +4629,Next of Kin (1989),Action|Crime|Thriller +4630,No Holds Barred (1989),Action +4631,Old Gringo (1989),Drama +4632,"Package, The (1989)",Action|Thriller +4633,Parents (1989),Comedy|Drama|Horror +4634,Penn & Teller Get Killed (1989),Adventure|Comedy +4635,Pink Cadillac (1989),Action|Comedy|Drama +4636,"Punisher, The (1989)",Action +4637,Red Scorpion (1989),Action +4638,Jurassic Park III (2001),Action|Adventure|Sci-Fi|Thriller +4639,America's Sweethearts (2001),Comedy|Romance +4640,Brother (2000),Action|Crime|Thriller +4641,Ghost World (2001),Comedy|Drama +4642,Hedwig and the Angry Inch (2000),Comedy|Drama|Musical +4643,Planet of the Apes (2001),Action|Adventure|Drama|Sci-Fi +4644,Bread and Tulips (Pane e tulipani) (2000),Comedy|Drama|Romance +4645,Cure (1997),Crime|Horror|Thriller +4646,Greenfingers (2000),Comedy|Drama +4647,Jackpot (2001),Drama +4648,"Monkey's Mask, The (2000)",Crime|Mystery +4649,Wet Hot American Summer (2001),Comedy +4650,Relentless (1989),Thriller +4651,Renegades (1989),Action +4652,"Return of Swamp Thing, The (1989)",Comedy|Horror|Sci-Fi +4653,"Return of the Musketeers, The (1989)",Adventure|Comedy +4654,Road House (1989),Action|Drama +4655,Romero (1989),Drama +4656,Rosalie Goes Shopping (1989),Comedy +4657,Rude Awakening (1989),Comedy +4658,Santa Sangre (1989),Drama|Horror|Mystery|Thriller +4659,Scandal (1989),Drama +4660,Scenes from the Class Struggle in Beverly Hills (1989),Comedy +4661,Sea of Love (1989),Crime|Drama|Thriller +4662,"See No Evil, Hear No Evil (1989)",Comedy|Crime +4663,She's Out of Control (1989),Comedy +4664,Shirley Valentine (1989),Comedy|Romance +4665,Shocker (1989),Horror +4666,Skin Deep (1989),Comedy +4667,Slaves of New York (1989),Drama +4668,Some Girls (1988),Comedy|Drama|Romance +4669,Stepfather II (1989),Horror|Thriller +4670,"Stepfather, The (1987)",Horror|Thriller +4671,Sweetie (1989),Drama +4672,"Tall Guy, The (1989)",Comedy|Romance +4673,Tango & Cash (1989),Action|Comedy|Crime|Thriller +4674,Tap (1989),Drama +4675,Three Fugitives (1989),Action|Comedy +4676,Troop Beverly Hills (1989),Comedy +4677,Turner & Hooch (1989),Comedy|Crime +4678,UHF (1989),Comedy +4679,Uncle Buck (1989),Comedy +4680,Vampire's Kiss (1989),Comedy|Fantasy|Horror +4681,"War of the Roses, The (1989)",Comedy|Drama +4682,Warlock (1989),Action|Horror +4683,"Wizard, The (1989)",Adventure|Children|Comedy|Drama +4684,Worth Winning (1989),Comedy +4685,Warlock: The Armageddon (1993),Horror +4686,Weekend at Bernie's II (1993),Adventure|Comedy +4687,Billy Liar (1963),Comedy +4688,Black Robe (1991),Adventure|Drama +4689,"Cat o' Nine Tails, The (Gatto a nove code, Il) (1971)",Mystery|Thriller +4690,"Cotton Club, The (1984)",Crime|Musical +4691,Def-Con 4 (1985),Action|Sci-Fi +4692,"Hotel New Hampshire, The (1984)",Drama +4693,Idiot Box (1996),Crime|Drama +4694,Left Luggage (1998),Drama +4695,Who'll Stop the Rain (1978),Crime|Drama +4696,"Zorro, the Gay Blade (1981)",Comedy +4697,Basket Case (1982),Comedy|Horror +4698,Orphans (1997),Comedy|Drama +4699,Original Sin (2001),Drama|Romance|Thriller +4700,"Princess Diaries, The (2001)",Children|Comedy|Romance +4701,Rush Hour 2 (2001),Action|Comedy +4702,Thomas in Love (Thomas est Amoureux) (2000),Comedy|Drama +4703,Chocolat (1988),Drama +4704,Hatari! (1962),Adventure|Comedy +4705,"Cage aux Folles, La (1978)",Comedy +4706,"Cage aux Folles II, La (1980)",Comedy +4707,Liebestraum (1991),Mystery|Thriller +4708,Marat/Sade (1966),Drama|Musical +4709,Paint Your Wagon (1969),Comedy|Musical|Western +4710,"Shootist, The (1976)",Drama|Western +4711,Theremin: An Electronic Odyssey (1993),Documentary +4712,"Wild Child, The (Enfant sauvage, L') (1970)",Drama +4713,Altered States (1980),Drama|Sci-Fi +4714,Any Which Way You Can (1980),Comedy +4715,"Awakening, The (1980)",Horror +4716,Bad Timing: A Sensual Obsession (1980),Drama +4717,"Battle Creek Brawl (Big Brawl, The) (1980)",Action|Comedy +4718,American Pie 2 (2001),Comedy +4719,Osmosis Jones (2001),Action|Animation|Comedy|Crime|Drama|Romance|Thriller +4720,"Others, The (2001)",Drama|Horror|Mystery|Thriller +4721,American Outlaws (2001),Action|Comedy|Western +4722,All Over the Guy (2001),Comedy +4723,"Deep End, The (2001)",Drama +4724,On the Edge (2001),Drama +4725,Session 9 (2001),Horror|Thriller +4726,"Turandot Project, The (2000)",Documentary +4727,Captain Corelli's Mandolin (2001),Drama|Romance|War +4728,Rat Race (2001),Comedy +4729,Aberdeen (2000),Drama +4731,Innocence (2000),Drama +4732,Bubble Boy (2001),Comedy +4733,"Curse of the Jade Scorpion, The (2001)",Comedy +4734,Jay and Silent Bob Strike Back (2001),Adventure|Comedy +4735,Ghosts of Mars (2001),Horror|Sci-Fi|Thriller +4736,Summer Catch (2001),Comedy|Drama|Romance +4737,"American Rhapsody, An (2001)",Drama +4738,Happy Accidents (2000),Romance|Sci-Fi +4739,Lisa Picard is Famous (a.k.a. Famous) (2000),Comedy|Drama +4740,Maybe Baby (2000),Comedy|Romance +4741,Together (Tillsammans) (2000),Comedy|Drama|Romance +4742,Punks (2000),Comedy +4743,Tortilla Soup (2001),Comedy|Romance +4744,Jeepers Creepers (2001),Horror +4745,O (2001),Drama +4746,Waking Up in Reno (2002),Comedy|Romance +4747,Speedway Junky (1999),Drama +4748,3 Ninjas (1992),Action|Children|Comedy +4749,3 Ninjas Kick Back (1994),Action|Children|Comedy +4750,3 Ninjas Knuckle Up (1995),Action|Children +4751,"Hunter, The (1980)",Action|Thriller +4752,Maniac (1980),Horror +4753,Vamp (1986),Comedy|Horror +4754,"Wicker Man, The (1973)",Drama|Horror|Mystery|Thriller +4755,Wish Upon a Star (1996),Comedy +4756,"Musketeer, The (2001)",Action|Adventure|Drama|Romance +4757,Rock Star (2001),Comedy|Drama|Musical +4758,Soul Survivors (a.k.a. The Killer Cut) (2001),Horror|Thriller +4759,Two Can Play That Game (2001),Comedy|Drama +4760,Bounce: Behind the Velvet Rope (2000),Documentary +4761,Diamond Men (2001),Drama +4762,Djomeh (2000),Drama +4763,"Iron Ladies, The (Satree lek) (2000)",Comedy +4764,Kill Me Later (2001),Romance|Thriller +4765,L.I.E. (2001),Drama +4766,"Our Lady of the Assassins (Virgen de los sicarios, La) (2000)",Crime|Drama|Romance +4767,Abbott and Costello Meet the Mummy (1955),Comedy|Horror +4768,"Dr. Mabuse: The Gambler (Dr. Mabuse, der Spieler) (1922)",Crime|Mystery|Thriller +4769,Into the Arms of Strangers: Stories of the Kindertransport (2000),Documentary +4770,"Glass House, The (2001)",Thriller +4771,Hardball (2001),Drama +4772,Dinner Rush (2000),Drama +4773,Haiku Tunnel (2001),Comedy +4774,Big Trouble (2002),Comedy|Crime +4775,Glitter (2001),Drama|Musical|Romance +4776,Training Day (2001),Crime|Drama|Thriller +4777,"American Astronaut, The (2001)",Comedy|Musical|Sci-Fi +4778,Children Underground (2001),Documentary +4779,Go Tigers! (2001),Documentary +4780,Liam (2000),Drama +4781,Megiddo: The Omega Code 2 (2001),Action|Adventure|Fantasy|Sci-Fi|Thriller +4782,Sidewalks of New York (2001),Comedy|Romance +4783,"Endurance: Shackleton's Legendary Antarctic Expedition, The (2000)",Documentary +4784,"French Lieutenant's Woman, The (1981)",Drama +4785,"Great Silence, The (Grande silenzio, Il) (1969)",Drama|Western +4786,"Legend of Hell House, The (1973)",Horror|Thriller +4787,Little Man Tate (1991),Drama +4788,Moscow Does Not Believe in Tears (Moskva slezam ne verit) (1979),Drama|Romance +4789,Phantom of the Paradise (1974),Comedy|Fantasy|Horror|Musical|Thriller +4790,"Return of a Man Called Horse, The (1976)",Western +4791,Valdez Is Coming (1971),Western +4792,13 Ghosts (1960),Horror +4793,Montenegro (1981),Comedy|Drama +4794,Opera (1987),Crime|Horror|Mystery +4795,Father Goose (1964),Adventure|Comedy|Romance|War +4796,"Grass Is Greener, The (1960)",Comedy|Romance +4797,"Hole in the Head, A (1959)",Comedy|Musical +4798,Indiscreet (1958),Comedy|Romance +4799,"It's a Mad, Mad, Mad, Mad World (1963)",Action|Adventure|Comedy|Crime +4800,King Solomon's Mines (1937),Action|Adventure|Drama|Romance|Thriller +4801,"Little Foxes, The (1941)",Drama +4802,Operation Petticoat (1959),Action|Comedy|Romance|War +4803,Play Misty for Me (1971),Drama|Thriller +4804,Pocketful of Miracles (1961),Comedy|Drama +4805,Sayonara (1957),Drama +4806,"Shop on Main Street, The (Obchod na korze) (1965)",Drama +4807,Spring Break (1983),Comedy +4808,"Vanishing, The (1993)",Mystery|Thriller +4809,Silkwood (1983),Drama +4810,I Never Promised You a Rose Garden (1977),Drama +4811,Quadrophenia (1979),Drama|Musical +4812,SpaceCamp (1986),Adventure|Sci-Fi +4813,When Worlds Collide (1951),Sci-Fi +4814,Don't Say a Word (2001),Thriller +4815,Hearts in Atlantis (2001),Drama +4816,Zoolander (2001),Comedy +4817,Born Romantic (2000),Comedy|Drama|Romance +4818,Extreme Days (2001),Action|Adventure|Comedy|Drama +4819,Go Figure (Va savoir) (2001),Comedy|Drama|Romance +4820,Won't Anybody Listen? (2000),Documentary +4821,Joy Ride (2001),Adventure|Thriller +4822,Max Keeble's Big Move (2001),Children|Comedy +4823,Serendipity (2001),Comedy|Romance +4824,Grateful Dawg (2000),Documentary +4825,"Swamp, The (Ciénaga, La) (2001)",Comedy|Drama +4826,"Big Red One, The (1980)",Action|Adventure|Drama|War +4827,"Boogeyman, The (1980)",Horror +4828,"Party, The (Boum, La) (1980)",Comedy|Romance +4829,Lady in a Cage (1964),Drama|Thriller +4830,Brubaker (1980),Crime|Drama +4831,Can't Stop the Music (1980),Comedy|Musical +4832,Carny (1980),Drama +4833,"Changeling, The (1980)",Horror|Mystery|Thriller +4834,Cheech & Chong's Next Movie (1980),Comedy +4835,Coal Miner's Daughter (1980),Drama +4836,"Competition, The (1980)",Drama|Romance +4837,Cruising (1980),Crime|Drama|Thriller +4838,D.O.A. (1980),Documentary +4839,Death Ship (1980),Horror +4840,"Last Metro, The (Dernier métro, Le) (1980)",Drama|Romance +4841,Divine Madness! (1980),Comedy +4842,"Dogs of War, The (1980)",Drama|War +4843,"Learning Curve, The (1999)",Crime|Drama|Thriller +4844,Bandits (2001),Comedy|Crime|Romance +4845,Corky Romano (2001),Comedy|Crime +4846,Iron Monkey (Siu nin Wong Fei-hung ji: Tit Ma Lau) (1993),Action|Comedy +4847,Fat Girl (À ma soeur!) (2001),Drama +4848,Mulholland Drive (2001),Crime|Drama|Film-Noir|Mystery|Thriller +4849,My First Mister (2001),Comedy|Drama +4850,Spriggan (Supurigan) (1998),Action|Animation|Sci-Fi +4851,Things Behind the Sun (2001),Drama +4852,Bones (2001),Horror +4853,Brannigan (1975),Action +4854,Clambake (1967),Musical +4855,Dirty Harry (1971),Action|Crime|Thriller +4856,Destiny in Space (1994),Documentary|IMAX +4857,Fiddler on the Roof (1971),Drama|Musical +4858,Hail Columbia! (1982),Documentary|IMAX +4859,Kansas (1988),Crime|Drama +4860,Making the Grade (1984),Comedy +4861,Mission to Mir (1997),Documentary|IMAX +4862,Not Without My Daughter (1991),Drama +4863,Female Trouble (1975),Comedy|Crime +4864,Titanica (1992),Documentary|IMAX +4865,From Hell (2001),Crime|Horror|Mystery|Thriller +4866,"Last Castle, The (2001)",Action +4867,Riding in Cars with Boys (2001),Comedy|Drama +4868,Bangkok Dangerous (2000),Action|Crime|Romance +4869,Burnt Money (Plata Quemada) (2000),Action|Crime|Drama|Romance|Thriller +4870,Dancing at the Blue Iguana (2000),Drama +4871,Focus (2001),Drama +4872,Intimacy (2000),Drama +4873,Waking Life (2001),Animation|Drama|Fantasy +4874,K-PAX (2001),Drama|Fantasy|Mystery|Sci-Fi +4875,On the Line (2001),Comedy|Romance +4876,Thirteen Ghosts (a.k.a. Thir13en Ghosts) (2001),Horror|Thriller +4877,Better Than Sex (2000),Comedy|Romance +4878,Donnie Darko (2001),Drama|Mystery|Sci-Fi|Thriller +4879,High Heels and Low Lifes (2001),Action|Comedy|Crime|Drama +4880,Life as a House (2001),Drama +4881,"Man Who Wasn't There, The (2001)",Crime|Drama +4882,Ouch (Aïe) (2000),Comedy +4883,"Town is Quiet, The (Ville est tranquille, La) (2000)",Drama +4884,Trembling Before G-d (2001),Documentary +4885,Domestic Disturbance (2001),Thriller +4886,"Monsters, Inc. (2001)",Adventure|Animation|Children|Comedy|Fantasy +4887,"One, The (2001)",Action|Sci-Fi|Thriller +4888,Tape (2001),Drama +4889,Heist (2001),Crime|Drama +4890,Shallow Hal (2001),Comedy|Fantasy|Romance +4891,King of the Jungle (2000),Drama|Thriller +4892,Maze (2000),Romance +4893,When a Stranger Calls (1979),Horror|Thriller +4894,Timerider: The Adventure of Lyle Swann (1982),Action|Adventure|Sci-Fi|Western +4895,"Wash, The (2001)",Comedy +4896,Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone) (2001),Adventure|Children|Fantasy +4897,"Fluffer, The (2001)",Drama|Romance +4898,Novocaine (2001),Comedy|Crime|Mystery|Thriller +4899,Black Knight (2001),Adventure|Comedy|Fantasy +4900,Out Cold (2001),Comedy +4901,Spy Game (2001),Action|Crime|Drama|Thriller +4902,"Devil's Backbone, The (Espinazo del diablo, El) (2001)",Drama|Fantasy|Horror|Thriller|War +4903,In the Bedroom (2001),Drama +4904,"Way We Laughed, The (Così Ridevano) (1998)",Drama +4905,Hell Up in Harlem (1973),Crime +4906,Bucktown (1975),Crime|Drama +4907,Across 110th Street (1972),Action|Crime|Drama +4908,"Little Soldier, The (Petit soldat, Le) (1963)",Drama|War +4909,"Incredible Shrinking Woman, The (1981)",Comedy|Sci-Fi +4910,Katie Tippel (Keetje Tippel) (1975),Drama +4911,Jabberwocky (1977),Adventure|Comedy|Fantasy +4912,Funny Girl (1968),Drama|Musical|Romance +4913,Circus of Horrors (1960),Horror +4914,Breathless (À bout de souffle) (1960),Crime|Drama|Romance +4915,"Beastmaster, The (1982)",Action|Adventure|Fantasy +4916,Midway (1976),Drama|War +4917,MacArthur (1977),Drama +4918,"Young Lions, The (1958)",Drama|War +4919,Subway (1985),Crime|Drama|Romance|Thriller +4920,"Now, Voyager (1942)",Drama|Romance +4921,Little Women (1933),Drama|Romance +4922,Halls of Montezuma (1950),Adventure|War +4923,Guadalcanal Diary (1943),Action|War +4924,Anzio (1968),War +4925,"Cheap Detective, The (1978)",Comedy +4926,Everybody's Famous! (Iedereen beroemd!) (2000),Comedy|Drama|Musical +4927,"Last Wave, The (1977)",Fantasy|Mystery|Thriller +4928,That Obscure Object of Desire (Cet obscur objet du désir) (1977),Drama +4929,"Toy, The (1982)",Comedy +4930,Funeral in Berlin (1966),Action|Drama|Thriller +4931,Don't Go in the House (1980),Horror +4932,Dressed to Kill (1980),Mystery|Thriller +4933,"Earthling, The (1980)",Adventure|Drama +4934,"Exterminator, The (1980)",Action|Crime|Thriller|War +4935,"Falls, The (1980)",Drama|Sci-Fi +4936,Fame (1980),Drama|Musical +4937,Fatso (1980),Comedy +4938,"Aviator's Wife, The (La femme de l'aviateur) (1981)",Drama +4939,"Final Countdown, The (1980)",Action|Sci-Fi +4940,"First Deadly Sin, The (1980)",Thriller +4941,Flash Gordon (1980),Action|Adventure|Sci-Fi +4942,"Angry Red Planet, The (1959)",Sci-Fi +4943,At the Earth's Core (1976),Adventure|Sci-Fi +4944,Empire of the Ants (1977),Horror|Sci-Fi +4945,"Enforcer, The (1976)",Crime +4946,"Eye for an Eye, An (1981)",Action|Crime|Thriller +4947,"Gauntlet, The (1977)",Action +4948,I Bury the Living (1958),Horror +4949,Invasion U.S.A. (1985),Action|Thriller +4950,Lone Wolf McQuade (1983),Action +4951,Lord of the Flies (1990),Adventure|Drama|Thriller +4952,Morons From Outer Space (1985),Comedy|Sci-Fi +4953,"People That Time Forgot, The (1977)",Adventure|Sci-Fi +4954,Ocean's Eleven (a.k.a. Ocean's 11) (1960),Comedy|Crime +4955,"Sicilian, The (1987)",Crime|Drama +4956,"Stunt Man, The (1980)",Action|Adventure|Comedy|Drama|Romance|Thriller +4957,Sudden Impact (1983),Crime|Thriller +4958,Behind Enemy Lines (2001),Action|Drama|War +4959,"Affair of the Necklace, The (2001)",Drama +4960,"Independent, The (2000)",Comedy +4961,Pornstar: The Legend of Ron Jeremy (2001),Documentary +4962,Texas Rangers (2001),Adventure|Western +4963,Ocean's Eleven (2001),Crime|Thriller +4964,Baran (2001),Adventure|Drama|Romance +4965,"Business of Strangers, The (2001)",Action|Drama|Thriller +4966,"Incredible Shrinking Man, The (1957)",Sci-Fi|Thriller +4967,No Man's Land (2001),Drama|War +4968,Piñero (2001),Drama +4969,And Then There Were None (1945),Crime|Mystery +4970,"Blue Angel, The (Blaue Engel, Der) (1930)",Drama +4971,Moscow on the Hudson (1984),Comedy|Drama +4972,"Owl and the Pussycat, The (1970)",Comedy +4973,"Amelie (Fabuleux destin d'Amélie Poulain, Le) (2001)",Comedy|Romance +4974,Not Another Teen Movie (2001),Comedy +4975,Vanilla Sky (2001),Mystery|Romance|Sci-Fi|Thriller +4976,Iris (2001),Drama +4977,Kandahar (Safar e Ghandehar) (2001),Drama +4978,Lantana (2001),Drama|Mystery|Thriller +4979,"Royal Tenenbaums, The (2001)",Comedy|Drama +4980,Bill & Ted's Bogus Journey (1991),Adventure|Comedy|Fantasy|Sci-Fi +4981,Clockwise (1986),Comedy +4982,"Crawling Eye, The (a.k.a. Trollenberg Terror, The) (1958)",Horror|Sci-Fi +4983,"Holcroft Covenant, The (1985)",Drama|Thriller +4984,Morgan! (1966),Comedy|Drama|Fantasy +4985,Sheena (1984),Action|Adventure|Fantasy +4986,Silent Rage (1982),Action|Sci-Fi +4987,Spacehunter: Adventures in the Forbidden Zone (1983),Action|Adventure|Sci-Fi +4988,White Water Summer (1987),Adventure +4989,How High (2001),Comedy +4990,Jimmy Neutron: Boy Genius (2001),Adventure|Animation|Children|Comedy +4991,Joe Somebody (2001),Comedy|Drama|Romance +4992,Kate & Leopold (2001),Comedy|Romance +4993,"Lord of the Rings: The Fellowship of the Ring, The (2001)",Adventure|Fantasy +4994,"Majestic, The (2001)",Comedy|Drama|Romance +4995,"Beautiful Mind, A (2001)",Drama|Romance +4996,Little Otik (Otesánek) (2000),Comedy|Drama|Fantasy +4997,"Convent, The (2000)",Horror|Sci-Fi +4998,"Defiant Ones, The (1958)",Adventure|Crime|Drama|Thriller +4999,Dodsworth (1936),Drama|Romance +5000,Medium Cool (1969),Drama|Romance +5001,Sahara (1943),Action|Drama|War +5002,Fritz the Cat (1972),Animation +5003,"Nine Lives of Fritz the Cat, The (1974)",Animation +5004,"Party, The (1968)",Comedy +5005,Separate Tables (1958),Drama +5006,Sex and Zen (Rou pu Tuan zhi tou Qing bao Jian) (1992),Action|Adventure|Comedy|Fantasy +5007,Topkapi (1964),Adventure|Comedy|Thriller +5008,Witness for the Prosecution (1957),Drama|Mystery|Thriller +5009,Ali (2001),Drama +5010,Black Hawk Down (2001),Action|Drama|War +5011,Charlotte Gray (2001),Drama|Romance +5012,Yentl (1983),Drama|Musical|Romance +5013,Gosford Park (2001),Comedy|Drama|Mystery +5014,I Am Sam (2001),Drama +5015,Monster's Ball (2001),Drama|Romance +5016,"Shipping News, The (2001)",Drama +5017,"Big Heat, The (1953)",Drama|Film-Noir +5018,Motorama (1991),Adventure|Comedy|Crime|Drama|Fantasy|Mystery|Sci-Fi|Thriller +5019,Queen Bee (1955),Drama +5020,Silent Trigger (1996),Action|Drama +5021,Murder by Death (1976),Comedy|Crime|Mystery|Thriller +5022,"Servant, The (1963)",Drama +5023,"Waterdance, The (1992)",Drama +5024,Come Undone (Presque Rien) (2000),Drama|Romance +5025,Orange County (2002),Comedy +5026,"Brotherhood of the Wolf (Pacte des loups, Le) (2001)",Action|Mystery|Thriller +5027,Another 48 Hrs. (1990),Action|Comedy|Crime|Drama|Thriller +5028,What Time Is It There? (Ni neibian jidian) (2001),Drama +5029,China Moon (1994),Thriller +5030,"Good Wife, The (1987)",Drama +5031,Maria's Lovers (1984),Drama|Romance +5032,Romantic Comedy (1983),Comedy +5033,"Russia House, The (1990)",Drama|Thriller +5034,"Truly, Madly, Deeply (1991)",Drama|Romance +5035,Wuthering Heights (1970),Drama +5036,California Suite (1978),Comedy +5037,"Long Gray Line, The (1955)",Drama +5038,"Flight of Dragons, The (1982)",Adventure|Animation|Children|Drama|Fantasy +5039,Dragonslayer (1981),Action|Adventure|Fantasy +5040,Conan the Destroyer (1984),Action|Adventure|Fantasy +5041,Fire and Ice (1983),Animation|Fantasy +5042,Forbidden Zone (1980),Musical|Sci-Fi +5043,"Formula, The (1980)",Thriller +5044,Foxes (1980),Drama +5045,Galaxina (1980),Comedy|Sci-Fi +5046,Impostor (2002),Action|Drama|Sci-Fi|Thriller +5047,Kung Pow: Enter the Fist (2002),Action|Comedy +5048,Snow Dogs (2002),Adventure|Children|Comedy +5049,48 Hrs. (1982),Action|Comedy|Crime|Drama +5050,"Farewell, The (Abschied - Brechts letzter Sommer) (2000)",Drama +5051,Italian for Beginners (Italiensk for begyndere) (2000),Comedy|Drama|Romance +5052,Time of Favor (Ha-Hesder) (2000),Drama|War +5053,Blankman (1994),Comedy +5054,Brainstorm (1983),Sci-Fi|Thriller +5055,Dragon: The Bruce Lee Story (1993),Action|Drama +5056,"Enigma of Kaspar Hauser, The (a.k.a. Mystery of Kaspar Hauser, The) (Jeder für sich und Gott Gegen Alle) (1974)",Crime|Drama +5057,4 for Texas (1963),Comedy|Western +5058,Heart of Glass (Herz aus Glas) (1976),Drama +5059,Little Dieter Needs to Fly (1997),Documentary +5060,M*A*S*H (a.k.a. MASH) (1970),Comedy|Drama|War +5061,Mrs. Soffel (1984),Drama|Romance +5062,Seconds (1966),Mystery|Sci-Fi|Thriller +5063,One-Eyed Jacks (1961),Western +5064,The Count of Monte Cristo (2002),Action|Adventure|Drama|Thriller +5065,"Mothman Prophecies, The (2002)",Drama|Fantasy|Horror|Mystery|Thriller +5066,"Walk to Remember, A (2002)",Drama|Romance +5067,American Adobo (2000),Comedy +5068,Beijing Bicycle (Shiqi sui de dan che) (2001),Drama +5069,Escaflowne: The Movie (Escaflowne) (2000),Action|Adventure|Animation|Drama|Fantasy +5070,"Hey, Happy! (2001)",Drama|Sci-Fi +5071,Maelström (2000),Drama|Romance +5072,Metropolis (2001),Animation|Sci-Fi +5073,"Son's Room, The (Stanza del figlio, La) (2001)",Drama +5074,Storytelling (2001),Comedy|Drama +5075,Waydowntown (2000),Comedy +5076,"Adventures of Huck Finn, The (1993)",Adventure|Children|Comedy|Drama +5077,Cousins (1989),Comedy|Romance +5078,Falling in Love (1984),Drama|Romance +5079,Young at Heart (1954),Drama|Musical|Romance +5080,Slackers (2002),Comedy +5081,Birthday Girl (2001),Drama|Romance +5082,"Rumor of Angels, A (2000)",Drama +5083,Rare Birds (2001),Comedy|Drama +5084,Caged Heat (1974),Action +5085,Carmen Jones (1954),Drama|Musical +5086,"Five Heartbeats, The (1991)",Drama|Musical +5087,Get Out Your Handkerchiefs (Préparez vos mouchoirs) (1978),Comedy|Drama|Romance +5088,"Going Places (Valseuses, Les) (1974)",Comedy|Crime|Drama +5089,Honky Tonk Freeway (1981),Comedy +5090,"Hunchback of Notre Dame, The (Notre Dame de Paris) (1956)",Drama +5091,The Man from Acapulco (1973),Action|Comedy|Fantasy|Romance +5092,Big Fat Liar (2002),Children|Comedy +5093,Collateral Damage (2002),Action|Thriller +5094,Rollerball (2002),Action|Sci-Fi +5095,"Scotland, Pa. (2001)",Comedy|Crime +5096,Baby's Day Out (1994),Comedy +5097,Bright Eyes (1934),Comedy|Drama +5098,Dimples (1936),Musical +5099,Heidi (1937),Children|Drama +5100,"Man Who Loved Women, The (1983)",Comedy +5101,Richard Pryor Here and Now (1983),Comedy|Documentary +5102,Rookie of the Year (1993),Comedy|Fantasy +5103,"Sandlot, The (1993)",Children|Comedy|Drama +5104,Cows (Vacas) (1991),Drama +5105,Don't Look Now (1973),Drama|Horror|Thriller +5106,Crossroads (2002),Comedy|Musical|Romance +5107,Hart's War (2002),Drama|War +5108,John Q (2002),Crime|Drama|Thriller +5109,Return to Never Land (2002),Adventure|Animation|Children +5110,Super Troopers (2001),Comedy|Crime|Mystery +5111,"Good Son, The (1993)",Drama|Thriller +5112,Last Orders (2001),Drama +5113,After the Fox (Caccia alla volpe) (1966),Comedy|Crime +5114,"Bad and the Beautiful, The (1952)",Drama +5115,Cast a Giant Shadow (1966),Adventure|War +5116,Designing Woman (1957),Comedy +5117,Funny Lady (1975),Comedy|Musical +5118,"Heartbreak Kid, The (1972)",Comedy|Romance +5119,Saturday Night and Sunday Morning (1960),Drama +5120,Sleuth (1972),Comedy|Mystery|Thriller +5121,Stroszek (1977),Comedy|Drama +5122,Summer of '42 (1971),Drama +5123,"Touch of Class, A (1973)",Comedy +5124,Town Without Pity (1961),Drama +5125,Used Cars (1980),Comedy +5126,"Deadly Mantis, The (1957)",Horror|Sci-Fi +5127,Dragonfly (2002),Drama|Fantasy|Mystery|Romance|Thriller +5128,Queen of the Damned (2002),Fantasy|Horror +5129,Big Bad Love (2001),Drama +5130,Green Dragon (2001),Drama +5131,How to Kill Your Neighbor's Dog (2000),Comedy|Drama +5132,"Last Man, The (2000)",Comedy|Romance|Sci-Fi +5133,Maryam (2000),Drama +5134,Mean Machine (2001),Comedy|Drama +5135,Monsoon Wedding (2001),Comedy|Romance +5136,Wendigo (2001),Drama|Horror +5137,Scratch (2001),Documentary +5138,State Property (2002),Action|Crime|Drama +5139,"Bad News Bears, The (1976)",Comedy +5140,"Bad News Bears Go to Japan, The (1978)",Comedy +5141,"Bad News Bears in Breaking Training, The (1977)",Comedy +5142,"Firemen's Ball, The (Horí, má panenko) (1967)",Comedy|Drama +5143,"Lone Ranger, The (1956)",Adventure|Western +5144,"Lone Ranger and the Lost City of Gold, The (1958)",Adventure|Mystery|Western +5145,Loves of a Blonde (Lásky jedné plavovlásky) (1965),Comedy|Drama|Romance +5146,Vampire Hunter D: Bloodlust (Banpaia hantâ D) (2000),Animation|Fantasy|Horror|Sci-Fi +5147,Wild Strawberries (Smultronstället) (1957),Drama +5148,Black Like Me (1964),Drama +5149,Cattle Queen of Montana (1954),Western +5150,Under the Skin (1997),Drama +5151,40 Days and 40 Nights (2002),Comedy|Romance +5152,We Were Soldiers (2002),Action|Drama|War +5153,Trouble Every Day (2001),Drama|Horror|Thriller +5154,"Arena, The (a.k.a. Naked Warriors) (1974)",Action|Adventure +5155,"Big Bird Cage, The (1972)",Action +5156,"Big Doll House, The (1971)",Action +5157,"Church, The (Chiesa, La) (1989)",Drama|Fantasy|Horror +5158,Cross Creek (1983),Drama +5159,Ferngully: The Last Rainforest (1992),Animation|Children|Comedy|Musical +5160,Night of the Zombies (a.k.a. Hell of the Living Dead) (Virus) (1980),Action|Horror|Thriller +5161,Intersection (1994),Drama|Romance +5162,"Jo Jo Dancer, Your Life is Calling (1986)",Comedy|Drama +5163,StageFright: Aquarius (1987),Horror|Thriller +5164,"Troll in Central Park, A (1994)",Animation|Children +5165,Zombie (a.k.a. Zombie 2: The Dead Are Among Us) (Zombi 2) (1979),Horror +5166,"Amazing Adventure, The (a.k.a. The Amazing Quest of Ernest Bliss) (1936)",Comedy|Drama|Romance +5167,My Favorite Brunette (1947),Comedy|Mystery +5168,Royal Wedding (1951),Comedy|Musical|Romance +5169,Scarlet Street (1945),Film-Noir +5170,All About the Benjamins (2002),Action|Comedy|Crime +5171,"Time Machine, The (2002)",Action|Adventure|Sci-Fi +5172,Full Frontal (2002),Comedy|Drama|Romance +5173,Divorcing Jack (1998),Comedy|Thriller +5174,"Field, The (1990)",Drama +5175,Hidden Agenda (1990),Drama|Thriller +5176,Luminarias (2000),Comedy|Romance +5177,"Magnificent Ambersons, The (1942)",Drama|Romance +5178,Fun (1994),Crime|Drama +5179,Gloria (1980),Drama|Thriller +5180,"Great Rock 'n' Roll Swindle, The (1980)",Documentary +5181,Hangar 18 (1980),Action|Sci-Fi|Thriller +5182,Hawk the Slayer (1980),Action|Fantasy +5183,He Knows You're Alone (a.k.a. Blood Wedding) (1980),Horror|Thriller +5184,Heaven's Gate (1980),Western +5185,Hero at Large (1980),Comedy +5186,Honeysuckle Rose (a.k.a. On the Road Again) (1980),Drama|Romance +5187,Hopscotch (1980),Comedy +5188,How to Beat the High Cost of Living (1980),Comedy +5189,Humanoids from the Deep (1980),Horror|Sci-Fi +5190,Inside Moves (1980),Drama +5192,"Island, The (1980)",Adventure|Horror|Thriller +5193,"Jazz Singer, The (1980)",Musical +5194,Who's Singin' Over There? (a.k.a. Who Sings Over There) (Ko to tamo peva) (1980),Comedy +5195,"Zombie Lake (Lac des morts vivants, Le) (Zombies Lake) (Lake of the Living Dead, The) (1981)",Horror +5196,Lion of the Desert (1980),War +5197,Little Darlings (1980),Drama +5198,"Long Good Friday, The (1980)",Drama|Thriller +5199,"Long Riders, The (1980)",Western +5200,"Man Who Saw Tomorrow, The (1980)",Documentary +5201,Eaten Alive (Mangiati Vivi) (1980),Adventure|Horror +5202,Mon oncle d'Amérique (1980),Drama +5203,The Monster Club (1981),Comedy|Horror +5204,Death Watch (La Mort en Direct) (1980),Drama|Sci-Fi +5205,Motel Hell (1980),Comedy|Horror +5206,Mother's Day (1980),Comedy|Horror +5207,"Mountain Men, The (1980)",Adventure|Western +5208,"Ninth Configuration, The (a.k.a. Twinkle, Twinkle, Killer Kane) (1980)",Drama|War +5210,"Burial Ground (a.k.a. Zombie Horror) (a.k.a. Zombie 3) (Notti del Terrore, Le) (1981)",Horror +5211,"Nude Bomb, The (1980)",Comedy +5212,"Octagon, The (1980)",Action +5213,"Oh, God! Book II (1980)",Comedy +5214,"Oh, God! (1977)",Comedy|Fantasy +5215,"Oh, Heavenly Dog! (1980)",Comedy|Crime +5216,"Pepi, Luci, Bom (Pepi, Luci, Bom y Otras Chicas del Montón) (1980)",Comedy +5217,Super Fuzz (a.k.a. Super Snooper) (Poliziotto superpiù) (1980),Action|Comedy|Sci-Fi +5218,Ice Age (2002),Adventure|Animation|Children|Comedy +5219,Resident Evil (2002),Action|Horror|Sci-Fi|Thriller +5220,Showtime (2002),Action|Comedy +5221,Harrison's Flowers (2000),Drama +5222,Kissing Jessica Stein (2001),Comedy|Romance +5223,Pauline & Paulette (Pauline en Paulette) (2001),Comedy|Drama +5224,Promises (2001),Documentary +5225,And Your Mother Too (Y tu mamá también) (2001),Drama|Romance +5226,All the Right Moves (1983),Drama|Romance +5227,Barabbas (1961),Adventure|Drama +5228,"Ghost Breakers, The (1940)",Comedy|Horror +5229,I Think I Do (1997),Comedy +5230,"Paleface, The (1948)",Comedy|Western +5231,Road to Morocco (1942),Comedy +5232,Road to Singapore (1940),Comedy|Musical +5233,Road to Utopia (1946),Comedy +5234,Road to Zanzibar (1941),Comedy +5235,Split Second (1992),Action|Sci-Fi|Thriller +5236,"Tale of Springtime, A (Conte de Printemps) (1990)",Drama|Romance +5237,Taps (1981),Drama +5238,Return of the Secaucus 7 (1980),Drama +5239,Rude Boy (1980),Documentary|Drama +5240,Running Scared (1980),Action|Drama +5241,Seems Like Old Times (1980),Comedy|Romance +5242,Serial (1980),Comedy +5243,"Young Master, The (Shi di chu ma) (1980)",Action|Comedy +5244,Shogun Assassin (1980),Action|Adventure +5245,Simon (1980),Comedy|Sci-Fi +5246,Smokey and the Bandit II (1980),Action|Comedy +5247,Smokey and the Bandit (1977),Action|Comedy +5248,Smokey and the Bandit III (1983),Action|Comedy +5249,Spetters (1980),Comedy|Drama +5250,Stir Crazy (1980),Comedy +5251,"Charter Trip, The (a.k.a. Package Tour, The) (Sällskapsresan) (1980)",Comedy +5252,Teheran 43: Spy Ring (a.k.a. Assassination Attempt) (Tegeran-43) (1980),Action|Crime|Drama|Thriller +5253,Cousins in Love (a.k.a. Tender Cousins) (Tendres Cousines) (1980),Drama|Romance +5254,Blade II (2002),Action|Horror|Thriller +5255,Sorority Boys (2002),Comedy +5256,Stolen Summer (2002),Drama +5257,In the Winter Dark (1998),Drama +5258,George Washington (2000),Drama +5259,Homicidal (1961),Horror|Mystery|Thriller +5260,"Life is to Whistle (Vida es silbar, La) (1998)",Drama +5261,"Light at the Edge of the World, The (1971)",Adventure +5262,Mr. Sardonicus (1961),Horror +5263,Strait-Jacket (1964),Horror|Thriller +5264,Clockstoppers (2002),Action|Adventure|Sci-Fi|Thriller +5265,Death to Smoochy (2002),Comedy|Crime|Drama +5266,Panic Room (2002),Thriller +5267,"Rookie, The (2002)",Drama +5268,No Such Thing (2001),Drama|Fantasy|Romance +5269,"Piano Teacher, The (La pianiste) (2001)",Drama +5270,Teddy Bears' Picnic (2001),Comedy +5271,30 Years to Life (2001),Comedy|Drama|Romance +5272,Time Out (L'emploi du temps) (2001),Drama +5273,Very Annie Mary (2001),Comedy|Musical +5274,Bar Girls (1994),Comedy|Romance +5275,Boxcar Bertha (1972),Drama +5276,Crimes of Passion (1984),Drama|Romance|Thriller +5277,"Evil That Men Do, The (1984)",Action|Thriller +5278,Fraternity Vacation (1985),Comedy|Romance +5279,Impromptu (1991),Comedy|Romance +5280,Salmonberries (1991),Drama +5281,"Wrong Guys, The (1988)",Comedy +5282,High Crimes (2002),Thriller +5283,National Lampoon's Van Wilder (2002),Comedy +5284,Crush (2001),Comedy|Romance +5285,Lucky Break (2001),Comedy|Crime +5286,"Destinées, Les (Destinées sentimentales, Les) (2000)",Drama|Romance +5287,"After Dark, My Sweet (1990)",Crime|Drama|Mystery +5288,"Atomic Cafe, The (1982)",Documentary|War +5289,Body and Soul (1947),Drama|Film-Noir +5290,First Men in the Moon (1964),Adventure|Sci-Fi +5291,Rashomon (Rashômon) (1950),Crime|Drama|Mystery +5292,Slap Shot (1977),Comedy +5293,Changing Lanes (2002),Drama|Thriller +5294,Frailty (2001),Crime|Drama|Thriller +5295,New Best Friend (2002),Drama|Thriller +5296,"Sweetest Thing, The (2002)",Comedy|Romance +5297,"Cat's Meow, The (2002)",Drama|Thriller +5298,Human Nature (2001),Comedy|Romance +5299,My Big Fat Greek Wedding (2002),Comedy|Romance +5300,3:10 to Yuma (1957),Action|Adventure|Drama|Thriller|Western +5301,Bite the Bullet (1975),Action|Adventure|Western +5302,Breakout (1975),Action|Adventure +5303,Joe Versus the Volcano (1990),Comedy|Romance +5304,"Rome, Open City (a.k.a. Open City) (Roma, città aperta) (1945)",Drama|War +5305,Return of the Killer Tomatoes! (1988),Comedy|Horror|Sci-Fi +5306,Return to Horror High (1987),Horror +5307,Taking Care of Business (1990),Comedy +5308,Three Men and a Baby (1987),Comedy +5309,Three Men and a Little Lady (1990),Comedy|Romance +5310,Transylvania 6-5000 (1985),Comedy|Horror +5311,"Watcher in the Woods, The (1980)",Children|Horror|Mystery|Thriller +5312,Murder by Numbers (2002),Crime|Thriller +5313,The Scorpion King (2002),Action|Adventure|Fantasy|Thriller +5314,Behind the Sun (Abril Despedaçado) (2001),Drama +5315,Chelsea Walls (2001),Drama +5316,Enigma (2001),Romance|Thriller +5317,"Girls Can't Swim (Filles ne savent pas nager, Les) (2000)",Drama +5318,Joshua (2002),Drama +5319,Nine Queens (Nueve reinas) (2000),Crime|Thriller +5320,Spooky House (2000),Children +5321,"Triumph of Love, The (2001)",Comedy +5322,World Traveler (2001),Drama +5323,Jason X (2002),Horror|Sci-Fi|Thriller +5324,Life or Something Like It (2002),Comedy|Romance +5325,Dogtown and Z-Boyz (2001),Documentary +5326,"Frank McKlusky, C.I. (2002)",Comedy +5327,In Praise of Love (Éloge de l'amour) (2001),Drama +5328,Rain (2001),Drama|Romance +5329,"Salton Sea, The (2002)",Crime|Drama|Thriller +5330,Some Body (2001),Drama +5331,Vulgar (2000),Drama +5332,"Aviator, The (1985)",Adventure +5333,Bob le Flambeur (1955),Crime|Drama +5334,Cadillac Man (1990),Comedy|Crime +5335,"Coca-Cola Kid, The (1985)",Comedy|Romance +5336,Cuba (1979),Action|Adventure|War +5337,Delirious (1991),Comedy +5338,Full Moon in Blue Water (1988),Drama +5339,Husbands and Wives (1992),Comedy|Drama +5340,Joe (1970),Drama +5341,Lenny (1974),Drama +5342,Nomads (1986),Horror|Mystery|Thriller +5343,"Temp, The (1993)",Drama|Thriller +5344,Thief of Hearts (1984),Drama|Thriller +5345,Triumph of the Spirit (1989),Drama +5346,Wild Orchid (1990),Drama|Romance +5347,Deuces Wild (2002),Drama +5348,Hollywood Ending (2002),Comedy|Drama +5349,Spider-Man (2002),Action|Adventure|Sci-Fi|Thriller +5350,"Mystic Masseur, The (2001)",Drama +5351,Warm Water Under a Red Bridge (Akai hashi no shita no nurui mizu) (2001),Comedy|Drama +5352,The Big Sleep (1978),Thriller +5353,Butterflies Are Free (1972),Comedy|Drama +5354,Cactus Flower (1969),Comedy +5355,"Cassandra Crossing, The (1976)",Drama +5356,"Giant Spider Invasion, The (1975)",Horror|Sci-Fi +5357,Iron Will (1994),Adventure +5358,Mountains of the Moon (1990),Adventure +5359,Rambling Rose (1991),Drama +5360,"Survivors, The (1983)",Comedy +5361,White Fang (1991),Adventure +5362,White Fang 2: Myth of the White Wolf (1994),Adventure|Children +5363,"New Guy, The (2002)",Comedy +5364,Unfaithful (2002),Drama|Thriller +5365,"Lady and the Duke, The (Anglaise et le duc, L') (2001)",Drama|Romance +5366,Whore (1991),Drama +5367,My Beautiful Laundrette (1985),Drama|Romance +5368,Ballad of a Soldier (Ballada o soldate) (1959),Drama|Romance|War +5369,Big Bad Mama (1974),Action|Comedy +5370,Big Bad Mama II (1987),Action|Comedy +5371,"Final Darkness, The (Buio Omega) (1979)",Horror +5372,Calamity Jane (1953),Musical|Western +5373,"Cranes Are Flying, The (Letyat zhuravli) (1957)",Drama|Romance|War +5374,Devil Doll (1964),Horror +5375,"Harvey Girls, The (1946)",Comedy|Musical|Western +5376,"Lady in Red, The (1979)",Action +5377,About a Boy (2002),Comedy|Drama|Romance +5378,Star Wars: Episode II - Attack of the Clones (2002),Action|Adventure|Sci-Fi|IMAX +5379,"Believer, The (2001)",Drama +5380,"Importance of Being Earnest, The (2002)",Comedy|Drama|Romance +5381,"Charge of the Light Brigade, The (1968)",Drama|War +5382,Every Which Way But Loose (1978),Comedy +5383,"Hound of the Baskervilles, The (1959)",Crime|Horror|Mystery +5384,I Want to Live! (1958),Crime|Drama +5385,"Last Waltz, The (1978)",Documentary +5386,"Pride and the Passion, The (1957)",Adventure|War +5387,Enough (2002),Drama|Thriller +5388,Insomnia (2002),Action|Crime|Drama|Mystery|Thriller +5389,Spirit: Stallion of the Cimarron (2002),Adventure|Animation|Children|Western +5390,CQ (2001),Drama +5391,Thirteen Conversations About One Thing (a.k.a. 13 Conversations) (2001),Drama +5392,Bus Stop (1956),Comedy|Drama|Romance +5393,Cowboy (1958),Western +5394,Don't Bother to Knock (1952),Drama|Thriller +5395,"Gambler, The (1974)",Drama +5396,Let's Make Love (1960),Comedy|Musical|Romance +5397,Monkey Business (1952),Comedy|Sci-Fi +5398,Requiem for a Heavyweight (1962),Drama +5399,River of No Return (1954),Adventure|Western +5400,"Sum of All Fears, The (2002)",Drama|Thriller +5401,Undercover Brother (2002),Comedy +5402,"Diaries of Vaslav Nijinsky, The (2002)",Documentary|Drama +5403,"Sleepy Time Gal, The (2001)",Drama +5404,84 Charing Cross Road (1987),Drama|Romance +5405,Dakota (1945),Western +5406,"Desert Rats, The (1953)",Drama|War +5407,"Bûche, La (1999)",Comedy|Drama +5408,Nora (2000),Drama +5409,Rapid Fire (1992),Action +5410,Silent Running (1972),Drama|Sci-Fi +5411,Summer Holiday (1963),Musical|Romance +5412,"Villain, The (1979)",Comedy|Western +5413,Zombie Holocaust (a.k.a. Doctor Butcher M.D.) (Zombi Holocaust) (1980),Horror +5414,Bad Company (2002),Action|Comedy|Crime +5415,Divine Secrets of the Ya-Ya Sisterhood (2002),Comedy|Drama +5416,Cherish (2002),Comedy|Drama|Thriller +5417,"Fast Runner, The (Atanarjuat) (2001)",Drama|Fantasy +5418,"Bourne Identity, The (2002)",Action|Mystery|Thriller +5419,Scooby-Doo (2002),Adventure|Children|Comedy|Fantasy|Mystery +5420,Windtalkers (2002),Action|Drama|War +5421,"Dangerous Lives of Altar Boys, The (2002)",Drama +5422,"Emperor's New Clothes, The (2001)",Comedy +5423,Gangster No. 1 (2000),Action|Crime|Thriller +5424,Harvard Man (2001),Crime|Drama|Romance|Thriller +5425,Dark Blue World (Tmavomodrý svet) (2001),Drama|War +5426,Bad Company (1972),Western +5427,Caveman (1981),Comedy +5428,Cheech & Chong's The Corsican Brothers (1984),Comedy +5429,5 Card Stud (1968),Mystery|Western +5430,For a Lost Soldier (Voor een Verloren Soldaat) (1992),Romance +5431,Goin' South (1978),Comedy|Western +5432,Hero and the Terror (1988),Action|Crime +5433,Silver Bullet (Stephen King's Silver Bullet) (1985),Adventure|Drama|Horror|Mystery|Thriller +5434,"Sorry, Wrong Number (1948)",Drama|Film-Noir|Thriller +5435,Hombre (1967),Western +5436,"Horse's Mouth, The (1958)",Comedy +5437,"Manhattan Project, The (1986)",Comedy|Sci-Fi|Thriller +5438,Men at Work (1990),Action|Comedy +5439,S.O.B. (1981),Comedy +5440,She Wore a Yellow Ribbon (1949),Western +5441,Traces of Red (1992),Mystery|Thriller +5442,V. I. Warshawski (1991),Action|Comedy|Crime +5443,Juwanna Mann (2002),Comedy +5444,Lilo & Stitch (2002),Adventure|Animation|Children|Sci-Fi +5445,Minority Report (2002),Action|Crime|Mystery|Sci-Fi|Thriller +5446,Rabbit-Proof Fence (2002),Adventure|Drama +5447,Sunshine State (2002),Drama +5448,Hey Arnold! The Movie (2002),Adventure|Animation|Children|Comedy +5449,Mr. Deeds (2002),Comedy|Romance +5450,Lovely & Amazing (2001),Comedy|Drama|Romance +5451,Pumpkin (2002),Comedy|Drama|Romance +5452,Look Who's Talking Now (1993),Children|Comedy|Romance +5453,Lost in Yonkers (1993),Comedy|Drama +5454,Mo' Money (1992),Comedy|Romance +5455,"Object of Beauty, The (1991)",Comedy|Drama +5456,Wagons East (1994),Comedy|Western +5457,Zebrahead (1992),Drama +5458,Like Mike (2002),Children|Comedy|Fantasy +5459,Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2) (2002),Action|Comedy|Sci-Fi +5460,"Powerpuff Girls, The (2002)",Action|Animation|Children|Comedy +5461,Me Without You (2001),Comedy|Drama +5462,"Crocodile Hunter: Collision Course, The (2002)",Adventure|Comedy +5463,Reign of Fire (2002),Action|Adventure|Fantasy +5464,Road to Perdition (2002),Crime|Drama +5465,All About Lily Chou-Chou (Riri Shushu no subete) (2001),Crime|Drama|Thriller +5466,My Wife is an Actress (Ma Femme est une Actrice) (2001),Comedy|Drama|Romance +5467,Never Again (2001),Comedy|Romance +5468,20 Million Miles to Earth (1957),Sci-Fi +5469,Grand Theft Auto (1977),Action|Comedy +5470,The Importance of Being Earnest (1952),Comedy|Romance +5471,Perfect (1985),Drama|Romance +5472,1776 (1972),Children|Drama|Musical +5473,Fox and His Friends (Faustrecht der Freiheit) (1975),Drama +5474,"Legend of Boggy Creek, The (1972)",Drama|Horror|Mystery|Thriller +5475,Z (1969),Drama|Mystery|Thriller +5476,Halloween: Resurrection (Halloween 8) (2002),Horror|Thriller +5477,Sex and Lucia (Lucía y el sexo) (2001),Drama|Romance +5478,Eight Legged Freaks (2002),Action|Comedy|Horror|Sci-Fi +5479,K-19: The Widowmaker (2002),Action|Adventure|Drama|Thriller +5480,Stuart Little 2 (2002),Children|Comedy +5481,Austin Powers in Goldmember (2002),Comedy +5482,"Country Bears, The (2002)",Children|Comedy +5483,"Kid Stays in the Picture, The (2002)",Documentary +5484,Happy Times (Xingfu shiguang) (2000),Comedy|Drama +5485,Tadpole (2002),Comedy|Drama|Romance +5486,Who Is Cletis Tout? (2001),Comedy +5487,Harry and Walter Go to New York (1976),Comedy +5488,"Merchant of Four Seasons, The (Händler der vier Jahreszeiten) (1972)",Drama +5489,Nosferatu the Vampyre (Nosferatu: Phantom der Nacht) (1979),Horror +5490,The Big Bus (1976),Action|Comedy +5491,"Eddy Duchin Story, The (1956)",Drama|Musical|Romance +5492,Fathom (1967),Adventure +5493,In Like Flint (1967),Action|Adventure|Comedy +5494,"Earth Trembles, The (Terra trema: Episodio del mare, La) (1948)",Drama +5495,Modesty Blaise (1966),Comedy +5496,Ossessione (1943),Drama +5497,Our Man Flint (1965),Adventure|Comedy|Sci-Fi +5498,Red Beard (Akahige) (1965),Drama +5499,Robin and Marian (1976),Adventure|Drama|Romance +5500,Top Secret! (1984),Comedy +5501,"Master of Disguise, The (2002)",Comedy|Mystery +5502,Signs (2002),Horror|Sci-Fi|Thriller +5503,"Last Kiss, The (Ultimo bacio, L') (2001)",Comedy|Drama|Romance +5504,Spy Kids 2: The Island of Lost Dreams (2002),Adventure|Children +5505,"Good Girl, The (2002)",Comedy|Drama +5506,Blood Work (2002),Crime|Drama|Mystery|Thriller +5507,xXx (2002),Action|Crime|Thriller +5508,24 Hour Party People (2002),Comedy|Drama|Musical +5509,Biggie and Tupac (2002),Documentary +5510,"Château, The (2001)",Comedy +5511,Pandora's Box (2002),Drama|Thriller +5512,Secret Ballot (Raye makhfi) (2001),Comedy +5513,Martin Lawrence Live: Runteldat (2002),Comedy|Documentary +5514,Lan Yu (2001),Drama|Romance +5515,Songs From the Second Floor (Sånger från andra våningen) (2000),Drama +5516,Read My Lips (Sur mes lèvres) (2001),Crime|Drama|Thriller +5517,Nightcap (Merci pour le chocolat) (2000),Crime|Thriller +5518,Beau Pere (a.k.a. Stepfather) (Beau-père) (1981),Drama +5519,Change of Habit (1969),Drama +5520,"Matter of Taste, A (Affaire de Goût, Une) (2000)",Crime|Drama|Thriller +5521,"Principal, The (1987)",Action|Crime|Drama +5522,Rollerball (1975),Action|Drama|Sci-Fi +5523,"Adventures of Pluto Nash, The (2002)",Action|Adventure|Comedy|Sci-Fi +5524,Blue Crush (2002),Adventure|Drama|Romance +5525,Mostly Martha (Bella Martha) (2001),Comedy|Drama|Romance +5526,"Isle, The (Seom) (2000)",Drama +5527,Possession (2002),Drama|Romance +5528,One Hour Photo (2002),Drama|Thriller +5529,Serving Sara (2002),Comedy|Romance +5530,Simone (S1m0ne) (2002),Comedy|Drama|Fantasy|Sci-Fi +5531,Undisputed (2002),Drama +5532,Amy's O (a.k.a. Amy's Orgasm) (2001),Comedy|Romance +5533,Children On Their Birthdays (2002),Drama +5534,Hush! (2001),Drama +5535,How I Killed My Father (a.k.a. My Father and I) (Comment j'ai tué mon Père) (2001),Drama +5536,Hybrid (2000),Documentary +5537,Satin Rouge (2002),Drama|Musical +5538,"Care Bears Movie, The (1985)",Animation|Children|Fantasy +5539,Care Bears Movie II: A New Generation (1986),Animation|Children +5540,Clash of the Titans (1981),Action|Adventure|Fantasy|Romance +5541,Hot Shots! (1991),Action|Comedy|Romance|War +5542,"Nightmare City (a.k.a. City of the Walking Dead) (a.k.a. Invasión de los zombies atómicos, La) (Incubo sulla città contaminata) (1980)",Action|Horror +5543,"Swarm, The (1978)",Action|Horror|Sci-Fi +5544,Time After Time (1979),Sci-Fi|Thriller +5545,"Unearthly, The (1957)",Horror|Sci-Fi +5546,976-EVIL (1989),Horror +5547,Camilla (1994),Adventure|Drama|Romance +5548,Down and Out in Beverly Hills (1986),Comedy +5549,Flaming Star (1960),Western +5550,Love Me Tender (1956),Musical|Western +5551,"Return of the Vampire, The (1944)",Horror +5552,"Revenge of Frankenstein, The (1958)",Drama|Horror|Sci-Fi +5553,Stakeout (1987),Comedy|Crime|Romance|Thriller +5554,Wild in the Country (1961),Drama +5555,Wolfen (1981),Horror +5556,FearDotCom (a.k.a. Fear.com) (a.k.a. Fear Dot Com) (2002),Crime|Horror|Thriller +5557,Slap Her... She's French (a.k.a. She Gets What She Wants) (2002),Comedy +5558,Love and a Bullet (2002),Action|Crime +5559,Mad Love (Juana la Loca) (2001),Drama +5560,À nous la liberté (Freedom for Us) (1931),Comedy|Musical +5561,True Colors (1991),Drama +5562,Snipes (2001),Drama|Thriller +5563,City by the Sea (2002),Crime|Drama +5564,Swimfan (2002),Thriller +5565,"Dogwalker, The (2002)",Drama +5566,Heartbreak Hospital (2002),Comedy|Thriller +5567,"Incubus, The (1981)",Horror|Thriller +5568,Johnny Dangerously (1984),Comedy +5569,"Last House on the Left, The (1972)",Crime|Horror|Thriller +5570,Thesis (Tesis) (1996),Drama|Horror|Thriller +5571,"Pinochet Case, The (Cas Pinochet, Le) (2001)",Documentary +5572,Barbershop (2002),Comedy +5573,Stealing Harvard (2002),Comedy|Crime +5574,"Transporter, The (2002)",Action|Crime +5575,Alias Betty (Betty Fisher et autres histoires) (2001),Crime|Drama +5576,"Children of the Century, The (Enfants du siècle, Les) (1999)",Drama|Romance +5577,Igby Goes Down (2002),Comedy|Drama +5579,Quitting (Zuotian) (2001),Drama +5580,Aspen Extreme (1993),Action +5581,Betsy's Wedding (1990),Comedy +5582,Captain Ron (1992),Adventure|Comedy +5583,"Devil Bat, The (1940)",Crime|Horror|Mystery|Sci-Fi +5584,Ernest Goes to Jail (1990),Comedy +5585,Ernest Scared Stupid (1991),Comedy +5586,"Gypsy Moths, The (1969)",Drama +5587,"Hills Have Eyes Part II, The (1985)",Horror +5588,"Hills Have Eyes, The (1977)",Horror +5589,Indian Summer (1993),Comedy|Drama +5590,"Mack, The (1973)",Crime +5591,Monkey Trouble (1994),Children|Comedy +5592,Monster in the Closet (1986),Comedy|Horror +5593,No Way to Treat a Lady (1968),Crime|Drama|Thriller +5595,Shock Waves (1977),Horror +5596,Spaced Invaders (1990),Adventure|Comedy|Sci-Fi +5597,Suburban Commando (1991),Comedy|Sci-Fi +5598,Surf Ninjas (1993),Comedy +5599,Tabu: A Story of the South Seas (1931),Drama|Romance +5600,"Wanderers, The (1979)",Drama +5601,"Yearling, The (1946)",Children|Drama +5602,"Ladykillers, The (1955)",Comedy|Crime +5603,"Lavender Hill Mob, The (1951)",Comedy|Crime +5604,"Man in the White Suit, The (1951)",Comedy|Sci-Fi +5605,Ratcatcher (1999),Drama +5606,Society (1989),Horror|Mystery +5607,"Son of the Bride (Hijo de la novia, El) (2001)",Comedy|Drama +5608,"Das Experiment (Experiment, The) (2001)",Drama|Thriller +5609,Ballistic: Ecks vs. Sever (2002),Action|Thriller +5610,"Banger Sisters, The (2002)",Comedy|Drama +5611,"Four Feathers, The (2002)",Adventure|War +5612,Trapped (2002),Action|Thriller +5613,8 Women (2002),Comedy|Crime|Musical|Mystery +5614,"His Secret Life (a.k.a. Ignorant Fairies, The) (Fate ignoranti, Le) (2001)",Drama|Romance +5615,Invincible (2001),Drama +5616,"Mesmerist, The (2002)",Comedy|Fantasy|Horror +5617,Secretary (2002),Comedy|Drama|Romance +5618,Spirited Away (Sen to Chihiro no kamikakushi) (2001),Adventure|Animation|Fantasy +5619,"Trials of Henry Kissinger, The (2002)",Documentary +5620,Sweet Home Alabama (2002),Comedy|Romance +5621,"Tuxedo, The (2002)",Action|Comedy +5622,Charly (2002),Comedy|Drama|Romance +5623,Crazy as Hell (2002),Drama +5624,Just a Kiss (2002),Comedy|Romance +5625,Moonlight Mile (2002),Drama|Romance +5626,Shanghai Ghetto (2002),Documentary +5627,Skins (2002),Crime|Drama +5628,Wasabi (2001),Action|Comedy|Crime|Drama|Thriller +5629,Jonah: A VeggieTales Movie (2002),Animation|Children|Musical +5630,Red Dragon (2002),Crime|Mystery|Thriller +5631,Between Strangers (2002),Drama +5632,Bloody Sunday (2002),Drama +5633,Heaven (2002),Drama +5634,Pipe Dream (2002),Drama +5635,"Man from Elysian Fields, The (2001)",Drama +5636,Welcome to Collinwood (2002),Comedy|Crime +5637,Flirting (1991),Drama +5638,Godzilla vs. Mothra (Mosura tai Gojira) (1964),Action|Adventure|Fantasy|Sci-Fi +5639,Godzilla's Revenge (Gojira-Minira-Gabara: Oru Kaijû Daishingeki) (All Monsters Attack) (1969),Children +5640,"Godzilla, King of the Monsters! (Kaijû-ô Gojira) (1956)",Horror|Sci-Fi +5641,"Moderns, The (1988)",Drama +5642,"Onion Field, The (1979)",Drama +5643,Powaqqatsi (1988),Documentary +5644,"Pride of the Yankees, The (1942)",Drama +5645,Texasville (1990),Drama +5646,Valmont (1989),Drama|Romance +5647,Ernest Goes to Africa (1997),Comedy +5649,Horror of Dracula (Dracula) (1958),Horror +5650,Strange Brew (1983),Comedy +5651,"Incredible Mr. Limpet, The (1964)",Animation|Comedy|War +5652,Claire of the Moon (1992),Drama|Romance +5653,Django (1966),Western +5654,Django 2: Django Strikes Again (1987),Western +5655,"Fan, The (1981)",Drama|Thriller +5656,Festival in Cannes (2001),Drama +5657,Flashback (1990),Action|Adventure|Comedy|Crime|Drama +5658,Hanky Panky (1982),Comedy +5659,"Rocking Horse Winner, The (1950)",Drama|Horror +5660,Seance on a Wet Afternoon (1964),Crime|Drama|Thriller +5661,Shamus (1973),Crime|Mystery +5662,"Wrong Guy, The (1997)",Comedy|Romance|Thriller +5663,Below (2002),Horror +5664,Brown Sugar (2002),Romance +5665,Knockaround Guys (2002),Action|Comedy|Crime +5666,"Rules of Attraction, The (2002)",Comedy|Drama|Romance|Thriller +5667,Tuck Everlasting (2002),Drama|Fantasy +5668,White Oleander (2002),Drama +5669,Bowling for Columbine (2002),Documentary +5670,Comedian (2002),Comedy|Documentary +5671,"On Guard (Bossu, Le) (1997)",Adventure|Drama +5672,Pokemon 4 Ever (a.k.a. Pokémon 4: The Movie) (2002),Adventure|Animation|Children|Fantasy +5673,Punch-Drunk Love (2002),Comedy|Drama|Romance +5674,Safe Conduct (Laissez-Passer) (2002),Drama|War +5675,Swept Away (2002),Comedy|Romance +5676,"Young Unknowns, The (2000)",Drama +5677,Abandon (2002),Drama|Thriller +5678,Formula 51 (2001),Action|Comedy|Crime|Thriller +5679,"Ring, The (2002)",Horror|Mystery|Thriller +5680,Auto Focus (2002),Crime|Drama +5681,Fidel (2001),Documentary +5682,"Grey Zone, The (2001)",Drama +5683,Hansel & Gretel (2002),Children|Fantasy +5684,Naqoyqatsi (2002),Documentary +5685,Real Women Have Curves (2002),Comedy|Drama +5686,Russian Ark (Russkiy Kovcheg) (2002),Drama|Fantasy|War +5687,Take Care of My Cat (Goyangileul butaghae) (2001),Drama +5688,Tully (2000),Drama +5689,Billy Bathgate (1991),Crime|Drama +5690,Grave of the Fireflies (Hotaru no haka) (1988),Animation|Drama|War +5691,Jason Goes to Hell: The Final Friday (1993),Action|Horror +5692,"Mechanic, The (1972)",Action|Thriller +5693,Saturday Night Fever (1977),Comedy|Drama|Romance +5694,Staying Alive (1983),Comedy|Drama|Musical +5695,To the Devil a Daughter (1976),Fantasy|Horror|Mystery +5696,Urban Cowboy (1980),Drama +5697,Terror Train (1980),Horror +5698,Times Square (1980),Drama +5699,Tom Horn (1980),Western +5700,The Pumaman (1980),Action|Adventure|Fantasy|Sci-Fi +5701,Up the Academy (1980),Comedy +5702,"When Time Ran Out... (Day the World Ended, The) (1980)",Action|Adventure +5703,Wholly Moses (1980),Comedy +5704,Without Warning (a.k.a. Alien Warning) (a.k.a. It Came Without Warning) (1980),Horror|Sci-Fi +5705,Xanadu (1980),Fantasy|Musical|Romance +5706,...All the Marbles (1981),Comedy|Drama +5707,Absence of Malice (1981),Drama|Romance +5708,All Night Long (1981),Comedy|Drama +5709,"Amateur, The (1981)",Crime|Thriller +5710,Banana Joe (1981),Comedy +5711,Marianne & Juliane (Die Bleierne Zeit) (1981),Drama +5712,Blow Out (1981),Mystery|Thriller +5713,The Boogens (1981),Horror +5714,Buddy Buddy (1981),Comedy +5715,"Burning, The (1981)",Horror +5716,Butterfly (1982),Drama +5717,Make Them Die Slowly (Cannibal Ferox) (1981),Horror +5718,Carbon Copy (1981),Comedy +5719,Charlie Chan and the Curse of the Dragon Queen (1981),Comedy|Mystery +5721,"Chosen, The (1981)",Drama +5722,"Goat, The (a.k.a. Knock On Wood) (Chèvre, La) (1981)",Comedy +5723,Continental Divide (1981),Comedy|Romance +5724,"Creature Wasn't Nice, The (a.k.a. Naked Space) (a.k.a. Spaceship) (1981)",Comedy|Horror|Musical|Sci-Fi +5725,Man of Iron (Czlowiek z Zelaza) (1981),Drama|Romance +5726,Dead & Buried (1981),Horror +5727,Deadly Blessing (1981),Horror +5728,Death Hunt (1981),Action|Adventure|Crime|Thriller +5729,Endless Love (1981),Drama|Romance +5730,Enter the Ninja (a.k.a. Ninja I) (1981),Action|Drama +5731,"Entity, The (1981)",Horror +5732,Eye of the Needle (1981),Thriller +5733,"Eyewitness (Janitor, The) (1981)",Thriller +5734,Faces of Death 2 (1981),Documentary|Horror +5735,Faces of Death (1978),Documentary|Horror +5736,Faces of Death 3 (1985),Documentary|Horror +5737,Faces of Death 4 (1990),Documentary|Horror +5738,Faces of Death 5 (1996),Documentary|Horror +5739,Faces of Death 6 (1996),Documentary|Horror +5740,Faces of Death: Fact or Fiction? (1999),Documentary|Horror +5741,"Woman Next Door, The (Femme d'à côté, La) (1981)",Drama|Romance +5742,First Monday in October (1981),Comedy|Drama +5743,"Fort Apache, the Bronx (1981)",Action|Drama +5744,Four Friends (a.k.a. Georgia's Friends) (1981),Drama +5745,"Four Seasons, The (1981)",Comedy|Drama +5746,Galaxy of Terror (Quest) (1981),Action|Horror|Mystery|Sci-Fi +5747,Gallipoli (1981),Drama|War +5748,"Inquisitor, The (a.k.a. Under Suspicion) (Garde à vue) (1981)",Crime|Drama +5749,Ghost Story (1981),Drama|Horror +5750,Going Ape! (1981),Comedy +5751,Goodbye Pork Pie (1981),Action|Adventure|Drama +5752,Gregory's Girl (1981),Comedy|Romance +5753,Who Pulled the Plug? (Göta kanal eller Vem drog ur proppen?) (1981),Comedy +5754,"Hand, The (1981)",Drama|Horror +5755,Happy Birthday to Me (1981),Horror|Mystery +5756,Heartbeeps (1981),Comedy|Sci-Fi +5757,History of Kim Skov (Historien om Kim Skov) (1981),Documentary|Drama +5758,Horror Planet (a.k.a. Inseminoid) (1981),Action|Drama|Horror|Sci-Fi +5759,"Ladies and Gentlemen, the Fabulous Stains (a.k.a. All Washed Up) (1981)",Comedy|Drama +5760,Lady Chatterley's Lover (1981),Drama|Romance +5761,"Legend of the Lone Ranger, The (1981)",Western +5762,Lili Marleen (1981),Drama +5763,Lola (1981),Drama +5764,Looker (1981),Drama|Horror|Sci-Fi|Thriller +5765,"Looney, Looney, Looney Bugs Bunny Movie, The (1981)",Animation|Children|Comedy +5766,Madman (1981),Horror +5767,Teddy Bear (Mis) (1981),Comedy|Crime +5768,Modern Problems (1981),Comedy|Fantasy +5769,Modern Romance (1981),Comedy|Romance +5770,Ms. 45 (a.k.a. Angel of Vengeance) (1981),Crime|Drama +5771,My Bloody Valentine (1981),Drama|Horror|Thriller +5772,My Dinner with André (1981),Drama +5773,Neighbors (1981),Comedy +5774,Night of the Zombies (a.k.a. Batallion of the Living Dead) (1981),Horror|Sci-Fi +5775,"Night the Lights Went Out in Georgia, The (1981)",Drama +5776,Only When I Laugh (1981),Comedy|Drama +5777,Pennies from Heaven (1981),Musical|Romance +5778,Pieces (Mil gritos tiene la noche) (One Thousand Cries Has the Night) (1982),Horror|Mystery|Thriller +5779,Piranha II: The Spawning (1981),Horror|Sci-Fi +5780,Polyester (1981),Comedy +5781,Private Lessons (1981),Comedy +5782,"Professional, The (Le professionnel) (1981)",Action|Drama|Thriller +5783,Derrida (2002),Documentary +5784,Ghost Ship (2002),Horror +5785,Jackass: The Movie (2002),Action|Comedy|Documentary +5786,Paid in Full (2002),Action|Drama +5787,"Truth About Charlie, The (2002)",Mystery|Thriller +5788,All or Nothing (2002),Drama +5789,All the Queen's Men (2001),Comedy|War +5790,Food of Love (Manjar de Amor) (2002),Drama +5791,Frida (2002),Drama|Romance +5792,Roger Dodger (2002),Comedy|Drama +5793,Time Changer (2002),Drama|Sci-Fi +5794,Good Work (Beau travail) (1999),Drama +5795,"Big Knife, The (1955)",Film-Noir +5796,Casino Royale (1967),Action|Adventure|Comedy +5797,"Company of Wolves, The (1984)",Fantasy|Horror +5798,Escanaba in da Moonlight (2001),Comedy +5799,Exodus (1960),Drama|Romance|War +5800,How to Murder Your Wife (1965),Comedy +5801,"Russians Are Coming, the Russians Are Coming, The (1966)",Comedy|War +5802,"World of Henry Orient, The (1964)",Comedy +5803,I Spy (2002),Action|Adventure|Comedy|Crime +5804,"Santa Clause 2, The (2002)",Children|Comedy|Fantasy|Romance +5805,Besotted (2001),Drama +5806,Blackboards (Takhté Siah) (2000),Drama +5807,Love In the Time of Money (2002),Comedy|Drama|Romance +5808,"Weight of Water, The (2000)",Thriller +5809,Femme Fatale (2002),Crime|Thriller +5810,8 Mile (2002),Drama +5811,Etoiles: Dancers of the Paris Opera Ballet (Tout Près des étoiles) (2001),Documentary|Musical +5812,Far from Heaven (2002),Drama|Romance +5813,"God is Great, I'm Not (Dieu est grand, je suis toute petite) (2001)",Comedy|Romance +5814,"Rising Place, The (2002)",Drama +5815,Half Past Dead (2002),Action|Crime|Thriller +5816,Harry Potter and the Chamber of Secrets (2002),Adventure|Fantasy +5817,Ararat (2002),Drama|War +5818,"Crime of Father Amaro, The (Crimen del padre Amaro, El) (2002)",Drama|Romance +5819,Interview with the Assassin (2002),Drama +5820,Standing in the Shadows of Motown (2002),Documentary|Musical +5821,"Way Home, The (Jibeuro) (2002)",Drama +5822,Mutant Action (Acción Mutante) (1993),Action|Comedy|Sci-Fi +5823,Eyes of an Angel (1991),Drama +5824,Liberty Stands Still (2002),Action|Drama|Thriller +5825,"Life and Death of Colonel Blimp, The (1943)",Drama|Romance|War +5826,Rio Grande (1950),Romance|Western +5827,"Young Americans, The (1993)",Crime|Drama +5828,Blackrock (1997),Drama|Thriller +5829,Men with Brooms (2002),Comedy|Drama|Romance +5830,Mysterious Island (1961),Adventure|Sci-Fi +5831,Soul Assassin (2001),Action|Crime|Thriller +5832,Left Behind II: Tribulation Force (2002),Drama +5833,Dog Soldiers (2002),Action|Horror +5834,Fingers (1978),Drama +5835,"Good Evening, Mr. Wallenberg (God afton, Herr Wallenberg) (1990)",Drama|War +5836,Houseboat (1958),Comedy|Romance +5837,Legion of the Dead (2001),Comedy|Horror +5838,Madame Bovary (1991),Drama +5839,My Father's Glory (La gloire de mon père) (1990),Adventure|Drama +5840,"My Mother's Castle (Château de ma mère, Le) (1990)",Comedy|Drama +5841,Return to the Blue Lagoon (1991),Adventure|Romance +5842,Too Beautiful for You (Trop belle pour toi) (1989),Comedy|Drama|Romance +5843,Toy Soldiers (1991),Action|Drama +5844,"Prowler, The (a.k.a. Rosemary's Killer) (a.k.a. The Graduation) (1981)",Horror +5845,"Pursuit of D.B. Cooper, The (a.k.a. Pursuit) (1981)",Adventure +5846,Raggedy Man (1981),Drama +5847,Ragtime (1981),Drama +5848,Rich and Famous (1981),Drama +5849,I'm Starting From Three (Ricomincio da Tre) (1981),Comedy +5850,Road Games (a.k.a. Roadgames) (1981),Thriller +5851,Rollover (1981),Drama +5852,Saturday the 14th (1981),Comedy|Horror +5853,Scanners (1981),Horror|Sci-Fi|Thriller +5854,Sharky's Machine (1981),Crime|Drama|Romance +5855,Shock Treatment (1981),Comedy|Musical|Sci-Fi +5856,"Do You Remember Dolly Bell? (Sjecas li se, Dolly Bell) (1981)",Comedy|Drama|Romance +5857,So Fine (1981),Comedy +5858,"Soupe aux Choux, La (1981)",Comedy +5859,Southern Comfort (1981),Drama|Thriller|War +5860,Sphinx (1981),Mystery|Thriller +5861,Tales of Ordinary Madness (Storie di Ordinaria Follia) (1981),Drama +5862,Student Bodies (1981),Comedy|Horror +5863,Take This Job and Shove It (1981),Comedy +5864,"Tarzan, the Ape Man (1981)",Adventure +5865,Tattoo (1981),Drama|Thriller +5866,They All Laughed (1981),Comedy +5867,Thief (1981),Crime|Drama|Thriller +5868,This Is Elvis (1981),Documentary|Drama|Musical +5869,True Confessions (1981),Crime|Drama +5870,Revolution #9 (2001),Thriller +5871,Better Housekeeping (a.k.a. Good Housekeeping) (2000),Comedy|Drama +5872,Die Another Day (2002),Action|Adventure|Thriller +5873,The Emperor's Club (2002),Drama +5874,Friday After Next (2002),Comedy +5875,Personal Velocity (2002),Drama +5876,"Quiet American, The (2002)",Drama|Thriller|War +5877,Smokers Only (Vagón Fumador) (2001),Drama|Romance +5878,Talk to Her (Hable con Ella) (2002),Drama|Romance +5879,Eight Crazy Nights (Adam Sandler's Eight Crazy Nights) (2002),Animation|Comedy|Musical +5880,Extreme Ops (2002),Action|Adventure|Crime|Thriller +5881,Solaris (2002),Drama|Romance|Sci-Fi +5882,Treasure Planet (2002),Adventure|Animation|Children|Sci-Fi|IMAX +5883,They (2002),Horror|Thriller +5884,Chopper Chicks in Zombietown (1989),Comedy|Horror +5885,"What to Do in Case of Fire (Was tun, wenn's brennt?) (2002)",Comedy|Drama +5886,I Love You Too (Ik ook Van Jou) (2001),Drama|Romance +5887,Another You (1991),Comedy +5888,Brother (Brat) (1997),Crime|Drama +5889,"Cruel Romance, A (Zhestokij Romans) (1984)",Drama|Romance +5890,Elling (2001),Comedy|Drama +5891,I Spit on Your Grave (Day of the Woman) (1978),Horror|Thriller +5892,"Island at the Top of the World, The (1974)",Action|Adventure|Children +5893,"Last Seduction, The (1994)",Crime|Drama|Thriller +5894,"Last Seduction II, The (1999)",Crime|Drama|Thriller +5895,Making Contact (a.k.a. Joey) (1985),Fantasy|Horror|Sci-Fi +5896,New Waterford Girl (1999),Comedy +5897,"Noah's Arc Principle, The (Arche Noah Prinzip, Das) (1984)",Sci-Fi +5898,"Sword and the Sorcerer, The (1982)",Action|Adventure|Fantasy +5899,Zulu (1964),Action|Drama|War +5900,Analyze That (2002),Comedy|Crime +5901,Empire (2002),Crime|Drama +5902,Adaptation (2002),Comedy|Drama|Romance +5903,Equilibrium (2002),Action|Sci-Fi|Thriller +5904,My Kingdom (2001),Drama +5905,Soap Girl (2002),Drama|Romance +5906,It All Starts Today (Ça commence aujourd'hui) (1999),Drama +5907,Medea (1970),Drama +5908,Scarlet Diva (2000),Drama +5909,Visitor Q (Bizita Q) (2001),Comedy|Drama|Horror +5910,"Bolero (Uns et les autres, Les) (1981)",Drama|War +5911,Urgh! A Music War (1981),Documentary +5912,Hit the Bank (Vabank) (1981),Comedy|Crime +5913,Warning for the Joensson Gang (Varning för Jönssonligan) (1981),Comedy|Crime +5914,"Vernon, Florida (1981)",Documentary +5915,Victory (a.k.a. Escape to Victory) (1981),Action|Drama|War +5916,Whose Life Is It Anyway? (1981),Drama +5917,Zoot Suit (1981),Drama|Musical +5918,Alone in the Dark (1982),Horror +5919,Android (1982),Sci-Fi +5920,"Ace of Aces (a.k.a. Super Ace, The) (As des as, L') (1982)",Adventure|Comedy +5921,Attack Force Z (a.k.a. The Z Men) (Z-tzu te kung tui) (1982),War +5922,Attila (Attila Flagello di Dio) (1982),Action +5923,Author! Author! (1982),Comedy|Drama +5924,Barbarosa (1982),Western +5925,"Beast Within, The (1982)",Horror +5926,Best Friends (1982),Comedy|Drama|Romance +5927,"Best Little Whorehouse in Texas, The (1982)",Comedy|Drama|Musical|Romance +5928,"Border, The (1982)",Drama +5929,"Party 2, The (Boum 2, La) (1982)",Comedy|Romance +5930,Brimstone and Treacle (1982),Drama|Thriller +5931,Britannia Hospital (1982),Comedy|Drama +5932,Burden of Dreams (1982),Documentary +5933,Cannery Row (1982),Drama +5934,"Challenge, The (1982)",Action +5935,Class of 1984 (1982),Action|Drama|Thriller +5936,"Come Back to the Five and Dime, Jimmy Dean, Jimmy Dean (1982)",Drama +5937,Danton (1983),Drama +5938,Deathtrap (1982),Comedy|Crime|Mystery|Thriller +5939,"Man Who Saves the World, The (Dünyayi Kurtaran Adam) (1982)",Adventure|Sci-Fi +5940,Eating Raoul (1982),Comedy +5941,Drumline (2002),Comedy|Drama|Musical|Romance +5942,"Hot Chick, The (2002)",Comedy +5943,Maid in Manhattan (2002),Comedy|Romance +5944,Star Trek: Nemesis (2002),Action|Drama|Sci-Fi|Thriller +5945,About Schmidt (2002),Comedy|Drama +5946,"Pellet (Bola, El) (2000)",Drama +5947,Evelyn (2002),Drama +5948,"Guys, The (2002)",Drama +5949,Intact (Intacto) (2001),Thriller +5950,"Jimmy Show, The (2002)",Comedy|Drama +5951,Morvern Callar (2002),Drama +5952,"Lord of the Rings: The Two Towers, The (2002)",Adventure|Fantasy +5953,Devils on the Doorstep (Guizi lai le) (2000),Drama|War +5954,25th Hour (2002),Crime|Drama +5955,Antwone Fisher (2002),Drama +5956,Gangs of New York (2002),Crime|Drama +5957,Two Weeks Notice (2002),Comedy|Romance +5958,"Wild Thornberrys Movie, The (2002)",Animation|Children|Comedy +5959,Narc (2002),Crime|Drama|Thriller +5960,Bad Influence (1990),Drama|Thriller +5961,Blue Steel (1990),Action|Thriller +5962,Body of Evidence (1993),Drama|Thriller +5963,"Children's Hour, The (1961)",Drama +5964,Company Business (1991),Action|Comedy +5965,"Duellists, The (1977)",Action|War +5966,"Kiss Before Dying, A (1956)",Film-Noir|Mystery +5967,Legend of the Lost (1957),Adventure +5968,Miami Blues (1990),Comedy|Crime|Drama +5969,My Girl 2 (1994),Comedy|Drama|Romance +5970,My Girl (1991),Comedy|Drama|Romance +5971,My Neighbor Totoro (Tonari no Totoro) (1988),Animation|Children|Drama|Fantasy +5972,"Road to Hong Kong, The (1962)",Comedy +5973,Running Time (1997),Crime|Thriller +5974,"Thief of Bagdad, The (1940)",Adventure|Fantasy +5975,War and Peace (1956),Drama|Romance|War +5976,Where Sleeping Dogs Lie (1992),Crime +5977,Where's Poppa? (1970),Comedy +5978,"Whistle Blower, The (1986)",Thriller +5979,Attack of the Crab Monsters (1957),Horror|Sci-Fi +5980,Black Christmas (1974),Horror|Mystery|Thriller +5981,"Day of the Triffids, The (1962)",Horror|Sci-Fi +5982,Esther Kahn (2000),Drama +5983,Invaders from Mars (1953),Sci-Fi +5984,"Story of O, The (Histoire d'O) (1975)",Drama|Romance +5985,Asoka (Ashoka the Great) (2001),Action|Drama|Romance +5986,Fat City (1972),Drama +5987,"Love, Honour and Obey (2000)",Comedy|Crime|Drama +5988,Quicksilver (1986),Drama +5989,Catch Me If You Can (2002),Crime|Drama +5990,Pinocchio (2002),Children|Comedy|Fantasy +5991,Chicago (2002),Comedy|Crime|Drama|Musical +5992,"Hours, The (2002)",Drama|Romance +5993,Max (2002),Drama +5994,Nicholas Nickleby (2002),Drama|Romance +5995,"Pianist, The (2002)",Drama|War +5996,Sonny (2002),Crime|Drama +5997,Champagne for Caesar (1950),Comedy +5998,Doppelganger (1993),Horror|Thriller +5999,Heavy Metal 2000 (2000),Action|Adventure|Animation|Fantasy|Sci-Fi +6000,"House on the Edge of the Park, The (Casa sperduta nel parco, La) (1980)",Horror|Thriller +6001,"King of Comedy, The (1983)",Comedy|Drama +6002,Love Liza (2002),Drama +6003,Confessions of a Dangerous Mind (2002),Comedy|Crime|Drama|Thriller +6004,Abraham's Valley (Vale Abraão) (1993),Drama +6005,Blue Collar Comedy Tour: The Movie (2003),Comedy|Documentary +6006,Just Married (2003),Comedy|Romance +6007,P.S. Your Cat is Dead (2002),Comedy +6008,"Son, The (Le fils) (2002)",Drama +6009,"City of Lost Souls, The (Hyôryuu-gai) (2000)",Crime|Drama|Thriller +6010,Double Whammy (2001),Action|Comedy|Drama +6011,Wisegirls (2002),Crime|Drama +6012,"Guy Thing, A (2003)",Comedy|Romance +6013,Kangaroo Jack (2003),Action|Comedy +6014,National Security (2003),Action|Comedy +6015,Big Shot's Funeral (Da Wan) (2001),Comedy +6016,City of God (Cidade de Deus) (2002),Action|Adventure|Crime|Drama|Thriller +6017,Divine Intervention (Yadon ilaheyya) (2002),Comedy|Drama|Romance|War +6018,Kira's Reason: A Love Story (En Kærlighedshistorie) (2001),Drama +6019,Above Suspicion (1995),Thriller +6020,Alice Adams (1935),Comedy|Drama +6021,"American Friend, The (Amerikanische Freund, Der) (1977)",Crime|Drama|Mystery|Thriller +6022,American Me (1992),Drama +6023,Band of Outsiders (Bande à part) (1964),Comedy|Crime|Drama|Romance +6024,Breaking Up (1997),Comedy|Romance +6025,CB4 - The Movie (1993),Comedy +6026,"Deathmaker, The (Totmacher, Der) (1995)",Crime|Drama +6027,Dogfight (1991),Drama|Romance +6028,"Easy Come, Easy Go (1967)",Adventure|Musical +6029,Fun in Acapulco (1963),Comedy|Musical +6030,Girls! Girls! Girls! (1962),Comedy|Musical +6031,Imitation of Life (1959),Drama|Romance +6032,"Little Romance, A (1979)",Comedy|Romance +6033,Mystery Date (1991),Comedy +6034,"Paradise, Hawaiian Style (1966)",Comedy|Musical +6035,Pépé le Moko (1937),Crime|Drama|Romance +6036,Secret Admirer (1985),Comedy|Romance +6037,Summer Lovers (1982),Comedy|Drama|Romance +6038,Tune in Tomorrow... (1990),Comedy|Romance +6039,"Woman in Red, The (1984)",Comedy|Romance +6040,Darkness Falls (2003),Horror|Thriller +6041,Amen. (2002),Drama +6042,Blind Spot: Hitler's Secretary (Im toten Winkel - Hitlers Sekretärin) (2002),Documentary +6043,In the Mirror of Maya Deren (Im Spiegel der Maya Deren) (2002),Documentary +6044,Blind Date (1984),Horror|Thriller +6045,Bullet (1996),Action|Crime|Drama +6046,Claudine (1974),Drama +6047,Dead Reckoning (1947),Drama|Film-Noir|Mystery +6048,"Devil at 4 O'Clock, The (1961)",Drama +6049,Ethan Frome (1993),Drama +6050,Gus (1976),Children|Comedy +6051,"Harder They Come, The (1973)",Action|Crime|Drama +6052,"Horse in the Gray Flannel Suit, The (1968)",Children|Comedy +6053,Krush Groove (1985),Drama|Musical +6054,"Moon-Spinners, The (1964)",Children|Mystery +6055,Sugar Hill (1994),Drama +6056,Chaos (2001),Comedy|Crime|Drama +6057,Biker Boyz (2003),Action|Crime|Drama +6058,Final Destination 2 (2003),Horror|Thriller +6059,"Recruit, The (2003)",Action|Thriller +6060,"Guru, The (2002)",Comedy|Romance +6061,Kedma (2002),Drama|War +6062,Lost in La Mancha (2002),Documentary +6063,May (2002),Drama|Horror +6064,"Harder They Fall, The (1956)",Drama|Film-Noir +6065,I'm All Right Jack (1959),Comedy +6066,Murder by Decree (1979),Mystery|Thriller +6067,Ordinary Decent Criminal (2000),Comedy|Crime +6068,Pursued (1947),Thriller|Western +6069,"Big Time Operators (Smallest Show on Earth, The) (1957)",Comedy +6070,Tokyo Decadence (Topâzu) (1992),Drama +6071,Two-Way Stretch (1960),Comedy|Crime +6072,"Unfaithful Wife, The (Femme infidèle, La) (1969)",Drama|Thriller +6073,Victim (1961),Crime|Drama +6074,Endangered Species (1982),Mystery|Sci-Fi|Thriller +6075,"Simple-Minded Murder, The (Enfaldige mördaren, Den) (1982)",Drama +6076,Enigma (1983),Drama|Sci-Fi +6077,Evil Under the Sun (1982),Crime|Drama|Mystery +6078,Firefox (1982),Action|Sci-Fi|Thriller +6079,Five Days One Summer (1982),Drama +6080,Forced Vengeance (1982),Action|Adventure +6081,"Never Play Clever Again (Gendarme et les gendarmettes, Le) (1982)",Comedy|Crime +6082,"Grey Fox, The (1982)",Romance|Western +6083,Hammett (1982),Crime|Mystery +6084,Honkytonk Man (1982),Comedy|Drama +6085,Neil Young: Human Highway (1982),Comedy|Drama +6086,"I, the Jury (1982)",Crime|Drama|Thriller +6087,If You Could See What I Hear (1982),Comedy|Drama|Romance +6088,Jekyll & Hyde... Together Again (1982),Comedy|Sci-Fi +6089,"J. Gang Meets Dynamite Harry, The (Jönssonligan & DynamitHarry) (1982)",Comedy|Crime +6090,Kiss Me Goodbye (1982),Comedy +6091,Labyrinth of Passion (Laberinto de Pasiones) (1982),Comedy +6092,"Last American Virgin, The (1982)",Comedy|Drama +6093,"Last Unicorn, The (1982)",Animation|Children|Fantasy +6094,Liquid Sky (1982),Comedy|Sci-Fi +6095,Dragon Lord (a.k.a. Dragon Strike) (Long Xiao Ye) (1982),Action +6096,Making Love (1982),Drama +6097,Manhattan Baby (1982),Horror +6098,"Marathon Family, The (Maratonci Trce Pocasni Krug) (1982)",Comedy +6099,Megaforce (1982),Action|Sci-Fi +6100,"Midsummer Night's Sex Comedy, A (1982)",Comedy|Romance +6101,Missing (1982),Drama|Mystery|Thriller +6102,"Missionary, The (1982)",Comedy +6103,Monsignor (1982),Drama|War +6104,Monty Python Live at the Hollywood Bowl (1982),Comedy +6105,Moonlighting (1982),Drama +6106,Mother Lode (1982),Adventure +6107,"Night of the Shooting Stars (Notte di San Lorenzo, La) (1982)",Drama|War +6108,"That Night in Varennes (Nuit de Varennes, La) (1982)",Drama +6109,One from the Heart (1982),Drama|Romance +6110,Pandemonium (1982),Comedy|Horror|Mystery +6111,Paradise (1982),Adventure|Romance +6112,Partners (1982),Comedy +6113,Godard's Passion (Passion) (1982),Drama +6114,Permanent Vacation (1982),Drama +6115,Personal Best (1982),Drama +6116,"Pirate Movie, The (1982)",Adventure|Comedy|Musical +6117,Privates on Parade (1982),Comedy|Drama|War +6118,Blind Chance (Przypadek) (1981),Drama +6119,Santa Claus Is a Stinker (Le Père Noël est une ordure) (1982),Comedy +6120,Q: The Winged Serpent (1982),Drama|Fantasy|Horror|Sci-Fi|Thriller +6121,Querelle (1982),Drama +6122,Richard Pryor Live on the Sunset Strip (1982),Comedy|Documentary +6123,Sunless (Sans Soleil) (1983),Documentary +6124,Savannah Smiles (1982),Comedy +6125,"Secret Policeman's Other Ball, The (1982)",Comedy|Documentary|Musical +6126,"Veronika Voss (Sehnsucht der Veronika Voss, Die) (1982)",Drama +6127,Shoot the Moon (1982),Drama +6128,Six Pack (1982),Comedy|Drama +6129,Six Weeks (1982),Drama +6130,"Soldier, The (1982)",Action +6131,Some Kind of Hero (1982),Comedy|Drama +6132,"New York Ripper, The (Squartatore di New York, Lo) (1982)",Crime|Horror|Mystery|Thriller +6133,"State of Things, The (Stand der Dinge, Der) (1982)",Drama +6134,Starstruck (1982),Comedy|Musical +6135,Still of the Night (1982),Mystery|Thriller +6136,"South, The (Sur, El) (1983)",Drama|Romance +6137,Sword of the Valiant (1984),Action|Adventure|Fantasy|Romance +6138,Tag: The Assassination Game (a.k.a. Everybody Gets It in the End) (1982),Action|Thriller +6139,Tempest (1982),Comedy|Drama +6140,Tenebre (1982),Horror|Mystery|Thriller +6141,They Call Me Bruce? (a.k.a. A Fistful of Chopsticks) (1982),Comedy +6142,Time Walker (a.k.a. Being From Another Planet) (1982),Horror|Sci-Fi +6143,Trail of the Pink Panther (1982),Comedy|Crime +6144,"Traviata, La (1982)",Drama|Musical +6145,Venom (1982),Horror|Thriller +6146,To Begin Again (a.k.a. Starting Over) (Volver a Empezar) (1982),Drama +6147,"White Rose, The (Weiße Rose, Die) (1982)",Drama|Film-Noir +6148,White Dog (1982),Drama|Horror|Thriller +6149,"Final Option, The (Who Dares Wins) (1982)",Action|War +6150,Wrong Is Right (a.k.a. The Man With the Deadly Lens) (1982),Drama|Thriller +6151,Yol (a.k.a. The Way) (1982),Drama +6152,"Yor, the Hunter from the Future (1983)",Sci-Fi +6153,Zapped! (1982),Comedy|Sci-Fi +6154,Deliver Us from Eva (2003),Comedy|Romance +6155,How to Lose a Guy in 10 Days (2003),Comedy|Romance +6156,Shanghai Knights (2003),Action|Adventure|Comedy +6157,Daredevil (2003),Action|Crime +6158,"Jungle Book 2, The (2003)",Animation|Children +6159,All the Real Girls (2003),Drama|Romance +6160,Amandla! A Revolution in Four Part Harmony (2002),Documentary|Musical +6161,Painted Fire (Chihwaseon) (2002),Drama +6162,Gerry (2002),Adventure|Drama +6163,He Loves Me... He Loves Me Not (À la folie... pas du tout) (2002),Romance|Thriller +6164,Lockdown (2000),Drama +6165,Ordinary Sinner (2001),Drama|Romance +6166,Dennis the Menace (1993),Comedy +6167,Stand-In (1937),Comedy +6168,10 to Midnight (1983),Action|Adventure|Thriller +6169,"Black Stallion Returns, The (1983)",Adventure|Children +6170,"Black Stallion, The (1979)",Adventure|Children|Drama +6171,Cesar & Rosalie (César et Rosalie) (1972),Comedy|Drama|Romance +6172,"Countess from Hong Kong, A (1967)",Comedy +6173,Into the West (1992),Adventure|Children +6174,Kinjite: Forbidden Subjects (1989),Crime|Thriller +6175,Messenger of Death (1988),Thriller +6176,Mr. Majestyk (1974),Action|Drama +6177,Murphy's Law (1986),Action +6178,"Patch of Blue, A (1965)",Drama|Romance +6179,"Prayer for the Dying, A (1987)",Action|Drama +6180,Q & A (1990),Crime|Drama +6181,"Red Badge of Courage, The (1951)",Drama|War +6182,"Thrill of It All, The (1963)",Comedy +6183,Pillow Talk (1959),Comedy|Musical|Romance +6184,"Man Who Fell to Earth, The (1976)",Drama|Sci-Fi +6185,Dark Blue (2003),Action|Crime|Drama|Thriller +6186,Gods and Generals (2003),Action|Drama|War +6187,"Life of David Gale, The (2003)",Crime|Drama|Thriller +6188,Old School (2003),Comedy +6189,Dischord (2001),Drama|Thriller +6190,"Lawless Heart, The (2003)",Comedy|Drama +6191,"Navigators, The (2001)",Comedy|Drama +6192,Open Hearts (Elsker dig for evigt) (2002),Romance +6193,Poolhall Junkies (2002),Comedy|Drama|Thriller +6194,Till Human Voices Wake Us (2001),Drama|Romance +6195,Stone Reader (2002),Documentary +6196,Cradle 2 the Grave (2003),Action|Crime|Drama|Thriller +6197,Spider (2002),Drama|Mystery +6198,American Heart (1992),Crime|Drama +6199,Edie & Pen (1996),Comedy +6200,Insignificance (1985),Comedy|Drama +6201,Lady Jane (1986),Drama|Romance +6202,Late Marriage (Hatuna Meuheret) (2001),Comedy|Drama|Romance +6203,Life Stinks (1991),Comedy +6204,"Meteor Man, The (1993)",Comedy +6205,Mr. North (1988),Comedy|Drama +6206,Seize the Day (1986),Drama +6207,"Slaughter Rule, The (2002)",Drama +6208,Teenagers from Outer Space (1959),Horror|Sci-Fi +6209,Trouble Bound (1993),Action|Comedy +6210,Volcano High (Whasango) (2001),Action|Comedy +6211,Ten (2002),Drama +6212,Bringing Down the House (2003),Comedy +6213,Tears of the Sun (2003),Action|Drama|Thriller +6214,Irreversible (Irréversible) (2002),Crime|Drama|Mystery|Thriller +6215,Laurel Canyon (2002),Drama +6216,Nowhere in Africa (Nirgendwo in Afrika) (2001),Drama +6217,"Safety of Objects, The (2001)",Drama +6218,Bend It Like Beckham (2002),Comedy|Drama|Romance +6219,"Hunted, The (2003)",Action|Drama|Thriller +6220,Willard (2003),Drama|Horror|Thriller +6221,Gaudi Afternoon (2001),Comedy|Drama|Mystery +6222,Prozac Nation (2001),Drama +6223,Spun (2001),Comedy|Crime|Drama +6224,Under the Skin of the City (Zir-e-poost-e Shahr) (2001),Drama +6225,King of Kings (1961),Drama +6226,"Lost Honor of Katharina Blum, The (Verlorene Ehre der Katharina Blum oder: Wie Gewalt entstehen und wohin sie führen kann, Die) (1975)",Drama +6227,Loving You (1957),Drama|Musical +6228,"Talk of the Town, The (1942)",Comedy|Romance|Thriller +6229,Two-Lane Blacktop (1971),Drama +6230,Bang the Drum Slowly (1973),Drama +6231,"Benny Goodman Story, The (1955)",Drama|Musical +6232,Born Free (1966),Adventure|Children|Drama +6233,Born Yesterday (1993),Comedy|Romance +6234,Equus (1977),Drama|Mystery +6235,Europa Europa (Hitlerjunge Salomon) (1990),Drama|War +6236,Fear Strikes Out (1957),Drama +6237,"Glenn Miller Story, The (1953)",Drama +6238,Green Card (1990),Comedy|Drama|Romance +6239,Journey to the Center of the Earth (1959),Adventure|Children|Sci-Fi +6240,One Good Cop (1991),Action|Crime|Drama +6241,Pauline at the Beach (Pauline à la Plage) (1983),Comedy|Drama|Romance +6242,Ringu (Ring) (1998),Horror|Mystery|Thriller +6243,Ringu 2 (Ring 2) (1999),Horror|Mystery +6244,Salaam Bombay! (1988),Drama +6245,Sweet Charity (1969),Comedy|Drama|Musical|Romance +6246,Talent for the Game (1991),Drama +6247,Women in Love (1969),Drama|Romance +6248,Japon (a.k.a. Japan) (Japón) (2002),Drama +6249,Boat Trip (2003),Comedy +6250,Dreamcatcher (2003),Drama|Horror|Sci-Fi|Thriller +6251,Piglet's Big Movie (2003),Animation|Children +6252,View from the Top (2003),Comedy|Romance +6253,Down and Out with the Dolls (2001),Comedy +6254,"Awful Truth, The (1937)",Comedy|Romance +6255,"Bible, The (a.k.a. Bible... In the Beginning, The) (1966)",Drama +6256,"House with Laughing Windows, The (Casa dalle finestre che ridono, La) (1976)",Horror|Mystery|Thriller +6257,I Am Curious (Yellow) (Jag är nyfiken - en film i gult) (1967),Drama +6258,"Dames du Bois de Boulogne, Les (Ladies of the Bois de Boulogne, The) (Ladies of the Park) (1945)",Drama|Romance +6259,My Friend Flicka (1943),Children|Western +6260,"Robe, The (1953)",Drama +6261,Wind (1992),Action|Romance +6262,Unknown Pleasures (Ren xiao yao) (2002),Comedy|Drama +6263,Basic (2003),Drama|Thriller|War +6264,"Core, The (2003)",Action|Drama|Sci-Fi|Thriller +6265,Head of State (2003),Comedy +6266,What a Girl Wants (2003),Comedy|Drama|Romance +6267,Assassination Tango (2002),Drama|Thriller +6268,Raising Victor Vargas (2002),Comedy|Drama|Romance +6269,Stevie (2002),Documentary +6270,Akira Kurosawa's Dreams (Dreams) (1990),Drama|Fantasy +6271,Day for Night (La Nuit Américaine) (1973),Comedy|Drama|Romance +6272,Eye of God (1997),Drama +6273,In a Lonely Place (1950),Drama|Film-Noir|Mystery|Romance +6274,Physical Evidence (1989),Crime|Thriller +6275,Square Dance (1987),Drama|Romance +6276,Wake of the Red Witch (1948),Action|Adventure|Drama +6277,Winter Kills (1979),Drama +6278,Fellini: I'm a Born Liar (Fellini: Je Suis um Grand Menteur) (2001),Documentary +6279,"Good Thief, The (2002)",Crime|Drama +6280,"Man Apart, A (2003)",Action|Crime|Drama|Thriller +6281,Phone Booth (2002),Drama|Thriller +6282,Cet amour-là (2001),Drama|Romance +6283,Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira) (2001),Action|Animation|Sci-Fi|Thriller +6284,DysFunktional Family (2003),Comedy|Documentary +6285,Levity (2003),Drama +6286,"Man Without a Past, The (Mies vailla menneisyyttä) (2002)",Comedy|Crime|Drama +6287,Anger Management (2003),Comedy +6288,Better Luck Tomorrow (2002),Crime|Drama +6289,Ghosts of the Abyss (2003),Documentary|IMAX +6290,House of 1000 Corpses (2003),Horror +6291,Lilya 4-Ever (Lilja 4-ever) (2002),Crime|Drama +6292,Marion Bridge (2002),Drama +6293,XX/XY (2002),Drama|Romance +6294,Bulletproof Monk (2003),Action|Adventure|Sci-Fi +6295,Chasing Papi (a.k.a. Papi Chulo) (2003),Comedy +6296,"Mighty Wind, A (2003)",Comedy|Musical +6297,Holes (2003),Adventure|Children|Comedy|Mystery +6298,Malibu's Most Wanted (2003),Comedy|Crime +6299,"Winged Migration (Peuple migrateur, Le) (2001)",Documentary +6300,Flickering Lights (Blinkende lygter) (2000),Action|Comedy|Crime +6301,Straw Dogs (1971),Drama|Thriller +6302,Beginning of the End (1957),Sci-Fi +6303,"Andromeda Strain, The (1971)",Mystery|Sci-Fi +6304,Brainscan (1994),Comedy|Horror|Sci-Fi|Thriller +6305,Fahrenheit 451 (1966),Drama|Sci-Fi +6306,I Am Trying to Break Your Heart (2002),Documentary +6307,"Iceman Cometh, The (1973)",Drama +6308,Legal Eagles (1986),Comedy|Crime|Romance +6309,Married to It (1991),Comedy|Drama +6310,Memories of Me (1988),Comedy|Drama +6311,"Other Side of Heaven, The (2001)",Adventure|Drama +6312,"Private Function, A (1984)",Comedy +6313,Sibling Rivalry (1990),Comedy +6314,Undercover Blues (1993),Comedy|Crime +6315,Wildcats (1986),Comedy +6316,"Wiz, The (1978)",Adventure|Children|Comedy|Fantasy|Musical +6317,Cartouche (1962),Action|Adventure|Comedy|Drama +6318,"Marrying Man, The (Too Hot to Handle) (1991)",Comedy|Romance +6319,"My Father the Hero (Mon père, ce héros.) (1991)",Comedy|Drama +6320,Scenes from a Mall (1991),Comedy +6321,Stella (1990),Drama +6322,Confidence (2003),Crime|Thriller +6323,Identity (2003),Crime|Horror|Mystery|Thriller +6324,It Runs in the Family (2003),Comedy|Drama +6325,"Real Cancun, The (2003)",Documentary +6326,City of Ghosts (2002),Crime|Drama|Thriller +6327,"Decade Under the Influence, A (2003)",Documentary +6328,House of Fools (2002),Drama|Romance|War +6329,Manic (2001),Drama +6330,People I Know (2002),Crime|Drama +6331,Spellbound (2002),Documentary +6332,"Lizzie McGuire Movie, The (2003)",Children|Comedy|Romance +6333,X2: X-Men United (2003),Action|Adventure|Sci-Fi|Thriller +6334,Blue Car (2002),Drama +6335,"Dancer Upstairs, The (2002)",Crime|Drama|Thriller +6336,Marooned in Iraq (Gomgashtei dar Aragh) (2002),Drama +6337,Owning Mahowny (2003),Crime|Drama|Thriller +6338,Daddy Day Care (2003),Children|Comedy +6339,"Man on the Train (Homme du train, L') (2002)",Comedy|Drama +6340,Only the Strong Survive - A Celebration of Soul (2002),Documentary|Musical +6341,"Shape of Things, The (2003)",Drama +6342,"Trip, The (2002)",Comedy|Drama|Romance +6343,Washington Heights (2002),Drama|Romance +6344,101 Reykjavik (101 Reykjavík) (2000),Comedy|Drama|Romance +6345,"Chorus Line, A (1985)",Comedy|Drama|Musical +6346,Absolute Beginners (1986),Musical +6347,Beat Street (1984),Drama|Musical +6348,Breakin' 2: Electric Boogaloo (1984),Musical +6349,Breakin' (1984),Drama|Musical +6350,Laputa: Castle in the Sky (Tenkû no shiro Rapyuta) (1986),Action|Adventure|Animation|Children|Fantasy|Sci-Fi +6351,Hysterical Blindness (2002),Drama +6352,Lambada (1990),Drama +6353,Roadie (1980),Comedy|Musical +6354,"Carpetbaggers, The (1964)",Drama +6355,"Girls, Les (1957)",Musical +6356,Gunfight at the O.K. Corral (1957),Western +6357,High Society (1956),Comedy|Musical|Romance +6358,Kiss Me Kate (1953),Comedy|Musical|Romance +6365,"Matrix Reloaded, The (2003)",Action|Adventure|Sci-Fi|Thriller|IMAX +6366,Dracula: Pages from a Virgin's Diary (2001),Horror|Mystery +6367,Down with Love (2003),Comedy|Romance +6368,Cinemania (2002),Documentary +6369,Friends and Family (2001),Comedy +6370,"Spanish Apartment, The (L'auberge espagnole) (2002)",Comedy|Drama|Romance +6371,Pokémon Heroes (2003),Animation|Children +6373,Bruce Almighty (2003),Comedy|Drama|Fantasy|Romance +6374,"In-Laws, The (2003)",Comedy +6375,Gigantic (A Tale of Two Johns) (2002),Documentary +6376,Respiro (2002),Comedy|Drama +6377,Finding Nemo (2003),Adventure|Animation|Children|Comedy +6378,"Italian Job, The (2003)",Action|Crime +6379,Wrong Turn (2003),Horror|Thriller +6380,Capturing the Friedmans (2003),Documentary +6381,"Three Marias, The (Três Marias, As) (2002)",Drama +6382,Together (Han ni Zai Yiki) (2002),Drama +6383,"2 Fast 2 Furious (Fast and the Furious 2, The) (2003)",Action|Crime|Thriller +6384,Love the Hard Way (2001),Crime|Drama|Romance +6385,Whale Rider (2002),Drama +6386,Nevada Smith (1966),Western +6387,Once a Thief (Zong heng si hai) (1991),Action|Comedy|Crime|Thriller +6388,Regeneration (1997),Drama|War +6390,Silk Stockings (1957),Musical +6391,Snowball Express (1972),Children|Comedy +6392,"Man Called Horse, A (1970)",Adventure|Drama|Western +6393,For Sale (À Vendre) (1998),Drama +6394,Big Jake (1971),Western +6395,"Crazies, The (a.k.a. Code Name: Trixie) (1973)",Action|Drama|Horror|Sci-Fi|Thriller +6396,Dementia 13 (1963),Horror|Thriller +6397,"Bizarre, Bizarre (Drôle de drame ou L'étrange aventure de Docteur Molyneux) (1937)",Comedy +6398,Le Mans (1971),Action|Adventure +6400,Murder on a Sunday Morning (Un coupable idéal) (2001),Documentary +6401,Rio Lobo (1970),Adventure|Romance|War|Western +6402,Siam Sunset (1999),Comedy +6403,"Swimmer, The (1968)",Drama +6404,"White Sheik, The (Sceicco bianco, Lo) (1952)",Comedy|Romance +6405,Treasure Island (1950),Adventure|Children +6406,Two Evil Eyes (1990),Horror +6407,"Walk, Don't Run (1966)",Comedy|Romance +6408,Animals are Beautiful People (1974),Comedy|Documentary +6409,Bend of the River (1952),Western +6410,Car Wash (1976),Comedy +6411,Come September (1961),Comedy +6412,Destry Rides Again (1939),Comedy|Western +6413,"Electric Horseman, The (1979)",Comedy|Western +6414,Gay Purr-ee (1962),Animation|Children|Musical +6415,Intervista (1987),Comedy|Drama +6416,King Rat (1965),Drama|War +6417,Live Wire (1992),Action +6419,Mr. & Mrs. Bridge (1990),Drama +6420,Night Passage (1957),Western +6421,"Rare Breed, The (1966)",Action|Drama|Romance|Western +6422,Shenandoah (1965),Drama|War|Western +6423,Straight Talk (1992),Comedy +6424,Oscar (1991),Comedy|Crime|Mystery|Romance +6425,"6th Man, The (Sixth Man, The) (1997)",Comedy +6426,"Far Country, The (1954)",Western +6427,"Railway Children, The (1970)",Children|Drama +6428,Two Mules for Sister Sara (1970),Comedy|War|Western +6429,Winchester '73 (1950),Western +6430,Ziggy Stardust and the Spiders from Mars (1973),Documentary|Musical +6431,Battle Cry (1955),Drama|War +6432,"Courtship of Eddie's Father, The (1963)",Comedy +6433,"Man with the Movie Camera, The (Chelovek s kino-apparatom) (1929)",Documentary +6434,"Objective, Burma! (1945)",War +6435,Operation Pacific (1951),Drama|War +6436,This Boy's Life (1993),Drama +6437,13 Rue Madeleine (1947),Thriller|War +6438,633 Squadron (1964),Drama|War +6439,Attack! (1956),Drama|War +6440,Barton Fink (1991),Drama|Thriller +6441,Battle of Britain (1969),War +6442,Belle époque (1992),Comedy|Romance +6443,"Big Trail, The (1930)",Adventure|Romance|Western +6445,Cloak and Dagger (1946),Drama|Romance +6446,"Comancheros, The (1961)",Action|Adventure|Drama|Romance +6447,Duel at Diablo (1966),War +6448,"Flight of the Phoenix, The (1965)",Action|Adventure|Drama +6449,From the Terrace (1960),Drama +6450,"Heaven Knows, Mr. Allison (1957)",Drama|War +6451,"Hot Rock, The (1972)",Comedy|Crime +6452,"Long, Hot Summer, The (1958)",Drama +6453,Man of Aran (1934),Documentary +6454,Music Box (1989),Drama +6455,North to Alaska (1960),Comedy|Western +6456,This Man Must Die (Que la bête meure) (1969),Crime|Drama|Thriller +6457,Sink the Bismark! (1960),Action|Drama|War +6458,"Blue Max, The (1966)",Adventure|Drama|War +6459,"Desert Fox, The (1951)",Drama|War +6460,"Trial, The (Procès, Le) (1962)",Drama +6461,"Unforgiven, The (1960)",Drama|Western +6462,"Undefeated, The (1969)",Western +6463,Divine Trash (1998),Documentary +6464,Good Burger (1997),Children|Comedy +6465,Jubilee (1977),Drama +6466,Mississippi Masala (1991),Drama|Romance +6467,Quai des Orfèvres (Jenny Lamour) (1947),Crime|Drama +6468,"Stranger Among Us, A (1992)",Crime|Drama|Romance +6469,Cahill U.S. Marshal (Cahill: United States Marshal) (Wednesday Morning) (1973),Western +6470,Chisum (1970),Western +6471,Defense of the Realm (1986),Thriller +6472,Eat a Bowl of Tea (1989),Romance +6473,Half Moon Street (1986),Drama|Thriller +6474,"Truce, The (a.k.a. La Tregua) (1996)",Drama +6475,Opportunity Knocks (1990),Comedy +6476,Shattered (1991),Mystery|Thriller +6477,"Song of Bernadette, The (1943)",Drama +6478,"Life and Times of Judge Roy Bean, The (1972)",Comedy|Western +6479,"Spirit of '76, The (1990)",Comedy|Sci-Fi +6480,Thoroughly Modern Millie (1967),Comedy|Musical +6481,Where the Heart Is (1990),Comedy|Drama +6482,Dumb and Dumberer: When Harry Met Lloyd (2003),Comedy +6483,From Justin to Kelly (2003),Musical|Romance +6484,Hollywood Homicide (2003),Action|Crime|Drama +6485,Rugrats Go Wild! (2003),Adventure|Animation|Children|Comedy +6486,"Hard Word, The (2002)",Comedy|Crime|Drama|Thriller +6487,"Heart of Me, The (2002)",Drama|Romance +6488,Jet Lag (Décalage horaire) (2002),Comedy|Romance +6489,"Loco Love (Mi Casa, Su Casa) (2002)",Comedy +6490,Manito (2002),Drama +6491,No Turning Back (2001),Adventure|Drama|Thriller +6492,Tycoon (Oligarkh) (2002),Crime|Drama +6493,Alex and Emma (2003),Comedy|Drama|Romance +6494,On_Line (a.k.a. On Line) (2002),Drama +6495,Experiment in Terror (1962),Crime|Thriller +6496,Ecstasy (Éxtasis) (1996),Drama +6497,Is Paris Burning? (Paris brûle-t-il?) (1966),Drama|War +6498,Murphy's War (1971),War +6499,Orphans of the Storm (1921),Drama +6500,"Satanic Rites of Dracula, The (1974)",Horror +6501,Strange Planet (1999),Comedy|Romance +6502,28 Days Later (2002),Action|Horror|Sci-Fi +6503,Charlie's Angels: Full Throttle (2003),Action|Adventure|Comedy|Crime|Thriller +6504,Gasoline (Benzina) (2001),Crime +6505,Ed and His Dead Mother (1993),Comedy|Horror +6506,Fulltime Killer (Chuen jik sat sau) (2001),Action|Thriller +6507,Just a Little Harmless Sex (1999),Comedy|Romance +6508,"Bank, The (2001)",Thriller +6509,Ali: Fear Eats the Soul (Angst essen Seele auf) (1974),Drama|Romance +6510,"Bodies, Rest & Motion (1993)",Drama|Romance +6511,Jesus (1979),Drama +6512,"Long Ships, The (1963)",Adventure +6513,Made for Each Other (1939),Comedy|Drama|Romance +6514,Ring of Terror (1962),Horror +6515,You Only Live Once (1937),Crime|Film-Noir +6516,Anastasia (1956),Drama +6517,"Babe, The (1992)",Drama +6518,Flight of the Intruder (1991),Action|War +6519,Fun with Dick and Jane (1977),Comedy +6520,Knights of the Round Table (1953),Adventure|Drama +6521,"Main Event, The (1979)",Comedy +6522,Man's Favorite Sport? (1964),Comedy +6523,Mr. Baseball (1992),Comedy|Romance +6524,Never on Sunday (Pote tin Kyriaki) (1960),Comedy|Drama +6525,Nuts (1987),Drama +6526,Rhapsody in August (Hachi-gatsu no kyôshikyoku) (1991),Drama +6527,Scaramouche (1952),Adventure|Romance +6528,Start the Revolution Without Me (1970),Comedy +6529,Strange Bedfellows (1965),Comedy +6530,"Tenant, The (Locataire, Le) (1976)",Drama|Horror|Mystery|Thriller +6531,"Hour of the Pig, The (1993)",Crime|Drama|Mystery +6532,Up the Sandbox (1972),Comedy +6533,"What's Up, Doc? (1972)",Comedy +6534,Hulk (2003),Action|Adventure|Sci-Fi +6535,"Legally Blonde 2: Red, White & Blonde (2003)",Comedy +6536,Sinbad: Legend of the Seven Seas (2003),Adventure|Animation|Children|Fantasy +6537,Terminator 3: Rise of the Machines (2003),Action|Adventure|Sci-Fi +6538,Swimming Pool (2003),Drama|Mystery|Thriller +6539,Pirates of the Caribbean: The Curse of the Black Pearl (2003),Action|Adventure|Comedy|Fantasy +6540,Madame Satã (2002),Drama +6541,"League of Extraordinary Gentlemen, The (a.k.a. LXG) (2003)",Action|Fantasy|Sci-Fi +6542,"Cuckoo, The (Kukushka) (2002)",Comedy|Drama|War +6543,"Holy Land, The (2001)",Drama +6544,"Housekeeper, The (femme de ménage, Une) (2002)",Comedy|Drama|Romance +6545,I Capture the Castle (2003),Drama|Romance +6546,Km. 0 - Kilometer Zero (Kilómetro cero) (2000),Comedy|Drama +6547,Northfork (2003),Drama|Fantasy +6548,Bad Boys II (2003),Action|Comedy|Crime|Thriller +6549,How to Deal (2003),Comedy|Drama|Romance +6550,Johnny English (2003),Action|Comedy|Thriller +6551,"Anarchist Cookbook, The (2002)",Comedy|Romance +6552,Dirty Pretty Things (2002),Crime|Drama|Thriller +6553,"Embalmer, The (Imbalsamatore, L') (2002)",Drama +6554,Garage Days (2002),Comedy|Musical +6555,On the Run (2002),Crime|Drama|Thriller +6556,"Sea Is Watching, The (Umi wa miteita) (2002)",Romance +6557,Born to Be Wild (1995),Adventure|Children|Comedy|Drama +6558,Curly Sue (1991),Comedy|Drama +6559,Little Giants (1994),Children|Comedy +6560,Loose Cannons (1990),Action|Comedy +6561,"Mouse That Roared, The (1959)",Comedy|War +6562,Spencer's Mountain (1963),Comedy|Drama +6563,Masked & Anonymous (2003),Comedy|Drama +6564,Lara Croft Tomb Raider: The Cradle of Life (2003),Action|Adventure|Comedy|Romance|Thriller +6565,Seabiscuit (2003),Drama +6566,Spy Kids 3-D: Game Over (2003),Action|Adventure|Children +6567,Buffalo Soldiers (2001),Comedy|Crime|Drama|War +6568,Camp (2003),Comedy|Musical +6569,Hotel (2001),Comedy +6570,"Lucía, Lucía (Hija del caníbal, La) (2003)",Comedy|Drama +6571,"Mondays in the Sun (Lunes al sol, Los) (2002)",Drama +6572,Scorched (2003),Comedy|Crime +6573,Avanti! (1972),Comedy|Drama +6574,Eve of Destruction (1991),Action|Sci-Fi|Thriller +6575,Gator (1976),Action|Drama +6576,Juggernaut (1974),Action|Thriller +6577,Kickboxer 2: The Road Back (1991),Action|Drama +6578,"Kiss Me, Stupid (1964)",Comedy +6579,"One, Two, Three (1961)",Comedy +6580,Possible Loves (Amores Possíveis) (2000),Comedy|Romance +6581,"Private Life of Sherlock Holmes, The (1970)",Comedy|Drama|Mystery +6582,Remo Williams: The Adventure Begins (1985),Action|Comedy|Crime|Thriller +6583,"Blood of Heroes, The (Salute of the Jugger, The) (1989)",Action|Sci-Fi +6584,"What's Up, Tiger Lily? (1966)",Adventure|Comedy|Crime|Thriller +6585,White Lightning (1973),Action|Crime|Drama +6586,American Wedding (American Pie 3) (2003),Comedy +6587,Gigli (2003),Comedy|Crime|Romance +6588,And Now... Ladies and Gentlemen... (2002),Romance|Thriller +6589,Boys Life 4: Four Play (2003),Comedy|Drama +6590,I'll Be There (2003),Comedy|Musical|Romance +6591,"Magdalene Sisters, The (2002)",Drama +6592,"Secret Lives of Dentists, The (2002)",Drama +6593,Freaky Friday (2003),Children|Comedy|Fantasy +6594,Seaside (Bord de Mer) (2002),Drama +6595,S.W.A.T. (2003),Action|Thriller +6596,"Divorce, Le (2003)",Comedy|Drama|Romance +6597,"Princess Blade, The (Shura Yukihime) (2001)",Action|Sci-Fi +6598,Step Into Liquid (2002),Documentary +6599,Accattone (1961),Drama +6600,...And God Spoke (1993),Comedy +6601,Big Trouble (1986),Comedy +6602,Brain Damage (1988),Comedy|Horror +6603,"Double Life, A (1947)",Crime|Drama|Film-Noir +6604,Hawks and Sparrows (Uccellacci e Uccellini) (1966),Comedy +6605,"Man in the Glass Booth, The (1975)",Drama +6606,Purpose (2002),Drama +6607,"Red Pony, The (1949)",Drama +6608,Sex & the Other Man (1996),Comedy|Drama +6609,"Gospel According to St. Matthew, The (Vangelo secondo Matteo, Il) (1964)",Drama +6610,"Honeymoon Killers, The (1970)",Crime|Thriller +6611,Umberto D. (1952),Drama +6612,Brother's Keeper (1992),Documentary +6613,"Day of the Dolphin, The (1973)",Drama +6614,I Love You to Death (1990),Comedy|Crime +6615,Freddy vs. Jason (2003),Action|Horror|Thriller +6616,Grind (2003),Action|Comedy +6617,Open Range (2003),Western +6618,Shaolin Soccer (Siu lam juk kau) (2001),Action|Comedy +6619,Uptown Girls (2003),Comedy +6620,American Splendor (2003),Comedy|Drama +6621,"Backyard, The (2002)",Documentary +6622,Carnages (a.k.a. Carnage) (2002),Drama +6623,Passionada (2002),Comedy|Romance +6624,Agent Cody Banks (2003),Action|Adventure|Children|Fantasy +6625,Camp Nowhere (1994),Adventure|Children|Comedy +6626,"Cemetery Club, The (1993)",Comedy|Drama|Romance +6627,Changing Habits (1997),Comedy|Drama +6628,Hot Dog... The Movie (1984),Comedy +6629,House of Wax (1953),Crime|Horror|Mystery|Thriller +6630,"Inn of the Sixth Happiness, The (1958)",Adventure|Drama +6631,Man's Best Friend (1993),Horror|Sci-Fi|Thriller +6632,Of Unknown Origin (1983),Horror +6633,Prince of Jutland (a.k.a. Royal Deceit) (1994),Drama +6634,Rowing with the Wind (Remando al viento) (1988),Drama|Romance +6635,"Rachel Papers, The (1989)",Drama|Romance +6636,"Sure Thing, The (1985)",Comedy|Romance +6637,Thrashin' (1986),Action|Drama +6638,Valley Girl (1983),Comedy|Romance +6639,Wait Until Dark (1967),Drama|Thriller +6640,Where the Rivers Flow North (1993),Drama +6641,Code Unknown (Code inconnu: Récit incomplet de divers voyages) (2000),Drama +6642,Showdown in Little Tokyo (1991),Action|Crime +6643,Tokyo Story (Tôkyô monogatari) (1953),Drama +6644,"Green Ray, The (Rayon vert, Le) (1986)",Drama|Romance +6645,THX 1138 (1971),Action|Adventure|Drama|Sci-Fi +6646,Valley of the Dolls (1967),Drama +6647,"Business of Fancydancing, The (2002)",Drama +6648,Chunhyang (2000),Drama|Musical|Romance +6649,Tunes of Glory (1960),Drama +6650,Kind Hearts and Coronets (1949),Comedy|Drama +6651,Ash Wednesday (2002),Crime|Drama +6652,Joe Kidd (1972),Western +6653,"Keep, The (1983)",Horror|Thriller +6654,Atragon (Kaitei Gunkan) (1963),Adventure|Sci-Fi +6655,"Mysterians, The (Chikyu Boeigun) (1957)",Sci-Fi +6656,Attack of the Puppet People (1958),Horror|Sci-Fi +6657,"Beast from 20,000 Fathoms, The (1953)",Sci-Fi +6658,10 (1979),Comedy|Romance +6659,Tremors (1990),Comedy|Horror|Sci-Fi +6660,"Red Shoes, The (1948)",Drama|Fantasy|Musical|Romance +6661,Me & Isaac Newton (1999),Documentary +6662,"Pink Panther, The (1963)",Comedy|Crime +6663,"Pink Panther Strikes Again, The (1976)",Comedy|Crime +6664,Commando (1985),Action|Adventure +6665,Dracula (1979),Horror|Romance +6666,"Discreet Charm of the Bourgeoisie, The (Charme discret de la bourgeoisie, Le) (1972)",Comedy|Drama|Fantasy +6667,Waco: The Rules of Engagement (1997),Documentary +6668,"Road Home, The (Wo de fu qin mu qin) (1999)",Drama|Romance +6669,Ikiru (1952),Drama +6670,Comic Book Villains (2002),Comedy +6671,"Angel at My Table, An (1990)",Drama +6672,War Photographer (2001),Documentary|War +6673,"Ay, Carmela! (¡Ay, Carmela!) (1990)",Drama|War +6674,War and Peace (Jang Aur Aman) (2001),Documentary|War +6675,Far (2001),Drama +6676,Incident at Oglala (1992),Documentary +6677,Predictions of Fire (Prerokbe Ognja) (1996),Documentary +6678,"Handmaid's Tale, The (1990)",Drama|Sci-Fi +6679,Revolution OS (2001),Documentary +6680,Live Nude Girls Unite! (2000),Documentary +6681,All the Little Animals (1998),Drama|Thriller +6682,Earth (1998),Drama|War +6683,Fire (1996),Drama +6684,Death in Venice (Morte a Venezia) (1971),Drama|Romance +6685,Marci X (2003),Comedy|Musical +6686,"Medallion, The (2003)",Action|Comedy|Crime|Fantasy +6687,My Boss's Daughter (2003),Comedy|Romance +6688,Autumn Spring (Babí léto) (2001),Comedy|Drama +6689,"Battle of Shaker Heights, The (2003)",Comedy|Drama|Romance +6690,Don't Tempt Me (Sin noticias de Dios) (2001),Comedy|Fantasy|Mystery +6691,Dust (2001),Drama|Western +6692,Stoked: The Rise and Fall of Gator (2002),Documentary +6693,Venus Boyz (2001),Documentary +6694,Suddenly (Tan de Repente) (2002),Comedy|Drama +6695,Jeepers Creepers 2 (2003),Horror|Thriller +6696,Bollywood/Hollywood (2002),Comedy|Drama|Musical|Romance +6697,Civil Brand (2002),Drama +6698,Nola (2002),Drama +6699,Once Upon a Time in the Midlands (2002),Drama +6700,"Other Side of the Bed, The (Otro lado de la cama, El) (2002)",Comedy|Drama|Musical|Romance +6701,Zero Day (2002),Drama +6702,Dickie Roberts: Former Child Star (2003),Comedy +6703,"Order, The (2003)",Horror|Mystery|Thriller +6704,Home Room (2002),Drama +6705,Party Monster (2003),Comedy|Crime|Drama|Thriller +6706,Taking Sides (2001),Drama +6707,Cabin Fever (2002),Horror|Thriller +6708,Matchstick Men (2003),Comedy|Crime|Drama +6709,Once Upon a Time in Mexico (2003),Action|Adventure|Crime|Thriller +6710,Dummy (2002),Comedy|Drama|Romance +6711,Lost in Translation (2003),Comedy|Drama|Romance +6712,Luster (2002),Comedy|Drama|Romance +6713,Millennium Actress (Sennen joyû) (2001),Animation|Drama|Romance +6714,So Close (Chik Yeung Tin Sai) (2002),Action|Comedy|Romance|Thriller +6715,Children of the Night (1991),Horror +6716,Daisy Miller (1974),Drama +6717,Enlightenment Guaranteed (Erleuchtung Garantiert) (2000),Comedy|Drama +6718,Gotcha! (1985),Comedy +6719,Hard to Hold (1984),Drama|Romance +6720,Kuffs (1992),Action|Comedy|Crime +6721,Once Upon a Time in China (Wong Fei Hung) (1991),Action|Adventure|Drama +6722,Once Upon a Time in China II (Wong Fei-hung Ji Yi: Naam yi dong ji keung) (1992),Action|Romance +6723,Once Upon a Time in China III (Wong Fei-hung tsi sam: Siwong tsangba) (1993),Action +6724,Paper Moon (1973),Comedy|Crime|Drama +6725,Sgt. Pepper's Lonely Hearts Club Band (1978),Adventure|Musical +6726,"Song for Martin, A (Sång för Martin, En) (2001)",Drama +6727,Targets (1968),Crime|Thriller +6728,"Ugly American, The (1963)",Drama +6729,"Bostonians, The (1984)",Drama|Romance +6730,Convoy (1978),Action|Comedy|Drama +6731,Day of the Dead (1985),Horror|Sci-Fi|Thriller +6732,"Hello, Dolly! (1969)",Comedy|Musical|Romance +6733,I'm Going Home (Je rentre à la maison) (2001),Comedy|Drama +6734,Memoirs of an Invisible Man (1992),Comedy|Romance|Sci-Fi|Thriller +6735,"Rose, The (1979)",Drama +6736,See No Evil (1971),Crime|Drama|Horror|Thriller +6737,Super Sucker (2002),Comedy +6738,Indiscretion of an American Wife (a.k.a. Terminal Station) (Stazione Termini) (1953),Drama +6739,At War with the Army (1950),Comedy|Musical|Romance +6740,Bingo (1991),Adventure|Comedy +6741,God told Me To (1976),Crime|Horror|Mystery|Sci-Fi|Thriller +6742,"I, Madman (1989)",Horror +6743,Jungle Book (1942),Adventure|Fantasy +6744,Once Bitten (1985),Comedy|Horror +6745,"Shrimp on the Barbie, The (1990)",Comedy +6746,Squirm (1976),Horror|Romance +6747,"Adventures of Huckleberry Finn, The (1960)",Adventure|Children +6748,"Brood, The (1979)",Horror +6749,"Prince and the Pauper, The (1937)",Adventure|Drama +6750,Anything Else (2003),Comedy|Drama|Romance +6751,Cold Creek Manor (2003),Drama|Thriller +6752,"Fighting Temptations, The (2003)",Drama +6753,Secondhand Lions (2003),Children|Comedy|Drama +6754,Underworld (2003),Action|Fantasy|Horror +6755,Bubba Ho-tep (2002),Comedy|Horror +6756,Casa de los babys (2003),Drama +6757,Demonlover (2002),Crime|Drama|Mystery|Thriller +6758,Emerald Cowboy (2002),Documentary|Drama +6759,Close Your Eyes (Hypnotic) (Doctor Sleep) (2002),Crime|Thriller +6760,In This World (2002),Adventure|Drama +6761,Tibet: Cry of the Snow Lion (2002),Documentary +6762,Yossi & Jagger (2002),Drama|Romance +6763,Duplex (2003),Comedy|Crime +6764,"Rundown, The (2003)",Action|Adventure|Comedy +6765,Under the Tuscan Sun (2003),Comedy|Drama|Romance +6766,Camera Obscura (2000),Crime|Drama|Thriller +6767,Kart Racer (2003),Drama +6768,Luther (2003),Drama +6769,Mambo Italiano (2003),Comedy +6770,My Life Without Me (2003),Drama|Romance +6771,Dorm Daze (National Lampoon Presents Dorm Daze) (2003),Comedy +6772,To Be and to Have (Être et avoir) (2002),Documentary +6773,"Triplets of Belleville, The (Les triplettes de Belleville) (2003)",Animation|Comedy|Fantasy +6774,Videodrome (1983),Fantasy|Horror|Sci-Fi|Thriller +6775,Life and Debt (2001),Documentary +6776,Lagaan: Once Upon a Time in India (2001),Comedy|Drama|Musical|Romance +6777,Judgment at Nuremberg (1961),Drama +6778,Journey of Hope (Reise der Hoffnung) (1990),Drama +6779,"Same Time, Next Year (1978)",Comedy|Drama|Romance +6780,"Brief History of Time, A (1991)",Documentary +6781,"Jacob the Liar (Jakob, der Lügner) (1975)",Drama +6782,Leningrad Cowboys Go America (1989),Comedy|Musical +6783,"Rules of the Game, The (La règle du jeu) (1939)",Comedy|Drama +6784,"Song Remains the Same, The (1976)",Documentary|Musical +6785,Seven Brides for Seven Brothers (1954),Comedy|Musical|Romance|Western +6786,Kiss of the Spider Woman (1985),Drama +6787,All the President's Men (1976),Drama|Thriller +6788,Angie (1994),Comedy|Drama|Romance +6789,"Apartment, The (Appartement, L') (1996)",Drama|Mystery|Romance +6790,Avalon (2001),Drama|Fantasy|Sci-Fi +6791,Babette's Feast (Babettes gæstebud) (1987),Drama +6792,"Barber of Siberia, The (Sibirskij tsiryulnik) (1998)",Drama|Romance +6793,Beethoven (1992),Children|Comedy|Drama +6794,Beethoven's 2nd (1993),Children|Comedy +6795,Black Moon Rising (1986),Action|Crime|Sci-Fi|Thriller +6796,Boyz N the Hood (1991),Crime|Drama +6797,Bugsy (1991),Crime|Drama +6798,Bugsy Malone (1976),Children|Comedy|Crime|Musical +6799,By the Sword (1991),Drama +6800,Cobra (1986),Action|Crime +6801,"Common Wealth (Comunidad, La) (2000)",Comedy|Thriller +6802,Consenting Adults (1992),Thriller +6803,Phenomena (a.k.a. Creepers) (1985),Horror|Mystery|Thriller +6804,Crimewave (1985),Comedy|Crime +6805,Crying Freeman (1995),Action|Crime|Thriller +6806,Time and Tide (Seunlau Ngaklau) (2000),Action|Crime|Thriller +6807,Monty Python's The Meaning of Life (1983),Comedy +6808,Where Eagles Dare (1968),Action|Adventure|War +6809,Tightrope (1984),Thriller +6810,Sleeping with the Enemy (1991),Drama|Thriller +6811,PCU (1994),Comedy +6812,"Rookie, The (1990)",Action|Comedy|Thriller +6813,"Ghost and Mr. Chicken, The (1966)",Comedy|Romance +6814,City Heat (1984),Action|Comedy +6815,Into the Night (1985),Action|Comedy|Drama|Thriller +6816,Three O'Clock High (1987),Comedy +6817,"White Hunter, Black Heart (1990)",Adventure|Drama +6818,Come and See (Idi i smotri) (1985),Drama|War +6819,"Rage in Harlem, A (1991)",Crime +6820,Ginger Snaps (2000),Drama|Horror|Thriller +6821,More American Graffiti (1979),Comedy +6822,"Ballad of Little Jo, The (1993)",Drama|Western +6823,Under Suspicion (1992),Crime|Drama|Thriller +6824,Ruby (1992),Crime|Drama +6825,"Reluctant Astronaut, The (1967)",Comedy +6826,"Shakiest Gun in the West, The (1968)",Comedy|Western +6827,It's Pat (1994),Comedy +6828,"Sunday in the Country, A (Un dimanche à la campagne) (1984)",Drama +6829,"Gun in Betty Lou's Handbag, The (1992)",Comedy|Mystery +6830,Sudden Fear (1952),Film-Noir|Horror|Thriller +6831,Nobody's Baby (2001),Comedy +6832,Regarding Henry (1991),Drama +6833,"Debut, The (2000)",Comedy|Drama +6834,Wilder Napalm (1993),Comedy|Fantasy|Romance +6835,Alien Contamination (1980),Action|Horror|Sci-Fi +6836,"Amazing Transparent Man, The (1960)",Sci-Fi +6837,Love Affair (1939),Comedy|Drama|Romance +6838,Once in the Life (2000),Crime|Drama +6839,All I Want (Try Seventeen) (2002),Comedy|Drama|Romance +6840,"Hospital, The (1971)",Comedy|Drama +6841,Article 99 (1992),Comedy|Drama +6842,Images (1972),Drama|Fantasy|Horror +6843,Eureka (1986),Drama +6844,Oleanna (1994),Drama +6845,Chattahoochee (1989),Drama +6846,Tough Guys Don't Dance (1987),Drama +6847,There Goes My Baby (1994),Comedy|Drama +6848,Kingdom of the Spiders (1977),Horror|Sci-Fi +6849,Scrooge (1970),Drama|Fantasy|Musical +6850,Leap of Faith (1992),Comedy|Drama +6851,"Gas, Food, Lodging (1992)",Drama|Romance +6852,In Cold Blood (1967),Crime|Drama +6853,Campus Man (1987),Comedy +6854,"Bedford Incident, The (1965)",Drama|Thriller|War +6855,"Murderous Maids (Blessures assassines, Les) (2000)",Drama +6856,Yankee Doodle Dandy (1942),Drama|Musical +6857,Ninja Scroll (Jûbei ninpûchô) (1995),Action|Adventure|Animation|Fantasy +6858,Knife in the Water (Nóz w wodzie) (1962),Drama +6859,"Devil and Daniel Webster, The (All That Money Can Buy) (1941)",Drama|Fantasy +6860,Mobsters (1991),Crime|Drama +6861,Charlotte Sometimes (2002),Drama|Romance +6862,Out of Time (2003),Crime|Drama|Thriller +6863,School of Rock (2003),Comedy|Musical +6864,"Concert for George, The (2003)",Documentary|Musical +6865,"Event, The (2003)",Drama +6866,Nine Dead Gay Guys (2003),Comedy|Crime +6867,"Station Agent, The (2003)",Comedy|Drama +6868,Wonderland (2003),Crime|Drama|Mystery|Thriller +6869,Bus 174 (Ônibus 174) (2002),Crime|Documentary +6870,Mystic River (2003),Crime|Drama|Mystery +6871,Good Boy! (2003),Children|Comedy|Sci-Fi +6872,"House of the Dead, The (2003)",Action|Horror +6873,Intolerable Cruelty (2003),Comedy|Romance +6874,Kill Bill: Vol. 1 (2003),Action|Crime|Thriller +6875,Dopamine (2003),Comedy|Drama|Romance +6876,"Flower of Evil, The (Fleur du mal, La) (2003)",Drama +6877,Girls Will Be Girls (2003),Comedy +6878,"Porn Theater (Chatte à deux têtes, La) (2002)",Drama +6879,Runaway Jury (2003),Drama|Thriller +6880,"Texas Chainsaw Massacre, The (2003)",Horror +6881,Pieces of April (2003),Comedy|Drama +6882,Returner (Ritaanaa) (2002),Action|Adventure|Sci-Fi +6883,Sylvia (2003),Drama|Romance +6884,Veronica Guerin (2003),Crime|Drama|Thriller +6885,In the Cut (2003),Crime|Drama|Mystery|Romance|Thriller +6886,Beyond Borders (2003),Drama|Romance|War +6887,Radio (2003),Drama +6888,Scary Movie 3 (2003),Comedy|Horror +6889,Brother Bear (2003),Adventure|Animation|Children +6890,Elephant (2003),Drama +6891,Gypsy 83 (2001),Drama +6892,"Singing Detective, The (2003)",Comedy|Drama|Musical|Mystery +6893,"Italian Job, The (1969)",Action|Comedy|Crime +6894,Impulse (1984),Mystery|Sci-Fi|Thriller +6895,Normal (2003),Drama +6896,Shoah (1985),Documentary|War +6897,Unconditional Love (2002),Comedy|Drama +6898,Sweet Sixteen (2002),Drama +6899,Alien from L.A. (1988),Sci-Fi +6900,Black Sunday (1977),Action|Drama|Thriller +6901,Men of Respect (1991),Crime|Drama|Thriller +6902,Interstate 60 (2002),Adventure|Comedy|Drama|Fantasy|Mystery|Sci-Fi|Thriller +6903,Lipstick (1976),Drama +6905,Storyville (1992),Drama|Thriller +6906,That Was Then... This Is Now (1985),Drama +6907,Holy Matrimony (1994),Comedy|Crime +6908,"Black Scorpion, The (1957)",Sci-Fi +6909,"Eye, The (Gin gwai) (Jian gui) (2002)",Thriller +6910,Kronos (a.k.a. Captain Kronos: Vampire Hunter) (1973),Horror +6911,"Jolson Story, The (1946)",Musical +6912,You'll Never Get Rich (1941),Comedy|Musical|Romance +6913,Frankenstein and the Monster from Hell (1974),Horror +6914,Preaching to the Perverted (1997),Comedy|Drama +6915,Chicago Joe and the Showgirl (1990),Drama +6916,"Magic Sword, The (1962)",Drama|Fantasy +6917,Promised Land (1987),Drama +6918,"Unvanquished, The (Aparajito) (1957)",Drama +6919,"Hired Hand, The (1971)",Western +6920,"Cercle Rouge, Le (Red Circle, The) (1970)",Crime|Thriller +6921,Man of Marble (Czlowiek z Marmuru) (1977),Drama +6923,Sherlock Holmes and the Voice of Terror (1942),Crime|Mystery|War +6924,Sherlock Holmes Faces Death (1943),Crime|Mystery +6925,Sherlock Holmes in Washington (1943),Crime|Mystery +6926,"Solid Gold Cadillac, The (1956)",Comedy +6927,"Human Stain, The (2003)",Drama|Romance|Thriller +6928,"Die, Mommie, Die (2003)",Comedy +6929,Dirt (2001),Comedy|Crime +6930,Girlhood (2003),Documentary +6931,Mail Order Bride (2003),Comedy +6932,Shattered Glass (2003),Crime|Drama +6933,Suspended Animation (2001),Thriller +6934,"Matrix Revolutions, The (2003)",Action|Adventure|Sci-Fi|Thriller|IMAX +6935,"Revolution Will Not Be Televised, The (a.k.a. Chavez: Inside the Coup) (2003)",Documentary +6936,Elf (2003),Children|Comedy|Fantasy +6937,Anything But Love (a.k.a. Standard Time) (2002),Musical|Romance +6938,Billabong Odyssey (2003),Documentary +6939,Gloomy Sunday (Ein Lied von Liebe und Tod) (1999),Drama|Romance +6940,In My Skin (Dans ma Peau) (2002),Drama +6941,Just an American Boy (2003),Documentary +6942,Love Actually (2003),Comedy|Drama|Romance +6943,Love Forbidden (Défense d'aimer) (2002),Drama +6944,Father of the Bride (1991),Comedy +6945,My Architect: A Son's Journey (2003),Documentary +6946,Looney Tunes: Back in Action (2003),Action|Animation|Children|Fantasy +6947,Master and Commander: The Far Side of the World (2003),Adventure|Drama|War +6948,Tupac: Resurrection (2003),Documentary +6949,"Big Empty, The (2003)",Comedy|Mystery|Sci-Fi +6950,"Missing, The (2003)",Adventure|Thriller|Western +6951,"Cat in the Hat, The (2003)",Children|Comedy +6952,Gothika (2003),Horror|Thriller +6953,21 Grams (2003),Crime|Drama|Mystery|Romance|Thriller +6954,"Barbarian Invasions, The (Les invasions barbares) (2003)",Comedy|Crime|Drama|Mystery|Romance +6955,Blindness (2003),Drama|Thriller +6956,Blue Gate Crossing (Lan se da men) (2002),Drama|Romance +6957,Bad Santa (2003),Comedy|Crime +6958,"Haunted Mansion, The (2003)",Children|Comedy|Fantasy|Horror +6959,Timeline (2003),Action|Adventure|Sci-Fi +6960,Marquis (1989),Drama +6961,Damage (Fatale) (1992),Drama +6962,OT: Our Town (2002),Documentary +6963,Devil's Playground (2002),Documentary +6964,Dance with a Stranger (1985),Crime|Drama|Thriller +6965,Journeys with George (2002),Documentary +6966,Darkman (1990),Action|Crime|Fantasy|Sci-Fi|Thriller +6967,Dead of Night (1945),Horror|Mystery +6968,Death Machine (1995),Action|Sci-Fi +6969,"Dernier Combat, Le (Last Battle, The) (1983)",Drama|Sci-Fi +6970,Desk Set (1957),Comedy|Romance +6971,Europa (Zentropa) (1991),Drama|Thriller +6972,"Watermelon Woman, The (1996)",Documentary|Drama +6973,Final Analysis (1992),Drama|Romance|Thriller +6974,"Freshman, The (1990)",Comedy|Crime +6975,Funny Games (1997),Drama|Horror|Thriller +6976,Tales from the Crypt (1972),Horror +6977,New Jack City (1991),Action|Crime|Drama +6978,Slacker (1991),Comedy|Drama +6979,WarGames (1983),Drama|Sci-Fi|Thriller +6980,Mr. Hobbs Takes a Vacation (1962),Comedy +6981,"Ordet (Word, The) (1955)",Drama +6982,Forbidden Games (Jeux interdits) (1952),Drama|War +6983,Jane Eyre (1944),Drama|Romance +6984,"Tale of Two Cities, A (1935)",Drama +6985,"Passion of Joan of Arc, The (Passion de Jeanne d'Arc, La) (1928)",Drama +6986,Ben-Hur: A Tale of the Christ (1925),Adventure|Drama|Romance +6987,"Cabinet of Dr. Caligari, The (Cabinet des Dr. Caligari., Das) (1920)",Crime|Fantasy|Horror +6988,Broken Blossoms or The Yellow Man and the Girl (1919),Drama|Romance +6989,Gorky Park (1983),Crime|Drama|Thriller +6990,The Great Train Robbery (1978),Action|Adventure|Comedy|Crime|Drama +6991,"Greystoke: The Legend of Tarzan, Lord of the Apes (1984)",Adventure|Drama|Romance +6992,Guarding Tess (1994),Comedy|Drama +6993,Hannah and Her Sisters (1986),Comedy|Drama|Romance +6994,"Hard Way, The (1991)",Action|Comedy +6995,Hercules in New York (1970),Action|Comedy|Fantasy +6996,Highlander II: The Quickening (1991),Action|Sci-Fi +6997,Hoffa (1992),Crime|Drama +6998,House of Cards (1993),Drama +6999,Housesitter (1992),Comedy|Romance +7000,Hudson Hawk (1991),Action|Adventure|Comedy +7001,Invasion of the Body Snatchers (1978),Horror|Mystery|Sci-Fi|Thriller +7002,Mindwalk (1990),Drama +7003,Kafka (1991),Comedy|Drama|Mystery|Sci-Fi|Thriller +7004,Kindergarten Cop (1990),Action|Comedy|Crime|Thriller +7005,King Ralph (1991),Comedy +7006,Knight Moves (1992),Mystery|Thriller +7007,"Last Boy Scout, The (1991)",Action|Comedy|Crime|Drama|Thriller +7008,Last Tango in Paris (Ultimo tango a Parigi) (1972),Drama|Romance +7009,Lorenzo's Oil (1992),Drama +7010,"Lover, The (Amant, L') (1992)",Drama|Romance +7011,"Bullfighter, The (Matador) (1986)",Comedy|Crime|Drama +7012,Mr. Destiny (1990),Comedy|Fantasy +7013,"Night of the Hunter, The (1955)",Drama|Film-Noir|Thriller +7014,Nowhere to Run (1993),Action|Romance +7015,Only the Lonely (1991),Comedy|Romance +7016,Over the Top (1987),Action|Drama +7017,Passenger 57 (1992),Action|Thriller +7018,Presumed Innocent (1990),Crime|Drama|Thriller +7019,Project X (1987),Comedy|Drama +7020,Proof (1991),Comedy|Drama|Romance +7021,Pure Luck (1991),Comedy|Crime +7022,Battle Royale (Batoru rowaiaru) (2000),Action|Drama|Horror|Thriller +7023,"Wedding Banquet, The (Xi yan) (1993)",Comedy|Drama|Romance +7024,"Salo, or The 120 Days of Sodom (Salò o le 120 giornate di Sodoma) (1976)",Drama +7025,"Midnight Clear, A (1992)",Drama|War +7026,Summer School (1987),Comedy +7027,Silverado (1985),Action|Western +7028,Quick Change (1990),Comedy|Crime +7029,Rabid (1977),Horror|Thriller +7030,Radio Flyer (1992),Drama +7031,"Real McCoy, The (1993)",Action|Crime|Drama|Thriller +7032,Revenge (1990),Drama|Romance|Thriller +7033,"Secret of My Succe$s, The (a.k.a. The Secret of My Success) (1987)",Comedy|Romance +7034,Show Me Love (Fucking Åmål) (1998),Drama|Romance +7035,Streets of Fire (1984),Action|Romance +7036,Teen Wolf (1985),Comedy|Fantasy +7037,High Heels (Tacones lejanos) (1991),Comedy|Drama +7038,Things You Can Tell Just by Looking at Her (2000),Drama|Romance +7039,Thunderheart (1992),Crime|Mystery|Thriller +7040,To Live and Die in L.A. (1985),Action|Crime|Drama|Thriller +7041,Trapped in Paradise (1994),Comedy|Crime +7042,Betty Blue (37°2 le matin) (1986),Drama|Romance +7043,Vivre sa vie: Film en douze tableaux (My Life to Live) (1962),Drama +7044,Wild at Heart (1990),Crime|Drama|Mystery|Romance|Thriller +7045,"Witches, The (1990)",Children|Fantasy +7046,"Witches of Eastwick, The (1987)",Comedy|Fantasy|Horror|Thriller +7047,Year of the Dragon (1985),Action|Crime|Drama +7048,Nothing to Lose (1997),Action|Adventure|Comedy|Crime +7049,Flying Down to Rio (1933),Comedy|Musical|Romance +7050,Follow the Fleet (1936),Comedy|Musical|Romance +7051,"What's New, Pussycat (1965)",Comedy +7052,Mary of Scotland (1936),Drama +7053,Roberta (1935),Comedy|Musical|Romance +7054,Little Women (1949),Drama +7055,Swing Time (1936),Comedy|Musical|Romance +7056,"Public Enemy, The (1931)",Action|Crime|Drama +7057,"Midsummer Night's Dream, A (1935)",Comedy|Fantasy|Romance +7058,Life with Father (1947),Comedy +7059,National Velvet (1944),Children|Drama +7060,Jesus Christ Superstar (1973),Drama|Musical +7061,Dark Victory (1939),Drama|Romance +7062,Birdman of Alcatraz (1962),Drama +7063,"Aguirre: The Wrath of God (Aguirre, der Zorn Gottes) (1972)",Adventure|Drama +7064,Beauty and the Beast (La belle et la bête) (1946),Drama|Fantasy +7065,"Birth of a Nation, The (1915)",Drama|War +7066,"Blue Kite, The (Lan feng zheng) (1993)",Drama +7067,Juliet of the Spirits (Giulietta degli spiriti) (1965),Comedy|Drama|Fantasy|Romance +7068,Last Year at Marienbad (L'Année dernière à Marienbad) (1961),Drama|Mystery|Romance +7069,"Macbeth (a.k.a. Tragedy of Macbeth, The) (1971)",Drama +7070,Red River (1948),Action|Adventure|Western +7071,"Woman Under the Influence, A (1974)",Drama +7072,Stagecoach (1939),Action|Drama|Romance|Western +7073,"Shot in the Dark, A (1964)",Comedy|Crime|Mystery +7074,"Navigator, The (1924)",Comedy +7075,"Court Jester, The (1956)",Adventure|Comedy|Musical +7076,Bullitt (1968),Action|Crime|Drama|Thriller +7077,Way Down East (1920),Drama|Romance +7078,Jezebel (1938),Drama +7079,"Hunchback of Notre Dame, The (1939)",Drama +7080,42nd Street (1933),Drama|Musical|Romance +7081,I'm No Angel (1933),Comedy +7082,That Touch of Mink (1962),Comedy|Romance +7083,Sweet Dreams (1985),Drama +7084,"Play It Again, Sam (1972)",Comedy|Romance +7085,Send Me No Flowers (1964),Comedy|Romance +7086,Pygmalion (1938),Comedy|Drama +7087,"Passage to India, A (1984)",Adventure|Drama +7088,Black Orpheus (Orfeu Negro) (1959),Drama|Romance +7089,Amarcord (1973),Comedy|Drama +7090,Hero (Ying xiong) (2002),Action|Adventure|Drama +7091,Horse Feathers (1932),Comedy +7092,Anna Karenina (1935),Drama|Romance +7093,"Front Page, The (1974)",Comedy +7094,Attraction (2000),Drama|Romance|Thriller +7095,Looking for Mr. Goodbar (1977),Drama +7096,Rivers and Tides (2001),Documentary +7097,"Girl From Paris, A (hirondelle a fait le printemps, Une) (2001)",Comedy|Drama +7098,Seven Days to Noon (1950),Drama|Thriller +7099,Nausicaä of the Valley of the Wind (Kaze no tani no Naushika) (1984),Adventure|Animation|Drama|Fantasy|Sci-Fi +7100,CrissCross (1992),Drama +7101,Doc Hollywood (1991),Comedy|Romance +7102,Dragnet (1987),Comedy|Crime|Drama +7103,Madhouse (1990),Comedy +7104,1941 (1979),Comedy|War +7105,"Shot at Glory, A (2000)",Drama +7106,Black and White in Color (Noirs et blancs en couleur) (1976),Drama|War +7107,Foul Play (1978),Comedy|Thriller +7108,Crime Story (Zhong an zu) (1993),Action|Crime|Drama +7109,Beyond the Clouds (Al di là delle nuvole) (1996),Drama|Romance +7110,Blind Beast (Môjuu) (1969),Drama|Thriller +7111,Ryan's Daughter (1970),Drama|Romance +7112,Accident (1967),Crime|Drama +7113,Cabeza de Vaca (1991),Action|Adventure +7114,"Collector, The (1965)",Drama|Horror|Thriller +7115,Deep Red (Profondo rosso) (1975),Horror|Mystery|Thriller +7116,Diabolique (Les diaboliques) (1955),Horror|Mystery|Thriller +7117,Leprechaun (1993),Comedy|Horror +7118,Wings of Honneamise (Ôritsu uchûgun Oneamisu no tsubasa) (1987),Animation|Drama|Sci-Fi|War +7119,Crazy People (1990),Comedy +7120,DarkWolf (2003),Horror +7121,Adam's Rib (1949),Comedy|Romance +7122,King of Hearts (1966),Comedy|Drama|War +7123,Naked Lunch (1991),Drama|Fantasy|Mystery|Sci-Fi +7124,Grass (1999),Documentary +7125,Spring Forward (1999),Drama +7126,"Killing of a Chinese Bookie, The (1976)",Comedy|Crime|Drama|Film-Noir|Musical +7127,Run (1991),Action|Drama|Thriller +7128,Things to Come (1936),Sci-Fi +7129,Queen of Hearts (1989),Comedy|Drama|Romance +7130,Darling (1965),Drama +7131,"Summer Place, A (1959)",Drama +7132,"Night at the Opera, A (1935)",Comedy|Musical|Romance +7133,Metalstorm: The Destruction of Jared-Syn (1983),Action|Adventure|Sci-Fi +7134,"Element of Crime, The (Forbrydelsens Element) (1984)",Drama|Thriller +7135,Shoot the Piano Player (Tirez sur le pianiste) (1960),Crime|Drama|Romance|Thriller +7136,Stolen Kisses (Baisers volés) (1968),Comedy|Drama|Romance +7137,"Cooler, The (2003)",Comedy|Drama|Romance +7138,"Bonaerense, El (2002)",Action|Drama +7139,In America (2002),Drama|Romance +7140,"Legend of Leigh Bowery, The (2002)",Documentary +7141,My Flesh and Blood (2003),Documentary +7142,Honey (2003),Drama|Romance +7143,"Last Samurai, The (2003)",Action|Adventure|Drama|War +7144,Forget Baghdad: Jews and Arabs - The Iraqi Connection (2002),Documentary +7145,Prisoner of Paradise (2002),Documentary +7146,What Alice Found (2003),Crime|Drama +7147,Big Fish (2003),Drama|Fantasy|Romance +7148,Love Don't Cost a Thing (2003),Drama|Romance +7149,Something's Gotta Give (2003),Comedy|Drama|Romance +7150,Stuck on You (2003),Comedy +7151,Girl with a Pearl Earring (2003),Drama|Romance +7152,"Statement, The (2003)",Drama|Thriller +7153,"Lord of the Rings: The Return of the King, The (2003)",Action|Adventure|Drama|Fantasy +7154,Mona Lisa Smile (2003),Drama|Romance +7155,Calendar Girls (2003),Comedy +7156,"Fog of War: Eleven Lessons from the Life of Robert S. McNamara, The (2003)",Documentary|War +7157,"Hebrew Hammer, The (2003)",Comedy +7158,House of Sand and Fog (2003),Drama +7159,Two Men Went to War (2003),Comedy|War +7160,Monster (2003),Crime|Drama +7161,Cheaper by the Dozen (2003),Children|Comedy +7162,Cold Mountain (2003),Drama|Romance|War +7163,Paycheck (2003),Action|Sci-Fi|Thriller +7164,Peter Pan (2003),Action|Adventure|Children|Fantasy +7165,"Company, The (2003)",Drama|Musical +7166,"Young Black Stallion, The (2003)",Adventure|Children|Drama +7167,Japanese Story (2003),Drama +7168,Secret Things (Choses secrètes) (2002),Drama +7169,Chasing Liberty (2004),Comedy|Romance +7170,My Baby's Daddy (2004),Comedy +7171,Aileen: Life and Death of a Serial Killer (2003),Documentary +7172,Distant (Uzak) (2002),Drama +7173,Along Came Polly (2004),Comedy|Romance +7174,Teacher's Pet (2004),Animation|Children +7175,Torque (2004),Action|Crime +7176,Crimson Gold (Talaye sorgh) (2003),Drama +7177,Osama (2003),Drama +7178,"Great Gatsby, The (1974)",Drama +7179,Wuthering Heights (1992),Drama|Romance +7180,Odds Against Tomorrow (1959),Crime|Drama|Thriller +7181,Ship of Fools (1965),Drama +7182,Lord Love a Duck (1966),Comedy +7183,There's a Girl in My Soup (1970),Comedy +7184,This Property is Condemned (1966),Drama|Romance +7185,Real Men (1987),Comedy|Sci-Fi +7186,Once Upon a Crime... (1992),Comedy|Mystery +7187,Beyond Therapy (1987),Comedy +7188,Buster (1988),Comedy|Crime +7189,"Car 54, Where Are You? (1994)",Comedy +7190,Jane Eyre (1970),Drama +7191,Blame It on the Bellboy (1992),Comedy +7192,Only the Strong (1993),Action +7193,"Adventures of Ford Fairlane, The (1990)",Action|Comedy +7194,Bonjour tristesse (1958),Drama +7195,"Enforcer, The (1951)",Crime|Drama|Film-Noir +7196,"Men, The (1950)",Drama +7197,Ransom (a.k.a. The Terrorists) (1975),Crime|Thriller +7198,The Pick-up Artist (1987),Comedy|Crime|Drama|Romance +7199,Melvin Goes to Dinner (2003),Comedy|Drama +7200,"Court-Martial of Billy Mitchell, The (1955)",Drama|War +7201,Crime Spree (2003),Comedy|Crime +7202,Beyond Re-Animator (2003),Horror +7203,Final Cut (1998),Drama +7204,Hells Angels on Wheels (1967),Drama +7205,"Wind and the Lion, The (1975)",Adventure +7206,Mon Oncle (My Uncle) (1958),Comedy +7207,Where the Boys Are (1960),Comedy +7208,Dr. Jekyll and Mr. Hyde (1941),Drama|Horror +7209,"M. Hulot’s Holiday (Mr. Hulot's Holiday) (Vacances de Monsieur Hulot, Les) (1953)",Comedy +7210,My Darling Clementine (1946),Western +7211,People Will Talk (1951),Comedy|Romance +7212,I Was a Male War Bride (1949),Comedy|Romance +7213,Divorce American Style (1967),Comedy +7214,Kiss Them for Me (1957),Comedy|Romance|War +7215,To Have and Have Not (1944),Adventure|Drama|Romance|Thriller|War +7216,High Sierra (1941),Crime|Drama|Film-Noir|Thriller +7217,Dark Passage (1947),Crime|Drama|Film-Noir|Romance|Thriller +7218,"Ox-Bow Incident, The (1943)",Drama|Western +7219,They Drive by Night (1940),Drama +7220,Micki + Maude (1984),Comedy +7221,Platinum Blonde (1931),Comedy|Romance +7222,Reefer Madness (a.k.a. Tell Your Children) (1938),Comedy|Drama +7223,D.O.A. (1950),Drama|Film-Noir|Mystery +7224,"Boy with Green Hair, The (1948)",Children|Drama +7225,Pumping Iron (1977),Documentary +7226,No Good Deed (a.k.a. The House on Turk Street) (2002),Crime|Drama|Thriller +7227,"Trouble with Angels, The (1966)",Comedy +7228,Cool World (1992),Animation|Comedy|Fantasy +7229,Money for Nothing (1993),Comedy|Crime +7230,"Silencers, The (1966)",Action|Comedy +7231,"Where Angels Go, Trouble Follows (1968)",Comedy +7232,Heat and Dust (1983),Drama +7233,My Letter to George (Mesmerized) (1986),Drama +7234,"Strada, La (1954)",Drama +7235,Ichi the Killer (Koroshiya 1) (2001),Action|Comedy|Crime|Drama|Horror|Thriller +7236,"Boy and His Dog, A (1975)",Sci-Fi +7237,"Last Tycoon, The (1976)",Drama|Romance +7238,Ashes and Diamonds (Popiól i diament) (1958),Drama|War +7239,Marooned (1969),Drama|Sci-Fi +7240,King David (1985),Action|Drama|War +7241,Kanal (1957),Drama|War +7242,Cat Chaser (1989),Action|Thriller +7243,Intolerance: Love's Struggle Throughout the Ages (1916),Drama +7244,"Beast of Yucca Flats, The (1961)",Horror|Sci-Fi +7245,Tormented (1960),Horror|Thriller +7246,"Violent Years, The (1956)",Drama +7247,Chitty Chitty Bang Bang (1968),Adventure|Children|Comedy|Fantasy|Musical +7248,"Suriyothai (a.k.a. Legend of Suriyothai, The) (2001)",Action|Adventure|Drama|War +7249,Plaza Suite (1971),Comedy +7250,"Out of Towners, The (1970)",Comedy +7251,Where the Day Takes You (1992),Drama +7252,"Three Stooges in Orbit, The (1962)",Comedy|Sci-Fi +7253,It (1927),Comedy|Romance +7254,The Butterfly Effect (2004),Drama|Sci-Fi|Thriller +7255,Win a Date with Tad Hamilton! (2004),Comedy|Romance +7256,Touching the Void (2003),Adventure|Documentary +7257,"Big Bounce, The (2004)",Comedy|Crime|Thriller +7258,"Perfect Score, The (2004)",Comedy|Crime +7259,You Got Served (2004),Drama|Musical +7260,Latter Days (2003),Comedy|Drama|Romance +7261,Barbershop 2: Back in Business (2004),Comedy +7262,Catch That Kid (2004),Action|Adventure|Children|Comedy|Crime +7263,Miracle (2004),Drama +7264,An Amazing Couple (2002),Comedy|Romance +7265,"Dreamers, The (2003)",Drama +7266,"Lost Skeleton of Cadavra, The (2002)",Comedy|Horror|Sci-Fi +7267,Who's the Man? (1993),Comedy +7268,Love at Large (1990),Romance|Thriller +7269,Hangin' with the Homeboys (1991),Comedy|Drama +7270,Sleep with Me (1994),Comedy|Drama|Romance +7271,Just Between Friends (1986),Drama +7272,Super Fly (Superfly) (1972),Action|Crime|Drama +7273,"Piece of the Action, A (1977)",Crime|Drama +7274,Let's Do It Again (1975),Comedy +7275,Uptown Saturday Night (1974),Comedy +7276,Hell's Kitchen (1998),Drama +7277,"Innocent, The (1993)",Drama +7278,Daddy and Them (2001),Comedy|Drama +7279,"Wilby Conspiracy, The (1975)",Thriller +7280,Blacula (1972),Horror +7281,"Scream, Blacula, Scream! (1973)",Horror +7282,"Hip Hop Witch, Da (2000)",Comedy|Horror|Thriller +7283,Swing Shift (1984),Drama +7284,Trespass (1992),Action|Crime|Thriller +7285,Thirteen (2003),Drama +7286,Simple Men (1992),Comedy|Drama +7287,"Sailor Who Fell from Grace with the Sea, The (1976)",Drama +7288,Foolish Wives (1922),Drama +7289,"Silent Night, Bloody Night (1973)",Horror +7290,"Sin of Harold Diddlebock, The (1947)",Comedy +7291,Pontiac Moon (1994),Drama +7292,Best Defense (1984),Comedy|War +7293,50 First Dates (2004),Comedy|Romance +7294,Welcome to Mooseport (2004),Comedy +7295,After the Life (2002),Crime|Drama +7296,Face (2002),Comedy +7297,Kitchen Stories (Salmer fra kjøkkenet) (2003),Comedy|Drama +7298,"Code, The (Mentale, La) (2002)",Action|Crime|Thriller +7299,Monsieur Ibrahim (Monsieur Ibrahim et les fleurs du Coran) (2003),Drama +7300,Vanishing Point (1971),Action|Drama +7301,Diary of a Country Priest (Journal d'un curé de campagne) (1951),Drama +7302,"Thief of Bagdad, The (1924)",Action|Adventure|Fantasy +7303,The Diary of Anne Frank (1959),Drama|War +7304,Allegro non troppo (1977),Animation|Comedy|Fantasy|Musical +7305,Black Widow (1987),Crime|Drama|Mystery|Thriller +7306,"Herod's Law (Ley de Herodes, La) (2000)",Comedy|Crime|Mystery +7307,Flesh & Blood (1985),Action|Adventure|Drama|War +7308,King Solomon's Mines (1985),Adventure|Comedy +7309,"Black Pirate, The (1926)",Action|Adventure +7310,Raw Deal (1986),Action +7311,"Goodbye, Mr. Chips (1939)",Drama|Romance +7312,"Follow Me, Boys! (1966)",Comedy|Drama +7313,Fire Birds (1990),Action|Adventure +7314,Robot Stories (2003),Drama|Sci-Fi +7315,Against the Ropes (2004),Comedy|Drama +7316,Confessions of a Teenage Drama Queen (2004),Comedy +7317,EuroTrip (2004),Adventure|Comedy +7318,"Passion of the Christ, The (2004)",Drama +7319,Club Dread (2004),Comedy|Horror +7320,Dirty Dancing: Havana Nights (2004),Romance +7321,Twisted (2004),Thriller +7322,Alila (2003),Drama +7323,"Good bye, Lenin! (2003)",Comedy|Drama +7324,Hidalgo (2004),Adventure|Drama +7325,Starsky & Hutch (2004),Action|Comedy|Crime|Thriller +7326,"Reckoning, The (2004)",Crime|Drama +7327,Persona (1966),Drama +7328,"Passion of Anna, The (Passion, En) (1969)",Drama +7329,Walk on the Wild Side (1962),Drama +7330,Tokyo Joe (1949),Drama|Thriller +7331,"Serpent's Egg, The (Schlangenei, Das) (1977)",Drama|Thriller +7332,Fire Down Below (1957),Adventure|Drama +7333,"Corbeau, Le (Raven, The) (1943)",Crime|Drama|Thriller +7334,"Front, The (1976)",Comedy|Drama +7335,Pickup on South Street (1953),Film-Noir +7336,"Damned, The (La Caduta degli dei) (1969)",Drama|War +7337,American Gun (2002),Drama +7338,Richard III (1955),Drama|War +7339,Quartet (1981),Drama|Romance +7340,Just One of the Guys (1985),Comedy +7341,The Chase (1966),Crime|Drama|Thriller +7342,"Kiss, The (1988)",Horror +7343,Wisconsin Death Trip (1999),Documentary +7344,"Wrong Arm of the Law, The (1963)",Comedy|Crime +7345,Agent Cody Banks 2: Destination London (2004),Action|Adventure|Children|Comedy +7346,"Girl Next Door, The (2004)",Comedy|Romance +7347,Secret Window (2004),Mystery|Thriller +7348,Spartan (2004),Thriller +7349,Broken Wings (Knafayim Shvurot) (2002),Drama +7350,Games People Play: New York (2004),Comedy|Documentary|Drama +7351,How to Draw a Bunny (2002),Documentary +7352,Wilbur Wants to Kill Himself (2002),Comedy|Drama|Romance +7353,Clifford (1994),Comedy +7354,Mad Dog and Glory (1993),Comedy|Drama|Romance +7355,Mr. Toad's Wild Ride (a.k.a. The Wind in the Willows) (1996),Adventure|Animation|Comedy +7356,Night Crossing (1981),Drama +7357,Peyton Place (1957),Drama|Romance +7358,Searching for Debra Winger (2002),Documentary +7359,Walk Like a Man (1987),Comedy +7360,Dawn of the Dead (2004),Action|Drama|Horror|Thriller +7361,Eternal Sunshine of the Spotless Mind (2004),Drama|Romance|Sci-Fi +7362,Taking Lives (2004),Crime|Drama|Thriller +7363,"Child I Never Was, The (Leben lang kurze Hosen Tragen, Ein) (2002)",Crime|Drama +7364,Intermission (2003),Comedy|Crime|Drama +7365,Noi the Albino (Nói albinói) (2003),Drama +7366,Jersey Girl (2004),Comedy|Drama|Romance +7367,"Ladykillers, The (2004)",Comedy|Crime +7368,Never Die Alone (2004),Crime|Drama|Thriller +7369,Scooby-Doo 2: Monsters Unleashed (2004),Action|Adventure|Children|Comedy|Mystery +7370,A Foreign Affair (2003),Comedy|Drama|Romance +7371,Dogville (2003),Drama|Mystery|Thriller +7372,Ned Kelly (2003),Drama +7373,Hellboy (2004),Action|Adventure|Fantasy|Horror +7374,Home on the Range (2004),Animation|Children|Comedy|Musical|Western +7375,"Prince & Me, The (2004)",Comedy|Romance +7376,Walking Tall (2004),Action +7377,"United States of Leland, The (2003)",Crime|Drama +7378,Johnson Family Vacation (2004),Comedy +7379,The Alamo (2004),Drama|War|Western +7380,Ella Enchanted (2004),Comedy|Fantasy|Romance +7381,"Whole Ten Yards, The (2004)",Action|Comedy|Crime +7382,I'm Not Scared (Io non ho paura) (2003),Drama|Mystery|Thriller +7383,Shade (2003),Crime|Drama|Thriller +7384,Since Otar Left (Depuis qu'Otar est parti...) (2003),Drama +7385,Twentynine Palms (2003),Drama|Horror +7386,"Ten Commandments, The (1956)",Adventure|Drama +7387,Dawn of the Dead (1978),Action|Drama|Horror +7388,"Brother Sun, Sister Moon (Fratello sole, sorella luna) (1972)",Drama +7389,One Million Years B.C. (1966),Adventure|Fantasy +7390,Prey for Rock & Roll (2003),Drama|Musical +7391,"Mother, Jugs & Speed (1976)",Comedy +7392,Bandolero! (1968),Western +7393,"Slugger's Wife, The (1985)",Comedy|Romance +7394,Those Magnificent Men in Their Flying Machines (1965),Action|Adventure|Comedy +7395,Cheaper by the Dozen (1950),Comedy|Drama +7396,Scenes From a Marriage (Scener ur ett äktenskap) (1973),Drama +7397,"Baby, the Rain Must Fall (1965)",Drama +7398,Belles on Their Toes (1952),Comedy +7399,Ned Kelly (1970),Action|Crime|Western +7400,Beyond the Stars (1989),Drama|Sci-Fi +7401,Mac (1992),Drama +7402,"Food of the Gods, The (1976)",Horror|Sci-Fi +7403,Food of the Gods II (1989),Horror|Sci-Fi +7404,Anna (1987),Drama +7405,Road to Bali (1952),Comedy|Musical +7406,"Flying Deuces, The (1939)",Comedy +7407,Africa Screams (1949),Adventure|Comedy +7408,Jack and the Beanstalk (1952),Children|Comedy|Fantasy +7409,High Risk (1981),Action|Comedy|Crime +7410,"Osterman Weekend, The (1983)",Action|Thriller +7411,Munchies (1987),Comedy|Horror +7412,"Cat and the Canary, The (1978)",Comedy|Horror|Mystery +7413,Hangman's Curse (2003),Horror|Mystery|Thriller +7414,Going in Style (1979),Comedy|Drama +7415,"Late Show, The (1977)",Comedy|Crime|Drama|Mystery +7416,"Sunshine Boys, The (1975)",Comedy +7417,Jersey Girl (1992),Comedy|Romance +7418,"American Nightmare, The (2000)",Documentary +7419,After Hours (1985),Comedy|Thriller +7420,Viva Las Vegas (1964),Comedy|Musical|Romance +7422,"Love and Anarchy (Film d'amore e d'anarchia, ovvero 'stamattina alle 10 in via dei Fiori nella nota casa di tolleranza...') (1973)",Comedy|Drama|Romance +7423,Hitman Hart: Wrestling with Shadows (1998),Documentary +7437,Connie and Carla (2004),Comedy +7438,Kill Bill: Vol. 2 (2004),Action|Drama|Thriller +7439,"Punisher, The (2004)",Action|Crime|Thriller +7440,Paper Clips (2004),Documentary +7441,"Thousand Clouds of Peace, A (Mil nubes de paz cercan el cielo, amor, jamás acabarás de ser amor) (2003)",Drama|Romance +7442,Young Adam (2003),Crime|Drama|Thriller +7443,This So-Called Disaster (2003),Documentary +7444,13 Going on 30 (2004),Comedy|Fantasy|Romance +7445,Man on Fire (2004),Action|Crime|Drama|Mystery|Thriller +7446,Clifford's Really Big Movie (2004),Animation|Children +7447,MC5*: A True Testimonial (2002),Documentary +7448,Envy (2004),Comedy +7449,Godsend (2004),Drama|Horror|Thriller +7450,Laws of Attraction (2004),Comedy|Romance +7451,Mean Girls (2004),Comedy +7452,Mickey (2003),Crime|Drama +7453,New York Minute (2004),Action|Adventure|Comedy +7454,Van Helsing (2004),Action|Adventure|Fantasy|Horror +7455,"Mudge Boy, The (2003)",Drama +7456,Valentin (Valentín) (2002),Drama +7457,Breakin' All the Rules (2004),Comedy|Romance +7458,Troy (2004),Action|Adventure|Drama|War +7459,Carandiru (2003),Crime|Drama +7460,Coffee and Cigarettes (2003),Comedy|Drama +7461,"Strayed (égarés, Les) (2003)",Drama|Romance +7474,"Boys in the Band, The (1970)",Drama +7475,Raid (2003),Action|Crime|Drama|Thriller +7477,Eye See You (D-Tox) (2002),Horror|Thriller +7478,Swimming to Cambodia (1987),Drama +7479,Watch on the Rhine (1943),Drama +7480,Under Fire (1983),Drama|Thriller|War +7481,Enemy Mine (1985),Adventure|Drama|Sci-Fi +7482,Enter the Dragon (1973),Action|Crime +7483,Foreign Land (Terra Estrangeira) (1996),Action|Crime|Drama|Romance|Thriller +7484,Gimme Shelter (1970),Documentary +7485,Good Morning (Ohayô) (1959),Comedy +7486,Happy Together (a.k.a. Buenos Aires Affair) (Chun gwong cha sit) (1997),Drama|Romance +7487,Henry & June (1990),Drama +7488,Berkeley in the '60s (1990),Documentary +7489,"Nasty Girl, The (schreckliche Mädchen, Das) (1990)",Comedy|Drama +7490,At First Sight (Entre Nous) (Coup de foudre) (1983),Drama +7491,"Naked Prey, The (1966)",Adventure +7492,Martin (1977),Drama|Horror +7493,"Three Faces of Eve, The (1957)",Drama +7505,"Kingdom, The (Riget) (1994)",Drama|Horror|Mystery +7521,Mercy (2000),Crime|Mystery|Thriller +7523,Desperate Hours (1990),Crime|Drama|Thriller +7528,"Passion of Ayn Rand, The (1999)",Documentary|Drama|Romance +7537,Du côté de la côte (1958),Documentary +7541,100 Girls (2000),Comedy|Romance +7560,Fail-Safe (1964),Drama|Thriller|War +7561,Paperhouse (1988),Fantasy|Horror|Thriller +7562,Dobermann (1997),Action|Crime +7563,"Discovery of Heaven, The (2001)",Drama +7564,Kwaidan (Kaidan) (1964),Horror +7565,Cat-Women of the Moon (a.k.a. Rocket to the Moon) (1953),Adventure|Sci-Fi +7566,28 Up (1985),Documentary +7567,Chance (2002),Comedy|Drama +7568,Love Life (2001),Comedy|Romance +7569,You Only Live Twice (1967),Action|Adventure|Sci-Fi|Thriller +7570,Octopussy (1983),Action|Adventure|Thriller +7571,"Blue Gardenia, The (1953)",Crime|Drama|Film-Noir|Thriller +7572,Wit (2001),Drama +7573,Never Say Never Again (1983),Action|Adventure|Thriller +7574,Maborosi (Maboroshi no hikari) (1995),Drama +7577,"Magic Flute, The (Trollflöjten) (1975)",Comedy|Fantasy|Musical|Romance +7578,Midnight (1939),Comedy|Romance +7579,Pride and Prejudice (1940),Comedy|Drama|Romance +7580,"Man in the Gray Flannel Suit, The (1956)",Drama +7581,"Fountainhead, The (1949)",Drama +7582,Old Acquaintance (1943),Drama +7583,In This Our Life (1942),Drama +7584,Woman of the Year (1942),Comedy|Romance +7585,Summertime (1955),Drama|Romance +7586,Soldier of Orange (a.k.a. Survival Run) (Soldaat van Oranje) (1977),Drama|Thriller|War +7587,"Samouraï, Le (Godson, The) (1967)",Crime|Drama|Thriller +7613,White Palace (1990),Drama +7614,Oklahoma! (1955),Musical|Romance|Western +7615,Desert Hearts (1985),Drama +7616,Body Double (1984),Mystery|Thriller +7617,Rooster Cogburn (1975),Comedy|Western +7618,Chaplin (1992),Drama +7619,"Miracle Worker, The (1962)",Drama +7620,Monster in a Box (1992),Comedy|Drama +7621,Vengo (2000),Drama|Musical +7622,"Midnight (Primeiro Dia, O) (1998)",Drama +7623,If You Only Knew (2000),Comedy|Romance +7624,School Ties (1992),Drama +7625,Girl (1998),Drama +7626,Switch (1991),Comedy|Crime|Fantasy +7627,Just Write (1997),Comedy +7636,Raising Cain (1992),Horror|Thriller +7637,Irma Vep (1996),Comedy|Drama +7638,Buck Privates (1941),Comedy|Musical +7639,Nice Guys Sleep Alone (1999),Comedy|Romance +7644,Divorce Iranian Style (1998),Documentary +7645,Iron & Silk (1990),Comedy|Drama +7646,Rose Red (2002),Horror|Mystery|Thriller +7647,Noises Off... (1992),Comedy +7648,Wildflowers (1999),Drama +7650,"Witchfinder General (Conquerer Worm, The) (1968)",Horror +7657,Versus (2000),Action|Comedy|Fantasy|Horror +7669,Pride and Prejudice (1995),Drama|Romance +7675,"Canterville Ghost, The (1944)",Comedy|Fantasy +7697,"Prince and the Showgirl, The (1957)",Comedy|Romance +7698,"China Syndrome, The (1979)",Drama|Thriller +7699,Who the Hell Is Juliette? (¿Quién diablos es Juliette?) (1997),Documentary +7700,"Wages of Fear, The (Salaire de la peur, Le) (1953)",Action|Adventure|Drama|Thriller +7701,Look Who's Talking Too (1990),Comedy|Romance +7702,"Bells of St. Mary's, The (1945)",Drama +7703,You Light Up My Life (1977),Drama|Romance +7704,"Delta Force, The (1986)",Action +7705,Pat and Mike (1952),Comedy|Romance +7706,Animal Crackers (1930),Comedy|Musical +7707,"He Said, She Said (1991)",Comedy|Drama|Romance +7708,Bedazzled (1967),Comedy|Fantasy +7713,Cat People (1942),Drama|Horror|Romance|Thriller +7714,Camelot (1967),Drama|Musical|Romance +7716,"Lonely Guy, The (1984)",Comedy +7719,"Comedy of Terrors, The (1964)",Comedy|Horror +7720,"Four Musketeers, The (1974)",Action|Adventure|Comedy|Romance +7723,Good Guys Wear Black (1978),Action +7724,Steel Dawn (1987),Action|Sci-Fi +7725,On Deadly Ground (1994),Action|Adventure|Thriller +7726,Boy Meets Girl (1998),Comedy|Romance +7727,Protocol (1984),Comedy +7728,"Postman Always Rings Twice, The (1946)",Crime|Drama|Film-Noir|Thriller +7730,Matinee (1993),Comedy|Drama +7738,That's The Way I Like It (a.k.a. Forever Fever) (1998),Comedy|Drama|Romance +7739,Virtual Sexuality (1999),Comedy|Drama +7742,Baxter (1989),Drama|Horror +7743,Explorers (1985),Adventure|Children|Sci-Fi +7745,"Scent of Green Papaya, The (Mùi du du xhan - L'odeur de la papaye verte) (1993)",Drama +7748,Pierrot le fou (1965),Crime|Drama +7749,Weekend (a.k.a. Le Week-end) (Week End) (1967),Drama +7750,"Hundred and One Nights, A (Cent et une nuits de Simon Cinéma, Les) (1995)",Comedy +7751,Strange Cargo (1940),Drama +7752,Seven Girlfriends (1999),Comedy|Romance +7753,Tuesdays with Morrie (1999),Drama +7754,Temptation of a Monk (You Seng) (1993),Action|Adventure|Drama|Romance +7756,Alexander Nevsky (Aleksandr Nevskiy) (1938),Action|Drama|War +7757,Jason and the Argonauts (1963),Action|Adventure|Fantasy +7758,Same Old Song (On connaît la chanson) (1997),Comedy|Drama|Musical +7759,Nostalghia (1983),Drama +7761,"Soft Skin, The (La peau douce) (1964)",Drama +7763,Winter Sleepers (Winterschläfer) (2000),Drama|Romance +7764,"Driller Killer, The (1979)",Drama|Horror +7765,Perfectly Normal (1990),Comedy +7766,Throne of Blood (Kumonosu jô) (1957),Action|Drama|Thriller|War +7767,"Best of Youth, The (La meglio gioventù) (2003)",Drama +7768,Guncrazy (1992),Crime|Drama|Romance|Thriller +7769,Legend of the Village Warriors (Bangrajan) (2000),Action|Drama|War +7770,Treasure Island (1990),Adventure +7771,Zorba the Greek (Alexis Zorbas) (1964),Adventure|Drama +7772,Undercurrent (1946),Film-Noir|Thriller +7773,"Bang, Bang, You're Dead (2002)",Drama +7774,My Side of the Mountain (1969),Adventure|Children +7775,"Thin Blue Lie, The (2000)",Drama +7781,Twister (1990),Comedy +7782,Sniper (1993),Action|Drama +7783,Don't Tell Anyone (No se lo digas a nadie) (1998),Comedy|Drama +7784,Ghost in the Machine (1993),Horror|Sci-Fi|Thriller +7785,"Time for Drunken Horses, A (Zamani barayé masti asbha) (2000)",Drama +7786,Genghis Blues (1999),Documentary +7787,To Hell and Back (1955),Action|Drama|War +7789,"11'09""01 - September 11 (2002)",Drama +7790,"Bon Voyage, Charlie Brown (and Don't Come Back!) (1980)",Animation|Children|Comedy +7791,Internal Affairs (1990),Crime|Thriller +7792,"Parallax View, The (1974)",Thriller +7802,"Warriors, The (1979)",Action|Adventure|Crime|Thriller +7808,Mayerling (1968),Drama|Romance +7809,Ambush (Rukajärven tie) (1999),Drama|Romance|War +7813,FM (1978),Drama +7814,Waterloo (1970),Action|Drama|War +7815,True Stories (1986),Comedy|Musical +7816,North Beach (2000),Comedy|Drama +7817,Zardoz (1974),Fantasy|Sci-Fi +7818,School For Scoundrels (1960),Comedy +7820,"Virgin Spring, The (Jungfrukällan) (1960)",Crime|Drama +7821,Ice-Cold in Alex (1958),Adventure|Drama|War +7822,Mogambo (1953),Adventure|Drama|Romance +7823,Demon Lover Diary (1980),Documentary +7824,Second Skin (Segunda Piel) (1999),Drama|Romance +7826,"Secret Life of Walter Mitty, The (1947)",Comedy|Romance|Thriller +7827,Cypher (2002),Action|Sci-Fi|Thriller +7828,"Rack, The (1956)",Drama|War +7831,Another Thin Man (1939),Comedy|Crime|Drama|Mystery|Romance +7832,"Thin Man Goes Home, The (1945)",Comedy|Crime|Mystery +7833,Shadow of the Thin Man (1941),Comedy|Crime|Mystery +7834,After the Thin Man (1936),Comedy|Crime|Mystery|Romance +7835,Song of the Thin Man (1947),Comedy|Crime|Drama|Musical|Mystery|Romance +7836,Woodstock (1970),Documentary|Musical +7837,36 fillette (1988),Drama|Romance +7838,"Internecine Project, The (1974)",Action|Thriller +7839,Love Crazy (1941),Comedy +7840,Gunga Din (1939),Adventure|Comedy|War +7844,"Legend, The (Legend of Fong Sai-Yuk, The) (Fong Sai Yuk) (1993)",Action|Comedy +7845,Tremors II: Aftershocks (1996),Comedy|Horror|Sci-Fi +7846,Tremors 3: Back to Perfection (2001),Comedy|Horror|Sci-Fi +7847,"Peanut Butter Solution, The (1985)",Children|Fantasy +7850,Hallelujah I'm a Bum (1933),Musical +7872,Getting It Right (1989),Comedy|Drama +7878,Straight to Hell (1987),Comedy|Crime|Western +7879,Notorious C.H.O. (2002),Comedy +7880,Friday Night (Vendredi Soir) (2002),Drama +7881,White Zombie (1932),Horror +7882,The Plague of the Zombies (1966),Horror +7883,I Walked with a Zombie (1943),Drama|Horror +7884,Highway 61 (1991),Comedy +7885,"Vampire Lovers, The (1970)",Horror +7886,Countess Dracula (1972),Horror +7887,"Cheerleaders, The (1973)",Comedy +7888,How to Succeed in Business Without Really Trying (1967),Comedy|Musical +7889,Pat Garrett and Billy the Kid (1973),Western +7890,The Left Handed Gun (1958),Crime|Drama|Western +7891,"Last Man on Earth, The (Ultimo uomo della Terra, L') (1964)",Drama|Horror|Sci-Fi +7892,"Street Fighter, The (Gekitotsu! Satsujin ken) (1974)",Action +7893,Return of the Street Fighter (Satsujin ken 2) (1974),Action|Crime|Drama +7894,"Duck, You Sucker (1971)",Action|Western +7895,Bring Me the Head of Alfredo Garcia (1974),Crime|Drama|Thriller +7896,Ride the High Country (1962),Adventure|Drama|Western +7897,"Ballad of Cable Hogue, The (1970)",Comedy|Western +7898,Junior Bonner (1972),Comedy|Drama|Western +7899,Master of the Flying Guillotine (Du bi quan wang da po xue di zi) (1975),Action +7900,Frankenstein Must Be Destroyed (1969),Drama|Horror|Sci-Fi +7901,"Haunted Palace, The (1963)",Horror +7912,Finder's Fee (2001),Drama|Thriller +7913,"Whip and the Body, The (Frusta e il corpo, La) (1963)",Horror +7914,Berlin: Symphony of a Great City (Berlin: Die Sinfonie der Großstadt) (1927),Documentary +7915,Samurai Fiction (SF: Episode One) (1998),Action|Adventure|Comedy +7916,Gidget (1959),Comedy +7917,Wild in the Streets (1968),Drama|Horror|Sci-Fi +7918,"Indian Runner, The (1991)",Drama +7919,Drunken Angel (Yoidore tenshi) (1948),Drama|Film-Noir +7920,Desperate Living (1977),Comedy|Crime +7921,"Devil's Rain, The (1975)",Horror +7922,"Valachi Papers,The (1972)",Crime|Drama +7923,Rolling Thunder (1977),Action|Drama +7924,Stray Dog (Nora inu) (1949),Drama|Film-Noir|Thriller +7925,"Hidden Fortress, The (Kakushi-toride no san-akunin) (1958)",Action|Adventure +7926,High and Low (Tengoku to jigoku) (1963),Crime|Drama|Film-Noir|Thriller +7928,After the Rehearsal (Efter repetitionen) (1984),Drama +7930,"People Under the Stairs, The (1991)",Horror|Mystery|Thriller +7931,My New Gun (1992),Comedy +7932,Dark Days (2000),Documentary +7933,"Night in Casablanca, A (1946)",Comedy +7934,Zelig (1983),Comedy +7935,Face to Face (Ansikte mot ansikte) (1976),Drama|Fantasy|Horror|Mystery +7936,Shame (Skammen) (1968),Drama|War +7937,"Silence, The (Tystnaden) (1963)",Drama +7938,Winter Light (Nattvardsgästerna) (1963),Drama +7939,Through a Glass Darkly (Såsom i en spegel) (1961),Drama +7940,The Magician (1958),Drama +7941,Smiles of a Summer Night (Sommarnattens leende) (1955),Comedy|Romance +7942,Summer with Monika (Sommaren med Monika) (1953),Drama|Romance +7943,"Killers, The (1946)",Crime|Film-Noir +7944,"Night of the Iguana, The (1964)",Drama|Thriller +7945,Freud: The Secret Passion (1962),Drama +7946,Reflections in a Golden Eye (1967),Drama +7947,Under the Volcano (1984),Drama +7948,Wise Blood (1979),Comedy|Drama +7949,"Yakuza, The (1975)",Drama +7950,"Better Place, A (1997)",Drama +7951,Nightbreed (1990),Fantasy|Horror +7952,Beyond the Door II (Schock) (Shock) (Suspense) (1977),Horror +7954,"Baron Blood (Orrori del castello di Norimberga, Gli) (1972)",Horror +7958,Bloody Mama (1970),Crime|Drama +7959,"Trip, The (1967)",Drama +7976,Ken Park (2002),Drama +7979,Monterey Pop (1968),Documentary|Musical +7980,"Bridge Too Far, A (1977)",Action|Drama|War +7981,Infernal Affairs (Mou gaan dou) (2002),Crime|Drama|Thriller +7982,"Tale of Two Sisters, A (Janghwa, Hongryeon) (2003)",Drama|Horror|Mystery|Thriller +7983,Broadway Danny Rose (1984),Comedy +7984,From Beyond (1986),Horror|Sci-Fi +7985,The Wonderful Ice Cream Suit (1998),Children|Comedy|Fantasy +7986,Robot Jox (1990),Sci-Fi +7987,Dolls (1987),Horror +7988,Space Truckers (1996),Comedy|Sci-Fi +7989,Not of This Earth (1988),Sci-Fi +7990,Rock 'N' Roll High School (1979),Comedy|Musical +7991,Death Race 2000 (1975),Action|Sci-Fi +7992,Cockfighter (1974),Drama +7993,"Bucket Of Blood, A (1959)",Comedy|Horror +7994,"Premature Burial, The (1962)",Horror +7995,"Wild Angels, The (1966)",Action|Drama +8003,Bedlam (1946),Drama|Horror +8004,Planet of the Vampires (Terrore nello spazio) (1965),Horror|Sci-Fi +8007,Pure Country (1992),Drama|Musical|Romance +8008,Brigadoon (1954),Fantasy|Musical|Romance +8009,Marjorie Morningstar (1958),Drama +8010,"Power of One, The (1992)",Drama +8011,"Weather Underground, The (2002)",Documentary +8012,Kikujiro (Kikujirô no natsu) (1999),Comedy|Drama +8013,I'm with Lucy (2002),Comedy|Romance +8014,"Spring, Summer, Fall, Winter... and Spring (Bom yeoreum gaeul gyeoul geurigo bom) (2003)",Drama +8015,"Phantom Tollbooth, The (1970)",Adventure|Animation|Children|Fantasy +8016,"Getaway, The (1972)",Action|Crime|Drama|Thriller +8017,10 Rillington Place (1971),Crime|Drama|Thriller +8019,Dark Water (Honogurai mizu no soko kara) (2002),Drama|Horror|Mystery|Thriller +8024,"Thing Called Love, The (1993)",Comedy|Drama|Romance +8025,The Thief (1997),Drama +8033,How to Steal a Million (1966),Comedy|Crime|Romance +8035,"Stendhal Syndrome, The (Sindrome di Stendhal, La) (1996)",Crime|Horror|Thriller +8037,Non-Stop (1996),Action|Comedy|Crime +8038,Manslaughter (1922),Drama +8039,Support Your Local Sheriff! (1969),Comedy|Western +8040,Brain Donors (1992),Comedy +8041,Passed Away (1992),Comedy +8042,Mean Streets (1973),Crime|Drama +8043,Jack the Bear (1993),Comedy|Drama +8044,I Am a Fugitive from a Chain Gang (1932),Crime|Drama|Film-Noir +8045,Hamburger Hill (1987),Action|Drama|War +8055,"Last Broadcast, The (1998)",Horror|Mystery|Thriller +8056,Harper (1966),Crime|Drama|Mystery +8057,Sweet Bird of Youth (1962),Drama +8062,Dahmer (2002),Drama|Horror|Thriller +8063,Paradise (1991),Drama +8068,Sundays and Cybele (Les dimanches de Ville d'Avray) (1962),Drama +8069,Comes a Horseman (1978),Drama|Romance|Western +8070,Grill Point (Halbe Treppe) (2002),Drama +8092,Frankenstein Unbound (1990),Drama|Horror|Sci-Fi +8093,Shiri (Swiri) (1999),Action|Drama|Romance|Thriller +8094,Bad Day at Black Rock (1955),Drama|Thriller|Western +8095,"Cucaracha, La (1998)",Thriller +8117,In China They Eat Dogs (I Kina spiser de hunde) (1999),Action|Comedy +8118,Delta Force 2 (Delta Force 2: The Colombian Connection) (1990),Action|Adventure|Thriller|War +8119,Crossroads (1986),Drama +8120,29th Street (1991),Comedy|Drama +8121,"Seducing Doctor Lewis (Grande séduction, La) (2003)",Comedy +8122,City Limits (1984),Action|Sci-Fi +8123,Sammy and Rosie Get Laid (1987),Comedy|Drama +8124,Leaving Normal (1992),Comedy|Drama +8125,Sunrise: A Song of Two Humans (1927),Drama|Romance +8126,Shock Corridor (1963),Drama +8127,"First $20 Million Is Always the Hardest, The (2002)",Comedy +8128,Au revoir les enfants (1987),Drama +8129,Sex: The Annabel Chong Story (1999),Documentary +8130,"Girl Next Door, The (1999)",Documentary +8131,Pursuit of Happiness (2001),Comedy|Romance +8132,Gladiator (1992),Action|Drama +8133,"Inheritance, The (Arven) (2003)",Drama +8134,Wonderful Days (a.k.a. Sky Blue) (2003),Animation|Sci-Fi +8136,Indestructible Man (1956),Crime|Horror|Sci-Fi +8137,"Wasp Woman, The (1959)",Horror|Sci-Fi +8138,Attack of the Giant Leeches (1959),Horror|Sci-Fi +8139,Deranged (1974),Horror|Thriller +8140,The Cruel Sea (1953),Drama|War +8141,Sodom and Gomorrah (1962),Adventure|Drama +8142,Dead or Alive: Hanzaisha (1999),Action|Crime +8143,Lola Montès (1955),Drama +8147,Charly (1968),Drama|Sci-Fi +8148,Twice Upon a Time (1983),Animation|Fantasy +8149,"Atlantis, the Lost Continent (1961)",Adventure|Sci-Fi +8153,Lust for Life (1956),Drama +8154,"Dolce Vita, La (1960)",Drama +8157,Jin Roh: The Wolf Brigade (Jin-Rô) (1998),Animation|Fantasy|Thriller +8158,Rush (1991),Crime|Drama +8167,Captain Blood (1935),Action|Adventure|Romance +8168,"Lift, De (1983)",Horror|Thriller +8169,*batteries not included (1987),Children|Comedy|Fantasy|Sci-Fi +8183,Educating Rita (1983),Comedy|Drama +8187,On Moonlight Bay (1951),Comedy|Musical +8188,Sansho the Bailiff (Sanshô dayû) (1954),Drama +8189,Zazie dans le métro (1960),Comedy +8190,"Americanization of Emily, The (1964)",Comedy|Drama|War +8191,Anne of the Thousand Days (1969),Drama +8194,Baby Doll (1956),Drama +8195,"Avventura, L' (Adventure, The) (1960)",Drama|Mystery|Romance +8196,Beyond the Valley of the Dolls (1970),Comedy|Horror +8197,Hiroshima Mon Amour (1959),Drama|Romance|War +8198,"1000 Eyes of Dr. Mabuse, The (Die 1000 Augen des Dr. Mabuse) (1960)",Crime|Horror|Mystery|Thriller +8199,Ugetsu (Ugetsu monogatari) (1953),Drama|Thriller +8201,At Play in the Fields of the Lord (1991),Drama +8202,"Golden Coach, The (Le carrosse d'or) (1953)",Comedy|Drama|Romance +8203,"War Is Over, The (Guerre est finie, La) (1966)",Drama +8206,Mystery of the Wax Museum (1933),Horror +8207,"Day of the Jackal, The (1973)",Crime|Thriller +8208,"Razor's Edge, The (1946)",Drama +8220,"Walking Dead, The (1936)",Crime|Horror|Sci-Fi +8221,War of the Buttons (1994),Adventure|Children|Drama +8222,"Other, The (1972)",Drama|Horror|Mystery|Thriller +8224,"Dexter the Dragon & Bumble the Bear (a.k.a. Dragon That Wasn't (Or Was He?), The) (Als je begrijpt wat ik bedoel) (1983)",Animation|Children|Fantasy +8225,Night of the Living Dead (1990),Horror +8227,Drums Along the Mohawk (1939),Adventure|War|Western +8228,"Maltese Falcon, The (a.k.a. Dangerous Female) (1931)",Mystery +8232,I Love You Again (1940),Comedy|Drama +8235,Safety Last! (1923),Action|Comedy|Romance +8236,While the City Sleeps (1956),Drama|Film-Noir +8237,"Way Ahead, The (a.k.a. The Immortal Battalion) (1944)",Drama|War +8239,Viridiana (1961),Comedy|Drama +8240,Totally F***ed Up (1993),Drama +8241,Masterminds (1997),Action|Comedy|Thriller +8252,You're a Big Boy Now (1966),Comedy|Drama +8253,Lupin III: The Castle Of Cagliostro (Rupan sansei: Kariosutoro no shiro) (1979),Action|Adventure|Animation|Comedy|Crime|Mystery +8254,Arizona Dream (1993),Comedy|Drama|Fantasy|Romance +8255,Chaos (Kaosu) (1999),Crime|Mystery|Thriller +8256,Queen Christina (1933),Drama|Romance +8257,Battleground (1949),Action|Drama|War +8258,Citizen Toxie: The Toxic Avenger IV (2000),Action|Comedy|Horror +8259,Hooper (1978),Action|Comedy +8260,"Crazy Stranger, The (Gadjo Dilo) (1997)",Comedy|Drama +8261,3 Women (Three Women) (1977),Drama +8262,"Green Pastures, The (1936)",Drama +8263,Take Me Out to the Ball Game (1949),Comedy|Musical|Romance +8264,Grey Gardens (1975),Documentary +8265,Frogs (1972),Drama|Horror|Mystery|Thriller +8266,Purple Rain (1984),Drama|Musical +8267,Signs of Life (Lebenszeichen) (1968),Drama +8268,Point of No Return (1993),Action|Thriller +8269,Short Time (1990),Comedy +8270,"Hairdresser's Husband, The (Le mari de la coiffeuse) (1990)",Comedy|Drama|Romance +8272,Cromwell (1970),Drama +8273,"Tale of Ham and Passion, A (Jamón, Jamón) (1992)",Comedy|Drama|Romance +8275,College (1927),Comedy +8290,Mitchell (1975),Action|Crime +8291,Agatha Christie's 'Ten Little Indians' (Ten Little Indians) (And Then There Were None) (1965),Mystery +8292,Hakuchi (1951),Crime|Drama|Romance +8293,Used People (1992),Comedy|Drama +8294,"Swan, The (1956)",Comedy|Drama|Romance +8295,"Most Dangerous Game, The (1932)",Adventure|Mystery|Thriller +8302,"Front Page, The (1931)",Comedy|Drama|Romance +8327,Dolls (2002),Drama|Romance +8329,Three Came Home (1950),Drama|War +8330,Our Man in Havana (1959),Comedy|Drama|Thriller +8331,"Man Who Came to Dinner, The (1942)",Comedy +8332,Sunday Bloody Sunday (1971),Drama +8334,"Cowboys, The (1972)",Western +8335,Make Way for Tomorrow (1937),Drama +8336,"Major and the Minor, The (1942)",Comedy|Romance +8337,"Caine Mutiny, The (1954)",Drama|War +8338,Black Narcissus (1947),Drama +8339,Damn the Defiant! (H.M.S. Defiant) (1962),Adventure|Drama +8340,Escape from Alcatraz (1979),Drama|Thriller +8341,Oliver Twist (1948),Adventure|Crime|Drama +8359,Skokie (1981),Drama +8360,Shrek 2 (2004),Adventure|Animation|Children|Comedy|Musical|Romance +8361,"Day After Tomorrow, The (2004)",Action|Adventure|Drama|Sci-Fi|Thriller +8362,Raising Helen (2004),Comedy|Drama|Romance +8363,Soul Plane (2004),Comedy +8364,Baadasssss! (How to Get the Man's Foot Outta Your Ass) (2003),Drama +8365,"Mother, The (2003)",Drama +8366,Saved! (2004),Comedy|Drama +8367,"Time of the Wolf, The (Le temps du loup) (2003)",Drama +8368,Harry Potter and the Prisoner of Azkaban (2004),Adventure|Fantasy|IMAX +8369,Mindhunters (2004),Action|Crime|Horror|Mystery|Thriller +8370,"Blind Swordsman: Zatoichi, The (Zatôichi) (2003)",Action|Comedy|Crime|Drama +8371,"Chronicles of Riddick, The (2004)",Action|Sci-Fi|Thriller +8372,Garfield: The Movie (2004),Animation|Children|Comedy +8373,"Stepford Wives, The (2004)",Comedy|Fantasy|Thriller +8374,Bright Future (Akarui mirai) (2003),Drama +8375,"Hunting of the President, The (2004)",Documentary +8376,Napoleon Dynamite (2004),Comedy +8377,City of Joy (1992),Drama +8378,"Doctor, The (1991)",Drama +8379,"Dresser, The (1983)",Drama +8380,Father Hood (1993),Comedy +8381,For Me and My Gal (1942),Drama|Musical|Romance +8382,Hello Again (1987),Comedy +8383,Hope Springs (2003),Comedy|Romance +8384,Love Finds Andy Hardy (1938),Comedy|Romance +8385,Lover Come Back (1961),Comedy|Romance +8387,Police Academy: Mission to Moscow (1994),Comedy|Crime +8388,Ring of Bright Water (1969),Comedy|Drama +8391,Big Wednesday (1978),Comedy|Drama +8392,Fool for Love (1985),Drama +8393,Give My Regards to Broad Street (1984),Drama|Musical +8394,"Hi-Line, The (1999)",Drama +8395,"Last of Sheila, The (1973)",Crime|Mystery|Thriller +8397,"Playboys, The (1992)",Drama|Romance +8398,Star! (1968),Musical +8399,We're Not Married! (1952),Comedy|Romance +8400,Wish You Were Here (1987),Comedy|Drama +8401,"Adventures of Sherlock Holmes, The (1939)",Crime|Mystery|Thriller +8402,Book of Love (1990),Comedy|Romance +8403,Helen of Troy (1956),Action|Adventure|Drama|Romance|War +8404,"Hound of the Baskervilles, The (1939)",Crime|Mystery|Thriller +8405,Hour of the Wolf (Vargtimmen) (1968),Drama|Horror +8407,"Molly Maguires, The (1970)",Drama +8410,Suddenly (1954),Crime|Drama|Film-Noir +8411,Urban Ghost Story (1998),Drama +8420,Possessed (1947),Drama|Film-Noir +8421,Dying of Laughter (Muertos de Risa) (1999),Comedy +8422,Kings Row (1942),Drama|Romance +8423,"Kid Brother, The (1927)",Children|Comedy|Romance +8424,"Divorcee, The (1930)",Drama|Romance +8425,Meet the Applegates (1991),Comedy +8426,Robot Carnival (Roboto kânibauru) (1987),Animation|Comedy|Drama|Fantasy|Sci-Fi +8427,Americathon (1979),Comedy|Sci-Fi +8444,"Chipmunk Adventure, The (1987)",Adventure|Animation|Children|Comedy|Fantasy|Musical +8446,Sands of Iwo Jima (1949),Action|Drama|Romance|War +8447,This Island Earth (1955),Sci-Fi +8448,ComDads (les Compères) (1983),Comedy|Crime +8450,Anthony Adverse (1936),Adventure|Romance +8451,Blackboard Jungle (1955),Drama +8452,Moment by Moment (1978),Drama|Romance +8453,It Had to Be You (2000),Comedy|Romance +8454,Luna Papa (1999),Comedy|Drama|Fantasy +8455,"Long Way Home, The (1997)",Documentary +8456,Investigation of a Citizen Above Suspicion (Indagine su un cittadino al di sopra di ogni sospetto) (1970),Crime|Drama|Thriller +8457,True Love (1989),Comedy +8458,To Each His Own (1946),Drama +8459,"Heiress, The (1949)",Drama|Romance +8460,State Fair (1945),Musical|Romance +8461,Dragon Seed (1944),Drama|War +8462,Executive Suite (1954),Drama +8463,Johnny Belinda (1948),Drama +8464,Super Size Me (2004),Comedy|Documentary|Drama +8465,Johnny Eager (1942),Crime|Drama|Film-Noir|Romance +8469,None But the Lonely Heart (1944),Drama|Romance +8477,"Jetée, La (1962)",Romance|Sci-Fi +8478,"Distant Voices, Still Lives (1988)",Drama +8480,"King of Kings, The (1927)",Drama +8481,Northwest Passage (1940),Action|Adventure|Drama|Romance|Thriller|Western +8482,"Picture of Dorian Gray, The (1945)",Drama|Fantasy|Horror +8483,"Born Losers, The (1967)",Action|Drama|Thriller +8484,"Human Condition I, The (Ningen no joken I) (1959)",Drama|War +8485,Samsara (2001),Adventure|Drama|Romance +8486,Bachelor Mother (1939),Comedy|Romance +8487,Please Don't Eat the Daisies (1960),Children|Comedy|Musical +8488,Siddhartha (1972),Drama +8491,White Heat (1949),Crime|Drama|Film-Noir +8492,"Christmas Carol, A (Scrooge) (1951)",Drama|Fantasy +8493,Memphis Belle (1990),Action|Drama|War +8494,"Cincinnati Kid, The (1965)",Drama +8495,Animal Factory (2000),Crime|Drama +8496,"Panic in Needle Park, The (1971)",Drama|Romance +8499,Pretty Baby (1978),Drama +8500,Godzilla vs. Mechagodzilla (Gojira tai Mekagojira) (1974),Action|Horror|Sci-Fi +8501,"Hitcher, The (1986)",Action|Thriller +8502,Show Boat (1951),Drama|Musical|Romance +8503,Ivanhoe (1952),Adventure|Drama|Romance +8504,Box of Moon Light (1996),Comedy|Drama +8505,"Eel, The (Unagi) (1997)",Drama|Romance +8506,Fear X (2003),Mystery|Thriller +8507,Freaks (1932),Crime|Drama|Horror +8511,"Immigrant, The (1917)",Comedy +8512,Silent Movie (1976),Comedy +8516,"Matter of Life and Death, A (Stairway to Heaven) (1946)",Drama|Fantasy|Romance +8518,Anna Christie (1930),Drama +8519,"Bat People, The (1974)",Comedy|Drama|Horror|Sci-Fi +8520,Deep Cover (1992),Action|Crime|Thriller +8521,Dr. Jekyll and Mr. Hyde (1931),Drama|Horror +8522,My Little Chickadee (1940),Comedy|Western +8524,"High and the Mighty, The (1954)",Drama +8525,"Ugly Dachshund, The (1966)",Children|Comedy +8526,Around the World in 80 Days (2004),Adventure|Children|Comedy +8527,I'll Sleep When I'm Dead (2003),Crime|Drama +8528,Dodgeball: A True Underdog Story (2004),Comedy +8529,"Terminal, The (2004)",Comedy|Drama|Romance +8530,Dear Frankie (2004),Drama|Romance +8531,White Chicks (2004),Action|Comedy|Crime +8532,"Door in the Floor, The (2004)",Drama +8533,"Notebook, The (2004)",Drama|Romance +8534,Two Brothers (Deux frères) (2004),Adventure|Children|Drama +8535,De-Lovely (2004),Drama|Musical +8536,"Intended, The (2002)",Drama|Thriller +8537,Kaena: The Prophecy (Kaena: La prophétie) (2003),Action|Adventure|Animation|Children|Sci-Fi +8540,Back to Bataan (1945),Drama|War +8541,Bloodhounds of Broadway (1989),Comedy|Drama +8542,"Day at the Races, A (1937)",Comedy|Musical +8543,"Flying Leathernecks, The (1951)",Action|Drama|War +8544,"Now You See Him, Now You Don't (1972)",Comedy|Sci-Fi +8545,Plain Dirty (a.k.a. Briar Patch) (2003),Drama|Romance +8571,Bob & Carol & Ted & Alice (1969),Comedy|Drama +8572,"Littlest Rebel, The (1935)",Children|Drama +8573,Reconstruction (2003),Drama|Romance +8574,"Claymation Christmas Celebration, A (1987)",Animation|Children|Comedy|Musical +8575,"Happenstance (Battement d'ailes du papillon, Le) (2001)",Comedy|Drama +8576,Kopps (2003),Action|Comedy +8577,Comandante (2003),Documentary +8578,Undead (2003),Action|Comedy|Horror|Sci-Fi +8580,Into the Woods (1991),Adventure|Comedy|Fantasy|Musical +8581,Pirates of Silicon Valley (1999),Documentary|Drama +8582,Manufacturing Consent: Noam Chomsky and the Media (1992),Documentary|War +8583,"Clock, The (1945)",Adventure|Drama|Romance +8584,Leave Her to Heaven (1945),Drama|Film-Noir +8585,Rapa Nui (1994),Action|Adventure|Drama|Romance +8586,Roxie Hart (1942),Comedy +8587,Mayor of the Sunset Strip (2003),Documentary +8589,Winter War (Talvisota) (1989),Drama|War +8591,"Philadelphia Experiment, The (1984)",Adventure|Drama|Sci-Fi +8592,"Wheeler Dealers, The (1963)",Comedy +8593,Juice (1992),Action|Crime|Drama|Thriller +8594,"Secret Life of Girls, The (1999)",Comedy +8595,"Flim-Flam Man, The (1967)",Action|Adventure|Comedy +8596,Revenge of the Pink Panther (1978),Comedy|Crime +8597,Riders (2002),Action|Crime|Thriller +8598,I Am Dina (2002),Crime|Drama|Mystery|Romance +8600,Angels with Dirty Faces (1938),Crime|Drama|Film-Noir|Thriller +8601,Zero de conduite (Zero for Conduct) (Zéro de conduite: Jeunes diables au collège) (1933),Comedy|Drama +8602,Shadows (1959),Drama +8603,Coming Out (1989),Drama +8604,Taxi (1998),Action|Comedy +8605,Taxi 3 (2003),Action|Comedy +8606,Pull My Daisy (1958),Comedy|Drama +8607,Tokyo Godfathers (2003),Adventure|Animation|Drama +8608,"Butcher, The (Boucher, Le) (1970)",Drama|Thriller +8609,Our Hospitality (1923),Comedy +8610,All of Me (1984),Comedy|Fantasy +8611,"Farmer's Daughter, The (1947)",Comedy +8612,Lassie Come Home (1943),Adventure|Children|Drama +8613,"Time of Your Life, The (1948)",Comedy|Drama +8614,Overboard (1987),Comedy|Romance +8615,"Mask of Fu Manchu, The (1932)",Adventure|Horror|Sci-Fi +8616,By the Light of the Silvery Moon (1953),Children|Musical|Romance +8617,Butterfield 8 (1960),Drama +8618,Johnny Guitar (1954),Drama|Western +8619,Sister My Sister (1994),Drama +8620,"Exterminating Angel, The (Ángel exterminador, El) (1962)",Comedy|Drama|Fantasy|Mystery +8621,Ivans xtc. (2000),Drama +8622,Fahrenheit 9/11 (2004),Documentary +8623,Roxanne (1987),Comedy|Romance +8624,Freedom Downtime (2001),Adventure|Crime|Documentary +8625,"Same River Twice, The (2003)",Documentary +8626,Dr. Terror's House of Horrors (1965),Horror|Sci-Fi +8627,Confessions of a Burning Man (2003),Documentary +8628,Search and Destroy (1995),Comedy|Drama +8629,"Book of Life, The (1998)",Comedy|Fantasy +8630,Such a Long Journey (1998),Drama|War +8631,Hard Times (1975),Action|Drama +8632,Secret Society (2002),Comedy +8633,"Last Starfighter, The (1984)",Action|Adventure|Comedy|Sci-Fi +8634,Tank (1984),Action|Comedy|Drama +8635,Jungle Holocaust (Ultimo mondo cannibale) (1977),Adventure|Horror +8636,Spider-Man 2 (2004),Action|Adventure|Sci-Fi|IMAX +8637,America's Heart and Soul (2004),Documentary +8638,Before Sunset (2004),Drama|Romance +8639,"Clearing, The (2004)",Drama|Thriller +8640,King Arthur (2004),Action|Adventure|Drama|War +8641,Anchorman: The Legend of Ron Burgundy (2004),Comedy +8642,Sleepover (2004),Comedy +8643,"Cinderella Story, A (2004)",Comedy|Romance +8644,"I, Robot (2004)",Action|Adventure|Sci-Fi|Thriller +8645,"Maria Full of Grace (Maria, Llena eres de gracia) (2004)",Crime|Drama +8646,Distant Drums (1951),Action|Romance|Western +8647,Follow That Dream (1962),Comedy|Musical +8648,"Girl of Your Dreams, The (Niña de tus ojos, La) (1998)",Comedy|Drama +8649,Gray Lady Down (1978),Drama|Thriller +8650,Long Day's Journey Into Night (1962),Drama +8651,Man of La Mancha (1972),Adventure|Comedy|Musical +8652,The Night of the Following Day (1968),Action|Crime|Drama|Thriller +8653,Posse (1975),Western +8654,Prince Valiant (1954),Adventure +8655,Rustlers' Rhapsody (1985),Comedy|Western +8656,"Short Film About Killing, A (Krótki film o zabijaniu) (1988)",Crime|Drama +8657,"Tin Star, The (1957)",Western +8658,Zandalee (1991),Drama|Thriller +8659,Brief Crossing (Brève traversée) (2001),Comedy|Drama|Romance +8660,"Deluge, The (Potop) (1974)",Adventure|War +8661,How the West Was Won (1962),Adventure|Drama|Western +8662,Joan of Arc (1948),Action|Drama|War +8663,Live Forever (2003),Comedy|Documentary +8664,Mr. Klein (Monsieur Klein) (1976),Drama +8665,"Bourne Supremacy, The (2004)",Action|Crime|Thriller +8666,Catwoman (2004),Action|Crime|Fantasy +8667,A Home at the End of the World (2004),Drama|Romance +8668,Some Girl (1998),Comedy|Drama +8669,Stay Hungry (1976),Comedy|Drama +8670,"Testament of Dr. Mabuse, The (Das Testament des Dr. Mabuse) (1933)",Crime|Horror|Mystery|Thriller +8671,Zus & Zo (2001),Comedy|Drama|Romance +8672,Battle Hymn (1957),Drama +8673,Crash Dive (1943),Drama|Romance|War +8674,Disco Pigs (2001),Drama +8675,"Enemy Below, The (1957)",Action|Drama|War +8676,Fist of the North Star (1995),Action|Thriller +8677,Flash Gordon Conquers the Universe (1940),Action|Sci-Fi +8678,Guns of the Magnificent Seven (1969),Action|Adventure|Drama|Western +8679,"Hunters, The (1958)",Drama|War +8680,In a Glass Cage (Tras el cristal) (1986),Drama|Horror +8681,Lancelot of the Lake (Lancelot du Lac) (1974),Drama|War +8682,"Last Valley, The (1971)",Adventure +8683,"Magnificent Seven Ride!, The (1972)",Western +8684,"Man Escaped, A (Un condamné à mort s'est échappé ou Le vent souffle où il veut) (1956)",Adventure|Drama +8685,"Miracle of Marcelino, The (Marcelino pan y vino) (1955)",Comedy|Drama +8686,Morituri (1965),Drama|War +8687,Orgy of the Dead (1965),Horror +8688,Shalako (1968),Western +8689,"Shock to the System, A (1990)",Comedy|Crime|Thriller +8690,Slaughterhouse-Five (1972),Comedy|Drama|Sci-Fi|War +8691,His Brother (Son frère) (2003),Drama +8692,Wake Island (1942),Drama|War +8693,What Price Glory (1952),Drama|War +8694,You Were Never Lovelier (1942),Comedy|Musical|Romance +8695,"Bachelor and the Bobby-Soxer, The (1947)",Comedy +8696,Breezy (1973),Drama|Romance +8697,"City of No Limits, The (la ciudad sin límites, En) (2002)",Drama|Thriller +8698,"Comfort of Strangers, The (1990)",Drama +8699,Dancing in September (2000),Drama +8700,Destination Tokyo (1943),Adventure|War +8701,Dr. Jekyll and Ms. Hyde (1995),Comedy|Horror +8702,Dream Lover (1993),Drama|Mystery|Thriller +8703,Fausto 5.0 (2001),Horror +8704,For Queen and Country (1988),Drama +8705,Funny About Love (1990),Comedy|Romance +8706,"Greatest, The (1977)",Drama +8707,Grief (1993),Comedy +8708,Hometown Legend (2002),Drama +8709,How I Got Into College (1989),Comedy|Romance +8710,Map of the Human Heart (1993),Drama|Romance +8711,Mr. Blandings Builds His Dream House (1948),Comedy +8712,My Favorite Wife (1940),Comedy|Romance +8713,"New Adventures of Pippi Longstocking, The (1988)",Adventure|Children|Fantasy|Musical +8714,Night and Day (1946),Drama|Musical +8715,No Name on the Bullet (1959),Western +8716,"Plainsman, The (1937)",War|Western +8718,"Snake Pit, The (1948)",Drama +8719,"Spoilers, The (1942)",Action|Western +8720,"Super, The (1991)",Comedy +8721,Tai-Pan (1986),Adventure +8722,Two of a Kind (1983),Comedy|Fantasy|Romance +8723,Warriors (Guerreros) (2002),Adventure|Drama|War +8724,"Leopard, The (Gattopardo, Il) (1963)",Drama|War +8725,"Goodbye, Columbus (1969)",Comedy|Drama|Romance +8726,"President's Analyst, The (1967)",Comedy|Thriller +8727,"Day of the Locust, The (1975)",Drama +8728,"Creeping Flesh, The (1973)",Horror|Sci-Fi +8729,Swann in Love (Un amour de Swann) (1984),Drama +8730,To End All Wars (2001),Action|Drama|War +8731,Moulin Rouge (1952),Drama +8732,"Belly of an Architect, The (1987)",Drama +8733,"Nest, The (Nid de Guêpes) (2002)",Action|Crime|Thriller +8734,Love Happy (1949),Comedy +8735,High School Confidential! (1958),Crime|Drama +8736,Out of the Blue (1980),Drama +8737,Crimetime (1996),Thriller +8738,"Woman Is a Woman, A (femme est une femme, Une) (1961)",Comedy|Drama|Musical|Romance +8739,Mamma Roma (1962),Drama +8740,"Lower Depths, The (Donzoko) (1957)",Comedy|Drama +8741,Ruby Cairo (1993),Thriller +8742,Night Patrol (1984),Comedy +8743,Biggles (1986),Adventure|Fantasy|Sci-Fi +8744,Fancy Pants (1950),Comedy|Western +8745,"World of Suzie Wong, The (1960)",Drama|Romance +8746,King of the Ants (2003),Crime|Horror +8747,Uncle Sam (1997),Horror +8748,"Yesterday, Today and Tomorrow (Ieri, oggi, domani) (1963)",Comedy +8749,"Beautiful Troublemaker, The (La belle noiseuse) (1991)",Drama +8750,"Balance, La (1982)",Action|Crime|Drama +8751,Gun Crazy (a.k.a. Deadly Is the Female) (1949),Crime|Drama|Film-Noir +8752,"Set-Up, The (1949)",Drama|Film-Noir|Romance +8753,Unprecedented: The 2000 Presidential Election (2002),Documentary +8754,"Prime of Miss Jean Brodie, The (1969)",Drama +8755,My Voyage to Italy (Il mio viaggio in Italia) (1999),Documentary +8756,"North Avenue Irregulars, The (1979)",Action|Crime +8757,Lovers and Other Strangers (1970),Comedy +8758,Kotch (1971),Comedy|Drama +8759,Greyfriars Bobby (a.k.a. Greyfriars Bobby: The True Story of a Dog) (1961),Children|Drama +8760,Side Out (1990),Comedy|Romance +8761,"Three Lives of Thomasina, The (1964)",Children|Drama +8762,"No Deposit, No Return (1976)",Children|Comedy +8763,"One and Only, Genuine, Original Family Band, The (1968)",Children|Comedy|Musical +8764,Under the Lighthouse Dancing (1997),Drama +8765,This Gun for Hire (1942),Crime|Film-Noir|Thriller +8766,Black Angel (1946),Drama|Film-Noir|Mystery +8767,"Big Clock, The (1948)",Crime|Film-Noir|Thriller +8768,Criss Cross (1949),Crime|Drama|Film-Noir +8769,"5th Musketeer, The (a.k.a. Fifth Musketeer, The) (1979)",Adventure +8770,Evilspeak (1981),Horror|Sci-Fi +8771,Sherlock Holmes: Terror by Night (1946),Crime|Mystery|Thriller +8772,"Spy Who Came in from the Cold, The (1965)",Drama|Thriller +8773,Sherlock Holmes and the Secret Weapon (1942),Crime|Mystery|Thriller +8774,Sherlock Holmes: The Woman in Green (1945),Mystery +8775,"Counterfeit Traitor, The (1962)",Thriller|War +8776,"1, 2, 3, Sun (Un, deuz, trois, soleil) (1993)",Drama +8777,Roadkill (a.k.a. Roadkill: Move or Die) (1989),Drama +8778,Sherlock Holmes: Dressed to Kill (1946),Crime|Mystery +8779,Bon Voyage (2003),Comedy|Drama +8780,"Assassination Bureau, The (1969)",Action|Adventure|Comedy|Crime|Sci-Fi +8781,"Manchurian Candidate, The (2004)",Thriller +8782,Thunderbirds (2004),Action|Adventure|Fantasy|Sci-Fi +8783,"Village, The (2004)",Drama|Mystery|Thriller +8784,Garden State (2004),Comedy|Drama|Romance +8785,Early Summer (Bakushû) (1951),Drama +8786,Port of Shadows (Quai des brumes) (1938),Drama +8787,Thunderbirds Are GO (1966),Action|Sci-Fi +8788,Thunderbird Six (1968),Action|Sci-Fi +8789,Castle Keep (1969),Drama|War +8790,Revengers Tragedy (2002),Comedy|Horror +8792,Octane (2003),Horror|Thriller +8793,PTU (2003),Crime|Drama +8794,"Unfinished Piece for a Player Piano, An (Neokonchennaya pyesa dlya mekhanicheskogo pianino) (1977)",Drama +8795,Musa the Warrior (Musa) (2001),Action|Adventure|Drama|War +8796,"Funny Thing Happened on the Way to the Forum, A (1966)",Comedy|Musical +8797,Salesman (1969),Documentary +8798,Collateral (2004),Action|Crime|Drama|Thriller +8799,Little Black Book (2004),Comedy|Romance +8800,Code 46 (2003),Romance|Sci-Fi +8801,In the Soup (1992),Comedy|Drama +8802,They Came to Cordura (1959),Western +8803,Blue Spring (Aoi haru) (2001),Drama +8804,"Story of Women (Affaire de femmes, Une) (1988)",Drama +8805,Attack the Gas Station! (Juyuso seubgyuksageun) (1999),Comedy|Crime +8806,Masks (Masques) (1987),Thriller +8807,Harold and Kumar Go to White Castle (2004),Adventure|Comedy +8808,"Princess Diaries 2: Royal Engagement, The (2004)",Comedy|Romance +8809,Danny Deckchair (2003),Comedy|Romance +8810,AVP: Alien vs. Predator (2004),Action|Horror|Sci-Fi|Thriller +8811,Yu-Gi-Oh! (2004),Action|Adventure|Animation|Fantasy +8812,Novo (2002),Drama +8813,We Don't Live Here Anymore (2004),Drama +8814,Without a Paddle (2004),Comedy +8815,Exorcist: The Beginning (2004),Horror|Thriller +8816,Speedway (1968),Action +8817,"Trouble with Girls, The (1969)",Comedy|Drama +8818,It Happened at the World's Fair (1963),Comedy|Drama|Musical +8819,Double Trouble (1967),Musical +8820,Spinout (1966),Comedy|Musical +8821,Harum Scarum (1965),Comedy|Musical +8822,"Unidentified Flying Oddball (a.k.a. Spaceman and King Arthur, The) (a.k.a. Spaceman in King Arthur's Court, A) (1979)",Adventure|Comedy|Fantasy|Sci-Fi +8823,"Sting II, The (1983)",Comedy|Crime +8824,If a Man Answers (1962),Comedy +8825,Cheerleader Camp (1987),Comedy|Horror|Mystery +8826,Human Resources (Ressources humaines) (1999),Drama +8827,"Bill Cosby, Himself (1983)",Comedy|Documentary +8828,Dead Ringer (1964),Drama|Thriller +8829,Benji: Off the Leash! (2004),Children|Drama +8830,Anacondas: The Hunt for the Blood Orchid (2004),Adventure|Drama|Horror|Sci-Fi|Thriller +8831,Suspect Zero (2004),Crime|Thriller +8832,Warriors of Heaven and Earth (Tian di ying xiong) (2003),Action|Adventure|Drama +8833,Vanity Fair (2004),Drama|Romance +8834,"Cookout, The (2004)",Comedy +8835,Paparazzi (2004),Drama|Thriller +8836,Wicker Park (2004),Drama|Romance|Thriller +8837,Triggermen (2002),Comedy|Crime +8838,Alice Doesn't Live Here Anymore (1974),Drama|Romance +8839,"Mangler, The (1995)",Horror +8840,Who's That Knocking at My Door? (1967),Drama +8841,Seeing Other People (2004),Comedy +8842,Past Midnight (1992),Horror|Thriller +8843,"Million to Juan, A (1994)",Comedy +8844,Camera Buff (Amator) (1979),Drama +8845,No End (Bez konca) (1985),Drama +8846,Highwaymen (2003),Action|Crime|Thriller +8847,Graffiti Bridge (1990),Drama|Musical +8848,"Vitelloni, I (a.k.a. The Young and the Passionate) (1953)",Drama +8849,Under the Cherry Moon (1986),Comedy|Drama|Musical|Romance +8850,Flipper (1963),Adventure|Children|Drama +8851,Smile (1975),Comedy +8852,Lord Jim (1965),Adventure|Drama +8853,"Small Circle of Friends, A (1980)",Drama +8854,Night of the Demons (1988),Horror +8855,Witchboard (1986),Horror|Mystery|Thriller +8856,Roller Boogie (1979),Drama +8857,Lilith (1964),Drama +8858,"Apple, The (1980)",Musical|Sci-Fi +8859,SuperBabies: Baby Geniuses 2 (2004),Comedy +8860,Cellular (2004),Action|Crime|Drama|Mystery|Thriller +8861,Resident Evil: Apocalypse (2004),Action|Horror|Sci-Fi|Thriller +8862,Criminal (2004),Comedy|Drama +8863,Evergreen (2004),Drama +8864,Mr. 3000 (2004),Comedy|Drama +8865,Sky Captain and the World of Tomorrow (2004),Action|Adventure|Sci-Fi +8866,Wimbledon (2004),Comedy|Romance +8867,Anatomy of Hell (Anatomie de l'enfer) (2004),Drama +8868,Head in the Clouds (2004),Drama|Romance|War +8869,First Daughter (2004),Comedy|Romance +8870,"Forgotten, The (2004)",Drama|Mystery|Sci-Fi|Thriller +8871,"Last Shot, The (2004)",Comedy +8872,"Dirty Shame, A (2004)",Comedy +8873,"Motorcycle Diaries, The (Diarios de motocicleta) (2004)",Adventure|Drama +8874,Shaun of the Dead (2004),Comedy|Horror +8875,"Come Back, Little Sheba (1952)",Drama +8876,"Black Orchid, The (1958)",Drama +8877,Second Chorus (1940),Comedy|Musical|Romance +8878,Class of Nuke 'Em High Part II: Subhumanoid Meltdown (1991),Comedy|Horror|Sci-Fi +8879,Murder on the Orient Express (1974),Crime|Mystery|Thriller +8880,Mask (1985),Drama +8881,Alexander's Ragtime Band (1938),Drama|Musical +8882,"Boston Strangler, The (1968)",Crime|Drama|Mystery|Thriller +8883,"Last Flight of Noah's Ark, The (1980)",Adventure|Children|Comedy +8884,"Man with One Red Shoe, The (1985)",Comedy|Thriller +8885,"Sentinel, The (1977)",Drama|Horror|Mystery|Thriller +8886,SSSSSSS (1973),Horror|Sci-Fi +8887,Whispers in the Dark (1992),Thriller +8888,Stealing Time (a.k.a. Rennie's Landing) (2001),Drama +8889,"Legacy, The (1978)",Horror +8890,"Alligator People, The (1959)",Horror +8891,Hear No Evil (1993),Thriller +8892,Basket Case 3: The Progeny (1992),Comedy|Horror +8893,Basket Case 2 (1990),Comedy|Horror +8894,Orca: The Killer Whale (1977),Action|Drama|Horror|Thriller +8895,AKA (2002),Drama +8896,I Married a Monster from Outer Space (1958),Horror|Sci-Fi +8897,"Trojan Women, The (1971)",Drama +8898,"Robinson Crusoe (Adventures of Robinson Crusoe, The) (1954)",Adventure|Drama +8899,Hardcore (1979),Drama +8900,Watermelon Man (1970),Comedy|Drama +8901,Flashpoint (1984),Action|Adventure|Crime|Mystery|Thriller +8902,Bug (1975),Horror|Mystery|Sci-Fi +8903,"Terror, The (1963)",Horror|Mystery +8904,Jack-O (1995),Horror +8905,1492: Conquest of Paradise (1992),Adventure|Drama +8906,Cannibal Holocaust (1980),Horror +8907,Shark Tale (2004),Animation|Children|Comedy +8908,Ladder 49 (2004),Action|Drama|Thriller +8909,Black Cloud (2004),Drama +8910,I Heart Huckabees (2004),Comedy +8911,Raise Your Voice (2004),Romance +8912,Taxi (2004),Action|Comedy +8913,Around the Bend (2004),Drama +8914,Primer (2004),Drama|Sci-Fi +8915,Stage Beauty (2004),Drama +8916,Shall We Dance? (2004),Comedy|Romance +8917,Team America: World Police (2004),Action|Adventure|Animation|Comedy +8918,Eulogy (2004),Comedy|Crime|Drama +8919,P.S. (2004),Comedy|Drama|Fantasy|Romance +8920,"Country Girl, The (1954)",Drama +8921,"Rose Tattoo, The (1955)",Drama|Romance +8922,Epidemic (1988),Drama|Horror|Thriller +8923,Tess (1979),Drama|Romance +8924,I Wanna Hold Your Hand (1978),Comedy +8925,Spinning Boris (2003),Comedy|Drama +8926,Circle of Iron (1978),Action|Adventure|Fantasy|Mystery +8927,Cannonball (1976),Action|Comedy|Drama +8928,"Fearless Vampire Killers, The (1967)",Comedy|Horror +8929,Black Beauty (1971),Children|Drama +8930,"Five Obstructions, The (Fem benspænd, De) (2003)",Documentary +8931,Born Rich (2003),Documentary +8932,It's Alive (1974),Horror +8933,"Decline of the American Empire, The (Déclin de l'empire américain, Le) (1986)",Comedy|Drama +8934,Bebe's Kids (1992),Animation|Children|Comedy +8935,All I Want for Christmas (1991),Children|Comedy|Romance +8936,"Life and Nothing But (Vie et rien d'autre, La) (1989)",Drama +8937,Friday Night Lights (2004),Action|Drama +8938,Tarnation (2003),Documentary +8939,"Final Cut, The (2004)",Sci-Fi|Thriller +8940,Hair Show (2004),Comedy|Romance +8941,Riding the Bullet (2004),Horror|Thriller +8942,Spin (2003),Children|Drama +8943,Being Julia (2004),Comedy|Drama +8944,"Dust Factory, The (2004)",Adventure|Children|Romance +8945,Thérèse: The Story of Saint Thérèse of Lisieux (2004),Drama +8946,Surviving Christmas (2004),Comedy +8947,"Grudge, The (2004)",Horror|Mystery|Thriller +8948,Alfie (2004),Comedy|Drama|Romance +8949,Sideways (2004),Comedy|Drama|Romance +8950,The Machinist (2004),Drama|Mystery|Thriller +8951,Vera Drake (2004),Drama +8952,Falling Angels (2003),Drama +8953,Stella Street (2004),Comedy +8954,Lightning in a Bottle (2004),Documentary +8955,Undertow (2004),Crime|Drama|Thriller +8956,Enduring Love (2004),Drama +8957,Saw (2004),Horror|Mystery|Thriller +8958,Ray (2004),Drama +8959,Birth (2004),Drama|Mystery +8960,Voices of Iraq (2004),Documentary +8961,"Incredibles, The (2004)",Action|Adventure|Animation|Children|Comedy +8962,Fade to Black (2004),Documentary +8963,It's All About Love (2003),Drama|Romance|Sci-Fi|Thriller +8964,Callas Forever (2002),Drama +8965,"Polar Express, The (2004)",Adventure|Animation|Children|Fantasy|IMAX +8966,Kinsey (2004),Drama +8967,Seed of Chucky (Child's Play 5) (2004),Comedy|Horror +8968,After the Sunset (2004),Action|Adventure|Comedy|Crime|Thriller +8969,Bridget Jones: The Edge of Reason (2004),Comedy|Drama|Romance +8970,Finding Neverland (2004),Drama +8971,Veer Zaara (2004),Drama|Musical|Romance +8972,National Treasure (2004),Action|Adventure|Drama|Mystery|Thriller +8973,Bad Education (La mala educación) (2004),Drama|Thriller +8974,"SpongeBob SquarePants Movie, The (2004)",Adventure|Animation|Children|Comedy +8975,Fabled (2002),Drama|Mystery|Thriller +8976,San Antonio (1945),Western +8977,Alexander (2004),Action|Adventure|Drama|War +8978,Christmas with the Kranks (2004),Children|Comedy +8979,Guerrilla: The Taking of Patty Hearst (2004),Documentary +8980,Our Music (Notre musique) (2004),Drama +8981,Closer (2004),Drama|Romance +8982,I Am David (2003),Drama +8983,House of Flying Daggers (Shi mian mai fu) (2004),Action|Drama|Romance +8984,Ocean's Twelve (2004),Action|Comedy|Crime|Thriller +8985,Blade: Trinity (2004),Action|Fantasy|Horror|Thriller +8986,"Bellboy, The (1960)",Comedy +8987,Bush's Brain (2004),Documentary +8988,Cinderfella (1960),Comedy +8989,Damn Yankees! (1958),Comedy|Musical +8990,"Delicate Delinquent, The (1957)",Comedy +8991,"Disorderly Orderly, The (1964)",Comedy|Romance +8992,"Errand Boy, The (1961)",Comedy +8993,"Family Jewels, The (1965)",Comedy +8994,"Ladies Man, The (1961)",Comedy +8995,"Patsy, The (1964)",Comedy +8996,Stateside (2004),Drama +8997,"Stooge, The (1953)",Comedy +8998,That's Entertainment (1974),Documentary +8999,"That's Entertainment, Part II (1976)",Documentary +9000,That's Entertainment! III (1994),Documentary +9001,"Wackiest Ship in the Army, The (1960)",Comedy|War +9002,Alexander the Great (1956),Drama +9003,Conquest of Space (1955),Sci-Fi +9004,D.A.R.Y.L. (1985),Adventure|Children|Sci-Fi +9005,Fire in the Sky (1993),Drama|Mystery|Sci-Fi +9006,"Garden of Allah, The (1936)",Drama +9007,I'll Be Seeing You (1944),Drama +9008,"Invisible Man Returns, The (1940)",Horror|Sci-Fi +9009,"Last Minute, The (2001)",Drama|Mystery|Thriller +9010,Love Me If You Dare (Jeux d'enfants) (2003),Drama|Romance +9011,Portrait of Jennie (1948),Drama|Fantasy|Mystery|Romance +9012,Ruby Gentry (1952),Drama +9013,Secret Honor (1984),Drama +9014,Since You Went Away (1944),Drama|War +9015,"Slipping-Down Life, A (1999)",Drama|Romance +9016,Splatter University (1984),Horror +9017,Twist (2003),Drama +9018,Control Room (2004),Documentary|War +9019,Celsius 41.11: The Temperature at Which the Brain... Begins to Die (2004),Documentary +25735,"Cheat, The (1915)",Drama +25736,Dr. Jekyll and Mr. Hyde (1920),Drama|Horror|Sci-Fi +25737,"Golem, The (Golem, wie er in die Welt kam, Der) (1920)",Fantasy|Horror +25738,"Last of the Mohicans, The (1920)",Adventure|Drama +25739,"Idle Class, The (1921)",Comedy +25741,"Phantom Carriage, The (Körkarlen) (1921)",Drama +25742,Destiny (a.k.a. Between Two Worlds) (Der müde Tod) (1921),Fantasy +25743,"Sheik, The (1921)",Adventure|Drama|Romance +25744,Haxan: Witchcraft Through the Ages (a.k.a. The Witches) (1922),Documentary|Horror +25745,"Man from Beyond, The (1922)",Mystery +25746,"Hunchback of Notre Dame, The (1923)",Drama|Horror +25747,Why Worry? (1923),Adventure|Comedy|Romance +25748,HE Who Gets Slapped (1924),Drama|Thriller +25749,"Marriage Circle, The (1924)",Comedy +25750,Sherlock Jr. (1924),Comedy|Fantasy|Romance +25751,"Big Parade, The (1925)",Drama|Romance|War +25752,"Freshman, The (1925)",Comedy +25753,Greed (1924),Drama +25755,"Phantom of the Opera, The (1925)",Drama|Horror +25757,"Jazz Singer, The (1927)",Drama|Musical|Romance +25759,October (1928),Drama|War +25760,Old San Francisco (1927),Drama|Romance +25762,"Unknown, The (a.k.a. Alonzo the Armless) (1927)",Drama|Horror|Romance +25763,"Pandora's Box (Büchse der Pandora, Die) (1929)",Drama +25764,"Cameraman, The (1928)",Comedy|Drama|Romance +25765,"Fall of the House of Usher, The (chute de la maison Usher, La) (1928)",Drama|Horror +25766,"Crowd, The (1928)",Drama +25767,"Man Who Laughs, The (1928)",Drama|Romance +25768,Sadie Thompson (1928),Drama +25769,"Steamboat Bill, Jr. (1928)",Comedy|Romance +25770,Applause (1929),Drama|Musical +25771,"Andalusian Dog, An (Chien andalou, Un) (1929)",Fantasy +25773,Little Caesar (1931),Crime|Drama +25774,"Golden Age, The (Âge d'Or, L') (1930)",Comedy|Drama|Romance +25775,"Champ, The (1931)",Drama +25777,Monkey Business (1931),Comedy +25778,Night Nurse (1931),Crime|Drama|Mystery|Thriller +25782,Boudu Saved From Drowning (Boudu sauvé des eaux) (1932),Comedy +25783,Doctor X (1932),Horror|Thriller +25785,"Land Without Bread (Hurdes, tierra sin pan, Las) (1933)",Documentary|Drama +25786,"Old Dark House, The (1932)",Drama|Horror|Thriller +25787,Rasputin and the Empress (1932),Drama +25788,Scarface (1932),Crime|Drama +25789,Shanghai Express (1932),Adventure|Drama|Romance +25792,"I Was Born, But... (a.k.a. Children of Tokyo) (Otona no miru ehon - Umarete wa mita keredo) (1932)",Comedy|Drama +25793,Vampyr (1932),Fantasy|Horror +25794,What Price Hollywood? (1932),Drama +25795,Dinner at Eight (1933),Comedy|Drama|Romance +25796,"Ghoul, The (1933)",Drama|Horror +25797,Gold Diggers of 1933 (1933),Musical +25798,Island of Lost Souls (1932),Adventure|Horror|Romance|Sci-Fi +25800,Lady for a Day (1933),Comedy +25801,She Done Him Wrong (1933),Comedy|Romance +25802,"Son of Kong, The (1933)",Adventure|Comedy|Fantasy +25803,"Vampire Bat, The (1933)",Horror +25804,Wild Boys of the Road (1933),Adventure|Drama|Romance +25805,"Atalante, L' (1934)",Comedy|Drama|Romance +25806,"Barretts of Wimpole Street, The (a.k.a. Forbidden Alliance) (1934)",Drama|Romance +25807,"Black Cat, The (1934)",Adventure|Crime|Horror|Thriller +25808,Imitation of Life (1934),Drama|Romance +25809,"Lawless Frontier, The (1934)",Romance|Western +25810,"Lost Patrol, The (1934)",Adventure|Drama|War +25811,"Merry Widow, The (1934)",Comedy|Musical|Romance +25812,"Scarlet Pimpernel, The (1934)",Adventure|Comedy +25814,Toni (1935),Drama +25816,Bonnie Scotland (Heroes of the Regiment) (1935),Comedy +25817,Break of Hearts (1935),Drama|Romance +25818,"Informer, The (1935)",Crime|Drama +25819,Mark of the Vampire (1935),Horror|Mystery +25820,"Raven, The (1935)",Horror +25822,Werewolf of London (1935),Drama|Fantasy|Horror|Sci-Fi +25824,"Crime of Monsieur Lange, The (Le crime de Monsieur Lange) (1936)",Comedy|Crime|Drama +25825,Fury (1936),Drama|Film-Noir +25826,Libeled Lady (1936),Comedy|Romance +25827,Mr. Deeds Goes to Town (1936),Comedy|Romance +25828,"Petrified Forest, The (1936)",Crime|Drama|Romance +25829,Revolt of the Zombies (1936),Horror|War +25830,Show Boat (1936),Comedy|Drama|Musical|Romance +25831,These Three (1936),Drama|Romance +25832,Wife vs. Secretary (1936),Comedy|Drama|Romance +25833,Camille (1936),Drama|Romance +25834,Captains Courageous (1937),Adventure|Drama +25835,Dead End (1937),Crime|Drama|Film-Noir +25837,Double Wedding (1937),Comedy|Romance +25839,Nothing Sacred (1937),Comedy|Drama|Romance +25840,"Prisoner of Zenda, The (1937)",Action|Adventure|Romance +25841,Stage Door (1937),Drama +25842,Topper (1937),Comedy|Fantasy|Romance +25843,"Big Broadcast of 1938, The (1938)",Comedy|Musical|Romance +25846,"Dawn Patrol, The (1938)",Drama|War +25850,Holiday (1938),Comedy|Drama|Romance +25851,"Shopworn Angel, The (1938)",Drama|Romance|War +25852,Gaslight (1940),Mystery|Thriller +25854,Intermezzo (1939),Drama|Romance +25855,"Roaring Twenties, The (1939)",Crime|Drama|Thriller +25856,Wuthering Heights (1939),Drama|Romance +25858,"Story of the Late Chrysanthemums, The (Zangiku monogatari) (1939)",Drama +25859,Abe Lincoln in Illinois (1940),Drama +25860,Boom Town (1940),Adventure|Drama|Romance +25861,Brother Orchid (1940),Comedy|Crime|Drama|Romance +25864,"Edison, the Man (1940)",Drama +25865,"Letter, The (1940)",Drama|Film-Noir +25866,"Sea Hawk, The (1940)",Action|Adventure|Romance +25868,Ball of Fire (1941),Comedy|Romance +25869,"47 Ronin, The (Genroku Chûshingura) (1941)",Drama +25870,Here Comes Mr. Jordan (1941),Comedy|Fantasy|Romance +25871,In the Navy (1941),Comedy|Musical +25872,It Started with Eve (1941),Comedy|Musical|Romance +25874,Never Give a Sucker an Even Break (1941),Comedy|Musical +25875,That Uncertain Feeling (1941),Comedy +25878,Across the Pacific (1942),Action|Adventure|Romance|War +25879,All Through the Night (1941),Action|Comedy|Drama|Thriller|War +25881,Gentleman Jim (1942),Comedy|Drama|Romance +25882,"Hard Way, The (1943)",Drama +25884,My Favorite Blonde (1942),Comedy|Romance|Thriller +25886,Random Harvest (1942),Drama|Romance +25887,Tales of Manhattan (1942),Comedy|Drama +25888,Action in the North Atlantic (1943),Action|War +25890,"Guy Named Joe, A (1943)",Drama|Fantasy|Romance|War +25891,Heaven Can Wait (1943),Comedy|Fantasy|Romance +25892,"Heavenly Body, The (1944)",Comedy|Romance +25893,"Memphis Belle: A Story of a Flying Fortress, The (1944)",Documentary|War +25894,Mr. Lucky (1943),Comedy|Romance +25897,Thousands Cheer (1943),Comedy|Drama|Musical +25898,Day of Wrath (Vredens dag) (1943),Drama +25899,Cover Girl (1944),Comedy|Musical +25900,"Curse of the Cat People, The (1944)",Drama +25901,"Henry V (Chronicle History of King Henry the Fift with His Battell Fought at Agincourt in France, The) (1944)",Drama|War +25902,Torment (Hets) (1944),Drama +25903,"Mask of Dimitrios, The (1944)",Crime|Drama|Film-Noir|Mystery +25904,Ministry of Fear (1944),Drama|Film-Noir|Thriller +25905,"Miracle of Morgan's Creek, The (1944)",Comedy|Romance +25906,Mr. Skeffington (1944),Drama|Romance +25907,Mrs. Parkington (1944),Drama|Romance +25908,Passage to Marseille (1944),Adventure|Drama|War +25910,"White Cliffs of Dover, The (1944)",Drama|Romance|War +25911,"Woman in the Window, The (1944)",Crime|Film-Noir|Thriller +25912,"Enchanted Cottage, The (1945)",Drama|Romance +25913,Isle of the Dead (1945),Horror|Thriller +25914,"Ivan the Terrible, Part One (Ivan Groznyy I) (1944)",Drama +25915,"Southerner, The (1945)",Drama +25916,They Were Expendable (1945),Drama|War +25918,"Tree Grows in Brooklyn, A (1945)",Drama +25919,"Beast with Five Fingers, The (1946)",Horror +25920,"Blue Dahlia, The (1946)",Crime|Drama|Film-Noir|Mystery|Thriller +25921,"Dark Mirror, The (1946)",Film-Noir|Thriller +25922,Deception (1946),Drama|Film-Noir|Thriller +25923,Great Expectations (1946),Drama +25924,Humoresque (1946),Drama|Romance +25926,Shoeshine (Sciuscià) (1946),Drama +25927,"Stranger, The (1946)",Drama|Film-Noir|Thriller +25928,Mourning Becomes Electra (1947),Drama +25929,Nightmare Alley (1947),Drama|Film-Noir +25930,Odd Man Out (1947),Crime|Drama|Film-Noir|Thriller +25931,Road to Rio (1947),Adventure|Comedy|Musical|Romance +25932,"Two Mrs. Carrolls, The (1947)",Crime|Drama|Film-Noir|Thriller +25934,3 Godfathers (1948),Drama|Western +25935,B.F.'s Daughter (1948),Drama|Romance +25936,"Babe Ruth Story, The (1948) ",Drama +25937,Easter Parade (1948),Musical|Romance +25938,Fort Apache (1948),Western +25940,"Lady from Shanghai, The (1947)",Drama|Film-Noir|Mystery +25941,Letter from an Unknown Woman (1948),Drama|Romance +25942,Louisiana Story (1948),Drama +25943,"Naked City, The (1948)",Crime|Drama|Film-Noir|Mystery +25944,"Pirate, The (1948)",Adventure|Comedy|Musical|Romance +25945,They Live by Night (1949),Crime|Film-Noir|Romance +25946,"Three Musketeers, The (1948)",Action|Adventure|Drama|Romance +25947,Unfaithfully Yours (1948),Comedy +25948,Yellow Sky (1948),Crime|Western +25950,"Barkleys of Broadway, The (1949)",Comedy|Musical +25951,In the Good Old Summertime (1949),Musical +25952,"Letter to Three Wives, A (1949)",Comedy|Drama +25954,Orpheus (Orphée) (1950),Drama|Fantasy|Romance +25956,"Secret Garden, The (1949)",Children|Drama +25957,"Story of Seabiscuit, The (1949)",Drama|Romance +25959,Annie Get Your Gun (1950),Comedy|Musical|Romance|Western +25960,"Terrible Kids (Enfants terribles, Les) (Strange Ones, The) (1950)",Drama +25961,"Gunfighter, The (1950)",Action|Western +25962,King Solomon's Mines (1950),Action|Adventure|Romance +25963,"Young and the Damned, The (Olvidados, Los) (1950)",Crime|Drama +25964,Scandal (Shubun) (1950),Drama +25965,Summer Stock (1950),Comedy|Musical|Romance +25966,"Greatest Love, The (Europa '51) (1952)",Drama +25970,Carbine Williams (1952),Crime|Drama +25971,Carrie (1952),Drama|Romance +25972,Clash by Night (1952),Drama|Film-Noir +25974,"Prisoner of Zenda, The (1952)",Adventure +25975,"Life of Oharu, The (Saikaku ichidai onna) (1952)",Drama +25976,Son of Paleface (1952),Action|Comedy|Romance|Western +25977,Abbott and Costello Meet Dr. Jekyll and Mr. Hyde (1953),Comedy|Horror|Sci-Fi +25979,Gun Fury (1953),Action|Adventure|Crime|Western +25980,Gate of Hell (Jigokumon) (1953),Drama|Romance +25981,Man on a Tightrope (1953),Drama +25984,"Titfield Thunderbolt, The (1953)",Comedy +25986,"Belles of St. Trinian's, The (1954)",Comedy +25987,"Crucified Lovers, The (Chikamatsu monogatari) (1954)",Drama +25989,French Cancan (1954),Comedy|Drama|Musical|Romance +25990,It Should Happen to You (1954),Comedy|Romance +25991,"Long, Long Trailer, The (1953)",Comedy|Romance +25993,Magnificent Obsession (1954),Drama|Romance +25994,Salt of the Earth (1954),Drama +25995,Samurai I: Musashi Miyamoto (Miyamoto Musashi) (1954),Action|Adventure|Drama +25996,"Star Is Born, A (1954)",Drama|Musical +25998,Three Coins in the Fountain (1954),Drama|Romance +25999,The Wild One (1953),Drama +26000,"Cobweb, The (1955)",Drama +26001,It's Always Fair Weather (1955),Comedy|Drama|Musical +26002,Confidential Report (1955),Crime|Drama|Mystery|Thriller +26003,Night and Fog (Nuit et brouillard) (1955),Crime|Documentary|War +26005,Samurai II: Duel at Ichijoji Temple (Zoku Miyamoto Musashi: Ichijôji no kettô) (1955),Action|Adventure|Drama +26006,"Seven Little Foys, The (1955)",Comedy|Drama +26007,"Unknown Soldier, The (Tuntematon sotilas) (1955)",Drama|War +26008,Anything Goes (1956),Musical +26009,"Burmese Harp, The (Biruma no tategoto) (1956)",Drama|War +26010,Carousel (1956),Musical|Romance +26012,Samurai III: Duel on Ganryu Island (a.k.a. Bushido) (Miyamoto Musashi kanketsuhen: kettô Ganryûjima) (1956),Action|Adventure|Drama +26013,Rodan (Sora no daikaijû Radon) (1956),Adventure +26016,All at Sea (1957),Comedy +26018,Chase a Crooked Shadow (1958),Crime|Film-Noir|Mystery|Thriller +26019,Fiend Without a Face (1958),Horror|Sci-Fi|Thriller +26021,Jailhouse Rock (1957),Crime|Drama|Musical|Romance +26022,Man of a Thousand Faces (1957),Drama +26025,"Spirit of St. Louis, The (1957)",Adventure|Drama +26026,"Undead, The (1957)",Fantasy|Horror +26027,Zero Hour! (1957),Drama|Thriller +26028,Carve Her Name with Pride (1958),Drama|War +26030,Corridors of Blood (1958),Crime|Drama|Horror|Thriller +26033,Giants and Toys (Kyojin to gangu) (1958),Comedy|Drama +26034,"Last Hurrah, The (1958)",Drama +26035,Machine Gun Kelly (1958),Action|Crime +26038,Teacher's Pet (1958),Comedy|Romance +26042,Torpedo Run (1958),Drama|War +26043,"Vikings, The (1958)",Action|Adventure +26044,Al Capone (1959),Crime|Drama +26046,Picnic on the Grass (Le déjeuner sur l'herbe) (1959),Comedy|Romance +26047,Invisible Invaders (1959),Horror|Sci-Fi +26048,"Human Condition II, The (Ningen no joken II) (1959)",Drama|War +26049,Fires on the Plain (Nobi) (1959),Drama|War +26050,North West Frontier (1959),Adventure|Drama|War +26051,"Nun's Story, The (1959)",Drama +26052,Pickpocket (1959),Crime|Drama +26055,Floating Weeds (Ukigusa) (1959),Drama +26056,"Young Philadelphians, The (1959)",Drama +26058,"Leech Woman, The (1960)",Horror|Sci-Fi +26059,When a Woman Ascends the Stairs (Onna ga kaidan wo agaru toki) (1960),Drama +26062,"Sundowners, The (1960)",Adventure|Drama +26063,Sunrise at Campobello (1960),Drama +26064,"Bad Sleep Well, The (Warui yatsu hodo yoku nemuru) (1960)",Drama|Thriller +26066,Bachelor in Paradise (1961),Comedy|Romance +26067,"Deadly Companions, The (1961)",Western +26068,"4 Horsemen of the Apocalypse, The (1962)",Drama +26070,"Intruder, The (1962)",Drama +26072,Murder She Said (1961),Comedy|Crime|Drama|Mystery +26073,"Human Condition III, The (Ningen no joken III) (1961)",Drama|War +26074,Paris Blues (1961),Drama|Romance +26076,Scream of Fear (a.k.a. Taste of Fear) (1961),Horror|Mystery|Thriller +26078,Advise and Consent (1962),Drama +26079,David and Lisa (1962),Drama +26080,Eegah (1962),Fantasy|Horror|Romance|Thriller +26082,Harakiri (Seppuku) (1962),Drama +26083,"Loneliness of the Long Distance Runner, The (1962)",Drama +26084,"Music Man, The (1962)",Children|Comedy|Musical|Romance +26085,Mutiny on the Bounty (1962),Adventure|Drama|Romance +26088,"Four Days of Naples, The (Le quattro giornate di Napoli) (1962)",Drama|War +26090,"Easy Life, The (Il Sorpasso) (1962)",Comedy|Drama +26093,"Wonderful World of the Brothers Grimm, The (1962)",Adventure|Animation|Children|Comedy|Drama|Fantasy|Musical|Romance +26094,"Eclisse, L' (Eclipse) (1962)",Drama +26095,"Carabineers, The (Carabiniers, Les) (1963)",Comedy|Drama|War +26096,"Cardinal, The (1963)",Drama +26098,"Incredibly Strange Creatures Who Stopped Living and Became Mixed-Up Zombies!!?, The (1964)",Horror|Mystery +26099,"Kiss of the Vampire, The (1963)",Horror +26100,Love with the Proper Stranger (1963),Comedy|Drama|Romance +26101,McLintock! (1963),Comedy|Western +26104,Murder at the Gallop (1963),Comedy|Crime|Drama|Mystery|Thriller +26106,"New Kind of Love, A (1963)",Comedy +26107,"Prize, The (1963)",Drama|Mystery|Thriller +26108,Sunday in New York (1963),Comedy|Romance +26109,Crooks in Clover (a.k.a. Monsieur Gangster) (Les tontons flingueurs) (1963),Action|Comedy|Crime +26110,36 Hours (1965),Thriller|War +26111,Becket (1964),Drama +26112,Behold a Pale Horse (1964),Drama|War +26113,"Best Man, The (1964)",Comedy|Drama +26116,"Hush... Hush, Sweet Charlotte (1964)",Horror|Thriller +26117,"Killers, The (1964)",Action|Crime|Drama|Film-Noir|Thriller +26119,"Naked Kiss, The (1964)",Drama +26122,Onibaba (1964),Drama|Horror|War +26123,Robin and the 7 Hoods (1964),Comedy|Crime|Musical +26124,Robinson Crusoe on Mars (1964),Sci-Fi +26125,"Spider Baby or, The Maddest Story Ever Told (Spider Baby) (1968)",Comedy|Horror +26127,"Visit, The (1964)",Drama +26128,What a Way to Go! (1964),Comedy|Musical|Romance +26130,Docking the Boat (Att angöra en brygga) (1965),Comedy|Drama|Romance +26131,"Battle of Algiers, The (La battaglia di Algeri) (1966)",Drama|War +26133,"Charlie Brown Christmas, A (1965)",Animation|Children|Comedy +26134,Dracula: Prince of Darkness (1966),Horror|Mystery +26136,"Hallelujah Trail, The (1965)",Comedy|Western +26137,"Heroes of Telemark, The (1965) ",Action|Drama|War +26138,"Hill, The (1965)",Drama|War +26139,In Harm's Way (1965),Drama|War +26140,Incubus (1966),Horror +26141,"Loved One, The (1965)",Comedy +26142,Major Dundee (1965),Adventure|War|Western +26144,Operation Crossbow (1965),Action|Adventure|War +26146,Ride in the Whirlwind (1965),Western +26147,"Thousand Clowns, A (1965)",Comedy|Drama|Romance +26148,"Train, The (1964)",Action|Thriller|War +26150,Andrei Rublev (Andrey Rublyov) (1969),Drama|War +26151,Au Hasard Balthazar (1966),Crime|Drama +26152,Batman (1966),Action|Adventure|Comedy +26153,Grand Prix (1966),Drama +26155,Khartoum (1966),Action|Adventure|Drama|War +26156,Dragon Gate Inn (Dragon Inn) (Long men kezhan) (1967),Action|Adventure +26157,Manos: The Hands of Fate (1966),Horror +26158,Closely Watched Trains (Ostre sledované vlaky) (1966),Comedy|Drama|War +26159,Tokyo Drifter (Tôkyô nagaremono) (1966),Action|Crime|Drama +26160,Asterix and the Gauls (Astérix le Gaulois) (1967),Action|Adventure|Animation|Children|Comedy +26162,Gappa: The Triphibian Monsters (AKA Monster from a Prehistoric Planet) (Daikyojû Gappa) (1967),Sci-Fi +26163,Don't Look Back (1967),Documentary|Musical +26164,Fando and Lis (Fando y Lis) (1968),Adventure|Fantasy +26167,The Incident (1967),Crime|Drama +26169,Branded to Kill (Koroshi no rakuin) (1967),Action|Crime|Drama +26170,"Bride Wore Black, The (La mariée était en noir) (1968)",Crime|Drama +26171,Play Time (a.k.a. Playtime) (1967),Comedy +26172,Point Blank (1967),Action|Crime|Drama|Thriller +26174,The Shooting (1966),Western +26175,"St. Valentine's Day Massacre, The (1967)",Crime|Drama +26176,Titicut Follies (1967),Documentary|Drama +26177,Tony Rome (1967),Crime|Drama|Thriller +26178,Two for the Road (1967),Comedy|Drama|Romance +26180,Up the Down Staircase (1967),Drama +26181,"War Wagon, The (1967)",Action|Western +26183,Asterix and Cleopatra (Astérix et Cléopâtre) (1968),Action|Adventure|Animation|Children|Comedy +26184,"Diamond Arm, The (Brilliantovaya ruka) (1968)",Action|Adventure|Comedy|Crime|Thriller +26185,Dracula Has Risen from the Grave (1968),Horror|Romance|Thriller +26187,Head (1968),Comedy|Fantasy|Musical +26188,"Heart Is a Lonely Hunter, The (1968)",Drama +26189,"I Love You, Alice B. Toklas! (1968)",Comedy +26191,Petulia (1968),Drama +26194,"Subject Was Roses, The (1968)",Drama +26195,Sympathy for the Devil (1968),Documentary|Musical +26197,War and Peace (Voyna i mir) (1967),Drama|Romance|War +26198,"Yours, Mine and Ours (1968)",Children|Comedy +26199,Alice's Restaurant (1969),Comedy|Drama +26202,Camille 2000 (1969),Drama|Romance +26203,Colossus: The Forbin Project (1970),Sci-Fi|Thriller +26204,Death Rides a Horse (Da uomo a uomo) (1967),Action|Western +26205,"Goodbye, Mr. Chips (1969)",Drama|Musical|Romance +26206,Journey to the Far Side of the Sun (a.k.a. Doppelgänger) (1969),Fantasy|Mystery|Sci-Fi|Thriller +26207,Last Summer (1969),Drama +26208,My Night At Maud's (Ma Nuit Chez Maud) (1969),Comedy|Drama|Romance +26209,"Magic Christian, The (1969)",Comedy +26210,Marlowe (1969),Crime|Drama|Mystery +26211,More (1969),Crime|Drama|Romance +26213,"Reivers, The (1969)",Comedy|Drama +26214,Taste the Blood of Dracula (1970),Horror +26215,"Joke, The (Zert) (1969)",Drama +26216,...tick... tick... tick... (1970),Action|Drama +26219,Brewster McCloud (1970),Comedy +26220,"Violent City (Family, The) (Città violenta) (1970)",Action|Crime|Drama +26221,Dirty Dingus Magee (1970),Comedy|Western +26222,Dodes'ka-den (Clickety-Clack) (1970),Drama|Fantasy +26223,Gamera vs. Jiger (1970),Action|Fantasy|Sci-Fi +26225,"Claire's Knee (Genou de Claire, Le) (1970)",Comedy|Romance +26226,"Hi, Mom! (1970)",Comedy +26227,House of Dark Shadows (1970),Drama|Horror|Romance +26228,"Swedish Love Story, A (Kärlekshistoria, En) (1970)",Drama|Romance +26229,"Landlord, The (1970)",Comedy|Drama +26230,On a Clear Day You Can See Forever (1970),Comedy|Musical|Romance +26231,Performance (1970),Crime|Drama|Thriller +26232,Rejs (1970),Comedy +26235,Long Live Death (Viva la muerte) (1971),Drama|War +26236,"White Sun of the Desert, The (Beloe solntse pustyni) (1970)",Action|Adventure|Comedy|Drama|Romance|War +26237,Zabriskie Point (1970),Drama|Romance +26240,"Beguiled, The (1971)",Drama|Thriller|War +26241,The Devils (1971),Drama +26242,Duel (1971),Action|Mystery|Thriller +26243,Evil Roy Slade (1972),Comedy|Western +26245,"Go-Between, The (1970)",Drama|Romance +26246,Johnny Got His Gun (1971),Drama|War +26247,Lawman (1971),Western +26248,Let's Scare Jessica to Death (1971),Horror|Mystery +26249,They Call Me Trinity (1971),Comedy|Western +26251,Mon Oncle Antoine (1971),Drama +26252,"New Leaf, A (1971)",Comedy|Romance +26253,Nicholas and Alexandra (1971),Drama|War +26254,Von Richthofen and Brown (1971),Action|Drama|War +26256,Support Your Local Gunfighter (1971),Comedy|Romance|Western +26257,Sweet Sweetback's Baadasssss Song (1971),Crime|Drama|Thriller +26258,"Topo, El (1970)",Fantasy|Western +26259,"Emigrants, The (Utvandrarna) (1971)",Drama +26263,Fiend with the Electronic Brain (Blood of Ghastly Horror) (1972),Horror|Sci-Fi +26264,Brother John (1971),Drama|Sci-Fi +26265,Dr. Phibes Rises Again (1972),Adventure|Comedy|Horror|Romance +26266,Dracula A.D. 1972 (1972),Horror|Thriller +26267,Get to Know Your Rabbit (1972),Comedy +26268,The Tall Blond Man with One Black Shoe (1972),Comedy|Mystery +26269,Lone Wolf and Cub: Sword of Vengeance (Kozure Ôkami: Kowokashi udekashi tsukamatsuru) (1972),Action|Crime +26270,Lone Wolf and Cub: Baby Cart at the River Styx (Kozure Ôkami: Sanzu no kawa no ubaguruma) (1972),Action|Adventure +26271,Lady Sings the Blues (1972),Drama|Musical +26274,Payday (1973),Drama +26277,Slither (1973),Comedy|Crime|Thriller +26280,Traffic (Trafic) (1971),Comedy +26282,"Mad Adventures of Rabbi Jacob, the (Les Aventures de Rabbi Jacob) (1973)",Comedy +26283,Charley Varrick (1973),Crime|Drama|Thriller +26285,Dark Star (1974),Comedy|Sci-Fi|Thriller +26287,"Delicate Balance, A (1973)",Drama +26288,Dracula (1973),Horror +26289,Emperor of the North (Emperor of the North Pole) (1973),Action|Drama|Thriller +26290,Executive Action (1973),Crime|Drama +26291,"Glass Menagerie, The (1973)",Drama +26294,My Name Is Nobody (Il Mio nome è Nessuno) (1973),Comedy|Western +26295,Invasion of the Bee Girls (1973),Horror|Mystery|Sci-Fi +26297,Lemora: A Child's Tale of the Supernatural (1973),Horror +26299,Phase IV (1974),Horror|Sci-Fi|Thriller +26301,Save the Tiger (1973),Drama +26302,Scarecrow (1973),Drama +26303,Sisters (1973),Horror|Thriller +26304,"Spook Who Sat by the Door, The (1973)",Action|Crime|Drama +26306,Theatre of Blood (1973),Comedy|Horror|Mystery +26307,Five Fingers of Death (1972),Action|Drama|Romance +26308,Turkish Delight (Turks fruit) (1973),Drama|Romance +26309,Walking Tall (1973),Action|Crime|Drama|Thriller +26312,Butley (1974),Drama +26313,California Split (1974),Comedy|Drama +26314,"Cars That Ate Paris, The (1974)",Comedy|Horror|Thriller +26315,Conrack (1974),Drama +26316,Let Sleeping Corpses Lie (Non si deve profanare il sonno dei morti) (1974),Horror +26317,Emmanuelle (1974),Drama|Romance +26318,"Phantom of Liberty, The (Fantôme de la liberté, Le) (1974)",Comedy|Drama +26320,Flesh for Frankenstein (a.k.a. Andy Warhol's Frankenstein) (1973),Drama|Horror|Sci-Fi +26321,Général Idi Amin Dada: A Self Portrait (Général Idi Amin Dada: Autoportrait) (1974),Documentary|War +26322,Gone in 60 Seconds (1974),Action|Crime|Drama +26323,"Groove Tube, The (1974)",Comedy +26324,Harry and Tonto (1974),Comedy|Drama +26325,Hearts and Minds (1974),Documentary|War +26326,"Holy Mountain, The (Montaña sagrada, La) (1973)",Drama +26327,"Little Prince, The (1974)",Children|Musical|Sci-Fi +26333,"Terminal Man, The (1974)",Sci-Fi|Thriller +26334,Thieves Like Us (1974),Crime|Drama|Romance +26336,"Adventure of Sherlock Holmes' Smarter Brother, The (1975)",Comedy|Crime|Mystery +26338,Cousin cousine (1975),Comedy|Romance +26339,Dolemite (1975),Action|Comedy|Crime|Mystery|Thriller +26340,"Twelve Tasks of Asterix, The (Les douze travaux d'Astérix) (1976)",Action|Adventure|Animation|Children|Comedy|Fantasy +26341,Emmanuelle 2 (1975),Drama +26342,"Farewell, My Lovely (1975)",Crime|Mystery|Thriller +26343,"Fortune, The (1975)",Comedy|Crime|Romance +26344,French Connection II (1975),Action|Crime|Drama|Thriller +26345,"Great Waldo Pepper, The (1975)",Drama|Romance +26346,"Story of Adele H., The (Histoire d'Adèle H., L') (1975)",Drama +26347,"Irony of Fate, or Enjoy Your Bath! (Ironiya sudby, ili S legkim parom!) (1975)",Comedy|Drama|Romance +26349,Night Moves (1975),Crime|Thriller +26350,"Passenger, The (Professione: reporter) (1975)",Drama +26353,"Hand of Death, The (Shao Lin men) (1976)",Action +26354,Sister Street Fighter (Onna hissatsu ken) (1974),Action|Drama +26356,Supervixens (1975),Comedy|Thriller +26359,1900 (Novecento) (1976),Drama|War +26360,"Small Change (Argent de poche, L') (1976)",Comedy|Drama +26361,Baby Blue Marine (1976),Drama +26362,Twenty Days Without War (Dvadtsat dney bez voyny) (1981),Drama|Romance|War +26364,From Noon Till Three (1976),Comedy|Romance|Western +26365,Futureworld (1976),Sci-Fi|Thriller +26366,Harlan County U.S.A. (1976),Documentary +26368,"Marquise of O, The (Marquise von O..., Die) (1976)",Drama +26369,Maîtresse (Mistress) (1975),Drama|Romance +26370,"Message, The (a.k.a. Mohammad: Messenger of God) (1976)",Adventure|Drama|War +26371,The Missouri Breaks (1976),Drama|Western +26372,"Slave of Love, A (Raba lyubvi) (1976)",Drama|Romance +26375,Silver Streak (1976),Action|Comedy|Crime +26377,Up! (1976),Comedy +26378,Who Can Kill a Child? (a.k.a. Island of the Damned) (¿Quién puede matar a un niño?) (1976),Horror|Mystery|Thriller +26379,Jesus of Nazareth (1977),Drama +26380,ABBA: The Movie (1977),Musical +26383,Demon Seed (1977),Horror|Sci-Fi|Thriller +26386,High Anxiety (1977),Comedy|Thriller +26387,"Man Who Loved Women, The (Homme qui aimait les femmes, L') (1977)",Comedy|Drama|Romance +26388,"Hound of the Baskervilles, The (1978)",Comedy|Crime|Mystery +26389,"Hell Without Limits (Lugar sin límites, El) (1978)",Drama +26391,"New York, New York (1977)",Drama|Musical|Romance +26392,Providence (1977),Drama +26393,Sorcerer (1977),Action|Thriller +26394,"Turning Point, The (1977)",Drama|Romance +26395,"Rutles: All You Need Is Cash, The (1978)",Comedy +26397,Brass Target (1978),Action|Drama|Mystery|Thriller +26398,Capricorn One (1978),Drama|Sci-Fi|Thriller +26399,Five Deadly Venoms (1978),Action +26400,Gates of Heaven (1978),Documentary +26401,Last Hurrah for Chivalry (Hao xia) (1979),Action|Drama +26402,Harper Valley P.T.A. (1978),Comedy +26404,In Praise of Older Women (1978),Drama +26409,"Clonus Horror, The (1979)",Horror|Sci-Fi +26410,"Grapes of Death, The (Raisins de la mort, Les) (1978)",Horror +26411,"Adventures of Picasso, The (Picassos äventyr) (1978)",Comedy +26413,Snake in the Eagle's Shadow (Se ying diu sau) (1978),Action|Comedy +26414,"Wedding, A (1978)",Comedy|Drama +26416,Best Boy (1979),Documentary +26417,French Fried Vacation 2 (Les bronzés font du ski) (1979),Comedy +26418,Buffet froid (1979),Comedy|Crime +26422,Hair (1979),Comedy|Drama|Musical +26424,I as in Icarus (I... comme Icare) (1979),Thriller +26425,"In-Laws, The (1979)",Action|Comedy +26429,Love at First Bite (1979),Comedy|Horror|Romance +26430,"Luna, La (1979)",Drama +26431,Opening Night (1977),Drama +26432,Quintet (1979),Mystery|Sci-Fi +26433,Rockers (1978),Comedy|Drama|Musical +26435,Starting Over (1979),Comedy|Romance +26438,Defiance (1980),Action|Crime|Drama +26446,Genocide (1982),Documentary +26448,Pelle Svanslös (1981),Animation|Children +26450,Treasure of the Yankee Zephyr (1981),Action|Adventure|Drama +26459,"Scarlet Pimpernel, The (1982)",Action|Drama|Romance +26462,Bad Boys (1983),Crime|Drama|Thriller +26463,Barefoot Gen (Hadashi no Gen) (1983),Animation|Drama|War +26464,Blue Thunder (1983),Action|Crime|Drama +26465,D.C. Cab (1983),Action|Comedy +26467,"Day After, The (1983)",Drama|Sci-Fi +26468,Deal of the Century (1983),Comedy +26470,Doctor Detroit (1983),Comedy +26471,Eddie Murphy Delirious (1983),Comedy|Documentary +26472,"Norte, El (1984)",Adventure|Drama +26475,Lianna (1983),Drama|Romance +26476,Merry Christmas Mr. Lawrence (1983),Drama|War +26479,"Pirates of Penzance, The (1983)",Adventure|Comedy|Musical|Romance +26481,First Name: Carmen (Prénom Carmen) (1983),Crime|Drama|Romance +26483,Rock & Rule (1983),Animation|Fantasy|Musical|Sci-Fi +26484,Sugar Cane Alley (Rue cases nègres) (1983),Drama +26485,Rumble Fish (1983),Drama +26486,"Makioka Sisters, The (Sasame-yuki) (1983)",Drama|Romance +26487,Star 80 (1983),Drama +26488,"Star Chamber, The (1983)",Action|Crime|Drama|Thriller +26490,Stroker Ace (1983),Action|Comedy|Romance +26491,To Be or Not to Be (1983),Comedy|Romance|War +26492,Twilight Zone: The Movie (1983),Fantasy|Horror|Sci-Fi|Thriller +26493,"4th Man, The (Fourth Man, The) (Vierde man, De) (1983)",Drama|Mystery|Thriller +26494,Suburbia (1984),Drama +26495,Yellowbeard (1983),Action|Adventure|Comedy +26496,One Deadly Summer (L'été meurtrier) (1983),Comedy|Drama|Mystery +26497,Another Country (1984),Drama|Romance +26498,Boy Meets Girl (1984),Drama +26501,Choose Me (1984),Comedy|Romance +26504,Cloak & Dagger (1984),Action|Adventure|Children|Crime|Mystery|Thriller +26505,Comfort and Joy (1984),Comedy +26507,Dangerous Moves (La diagonale du fou) (1984),Drama|Thriller +26509,Electric Dreams (1984),Comedy|Drama|Romance|Sci-Fi +26512,"Hit, The (1984)",Crime|Drama|Thriller +26513,"Ice Pirates, The (1984)",Action|Adventure|Comedy|Sci-Fi +26514,Irreconcilable Differences (1984),Comedy|Drama|Romance +26519,Next of Kin (1984),Comedy|Drama +26520,Full Moon in Paris (Les nuits de la pleine lune) (1984),Drama|Romance +26521,Racing with the Moon (1984),Comedy|Drama|Romance +26523,"Silent Night, Deadly Night (1984)",Horror|Thriller +26524,"Times of Harvey Milk, The (1984)",Documentary +26526,Drunken Tai Chi (Siu taai gik) (1984),Action|Comedy +26527,What Have I Done to Deserve This? (¿Qué he hecho yo para merecer esto!!) (1984),Comedy|Drama +26529,Asterix vs. Caesar (Astérix et la surprise de César) (1985),Adventure|Animation|Children|Comedy +26530,Barbarian Queen (1985),Action|Adventure|Fantasy +26532,Beer (1985),Comedy +26536,Bliss (1985),Comedy|Drama +26538,Creator (1985),Comedy|Drama|Romance +26539,Death of a Salesman (1985),Drama +26540,Demons (Dèmoni) (1985),Horror +26544,Heaven Help Us (1985),Comedy|Drama +26546,Mr. Vampire (Geung si sin sang) (1985),Comedy|Fantasy|Horror +26547,Police Story (Ging chaat goo si) (1985),Action|Comedy|Crime|Thriller +26550,Mishima: A Life in Four Chapters (1985),Drama +26551,Nine Deaths of the Ninja (1985),Action +26553,Pelle Svanslös i Amerikatt (1985),Animation|Children +26554,"Quiet Earth, The (1985)",Drama|Mystery|Sci-Fi +26555,Spies Like Us (1985),Comedy +26558,"Stuff, The (1985)",Comedy|Horror|Mystery|Sci-Fi +26559,Target (1985),Action|Drama|Thriller +26560,"Unknown Soldier, The (Tuntematon sotilas) (1985)",Drama|War +26561,Vision Quest (1985),Drama|Romance +26562,White Nights (1985),Drama +26564,'Round Midnight (1986),Drama|Musical +26565,Asterix in Britain (Astérix chez les Bretons) (1986),Adventure|Animation|Children|Comedy +26566,"Best of Times, The (1986)",Comedy|Drama +26567,Club Paradise (1986),Comedy +26569,Dead End Drive-In (1986),Action|Drama|Horror|Sci-Fi|Thriller +26571,Flodder (1986),Comedy +26574,Ginger and Fred (Ginger e Fred) (1986),Comedy|Drama +26577,Nobody's Fool (1986),Comedy|Romance +26578,"Sacrifice, The (Offret - Sacraficatio) (1986)",Drama +26580,"Park Is Mine, The (1986)",Action|Drama|Thriller +26581,Sherman's March (1985),Documentary +26582,Solarbabies (1986),Action|Drama|Sci-Fi +26585,"Better Tomorrow, A (Ying hung boon sik) (1986)",Crime|Drama|Thriller +26587,"Decalogue, The (Dekalog) (1989)",Crime|Drama|Romance +26589,Dragons Forever (1988),Action|Comedy|Romance +26593,Hell Comes to Frogtown (1988),Action|Comedy|Sci-Fi +26599,"Law of Desire (Ley del deseo, La) (1987)",Comedy|Drama|Romance +26600,Malone (1987),Action|Drama|Thriller +26602,Pathfinder (Ofelas) (1987),Action|Adventure|Drama +26603,Prince of Darkness (1987),Fantasy|Horror|Sci-Fi|Thriller +26606,"Chinese Ghost Story, A (Sinnui yauwan) (1987)",Action|Fantasy|Horror|Romance +26608,Street Smart (1987),Crime|Drama +26610,Weeds (1987),Drama +26611,"Whales of August, The (1987)",Drama +26612,"Better Tomorrow II, A (Ying hung boon sik II) (1987)",Crime|Drama|Thriller +26613,Ashik Kerib (1988),Drama|Romance +26615,Cannibal Women in the Avocado Jungle of Death (1989),Action|Comedy +26616,Cobra Verde (1987),Adventure|Drama +26617,Comic Book Confidential (1988),Documentary +26622,Dominick and Eugene (1988),Drama +26628,Jack's Back (1988) ,Crime|Horror|Mystery|Thriller +26629,Killer Klowns from Outer Space (1988),Comedy|Horror|Sci-Fi +26630,Moonwalker (1988),Musical +26631,Alice (Neco z Alenky) (1988),Animation|Fantasy|Mystery +26634,Pascali's Island (1988),Drama +26638,Prison (1988),Crime|Drama|Horror|Thriller +26641,Split Decisions (1988),Action|Drama +26643,Tales from the Gimli Hospital (1988),Fantasy|Horror +26644,Landscape in the Mist (Topio stin omichli) (1988),Drama +26645,Life Is a Long Quiet River (La vie est un long fleuve tranquille) (1988),Comedy +26647,"World Apart, A (1988)",Drama +26662,Kiki's Delivery Service (Majo no takkyûbin) (1989),Adventure|Animation|Children|Drama|Fantasy +26663,Monsieur Hire (1989),Crime|Romance|Thriller +26670,Rikyu (1989),Drama +26672,Speaking Parts (1989),Drama +26675,Boiling Point (3-4 x jûgatsu) (1990),Action|Comedy|Crime +26676,Almost an Angel (1990),Comedy +26677,Black Rainbow (1989),Thriller +26680,Cry-Baby (1990),Comedy|Musical|Romance +26681,Bullet in the Head (1990),Action|Drama|War +26682,Downtown (1990),Action|Comedy +26684,Frankenhooker (1990),Comedy|Horror +26685,"Garden, The (1990)",Drama +26686,Ghost Dad (1990),Comedy|Fantasy +26688,Hard to Kill (1990),Action|Crime|Drama +26689,Havana (1990),Drama +26690,Shipwrecked (a.k.a. Haakon Haakonsen) (1990),Adventure|Children +26691,I Hired a Contract Killer (1990),Comedy|Drama +26694,Ju Dou (1990),Drama +26695,"Krays, The (1990)",Drama +26696,Lionheart (1990),Action +26698,Narrow Margin (1990),Crime|Thriller +26699,Close-Up (Nema-ye Nazdik) (1990),Drama +26700,Nuns on the Run (1990),Comedy|Crime +26702,"Reflecting Skin, The (1990)",Drama|Horror|Thriller +26703,Riff-Raff (1991),Comedy|Drama +26704,State of Grace (1990),Crime|Drama|Thriller +26707,Tatie Danielle (1990),Comedy|Drama +26708,Time to Kill (Tempo di uccidere) (1989),Drama|War +26710,"Welcome Home, Roxy Carmichael (1990)",Comedy|Drama +26712,35 Up (1991),Documentary +26713,Days of Being Wild (A Fei jingjyuhn) (1990),Drama|Romance +26714,Across the Tracks (1991),Drama +26717,Begotten (1990),Drama|Horror +26719,Cadence (1990),Drama +26720,Closet Land (1991),Drama|Thriller +26723,Delusion (1991),Crime|Drama|Thriller +26726,Dutch (1991),Comedy +26728,Guilty by Suspicion (1991),Drama +26729,Hearts of Darkness: A Filmmakers Apocalypse (1991),Documentary +26731,Homicide (1991),Crime|Drama|Thriller +26732,Johnny Stecchino (1991),Comedy +26734,"Kiss Before Dying, A (1991)",Thriller +26736,Riki-Oh: The Story of Ricky (Lik Wong) (1991),Action|Crime|Thriller +26737,Light Sleeper (1992),Crime|Drama +26738,"Linguini Incident, The (1991)",Comedy|Crime +26741,Mannequin 2: On the Move (1991),Comedy|Fantasy|Romance +26744,Once Around (1991),Drama +26745,Other People's Money (1991),Comedy|Drama|Romance +26746,Out for Justice (1991),Action|Crime|Drama|Thriller +26749,Prospero's Books (1991),Drama|Fantasy +26750,Quigley Down Under (1990),Adventure|Drama|Western +26751,Rubin and Ed (1991),Comedy|Drama +26752,Shout (1991),Drama +26755,Stone Cold (1991),Action|Crime +26756,Strangers in Good Company (1990),Drama +26757,Surviving Desire (1991),Comedy|Drama|Romance +26758,All the Mornings of the World (Tous les matins du monde) (1991),Drama|Romance +26759,Assassin of the Tsar (1991),Drama +26760,Wild Hearts Can't Be Broken (1991),Drama|Romance +26762,Aileen Wuornos: The Selling of a Serial Killer (1993),Documentary +26764,Captain America (1990),Action|Fantasy|Sci-Fi|Thriller|War +26765,City Hunter (Sing si lip yan) (1993),Action|Comedy|Romance +26766,"Oak, The (Balanta) (1992)",Comedy|Drama +26769,Crossing the Bridge (1992),Comedy|Drama +26770,Diggstown (1992),Drama +26774,Innocent Blood (1992),Comedy|Horror +26775,Johnny Suede (1991),Comedy|Musical|Romance +26776,Porco Rosso (Crimson Pig) (Kurenai no buta) (1992),Adventure|Animation|Comedy|Fantasy|Romance +26777,"Stolen Children (Ladro di bambini, Il) (1992)",Drama +26778,Ladybugs (1992),Comedy +26782,"Mambo Kings, The (1992)",Drama|Musical +26784,Night and the City (1992),Crime|Drama +26788,"Story of Qiu Ju, The (Qiu Ju da guan si) (1992)",Comedy|Drama +26791,Shining Through (1992),Drama|Romance|Thriller|War +26792,Sidekicks (1992),Action|Adventure|Children|Comedy +26793,Tito and Me (Tito i ja) (1992),Comedy +26796,"Heart in Winter, A (Un coeur en hiver) (1992)",Drama|Romance +26797,Visions of Light: The Art of Cinematography (1992),Documentary +26801,Dragon Inn (Sun lung moon hak chan) (1992),Action +26802,And Life Goes On (a.k.a. Life and Nothing More) (Zendegi va digar hich) (1992),Drama +26803,House of Angels (Änglagård) (1992),Comedy|Drama +26804,Return to Lonesome Dove (1993),Drama|Western +26809,"Baby of Mâcon, The (a.k.a. The Baby of Macon) (1993)",Drama +26812,Barbarians at the Gate (1993),Drama +26813,Calendar (1993),Drama +26815,Deadly Advice(1994),Comedy|Drama +26818,"Legend II, The (Fong Sai Yuk juk jaap) (1993)",Action|Adventure|Comedy +26819,Fortress (1992),Action|Sci-Fi +26822,The Puppetmaster (1993),Drama|War +26825,Josh and S.A.M. (1993),Adventure|Comedy|Drama +26826,Latcho Drom (1993),Documentary|Musical +26827,Leningrad Cowboys Meet Moses (1994),Adventure|Comedy +26828,Mr. Nanny (1993),Action|Children|Comedy +26831,"Night We Never Met, The (1993)",Comedy|Romance +26834,Philadelphia Experiment II (1993),Action|Adventure|Sci-Fi +26838,"Snapper, The (1993)",Comedy|Drama +26840,Sonatine (Sonachine) (1993),Action|Comedy|Crime|Drama +26841,Splitting Heirs (1993),Comedy +26842,Tai Chi Master (Twin Warriors) (Tai ji: Zhang San Feng) (1993),Action|Adventure|Comedy|Drama +26843,Three of Hearts (1993),Comedy|Romance +26850,71 Fragments of a Chronology of Chance (71 Fragmente einer Chronologie des Zufalls) (1994),Drama +26851,Naked Killer (Chik loh go yeung) (1992),Action|Crime|Drama|Thriller +26858,Felidae (1994),Animation|Mystery|Thriller +26861,Freaked (1993),Comedy|Sci-Fi +26863,Golden Gate (1994),Drama +26865,Fist of Legend (Jing wu ying xiong) (1994),Action|Drama +26868,Lucky Break (a.k.a. Paperback Romance) (1994),Comedy|Romance +26870,Major League II (1994),Comedy +26871,My Father the Hero (1994),Comedy|Romance +26873,"Take Care of Your Scarf, Tatiana (Pidä huivista kiinni, Tatjana) (1994)",Comedy +26875,"Pure Formality, A (Pura formalità, Una) (1994)",Crime|Film-Noir|Mystery|Thriller +26880,Staggered (1994),Comedy +26886,"Defender, The (a.k.a. Bodyguard from Beijing, The) (Zhong Nan Hai bao biao) (1994)",Action +26889,Blood & Donuts (1995),Comedy|Horror +26898,"Five, The (Gonin) (1995)",Action|Crime|Drama +26901,Last of the Dogmen (1995),Adventure|Western +26903,Whisper of the Heart (Mimi wo sumaseba) (1995),Animation|Drama|Romance +26908,"Passion of Darkly Noon, The (1995)",Drama|Mystery|Thriller +26911,Meltdown (Shu dan long wei) (1995),Action|Comedy|Crime +26914,Trinity and Beyond (1995),Documentary +26915,Tromeo and Juliet (1996),Comedy|Drama +26925,Cannibal! The Musical (a.k.a. Alferd Packer: The Musical) (1996),Comedy|Horror|Musical|Western +26933,Fetishes (1996),Documentary +26938,"Hunters, The (Jägarna) (1996)",Crime|Thriller +26939,Drifting Clouds (Kauas pilvet karkaavat) (1996),Comedy|Drama +26940,"Late Shift, The (1996)",Comedy +26941,"Pretty Village, Pretty Flame (Lepa sela lepo gore) (1996)",Drama|War +26944,My Man (Mon homme) (1996),Comedy|Drama|Romance +26945,No Way Back (1995),Action|Crime|Drama|Thriller +26947,Pusher (1996),Crime|Thriller +26949,Freakin' Beautiful World (Sairaan kaunis maailma) (1997),Drama +26962,American Perfekt (1997),Crime|Drama|Thriller +26964,Bikini Summer III - South Beach Heat (1997),Comedy +26965,"Boxer, The (1997)",Drama|Thriller +26966,"Brave, The (1997)",Drama +26968,Cremaster 5 (1997),Drama|Musical +26969,Executive Target (1997),Action|Adventure|Crime|Thriller +26970,Face (1997),Crime|Drama|Thriller +26974,Gummo (1997),Drama +26975,Commander Hamilton (Hamilton) (1998),Action|Crime +26976,Chicago Cab (1997),Comedy|Drama +26978,Kiss or Kill (1997),Crime|Drama|Thriller +26980,Destiny (Al-massir) (1997),Comedy|Drama|Musical|Romance +26981,Mean Guns (1997),Action|Crime|Thriller +26982,Men with Guns (1997),Drama +26985,Nirvana (1997),Action|Sci-Fi +26989,Dance with the Devil (Perdita Durango) (1997),Action|Crime|Drama|Romance +26991,Postman Blues (1997),Action|Comedy|Crime|Drama +26994,"Swindle, The (Rien ne va plus) (1997)",Comedy|Crime|Thriller +26996,Safe House (1998),Thriller +26998,"Sick: The Life & Death of Bob Flanagan, Supermasochist (1997)",Documentary +27003,Beowulf (1999),Action|Horror|Sci-Fi +27004,From Dusk Till Dawn 3: The Hangman's Daughter (1999),Horror|Thriller|Western +27005,"Interview, The (1998)",Crime|Drama|Mystery|Thriller +27006,RKO 281 (1999),Drama +27011,Koko Flanel (1990),Comedy|Romance +27016,"Curve, The (Dead Man's Curve) (1998)",Comedy|Drama|Mystery|Romance|Thriller +27018,Fudoh: The New Generation (Gokudô sengokushi: Fudô) (1996),Action|Crime +27020,Gia (1998),Drama|Romance +27022,Thursday (1998),Action|Crime|Thriller +27027,Sophie's World (Sofies verden) (1999),Adventure|Drama|Fantasy +27031,Wavelength (1967),Drama +27032,Who Am I? (Wo shi shei) (1998),Action|Adventure|Comedy|Sci-Fi|Thriller +27033,"Kingdom II, The (Riget II) (1997)",Drama|Horror|Mystery +27040,Rogue Trader (1999),Crime|Drama +27044,Breast Men (1997),Comedy|Drama +27050,Bang Boom Bang - Ein todsicheres Ding (1999),Action|Comedy +27067,"Pentagon Wars, The (1998)",Comedy|War +27070,"Place Called Chiapas, A (1998)",Documentary +27073,Two Hands (1999),Comedy|Crime|Thriller +27077,Thick as Thieves (1999),Crime|Drama +27078,Set Me Free (Emporte-moi) (1999),Drama +27081,Claire Dolan (1998),Drama +27087,The Sinners of Hell (1960),Drama|Horror +27093,"Class Trip, The (La classe de neige) (1998)",Drama|Mystery +27094,Flowers of Shanghai (1998),Drama +27095,"Hole, The (Dong) (1998)",Drama|Musical +27096,Of Freaks and Men (Pro urodov i lyudey) (1998),Drama +27109,Lady Snowblood (Shurayukihime) (1973),Action|Crime|Drama|Thriller +27112,"Tough Ones, The (Häjyt) (1999)",Action|Drama +27124,Bleeder (1999),Drama|Thriller +27132,"Bodyguard, The (Karate Kiba) (1976)",Action|Crime|Drama +27134,Dark Portals: The Chronicles of Vidocq (Vidocq) (2001),Action|Crime|Fantasy +27135,Molokai (Molokai: The Story of Father Damien) (1999),Drama +27136,"Godson, The (1998)",Comedy|Crime +27147,"4th Floor, The (1999)",Thriller +27152,Pitkä kuuma kesä (1999),Comedy|Drama +27156,"Neon Genesis Evangelion: The End of Evangelion (Shin seiki Evangelion Gekijô-ban: Air/Magokoro wo, kimi ni) (1997)",Action|Animation|Drama|Fantasy|Sci-Fi +27158,"Life of Aleksis Kivi, The (Aleksis Kiven elämä) (2002)",Drama +27162,He Died With a Felafel in His Hand (2001),Comedy +27163,Something Is Happening (Kuch Kuch Hota Hai) (1998),Comedy|Musical|Romance +27164,Document of the Dead (1985),Documentary|Horror +27166,Venus Beauty Institute (Vénus beauté) (1999),Comedy|Drama|Romance +27170,Cherry Falls (2000),Comedy|Horror|Mystery +27171,Freeway II: Confessions of a Trickbaby (1999),Comedy|Crime|Drama|Thriller +27172,Joseph and the Amazing Technicolor Dreamcoat (1999),Musical +27178,In July (Im Juli) (2000),Comedy|Romance +27180,Joan of Arc (1999),Adventure|Drama +27186,Kirikou and the Sorceress (Kirikou et la sorcière) (1998),Adventure|Animation|Children|Fantasy +27189,After the Rain (Ame agaru) (1999) ,Action|Drama +27192,"Prophecy 3: The Ascent, The (2000)",Horror|Thriller +27193,Taxi 2 (2000),Action|Comedy +27197,Pups (1999),Crime|Drama|Thriller +27198,Peculiarities of the National Fishing (Osobennosti natsionalnoy rybalki) (1998),Comedy +27204,Cut (2000),Comedy|Horror|Mystery|Thriller +27205,Kadosh (1999),Drama +27212,Essex Boys (2000),Crime|Thriller +27213,Picking Up the Pieces (2000),Comedy|Fantasy +27215,Badding (2000),Comedy|Drama|Musical +27216,Katsastus (1988),Comedy|Drama +27217,Radiohead: Meeting People Is Easy (1998),Documentary +27221,Adrenaline Drive (Adorenarin doraibu) (1999),Comedy +27223,"Humanité, L' (1999)",Crime|Drama +27232,Beautiful Joe (2000),Comedy|Drama|Romance +27234,"Underground Comedy Movie, The (1999)",Comedy +27235,"Shrink Is In, The (2001)",Comedy|Romance +27236,Charisma (Karisuma) (1999),Drama +27238,Guest House Paradiso (1999),Comedy|Thriller +27239,Swimming (2000),Drama +27246,If These Walls Could Talk 2 (2000),Drama|Romance +27249,"Trumpet of the Swan, The (2001)",Animation|Drama|Musical +27255,"Wind Will Carry Us, The (Bad ma ra khahad bord) (1999)",Drama +27261,Water Drops on Burning Rocks (2000),Drama +27263,"Tracker, The (2002)",Drama +27266,2046 (2004),Drama|Fantasy|Romance|Sci-Fi +27268,Bruiser (2000),Horror|Thriller +27271,Taboo (Gohatto) (1999),Drama +27273,Crane World (Mundo grúa) (1999),Comedy|Drama +27274,Cremaster 2 (1999),Drama +27276,Running Out of Time (Am zin) (1999),Action|Crime|Drama|Thriller +27277,"Wog Boy, The (2000)",Comedy +27291,Century of the Dragon (Long zai bian yuan) (1999),Crime|Thriller +27292,Chasing Sleep (2000),Horror|Thriller +27297,Possible Worlds (2000),Crime|Drama|Mystery|Sci-Fi +27298,"Nameless, The (Los sin nombre) (1999)",Drama|Horror|Mystery +27302,"Debt, The (Dlug) (1999)",Crime|Drama|Thriller +27304,Female Prisoner #701: Scorpion (Joshuu 701-gô: Sasori) (1972),Crime|Drama|Thriller +27305,Female Convict Scorpion: Jailhouse 41 (Joshuu sasori: Dai-41 zakkyo-bô) (1972),Crime|Drama|Thriller +27306,Bartleby (2001),Comedy|Drama +27307,Night of the Day of the Dawn of the Son of the Bride of the Return of the Terror (1991),Comedy|Horror +27309,Restless (Levottomat) (2000),Drama|Romance +27310,Shiner (2000),Crime|Drama|Thriller +27313,Roberto Succo (2001),Crime|Drama +27315,Suzhou River (Suzhou he) (2000),Drama|Romance +27316,6ixtynin9 (Ruang Talok 69) (1999),Action|Comedy|Thriller +27317,Audition (Ôdishon) (1999),Drama|Horror|Mystery|Romance|Thriller +27321,For Love or Country: The Arturo Sandoval Story (2000),Drama|Musical +27322,Paragraph 175 (2000),Documentary +27326,Devdas (2002),Musical|Romance +27327,Mimic 2 (2001),Horror|Sci-Fi|Thriller +27328,Monday (2000),Action|Comedy|Crime|Fantasy|Thriller +27329,Paradise Lost 2: Revelations (2000),Documentary +27332,Dark Prince: The True Story of Dracula (2000),Drama|Horror|Thriller +27334,Sound and Fury (2000),Documentary +27338,The Hole (2001),Drama|Horror|Mystery|Thriller +27343,When Strangers Appear (2001),Action|Mystery|Thriller +27344,Revolutionary Girl Utena: Adolescence of Utena (a.k.a. Revolutionary Girl Utena the Movie) (Shoujo kakumei Utena: Adolescence mokushiroku) (1999),Action|Adventure|Animation|Comedy|Drama|Fantasy|Romance +27345,Speaking of Sex (2001),Comedy|Romance +27347,Good Advice (2001),Comedy|Romance +27348,Needing You... (Goo naam gwa neui) (2000),Comedy|Romance +27351,Spiral (2000),Horror +27356,Big Animal (Duze zwierze) (2000),Comedy|Drama +27357,Old Men in New Cars (Gamle mænd i nye biler) (2002),Action|Comedy +27359,Purely Belter (2000),Adventure|Comedy|Drama +27360,"Quickie, The (2001)",Crime|Drama +27362,"Sometimes Happiness, Sometimes Sorrow (Kabhi Khushi Kabhie Gham) (2001)",Drama|Musical|Romance +27365,"River, The (Joki) (2001)",Drama +27366,Werckmeister Harmonies (Werckmeister harmóniák) (2000),Drama +27368,Asterix & Obelix: Mission Cleopatra (Astérix & Obélix: Mission Cléopâtre) (2002),Adventure|Comedy|Fantasy +27369,Daria: Is It Fall Yet? (2000),Animation|Comedy +27370,Late Night Shopping (2001),Comedy +27372,Uprising (2001),Drama +27373,61* (2001),Drama +27376,"Tunnel, The (Tunnel, Der) (2001)",Action|Drama|Thriller +27378,Long Time Dead (2002),Horror|Thriller +27391,"Laramie Project, The (2002)",Crime|Drama +27392,Run Ronnie Run (2002),Comedy +27397,Joint Security Area (Gongdong gyeongbi guyeok JSA) (2000),Crime|Drama|Mystery|Thriller|War +27402,Dagon (2001),Fantasy|Horror|Mystery|Thriller +27408,Ripley's Game (2002),Drama|Thriller +27411,Freeze Me (2000),Drama|Thriller +27416,Jalla! Jalla! (2000),Comedy|Drama|Romance +27420,Teknolust (2002),Comedy|Drama|Romance|Sci-Fi +27423,"O Auto da Compadecida (Dog's Will, A) (2000)",Adventure|Comedy +27426,"Accidental Spy, The (Dak miu mai shing) (2001)",Action|Comedy|Thriller +27431,"Adversary, The (L'adversaire) (2002)",Crime|Drama|Mystery|Thriller +27432,"Beautiful Country, The (2004)",Drama +27434,Darkness (2002),Horror|Mystery +27436,Mockingbird Don't Sing (2001),Drama +27441,Blood: The Last Vampire (2000),Action|Animation|Horror +27447,Southern Comfort (2001),Documentary +27449,Berlin Is in Germany (2001),Drama +27450,Blueberry (2004),Adventure|Western +27454,"Nugget, The (2002)",Comedy +27455,"Godzilla, Mothra, and King Ghidorah: Giant Monsters All-Out Attack (Gojira, Mosura, Kingu Gidorâ: Daikaijû sôkôgeki) (Godzilla, Mothra and King Ghidorah: Giant Monsters All-Out Attack) (2001)",Action|Fantasy|Sci-Fi +27456,Shackleton's Antarctic Adventure (2001),Documentary|IMAX +27458,Dirty Deeds (2002),Action|Comedy|Crime +27461,My Little Eye (2002),Horror|Mystery|Thriller +27469,Millennium Mambo (2001),Drama|Romance +27472,Martin & Orloff (2002),Comedy +27473,American Psycho II: All American Girl (2002),Comedy|Crime|Horror|Mystery|Thriller +27474,Double Vision (Shuang tong) (2002),Horror|Mystery|Thriller +27475,Soft Shell Man (Un crabe dans la tête) (2001),Drama|Romance +27477,Samurai (Samourais) (2002),Action +27478,Ali G Indahouse (2002),Comedy +27480,Dead or Alive 2: Tôbôsha (2000),Action|Crime|Thriller +27482,Cube 2: Hypercube (2002),Horror|Mystery|Sci-Fi +27484,"Milwaukee, Minnesota (2003)",Drama +27485,Pistol Opera (Pisutoru opera) (2001),Action|Crime|Drama +27488,Stark Raving Mad (2002),Action|Comedy|Crime +27491,Pulse (Kairo) (2001),Horror|Mystery|Thriller +27496,Emmett's Mark (2002),Crime|Drama|Thriller +27497,"Lost Battalion, The (2001)",Action|Drama|War +27506,Hukkle (2002),Crime|Drama|Mystery +27509,Carolina (2005),Comedy|Romance +27513,Dog Days (Hundstage) (2001),Drama +27515,Balzac and the Little Chinese Seamstress (Xiao cai feng) (2002),Drama|Romance +27518,D.C.H. (Dil Chahta Hai) (2001),Comedy|Drama +27523,My Sassy Girl (Yeopgijeogin geunyeo) (2001),Comedy|Romance +27524,"Gathering, The (2002)",Horror|Mystery|Thriller +27525,Shot in the Heart (2001),Crime|Drama +27526,Deadline (Sprängaren) (2001),Drama|Thriller +27528,"Warrior, The (2001)",Adventure|Drama +27530,My Wife Is a Gangster (Jopog manura) (2001),Action|Comedy|Romance +27537,Nothing (2003),Comedy|Fantasy|Mystery|Sci-Fi +27539,Undertaking Betty (Plots with a View) (2002),Comedy|Romance +27544,Waterboys (2001),Comedy +27548,Absolon (2003),Action|Sci-Fi|Thriller +27549,Dead or Alive: Final (2002),Comedy|Crime|Drama|Sci-Fi|Thriller +27550,Hell House (2001),Documentary +27555,Fubar (2002),Comedy +27563,"Happiness of the Katakuris, The (Katakuri-ke no kôfuku) (2001)",Comedy|Horror|Musical +27564,Sex Is Comedy (2002),Comedy|Drama|Romance +27571,"Rage in Placid Lake, The (2003)",Comedy +27573,Stratosphere Girl (2004),Drama|Mystery +27584,Dead End (2003),Comedy|Horror|Mystery|Thriller +27587,Pure (2002),Drama +27592,Sympathy for Mr. Vengeance (Boksuneun naui geot) (2002),Crime|Drama +27595,Jesus Christ Vampire Hunter (2001),Action|Comedy|Horror|Musical +27598,Chinese Odyssey 2002 (Tian xia wu shuang) (2002),Action|Comedy|Romance +27603,"Man of the Year, The (O Homem do Ano) (2003)",Action|Comedy|Crime +27604,Suicide Club (Jisatsu saakuru) (2001),Horror|Mystery|Thriller +27606,"Third Wave, The (Tredje vågen, Den) (2003)",Action|Thriller +27608,Immortel (ad vitam) (Immortal) (2004),Action|Adventure|Animation|Fantasy|Sci-Fi +27616,Tiptoes (2003),Comedy|Drama|Romance +27618,"Sound of Thunder, A (2005)",Action|Adventure|Drama|Sci-Fi|Thriller +27620,Fear and Trembling (Stupeur et tremblements) (2003),Comedy +27624,Live from Baghdad (2002),Drama|War +27626,Entre Amigos (Planta 4ª) (2003),Comedy|Drama +27627,Oasis (2002),Drama|Romance +27631,Cremaster 3 (2002),Drama +27636,Herr Lehmann (2003),Comedy|Drama +27639,Twin Sisters (De tweeling) (2002),Drama|Romance|War +27640,My House in Umbria (2003),Drama +27641,Upswing (Nousukausi) (2003),Comedy|Drama +27643,Pahat pojat (2003),Action|Crime|Drama +27644,Remember Me (Ricordati di me) (2003),Comedy|Drama|Romance +27646,Soldier's Girl (2003),Drama +27647,Tipping the Velvet (2002),Comedy|Drama|Romance +27648,Bright Young Things (2003),Comedy|Drama +27656,Resurrection of the Little Match Girl (Sungnyangpali sonyeoui jaerim) (2002),Action|Comedy|Sci-Fi +27657,Alien Hunter (2003),Action|Sci-Fi|Thriller +27658,Love Object (2003),Comedy|Drama|Horror|Romance|Thriller +27660,"Animatrix, The (2003)",Action|Animation|Drama|Sci-Fi +27664,"Brown Bunny, The (2003)",Drama +27671,As If I Didn't Exist (Elina - Som om jag inte fanns) (2002),Children|Drama +27674,11:14 (2003),Comedy|Crime|Drama|Mystery|Thriller +27675,Alive (2002),Action|Drama|Horror|Sci-Fi|Thriller +27679,Springtime in a Small Town (Xiao cheng zhi chun) (2002),Drama|Romance +27684,Wondrous Oblivion (2003),Children|Comedy|Drama +27685,Bring It On Again (2004),Comedy +27689,"Crimson Rivers 2: Angels of the Apocalypse (Rivières pourpres II - Les anges de l'apocalypse, Les) (2004)",Action|Crime|Thriller +27692,And Starring Pancho Villa as Himself (2003),Action|Comedy|Drama|War +27695,Nicotina (2003),Action|Comedy|Drama +27699,Iron Jawed Angels (2004),Drama|Romance +27700,Evil (Ondskan) (2003),Drama +27703,High Roller: The Stu Ungar Story (2003),Drama +27704,Battle Royale 2: Requiem (Batoru rowaiaru II: Chinkonka) (2003),Action|Drama|Thriller|War +27706,Lemony Snicket's A Series of Unfortunate Events (2004),Adventure|Children|Comedy|Fantasy +27711,Naked Weapon (Chek law dak gung) (2002),Action|Drama|Romance|Thriller +27713,Bukowski: Born into This (2003),Documentary +27716,"Green Butchers, The (Grønne slagtere, De) (2003)",Comedy|Crime|Drama|Romance +27717,Pearls and Pigs (Helmiä ja sikoja) (2003),Comedy +27718,"Injury to One, An (2002)",Documentary +27719,Levottomat 3 (2004),Romance +27721,"Very Long Engagement, A (Un long dimanche de fiançailles) (2004)",Drama|Mystery|Romance|War +27722,Last Life in the Universe (Ruang rak noi nid mahasan) (2003),Drama|Romance +27724,Hitler: The Rise of Evil (2003),Drama +27726,"Galíndez File, The (Misterio Galíndez, El) (2003)",Drama +27727,Head-On (Gegen die Wand) (2004),Drama|Romance +27728,Ghost in the Shell 2: Innocence (a.k.a. Innocence) (Inosensu) (2004),Action|Animation|Drama|Sci-Fi|Thriller +27729,Kal Ho Naa Ho (2003),Comedy|Drama|Romance +27731,"Cat Returns, The (Neko no ongaeshi) (2002)",Adventure|Animation|Children|Fantasy +27734,In My Country (a.k.a. Country of My Skull) (2004),Drama +27735,Unstoppable (2004),Action|Adventure|Comedy|Drama|Thriller +27736,Take My Eyes (Te doy mis ojos) (2003),Drama|Romance|Thriller +27738,"Cathedral, The (Katedra) (2002)",Animation +27740,Blind Shaft (Mang jing) (2003),Drama +27741,"Twilight Samurai, The (Tasogare Seibei) (2002)",Drama|Romance +27742,Vampire Effect (The Twins Effect) (Chin gei bin) (2003),Action|Comedy|Fantasy|Horror +27743,"Far Side of the Moon, The (Face cachée de la lune, La) (2003)",Drama +27744,"Facing Windows (Finestra di fronte, La) (2003)",Drama|Romance +27746,Ginger Snaps: Unleashed (2004),Horror|Thriller +27751,'Salem's Lot (2004),Drama|Horror|Mystery|Thriller +27752,Dark Woods (Villmark) (2003),Adventure|Horror|Mystery|Thriller +27754,Foolproof (2003),Action|Comedy|Crime|Thriller +27758,"Easy Riders, Raging Bulls: How the Sex, Drugs and Rock 'N' Roll Generation Saved Hollywood (2003)",Documentary +27759,"Book of Fate, The (Kohtalon kirja) (2003)",Action|Horror|Sci-Fi|War|Western +27760,When the Last Sword is Drawn (Mibu gishi den) (2003),Drama +27764,2LDK (2003),Drama|Horror|Thriller +27765,Trauma (2004),Drama|Mystery|Thriller +27768,Intimate Strangers (Confidences trop intimes) (2004),Drama +27769,Down to the Bone (2004),Drama +27771,"Talking Picture, A (Um Filme Falado) (2003)",Comedy|Drama|War +27772,Ju-on: The Grudge (2002),Horror +27773,Old Boy (2003),Mystery|Thriller +27776,Red Lights (Feux rouges) (2004),Drama +27777,GhostWatcher (2002),Horror|Mystery|Sci-Fi +27778,Ginger Snaps Back: The Beginning (2004),Fantasy|Horror +27779,Moon Child (2003),Action|Drama|Sci-Fi +27781,Svidd Neger (2003),Comedy|Crime|Drama|Horror|Mystery|Romance|Thriller +27783,"Lost Embrace (Abrazo partido, El) (2004)",Comedy|Drama +27784,One Missed Call (Chakushin ari) (2003),Horror|Mystery +27786,Goldfish Memory (2003),Comedy|Drama +27787,Inuyasha the Movie: The Castle Beyond the Looking Glass (2002),Action|Animation|Comedy|Romance +27788,"Jacket, The (2005)",Drama|Mystery|Sci-Fi|Thriller +27790,Millions (2004),Children|Comedy|Crime|Drama|Fantasy +27792,"Saddest Music in the World, The (2003)",Comedy|Drama|Fantasy|Musical|Romance +27793,Starship Troopers 2: Hero of the Federation (2004),Action|Horror|Sci-Fi|War +27797,"Man Who Copied, The (Homem Que Copiava, O) (2003)",Comedy|Crime|Drama|Romance +27798,Ju-on: The Grudge 2 (2003),Horror +27799,Sex Lives of the Potato Men (2004),Comedy +27800,Interstella 5555: The 5tory of the 5ecret 5tar 5ystem (2003),Adventure|Animation|Fantasy|Musical|Sci-Fi +27801,Ong-Bak: The Thai Warrior (Ong Bak) (2003),Action|Thriller +27802,Infernal Affairs 2 (Mou gaan dou II) (2003),Action|Crime|Drama|Thriller +27803,"Sea Inside, The (Mar adentro) (2004)",Drama +27805,Lucky 7 (2003),Comedy|Romance +27808,Spanglish (2004),Comedy|Drama|Romance +27811,Buddy (2003),Comedy|Drama +27812,Festival Express (2003),Documentary|Musical +27815,"Chorus, The (Choristes, Les) (2004)",Drama +27816,Saints and Soldiers (2003),Action|Adventure|Drama|War +27820,"Story of the Weeping Camel, The (Geschichte vom weinenden Kamel, Die) (2003)",Documentary|Drama +27821,"Interpreter, The (2005)",Drama|Thriller +27822,Open Water (2003),Drama|Thriller +27823,Romasanta: The Werewolf Hunt (2004),Drama|Horror|Mystery +27824,Running On Karma (Daai Zek Lou) (2003),Action|Drama|Thriller +27826,Touch of Pink (2004),Comedy|Drama|Romance +27827,Infernal Affairs III (Mou gaan dou III: Jung gik mou gaan) (2003),Action|Crime|Drama|Thriller +27828,"Memory of a Killer, The (Zaak Alzheimer, De) (2003)",Action|Crime|Drama|Thriller +27829,Slasher (2004),Documentary +27830,"Bobby Jones, Stroke of Genius (2004)",Drama +27831,Layer Cake (2004),Crime|Drama|Thriller +27833,Silver City (2004),Comedy|Drama|Mystery|Thriller +27834,"Return, The (Vozvrashcheniye) (2003)",Drama +27835,"Agronomist, The (2003)",Documentary +27837,Flight of the Phoenix (2004),Action|Adventure +27838,Mean Creek (2004),Drama|Thriller +27839,"Ring Two, The (2005)",Drama|Horror|Mystery|Thriller +27840,"Day Without a Mexican, A (2004)",Comedy|Drama|Fantasy|Mystery +27841,"Gospel of John, The (2003)",Drama +27843,Machuca (2004),Drama +27846,"Corporation, The (2003)",Documentary +27847,Game Over: Kasparov and the Machine (2003),Documentary +27849,Vibrator (2003),Drama +27850,"Yes Men, The (2003)",Documentary +27851,"Fond Kiss, A (Ae Fond Kiss...) (2004)",Drama|Romance +27856,Bummer (Bumer) (2003),Action|Drama|Thriller +27857,As it is in Heaven (Så som i himmelen) (2004),Drama|Musical|Romance +27858,Green Tea (Lü cha) (2003),Drama|Romance +27862,Lost Boys of Sudan (2003),Documentary +27864,She Hate Me (2004),Comedy|Drama +27865,Azumi (2003),Action|Adventure|Drama|Thriller +27866,In My Father's Den (2004),Drama +27869,Tae Guk Gi: The Brotherhood of War (Taegukgi hwinalrimyeo) (2004),Action|Drama|War +27871,Something the Lord Made (2004),Drama +27873,Metallica: Some Kind of Monster (2004),Documentary +27874,Going the Distance (2004),Comedy +27875,Redemption: The Stan Tookie Williams Story (2004),Crime|Documentary|Drama +27876,Schultze Gets the Blues (2003),Comedy|Drama +27878,Born into Brothels (2004),Documentary +27879,DiG! (2004),Documentary +27881,"Girl from Monday, The (2005)",Action|Comedy|Sci-Fi +27882,Riding Giants (2004),Documentary +27883,Dear Pillow (2004),Drama +27884,Word Wars (2004),Comedy|Documentary|Drama +27888,When Will I Be Loved (2004),Drama +27889,Hell's Gate 11:11 (2004),Horror|Thriller +27891,Quiet as a Mouse (Muxmäuschenstill) (2004),Drama +27899,What the #$*! Do We Know!? (a.k.a. What the Bleep Do We Know!?) (2004),Comedy|Documentary|Drama +27904,"Scanner Darkly, A (2006)",Animation|Drama|Mystery|Sci-Fi|Thriller +27905,Casshern (2004),Action|Drama|Fantasy|Sci-Fi +27909,Windstruck (Nae yeojachingureul sogae habnida) (2004),Comedy|Crime|Drama +27911,Howard Zinn: You Can't Be Neutral on a Moving Train (2004),Documentary +27912,Outfoxed: Rupert Murdoch's War on Journalism (2004),Documentary +27914,"Hijacking Catastrophe: 9/11, Fear & the Selling of American Empire (2004)",Documentary +27919,Fahrenhype 9/11 (2004),Documentary +27922,Jerry Seinfeld: 'I'm Telling You for the Last Time' (1998),Comedy|Documentary +30659,Noel (2004),Drama +30695,In Enemy Hands (2004),War +30698,Sexual Dependency (Dependencia sexual) (2003),Drama +30701,Chimes at Midnight (Campanadas a medianoche) (1965),Comedy|Drama|War +30707,Million Dollar Baby (2004),Drama +30712,"Narrow Margin, The (1952)",Crime|Drama|Film-Noir +30721,Hell Is for Heroes (1962),Drama|War +30723,Vincent & Theo (1990),Drama +30742,Some Came Running (1958),Drama|Romance +30745,Gozu (Gokudô kyôfu dai-gekijô: Gozu) (2003),Comedy|Crime|Drama|Horror|Mystery +30747,"Goodbye, Dragon Inn (Bu san) (2003)",Comedy|Drama +30749,Hotel Rwanda (2004),Drama|War +30764,"Mahabharata, The (1989)",Action|Drama|War +30767,Sitcom (1998),Comedy|Drama|Thriller +30776,Born to Dance (1936),Comedy|Musical +30781,Travels with My Aunt (1972),Adventure|Comedy|Drama +30783,Blood and Black Lace (Sei donne per l'assassino) (1964),Horror|Thriller +30791,Hellraiser: Inferno (2000),Horror +30793,Charlie and the Chocolate Factory (2005),Adventure|Children|Comedy|Fantasy|IMAX +30798,Auggie Rose (a.k.a. Beyond Suspicion) (2000),Drama|Mystery|Thriller +30803,3-Iron (Bin-jip) (2004),Drama|Romance +30808,It Happens Every Spring (1949),Comedy|Sci-Fi +30810,"Life Aquatic with Steve Zissou, The (2004)",Adventure|Comedy|Fantasy +30812,"Aviator, The (2004)",Drama +30816,"Phantom of the Opera, The (2004)",Drama|Musical|Romance +30818,Beyond the Sea (2004),Drama|Musical +30820,"Woodsman, The (2004)",Drama +30822,In Good Company (2004),Comedy|Drama +30825,Meet the Fockers (2004),Comedy +30846,"Assassination of Richard Nixon, The (2004)",Crime|Drama|Thriller +30848,"Love Song for Bobby Long, A (2004)",Drama +30850,"Merchant of Venice, The (2004)",Drama +30854,"River, The (He liu) (1997)",Drama +30856,Rebels of the Neon God (Qing shao nian nuo zha) (1992),Drama +30861,Captain Kidd (1945),Action|Adventure|Drama +30863,Hold That Ghost (1941),Adventure|Comedy +30867,Kamikaze Girls (Shimotsuma monogatari) (2004),Comedy +30883,Fat Albert (2004),Comedy|Fantasy +30890,"Keys to the House, The (Chiavi di casa, Le) (2004)",Drama +30892,In the Realms of the Unreal (2004),Animation|Documentary +30894,White Noise (2005),Drama|Horror|Mystery|Sci-Fi|Thriller +30896,Underclassman (2005),Action|Comedy|Thriller +30898,"Upside of Anger, The (2005)",Comedy|Drama|Romance +30905,Bomb the System (2002),Action|Drama +30942,Arrowhead (1953),Drama|Western +30949,"Grateful Dead Movie, The (1977)",Documentary|Musical +30952,Last Train from Gun Hill (1959),Drama|Western +30954,"Naked Jungle, The (1954)",Adventure|Drama +30970,"Handful of Dust, A (1988)",Drama +30977,"Pickle, The (1993)",Comedy +30981,Wetherby (1985),Drama +30991,Powwow Highway (1989),Drama +30994,Little Miss Marker (1980),Comedy|Drama +30996,Little Miss Marker (1934),Comedy|Drama +31000,Sweet Liberty (1986),Comedy +31004,"Promised Life, The (Vie promise, La) (2002)",Drama +31011,It's All True (1993),Documentary +31026,"Phantom of the Opera, The (1989)",Drama|Horror|Musical +31030,I Remember Mama (1948),Children|Drama +31032,"Last Horror Movie, The (2003)",Horror|Thriller +31035,Testament (1983),Drama +31038,Smooth Talk (1985),Drama|Romance +31040,Distant Thunder (1988),Drama +31042,Hell's Angels (1930),Drama|War +31045,Daddy's Dyin'... Who's Got the Will? (1990),Comedy +31047,Jinxed! (1982),Comedy +31049,Out Cold (1989),Comedy|Thriller +31053,Heart of America (2003),Drama +31060,A Show of Force (1990),Drama|Thriller +31079,Son of Godzilla (Kaijûtô no kessen: Gojira no musuko) (1967),Sci-Fi +31083,Man Trouble (1992),Comedy|Romance +31086,Battles Without Honor & Humanity (Jingi naki tatakai) (1973),Crime|Drama +31090,Fuhrer Ex (Führer EX) (2002),Drama +31101,Stander (2003),Action|Crime|Drama +31104,Hester Street (1975),Drama +31107,Mikey and Nicky (1976),Drama +31109,"Bigamist, The (1953)",Drama +31112,Freedomfighters (Libertarias) (1996),Drama|War +31114,Imaginary Heroes (2004),Comedy|Drama +31116,Sergeant York (1941),Drama|War +31123,Ruby & Quentin (Tais-toi!) (2003),Comedy|Crime +31133,Deathwatch (2002),Drama|Horror|Thriller|War +31140,Madame Rosa (La vie devant soi) (1977),Drama +31148,Day of the Wacko (Dzien swira) (2002),Comedy|Drama +31150,Wizards (1977),Animation|Fantasy|Sci-Fi|War +31152,For Love and Gold (L'armata Brancaleone) (1966),Adventure|Comedy +31154,Heartlands (2002),Comedy|Drama +31156,Abbott and Costello Meet the Invisible Man (1951),Comedy|Sci-Fi +31158,Abbott and Costello Go to Mars (1953),Comedy|Sci-Fi +31160,"Abbott and Costello Meet the Killer, Boris Karloff (1949)",Comedy|Mystery|Thriller +31162,"Life and Death of Peter Sellers, The (2004)",Comedy|Drama +31165,"Badge, The (2002)",Crime|Drama|Mystery|Thriller +31184,Appleseed (Appurushîdo) (2004),Action|Animation|Fantasy|Sci-Fi +31188,"Milky Way, The (Voie lactée, La) (1969)",Comedy|Drama +31193,"Many Adventures of Winnie the Pooh, The (1977)",Animation|Children|Musical +31195,Pippi in the South Seas (Pippi Långstrump på de sju haven) (1970),Adventure|Children +31201,Pippi on the Run (På rymmen med Pippi Långstrump) (1970),Children +31205,"Stickup, The (2002)",Action|Crime|Mystery +31221,Elektra (2005),Action|Adventure|Crime|Drama +31223,Racing Stripes (2005),Children|Comedy +31225,Coach Carter (2005),Drama +31247,"Fighting Sullivans, The (Sullivans, The) (1944)",Drama +31251,Iceman (1984),Drama|Sci-Fi +31255,Ice Station Zebra (1968),Action|Thriller +31258,Common Places (a.k.a. Common Ground) (Lugares comunes) (2002),Drama +31260,Boys Town (1938),Drama +31263,Torremolinos 73 (2003),Comedy|Drama +31267,Zhou Yu's Train (Zhou Yu de huo che) (2002),Drama|Romance +31270,Shivers (They Came from Within) (1975),Drama|Horror|Sci-Fi +31284,"Star Is Born, A (1976)",Drama|Musical|Romance +31290,Beastmaster 2: Through the Portal of Time (1991),Action|Adventure|Fantasy|Sci-Fi +31297,Gold Diggers of 1935 (1935),Comedy|Musical +31309,Rocco and His Brothers (Rocco e i suoi fratelli) (1960),Crime|Drama +31337,"Mortal Storm, The (1940)",Drama +31340,Once Upon a Honeymoon (1942),Comedy|Mystery|Romance +31342,Monday Morning (Lundi matin) (2002),Comedy|Drama|Romance +31347,Christmas in July (1940),Comedy|Romance +31349,I Married a Witch (1942),Comedy|Fantasy|Romance +31351,"Mayor of Hell, The (1933)",Crime|Drama|Romance +31353,"Miracle Woman, The (1931)",Drama +31359,Moolaadé (2004),Drama +31362,This Girl's Life (2003),Drama +31364,Memories of Murder (Salinui chueok) (2003),Crime|Drama|Mystery|Thriller +31367,"Chase, The (1994)",Action|Adventure|Comedy|Crime|Romance|Thriller +31374,Hobson's Choice (1954),Comedy|Drama|Romance +31408,Summer Storm (Sommersturm) (2004),Drama|Romance +31410,"Downfall (Untergang, Der) (2004)",Drama|War +31413,"White Sound, The (Das weiße Rauschen) (2001)",Drama +31420,Assault on Precinct 13 (2005),Action|Crime|Drama|Thriller +31422,Are We There Yet? (2005),Children|Comedy +31424,Alone in the Dark (2005),Action|Horror|Sci-Fi|Thriller +31427,Hide and Seek (2005),Horror|Mystery|Thriller +31429,Aliens of the Deep (2005),Documentary|IMAX +31431,Boogeyman (2005),Drama|Horror|Mystery|Thriller +31433,"Wedding Date, The (2005)",Comedy|Romance +31435,Rory O'Shea Was Here (Inside I'm Dancing) (2004),Drama +31437,Nobody Knows (Dare mo shiranai) (2004),Drama +31445,Employee of the Month (2004),Comedy|Drama +31447,Magic in the Water (1995),Adventure|Children|Fantasy +31467,"Great White Hope, The (1970)",Action|Drama +31469,"Study in Terror, A (1965)",Crime|Drama|Horror +31485,"Professionals, The (1966)",Western +31487,"Devil and Miss Jones, The (1941)",Comedy|Romance +31494,Everyday People (2004),Drama +31502,Salem's Lot (1979),Drama|Horror|Mystery|Thriller +31522,"Marriage of Maria Braun, The (Ehe der Maria Braun, Die) (1979)",Drama +31524,"Bitter Tears of Petra von Kant, The (bitteren Tränen der Petra von Kant, Die) (1972)",Drama +31528,Beau Geste (1939),Action|Adventure|Drama|War +31535,At Sword's Point (1952),Adventure +31539,Overnight (2003),Documentary +31545,"Trou, Le (Hole, The) (Night Watch, The) (1960)",Crime|Film-Noir +31547,Lessons of Darkness (Lektionen in Finsternis) (1992),Documentary|War +31549,Fata Morgana (1971),Documentary|Drama|Sci-Fi +31553,Double Dragon (1994),Action|Adventure|Sci-Fi +31555,Mac and Me (1988),Children|Fantasy|Sci-Fi +31577,Scorchers (1991),Comedy|Drama +31584,Rosenstrasse (2003),Drama|War +31588,Casque d'or (1952),Crime|Drama|Romance +31590,Hands Off the Loot (Touchez pas au grisbi) (1954),Crime|Drama|Thriller +31594,"Matchmaker, The (1958)",Comedy|Romance +31598,"Ballad of the Sad Cafe, The (1991)",Drama +31600,"Deceivers, The (1988)",Adventure|Drama|Thriller +31606,Siberia (1998),Comedy +31610,Purple Butterfly (Zi hudie) (2003),Drama +31613,Easy (2003),Comedy|Drama|Romance +31617,El Cid (1961),Action|Adventure|Drama|Romance|War +31619,Going All the Way (1997),Comedy|Drama +31628,"Taxing Woman, A (Marusa no onna) (1987)",Comedy +31636,"Bunker, The (2001)",Drama|Horror|Mystery|Thriller|War +31638,"Fine Madness, A (1966)",Comedy|Drama|Romance +31645,Reap the Wild Wind (1942),Action|Adventure|Drama +31647,2009: Lost Memories (2002),Action|Sci-Fi|Thriller +31649,"Architecture of Doom, The (Undergångens arkitektur) (1989)",Documentary|War +31655,Inferno (1953),Drama +31658,Howl's Moving Castle (Hauru no ugoku shiro) (2004),Adventure|Animation|Fantasy|Romance +31660,Steamboy (Suchîmubôi) (2004),Action|Animation|Drama|Sci-Fi +31664,Gorgeous (Boh lee chun) (1999),Action|Comedy|Romance +31672,"Blade, The (Dao) (1995)",Action|Drama +31680,Assisted Living (2003),Comedy|Drama +31682,"Nomi Song, The (2004)",Documentary|Musical +31685,Hitch (2005),Comedy|Romance +31687,Pooh's Heffalump Movie (2005),Animation|Children +31689,Inside Deep Throat (2005),Documentary +31692,Uncle Nino (2003),Comedy +31694,Bride & Prejudice (2004),Comedy|Musical|Romance +31696,Constantine (2005),Action|Fantasy|Horror|Thriller +31698,Son of the Mask (2005),Adventure|Children|Comedy|Fantasy +31700,Because of Winn-Dixie (2005),Children|Comedy|Drama +31702,Turtles Can Fly (Lakposhtha hâm parvaz mikonand) (2004),Drama|War +31705,Beautiful Boxer (2003),Action|Drama +31724,Pauly Shore Is Dead (2003),Comedy +31737,Bunny Lake Is Missing (1965),Mystery|Thriller +31742,Jeremy (1973),Drama|Romance +31747,The Boyfriend School (1990),Comedy|Romance +31750,Until September (1984),Drama|Romance +31770,Night and the City (1950),Film-Noir|Thriller +31785,Frozen Land (Paha maa) (2005),Drama +31793,Big Girls Don't Cry (Große Mädchen weinen nicht) (2002),Drama|Romance +31797,White Banners (1938),Drama +31804,Night Watch (Nochnoy dozor) (2004),Action|Fantasy|Horror|Mystery|Sci-Fi|Thriller +31807,Dot the I (2003),Drama|Film-Noir|Thriller +31826,Bright Leaves (2003),Documentary +31847,Topper Returns (1941),Comedy|Fantasy|Mystery|Romance +31851,Sons of the Desert (1933),Comedy +31854,Morocco (1930),Drama|Romance +31856,Surplus: Terrorized Into Being Consumers (2003),Documentary +31867,Man of the House (2005),Action|Comedy +31869,Samson and Delilah (1949),Drama|Romance +31878,Kung Fu Hustle (Gong fu) (2004),Action|Comedy +31881,Shark Skin Man and Peach Hip Girl (Samehada otoko to momojiri onna) (1998),Action|Comedy|Mystery|Thriller +31889,"Five People You Meet in Heaven, The (2004)",Drama|Fantasy +31892,"No Retreat, No Surrender (1986)",Action|Drama +31894,"ChubbChubbs!, The (2002)",Animation|Comedy|Sci-Fi +31900,Travellers and Magicians (2003),Adventure|Drama +31903,Zelary (2003),Drama|Romance +31909,Dr. Giggles (1992),Comedy|Horror +31915,"Corn Is Green, The (1945)",Drama +31921,"Seven-Per-Cent Solution, The (1976)",Adventure|Comedy|Crime|Drama|Mystery|Thriller +31923,"Three Musketeers, The (1973)",Action|Adventure|Comedy +31925,Royal Flash (1975),Adventure|Comedy|Romance +31930,Masculin Féminin (1966),Drama +31932,Fallen Angel (1945),Crime|Film-Noir|Mystery|Romance +31934,"Four Feathers, The (1939)",Adventure|War +31945,Always a Bridesmaid (2000),Documentary +31948,"Phone Box, The (Cabina, La) (1972)",Comedy|Drama|Mystery|Thriller +31950,Curse of the Demon (Night of the Demon) (1957),Fantasy|Horror|Mystery +31952,Control (Kontroll) (2003),Comedy|Crime|Drama|Mystery +31954,Beautiful City (Shah-re ziba) (2004),Drama +31956,5x2 (2004),Drama|Romance +31960,Tart (2001),Crime|Drama|Romance +31963,Bed & Board (Domicile conjugal) (1970),Comedy|Drama +31973,Germany Year Zero (Germania anno zero) (Deutschland im Jahre Null) (1948),Drama|War +31975,Tombs of the Blind Dead (La noche del terror ciego) (1972),Horror|Mystery +31983,"Sicilian Clan, The (Clan des Siciliens, Le) (1969)",Crime|Drama +31991,Love Me Tonight (1932),Comedy|Musical +31998,"Hole in My Heart, A (Hål i mitt hjärta, Ett) (2004)",Drama +32002,Bigger Than the Sky (2005),Comedy|Drama|Romance +32009,Tyler Perry's Diary of a Mad Black Woman (2005),Comedy|Drama|Romance +32011,Cursed (2005),Horror|Thriller +32013,Loop the Loop (Up and Down) (Horem pádem) (2004),Comedy +32015,Gory Gory Hallelujah (2003),Comedy|Fantasy|Horror +32017,"Pacifier, The (2005)",Action|Comedy +32019,Be Cool (2005),Comedy|Crime|Musical +32022,Gunner Palace (2004),Documentary|War +32025,Walk on Water (2004),Drama|Thriller +32029,Hostage (2005),Action|Crime|Drama|Thriller +32031,Robots (2005),Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi|IMAX +32049,"Laughing Policeman, The (1973)",Crime|Drama|Thriller +32056,Bopha! (1993),Drama +32058,Class Action (1991),Drama +32060,"Cat and the Canary, The (1927)",Horror|Mystery +32062,Courage Mountain (1990),Adventure|Children|Drama +32074,Kiss the Bride (2002),Drama|Romance +32076,Godzilla vs. The Sea Monster (Gojira-Ebira-Mosura: Nankai no daiketto) (1966),Action|Adventure|Fantasy|Sci-Fi +32078,Godzilla vs. Mechagodzilla II (Gojira VS Mekagojira) (1993),Action|Drama|Sci-Fi +32082,That Championship Season (1982),Drama +32084,Crush (1992),Drama +32088,DNA (1997),Action|Sci-Fi +32090,"Low Life, The (1995)",Drama +32109,Rendez-vous (1985),Drama +32116,"Oh, God! You Devil (1984)",Comedy +32120,Amongst Friends (1993),Crime|Drama +32122,Asfalto (2000),Drama +32124,God Is Brazilian (Deus É Brasileiro) (2003),Adventure|Comedy|Fantasy +32126,April Captains (Capitães de Abril) (2000),Drama +32128,Blackball (2003),Comedy|Drama +32139,"Agony and the Ecstasy, The (1965)",Drama +32141,Return to Peyton Place (1961),Drama +32149,Butch and Sundance: The Early Days (1979),Western +32151,It Happened to Jane (1959),Comedy +32153,Once Upon a Forest (1993),Adventure|Animation|Children|Fantasy +32156,Hello Down There (1969),Comedy|Sci-Fi +32158,All in a Night's Work (1961),Comedy +32160,Twentieth Century (1934),Comedy +32162,My Sister Eileen (1955),Comedy|Musical|Romance +32166,Strangers When We Meet (1960),Drama +32168,Or (a.k.a. My Treasure) (2004),Drama +32170,Chronicles (Crónicas) (2004),Crime|Drama +32172,Lackawanna Blues (2005),Drama +32174,"Green Berets, The (1968)",Action|Drama|War +32179,Elevator to the Gallows (a.k.a. Frantic) (Ascenseur pour l'échafaud) (1958),Crime|Drama|Thriller +32181,"Diary of a Chambermaid, The (1946)",Drama|Romance +32196,"Violent Cop (Sono otoko, kyôbô ni tsuki) (1989)",Action|Crime|Drama|Thriller +32199,Four Shades of Brown (Fyra nyanser av brunt) (2004),Comedy|Drama +32203,Brian's Song (1971),Drama +32211,Thriller: A Cruel Picture (Thriller - en grym film) (1974),Action|Crime|Drama|Thriller +32213,Cube Zero (2004),Horror|Mystery|Sci-Fi|Thriller +32225,Project Grizzly (1996),Documentary +32230,"Snow Queen, The (Lumikuningatar) (1986)",Children|Fantasy +32234,Julia (1977),Drama +32239,Save the Green Planet! (Jigureul jikyeora!) (2003),Comedy|Drama|Horror|Sci-Fi|Thriller +32243,Stealing Rembrandt (Rembrandt) (2003),Action|Comedy|Crime +32250,"Snake of June, A (Rokugatsu no hebi) (2002)",Drama|Mystery +32261,Thirty Seconds Over Tokyo (1944),Drama|War +32263,Vares: Private Eye (Vares - Yksityisetsivä) (2004),Action|Comedy|Crime|Thriller +32277,Girl Crazy (1943),Comedy|Musical|Romance +32280,The 3 Penny Opera (1931),Comedy|Drama|Musical +32285,"Boys & Girl from County Clare, The (a.k.a. The Boys from County Clare) (2003)",Comedy|Musical|Romance +32289,Ice Princess (2005),Children|Comedy|Drama +32291,Melinda and Melinda (2004),Comedy|Drama +32294,Milk and Honey (2003),Drama +32296,Miss Congeniality 2: Armed and Fabulous (2005),Adventure|Comedy|Crime +32298,Guess Who (2005),Comedy|Romance +32300,D.E.B.S. (2004),Action|Comedy +32302,"League of Ordinary Gentlemen, A (2004)",Documentary +32314,Incident at Loch Ness (2004),Adventure|Comedy|Documentary +32316,"River, The (1951)",Drama|Romance +32318,Virginia's Run (2002),Drama +32325,Yanks (1979),Drama|Romance|War +32329,Paradise Alley (1978),Drama +32333,"Seagull's Laughter, The (Mávahlátur) (2001)",Comedy|Drama +32335,Wild Horses (Caballos salvajes) (1995),Drama +32342,Woman Thou Art Loosed (2004),Drama +32345,Arrowsmith (1931),Drama +32347,Barbary Coast (1935),Adventure|Drama|Romance|Western +32349,Stella Dallas (1937),Drama +32352,"Thief and the Cobbler, The (a.k.a. Arabian Knight) (1995)",Adventure|Animation|Comedy|Fantasy +32354,Free Radicals (Böse Zellen) (2003),Drama +32357,"Unfaithful, The (1947)",Drama|Film-Noir +32361,Come and Get It (1936),Drama +32369,Panic in the Streets (1950),Crime|Drama|Film-Noir|Thriller +32371,Call Northside 777 (1948),Crime|Drama|Film-Noir +32375,Young Torless (1966),Drama +32381,Bells Are Ringing (1960),Comedy|Musical|Romance +32383,Finian's Rainbow (1968),Fantasy|Musical +32385,"Toolbox Murders, The (1978)",Horror|Thriller +32387,"Sword of Doom, The (Dai-bosatsu tôge) (1966)",Action|Drama +32389,Deep Crimson (Profundo carmesí) (1996),Crime|Drama +32392,800 Bullets (800 Balas) (2002),Comedy|Crime|Drama|Western +32395,Attack of the Mushroom People (Matango) (1963),Fantasy|Horror|Sci-Fi|Thriller +32419,"Music of Chance, The (1993)",Drama +32433,Mixed Blood (1984),Action|Drama +32440,If Looks Could Kill (1991),Action|Comedy +32442,Greedy (1994),Comedy +32444,Carmen (1983),Drama|Musical|Romance +32452,My Neighbors the Yamadas (Hôhokekyo tonari no Yamada-kun) (1999),Animation|Comedy +32460,Knockin' on Heaven's Door (1997),Action|Comedy|Crime|Drama +32464,City of Hope (1991),Drama +32469,We're No Angels (1955),Comedy|Crime|Drama +32471,Sons and Lovers (1960),Drama +32478,"Arrow, The (1997)",Drama +32483,Ruggles of Red Gap (1935),Comedy|Romance +32485,Greetings (1968),Comedy +32493,End of the Century: The Story of the Ramones (2003),Documentary|Musical +32497,Love Letter (1995) ,Drama|Romance +32501,Natural City (2003),Action|Romance|Sci-Fi +32509,This Sporting Life (1963),Drama +32511,"Touch of Zen, A (Xia nu) (1971)",Action|Adventure +32515,Walker (1987),Adventure|Drama|War|Western +32518,Zu: Warriors from the Magic Mountain (Xin shu shan jian ke) (1983),Action|Adventure|Fantasy|Horror +32520,Whistle Down the Wind (1961),Drama +32525,The Earrings of Madame de... (1953),Drama|Romance +32535,No One Writes to the Colonel (El coronel no tiene quien le escriba) (1999),Drama +32551,Speedy (1928),Action|Comedy +32560,Invasion of Astro-Monster (Godzilla vs. Monster Zero) (Kaijû daisensô) (1965),Action|Adventure|Sci-Fi +32562,Harvie Krumpet (2003),Animation|Comedy|Drama +32567,Investigating Sex (a.k.a. Intimate Affairs) (2001),Comedy|Drama +32582,"Wild Parrots of Telegraph Hill, The (2003)",Documentary +32584,"Ballad of Jack and Rose, The (2005)",Drama +32587,Sin City (2005),Action|Crime|Film-Noir|Mystery|Thriller +32589,Beauty Shop (2005),Comedy +32591,Look at Me (Comme une image) (2004),Comedy|Drama|Romance +32593,Dust to Glory (2005),Action|Adventure|Documentary +32596,Sahara (2005),Action|Adventure|Comedy +32598,Fever Pitch (2005),Comedy|Romance +32600,Eros (2004),Drama +32602,Winter Solstice (2004),Drama +32605,Smile (2005),Drama +32617,Eye of the Tiger (1986),Action +32620,Not on the Lips (Pas sur la bouche) (2003),Comedy|Musical|Romance +32625,"Krakatoa, East of Java (1969)",Adventure|Drama +32627,Rhinestone (1984),Comedy +32632,Electra Glide in Blue (1973),Action|Crime +32646,Bring on the Night (1985),Documentary|Musical +32649,"Special Day, A (Giornata particolare, Una) (1977)",Drama|War +32653,This Land Is Mine (1943),Drama|War +32655,"Foul King, The (Banchikwang) (2000)",Comedy +32657,"Man Who Planted Trees, The (Homme qui plantait des arbres, L') (1987)",Animation|Drama +32659,Tanguy (2001),Comedy +32666,National Lampoon's Lady Killers (National Lampoon's Gold Diggers) (2003),Comedy +32668,Blind Horizon (2003),Drama|Thriller +32674,Islands in the Stream (1977),Drama +32677,Go for Broke! (1951),Drama|War +32686,Blood on Satan's Claw (a.k.a. Satan's Skin) (1971),Horror|Thriller +32689,"Reuben, Reuben (1983)",Comedy|Drama|Romance +32691,TNT Jackson (1974),Action|Drama +32705,Why Has Bodhi-Dharma Left for the East?: A Zen Fable (Dharmaga tongjoguro kan kkadalgun) (1989),Drama +32707,Blue (1993),Drama +32716,Bilitis (1977),Drama|Romance +32719,Burn! (Queimada) (1969),Drama|Thriller +32721,Battle of the Bulge (1965),Action|Drama|War +32724,Ghosts... of the Civil Dead (1988),Crime|Drama +32728,"Little Girl Who Lives Down the Lane, The (1976)",Drama|Mystery|Thriller +32735,Arabian Nights (Il fiore delle mille e una notte) (1974),Comedy|Drama|Fantasy +32737,Age of Consent (1969),Comedy|Drama|Romance +32741,Oedipus Rex (Edipo re) (1967),Drama +32743,Ringu 0: Bâsudei (2000),Drama|Horror|Thriller +32770,Brothers (Brødre) (2004),Drama +32773,Parenti serpenti (1992),Comedy +32777,Major Barbara (1941),Comedy +32779,Steppenwolf (1974),Drama +32781,Hawaii (1966),Drama +32783,Pretty Maids All in a Row (1971),Comedy|Crime|Thriller +32788,Loners (Samotári) (2000),Drama +32792,"Red Desert (Deserto rosso, Il) (1964)",Drama +32797,Satan's Brew (Satansbraten) (1976),Comedy|Drama +32799,Maidens in Uniform (Mädchen in Uniform) (1931),Drama|Romance +32811,Diary of a Lost Girl (Tagebuch einer Verlorenen) (1929),Drama +32825,Sexmission (Seksmisja) (1984),Adventure|Comedy|Sci-Fi +32830,44 Minutes: The North Hollywood Shoot-Out (2003),Action|Crime +32834,Macbeth (1948),Drama +32836,Garage Olimpo (1999),Drama +32840,Vincent (1982),Animation +32844,Waterloo Bridge (1940),Drama|Romance|War +32851,Hotel Terminus: The Life and Times of Klaus Barbie (Hôtel Terminus) (1988),Documentary +32853,"Sorrow and the Pity, The (Le chagrin et la pitié) (1969)",Documentary|War +32860,Premiers désirs (1984),Drama|Romance +32862,With Six You Get Eggroll (1968),Comedy|Romance +32864,"Move Over, Darling (1963)",Comedy|Romance +32866,Love Me or Leave Me (1955),Drama|Musical|Romance +32875,Holiday (Jour de fête) (1949),Comedy +32882,"Big Store, The (1941)",Comedy|Musical +32890,Mother Küsters Goes to Heaven (Mutter Küsters' Fahrt zum Himmel) (1975),Drama +32892,Ivan's Childhood (a.k.a. My Name is Ivan) (Ivanovo detstvo) (1962),Drama|War +32898,"Trip to the Moon, A (Voyage dans la lune, Le) (1902)",Action|Adventure|Fantasy|Sci-Fi +32902,Whisky (2004),Comedy|Drama +32906,"Ascent, The (Voskhozhdeniye) (1977)",Drama|War +32914,Carrie (2002),Drama|Horror|Thriller +32917,Boccaccio '70 (1962),Comedy|Fantasy|Romance +32928,Control (2004),Crime|Sci-Fi|Thriller +32935,Evil Remains (Trespassing) (2004),Horror|Thriller +32941,"Self-Made Hero, A (Un héros très discret) (1996)",Comedy|Drama +32943,Life Is Sweet (1990),Comedy|Drama +32952,Ride the Pink Horse (1947),Drama|Film-Noir|Mystery|Thriller +32954,"Chant of Jimmy Blacksmith, The (1978)",Drama +32957,Double Suicide (Shinjû: Ten no amijima) (1969),Drama|Romance +32959,Boy (Shônen) (1969),Drama +32966,Let Him Have It (1991),Crime|Drama +32968,Guelwaar (1993),Drama +32972,Dr. Akagi (Kanzo sensei) (1998),Comedy|Drama|War +32974,Black Rain (Kuroi ame) (1989),Drama|War +32976,"Démons de Jésus, Les (1997)",Comedy +32988,Clean (2004),Drama +32994,"Delicate Art of Parking, The (2003)",Comedy +32999,Wilson (1944),Drama +33001,Blossoms in the Dust (1941),Drama +33004,"Hitchhiker's Guide to the Galaxy, The (2005)",Adventure|Comedy|Sci-Fi +33019,Barefoot (Barfuss) (2005),Comedy|Drama|Romance +33021,Dark Habits (Entre tinieblas) (1983),Comedy|Drama +33027,Snake and Crane Arts of Shaolin (She hao ba bu) (1978),Action|Drama +33036,"Eiger Sanction, The (1975)",Action|Adventure|Drama|Thriller +33049,It Started in Naples (1960),Comedy|Drama +33051,Skin Game (1971),Comedy|Romance|Western +33072,F for Fake (Vérités et mensonges) (1973),Documentary|Mystery +33081,Love Comes Softly (2003),Drama|Romance|Western +33085,"Amityville Horror, The (2005)",Horror|Thriller +33090,Mutant Aliens (2001),Animation|Comedy|Sci-Fi +33092,Acts of Worship (2001) ,Drama +33098,Ike: Countdown to D-Day (2004),Action|Adventure|Drama|War +33110,Phantom Lady (1944),Crime|Film-Noir|Mystery +33113,Act of Violence (1948),Drama|Film-Noir|Thriller +33117,Rouge (Yin ji kau) (1988),Drama|Fantasy|Mystery|Romance +33119,Miracle in Milan (Miracolo a Milano) (1951),Comedy|Drama|Fantasy +33124,Before the Fall (NaPolA - Elite für den Führer) (2004),Drama|War +33126,"Frisco Kid, The (1979)",Comedy|Western +33129,Onmyoji (Onmyoji: The Yin Yang Master) (2001),Action|Drama|Fantasy|Horror +33132,State Property 2 (2005),Action|Crime|Drama +33134,"Year of the Yao, The (2004)",Documentary +33136,House of D (2004),Drama +33138,Palindromes (2004),Adventure|Comedy|Drama +33140,Down and Derby (2005),Children|Comedy +33142,"Wake in Providence, A (1999)",Comedy +33145,"Lot Like Love, A (2005)",Comedy|Drama|Romance +33148,King's Ransom (2005),Comedy|Crime +33150,"Game of Their Lives, The (2005)",Drama +33152,Madison (2001),Drama +33154,Enron: The Smartest Guys in the Room (2005),Documentary +33158,xXx: State of the Union (2005),Action|Crime|Thriller +33160,Death of a Dynasty (2003),Comedy +33162,Kingdom of Heaven (2005),Action|Drama|Romance|War +33164,House of Wax (2005),Horror|Thriller +33166,Crash (2004),Crime|Drama +33168,Jiminy Glick in La La Wood (2004),Comedy|Mystery +33171,Mysterious Skin (2004),Drama|Mystery +33188,Mischief (1985),Comedy|Romance +33191,Jubal (1956),Western +33193,Viva María! (1965),Adventure|Comedy|Western +33201,Between Your Legs (Entre las piernas) (1999),Drama|Mystery|Romance|Thriller +33229,"Angry Silence, The (1960)",Drama +33235,Isadora (1968),Drama +33237,San Francisco (1936),Drama|Musical|Romance +33245,Earth (Zemlya) (1930),Drama +33247,Torments (El) (This Strange Passion) (1953),Drama|Romance +33251,"Bitch, The (La chienne) (1931)",Drama +33253,Erendira (1983),Drama +33255,"Private Lives of Elizabeth and Essex, The (1939)",Drama|Romance +33261,"Search, The (1948)",Drama|War +33264,Satan's Tango (Sátántangó) (1994),Drama +33267,On Borrowed Time (1939),Comedy|Drama|Fantasy +33270,"Taste of Tea, The (Cha no aji) (2004)",Comedy|Drama +33288,Kes (1969),Drama +33292,"Human Comedy, The (1943)",Drama +33294,Vampire Hunter D (1985),Animation|Fantasy|Horror +33296,Buying the Cow (2002),Comedy|Romance +33310,"Common Thread, A (a.k.a. Sequins) (Brodeuses) (2004)",Drama|Romance +33312,"Cocoanuts, The (1929)",Comedy|Musical +33316,"Bridge, The (Brücke, Die) (1959)",Drama|War +33318,In the Time of the Butterflies (2001),Crime|Drama +33321,Road House (1948),Drama|Film-Noir +33328,Dark Eyes (Oci ciornie) (1987),Comedy|Drama|Romance +33340,Kids Return (Kizzu ritân) (1996),Drama +33342,"Fearless Freaks, The (2005)",Documentary|Musical +33358,Off the Map (2003),Comedy|Drama +33363,Unconscious (Inconscientes) (2004),Comedy|Mystery|Romance +33376,"Tesseract, The (2003)",Action|Crime|Drama|Thriller +33380,25 Watts (2001),Comedy|Drama +33389,"Hiding Place, The (1975)",Drama|War +33393,"Keys of the Kingdom, The (1944)",Drama +33397,300 Miles to Heaven (300 Mil do Nieba) (1989),Drama +33401,"Adventurer, The (1917)",Comedy +33410,Crackerjack (2002),Comedy +33415,Solino (2002),Comedy|Drama +33421,Dear Wendy (2005),Drama +33424,"List of Adrian Messenger, The (1963)",Crime|Drama|Mystery +33426,9 Souls (Nain souruzu) (2003),Drama +33435,Los Angeles Plays Itself (2003),Documentary +33437,Unleashed (Danny the Dog) (2005),Action|Crime|Drama|Thriller +33445,Martín (Hache) (1997),Drama +33451,"Ugly, Dirty and Bad (Brutti sporchi e cattivi) (1976)",Comedy|Drama +33454,Léolo (1992),Comedy|Drama +33463,DuckTales: The Movie - Treasure of the Lost Lamp (1990),Adventure|Animation|Children|Comedy|Fantasy +33480,Babes in Arms (1939),Comedy|Musical +33487,Samaritan Girl (Samaria) (2004),Drama +33493,Star Wars: Episode III - Revenge of the Sith (2005),Action|Adventure|Sci-Fi +33495,Kicking & Screaming (2005),Comedy +33499,Monster-in-Law (2005),Comedy|Romance +33507,Agatha (1979),Drama|Mystery +33524,Death Takes a Holiday (1934),Fantasy|Romance +33533,Vodka Lemon (2003),Comedy|Drama +33539,Deep Blue (2003),Documentary +33555,"Invisible Woman, The (1940)",Comedy|Romance|Sci-Fi +33558,"Snow Walker, The (2003)",Adventure|Drama +33564,Divorce - Italian Style (Divorzio all'italiana) (1961),Comedy +33567,Carefree (1938),Comedy|Musical|Romance +33573,Wu Tang Master (Tian shi zhuang xie) (1983),Action +33579,China Strike Force (Leui ting jin ging) (2000),Action +33585,9 Songs (2004),Drama|Romance +33587,"Uninvited, The (1944)",Horror|Mystery|Romance +33592,Bad Guy (Nabbeun namja) (2001),Drama +33603,Simon (2004),Comedy|Drama +33608,December 7th (1943),Documentary|War +33610,Bataan (1943),War +33615,Madagascar (2005),Adventure|Animation|Children|Comedy +33621,Somersault (2004),Drama +33624,11 Harrowhouse (1974),Comedy|Crime +33629,Airborne (1993),Adventure|Comedy +33639,Mad Hot Ballroom (2005),Children|Documentary +33641,Tell Them Who You Are (2004),Documentary +33644,Dominion: Prequel to the Exorcist (2005),Horror|Thriller +33646,"Longest Yard, The (2005)",Comedy|Drama +33649,Saving Face (2004),Comedy|Drama|Romance +33655,Most Wanted (1997),Action|Thriller +33660,Cinderella Man (2005),Drama|Romance +33669,"Sisterhood of the Traveling Pants, The (2005)",Adventure|Comedy|Drama +33672,Lords of Dogtown (2005),Action|Comedy|Drama +33675,After You (Après vous...) (2003),Comedy|Romance +33677,Rock School (2005),Documentary +33679,Mr. & Mrs. Smith (2005),Action|Adventure|Comedy|Romance +33681,"Adventures of Sharkboy and Lavagirl 3-D, The (2005)",Action|Adventure|Children|Fantasy +33683,High Tension (Haute tension) (Switchblade Romance) (2003),Horror|Thriller +33685,"Honeymooners, The (2005)",Comedy +33688,Parineeta (2005),Drama|Musical|Romance +33709,Toto le héros (1991),Drama +33722,Ladies in Lavender (2004),Comedy|Drama|Romance +33725,It's All Gone Pete Tong (2004),Comedy|Drama|Musical +33743,When Trumpets Fade (1998),Drama|War +33750,Innocent Voices (Voces inocentes) (2004),Drama|War +33755,Godzilla vs. Biollante (Gojira vs. Biorante) (1989) ,Action|Sci-Fi +33760,Anna and the King of Siam (1946),Drama|Romance +33767,Good Neighbor Sam (1964),Comedy +33779,Eddie Izzard: Dress to Kill (1999),Comedy +33781,Quo Vadis (1951),Drama|Romance +33790,"Captain's Paradise, The (1953)",Comedy +33794,Batman Begins (2005),Action|Crime|IMAX +33799,Aragami (2003),Action|Fantasy|Horror +33801,Godzilla: Final Wars (Gojira: Fainaru uôzu) (2004),Action|Adventure|Fantasy|Sci-Fi +33808,Kings & Queen (Rois et reine) (2004),Comedy|Drama +33815,"Perfect Man, The (2005)",Comedy|Drama|Romance +33817,My Summer of Love (2004),Drama|Romance +33819,Heights (2004),Drama +33821,"Deal, The (2005)",Drama +33823,"Bridge of San Luis Rey, The (2004)",Drama +33826,Saint Ralph (2004),Comedy|Drama +33830,Herbie: Fully Loaded (2005),Adventure|Comedy|Romance +33832,Yes (2004),Drama +33834,Land of the Dead (2005),Action|Horror|Thriller +33836,Bewitched (2005),Comedy|Fantasy|Romance +33838,Rize (2005),Documentary +33844,Exiles (Exils) (2004),Adventure|Drama +33847,Home Movie (2001),Documentary +33852,Becky Sharp (1935),Drama|Romance|War +33861,Danger: Diabolik (Diabolik) (1968),Action|Crime|Thriller +33863,"Trail of the Lonesome Pine, The (1936)",Drama|Romance +33880,Me and You and Everyone We Know (2005),Comedy|Drama +33893,"Perfect Crime, The (Crimen Ferpecto) (Ferpect Crime) (2004)",Comedy|Crime|Thriller +33896,3 Extremes (Three... Extremes) (Saam gaang yi) (2004),Horror +33898,Happily Ever After (Ils se marièrent et eurent beaucoup d'enfants) (2004),Comedy|Drama +33903,"Edukators, The (Die Fetten Jahre sind vorbei) (2004)",Comedy|Crime|Drama|Romance +33905,Somebody Up There Likes Me (1956),Action|Crime|Drama +33912,"Unmarried Woman, An (1978)",Comedy|Drama|Romance +33914,"Racket, The (1951)",Crime|Drama|Film-Noir +33917,"Member of the Wedding, The (1952)",Drama +33919,Coronado (2003),Action|Adventure|War +33921,Retrogade (2004),Action|Adventure|Sci-Fi +33928,Trekkies 2 (2004),Documentary|Sci-Fi +33930,Man with the Screaming Brain (2005),Adventure|Comedy|Sci-Fi +33933,Ulzana's Raid (1972),Adventure|Western +33940,Rabbit Test (1978),Comedy +33945,"New Land, The (Nybyggarna) (1972)",Drama|Western +33956,"Adventures of Mark Twain, The (1944)",Adventure|Drama +33958,Bordertown (1935),Crime|Drama +33966,Cop and ½ (1993),Comedy +33970,Equinox (1992),Drama|Mystery|Thriller +33972,Father's Little Dividend (1951),Comedy|Romance +33974,For Pete's Sake (1974),Comedy +33988,Twenty Bucks (1993),Comedy +33994,Silent Witness (Do Not Disturb) (1999),Action|Comedy|Thriller +33998,Deceived (1991),Thriller +34002,Room Service (1938),Comedy +34004,Desert Saints (2002),Action|Thriller +34008,Caterina in the Big City (Caterina va in città) (2003),Drama|Romance +34018,At the Circus (1939),Comedy|Musical +34026,"Outfit, The (1973)",Crime|Drama|Thriller +34032,Modigliani (2004),Drama +34039,Broadway Melody of 1940 (1940),Musical +34045,"I Inside, The (2004)",Fantasy|Mystery|Sci-Fi +34048,War of the Worlds (2005),Action|Adventure|Sci-Fi|Thriller +34051,My Brilliant Career (1979),Drama|Romance +34057,Godzilla vs. Hedorah (Gojira tai Hedorâ) (Godzilla vs. The Smog Monster) (1971) ,Horror|Sci-Fi +34063,Gambit (1966),Comedy|Crime +34065,Billion Dollar Brain (1967),Drama|Thriller +34072,"March of the Penguins (Marche de l'empereur, La) (2005)",Documentary +34076,Right Now (À tout de suite) (2004),Crime|Drama|Romance|Thriller +34099,Julian Po (1997),Comedy|Drama +34111,"God Who Wasn't There, The (2005)",Documentary +34115,Black Belt Jones (1974),Action|Comedy +34129,Rebound (2005),Comedy +34135,Bonjour Monsieur Shlomi (Ha-Kochavim Shel Shlomi) (2003),Comedy|Drama +34138,The Inner Circle (1991),Drama +34143,Dark Water (2005),Drama|Horror|Thriller +34148,"Beat That My Heart Skipped, The (battre mon coeur s'est arrêté, De) (2005)",Drama +34150,Fantastic Four (2005),Action|Adventure|Sci-Fi +34153,Murderball (2005),Documentary +34155,Saraband (2003),Drama +34158,Julie Johnson (2001),Drama +34162,Wedding Crashers (2005),Comedy|Romance +34164,Happy Endings (2005),Comedy|Drama +34170,C.H.O.M.P.S. (1979),Comedy|Sci-Fi +34177,"Hindenburg, The (1975)",Drama|Thriller +34185,Staying Together (1989),Comedy|Drama +34189,Twin Sitters (1994),Thriller +34193,Conflict (1945),Drama|Film-Noir +34198,Russian Dolls (Les poupées russes) (2005),Comedy|Romance +34214,"Generale Della Rovere, Il (1959)",Drama +34216,Rick (2003),Comedy|Drama +34224,No Blade of Grass (1970),Drama|Sci-Fi +34226,"Time to Love and a Time to Die, A (1958)",Drama|Romance|War +34229,"Big Sky, The (1952)",Drama|Western +34231,Fighter in the Wind (2004),Action|Drama +34234,Pornography (Pornografia) (2003),Drama|Romance|War +34238,Symmetry (Symetria) (2003),Crime|Drama +34240,"Karol: A Man Who Became Pope (Karol, un uomo diventato Papa) (Karol. Czlowiek, który zostal papiezem) (2005)",Drama +34246,Family Resemblances (Un air de famille) (1996),Comedy +34271,Hustle & Flow (2005),Crime|Drama +34292,Hardware (1990),Action|Horror|Sci-Fi +34299,"Appaloosa, The (1966)",Western +34306,Journey Into Fear (1943),Drama|Film-Noir|War +34314,Funny Ha Ha (2002),Comedy|Drama +34319,"Island, The (2005)",Action|Sci-Fi|Thriller +34321,Bad News Bears (2005),Children|Comedy +34323,"Devil's Rejects, The (2005)",Action|Crime|Horror +34326,Last Days (2005),Drama +34330,November (2004),Drama|Mystery +34332,Sky High (2005),Action|Adventure|Children|Comedy +34334,Stealth (2005),Action|Adventure|Sci-Fi|Thriller +34336,Must Love Dogs (2005),Comedy|Romance +34338,"Aristocrats, The (2005)",Comedy|Documentary +34353,Twice in a Lifetime (1985),Drama +34359,Georgy Girl (1966),Comedy +34364,This Is My Life (1992),Comedy|Drama +34369,The Music Lovers (1970),Drama +34371,Kiss and Make-Up (1934),Comedy|Musical|Romance +34375,"Touch of Spice, A (Politiki kouzina) (2003)",Comedy|Drama +34378,Dust Devil (1992),Horror|Mystery|Thriller +34405,Serenity (2005),Action|Adventure|Sci-Fi +34411,End of Suburbia: Oil Depletion and the Collapse of the American Dream (2004),Documentary +34416,Let's Get Lost (1988),Documentary|Musical +34426,"Talent Given Us, The (2004)",Comedy|Drama +34435,Sholay (1975),Action|Adventure|Comedy|Musical|Romance|Thriller +34437,Broken Flowers (2005),Comedy|Drama +34450,Miracles - Mr. Canton and Lady Rose (1989),Action|Comedy|Crime|Drama +34464,Christmas in August (Palwolui Christmas) (1998),Drama|Romance +34466,Hum Dil De Chuke Sanam (1999),Drama|Romance +34469,Baby Face (1933),Drama +34473,"Star, The (1952)",Drama +34482,"Browning Version, The (1951)",Drama +34488,14 Hours (Fourteen Hours) (1951),Drama|Film-Noir|Thriller +34499,"Heart Is Deceitful Above All Things, The (2004)",Drama +34505,Whispering Corridors (Yeogo Goedam) (1998),Drama|Horror +34511,Man-Thing (2005),Action|Horror|Sci-Fi +34517,Berserk (1967),Horror|Mystery|Thriller +34520,"Dukes of Hazzard, The (2005)",Action|Adventure|Comedy +34523,The Chumscrubber (2005),Comedy|Drama +34526,Secuestro Express (2004),Action|Drama|Thriller +34528,Junebug (2005),Comedy|Drama +34530,Deuce Bigalow: European Gigolo (2005),Comedy +34532,"Skeleton Key, The (2005)",Drama|Horror|Mystery|Thriller +34534,Four Brothers (2005),Action|Crime|Drama +34536,The Great Raid (2005),Action|Drama|War +34538,Asylum (2005),Romance|Thriller +34540,Pretty Persuasion (2005),Comedy|Drama +34542,Grizzly Man (2005),Documentary +34548,"Tree of Wooden Clogs, The (L'albero degli zoccoli) (1978)",Drama +34552,"Girl in the Café, The (2005)",Drama|Romance +34579,"24th Day, The (2004)",Drama|Thriller +34583,Prime Cut (1972),Action|Crime|Drama +34608,"Best of Everything, The (1959)",Drama|Romance +34624,Summer Magic (1963),Children|Comedy|Musical +34643,"Three Stooges Meet Hercules, The (1962)",Comedy|Fantasy +34645,Race with the Devil (1975),Action|Horror|Mystery +34648,Acacia (2003),Horror +34696,Dirty Money (Un flic) (1972),Crime|Drama +34767,My Date with Drew (2004),Comedy|Documentary|Romance +34800,Private Resort (1985),Comedy +34811,Pusher II: With Blood on My Hands (2004),Action|Crime|Drama|Thriller +35008,"Woman Rebels, A (Portrait of a Rebel) (1936)",Drama|Romance +35015,Duma (2005),Adventure|Drama +35050,Bitter Victory (1957),Action|Drama|Romance|War +35082,Lila Says (Lila dit ça) (2004),Crime|Drama|Romance +35331,Doomed to Die (1940),Crime|Drama|Mystery|Thriller +35347,Animal Farm (1954),Animation|Drama +35386,Winter Soldier (1972),Documentary|War +35629,"Sea, The (Hafið) (2002)",Drama +35636,Teen Witch (1989),Comedy +35640,"Last of Mrs. Cheyney, The (1937)",Comedy|Drama +35681,Koti-ikävä (2005),Drama +35738,Movie Movie (1978),Comedy|Musical +35807,"Teahouse of the August Moon, The (1956)",Comedy +35826,Do Fish Do It? (Fickende Fische) (2002),Drama|Romance +35828,Black (2005),Drama +35836,"40-Year-Old Virgin, The (2005)",Comedy|Romance +35843,Who Killed Bambi? (Qui a tué Bambi?) (2003),Drama|Thriller +35853,Blackout (Contraband) (1940),Adventure|Romance +35906,Toolbox Murders (2004),Horror|Mystery +35957,Red Eye (2005),Horror|Thriller +36046,Lightning Bug (2004),Drama|Horror|Thriller +36056,Man of the West (1958),Western +36083,Main Hoon Na (2004),Action|Comedy|Drama +36086,Dilwale Dulhania Le Jayenge (1995),Comedy|Musical|Romance +36152,Dreamchild (1985),Drama|Fantasy|Romance +36247,Miss Sweden (Fröken Sverige) (2004),Drama +36264,My Cousin Rachel (1952),Drama|Mystery|Romance +36276,Hidden (a.k.a. Cache) (Caché) (2005),Drama|Mystery|Thriller +36286,Nobody Will Speak of Us When We're Dead (Nadie hablará de nosotras cuando hayamos muerto) (1995),Drama +36289,Asterix & Obelix vs. Caesar (Astérix et Obélix contre César) (1999),Adventure|Children|Comedy|Fantasy +36312,"Key, The (1958)",Drama|Romance|War +36326,Strings (2004),Adventure|Fantasy +36363,Kin-Dza-Dza! (1986),Comedy|Drama|Sci-Fi +36373,Comrades: Almost a Love Story (Tian mi mi) (1996),Drama|Romance +36392,Supercross (2005),Action +36397,Valiant (2005),Adventure|Animation|Children|Comedy|Fantasy|War +36401,"Brothers Grimm, The (2005)",Comedy|Fantasy|Horror|Thriller +36405,"Desperadoes, The (1943)",Romance|Western +36426,Black Dragons (1942),Mystery|Thriller|War +36436,"Holy Girl, The (Niña santa, La) (2004)",Drama +36462,They Came Back (Les Revenants) (2004),Drama|Fantasy +36477,"Baxter, The (2005)",Comedy|Drama|Romance +36509,"Cave, The (2005)",Action|Adventure|Horror|Mystery|Sci-Fi|Thriller +36511,Undiscovered (2005),Comedy|Drama|Romance +36513,Dirty Deeds (2005),Comedy +36517,"Constant Gardener, The (2005)",Drama|Thriller +36519,Transporter 2 (2005),Action|Crime|Thriller +36523,Margaret Cho: Assassin (2005),Comedy +36525,Just Like Heaven (2005),Comedy|Fantasy|Romance +36527,Proof (2005),Drama +36529,Lord of War (2005),Action|Crime|Drama|Thriller|War +36531,Venom (2005),Horror|Thriller +36533,Cry_Wolf (a.k.a. Cry Wolf) (2005),Drama|Horror|Mystery|Thriller +36535,Everything Is Illuminated (2005),Comedy|Drama +36537,Thumbsucker (2005),Comedy|Drama +36539,"Thing About My Folks, The (2005)",Comedy +36541,HellBent (2004),Horror|Thriller +36543,Crazy Like a Fox (2004),Comedy|Drama +36545,G (2002),Drama|Romance +36553,In Old Chicago (1937),Action|Drama|Musical|War +36576,Now and Forever (1934),Drama|Romance +36630,L.A. Without a Map (1998),Comedy|Drama|Romance +36683,Where Angels Fear to Tread (1991),Drama +36711,Born in Flames (1983),Comedy|Drama|Fantasy|Sci-Fi +36752,Revenge of the Ninja (1983),Action|Drama +36799,Sometimes in April (2005),Drama|War +36816,Angel in My Pocket (1969),Comedy +36850,Police Story 2 (Ging chaat goo si juk jaap) (1988),Action|Comedy|Crime|Thriller +36883,"Jour se lève, Le (Daybreak) (1939)",Crime|Drama|Romance|Thriller +36902,International House (1933),Comedy +37058,"Edge of the World, The (1937)",Drama|Romance +37113,Golden Boy (1939),Drama +37211,Go West (1940),Comedy|Musical|Western +37240,Why We Fight (2005),Documentary +37257,"Companeros (Vamos a matar, compañeros) (1970)",Comedy|Western +37269,Will Penny (1968),Romance|Western +37277,200 Motels (1971),Comedy|Musical +37287,Gertrud (1964),Drama +37335,Come Drink with Me (Da zui xia) (1966),Action|Adventure|Crime +37375,Kitty Foyle (1940),Drama|Romance +37380,Doom (2005),Action|Horror|Sci-Fi +37382,Domino (2005),Crime|Drama|Thriller +37384,Waiting... (2005),Comedy +37386,Aeon Flux (2005),Action|Sci-Fi +37475,"Unfinished Life, An (2005)",Drama +37477,"Man, The (2005)",Action|Comedy|Crime +37495,Survive Style 5+ (2004),Fantasy|Mystery|Romance|Thriller +37545,Woyzeck (1979),Drama +37626,It's a Gift (1934),Comedy +37653,Zozo (2005),Drama +37663,Blue Hill Avenue (2001),Crime|Drama +37683,Chapter Two (1979),Comedy|Drama|Romance +37720,"Exorcism of Emily Rose, The (2005)",Crime|Drama|Horror|Thriller +37727,Flightplan (2005),Action|Drama|Thriller +37729,Corpse Bride (2005),Animation|Comedy|Fantasy|Musical|Romance +37731,Green Street Hooligans (a.k.a. Hooligans) (2005),Crime|Drama +37733,"History of Violence, A (2005)",Action|Crime|Drama|Thriller +37736,Oliver Twist (2005),Drama +37739,"Greatest Game Ever Played, The (2005)",Drama +37741,Capote (2005),Crime|Drama +37744,"Story of Vernon and Irene Castle, The (1939)",Musical|Romance|War +37785,"Anderson Tapes, The (1971)",Crime|Drama|Thriller +37824,Born to Fight (Kerd ma lui) (2004),Action|Adventure|Crime|Thriller +37830,Final Fantasy VII: Advent Children (2004),Action|Adventure|Animation|Fantasy|Sci-Fi +37837,Côte d'Azur (Crustacés et coquillages) (2005),Comedy|Musical|Romance +37844,Roll Bounce (2005),Comedy|Drama|Romance +37846,Daltry Calhoun (2005),Comedy|Drama +37853,Into the Blue (2005),Action|Adventure|Crime|Thriller +37855,"Prize Winner of Defiance Ohio, The (2005)",Drama +37857,MirrorMask (2005),Adventure|Children|Drama|Fantasy +37949,Kwik Stop (2001),Comedy|Drama|Romance +37955,Innocence (2004),Drama|Fantasy|Mystery +37957,4 (2005),Drama +37960,Book of Love (2004),Comedy|Drama +37976,"Flowers of St. Francis (Francesco, giullare di Dio) (1950)",Drama +37982,Madhouse (2004),Horror|Thriller +38001,Man to Man (2005),Drama +38004,Münchhausen (1943),Adventure|Comedy|Fantasy +38036,Medea (1988),Drama +38038,Wallace & Gromit in The Curse of the Were-Rabbit (2005),Adventure|Animation|Children|Comedy +38046,Seven Swords (Chat gim) (2005),Action|Drama +38061,Kiss Kiss Bang Bang (2005),Comedy|Crime|Mystery|Thriller +38086,Wishing Stairs (Yeogo goedam 3: Yeowoo gyedan) (2003),Drama|Horror +38095,"Bittersweet Life, A (Dalkomhan insaeng) (2005)",Action|Crime|Drama +38097,Dumplings (Gaau ji) (2004),Drama|Horror|Thriller +38159,"Short Film About Love, A (Krótki film o milosci) (1988)",Drama|Romance +38164,"All This, and Heaven Too (1940)",Drama|Romance +38188,Bubble (2006),Crime|Drama|Mystery +38198,Darwin's Nightmare (2004),Documentary +38294,Beowulf & Grendel (2005),Action|Adventure|Drama|Fantasy +38304,No Direction Home: Bob Dylan (2005),Documentary +38320,Valerie and Her Week of Wonders (Valerie a týden divu) (1970),Adventure|Drama|Fantasy +38376,Everybody's Fine (Stanno tutti bene) (1990),Comedy|Drama +38384,Hail the Conquering Hero (1944),Comedy +38388,Goal! The Dream Begins (Goal!) (2005),Drama +38435,Forty Shades of Blue (2005),Drama +38473,Touch the Sound: A Sound Journey with Evelyn Glennie (2004),Documentary +38538,Speak (2004),Drama +38583,"Wraith, The (1986)",Action|Horror|Sci-Fi|Thriller +38600,Factotum (2005),Drama +38656,Sweet Movie (1974),Comedy|Drama +38701,Don't Come Knocking (2005),Drama|Western +38713,Bullets or Ballots (1936),Crime|Drama|Thriller +38798,In Her Shoes (2005),Comedy|Drama +38839,"Ketchup Effect, The (Hip Hip Hora!) (2004)",Drama +38843,55 Days at Peking (1963),Drama|War +38849,Dead & Breakfast (2004),Comedy|Horror|Musical +38867,Freeze Frame (2004),Crime|Drama|Thriller +38881,Punishment Park (1971),Drama|Thriller +38884,"Mating Game, The (1959)",Comedy|Romance +38886,"Squid and the Whale, The (2005)",Comedy|Drama +38992,Two for the Money (2005),Drama +38994,Separate Lies (2005),Drama|Romance|Thriller +39048,Fjorton suger (2004),Drama|Romance +39075,Evelyn Prentice (1934),Drama|Mystery|Romance +39183,Brokeback Mountain (2005),Drama|Romance +39231,Elizabethtown (2005),Comedy|Drama|Romance +39234,North Country (2005),Drama +39244,Leila (1996),Drama|Romance +39292,"Good Night, and Good Luck. (2005)",Crime|Drama +39305,Li'l Abner (1959),Comedy|Musical +39307,Dreamer: Inspired by a True Story (2005),Children|Drama +39364,"Profession of Arms, The (Il mestiere delle armi) (2001)",Adventure|Drama|War +39369,Detective Story (1951),Crime|Drama|Film-Noir +39381,"Proposition, The (2005)",Crime|Drama|Western +39390,"Gospel, The (2005)",Drama +39394,Dandelion (2004),Drama +39398,C.S.A.: The Confederate States of America (2004),Comedy|Drama +39400,"Fog, The (2005)",Action|Horror|Mystery|Thriller +39402,Loggerheads (2005),Drama +39408,Left Behind: World at War (2005),Drama +39410,Protocols of Zion (2005),Documentary +39412,Living 'til the End (2005),Drama +39414,Shopgirl (2005),Comedy|Drama|Romance +39416,Kids in America (2005),Comedy|Drama +39419,Where the Truth Lies (2005),Drama|Thriller +39421,After School Special (a.k.a. Barely Legal) (2003),Comedy +39425,Emmanuel's Gift (2005),Documentary +39427,Stay (2005),Thriller +39429,Confess (2005),Drama|Thriller +39435,"Legend of Zorro, The (2005)",Action|Adventure|Drama|Western +39439,God's Sandbox (Tahara) (2002),Drama +39441,New York Doll (2005),Documentary +39444,"Weather Man, The (2005)",Comedy|Drama +39446,Saw II (2005),Horror|Thriller +39449,Prime (2005),Comedy|Drama|Romance +39474,One Wonderful Sunday (Subarashiki nichiyobi) (1947),Drama|Romance +39481,Will Success Spoil Rock Hunter? (1957),Comedy|Romance +39516,Don't Move (Non ti muovere) (2004),Drama +39524,"3 Rooms of Melancholia, The (Melancholian 3 huonetta) (2004)",Documentary +39529,"Race for Your Life, Charlie Brown (1977)",Adventure|Animation|Children +39615,Jerusalem (1996),Drama +39625,"Genius, Two Friends, and an Idiot, A (Trinity Is Back Again) (Un genio, due compari, un pollo) (1975)",Comedy|Western +39659,Teorema (1968),Drama +39703,Little Fish (2005),Crime|Drama|Romance|Thriller +39731,Champion (1949),Drama|Film-Noir|Romance +39740,Requiem for a Vampire (Vierges et vampires) (1971),Horror +39768,Life is a Miracle (Zivot je cudo) (2004),Comedy|Drama|Musical|Romance|War +39777,Tarzan the Ape Man (1932),Action|Adventure +39779,Tarzan and His Mate (1934),Action|Adventure +39786,Midnight Lace (1960),Mystery|Thriller +39796,Empire of the Wolves (L'empire des loups) (2005),Action|Drama|Thriller +39801,"Great Yokai War, The (Yôkai daisensô) (2005)",Adventure|Comedy|Fantasy|Horror +39818,"Swindle, The (Bidone, Il) (1955)",Drama +39824,Mahogany (1975),Drama|Romance +39857,Nordkraft (2005),Crime|Drama|Romance +39869,Manderlay (2005),Drama +39876,Week-End in Havana (1941),Comedy|Musical|Romance +39886,Nine Lives (2005),Drama +39896,South Central (1992),Action|Crime|Drama +39931,Damnation Alley (1977),Drama|Sci-Fi|Thriller +39934,"Bridges at Toko-Ri, The (1954)",Drama|Romance|War +39941,"Love on the Run (Amour en fuite, L') (1979)",Comedy|Drama|Romance +40010,Duck Season (Temporada de patos) (2004),Comedy +40015,Aprile (1998),Comedy +40033,"Adventures of Prince Achmed, The (Abenteuer des Prinzen Achmed, Die) (1926)",Adventure|Animation|Fantasy|Romance +40111,"Gore Gore Girls, The (1972)",Comedy|Horror|Mystery +40148,Revolver (2005),Crime|Drama|Thriller +40226,Wild Zero (2000),Action|Comedy|Horror|Romance|Sci-Fi +40275,Everything Put Together (2000),Drama +40278,Jarhead (2005),Action|Drama|War +40291,Siblings (2004),Comedy +40337,Holy Guests (Ha-Ushpizin) (2004),Drama +40339,Chicken Little (2005),Action|Adventure|Animation|Children|Comedy|Sci-Fi +40342,Romance & Cigarettes (2005),Comedy|Drama|Musical|Romance +40404,Al otro lado (2004),Drama +40412,Dead Man's Shoes (2004),Crime|Thriller +40414,Joyeux Noël (Merry Christmas) (2005),Drama|War +40422,"Count Dracula (Nachts, wenn Dracula erwacht) (1970)",Horror|Mystery +40425,Brides of Dracula (1960),Horror +40436,"Stratton Story, The (1949)",Drama|Romance +40457,"House That Dripped Blood, The (1971)",Horror|Mystery +40467,"Gorgon, The (1964)",Fantasy|Horror|Mystery +40478,Night of the Lepus (1972),Horror|Sci-Fi|Thriller +40491,"Match Factory Girl, The (Tulitikkutehtaan tyttö) (1990)",Comedy|Drama +40494,Zombie and the Ghost Train (Zombie ja Kummitusjuna) (1991),Comedy|Drama +40559,Highball (1997),Comedy|Drama +40574,Get Rich or Die Tryin' (2005),Action|Crime|Drama +40578,Sword of the Beast (Kedamono no ken) (1965),Action|Drama +40581,Just Friends (2005),Comedy|Romance +40583,Syriana (2005),Drama|Thriller +40586,Calamari Union (1985),Comedy +40589,"Best Intentions, The (Den goda viljan) (1992)",Drama|Romance +40591,"Bohemian Life, The (La vie de bohème) (1992)",Comedy|Drama +40597,One-Way Ticket to Mombasa (Menolippu Mombasaan) (2002),Comedy|Drama +40614,Derailed (2005),Drama|Thriller +40617,Creep (2004),Horror|Thriller +40629,Pride & Prejudice (2005),Drama|Romance +40699,Hi-Life (1998),Comedy|Romance +40723,Wolf Creek (2005),Crime|Horror|Thriller +40732,"Descent, The (2005)",Adventure|Drama|Horror|Thriller +40738,Summer Interlude (Sommarlek) (1951),Drama|Romance +40752,Takeshis' (2005),Comedy|Drama +40755,Forty Guns (1957),Drama|Western +40815,Harry Potter and the Goblet of Fire (2005),Adventure|Fantasy|Thriller|IMAX +40817,Dinner with Friends (2001),Comedy|Drama +40819,Walk the Line (2005),Drama|Musical|Romance +40826,Rent (2005),Drama|Musical|Romance +40828,"Story of Floating Weeds, A (Ukikusa monogatari) (1934)",Drama +40831,My Mother's Smile (a.k.a. The Religion Hour) (L'ora di religione) (Il sorriso di mia madre) (2002),Drama +40833,"Fists in the Pocket (Pugni in tasca, I) (1965)",Drama +40851,Zathura (2005),Action|Adventure|Children|Fantasy +40870,C.R.A.Z.Y. (2005),Drama +40887,Lonesome Jim (2005),Drama|Romance +40898,Our Vines Have Tender Grapes (1945),Drama +40946,Sarah Silverman: Jesus Is Magic (2005),Comedy|Musical +40952,Bee Season (2005),Drama +40955,Breakfast on Pluto (2005),Comedy|Drama +40959,"Ice Harvest, The (2005)",Action|Comedy|Crime|Thriller +40962,"Yours, Mine and Ours (2005)",Comedy|Romance +40964,In the Mix (2005),Comedy|Crime|Romance +40966,"Libertine, The (2004)",Drama +40969,First Descent (2005),Documentary +40973,"Wild Geese, The (1978)",Action|Adventure|Drama|War +40988,Hondo (1953),Western +41014,"Bird with the Crystal Plumage, The (Uccello dalle piume di cristallo, L') (1970)",Crime|Horror|Mystery|Thriller +41025,"Good Woman, A (2004)",Comedy|Drama|Romance +41058,Gate of Flesh (Nikutai no mon) (1964),Drama +41094,Brides (Nyfes) (2004),Drama|Romance +41126,"Clockmaker of St. Paul, The (L'horloger de Saint-Paul) (1974)",Crime|Drama +41130,Welcome to the Roses (Bienvenue chez les Rozes) (2003),Comedy +41136,"Driver, The (1978)",Action|Crime|Film-Noir +41212,Mondovino (2004),Documentary +41226,Sounder (1972),Drama +41285,Match Point (2005),Crime|Drama|Romance +41336,Nazarin (Nazarín) (1959),Drama +41353,Ziegfeld Follies (1945),Comedy|Musical +41402,Lorna (1964),Drama +41411,"Deep, The (1977)",Adventure|Horror|Mystery|Thriller +41425,"Dying Gaul, The (2005)",Drama|Romance +41434,After Innocence (2005),Crime|Documentary +41499,"Citadel, The (1938)",Drama +41518,Beyond the Gates of Splendor (2002),Documentary +41523,"Southern Yankee, A (1948)",Comedy|War|Western +41527,Paradise Now (2005),Crime|Drama|Thriller|War +41564,"Kid & I, The (2005)",Comedy +41566,"Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The (2005)",Adventure|Children|Fantasy +41569,King Kong (2005),Action|Adventure|Drama|Fantasy|Thriller +41571,Memoirs of a Geisha (2005),Drama|Romance +41573,"Family Stone, The (2005)",Comedy|Drama|Romance +41575,"Promise, The (Wu ji) (2005)",Action|Drama|Fantasy +41585,Kiss of Death (1947),Crime|Drama|Film-Noir +41596,Where Were You When the Lights Went Out? (1968),Comedy +41602,Balseros (Cuban Rafters) (2002),Documentary +41617,Havoc (2005),Crime|Drama|Romance +41627,Samurai Rebellion (Jôi-uchi: Hairyô tsuma shimatsu) (1967),Action|Drama +41644,Dog Nail Clipper (Koirankynnenleikkaaja) (2004),Drama +41650,Mother India (1957),Drama|Musical +41688,Cowards Bend the Knee (a.k.a. The Blue Hands) (2003),Drama|Romance +41691,"Generation, A (Pokolenie) (1955)",Drama|War +41699,"Ivan the Terrible, Part Two (Ivan Groznyy II: Boyarsky zagovor) (1958)",Drama +41704,"Shaft, The (a.k.a. Down) (2001)",Action|Horror|Mystery|Sci-Fi +41706,"Loveless, The (Breakdown) (1981)",Drama +41712,"Room for Romeo Brass, A (1999)",Comedy|Drama +41714,Dona Flor and Her Two Husbands (Dona Flor e Seus Dois Maridos) (1976),Comedy +41716,"Matador, The (2005)",Comedy|Drama|Thriller +41721,Look Both Ways (2005),Drama|Romance +41724,Wal-Mart: The High Cost of Low Price (2005),Documentary +41753,8 Million Ways to Die (1986),Action|Adventure|Crime|Thriller +41762,Beyond the Forest (1949),Drama|Film-Noir|Thriller +41767,Phffft (1954),Comedy|Romance +41769,Mozart and the Whale (2005),Comedy|Drama|Romance +41792,"Organization, The (1971)",Crime|Drama|Thriller +41810,Cinderella Liberty (1973),Drama|Romance +41812,Knute Rockne All American (1940),Drama +41815,"Scene at the Sea, A (Ano natsu, ichiban shizukana umi) (1991)",Comedy|Romance +41820,Birdcage Inn (Paran daemun) (1998),Drama +41822,Real Fiction (Shilje sanghwang) (2000),Crime|Drama +41824,Address Unknown (2001),Drama|War +41828,Don't Look Now: We're Being Shot At (La grande vadrouille) (1966),Comedy|War +41831,They Died with Their Boots On (1941),Drama|Romance|War|Western +41863,"Three Burials of Melquiades Estrada, The (2006)",Adventure|Crime|Drama +41880,House of Strangers (1949),Drama|Film-Noir +41889,Lili (1953),Drama|Musical|Romance +41912,Slim Susie (Smala Sussie) (2003),Comedy|Crime|Mystery +41914,Executive Protection (Livvakterna) (2001),Action|Thriller +41941,"Aura, The (Aura, El) (2005)",Crime|Drama|Thriller +41974,"Ambushers, The (1967)",Comedy|Sci-Fi|Thriller +41997,Munich (2005),Action|Crime|Drama|Thriller +42002,"Producers, The (2005)",Comedy|Musical +42004,Transamerica (2005),Adventure|Comedy|Drama +42007,Rumor Has It... (2005),Comedy|Drama|Romance +42009,Cheaper by the Dozen 2 (2005),Adventure|Comedy +42011,Fun with Dick and Jane (2005),Comedy|Crime +42013,"Ringer, The (2005)",Comedy +42015,Casanova (2005),Action|Adventure|Comedy|Drama|Romance +42018,Mrs. Henderson Presents (2005),Comedy|Drama +42021,"White Countess, The (2005)",Drama +42053,Dirty Love (2005),Comedy|Romance +42094,"Spirit of the Beehive, The (Espíritu de la colmena, El) (1973)",Drama|Horror|Mystery +42150,Abouna (2002),Drama +42152,Interrogation (Przesluchanie) (1989),Crime|Drama|Thriller +42163,Richard Pryor: Live in Concert (1979),Comedy|Documentary +42172,Kevin & Perry Go Large (2000),Comedy +42176,"Ear, The (Ucho) (1970)",Drama|Thriller +42189,"Debutantes, Los (2003)",Crime|Drama|Thriller +42197,Keeping Mum (2005),Comedy|Crime +42208,Paheli (2005),Drama|Fantasy|Musical|Romance +42213,"Goodnight, Mister Tom (1999)",Drama +42217,Late Spring (Banshun) (1949),Drama +42285,"Dentist, The (1996)",Horror|Thriller +42312,David Copperfield (1935),Adventure|Drama|Romance +42335,Familia (1996),Comedy +42385,Yamakasi - Les samouraïs des temps modernes (2001),Action|Crime|Drama +42413,After Midnight (1989),Horror|Thriller +42418,"New World, The (2005)",Adventure|Drama|Romance +42491,"When You Comin' Back, Red Ryder? (1979)",Drama +42518,Christmas in Connecticut (1945),Comedy|Romance +42543,She (1935),Adventure|Fantasy|Romance +42546,Passport to Pimlico (1949),Comedy +42548,Whisky Galore (1949),Comedy|Crime +42550,A Run for Your Money (1949),Comedy +42553,"Master of Ballantrae, The (1953)",Adventure +42556,7 Faces of Dr. Lao (1964),Fantasy|Mystery|Western +42559,Samurai Assassin (Samurai) (1965),Action|Adventure|Drama +42584,We All Loved Each Other So Much (C'eravamo tanto amati) (1974),Comedy|Drama +42591,A.K. (1985),Documentary +42602,"Boys of Baraka, The (2005)",Documentary +42629,Tartuffe (Herr Tartüff) (1925),Drama +42632,Lady Vengeance (Sympathy for Lady Vengeance) (Chinjeolhan geumjassi) (2005),Crime|Drama|Mystery|Thriller +42634,Boys Don't Cry (Chlopaki nie placza) (2000),Comedy +42636,Superproduction (Superprodukcja) (2003),Comedy +42638,Grand Theft Parsons (2003),Comedy|Drama +42661,"Cross of Lorraine, The (1943)",Drama|War +42677,"Cutting Edge: The Magic of Movie Editing, The (2004)",Documentary +42679,"Quiller Memorandum, The (1966)",Action|Drama|Mystery|Thriller +42681,49th Parallel (1941),Adventure|Drama|Thriller|War +42698,Yesterday (2004),Drama +42705,Penelope (1966),Comedy|Crime +42710,Ted Bundy (2002),Crime|Drama|Thriller +42718,District 13 (Banlieue 13) (2004),Action|Crime|Sci-Fi +42721,BloodRayne (2005),Action|Fantasy +42723,Hostel (2005),Horror +42725,Grandma's Boy (2006),Comedy +42728,Tristan & Isolde (2006),Drama|Romance +42730,Glory Road (2006),Drama +42732,Last Holiday (2006),Comedy +42734,Hoodwinked! (2005),Animation|Children|Comedy +42736,April's Shower (2003),Comedy|Romance +42738,Underworld: Evolution (2006),Action|Fantasy|Horror +42740,Looking for Comedy in the Muslim World (2005),Comedy +42761,Casper Meets Wendy (1998),Adventure|Children|Comedy|Fantasy +42763,Hell Drivers (1957),Drama +42783,Shadows of Our Forgotten Ancestors (Tini zabutykh predkiv) (1964),Drama|Romance +42794,Buried Alive (1990),Film-Noir|Horror|Thriller +42856,Seance (Kôrei) (2000),Drama|Horror|Thriller +42886,Hallelujah! (1929),Drama|Musical +42900,Cul-de-sac (1966),Comedy|Crime|Drama|Thriller +42935,Riding Alone for Thousands of Miles (Qian li zou dan qi) (2005),Drama +42938,Confidentially Yours (Vivement dimanche!) (1983),Comedy|Crime|Mystery|Thriller +42943,Revolution (1985),Adventure|Drama|War +42946,Project A ('A' gai waak) (1983),Action|Comedy +42952,"Woman's Face, A (1941)",Drama|Thriller +42956,Sword of Gideon (1986),Action|Drama|Thriller +42958,Little Manhattan (2005),Children|Comedy|Romance +42973,Crocodile (Ag-o) (1996),Drama +42984,"Lower Depths, The (Les bas-fonds) (1936)",Crime|Drama|Romance +43007,Vinci (2004),Comedy|Crime +43009,"Ordeal, The (Calvaire) (2004)",Drama|Horror +43011,"Dunwich Horror, The (1970)",Horror +43014,"Quatermass Xperiment, The (1955)",Horror|Mystery|Sci-Fi|Thriller +43022,Hellraiser: Hellseeker (2002),Horror +43039,Inside Daisy Clover (1965),Drama +43081,Gamera vs. Gyaos (Daikaijû kûchûsen: Gamera tai Gyaosu) (1967),Action|Horror|Sci-Fi +43177,Over the Edge (1979),Crime|Drama +43244,Roads to Koktebel (Koktebel) (2003),Drama|Romance +43248,Swamp Women (1956),Adventure|Crime|Horror +43260,8MM 2 (2005),Drama|Mystery|Thriller +43267,On Probation (Tiempo de Valientes) (2005),Action|Comedy +43269,Bombón: El Perro (El perro) (2004),Comedy|Drama +43289,"Bird People in China, The (Chûgoku no chôjin) (1998)",Adventure|Comedy|Drama|Fantasy +43292,Thoughtcrimes (2003),Action|Crime|Drama +43333,Water (2005),Drama|Romance +43351,"Temptations, The (1998)",Drama|Musical +43376,Sophie Scholl: The Final Days (Sophie Scholl - Die letzten Tage) (2005),Drama|War +43383,"Big House, The (1930)",Drama|Thriller +43389,Numbskull Emptybrook in the Army (Uuno Turhapuro armeijan leivissä) (1984),Comedy +43391,Matti: Hell Is for Heroes (Matti) (2006),Comedy|Drama +43396,"World's Fastest Indian, The (2005)",Drama +43415,As Tears Go By (Wong gok ka moon) (1988),Crime|Drama +43419,Bandidas (2006),Action|Comedy|Crime|Western +43444,Made in Britain (1982),Crime|Drama +43460,Tristram Shandy: A Cock and Bull Story (2005),Comedy|Drama +43482,"Bitter Tea of General Yen, The (1933)",Drama|Romance|War +43497,Love in the Afternoon (Chloe in the Afternoon) (L'amour l'après-midi) (1972),Drama|Romance +43518,Charlie: The Life and Art of Charles Chaplin (2003),Documentary +43538,Rampo (a.k.a. The Mystery of Rampo) (1994),Drama|Mystery +43549,Helter Skelter (2004),Action|Crime|Drama|Horror +43552,French Fried Vacation (Les Bronzés) (1978),Comedy +43556,Annapolis (2006),Drama +43558,Big Momma's House 2 (2006),Action|Comedy|Crime +43560,Nanny McPhee (2005),Children|Comedy|Fantasy +43567,Sweet November (1968),Drama +43571,Double Dare (2004),Documentary +43589,"Dark, The (2005)",Horror|Mystery|Thriller +43608,Panic in Year Zero! (1962),Horror|Sci-Fi|Thriller +43624,Here Comes the Groom (1951),Comedy|Musical|Romance +43626,Julie (1956),Thriller +43628,Tea For Two (1950),Comedy|Musical|Romance +43631,Green Dolphin Street (1947),Adventure|Drama|Romance +43633,"Lt. Robin Crusoe, U.S.N. (1966)",Adventure|Comedy +43635,Bye Bye Birdie (1963),Comedy|Musical +43652,"Comedians of Comedy, The (2005)",Comedy|Documentary +43675,"Honey Pot, The (1967)",Comedy|Crime +43677,"Tuskegee Airmen, The (1995)",Drama|War +43679,Final Destination 3 (2006),Horror|Mystery|Thriller +43682,I Could Go on Singing (1963),Drama|Musical +43684,Something New (2006),Comedy|Drama|Romance +43699,"Wind, The (1928)",Drama|Western +43708,Block Party (a.k.a. Dave Chappelle's Block Party) (2005),Comedy|Documentary +43710,Madame Curie (1943),Drama +43727,Orfeu (1999),Crime|Drama|Romance +43732,Sex of the Stars (Le sexe des étoiles) (1993),Drama +43744,Imagine Me & You (2005),Comedy|Drama|Romance +43762,"Mississippi Mermaid (Sirène du Mississipi, La) (1969)",Crime|Drama|Romance +43801,Good Old Daze (Le péril jeune) (1994),Comedy|Drama +43803,Place Vendôme (1998),Crime|Drama +43813,Broken Lance (1954),Drama|Romance|Western +43822,"Four Horsemen of the Apocalypse, The (1921)",Drama|Romance|War +43828,Sabah (2005),Comedy|Drama|Romance +43832,"Call of Cthulhu, The (2005)",Horror|Thriller +43836,"Pink Panther, The (2006)",Adventure|Comedy|Crime +43838,Troll (1986),Comedy|Fantasy|Horror +43853,"Business, The (2005)",Action|Comedy|Crime|Drama|Thriller +43869,Curious George (2006),Adventure|Animation|Children|Comedy +43871,Firewall (2006),Crime|Drama|Thriller +43883,"Great McGinty, The (1940)",Comedy +43892,Le créateur (1999) ,Comedy +43897,"White Diamond, The (2004)",Documentary +43899,Tony Takitani (2004),Drama +43904,When a Stranger Calls (2006),Horror|Thriller +43906,Tamara (2005),Fantasy|Horror|Thriller +43908,London (2005),Drama +43910,Neil Young: Heart of Gold (2006),Documentary|Musical +43912,Freedomland (2006),Crime|Drama +43914,Winter Passing (2005),Drama +43917,Eight Below (2006),Action|Adventure|Drama|Romance +43919,Date Movie (2006),Comedy|Romance +43921,Running Scared (2006),Action|Crime|Thriller +43923,Tyler Perry's Madea's Family Reunion (2006),Comedy|Drama +43926,Doogal (2006),Animation|Children +43928,Ultraviolet (2006),Action|Fantasy|Sci-Fi|Thriller +43930,Just My Luck (2006),Comedy|Romance +43932,Pulse (2006),Action|Drama|Fantasy|Horror|Mystery|Sci-Fi|Thriller +43934,Deep Sea 3D (2006),Documentary|IMAX +43936,16 Blocks (2006),Crime|Thriller +43967,Bongwater (1997),Comedy|Romance +43971,Trauma (1993),Horror|Mystery|Thriller +43983,Election (Hak se wui) (2005),Crime|Drama|Thriller +43987,Half Light (2006),Romance|Thriller +43997,Twist of Faith (2004),Documentary +44004,Failure to Launch (2006),Comedy|Romance +44022,Ice Age 2: The Meltdown (2006),Adventure|Animation|Children|Comedy +44041,All Quiet on the Western Front (1979),Action|Drama|War +44058,"Big White, The (2005)",Comedy|Crime|Drama +44073,Stromboli (1950),Drama +44100,Cyrano de Bergerac (1950),Drama|Romance +44115,Shinobi: Heart Under Blade (2005),Action|Drama|Fantasy|Romance +44124,Every Man for Himself (Slow Motion) (Sauve qui peut (la vie)) (1980),Drama +44153,Chronos (1985),Documentary|IMAX +44155,Five Children and It (2004),Adventure|Children|Fantasy +44161,Free Zone (2005),Drama|War +44168,"Naked Spur, The (1953)",Western +44187,"Prince & Me II: The Royal Wedding, The (2006)",Comedy|Romance +44189,Ask the Dust (2006),Drama|Romance +44191,V for Vendetta (2006),Action|Sci-Fi|Thriller|IMAX +44193,She's the Man (2006),Comedy|Romance +44195,Thank You for Smoking (2006),Comedy|Drama +44197,Find Me Guilty (2006),Comedy|Crime|Drama +44199,Inside Man (2006),Crime|Drama|Thriller +44204,Tsotsi (2005),Crime|Drama +44225,Aquamarine (2006),Children|Comedy|Fantasy +44234,"Illustrated Man, The (1969)",Sci-Fi +44238,Leprechaun 2 (1994),Comedy|Fantasy|Horror +44241,Leprechaun 3 (1995),Comedy|Fantasy|Horror +44243,Leprechaun 4: In Space (1997),Comedy|Fantasy|Horror|Sci-Fi +44253,"Dark at the Top of the Stairs, The (1960)",Drama +44255,Story of a Love Affair (Cronaca di un amore) (1950),Crime|Drama|Romance +44295,"Man Who Sued God, The (2001)",Comedy|Drama|Romance +44301,Lights in the Dusk (Laitakaupungin valot) (2006),Crime|Drama +44317,Kummeli Stories (1995),Comedy +44392,Stranger on the Third Floor (1940),Drama|Film-Noir +44397,"Hills Have Eyes, The (2006)",Drama|Horror|Thriller +44399,"Shaggy Dog, The (2006)",Adventure|Children|Comedy|Fantasy +44421,"Personal Journey with Martin Scorsese Through American Movies, A (1995)",Documentary +44427,Inspector Clouseau (1968),Comedy|Crime|Mystery +44494,Son of the Pink Panther (1993),Comedy +44511,Unknown White Male (2005),Documentary +44555,"Lives of Others, The (Das leben der Anderen) (2006)",Drama|Romance|Thriller +44568,"Red and the White, The (Csillagosok, katonák) (1967)",Drama|War +44571,Fatty Drives the Bus (1999),Comedy +44582,City on Fire (Lung fu fong wan) (1987),Action|Crime|Drama|Thriller +44585,"Goodbye, South, Goodbye (1996)",Crime|Drama +44587,Nanook of the North (1922),Documentary|Drama +44590,Don't Torture a Duckling (Non si sevizia un paperino) (1972),Horror|Mystery|Thriller +44595,Resurrection (1980),Drama|Fantasy +44597,Youth of the Beast (Yaju no seishun) (1963),Action|Crime|Mystery +44601,Go Tell the Spartans (1978),Drama|War +44611,They Call Me Mister Tibbs! (1970),Crime|Drama|Mystery +44613,Take the Lead (2006),Drama +44628,"Lacemaker, The (Dentellière, La) (1977)",Drama|Romance +44633,"Devil and Daniel Johnston, The (2005)",Documentary +44653,Money (L'argent) (1983),Crime|Drama +44655,"Trial of Joan of Arc, The (Procès de Jeanne d'Arc) (1962)",Drama|War +44657,Mouchette (1967),Drama +44663,"Caiman, The (Il caimano) (2006)",Comedy|Drama|Romance +44665,Lucky Number Slevin (2006),Crime|Drama|Mystery +44671,"Wild Blue Yonder, The (2005)",Sci-Fi +44674,Wheel of Time (2003),Documentary +44685,Riot On! (2004),Documentary +44694,Volver (2006),Comedy|Drama +44703,"N Word, The (2004)",Documentary +44709,Akeelah and the Bee (2006),Drama +44719,Brainstorm (2001),Drama +44729,Larry the Cable Guy: Health Inspector (2006),Comedy +44731,Stay Alive (2006),Horror|Sci-Fi|Thriller +44752,Annie Oakley (1935),Drama|Western +44759,Basic Instinct 2 (2006),Crime|Drama|Mystery|Thriller +44761,Brick (2005),Crime|Drama|Film-Noir|Mystery +44763,"Brothers Lionheart, The (Bröderna Lejonhjärta) (1977)",Adventure|Children|Fantasy +44777,Evil Aliens (2005),Comedy|Horror|Sci-Fi +44779,Santa's Slay (2005),Comedy|Fantasy|Horror +44788,This Film Is Not Yet Rated (2006),Documentary +44800,Fragile (2005),Horror|Thriller +44815,ATL (2006),Drama +44825,"Brotherhood of Justice, The (1986)",Action|Drama|Thriller +44828,Slither (2006),Comedy|Horror|Sci-Fi +44840,"Benchwarmers, The (2006)",Comedy +44844,Phat Girlz (2006),Comedy +44849,Renaissance (2006),Action|Animation|Film-Noir|Sci-Fi|Thriller +44851,Go for Zucker! (Alles auf Zucker!) (2004),Comedy +44856,"Curse of the Werewolf, The (1961)",Drama|Horror|Romance +44861,Dead Fish (2004),Action|Comedy|Drama|Thriller +44864,Friends with Money (2006),Comedy|Drama|Romance +44881,Keane (2004),Mystery|Thriller +44889,Reefer Madness: The Movie Musical (2005),Comedy|Drama|Musical +44892,I Love Your Work (2003),Drama|Mystery +44900,Beauty and the Bastard (Tyttö sinä olet tähti) (2005),Drama|Musical|Romance +44903,Dementia (a.k.a. Daughter of Horror) (1955),Horror|Mystery +44911,Magic (1978),Drama|Horror|Romance|Thriller +44929,Candy (2006),Drama|Romance +44931,Secrets of a Soul (Geheimnisse einer Seele) (1926),Drama +44937,"Child, The (L'enfant) (2005)",Crime|Drama +44943,9/11 (2002),Documentary +44947,Lacombe Lucien (1974),Drama +44949,Hoot (2006),Children|Comedy +44966,Where the Red Fern Grows (1974),Children|Drama +44972,Scary Movie 4 (2006),Comedy|Horror +44974,Hard Candy (2005),Drama|Thriller +45000,"Chinoise, La (1967)",Comedy|Drama +45003,Shutter (2004),Fantasy|Horror|Mystery|Thriller +45028,"Prairie Home Companion, A (2006)",Comedy|Drama|Musical +45030,Even Money (2006),Crime|Drama +45036,"Chess Players, The (Shatranj Ke Khilari) (1977)",Comedy|Drama +45038,Pinocchio and the Emperor of the Night (1987),Animation|Children|Fantasy +45047,Corvette Summer (1978),Adventure|Comedy +45062,"Sentinel, The (2006)",Crime|Drama|Thriller +45068,Mirage (1965),Mystery|Thriller +45072,"President's Last Bang, The (Geuddae geusaramdeul) (2005)",Comedy|Crime|Drama +45074,"Wild, The (2006)",Adventure|Animation|Children|Comedy|Fantasy +45079,"My Brother's Wife (Mujer de mi hermano, La) (2005)",Drama +45081,Silent Hill (2006),Fantasy|Horror|Thriller +45100,Battle in Heaven (Batalla en el cielo) (2005),Comedy|Drama|Romance +45106,American Dreamz (2006),Comedy|Drama +45134,Hôtel du Nord (1938),Drama +45137,Irresistible (2006),Drama|Thriller +45170,Mata Hari (1931),Drama|Romance +45172,23 (23 - Nichts ist so wie es scheint) (1998),Drama|Thriller +45175,Kinky Boots (2005),Comedy|Drama +45179,"Glass Key, The (1942)",Crime|Drama|Film-Noir|Mystery +45183,"Protector, The (a.k.a. Warrior King) (Tom yum goong) (2005)",Action|Comedy|Crime|Thriller +45186,Mission: Impossible III (2006),Action|Adventure|Thriller +45188,"Wayward Cloud, The (Tian bian yi duo yun) (2005)",Comedy|Drama|Musical +45192,"Nibelungen: Siegfried, Die (1924)",Adventure|Drama|Fantasy +45194,"Nibelungen: Kriemhild's Revenge, Die (Die Nibelungen: Kriemhilds Rache) (1924)",Adventure|Drama|Fantasy +45208,RV (2006),Adventure|Children|Comedy +45210,United 93 (2006),Crime|Drama +45221,Stick It (2006),Comedy +45224,Secret Beyond the Door (1948),Drama|Film-Noir|Mystery|Thriller +45259,Man Push Cart (2005),Drama +45303,"World, The (Shijie) (2004)",Drama +45329,Soldier Blue (1970),Western +45335,Footlight Parade (1933),Comedy|Musical|Romance +45361,"American Haunting, An (2005)",Drama|Horror|Mystery|Thriller +45382,Down in the Valley (2005),Drama|Romance +45412,"Hidden Blade, The (Kakushi ken oni no tsume) (2004)",Action|Drama|Romance +45431,Over the Hedge (2006),Adventure|Animation|Children|Comedy +45440,Art School Confidential (2006),Comedy|Drama +45442,Poseidon (2006),Action|Adventure|Thriller|IMAX +45447,"Da Vinci Code, The (2006)",Drama|Mystery|Thriller +45499,X-Men: The Last Stand (2006),Action|Sci-Fi|Thriller +45501,"Break-Up, The (2006)",Comedy|Drama|Romance +45503,Peaceful Warrior (2006),Drama +45506,Twelve and Holding (2005),Drama +45508,Wah-Wah (2005),Drama +45512,Keeping Up with the Steins (2006),Comedy +45517,Cars (2006),Animation|Children|Comedy +45521,Wassup Rockers (2005),Comedy|Drama +45525,"Lost City, The (2005)",Drama +45527,Standing Still (2005),Comedy|Drama|Romance +45533,Conspirators of Pleasure (Spiklenci slasti) (1996),Animation|Comedy +45537,Tall in the Saddle (1944),Mystery|Romance|Western +45550,Beyond a Reasonable Doubt (1956),Crime|Drama|Film-Noir +45578,"Earth Is a Sinful Song, The (Maa on syntinen laulu) (1973)",Drama +45581,Shanghai Dreams (Qing hong) (2005),Drama +45611,Vera Cruz (1954),Adventure|Western +45635,"Notorious Bettie Page, The (2005)",Drama +45642,Parting Glances (1986),Comedy|Drama|Romance +45648,Game 6 (2005),Comedy|Drama +45652,American Gun (2005),Drama +45656,Marilyn Hotchkiss' Ballroom Dancing & Charm School (2005),Comedy|Drama|Romance +45658,On a Clear Day (2005),Drama +45662,"Omen, The (2006)",Horror|Thriller +45664,"King, The (2005)",Drama +45666,Nacho Libre (2006),Comedy +45668,"Lake House, The (2006)",Drama|Fantasy|Romance +45672,Click (2006),Adventure|Comedy|Drama|Fantasy|Romance +45679,"Seventh Victim, The (1943)",Drama|Film-Noir|Horror|Mystery +45689,Bleak Moments (1972),Comedy|Drama +45691,Edvard Munch (1974),Drama +45707,"Ace of Hearts, The (1921)",Crime|Drama|Romance +45720,"Devil Wears Prada, The (2006)",Comedy|Drama +45722,Pirates of the Caribbean: Dead Man's Chest (2006),Action|Adventure|Fantasy +45726,"You, Me and Dupree (2006)",Comedy +45728,Clerks II (2006),Comedy +45730,Lady in the Water (2006),Drama|Fantasy|Mystery +45732,My Super Ex-Girlfriend (2006),Comedy|Fantasy|Romance +45756,Tammy and the Bachelor (1957),Musical|Romance +45758,Lady on a Train (1945),Comedy|Crime|Film-Noir|Mystery|Romance|Thriller +45761,"Nightmare Castle (Amanti d'oltretomba) (Lovers from Beyond the Tomb) (Faceless Monster, The) (1965)",Horror +45837,Let It Be (1970),Documentary +45845,"Farewell, Home Sweet Home (Adieu, plancher des vaches!) (1999)",Comedy|Drama +45852,See No Evil (2006),Horror +45880,Marie Antoinette (2006),Drama|Romance +45891,Lady in the Lake (1947),Crime|Drama|Film-Noir|Mystery|Romance +45899,Trial of the Road (Check-up on the Roads) (Checkpoint) (Proverka na dorogakh) (1971),Drama|War +45928,Who Killed the Electric Car? (2006),Documentary +45940,"Miracle of Bern, The (Wunder von Bern, Das) (2003)",Comedy|Drama +45942,"Mother and the Whore, The (Maman et la putain, La) (1973)",Drama +45950,"Inconvenient Truth, An (2006)",Documentary +45952,Test Pilot (1938),Drama|Romance +45969,Career Opportunities (1991),Comedy|Romance +45987,Chuck Berry Hail! Hail! Rock 'n' Roll (1987),Documentary|Musical +45991,Psych-Out (1968),Drama|Musical|Thriller +45994,National Lampoon's Cattle Call (Cattle Call) (2006),Comedy +46008,Sister Kenny (1946),Drama +46034,Mountain Patrol (Kekexili) (2004),Action|Drama +46062,High School Musical (2006),Children|Comedy|Drama|Musical|Romance +46065,Ice Bound (2003),Drama +46083,Drawing Restraint 9 (2005),Fantasy +46098,Crossing the Bridge: The Sound of Istanbul (2005),Documentary|Musical +46108,Lower City (Cidade Baixa) (2005),Drama +46115,Forever Mine (1999),Crime|Drama|Romance|Thriller +46154,"War Within, The (2005)",Drama +46194,Adam & Steve (2005),Comedy|Romance +46199,Beyond the Rocks (1922),Drama|Romance +46201,Bob the Butler (2005),Comedy +46231,Stoned (2005),Drama +46258,Marked Woman (1937),Crime|Drama|Film-Noir +46311,Running (1979),Drama +46318,Blessed Event (1932),Comedy|Drama +46322,Jet Li's Fearless (Huo Yuan Jia) (2006),Action|Drama +46325,Susan Lenox (Her Fall and Rise) (1931),Adventure|Drama|Romance +46331,"Adjuster, The (1991)",Drama +46335,"Fast and the Furious: Tokyo Drift, The (Fast and the Furious 3, The) (2006)",Action|Crime|Drama|Thriller +46337,Garfield: A Tail of Two Kitties (2006),Animation|Children|Comedy +46347,Metal: A Headbanger's Journey (2005),Documentary +46363,Summer in Berlin (Sommer vorm Balkon) (2005),Drama +46367,"Public Eye, The (1992)",Crime|Thriller +46372,"Bribe, The (1949)",Drama|Film-Noir|Thriller +46409,Without Love (1945),Comedy|Romance +46430,Waist Deep (2006),Action|Crime|Drama|Thriller +46441,"Sheriff and the Satellite Kid, The (1979)",Action|Comedy|Sci-Fi +46457,Triple Cross (1966),Action|Adventure|Drama|Thriller|War +46500,Mad Dog Morgan (1976),Action|Crime|Drama|Western +46525,Spite Marriage (1929),Comedy +46530,Superman Returns (2006),Action|Adventure|Sci-Fi|IMAX +46544,Edward II (1991),Drama +46559,"Road to Guantanamo, The (2006)",Drama|War +46561,Leonard Cohen: I'm Your Man (2005),Documentary|Musical +46572,Edmond (2005),Drama|Thriller +46574,"OH in Ohio, The (2006)",Comedy +46578,Little Miss Sunshine (2006),Adventure|Comedy|Drama +46581,Brothers of the Head (2005),Drama +46588,Forgiving Dr. Mengele (2006),Documentary +46595,Fuse (Gori vatra) (2003),Comedy|Drama +46604,Curse of the Pink Panther (1983),Comedy|Crime|Mystery +46613,Mimic: Sentinel (2003),Horror|Sci-Fi|Thriller +46627,Rock 'n' Roll Nightmare (1987),Fantasy|Horror +46634,These Girls (2005),Comedy +46640,Why Does Herr R. Run Amok? (Warum läuft Herr R. Amok?) (1970),Drama +46653,"300 Spartans, The (1962)",Adventure|Drama|War +46664,"Fallen Idol, The (1948)",Drama|Mystery|Thriller +46713,Desperate (1947),Drama|Film-Noir +46716,Knock on Any Door (1949),Crime|Drama|Film-Noir +46723,Babel (2006),Drama|Thriller +46748,China Seas (1935),Action|Adventure|Drama|Romance +46753,I Walk the Line (1970),Drama +46765,"Girl Can't Help It, The (1956)",Comedy +46770,Krrish (2006),Adventure|Musical|Romance|Sci-Fi +46772,Strangers with Candy (2005),Comedy +46788,Prophecy (1979),Horror|Sci-Fi +46790,"Kremlin Letter, The (1970)",Drama|Thriller +46803,Young Mr. Lincoln (1939),Drama +46808,Subject Two (2006),Drama|Thriller +46839,Three Times (2005),Drama|Romance +46848,"Gumball Rally, The (1976)",Adventure|Comedy +46850,Wordplay (2006),Documentary +46855,Army of Shadows (L'armée des ombres) (1969),Action|Drama|Thriller|War +46862,Orchestra Rehearsal (Prova d'orchestra) (1978),Drama +46865,Little Man (2006),Comedy +46869,Dames (1934),Comedy|Musical +46880,Dancing Lady (1933),Comedy|Musical|Romance +46901,"Purple Plain, The (1954)",Drama|War +46910,Coonskin (1975),Animation|Crime|Drama +46912,Memento Mori (Yeogo goedam II) (1999),Horror +46915,End Game (2006),Crime|Drama|Mystery +46919,End of the Spear (2005),Drama +46925,Two for the Seesaw (1962),Drama|Romance +46929,"Detective, The (1968)",Crime|Drama +46948,Monster House (2006),Animation|Children|Fantasy|Mystery +46952,Wrong Side Up (Pribehy obycejneho silenstvi) (2005),Comedy|Drama +46954,Just love me (Tylko mnie kochaj) (2006),Comedy|Romance +46957,Combien Tu M'aimes? (How Much Do You Love Me?) (2005),Comedy|Romance +46959,Colour Me Kubrick: A True...ish Story (2005),Comedy|Drama +46961,Death of a Bureaucrat (La muerte de un burócrata) (1966),Comedy +46965,Snakes on a Plane (2006),Action|Comedy|Horror|Thriller +46967,Scoop (2006),Comedy|Fantasy|Mystery +46970,Talladega Nights: The Ballad of Ricky Bobby (2006),Action|Comedy +46972,Night at the Museum (2006),Action|Comedy|Fantasy|IMAX +46974,World Trade Center (2006),Drama +46976,Stranger than Fiction (2006),Comedy|Drama|Fantasy|Romance +46979,"Valley of Decision, The (1945)",Drama +47005,"Last Angry Man, The (1959)",Drama +47007,"Good Fairy, The (1935)",Comedy|Romance +47044,Miami Vice (2006),Action|Crime|Drama|Thriller +47047,"Groomsmen, The (2006)",Comedy|Drama|Romance +47049,Shadowboxer (2005),Crime|Drama|Thriller +47054,Each Dawn I Die (1939),Crime|Drama|Thriller +47063,Loch Ness (1996),Drama +47076,"Good Morning, Night (Buongiorno, notte) (2003)",Drama +47084,"Live and Become (Va, vis et deviens) (2005)",Drama +47092,On Dangerous Ground (1952),Crime|Drama|Film-Noir +47099,"Pursuit of Happyness, The (2006)",Drama +47117,Tears of the Black Tiger (Fah talai jone) (2000),Action|Comedy|Romance|Western +47122,John Tucker Must Die (2006),Comedy|Romance +47124,"Ant Bully, The (2006)",Adventure|Animation|Children|Comedy|Fantasy|IMAX +47129,Warning Shadows (Schatten - Eine nächtliche Halluzination) (1923),Drama|Fantasy +47131,Leaves from Satan's Book (Blade af Satans bog) (1921),Drama +47135,Michael (1924),Drama +47146,Lady Killer (1933),Comedy|Crime +47148,Mrs. Palfrey at the Claremont (2005),Comedy|Drama +47150,"Death of Mr. Lazarescu, The (Moartea domnului Lazarescu) (2005)",Drama +47152,Cria Cuervos (1976),Drama +47165,Ciao Manhattan (Ciao! Manhattan) (1972),Documentary|Drama|Romance +47180,"Gas, Inspector Palmu! (Kaasua, komisario Palmu!) (1961)",Comedy|Crime|Mystery|Thriller +47196,"Rainmaker, The (1956)",Comedy|Romance|Thriller|Western +47200,Crank (2006),Action|Thriller +47202,"Secret Life of Words, The (2005)",Drama|Romance +47221,"Dudesons Movie, The (2006)",Comedy|Documentary +47237,Black Gold (2006),Documentary +47239,"Hurricane, The (1937)",Action|Drama|Romance +47248,Johnny Was (2006),Action|Crime|Drama|Thriller +47250,Played (2006),Crime|Thriller +47254,Chaos (2005),Action|Crime|Drama|Thriller +47261,"Night Listener, The (2006)",Fantasy|Mystery|Thriller +47264,Barnyard: The Original Party Animals (2006),Animation|Children|Comedy +47274,Murmur of the Heart (Le souffle au coeur) (1971),Drama +47277,They Won't Believe Me (1947),Drama|Film-Noir +47285,"Left Hand of God, The (1955)",Drama +47287,Compulsion (1959),Crime|Drama|Thriller +47306,"Canterbury Tale, A (1944)",Drama|Mystery|War +47330,Dirty Mary Crazy Larry (1974),Action|Crime|Drama|Romance +47342,Angels Over Broadway (1940),Adventure|Comedy|Crime|Drama +47356,Fortress (1985),Action|Thriller +47382,Step Up (2006),Drama|Romance +47384,Zoom (2006),Adventure|Comedy|Drama|Fantasy +47394,"Bon Cop, Bad Cop (2006)",Action|Comedy|Crime|Thriller +47397,"Tom, Dick and Harry (1941)",Comedy|Fantasy|Romance +47404,Mind Game (2004),Adventure|Animation|Comedy|Fantasy|Romance|Sci-Fi +47423,Half Nelson (2006),Drama +47446,"Moustache, La (2005)",Drama|Mystery|Thriller +47452,Wing Chun (1994),Action|Comedy|Drama|Romance +47455,Executioners (Xian dai hao xia zhuan) (1993),Action|Comedy|Sci-Fi +47458,"Swordsman II (Legend of the Swordsman, The) (Xiao ao jiang hu zhi: Dong Fang Bu Bai) (1992)",Action|Fantasy +47460,Peking Opera Blues (Do ma daan) (1986),Action|Comedy +47465,Tideland (2005),Drama|Fantasy|Thriller +47477,Good News (1947),Comedy|Musical|Romance +47482,Thunderbolt (Pik lik feng) (1995),Action|Crime +47484,G Men (1935),Crime|Drama +47491,Adam's Apples (Adams æbler) (2005),Comedy|Drama +47493,Cabin in the Sky (1943),Fantasy|Musical +47501,Tol'able David (1921),Drama +47503,2:37 (2006),Drama +47516,Material Girls (2006),Children|Comedy|Drama +47518,Accepted (2006),Comedy +47525,Lie with Me (2005),Drama|Romance +47538,Crime Busters (1977),Action|Adventure|Comedy|Crime +47561,Shake It (En kort en lang) (2001),Comedy|Drama|Romance +47566,Born to Kill (1947),Crime|Drama|Film-Noir +47571,Heading South (Vers le sud) (2005),Drama +47601,7 Men from Now (Seven Men from Now) (1956),Western +47606,Captain January (1936),Children|Comedy|Musical +47610,"Illusionist, The (2006)",Drama|Fantasy|Mystery|Romance +47615,Adventures of Don Juan (1948),Adventure|Romance +47619,State of the Union (1948),Comedy|Drama +47626,San Quentin (1937),Drama +47629,The Queen (2006),Drama +47634,36 Quai des Orfèvres (Department 36) (2004),Action|Crime|Drama|Thriller +47640,Beerfest (2006),Comedy +47642,How to Eat Fried Worms (2006),Children|Drama +47644,Invincible (2006),Drama +47646,Idlewild (2006),Crime|Drama|Musical +47665,"Slight Case of Murder, A (1938)",Comedy|Crime +47670,"Syrian Bride, The (2004)",Drama +47681,"Sorry, Haters (2005)",Drama|Thriller +47701,"Ritz, The (1976)",Comedy +47707,My Geisha (1962),Comedy +47714,Blithe Spirit (1945),Comedy|Drama|Fantasy|Romance +47719,"Music Box, The (1932)",Comedy +47721,"Red Balloon, The (Ballon rouge, Le) (1956)",Children|Fantasy +47723,Way Out West (1937),Comedy|Western +47725,Angel-A (2005),Comedy|Drama|Fantasy|Romance +47728,Green for Danger (1946),Crime|Mystery +47736,"Chump at Oxford, A (1940)",Comedy +47740,Block-Heads (1938),Comedy|War +47774,"Icicle Thief, The (Ladri di saponette) (1989)",Comedy|Fantasy +47778,Quinceañera (2006),Drama +47793,"Puffy Chair, The (2006)",Drama|Romance +47805,Lassie (2005),Adventure|Children +47808,Mutual Appreciation (2005),Comedy|Drama +47810,"Wicker Man, The (2006)",Horror|Mystery|Thriller +47815,Crossover (2006),Action|Drama +47830,"Quiet, The (2005)",Crime|Drama|Mystery|Thriller +47836,Sketches of Frank Gehry (2005),Documentary +47868,Ronja Robbersdaughter (Ronja Rövardotter) (1984),Adventure|Children|Drama +47894,"Wind That Shakes the Barley, The (2006)",Drama|War +47902,Blood on the Moon (1948),Action|Drama|Western +47904,"Notti bianche, Le (White Nights) (1957)",Drama|Romance +47907,Fateless (Sorstalanság) (2005),Drama|War +47918,"Bravados, The (1958)",Drama|Western +47927,"Sign of the Cross, The (1932)",Drama +47931,"Criminal Life of Archibaldo de la Cruz, The (Ensayo de un crimen) (1955)",Comedy|Crime|Drama +47935,Overlord (1975),Drama|War +47937,Severance (2006),Comedy|Horror|Thriller +47940,Time to Leave (2005),Drama +47950,Hollywoodland (2006),Crime|Drama|Mystery|Thriller +47952,"Covenant, The (2006)",Action|Horror|Thriller +47956,Jesse James (1939),Action|Crime|Drama|Romance|Western +47962,"Scar, The (Blizna) (1976)",Drama +47970,"Last Kiss, The (2006)",Comedy|Drama +47972,Gabrielle (2005),Drama|Romance +47976,Trust the Man (2005),Comedy|Drama|Romance +47978,SherryBaby (2006),Drama +47980,Bio Zombie (Sun faa sau si) (1998),Comedy|Horror +47997,Idiocracy (2006),Adventure|Comedy|Sci-Fi|Thriller +47999,Jesus Camp (2006),Documentary|Drama +48001,"Bow, The (Hwal) (2005)",Drama|Romance +48030,"Crusades, The (1935)",Adventure|Drama|War +48032,"Tiger and the Snow, The (La tigre e la neve) (2005)",Comedy|Drama|Romance|War +48035,Pretty Poison (1968),Comedy|Crime|Romance|Thriller +48043,"Fountain, The (2006)",Drama|Fantasy|Romance +48045,Fear City: A Family-Style Comedy (La cité de la peur) (1994),Comedy +48049,Assassin(s) (1997),Crime|Drama +48057,Union Pacific (1939),Drama|Western +48059,"Boy Named Charlie Brown, A (1969)",Animation|Children|Comedy|Drama +48061,Snoopy Come Home (1972),Animation|Children|Comedy|Musical +48067,"Soldier's Sweetheart, A (1998)",Drama|War +48082,"Science of Sleep, The (La science des rêves) (2006)",Comedy|Drama|Fantasy|Romance +48084,City for Conquest (1940),Drama +48093,Initial D (Tau man ji D) (2005),Action|Crime|Drama +48098,Wicked (1998),Thriller +48123,"Long Voyage Home, The (1940)",Drama|War +48127,Not as a Stranger (1955),Drama +48142,"Black Dahlia, The (2006)",Crime|Drama|Mystery|Thriller +48159,Everyone's Hero (2006),Adventure|Animation|Children|Comedy +48161,Gridiron Gang (2006),Drama +48165,"Seventh Continent, The (Der siebente Kontinent) (1989)",Drama +48167,Aaltra (2004),Comedy|Drama +48177,Wonder Man (1945),Comedy|Fantasy|Musical +48193,Lisbon Story (1994),Drama +48198,Streamers (1983),Drama|War +48214,Land of Plenty (Angst and Alienation in America) (2004),Drama +48229,Lemming (2005),Drama|Mystery|Thriller +48231,Taxidermia (2006),Comedy|Drama|Horror +48239,Yuva (2004),Action|Adventure|Crime|Drama +48242,Mondo Topless (1966),Documentary +48262,"Bridge, The (2006)",Documentary +48264,Vixen! (1968),Drama +48268,Empire Falls (2005),Drama|Romance +48299,Piccadilly (1929),Crime|Drama +48301,"Private Life of Henry VIII, The (1933)",Comedy|Drama +48304,Apocalypto (2006),Adventure|Drama|Thriller +48308,Household Saints (1993),Drama +48315,Raintree County (1957),Drama|Romance +48319,Flyboys (2006),Action|Adventure|Drama|War +48322,Jackass Number Two (2006),Comedy|Documentary +48326,All the King's Men (2006),Drama +48342,Conversations with Other Women (2005),Comedy|Drama|Romance +48374,Father Sergius (Otets Sergiy) (1917),Drama|Romance +48381,"Assault, The (Aanslag, De) (1986)",Drama|Romance|War +48385,Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan (2006),Comedy +48389,Iraq for Sale: The War Profiteers (2006),Documentary +48394,"Pan's Labyrinth (Laberinto del fauno, El) (2006)",Drama|Fantasy|Thriller +48407,"Conqueror, The (1956)",Adventure|Romance|War +48412,"Guardian, The (2006)",Action|Adventure|Drama +48414,Open Season (2006),Adventure|Animation|Children|Comedy|IMAX +48416,School for Scoundrels (2006),Comedy|Crime +48458,Sidewalks of London (St. Martin's Lane) (1938),Comedy +48501,G.O.R.A. (2004),Adventure|Comedy|Sci-Fi +48516,"Departed, The (2006)",Crime|Drama|Thriller +48518,"Texas Chainsaw Massacre: The Beginning, The (2006)",Horror|Thriller +48520,Employee of the Month (2006),Comedy +48522,Stormbreaker (Alex Rider: Operation Stormbreaker) (2006),Action|Children +48528,Sirocco (1951),Action|Drama +48530,"Hawaii, Oslo (2004)",Drama +48536,Dante's Inferno (1935),Action|Drama +48543,Antibodies (Antikörper) (2005),Crime|Drama|Horror|Thriller +48555,Dr. Cyclops (1940),Adventure|Horror|Sci-Fi +48560,Running With Scissors (2006),Comedy|Drama +48567,Dillinger (1945),Crime|Drama|Film-Noir +48575,Brute Force (1947),Drama|Film-Noir|Thriller +48584,Ellie Parker (2005),Comedy|Drama +48591,"Grudge 2, The (2006)",Drama|Horror|Mystery|Thriller +48593,Man of the Year (2006),Comedy|Thriller +48596,"Marine, The (2006)",Action|Drama|Thriller +48598,Infamous (2006),Drama +48600,One Night with the King (2006),Drama +48626,Once in a Lifetime: The Extraordinary Story of the New York Cosmos (2006),Documentary +48638,Fellini's Casanova (Il Casanova di Federico Fellini) (1976),Drama|Romance +48642,"Howards of Virginia, The (1940)",Drama|War +48647,"Last Bolshevik, The (Tombeau d'Alexandre, Le) (1993)",Documentary +48649,Chapayev (1934),Drama|War +48660,"Elementary Particles, The (Elementarteilchen) (2006)",Drama|Romance +48673,Kummelin jackpot (2006),Comedy +48678,Feast (2005),Action|Comedy|Horror|Thriller +48682,Offside (2006),Comedy|Drama +48696,Little Children (2006),Drama|Romance +48698,Deliver Us from Evil (2006),Documentary +48700,Marie Antoinette (1938),Drama|Romance +48704,F.I.S.T. (1978),Drama +48711,Facing the Giants (2006),Action|Drama +48713,Mr. Conservative: Goldwater on Goldwater (2006),Documentary +48715,Broadway Bill (1934),Comedy|Drama +48738,"Last King of Scotland, The (2006)",Drama|Thriller +48741,"U.S. vs. John Lennon, The (2006)",Documentary +48744,Shortbus (2006),Comedy|Drama|Romance +48770,3 Blind Mice (2003),Crime|Mystery|Romance|Thriller +48774,Children of Men (2006),Action|Adventure|Drama|Sci-Fi|Thriller +48780,"Prestige, The (2006)",Drama|Mystery|Sci-Fi|Thriller +48783,Flags of Our Fathers (2006),Drama|War +48791,Flicka (2006),Children|Drama +48817,Sleeping Dogs Lie (a.k.a. Stay) (2006),Comedy|Drama|Romance +48825,9th Company (2005),Action|Drama|War +48833,Jade Warrior (Jadesoturi) (2006),Action|Adventure|Drama +48851,Spies (Spione) (1928),Thriller +48856,"Guide to Recognizing Your Saints, A (2006)",Crime|Drama +48863,Azumi 2: Death or Love (2005),Action|Adventure +48872,13 Tzameti (2005),Film-Noir|Thriller +48877,Saw III (2006),Crime|Horror|Thriller +48879,Catch a Fire (2006),Drama|Thriller +48883,Death of a President (2006),Crime|Drama|Mystery|Thriller +48895,Little Secrets (2001),Children|Comedy|Drama +48899,"Man of Straw (Untertan, Der) (1951)",Comedy|Drama +48901,Corto Maltese in Siberia (Corto Maltese - La cour secrète des Arcanes) (2002),Adventure|Animation|Drama|Romance|War +48909,5 Fingers (1952),Drama|Thriller +48957,"Charge of the Light Brigade, The (1936)",Action|Adventure|Romance|War +48970,Platform (Zhantai) (2000),Drama +48972,Lunacy (Sílení) (2006),Animation|Horror +48982,Flushed Away (2006),Animation|Comedy +48997,Perfume: The Story of a Murderer (2006),Crime|Drama|Thriller +49007,Arabesque (1966),Adventure|Drama|Romance|Thriller +49013,"Santa Clause 3: The Escape Clause, The (2006)",Comedy|Fantasy +49035,Daddy Long Legs (1955),Musical|Romance +49037,Hi Tessa (Czesc Tereska) (2001),Drama +49050,All the Invisible Children (2005),Drama +49060,Ocean Waves (Umi ga kikoeru) (1993),Animation|Drama|Romance +49063,Mad Dogs & Englishmen (1971),Documentary|Musical +49079,Four Daughters (1938),Drama|Romance +49082,Arizona (1940),Western +49085,"Big City, The (Mahanagar) (1963)",Drama +49098,"World, the Flesh and the Devil, The (1959)",Drama|Romance|Sci-Fi +49110,Mom and Dad Save the World (1992),Comedy|Sci-Fi +49115,"Boynton Beach Bereavement Club, The (2005)",Comedy|Drama +49130,"Good Year, A (2006)",Comedy|Drama|Romance +49132,Shut Up & Sing (2006),Documentary +49183,Vital (2004),Thriller +49200,"Foreign Affair, A (1948)",Comedy|Drama|Romance +49205,"Return, The (2006)",Sci-Fi|Thriller +49220,For Your Consideration (2006),Comedy +49225,Street Fight (2005),Documentary +49263,Fuck (2005),Comedy|Documentary +49265,Shooting Dogs (a.k.a. Beyond the Gates) (2005),Documentary|Drama|War +49272,Casino Royale (2006),Action|Adventure|Thriller +49274,Happy Feet (2006),Adventure|Animation|Children|Comedy|IMAX +49276,Let's Go to Prison (2006),Comedy +49278,Déjà Vu (Deja Vu) (2006),Action|Sci-Fi|Thriller +49280,Bobby (2006),Drama +49282,Deck the Halls (2006),Comedy +49284,10 Items or Less (2006),Comedy|Drama|Romance +49286,"Holiday, The (2006)",Comedy|Romance +49291,I Wake Up Screaming (1941),Crime|Film-Noir|Mystery|Romance|Thriller +49299,Luna de Avellaneda (2004),Drama|Romance +49312,Snow Cake (2006),Drama +49314,Harsh Times (2006),Action|Crime|Drama +49330,London to Brighton (2006),Crime|Drama|Thriller +49347,Fast Food Nation (2006),Drama +49355,"Bête humaine, La (1938)",Drama +49359,Celine and Julie Go Boating (Celine et Julie vont en bateau) (1974),Drama|Fantasy|Mystery +49371,Min and Bill (1930),Comedy|Drama +49379,"20,000 Years in Sing Sing (1932)",Crime|Drama +49389,The Great Train Robbery (1903),Crime|Western +49394,Simon of the Desert (Simón del desierto) (1965),Drama +49396,Tenacious D in The Pick of Destiny (2006),Adventure|Comedy|Musical +49402,"Facts of Life, The (1960)",Comedy|Drama|Romance +49412,It's A Wonderful World (1939),Comedy|Crime|Romance +49422,"OSS 117: Cairo, Nest of Spies (OSS 117: Le Caire nid d'espions) (2006)",Adventure|Comedy|Crime +49435,Reeker (2005),Horror|Mystery +49464,Sitting Pretty (1948),Comedy +49494,"Last Hard Men, The (1976)",Western +49518,Moog (2004),Documentary|Musical +49524,"Nativity Story, The (2006)",Drama +49526,National Lampoon's Van Wilder: The Rise of Taj (2006),Comedy +49528,Turistas (2006),Adventure|Drama|Horror|Mystery|Thriller +49530,Blood Diamond (2006),Action|Adventure|Crime|Drama|Thriller|War +49571,Dracula's Daughter (1936),Drama|Horror +49591,Doc Savage: The Man of Bronze (1975),Adventure +49593,She (1965),Action|Adventure|Drama|Fantasy|Horror|Romance|Sci-Fi +49615,Triad Election (Election 2) (Hak se wui yi wo wai kwai) (2006),Crime|Drama|Thriller +49642,Unaccompanied Minors (2006),Children|Comedy +49644,Off the Black (2006),Drama +49647,Charlotte's Web (2006),Children|Comedy|Drama|Fantasy +49649,Eragon (2006),Action|Adventure|Fantasy +49651,Rocky Balboa (2006),Action|Drama +49663,Iron Island (Jazireh Ahani) (2005),Drama +49666,Fur: An Imaginary Portrait of Diane Arbus (2006),Drama|Fantasy|Romance +49668,Girl Shy (1924),Action|Comedy|Drama|Romance +49688,"Dam Busters, The (1955)",Action|Drama|War +49691,Zombie Honeymoon (2004),Drama|Horror|Romance +49735,Another Gay Movie (2006),Comedy +49739,Oyster Farmer (2004),Drama +49746,Waterloo Bridge (1931),Drama|War +49752,Red-Headed Woman (1932),Comedy|Romance +49754,Daniel (1983),Drama +49757,Power (1986),Drama +49759,Lost Horizon (1973),Adventure|Drama|Fantasy|Musical|Romance +49766,"Man Who Never Was, The (1956)",Drama|War +49769,Something Wild (1961),Drama +49772,"Painted Veil, The (2006)",Drama|Romance +49793,We Are Marshall (2006),Drama +49815,"Place Promised in Our Early Days, The (Kumo no mukô, yakusoku no basho) (2004)",Animation|Drama|Romance|Sci-Fi|War +49817,"Plague Dogs, The (1982)",Adventure|Animation|Drama +49822,"Good Shepherd, The (2006)",Drama|Thriller +49824,Dreamgirls (2006),Drama|Musical +49856,"Page Turner, The (Tourneuse de pages, La) (2006)",Drama|Musical|Thriller +49872,Loose Change: Second Edition (2006),Documentary|Mystery +49899,We Feed the World (2005),Documentary +49902,"Decameron, The (Decameron, Il) (1971)",Comedy|Drama +49910,Freedom Writers (2007),Drama +49917,When the Levees Broke: A Requiem in Four Acts (2006),Documentary +49926,"Intruder, The (L'intrus) (2004)",Drama +49929,Katzelmacher (1969),Drama|Romance +49932,Inland Empire (2006),Drama|Mystery|Thriller +49951,Sebastiane (1976),Drama|Thriller +49953,Caravaggio (1986),Drama +49955,Wild Side (2004),Drama +49957,"History Boys, The (2006)",Comedy|Drama +49961,Notes on a Scandal (2006),Drama +49973,Children Shouldn't Play with Dead Things (1973),Horror +49985,The Face Behind the Mask (1941),Crime|Drama|Film-Noir|Romance +49994,"Life of Jesus, The (La vie de Jésus) (1997)",Drama +50003,DOA: Dead or Alive (2006),Action|Adventure +50005,Curse of the Golden Flower (Man cheng jin dai huang jin jia) (2006),Action|Drama +50011,"Bothersome Man, The (Brysomme mannen, Den) (2006)",Comedy|Drama|Fantasy|Mystery +50059,Don't Drink the Water (1994),Comedy +50064,"Good German, The (2006)",Drama|Mystery|Thriller +50066,Sweet Land (2005),Drama|Romance +50068,Letters from Iwo Jima (2006),Drama|War +50076,Presenting Lily Mars (1943),Comedy|Musical|Romance +50147,Black Christmas (2006),Action|Horror|Thriller +50149,Happily N'Ever After (2007),Animation|Children|Comedy +50151,Home of the Brave (2007),Action|Drama|War +50153,Code Name: The Cleaner (2007),Action|Comedy|Crime +50158,Stomp the Yard (2007),Drama|Musical +50160,Miss Potter (2006),Drama +50162,Arthur and the Invisibles (2007),Action|Children|Fantasy +50165,Tell Me Something (Telmisseomding) (1999),Crime|Horror|Mystery|Thriller +50183,Loving Annabelle (2006),Drama|Romance +50208,Rolling Family (Familia rodante) (2004),Comedy|Drama +50229,"Young Girls of Rochefort, The (Demoiselles de Rochefort, Les) (1967)",Comedy|Musical|Romance +50253,David and Bathsheba (1951),Drama|Romance +50259,Old Joy (2006),Drama +50271,Legend of the Black Scorpion (a.k.a. The Banquet) (Ye yan) (2006),Action|Drama|Fantasy|War +50274,Venus (2006),Drama|Romance +50279,My Bollywood Bride (2006),Comedy|Drama|Romance +50347,Rosario Tijeras (2005),Crime|Drama|Romance +50349,American Madness (1932),Drama +50354,The Return of Don Camillo (1953),Comedy +50356,The Little World of Don Camillo (1952),Comedy +50379,Cold Showers (Douches froides) (2005),Drama +50382,"Singer, The (Quand j'étais chanteur) (2006)",Drama|Romance +50440,Primeval (2007),Horror|Thriller +50442,Alpha Dog (2007),Crime|Drama +50445,"Hitcher, The (2007)",Action|Horror|Thriller +50447,"Dead Girl, The (2006)",Drama|Mystery|Thriller +50477,"Testament of Orpheus, The (Testament d'Orphée) (1960)",Drama +50488,"Stolen Life, A (1946)",Drama +50514,After the Wedding (Efter brylluppet) (2006),Drama +50517,Time (Shi gan) (2006),Drama|Romance +50533,Into Great Silence (Die große Stille) (2005),Documentary +50541,Dinner for One (Der 90. Geburtstag oder Dinner for One) (1963),Comedy +50550,Red Doors (2005),Comedy|Drama +50572,"Wendell Baker Story, The (2005)",Comedy|Drama|Romance +50574,Crawlspace (1986),Horror +50583,Linda Linda Linda (2005),Comedy|Drama +50585,Juarez (1939),Drama|Romance +50589,Trilogy: The Weeping Meadow (Trilogia: To livadi pou dakryzei) (2004),Drama|Romance +50594,Daisies (Sedmikrasky) (1966),Comedy|Drama +50601,Bridge to Terabithia (2007),Adventure|Children|Fantasy +50610,Beer League (2006),Comedy +50613,Dead Meat (2004),Horror +50615,Killer of Sheep (1977),Drama +50628,Dirty Sanchez: The Movie (2006),Comedy +50630,"Shadow Dancer, The (Shadows in the Sun) (2005)",Comedy|Drama|Romance +50641,House (Hausu) (1977),Comedy|Fantasy|Horror +50651,Kenny (2006),Comedy +50658,49 Up (2005),Documentary +50685,Waitress (2007),Comedy|Drama|Romance +50703,"Secret, The (2006)",Documentary +50705,Neverwas (2005),Drama|Fantasy|Mystery +50740,Seven Up! (1964),Documentary +50742,7 Plus Seven (1970),Documentary +50754,Record of a Tenement Gentleman (Nagaya shinshiroku) (1947),Drama +50774,R-Point (Arpointeu) (2004),Action|Drama|Horror +50792,Catch and Release (2006),Comedy|Drama|Romance +50794,Smokin' Aces (2006),Action|Crime|Drama|Thriller +50796,Blood and Chocolate (2007),Drama|Fantasy|Horror|Romance +50798,Epic Movie (2007),Adventure|Comedy +50800,"Messengers, The (2007)",Drama|Horror|Thriller +50802,Because I Said So (2007),Comedy|Drama|Romance +50804,Hannibal Rising (2007),Drama|Horror|Thriller +50806,Norbit (2007),Comedy|Romance +50821,Billy the Kid vs. Dracula (1966),Action|Drama|Horror +50828,Red Angel (Akai tenshi) (1966),Drama|Romance|War +50842,"Boss of It All, The (Direktøren for det hele) (2006)",Comedy|Drama +50851,Cocaine Cowboys (2006),Documentary +50858,Lonely Hearts (2006),Crime|Drama|Thriller +50872,Ratatouille (2007),Animation|Children|Drama +50886,Five Fingers (2006),Drama|Thriller +50892,Izo (2004),Action|Drama|Fantasy|Horror|Thriller|War +50898,Lola (1961),Drama|Romance +50912,"Paris, I Love You (Paris, je t'aime) (2006)",Romance +50923,"Astronaut Farmer, The (2007)",Drama +50940,Murk (Mørke) (2005),Drama|Thriller +50944,S.P.L.: Kill Zone (Saat po long) (2005),Action|Crime|Drama|Thriller +50949,Mafioso (1962),Comedy|Crime|Drama +50954,It's a Boy Girl Thing (2006),Comedy|Romance +50970,Myra Breckinridge (1970),Comedy +50977,Vice Squad (1982),Action|Thriller +51004,Danika (2006),Drama|Horror|Thriller +51007,Days of Glory (Indigènes) (2006),Action|Adventure|Drama|War +51014,"Strange Case of Dr. Jekyll and Mr. Hyde, The (1968)",Drama|Horror|Sci-Fi|Thriller +51019,Fifty-Fifty (a.k.a. Schizo) (Shiza) (2004),Crime|Drama|Romance|Thriller +51037,Unknown (2006),Drama|Mystery|Thriller +51044,Magical Mystery Tour (1967),Comedy|Musical +51053,Ringers: Lord of the Fans (2005),Comedy|Documentary +51060,Sisters of the Gion (Gion no shimai) (1936),Drama +51063,Trailer Park Boys: The Movie (2006),Comedy|Crime +51077,Ghost Rider (2007),Action|Fantasy|Thriller +51080,Breach (2007),Drama|Thriller +51082,Tyler Perry's Daddy's Little Girls (2007),Comedy|Romance +51084,Music and Lyrics (2007),Comedy|Romance +51086,"Number 23, The (2007)",Drama|Mystery|Thriller +51088,Reno 911!: Miami (2007),Comedy +51091,Black Snake Moan (2006),Drama +51094,Gray Matters (2006),Comedy|Drama|Romance +51103,Be with Me (2005),Drama|Romance +51106,Shooting Gallery (2005),Crime|Drama|Thriller +51111,What Will You Do When You Catch Me? (Co mi zrobisz jak mnie zlapiesz?) (1978),Comedy|Crime +51119,"Dagger of Kamui, The (1985)",Action|Adventure|Animation +51127,loudQUIETloud: A Film About the Pixies (2006),Documentary +51167,My Father and My Son (Babam ve oglum) (2005),Drama +51174,Factory Girl (2006),Drama +51182,Salon Kitty (1976),Drama +51185,Human Trafficking (2005),Crime|Drama|Mystery|Thriller +51187,Kidulthood (2006),Drama +51194,Like Mike 2: Streetball (2006),Children|Comedy +51203,Lady in Cement (1968),Crime|Drama|Mystery|Thriller +51207,Street Trash (1987),Comedy|Horror +51209,Fighting Elegy (Kenka erejii) (1966),Action|Comedy +51246,Salvatore Giuliano (1964),Crime|Drama|War +51249,First Man Into Space (1959),Drama|Horror|Sci-Fi +51251,I Drink Your Blood (1970),Horror +51255,Hot Fuzz (2007),Action|Comedy|Crime|Mystery +51265,Dead Heat on a Merry-Go-Round (1966),Comedy|Crime +51277,"36th Chamber of Shaolin, The (Shao Lin san shi liu fang) (Master Killer) (1978)",Action|Adventure +51287,Mad Love (1935),Horror|Romance +51300,"Trial of Billy Jack, The (1974)",Action|Drama|Musical +51302,"Savage Innocents, The (1960)",Adventure|Crime|Drama +51312,"Consequences of Love, The (Conseguenze dell'amore, Le) (2004)",Crime|Drama +51314,Golden Door (Nuovomondo) (2006),Adventure|Drama|Romance +51317,Kamchatka (2002),Drama +51321,"Leopard Man, The (1943)",Drama|Horror|Mystery|Thriller +51341,Family Law (Derecho de familia) (2006),Comedy|Drama +51354,Emil i Lönneberga (1971),Children|Drama +51357,Citizen X (1995),Crime|Drama|Thriller +51372,"""Great Performances"" Cats (1998)",Musical +51380,"Canterbury Tales, The (I racconti di Canterbury) (1972)",Comedy|Drama +51402,"Forest for the Trees, The (Der Wald vor lauter Bäumen) (2003)",Drama +51412,Next (2007),Action|Sci-Fi|Thriller +51418,Breaking and Entering (2006),Drama +51433,Changing Times (Les temps qui changent) (2004),Drama|Romance +51455,God Grew Tired of Us (2006),Documentary|Drama +51457,Iraq in Fragments (2006),Documentary|War +51471,Amazing Grace (2006),Drama|Romance +51486,Romanzo Criminale (2005),Crime|Drama +51498,2001 Maniacs (2005),Comedy|Horror +51503,Wise Guys (1986),Comedy|Crime +51520,Teen Wolf Too (1987),Comedy +51528,"Commare secca, La (Grim Reaper, The) (1962)",Drama|Mystery +51535,Body Count (1998),Comedy|Crime|Drama|Thriller +51540,Zodiac (2007),Crime|Drama|Thriller +51545,Pusher III: I'm the Angel of Death (2005),Action|Comedy|Drama|Horror|Thriller +51559,Eight Deadly Shots (Kahdeksan surmanluotia) (1972),Drama +51573,Meshes of the Afternoon (1943),Fantasy +51575,Wild Hogs (2007),Adventure|Comedy +51577,Zyzzyx Rd (2006),Thriller +51579,Man About Town (2006),Comedy|Drama +51605,El Lobo (2004),Thriller +51617,Unfaithfully Yours (1984),Comedy|Romance +51619,"Lathe of Heaven, The (1980)",Sci-Fi +51638,"Westerner, The (1940)",Western +51660,"Ultimate Gift, The (2006)",Drama +51662,300 (2007),Action|Fantasy|War|IMAX +51666,"Abandoned, The (2006)",Horror|Mystery|Thriller +51678,Julius Caesar (1953),Drama +51686,Three Smart Girls (1936),Comedy|Musical|Romance +51689,One More Kiss (1999),Drama|Romance +51691,Something in the Wind (1947),Comedy|Musical +51694,Starter for 10 (2006),Drama|Romance +51698,"Last Mimzy, The (2007)",Adventure|Children|Sci-Fi +51705,Priceless (Hors de prix) (2006),Comedy|Romance +51709,"Host, The (Gwoemul) (2006)",Comedy|Drama|Horror|Sci-Fi|Thriller +51773,"America, America (1963)",Drama +51800,Kippur (2000),Drama|War +51809,"Situation, The (2006)",Drama +51817,Diary of a Hitman (1991),Crime|Drama|Thriller +51820,Flower Drum Song (1961),Comedy|Musical|Romance +51834,Becoming Jane (2007),Drama|Romance +51847,Right at Your Door (2006),Drama|Thriller +51857,"Taste of Honey, A (1961)",Drama +51884,"Namesake, The (2006)",Drama|Romance +51886,Omagh (2004),Drama +51891,Samurai Spy (Ibun Sarutobi Sasuke) (1965),Action|Drama +51894,"Last Command, The (1928)",Drama|War +51903,I Think I Love My Wife (2007),Comedy|Drama|Romance +51905,"Second Chance, The (2006)",Drama +51911,"Fugitive Kind, The (1959)",Crime|Drama|Romance +51917,Wilderness (2006),Horror|Thriller +51921,Hipnos (2004),Horror|Thriller +51925,Premonition (2007),Drama|Fantasy|Mystery|Thriller +51927,Dead Silence (2007),Horror|Mystery|Thriller +51931,Reign Over Me (2007),Drama +51933,Pride (2007),Drama +51935,Shooter (2007),Action|Drama|Thriller +51937,"Hills Have Eyes II, The (2007)",Horror|Thriller +51939,TMNT (Teenage Mutant Ninja Turtles) (2007),Action|Adventure|Animation|Children|Comedy|Fantasy +51991,"Italian, The (Italianetz) (2005)",Drama +52005,Jindabyne (2006),Crime|Drama|Mystery|Thriller +52009,"Spider's Stratagem, The (Strategia del ragno) (1970)",Drama|Mystery +52016,Nomad (Köshpendiler) (2005),Drama|War +52033,"Tall Target, The (1951)",Adventure|Crime|Drama|Thriller +52037,Avenue Montaigne (Fauteuils d'orchestre) (2006),Comedy|Drama|Romance +52042,Black Book (Zwartboek) (2006),Drama|Thriller|War +52078,Love and Honor (2006),Drama|Romance +52088,Dreamland (2006),Drama +52101,"Quiet Duel, The (Shizukanaru ketto) (1949)",Drama +52104,"Moment of Innocence, A (Nun va Goldoon) (1996)",Drama +52106,"Silence, The (Sokout) (1998)",Drama +52108,It's Impossible to Learn to Plow by Reading Books (1988),Drama +52118,R.S.V.P. (2002) ,Comedy|Crime|Horror +52153,"Five Pennies, The (1959)",Drama +52170,Philanthropy (Filantropica) (2002),Comedy +52173,Ladies in Retirement (1941),Drama +52180,"Not for or Against (Quite the Contrary) (Ni pour, ni contre (bien au contraire)) (2002)",Crime|Drama +52182,Eklavya: The Royal Guard (2007),Action|Drama|Thriller +52189,Dark Horse (Voksne mennesker) (2005),Comedy|Drama|Romance +52202,His Kind of Woman (1951),Comedy|Crime|Drama|Film-Noir|Thriller +52227,"Darwin Awards, The (2006)",Adventure|Comedy|Romance +52237,"Tarnished Angels, The (1958)",Drama +52241,"Lookout, The (2007)",Crime|Drama|Thriller +52245,Blades of Glory (2007),Comedy|Romance +52265,"Armwrestler From Solitude, The (Armbryterskan från Ensamheten) (2004)",Documentary +52273,Kissed by Winter (Vinterkyss) (2005),Drama|Mystery|Thriller +52279,Are We Done Yet? (2007),Comedy +52281,Grindhouse (2007),Action|Crime|Horror|Sci-Fi|Thriller +52283,"Reaping, The (2007)",Horror|Thriller +52285,Firehouse Dog (2007),Action|Comedy +52287,Meet the Robinsons (2007),Action|Adventure|Animation|Children|Comedy|Sci-Fi +52299,American Hardcore (2006),Documentary +52319,Inglorious Bastards (Quel maledetto treno blindato) (1978),Action|Adventure|Drama|War +52321,Seraphim Falls (2006),Action|Adventure|Drama|War|Western +52326,Double Harness (1933),Comedy|Drama +52328,Sunshine (2007),Adventure|Drama|Sci-Fi|Thriller +52352,Judge Priest (1934),Comedy|Drama|Romance +52356,Copying Beethoven (2006),Drama|Musical +52365,Palais royal ! (2005),Comedy +52375,"Hoax, The (2007)",Crime|Drama +52378,No Way Out (1950),Drama|Film-Noir +52413,Ulysses' Gaze (To Vlemma tou Odyssea) (1995),Drama|War +52418,Sky Fighters (Les Chevaliers Du Ciel) (2005),Action|Adventure +52424,Scent of a Woman (Profumo di donna) (1974),Comedy|Drama +52427,"Welcome Back, Mr. McDonald (Rajio no jikan) (1997)",Comedy +52435,How the Grinch Stole Christmas! (1966),Animation|Comedy|Fantasy|Musical +52443,Origin: Spirits of the Past (Gin-iro no kami no Agito) (2006),Animation|Drama|Romance|Sci-Fi +52448,Goya's Ghosts (2006),Drama +52456,Perfect Stranger (2007),Crime|Drama|Mystery|Thriller +52458,Disturbia (2007),Drama|Thriller +52460,Pathfinder (2007),Action|Adventure|Drama|Thriller|War +52462,Aqua Teen Hunger Force Colon Movie Film for Theaters (2007),Action|Adventure|Animation|Comedy|Fantasy|Mystery|Sci-Fi +52489,"Private Affairs of Bel Ami, The (1947)",Drama +52495,Straight Time (1978),Crime|Drama +52528,Tristana (1970),Drama +52545,Puccini for Beginners (2006),Comedy|Romance +52548,Slow Burn (2005),Drama|Mystery|Thriller +52551,Redline (2007),Action +52561,Summer Palace (Yihe yuan) (2006),Drama|Romance +52570,In the Year of the Pig (1968),Documentary|War +52572,"Mackintosh Man, The (1973)",Action|Drama|Thriller +52579,"Vie en Rose, La (Môme, La) (2007)",Drama|Musical +52581,"Man - Woman Wanted (Poszukiwany, poszukiwana) (1973)",Comedy +52589,"Resurrected, The (1992)",Horror +52591,"Contract, The (2006)",Crime|Drama|Thriller +52604,Fracture (2007),Crime|Drama|Mystery|Thriller +52606,Big Nothing (2006),Comedy|Crime|Thriller +52617,Woman on the Beach (Haebyeonui yeoin) (2006),Comedy|Drama +52634,Smash-Up: The Story of a Woman (1947),Drama|Romance +52644,Vacancy (2007),Horror|Thriller +52666,Benny's Video (1992),Drama|Horror +52668,In the Land of Women (2007),Comedy|Drama|Romance +52690,"Devil Commands, The (1941)",Horror|Sci-Fi +52694,Mr. Bean's Holiday (2007),Comedy +52696,"Thousand and One Nights, A (1001 Nights) (1945)",Adventure +52709,Adam & Paul (2004),Comedy|Drama +52712,"Invisible, The (2007)",Crime|Drama|Fantasy|Mystery|Thriller +52715,Kickin It Old Skool (2007),Comedy +52717,"Condemned, The (2007)",Action|Adventure|Crime|Thriller +52722,Spider-Man 3 (2007),Action|Adventure|Sci-Fi|Thriller|IMAX +52724,Lucky You (2007),Comedy|Drama +52730,It's a Very Merry Muppet Christmas Movie (2002),Children|Comedy +52742,"Furies, The (1950)",Drama|Romance|Western +52767,21 Up (1977),Documentary +52773,Kiss Me Again (2006),Drama|Romance +52781,Hana (Hana yori mo naho) (2006),Comedy|Drama +52784,Sharkwater (2006),Documentary +52796,West (Occident) (2002),Comedy +52804,Flannel Pajamas (2006),Romance +52806,Tales from Earthsea (Gedo Senki) (2006),Adventure|Animation|Fantasy +52813,Thieves' Highway (1949),Drama|Film-Noir|Thriller +52831,Maniac Cop (1988),Action|Crime|Horror|Thriller +52838,Year of the Dog (2007),Comedy|Drama|Romance +52845,Thr3e (Three) (2006),Drama|Horror|Mystery|Thriller +52858,"Rocket, The (a.k.a. Maurice Richard) (2005)",Drama +52865,Diggers (2006),Comedy|Drama +52867,"Ex, The (2007)",Comedy|Romance +52872,Woman Is the Future of Man (Yeojaneun namjaui miraeda) (2004),Drama +52885,Paprika (Papurika) (2006),Animation|Mystery|Sci-Fi +52891,"Flying Scotsman, The (2006)",Drama +52913,Sylvia Scarlett (1935),Comedy|Drama|Romance +52922,Fixed Bayonets! (1951),Drama|War +52927,Syndromes and a Century (Sang sattawat) (2006),Drama +52929,Red Road (2006),Drama +52938,"Adventures of Mark Twain, The (1986)",Adventure|Animation|Children +52942,At Five in the Afternoon (Panj é asr) (2003),Drama +52950,Day Watch (Dnevnoy dozor) (2006),Action|Fantasy|Horror|Thriller +52952,This Is England (2006),Drama +52956,One Nite In Mongkok (Wong gok hak yau) (2004),Action|Crime|Drama +52967,Away from Her (2006),Drama +52973,Knocked Up (2007),Comedy|Drama|Romance +52975,Hairspray (2007),Comedy|Drama|Musical +52980,"Zidane: A 21st Century Portrait (Zidane, un portrait du 21e siècle) (2006)",Documentary +53000,28 Weeks Later (2007),Horror|Sci-Fi|Thriller +53002,Georgia Rule (2007),Comedy|Drama|Romance +53004,Delta Farce (2007),Action|Adventure|Comedy +53022,Wheels on Meals (Kuai can che) (1984),Action|Comedy|Crime|Romance +53024,Jonestown: The Life and Death of Peoples Temple (2006),Documentary +53038,Red Dust (1932),Drama +53052,Tokyo Olympiad (1965),Documentary +53066,Caught (1949),Drama|Film-Noir +53084,Blood Trails (2006) ,Horror|Thriller +53121,Shrek the Third (2007),Adventure|Animation|Children|Comedy|Fantasy +53123,Once (2006),Drama|Musical|Romance +53125,Pirates of the Caribbean: At World's End (2007),Action|Adventure|Comedy|Fantasy +53127,Bug (2007),Drama|Horror|Thriller +53129,Mr. Brooks (2007),Crime|Drama|Thriller +53131,Rise: Blood Hunter (2007),Action|Horror|Mystery|Thriller +53133,Gracie (2007),Drama +53138,"Librarian: Return to King Solomon's Mines, The (2006)",Action|Adventure|Fantasy +53140,"Librarian: Quest for the Spear, The (2004)",Action|Adventure|Comedy|Fantasy|Romance +53143,Fay Grim (2006),Action|Thriller +53152,"Man from Planet X, The (1951)",Horror|Romance|Sci-Fi +53154,Zoo (2007),Documentary +53161,"I'm a Cyborg, But That's OK (Saibogujiman kwenchana) (2006)",Comedy|Drama|Romance|Sci-Fi +53187,Beauty in Trouble (Kráska v nesnázích) (2006),Drama +53189,Eagle vs Shark (2007),Comedy +53207,88 Minutes (2008),Crime|Drama|Mystery|Thriller +53226,"Great War, The (Grande guerra, La) (1959)",Action|Adventure|Comedy|Drama|War +53282,Day Night Day Night (2006),Crime|Drama|Thriller +53318,Cashback (2006),Comedy|Drama|Romance +53322,Ocean's Thirteen (2007),Crime|Thriller +53326,Them (Ils) (2006),Horror +53342,Flandres (Flanders) (2006),Action|Drama|War +53349,Ten Canoes (2006),Adventure|Comedy|Drama|War +53352,Sheitan (2006),Comedy|Horror|Thriller +53355,Sun Alley (Sonnenallee) (1999),Comedy|Romance +53370,Godzilla and Mothra: The Battle for Earth (Gojira vs. Mosura) (1992),Action|Sci-Fi +53373,Godzilla vs. Destroyah (Gojira vs. Desutoroiâ) (1995) ,Action|Sci-Fi +53375,Godzilla vs. King Ghidorah (Gojira vs. Kingu Gidorâ) (1991),Action|Sci-Fi +53379,"Ghost Ship, The (1943)",Drama|Mystery|Thriller +53382,Experiment Perilous (1944),Romance|Thriller +53406,Go (2001),Drama +53416,Alone with Her (2006),Crime|Drama|Thriller +53435,Hostel: Part II (2007),Crime|Horror|Thriller +53443,Remember the Night (1940),Comedy|Drama|Romance +53447,Paranoid Park (2007),Crime|Drama +53450,"Legend of Sleepy Hollow, The (1980)",Comedy|Fantasy|Horror +53453,Starcrash (a.k.a. Star Crash) (1978),Action|Adventure|Fantasy|Sci-Fi +53460,Surf's Up (2007),Animation|Children|Comedy +53464,Fantastic Four: Rise of the Silver Surfer (2007),Action|Adventure|Sci-Fi +53466,Nancy Drew (2007),Adventure|Crime|Thriller +53468,Fido (2006),Comedy|Horror|Thriller +53476,"Iceberg, L' (2005)",Comedy +53498,Who the #$&% is Jackson Pollock? (2006),Documentary +53519,Death Proof (2007),Action|Adventure|Crime|Horror|Thriller +53548,Robot Monster (1953),Horror|Sci-Fi +53550,Rescue Dawn (2006),Action|Adventure|Drama|War +53554,"Blue Bird, The (1940)",Children|Fantasy +53561,"Wedding Night, The (1935)",Drama|Romance +53569,"Amateurs, The (Moguls, The) (2005)",Comedy +53574,"TV Set, The (2006)",Comedy|Drama +53578,"Valet, The (La doublure) (2006)",Comedy +53582,Dodge City (1939),Romance|Western +53592,Four Minutes (Vier Minuten) (2006),Drama +53600,In Your Hands (Forbrydelser) (2004),Drama +53651,Once You're Born You Can No Longer Hide (Quando sei nato non puoi più nasconderti) (2005),Adventure|Drama +53737,"Night of the Generals, The (1967)",Crime|Drama|Mystery|Thriller|War +53741,"Comedy of Power (Ivresse du pouvoir, L') (2006)",Drama +53752,Gui Si (Silk) (2006),Drama|Horror|Mystery|Sci-Fi|Thriller +53766,Breaking News (Daai si gin) (2004),Action|Crime|Drama +53769,In Search of a Midnight Kiss (2007),Comedy|Romance +53774,"Mystery of Picasso, The (Le mystère Picasso) (1956)",Documentary +53788,Exiled (Fong juk) (2006),Action|Crime|Thriller +53827,Sybil (1976),Drama +53833,David Holzman's Diary (1967),Documentary|Drama +53835,Journey to Italy (Viaggio in Italia) (Voyage to Italy) (Voyage in Italy) (1954),Drama|Romance +53837,Swoon (1992),Crime|Drama +53839,East Side Story (1997),Documentary|Musical +53841,Knock on Wood (1954),Comedy +53843,O.C. and Stiggs (1985),Comedy +53845,"Homecoming, The (1973)",Drama +53847,"Woman Chaser, The (1999)",Comedy +53849,Uranus (1990),Comedy|Drama +53851,American Friends (1991),Drama|Romance +53853,Within Our Gates (1920),Drama|Romance +53855,Johnny Tremain (1957),Adventure|Children|War +53857,Alan & Naomi (1992),Children|Drama +53859,Goal II: Living the Dream (2007),Action|Drama +53873,Cheech & Chong: Still Smokin' (1983),Comedy +53880,Putney Swope (1969),Comedy +53883,"Power of Nightmares, The: The Rise of the Politics of Fear (2004)",Documentary +53885,"Trials of Darryl Hunt, The (2006)",Crime|Documentary +53887,O Lucky Man! (1973),Comedy|Drama|Fantasy|Musical +53894,Sicko (2007),Documentary|Drama +53916,Tea and Sympathy (1956),Drama|Romance +53919,"Man in the Iron Mask, The (1939)",Adventure +53921,"Mighty Heart, A (2007)",Drama|Thriller +53953,1408 (2007),Drama|Horror|Thriller +53956,Death at a Funeral (2007),Comedy +53963,Clubland (a.k.a. Introducing the Dwights) (2007),Comedy|Drama +53967,High Road to China (1983),Adventure|Drama|Romance|War +53972,Live Free or Die Hard (2007),Action|Adventure|Crime|Thriller +53974,License to Wed (2007),Comedy|Romance +53988,Evening (2007),Drama +53993,Evan Almighty (2007),Comedy|Fantasy +53996,Transformers (2007),Action|Sci-Fi|Thriller|IMAX +53999,Captivity (2007),Crime|Thriller +54001,Harry Potter and the Order of the Phoenix (2007),Adventure|Drama|Fantasy|IMAX +54004,I Now Pronounce You Chuck and Larry (2007),Comedy|Romance +54010,Bedtime Story (1964),Comedy +54020,McQ (1974),Action|Crime|Drama +54049,"Mean Season, The (1985)",Crime|Thriller +54056,Back In Action (1993),Action|Adventure|Drama +54067,Heart of Dragon (Long de xin) (1985),Action|Comedy|Crime|Drama|War +54075,Arn: The Knight Templar (Arn - Tempelriddaren) (2007),Action|Adventure|Drama|Romance|War +54094,Driving Lessons (2006),Comedy|Drama +54116,First Snow (2006),Drama|Thriller +54121,Broken Arrow (1950),Drama|Romance|Western +54144,"Last Time, The (2006)",Comedy|Drama|Romance +54171,Re-cycle (Gwai wik) (2006),Fantasy|Horror +54176,No Time For Sergeants (1958),Adventure|Comedy|War +54185,Manufactured Landscapes (2006),Documentary +54190,Across the Universe (2007),Drama|Fantasy|Musical|Romance +54193,Broken English (2007),Comedy|Drama|Romance +54196,Brand Upon the Brain! (2006),Adventure|Fantasy|Mystery +54198,Boris and Natasha (1992),Action|Comedy +54220,"Sterile Cuckoo, The (1969)",Comedy|Drama +54229,When the Wind Blows (1986),Animation|War +54239,The Dawn Patrol (1930),Action|Drama|War +54241,"Lives of a Bengal Lancer, The (1935)",Adventure|Drama +54243,"Piano Tuner of Earthquakes, The (2005)",Drama|Fantasy|Romance +54248,A Dog's Breakfast (2007),Comedy +54251,Dorian Blues (2004),Comedy +54254,Come Early Morning (2006),Drama|Romance +54256,Hot Rod (2007),Comedy +54259,Stardust (2007),Adventure|Comedy|Fantasy|Romance +54262,Murder Most Foul (1964),Comedy|Crime|Drama|Mystery|Thriller +54268,Who's Your Caddy? (2007),Comedy +54270,Skinwalkers (2007),Horror|Thriller +54272,"Simpsons Movie, The (2007)",Animation|Comedy +54274,I Know Who Killed Me (2007),Crime|Drama|Thriller +54276,No Reservations (2007),Comedy|Drama|Romance +54278,Underdog (2007),Action|Adventure|Children|Comedy|Fantasy|Sci-Fi +54281,Charlie Bartlett (2007),Comedy|Drama +54284,"Cantante, El (2007)",Drama|Musical +54286,"Bourne Ultimatum, The (2007)",Action|Crime|Thriller +54290,Bratz: The Movie (2007),Comedy +54318,Cruel Story of Youth (Seishun zankoku monogatari) (1960),Drama +54326,"Sierra, La (2005)",Documentary +54328,My Best Friend (Mon meilleur ami) (2006),Comedy +54331,You Kill Me (2007),Comedy|Crime|Thriller +54341,Wild Tigers I Have Known (2006),Drama +54349,Reincarnation (2005),Horror|Mystery +54354,China Blue (2005),Documentary +54372,Tell No One (Ne le dis à personne) (2006),Crime|Drama|Mystery|Thriller +54378,Man's Job (Miehen työ) (2007),Drama +54406,Morning Glory (1933),Drama|Romance +54419,Czech Dream (Ceský sen) (2004),Documentary +54426,12:08 East of Bucharest (A fost sau n-a fost?) (2006),Comedy|Drama +54445,"All the Way Boys (Più forte, ragazzi!) (1972)",Action|Adventure|Comedy +54455,Teachers (1984),Comedy|Drama|Romance +54480,Jack the Giant Killer (1962),Adventure|Fantasy +54491,If I Were You (Se Eu Fosse Você) (2006),Comedy +54493,"Manitou, The (1978)",Horror +54501,Miss Julie (1951),Drama +54503,Superbad (2007),Comedy +54505,Arctic Tale (2007),Documentary +54510,Joshua (2007),Drama|Thriller +54513,Talk to Me (2007),Drama +54519,Princesas (2005),Drama +54536,"Tripper, The (2006)",Horror +54542,Command Decision (1948),Drama|War +54554,"Cave of the Yellow Dog, The (2005)",Drama +54561,Abraham (1993),Adventure|Drama +54580,"Young Lieutenant, The (Le petit lieutenant) (2005)",Crime|Drama +54605,"Kill, Baby, Kill (Operazione paura) (1966)",Horror +54607,"War Tapes, The (2006)",Documentary|War +54612,Resurrecting the Champ (2007),Drama +54614,American Pastime (2007),Drama|Romance +54617,"Brice Man, The (Brice de Nice) (2005)",Comedy +54621,Molière (2007),Comedy|Drama|Romance +54648,Rush Hour 3 (2007),Action|Comedy|Crime|Thriller +54652,1991: The Year Punk Broke (1992),Documentary +54686,"Last Legion, The (2007)",Action|Adventure|Fantasy|War +54725,Under the Yum Yum Tree (1963),Comedy +54732,Balls of Fury (2007),Comedy +54734,Sydney White (2007),Comedy +54736,"Kingdom, The (2007)",Action|Drama|Thriller +54738,Wind Chill (2007),Drama|Horror|Thriller +54745,Rocket Science (2007),Comedy|Drama +54758,TerrorStorm: A History of Government-Sponsored Terrorism (2006),Documentary +54768,Daddy Day Camp (2007),Children|Comedy +54771,"Invasion, The (2007)",Action|Drama|Horror|Sci-Fi|Thriller +54775,War (2007),Action|Thriller +54778,Illegal Tender (2007),Crime|Drama|Thriller +54780,"Nanny Diaries, The (2007)",Comedy|Drama|Romance +54783,September Dawn (2007),Drama|Romance|Western +54785,Halloween (2007),Horror +54787,Death Sentence (2007),Drama|Thriller +54796,2 Days in Paris (2007),Comedy|Drama|Romance +54833,Brighton Rock (1947),Crime|Drama|Film-Noir +54872,Keoma (1976),Action|Drama|Western +54875,Face to Face (Faccia a faccia) (1967),Adventure|Western +54878,"Professional Gun, A (Mercenary, The) (Mercenario, Il) (1968)",Comedy|Western +54881,"King of Kong, The (2007)",Documentary +54908,Taxi 4 (2007),Action|Comedy +54910,Behind the Mask: The Rise of Leslie Vernon (2006),Comedy|Horror|Thriller +54922,Victory Through Air Power (1943),Animation|Documentary|War +54934,"Brothers Solomon, The (2007)",Comedy +54958,Bordertown (2006),Crime|Drama|Thriller +54962,"Nines, The (2007)",Drama|Mystery +54964,Die! Die! My Darling! (Fanatic) (1965),Horror|Thriller +54967,"Hunting and Gathering (Ensemble, c'est tout) (2007)",Drama|Romance +54972,"New Wave, A (2007)",Action|Crime +54978,"Good Night, The (2007)",Comedy|Drama|Fantasy|Musical|Romance +54986,"Watch Out, We're Mad (...Altrimenti ci arrabbiamo!) (1974)",Action|Comedy +54988,Stories of Lost Souls (2005),Comedy|Drama|Thriller +54995,Planet Terror (2007),Action|Horror|Sci-Fi +54997,3:10 to Yuma (2007),Action|Crime|Drama|Western +54999,Shoot 'Em Up (2007),Action|Comedy|Crime +55020,"Ten, The (2007)",Comedy +55040,Bitter Rice (Riso amaro) (1949),Drama +55050,Fierce People (2005),Drama +55052,Atonement (2007),Drama|Romance|War +55061,Electroma (2006),Drama|Sci-Fi +55063,My Winnipeg (2007),Documentary|Fantasy +55067,Requiem (2006),Drama|Thriller +55069,"4 Months, 3 Weeks and 2 Days (4 luni, 3 saptamâni si 2 zile) (2007)",Drama +55071,No End in Sight (2007),Documentary +55078,Far from the Madding Crowd (1967),Drama|Romance +55080,"Brave One, The (2007)",Crime|Drama|Thriller +55094,In the Valley of Elah (2007),Drama|Mystery +55098,Paint It Yellow (Rang De Basanti) (2006),Action|Comedy|Drama +55106,Design for Living (1933),Comedy|Romance +55110,December Boys (2007),Drama +55112,Shanghai Kiss (2007),Comedy|Drama|Romance +55116,"Hunting Party, The (2007)",Action|Adventure|Comedy|Drama|Thriller +55118,Eastern Promises (2007),Crime|Drama|Thriller +55132,"Bubble, The (Ha-Buah) (2006)",Drama|Romance +55147,27 Missing Kisses (2000),Comedy|Drama|Romance +55154,Brooklyn Rules (2007),Crime|Drama|Romance +55156,"Unreasonable Man, An (2006)",Documentary +55159,Vengeance is Mine (Fukushu suruwa wareniari) (1979),Crime|Drama +55167,Tekkonkinkreet (Tekkon kinkurîto) (2006),Action|Adventure|Animation|Crime|Fantasy +55176,In the Shadow of the Moon (2007),Documentary +55178,Stephanie Daley (2006),Drama +55190,Love and Other Disasters (2006),Comedy|Romance +55205,Interview (2007),Drama +55207,Cashback (2004),Comedy|Drama +55209,The Death and Life of Bobby Z (2007),Action|Crime|Drama|Thriller +55223,Private Fears in Public Places (Coeurs) (2006),Drama|Romance +55226,House of Bamboo (1955),Crime|Film-Noir +55232,Resident Evil: Extinction (2007),Action|Horror|Sci-Fi|Thriller +55241,Mr. Woodcock (2007),Comedy +55245,Good Luck Chuck (2007),Comedy|Romance +55247,Into the Wild (2007),Action|Adventure|Drama +55250,"Game Plan, The (2007)",Comedy +55253,"Lust, Caution (Se, jie) (2007)",Drama|Romance|Thriller|War +55255,Feast of Love (2007),Drama|Romance +55257,Postal (2007),Action|Comedy|Thriller +55259,"Seeker: The Dark Is Rising, The (2007)",Action|Adventure|Drama|Fantasy +55261,"Heartbreak Kid, The (2007)",Comedy|Drama|Romance +55267,Dan in Real Life (2007),Comedy|Drama|Romance +55269,"Darjeeling Limited, The (2007)",Adventure|Comedy|Drama +55272,We Own the Night (2007),Crime|Drama +55274,Elizabeth: The Golden Age (2007),Drama +55276,Michael Clayton (2007),Drama|Thriller +55278,Sleuth (2007),Drama|Mystery|Thriller +55280,Lars and the Real Girl (2007),Comedy|Drama +55282,30 Days of Night (2007),Horror|Thriller +55284,Rendition (2007),Drama|Thriller +55286,Things We Lost in the Fire (2007),Drama|Romance +55288,Reservation Road (2007),Drama|Thriller +55290,Gone Baby Gone (2007),Crime|Drama|Mystery +55292,"Comebacks, The (2007)",Comedy +55294,Weirdsville (2007),Comedy|Crime|Drama +55298,"Dog Problem, The (2006)",Comedy +55324,Relative Strangers (2006),Comedy +55329,Alien Autopsy (2006),Comedy|Sci-Fi +55343,Straightheads (Closure) (2007),Crime|Drama +55360,Climates (Iklimler) (2006),Drama +55363,"Assassination of Jesse James by the Coward Robert Ford, The (2007)",Crime|Drama|Western +55369,Chronicle of a Summer (Chronique d'un été) (1961),Documentary +55373,"Breaking Point, The (1950)",Crime|Drama|Film-Noir +55389,"Nanny, The (1965)",Drama|Thriller +55391,10th & Wolf (2006),Crime|Drama|Thriller +55402,Beaufort (2007),Action|Drama|War +55406,Civic Duty (2006),Drama|Thriller +55408,The Killing Floor (2007),Crime|Horror|Mystery +55417,Irina Palm (2007),Drama +55419,I'm Reed Fish (2006),Comedy|Drama|Romance +55434,Between Heaven and Hell (1956),Drama|War +55440,"Final Season, The (2007)",Drama +55442,Persepolis (2007),Animation|Drama +55444,Control (2007),Drama +55451,The Jane Austen Book Club (2007),Comedy|Drama|Romance +55460,And the Pursuit of Happiness (La poursuite du bonheur) (1986),Documentary +55462,Frostbitten (Frostbiten) (2006),Comedy|Horror +55467,Jonny Vang (2003),Comedy|Drama|Mystery +55469,Graveyard of Honor (Shin jingi no hakaba) (2002),Action|Crime|Thriller +55476,"Wood & Stock: Sexo, Orégano e Rock'n'Roll (2006)",Animation|Comedy +55485,Fugitive Pieces (2007),Drama +55487,Outlaw (2007),Action|Crime|Drama|Thriller +55489,"Good Time Girls, The (Bonnes femmes, Les) (1960)",Drama|Mystery|Romance +55492,"Last Winter, The (2006)",Horror +55498,Silk (2007),Adventure|Drama|Romance +55507,"Mary, Queen of Scots (1971)",Drama +55512,Can't Help Singing (1944),Musical|Western +55517,I Want Someone to Eat Cheese With (2006),Comedy +55549,Manufacturing Dissent (2007),Documentary +55553,Black Sheep (2006),Comedy|Horror +55555,"Edge of Heaven, The (Auf der anderen Seite) (2007)",Drama +55566,Tyler Perry's Why Did I Get Married? (2007),Comedy|Drama +55577,Saw IV (2007),Crime|Horror|Thriller +55603,My Mom's New Boyfriend (2008),Action|Comedy|Romance|Thriller +55620,For the Bible Tells Me So (2007),Documentary +55626,Gemini (Sôseiji) (1999),Drama|Fantasy|Horror|Mystery|Thriller +55628,"Monster Walks, The (1932)",Horror +55652,Scum (1979),Crime|Drama +55659,Return to the 36th Chamber (Shao Lin da peng da shi) (1980) ,Action|Comedy +55668,Full of It (2007),Comedy|Drama +55671,"Sea Wolf, The (1941)",Adventure|Drama +55681,Valhalla (1986),Adventure|Animation|Children|Fantasy +55684,"City of Violence, The (Jjakpae) (2006)",Action|Crime|Drama +55687,My Kid Could Paint That (2007),Documentary +55691,"Amanece, que no es poco (1989)",Comedy +55705,Secret Sunshine (Milyang) (2007),Comedy|Drama|Romance +55713,The Reckless Moment (1949),Crime|Drama|Film-Noir +55721,Elite Squad (Tropa de Elite) (2007),Action|Crime|Drama|Thriller +55726,"Year My Parents Went on Vacation, The (O Ano em Que Meus Pais Saíram de Férias) (2006)",Drama +55729,King of California (2007),Comedy +55732,Martian Child (2007),Comedy|Drama +55740,Last Hero in China (Wong Fei Hung ji Tit gai dau ng gung) (1993),Action|Comedy +55757,Chilly Scenes of Winter (Head Over Heels) (1979),Comedy|Drama|Romance +55765,American Gangster (2007),Crime|Drama|Thriller +55768,Bee Movie (2007),Animation|Comedy +55782,Citizen Dog (Mah nakorn) (2004),Comedy|Fantasy|Romance +55805,Before the Devil Knows You're Dead (2007),Crime|Drama|Thriller +55814,"Diving Bell and the Butterfly, The (Scaphandre et le papillon, Le) (2007)",Drama +55820,No Country for Old Men (2007),Crime|Drama +55826,Ripley Under Ground (2005),Drama|Romance|Thriller +55830,Be Kind Rewind (2008),Comedy +55844,Itty Bitty Titty Committee (2007),Comedy|Drama|Romance +55851,Crazy Love (2007),Documentary +55854,"Fugitive, The (1947)",Drama +55856,Azur & Asmar (Azur et Asmar) (2006),Adventure|Animation|Children +55872,August Rush (2007),Drama|Musical +55875,Space Is The Place (1974),Sci-Fi +55888,"Dawn Rider, The (1935)",Western +55895,"Desperate Hours, The (1955)",Drama|Film-Noir|Thriller +55901,"You, the Living (Du levande) (2007)",Comedy|Drama|Musical +55908,"Man from Earth, The (2007)",Drama|Sci-Fi +55926,Hellfighters (1968),Action|Adventure +55946,Lions For Lambs (2007),Drama|Thriller|War +55955,Fred Claus (2007),Children|Comedy|Fantasy +55995,Beowulf (2007),Action|Adventure|Animation|Fantasy|IMAX +55999,Mr. Magorium's Wonder Emporium (2007),Children|Comedy|Fantasy +56001,Love in the Time of Cholera (2007),Drama|Romance +56003,Southland Tales (2006),Comedy|Drama|Sci-Fi|Thriller +56006,Ever Since the World Ended (2001),Fantasy|Sci-Fi +56009,"American Soldier, The (Der amerikanische Soldat) (1970)",Drama +56015,Kansas City Confidential (1952),Crime|Drama|Film-Noir|Mystery +56022,Harrison Bergeron (1995),Drama|Sci-Fi +56028,Rails & Ties (2007),Drama +56030,Darfur Now (2007),Documentary +56051,Heavens Fall (2006),Drama +56060,I Served the King of England (Obsluhoval jsem anglického krále) (2006),Comedy|Drama|Romance|War +56067,Texas Terror (1935),Action|Romance|Western +56079,Smiley Face (2007),Comedy +56093,12 (2007),Crime|Drama|Thriller|War +56095,XXY (2007),Drama +56098,"Steel Helmet, The (1951)",Action|Drama|War +56141,Blame it on Fidel! (La faute à Fidel!) (2006),Drama +56145,"Mist, The (2007)",Horror|Sci-Fi +56152,Enchanted (2007),Adventure|Animation|Children|Comedy|Fantasy|Musical|Romance +56156,Hitman (2007),Action|Crime|Thriller +56158,This Christmas (2007),Comedy|Drama|Romance +56165,P2 (2007),Horror|Thriller +56167,Om Shanti Om (2007),Action|Drama|Musical|Romance +56169,Awake (2007),Drama|Thriller +56171,"Golden Compass, The (2007)",Adventure|Children|Fantasy +56174,I Am Legend (2007),Action|Horror|Sci-Fi|Thriller|IMAX +56176,Alvin and the Chipmunks (2007),Children|Comedy +56274,Margot at the Wedding (2007),Drama +56286,I'm Not There (2007),Drama +56313,"Shepherd of the Hills, The (1941)",Drama +56331,As Far As My Feet Will Carry Me (So weit die Füße tragen) (2001),Drama|War +56333,"Savages, The (2007)",Comedy|Drama +56339,"Orphanage, The (Orfanato, El) (2007)",Drama|Horror|Mystery|Thriller +56350,That Hamilton Woman (1941),Drama|Romance|War +56367,Juno (2007),Comedy|Drama|Romance +56370,"Goodbye Bafana (Color of Freedom, The) (2007)",Drama|War +56372,Tokyo Twilight (Tôkyô boshoku) (1957),Drama +56379,"Maxed Out: Hard Times, Easy Credit and the Era of Predatory Lenders (2006)",Documentary +56389,My Blueberry Nights (2007),Drama|Romance +56432,"Swimming Pool, The (La piscine) (1969)",Crime|Drama +56449,Cake (2005),Comedy|Romance +56474,My Mother (Ma mère) (2004),Drama +56477,Noise (2004),Drama|Thriller +56479,Party Monster (1998),Documentary +56485,Return to Sender (2004),Drama|Thriller +56490,"Buy the Ticket, Take the Ride: Hunter S. Thompson on Film (2006)",Documentary +56508,Starting Out in the Evening (2007),Drama +56511,Redacted (2007),Action|Crime|Drama|War +56513,Suicide Killers (2006),Documentary +56515,"Devil Came on Horseback, The (2007)",Documentary +56548,All Passion Spent (1986),Drama +56551,"Treatment, The (2006)",Comedy|Drama|Romance +56561,10 Questions for the Dalai Lama (2006),Documentary +56563,Helvetica (2007),Documentary +56570,Mary (2005),Drama|Thriller +56574,Journey from the Fall (2006),Drama +56587,"Bucket List, The (2007)",Comedy|Drama +56599,Fall From Grace (2007),Documentary +56602,Between Two Worlds (1944),Action|Adventure|Drama|Fantasy|Mystery +56607,"Kite Runner, The (2007)",Drama +56614,"Regular Lovers (Amants réguliers, Les) (2005)",Drama +56616,Allegro (2005),Drama|Fantasy|Mystery|Romance|Sci-Fi +56620,"Deaths of Ian Stone, The (2007)",Horror|Thriller +56626,Robin Hood (1922),Adventure|Romance +56631,Densha otoko (Train Man) (2005),Comedy|Romance +56633,Butterfly on a Wheel (Shattered) (2007),Crime|Drama|Thriller +56651,Seduced and Abandoned (Sedotta e abbandonata) (1964),Comedy|Drama +56671,"Go-Getter, The (2007)",Comedy|Drama +56693,Close My Eyes (1991),Drama|Romance +56700,"Flock, The (2007)",Crime|Drama|Mystery|Thriller +56702,"Maidens' Conspiracy, The (Tirante el Blanco) (2006)",Adventure +56715,Wristcutters: A Love Story (2006),Drama|Fantasy|Romance +56719,Vitus (2006),Drama +56744,Longford (2006),Crime|Drama +56748,"Big Bad Swim, The (2006)",Comedy|Drama +56757,Sweeney Todd: The Demon Barber of Fleet Street (2007),Drama|Horror|Musical|Thriller +56775,National Treasure: Book of Secrets (2007),Action|Adventure +56779,I Don't Want to Sleep Alone (Hei yan quan) (2006),Comedy|Drama +56782,There Will Be Blood (2007),Drama|Western +56786,W.R.: Mysteries of the Organism (1971),Comedy|Documentary +56788,Charlie Wilson's War (2007),Comedy|Drama|War +56797,"Train Robbers, The (1973)",Western +56801,AVPR: Aliens vs. Predator - Requiem (2007),Action|Horror|Sci-Fi +56805,Walk Hard: The Dewey Cox Story (2007),Comedy|Musical +56835,Pledge This! (2006),Comedy +56837,As You Like It (2006),Comedy|Drama|Romance +56846,Rabbit Without Ears (Keinohrhasen) (2007),Comedy|Romance +56848,Ricochet (1991),Action|Crime|Thriller +56869,Drained (O cheiro do Ralo) (2006),Comedy +56874,Chicks with Sticks (2004),Comedy|Drama +56885,"Great Debaters, The (2007)",Drama +56888,Mongolian Ping-Pong (Lü cao di) (2005),Comedy|Drama +56908,Dedication (2007),Comedy|Drama|Romance +56915,"Water Horse: Legend of the Deep, The (2007)",Adventure|Children|Fantasy +56931,"Mission, The (Cheung fo) (1999)",Crime|Drama|Mystery +56941,P.S. I Love You (2007),Comedy|Drama|Romance +56945,"Perfect Holiday, The (2007)",Comedy|Romance +56949,27 Dresses (2008),Comedy|Romance +56956,Savages (1972),Comedy|Fantasy +56959,The Mad Magician (1954),Horror|Mystery|Thriller +56995,Nanking (2007),Documentary|War +57017,"Pumpkin Eater, The (1964)",Drama +57023,Cosas que nunca te dije (Things I Never Told You) (1996),Comedy|Drama|Romance +57027,Killing Words (Palabras encadenadas) (2003),Crime|Drama|Thriller +57038,To the Left of the Father (Lavoura Arcaica) (2001),Drama +57041,Santa Claus Conquers the Martians (1964),Fantasy|Sci-Fi +57044,Two Sons of Francisco (2 Filhos de Francisco - A História de Zezé di Camargo & Luciano) (2005),Drama +57069,Equinox Flower (Higanbana) (1958),Comedy|Drama +57147,Cassandra's Dream (2007),Crime|Drama|Thriller +57179,"Mostly Unfabulous Social Life of Ethan Green, The (2005)",Comedy|Romance +57183,Like Stars on Earth (Taare Zameen Par) (2007),Drama +57209,Lemonade Joe (Limonádový Joe aneb Konská opera) (1964),Adventure|Comedy|Musical|Romance|Western +57223,D-War (Dragon Wars) (2007),Action|Adventure|Drama|Fantasy +57236,LOL (2006),Comedy|Drama +57243,"Band's Visit, The (Bikur Ha-Tizmoret) (2007)",Comedy|Drama +57269,In Between Days (2006),Drama +57274,[REC] (2007),Drama|Horror|Thriller +57276,.45 (2006),Crime|Drama|Thriller +57282,And Soon the Darkness (1970),Mystery|Thriller +57291,God Save the King (2005),Comedy|Drama|Romance +57326,In the Name of the King: A Dungeon Siege Tale (2008),Action|Adventure|Fantasy +57353,Flawless (2007),Crime|Drama +57357,Live-In Maid (Cama adentro) (2004),Drama +57368,Cloverfield (2008),Action|Mystery|Sci-Fi|Thriller +57370,Mad Money (2008),Comedy|Crime|Thriller +57393,Trade (2007),Crime|Drama|Thriller +57401,Cleaner (2007),Crime|Thriller +57418,"Rachel, Rachel (1968)",Drama|Romance +57421,Hatchet (2006),Comedy|Horror +57426,Blonde Ambition (2007),Comedy|Romance +57430,Welcome to L.A. (1976),Drama|Musical +57432,Timber Falls (2007),Horror|Thriller +57439,"Sensation of Sight, The (2006)",Drama +57453,Arranged (2007),Comedy|Drama|Romance +57464,He Was a Quiet Man (2007),Drama +57468,Viva Villa! (1934),Western +57473,The Return of Doctor X (1939),Horror|Mystery|Sci-Fi|Thriller +57476,The Cheyenne Social Club (1970),Comedy|Western +57478,"Laugh, Clown, Laugh (1928)",Drama +57480,"Iron Horse, The (1924)",Western +57482,Just Pals (1920),Western +57484,3 Bad Men (1926),Western +57499,Heaven and Earth (Ten to Chi to) (1990),Action|Adventure|Drama|War +57502,Cat Soup (Nekojiru-so) (2001),Adventure|Animation|Drama|Horror +57504,"Girl Who Leapt Through Time, The (Toki o kakeru shôjo) (2006)",Animation|Comedy|Drama|Romance|Sci-Fi +57509,Sex and Breakfast (2007),Comedy|Drama|Romance +57513,What? (Che?) (1972),Comedy +57520,One Missed Call (2008),Horror|Mystery|Thriller +57522,First Sunday (2008),Comedy|Crime +57526,Untraceable (2008),Crime|Thriller +57528,Rambo (Rambo 4) (2008),Action|Drama|Thriller|War +57530,How She Move (2007),Drama +57532,Meet the Spartans (2008),Comedy +57534,"Eye, The (2008)",Drama|Horror|Thriller +57536,Strange Wilderness (2008),Comedy +57538,Over Her Dead Body (2008),Comedy|Fantasy|Romance +57543,Fallen Art (Sztuka spadania) (2004),Action|Animation|Comedy +57550,Kings of the Road (Im Lauf der Zeit) (1976),Drama +57637,"Signal, The (2007)",Horror|Sci-Fi|Thriller +57640,Hellboy II: The Golden Army (2008),Action|Adventure|Fantasy|Sci-Fi +57648,"Green Man, The (1956)",Comedy +57655,Ira and Abby (2006),Comedy +57669,In Bruges (2008),Comedy|Crime|Drama|Thriller +57690,"Shoes of the Fisherman, The (1968)",Drama +57692,That Man from Rio (1964),Action|Adventure|Comedy|Romance +57695,"Clean, Shaven (1993)",Crime|Drama +57706,À nos amours (1983),Drama|Romance +57709,Thunder Rock (1942),Drama|Fantasy|War +57754,Bamako (2006),Drama +57772,World on a Wire (Welt am Draht) (1973),Crime|Sci-Fi +57774,"Bottom of the Sea, The (El fondo del mar) (2003)",Drama|Thriller +57776,Cazuza - O Tempo Não Pára (2004),Drama +57778,Future by Design (2006),Documentary|Sci-Fi +57792,Caramel (Sukkar banat) (2007),Comedy +57805,Poor Boy's Game (2007),Drama +57811,Operation Homecoming: Writing the Wartime Experience (2007),Documentary +57843,Rise of the Footsoldier (2007),Action|Crime|Drama +57845,Joe Strummer: The Future Is Unwritten (2007),Documentary +57848,Canvas (2006),Drama +57854,The Count of Monte Cristo (1934),Action|Adventure|Drama|Romance|Thriller +57865,Wedding Daze (2006),Comedy|Romance +57868,"Prisoner of Shark Island, The (1936)",Drama +57873,Dark Angel (I Come in Peace) (1990),Action|Horror|Sci-Fi|Thriller +57910,Teeth (2007),Comedy|Horror +57940,Visiting Hours (1982),Horror +57942,"Big Bang Love, Juvenile A (46-okunen no koi) (2006)",Drama +57946,Noriko's Dinner Table (Noriko no shokutaku) (2005),Drama|Horror +57949,"Welcome Home, Roscoe Jenkins (2008)",Comedy +57951,Fool's Gold (2008),Action|Adventure|Comedy|Romance +57960,"Great Lie, The (1941)",Drama +57964,Blue State (2007),Comedy +57970,U2 3D (2007),Documentary|IMAX +57980,"Art of Negative Thinking, The (Kunsten å tenke negativt) (2006)",Comedy|Drama +57991,In Which We Serve (1942),Drama|War +57996,"Motel, The (2005)",Comedy|Drama +58003,Hunger (1966),Drama +58007,"Shout, The (1978)",Drama|Horror +58025,Jumper (2008),Action|Adventure|Drama|Sci-Fi|Thriller +58029,It's a Free World... (2007),Drama +58033,Already Dead (2007),Action|Fantasy|Thriller +58047,"Definitely, Maybe (2008)",Comedy|Drama|Romance +58059,I Live in Fear (Ikimono no kiroku) (1955),Drama +58061,Four Sons (1928),Drama +58078,"Air I Breathe, The (2007)",Crime|Drama|Romance|Thriller +58081,Hangman's House (1928),Drama +58084,Street Thief (2006),Crime|Documentary +58094,"10th Judicial Court: Judicial Hearings, The (10e chambre - Instants d'audience) (2004)",Documentary +58103,Vantage Point (2008),Action|Drama|Thriller +58105,"Spiderwick Chronicles, The (2008)",Adventure|Children|Drama|Fantasy|IMAX +58107,Step Up 2 the Streets (2008),Drama|Musical|Romance +58111,Jodhaa Akbar (2008),Drama|Musical|Romance|War +58120,Born Reckless (1930),Comedy|Crime|Drama +58123,Il Mare (Siworae) (2000),Fantasy|Romance|Sci-Fi +58130,Up the River (1930),Comedy|Crime|Drama +58136,Great World of Sound (2007),Comedy +58146,Witless Protection (2008),Comedy +58154,"Other Boleyn Girl, The (2008)",Drama|Romance +58156,Semi-Pro (2008),Comedy +58162,Run Fatboy Run (2007),Comedy|Romance +58174,"Crying Out Love in the Center of the World (Sekai no chûshin de, ai o sakebu) (2004)",Drama|Romance +58180,Seas Beneath (1931),Action|Drama|War +58185,Please Vote for Me (2007),Documentary +58191,Taxi to the Dark Side (2007),Documentary +58207,Out of the Blue (Aramoana) (2006),Crime|Drama +58209,Alex in Wonder (Sex and a Girl) (2001),Comedy|Drama +58223,"Method, The (Método, El) (2005)",Drama +58228,Which Way Is Up? (1977),Comedy +58246,Grace Is Gone (2007),Drama +58269,Gran Paradiso (2000),Adventure|Drama|Romance +58274,Keeper of the Flame (1942),Drama|Mystery +58282,"Emperor Waltz, The (1948)",Comedy|Musical|Romance +58287,Descent (2007),Drama|Thriller +58291,College Road Trip (2008),Comedy +58293,"10,000 BC (2008)",Adventure|Romance|Thriller +58295,"Bank Job, The (2008)",Action|Crime|Thriller +58297,Doomsday (2008),Action|Drama|Sci-Fi|Thriller +58299,Horton Hears a Who! (2008),Adventure|Animation|Children|Comedy +58301,Funny Games U.S. (2007),Drama|Thriller +58303,"Counterfeiters, The (Die Fälscher) (2007)",Crime|Drama|War +58306,Mongol (2007),Drama|War +58309,War Dance (2007),Documentary +58315,"Love Guru, The (2008)",Comedy +58324,"Pirates Who Don't Do Anything: A VeggieTales Movie, The (2008)",Adventure|Animation|Children|Comedy +58332,Diary of the Dead (2007),Horror|Sci-Fi +58334,Hallam Foe (Mister Foe) (2007),Drama|Romance +58347,Penelope (2006),Comedy|Fantasy|Romance +58351,City of Men (Cidade dos Homens) (2007),Drama +58365,Chicago 10 (2007),Animation|Documentary +58367,"Romulus, My Father (2007)",Drama +58373,"Woman in White, The (1948)",Mystery|Thriller +58376,Zeitgeist: The Movie (2007),Documentary|War +58379,Terkel in Trouble (Terkel i knibe) (2004),Animation|Comedy|Drama|Musical +58381,Jellyfish (Meduzot) (2007),Drama +58409,"District, The (Nyócker!) (2004)",Animation|Comedy +58411,"Hottest State, The (2006)",Drama +58418,Then She Found Me (2007),Comedy|Drama|Romance +58422,"Island, The (a.k.a. Naked Island) (Hadaka no shima) (1960)",Drama +58425,Heima (2007),Documentary +58432,What Just Happened (2008),Comedy|Drama +58434,"Little Trip to Heaven, A (2005)",Drama|Thriller +58437,"Prince of Pennsylvania, The (1988)",Comedy|Drama +58439,Downhill Racer (1969),Drama +58452,Saving Sarah Cain (2007),Drama +58485,Return of the Living Dead 3 (1993),Horror|Romance|Sci-Fi +58490,Miss Pettigrew Lives for a Day (2008),Comedy|Romance +58492,Snow Angels (2007),Drama +58494,Married Life (2007),Crime|Drama|Romance +58509,Sun Valley Serenade (1941),Comedy|Musical|Romance +58520,Mala Noche (1985),Drama +58530,On the Outs (2004),Drama +58534,Stupid Boy (Garçon stupide) (2004),Drama +58554,"Class, The (Klass) (2007)",Drama +58559,"Dark Knight, The (2008)",Action|Crime|Drama|IMAX +58564,Doctor Bull (1933),Comedy|Drama +58576,Made in U.S.A. (1966),Crime|Mystery +58578,Restless Natives (1985),Adventure|Comedy|Drama +58589,"Only Game in Town, The (1970)",Comedy|Drama|Romance +58595,Quiet City (2007),Drama +58598,Phar Lap (1983),Children|Drama +58610,51 Birch Street (2005),Documentary +58622,"Hammer, The (2007)",Comedy +58627,Never Back Down (2008),Action +58632,"Terror's Advocate (Avocat de la terreur, L') (2007)",Documentary +58641,9 Star Hotel (Malon 9 Kochavim) (2007),Documentary +58649,Napoléon (1927),Drama|War +58652,CJ7 (Cheung Gong 7 hou) (2008),Children|Comedy|Sci-Fi +58655,Drillbit Taylor (2008),Comedy +58661,Dead Awake (2001),Action|Thriller +58706,"Under the Same Moon (Misma luna, La) (2007)",Drama +58709,Tropical Malady (Sud pralad) (2004),Drama|Fantasy|Romance +58718,Slipstream (2007),Comedy|Drama|Fantasy|Mystery|Sci-Fi|Thriller +58722,Terror of Mechagodzilla (Mekagojira no gyakushu) (1975),Action|Sci-Fi +58740,"Smiling Lieutenant, The (1931)",Comedy|Musical|Romance +58743,Alatriste (2006),Action|Adventure|Romance|War +58760,Joysticks (1983),Comedy +58774,Promised Land (Ziemia Obiecana) (1975),Drama +58783,Youth Without Youth (2007),Drama|Romance|Sci-Fi +58785,Khadak (2006),Drama +58803,21 (2008),Crime|Drama|Romance|Thriller +58806,Smart People (2008),Comedy|Drama|Romance +58808,"Last Hangman, The (Pierrepoint) (2005)",Drama +58810,"Hawk Is Dying, The (2006)",Drama +58812,"Ball, The (Le bal) (1983)",Musical +58816,"Gymnast, The (2006)",Drama|Romance +58839,Leatherheads (2008),Comedy|Drama|Romance +58847,Why Not? (Eijanaika) (1981),Drama +58850,Pirates (1986),Adventure|Comedy +58870,Zebraman (2004),Comedy +58874,Marketa Lazarová (1967),Drama|Romance +58876,Stop-Loss (2008),Drama|War +58879,Shine a Light (2008),Documentary|Musical|IMAX +58881,Dark Matter (2007),Drama +58889,"Business of Being Born, The (2008)",Documentary +58895,Black Peter (Cerný Petr) (1964),Drama +58898,"Aerial, The (La antena) (2007)",Adventure|Fantasy|Film-Noir|Mystery|Sci-Fi +58904,Chan Is Missing (1982),Crime +58920,Close to Home (Karov La Bayit) (2005),Drama +58922,White Palms (Fehér tenyér) (2006),Drama +58933,Saawariya (2007),Drama|Musical|Romance +58937,Julia (2008),Drama|Thriller +58939,I Always Wanted to Be a Gangster (J'ai toujours rêvé d'être un gangster) (2007),Comedy|Crime|Drama +58941,Just Anybody (Le premier venu) (2008),Drama|Romance +58945,"Pope's Toilet, The (El bano del Papa) (1998)",Drama +58964,Inside (À l'intérieur) (2007),Horror|Thriller +58972,Nim's Island (2008),Adventure|Comedy|Fantasy +58975,"Ruins, The (2008)",Horror|Thriller +58992,Joy Division (2007),Documentary|Musical +58994,Send a Bullet (Manda Bala) (2007),Documentary +58998,Forgetting Sarah Marshall (2008),Comedy|Romance +59000,Sex and Death 101 (2007),Comedy|Drama +59014,Superhero Movie (2008),Action|Comedy|Sci-Fi +59016,Street Kings (2008),Crime|Drama|Thriller +59018,"Visitor, The (2007)",Drama|Romance +59022,Harold & Kumar Escape from Guantanamo Bay (2008),Adventure|Comedy +59026,99 francs (2007),Comedy +59031,Private Property (Nue propriété) (2006),Drama +59037,Speed Racer (2008),Action|Children|Sci-Fi|IMAX +59040,Gabriel (2007),Action|Horror +59044,Diminished Capacity (2008),Comedy +59053,Nathalie... (2003),Drama +59065,Chapter 27 (2007),Crime|Drama +59074,"Thief Who Came to Dinner, The (1973)",Comedy|Romance +59103,"Forbidden Kingdom, The (2008)",Action|Adventure|Comedy|Fantasy +59105,Where in the World Is Osama Bin Laden? (2008),Documentary +59107,"Life Before Her Eyes, The (2007)",Drama|Thriller +59114,Pulp (1972),Comedy|Thriller +59116,Virgin Territory (2007),Adventure|Comedy|Romance +59118,Happy-Go-Lucky (2008),Comedy|Drama +59126,Religulous (2008),Comedy|Documentary +59129,Outpost (2008),Action|Horror +59131,Are You Scared? (2006),Horror +59136,Before Flying Back to Earth (Pries parskrendant i zeme) (2005),Documentary +59138,Bernard and Doris (2007),Comedy|Drama +59141,Son of Rambow (2007),Children|Comedy|Drama +59143,Super High Me (2007),Comedy|Documentary +59154,Black Friday (1940),Crime|Drama|Horror|Sci-Fi +59157,"Invisible Ray, The (1936)",Horror|Sci-Fi +59159,Murders in the Rue Morgue (1932),Crime|Horror|Mystery +59173,"Killer Elite, The (1975)",Action|Drama|Thriller +59178,Tarzan Escapes (1936),Action|Adventure +59180,Tarzan Finds a Son! (1939),Action|Adventure +59182,Tarzan's Secret Treasure (1941),Action|Adventure +59184,Tarzan's New York Adventure (1942),Action|Adventure +59188,Viva Zapata! (1952),Western +59216,Antares (2004),Drama +59220,Outsourced (2006),Comedy|Romance +59256,Deception (2008),Action|Drama|Thriller +59258,Baby Mama (2008),Comedy +59260,"Unknown Woman, The (La Sconosciuta) (2006)",Drama|Mystery|Thriller +59273,Delirious (2006),Comedy|Drama +59290,Klimt (2006),Drama +59295,Expelled: No Intelligence Allowed (2008),Documentary +59302,Viva Cuba (2005),Comedy|Drama +59306,Prom Night (2008),Horror|Mystery|Thriller +59313,"White Massai, The (Weisse Massai, Die) (2005)",Drama|Romance +59315,Iron Man (2008),Action|Adventure|Sci-Fi +59327,Possessed (Besat) (1999),Action|Crime|Drama|Horror|Thriller +59333,Made of Honor (2008),Comedy|Romance +59336,Redbelt (2008),Action|Drama +59339,Mister Lonely (2007),Comedy|Drama +59362,Anamorph (2007),Crime|Thriller +59366,"Bread, My Sweet, The (a.k.a. Wedding for Bella, A) (2001)",Drama|Romance +59369,Taken (2008),Action|Crime|Drama|Thriller +59376,Hero Wanted (2008),Action|Crime|Drama|Thriller +59382,Flight of the Red Balloon (2007),Children|Drama +59387,"Fall, The (2006)",Adventure|Drama|Fantasy +59399,Blind Dating (2006),Comedy|Romance +59404,Meet Bill (2007),Comedy|Drama +59418,"American Crime, An (2007)",Crime +59421,What Happens in Vegas... (2008),Comedy|Romance +59426,White Night (Hvid nat) (2007),Drama +59435,Numb (2007),Comedy|Drama|Romance +59440,Bella (2006),Drama|Romance +59447,Fiorile (1993),Drama +59463,"Man Between, The (1953)",Drama|Film-Noir|Romance|Thriller +59465,The Stars Look Down (1940),Drama +59478,"Unknown Soldier, The (Unbekannte Soldat, Der) (2006)",Documentary +59485,a/k/a Tommy Chong (2005),Documentary +59501,"Chronicles of Narnia: Prince Caspian, The (2008)",Adventure|Children|Fantasy +59519,Reprise (2006),Drama +59527,"Window, The (1949)",Drama|Film-Noir|Thriller +59547,"Ron Clark Story, The (2006)",Drama +59549,Shelter (2007),Drama|Romance +59590,Young at Heart (a.k.a. Young@Heart) (2007),Documentary|Musical +59594,"War, Inc. (2008)",Comedy|Crime|Thriller +59602,"Year of the Wolf, The (Suden vuosi) (2007)",Drama|Romance +59604,"Girl Next Door, The (2007)",Crime|Drama|Horror|Thriller +59607,King Corn (2007),Documentary +59615,Indiana Jones and the Kingdom of the Crystal Skull (2008),Action|Adventure|Comedy|Sci-Fi +59621,How to Rob a Bank (2007),Comedy|Crime|Mystery|Thriller +59625,"Hey, Hey, It's Esther Blueburger (2008)",Comedy|Drama +59641,"Quiet American, The (1958)",Drama|Romance|Thriller|War +59655,Patti Smith: Dream of Life (2008),Documentary +59665,Day of the Outlaw (1959),Western +59667,Nina's Heavenly Delights (2006),Comedy +59669,Following Sean (2005),Documentary +59680,One Hour with You (1932),Comedy|Musical|Romance +59684,Lake of Fire (2006),Documentary +59705,"Witnesses, The (Les témoins) (2007)",Drama +59709,"Oxford Murders, The (2007)",Crime|Mystery|Romance|Thriller +59715,Shutter (2008),Horror|Mystery|Thriller +59721,"Grand, The (2007)",Comedy +59725,Sex and the City (2008),Comedy|Romance +59727,"Strangers, The (2008)",Horror|Thriller +59729,Savage Grace (2007),Crime|Drama +59731,"Bigger, Stronger, Faster* (2008)",Documentary +59738,All the Boys Love Mandy Lane (2006),Horror|Mystery|Thriller +59753,Memories of Matsuko (Kiraware Matsuko no isshô) (2006),Comedy|Drama|Musical|Mystery +59784,Kung Fu Panda (2008),Action|Animation|Children|Comedy|IMAX +59795,What Would Jesus Buy? (2007),Comedy|Documentary +59799,Extreme Private Eros: Love Song 1974 (1974),Documentary +59801,"Emperor's Naked Army Marches On, The (Yuki Yukite shingun) (1987)",Documentary +59805,Antonio das Mortes (O Dragão da Maldade contra o Santo Guerreiro) (1969),Drama|Western +59810,Recount (2008),Drama +59814,Ex Drummer (2007),Comedy|Crime|Drama|Horror +59832,Where the Sidewalk Ends (1950),Crime|Drama|Film-Noir +59834,100 Rifles (1969),Adventure|War|Western +59836,Blood Alley (1955),Action|Adventure +59838,Chato's Land (1972),Western +59840,Cold Sweat (De la part des copains) (1970),Action|Drama|Thriller +59842,"FBI Story, The (1959)",Crime|Drama|Thriller +59844,"Honor Among Thieves (Adieu l'ami) (Farewell, Friend) (1968)",Action|Adventure|Crime|Drama|Mystery|Thriller +59846,"Iron Mask, The (1929)",Adventure|Drama|Romance +59850,St. Ives (1976),Crime|Mystery|Thriller +59852,Villa Rides! (1968),War|Western +59854,"Wings of Eagles, The (1957)",Drama|War +59858,Steamboat Round the Bend (1935),Comedy|Drama +59861,"World Moves On, The (1934)",Drama|Romance|War +59865,Pilgrimage (1933),Drama +59867,Lonelyhearts (1958),Drama|Film-Noir +59888,Boat People (Tau ban no hoi) (1982),Drama +59893,"Wrong Move, The (Falsche Bewegung) (1975)",Drama +59895,Dust in the Wind (1987),Drama|Romance +59900,You Don't Mess with the Zohan (2008),Comedy +59905,"Prefab People, The (Panelkapcsolat) (1982)",Drama +59908,"Promotion, The (2008)",Comedy +59910,And When Did You Last See Your Father? (2007),Drama +59912,My Brother Is an Only Child (Mio fratello è figlio unico) (2006),Comedy|Crime|Drama +59915,Stuck (2007),Horror|Thriller +59922,July Rhapsody (Laam yan sei sap) (2002),Drama +59938,Telefon (1977),Action|Crime|Thriller +59942,"Lost World, The (1960)",Adventure +59945,"Mark of Zorro, The (1920)",Adventure|Romance|Western +59947,"Protector, The (1985)",Action|Comedy|Drama|Thriller +59954,"Three Musketeers, The (1921)",Action|Adventure|Romance +59960,Warlock (1959),Romance|Western +59974,"Fidanzati, I (Fiances, The) (1963)",Drama +59976,"Posto, Il (1961)",Drama +59985,Chaos Theory (2007),Comedy|Drama|Romance +59988,"Boys and Girls Guide to Getting Down, The (2006)",Comedy +59995,Boy A (2007),Crime|Drama +60007,Doctor Who (1996),Adventure|Sci-Fi +60020,"Warlords, The (Tau ming chong) (2007)",Action|Drama|War +60030,Spiral (2007),Drama|Horror|Thriller +60032,Hounddog (2007),Drama +60037,"Happening, The (2008)",Drama|Sci-Fi|Thriller +60040,"Incredible Hulk, The (2008)",Action|Sci-Fi +60044,Baghead (2008),Comedy|Drama|Horror +60046,"Children of Huang Shi, The (2008)",Drama|War +60059,Quill (2004),Drama +60069,WALL·E (2008),Adventure|Animation|Children|Romance|Sci-Fi +60072,Wanted (2008),Action|Thriller +60074,Hancock (2008),Action|Adventure|Comedy|Crime|Fantasy +60086,Boy Culture (2006),Drama +60096,Ten Minutes Older: The Trumpet (2002),Drama +60103,Angel Face (1952),Crime|Drama|Film-Noir +60106,Huckleberry Finn (1974),Adventure|Musical +60110,Tom Sawyer (1973),Adventure|Children|Musical +60124,Turn the River (2007),Drama +60126,Get Smart (2008),Action|Comedy +60128,Young People Fucking (a.k.a. YPF) (2007),Comedy +60133,Brick Lane (2007),Drama +60135,Surfwise (2007),Documentary +60137,"Rape of Europa, The (2006)",Documentary +60141,St. Trinian's (2007),Children|Comedy +60145,"Penalty, The (1920)",Crime|Drama|Horror +60147,Roman de gare (2007),Drama +60150,Desire (1936),Comedy|Crime|Romance +60179,Equinox (1970),Adventure|Horror|Mystery +60183,At the Death House Door (2008),Documentary +60189,Archangel (1990),Comedy +60193,Battlefield Baseball (Jigoku kôshien) (2003),Action|Horror|Musical +60198,"Sandglass, The (Sanatorium pod klepsydra) (1973)",Mystery +60201,"Color of Pomegranates, The (Sayat Nova) (1968)",Drama +60223,West of Zanzibar (1928),Drama|Mystery +60225,Tell It to the Marines (1926),Comedy|Drama|Romance|War +60227,"Unholy Three, The (1925)",Crime|Drama|Romance +60229,"Unholy Three, The (1930)",Crime|Drama +60231,London After Midnight (1927),Drama|Horror +60234,"Shock, The (1923)",Crime|Drama +60237,Dog Day (Canicule) (1984),Action|Crime|Drama|Thriller +60240,"Klansman, The (1974)",Action|Drama|Thriller +60243,Pocket Money (1972),Comedy|Western +60256,Goddess (Devi) (1960),Drama +60259,Bambi 2 (2006),Animation|Children|Drama +60284,Gunnin' for That #1 Spot (2008),Documentary +60286,Finding Amanda (2008),Comedy|Drama +60289,Kit Kittredge: An American Girl (2008),Children|Comedy|Drama|Mystery +60291,Gonzo: The Life and Work of Dr. Hunter S. Thompson (2008),Documentary +60293,"Wackness, The (2008)",Comedy|Drama|Romance +60295,Up the Yangtze (2007),Documentary +60303,Strange Circus (Kimyô na sâkasu) (2005),Horror|Mystery|Thriller +60309,Along Came Jones (1945),Comedy|Romance|Western +60311,"Black Swan, The (1942)",Adventure +60314,Cheyenne Autumn (1964),Western +60316,Hour of the Gun (1967),Western +60322,Sleepwalking (2008),Drama +60333,Encounters at the End of the World (2008),Documentary +60336,Bad Blood (Mauvais sang) (1986),Crime|Drama|Romance +60338,Dante 01 (2008),Sci-Fi|Thriller +60341,Standard Operating Procedure (2008),Crime|Documentary|War +60343,Wee Willie Winkie (1937),Adventure +60353,A Page of Madness (1926),Drama|Horror +60356,Two Women (2000),Drama +60363,Zombie Strippers! (2008),Comedy|Horror +60376,White Light/Black Rain: The Destruction of Hiroshima and Nagasaki (2007),Documentary|Horror|War +60382,Roman Polanski: Wanted and Desired (2008),Documentary +60384,Z Channel: A Magnificent Obsession (2004),Documentary +60389,Battle for Haditha (2007),War +60391,Alexandra (Aleksandra) (2007),Drama|War +60393,Transylvania (2006),Drama +60397,Mamma Mia! (2008),Comedy|Musical|Romance +60405,Ganes (2007),Drama|Musical +60408,Welcome to the Sticks (Bienvenue chez les Ch'tis) (2008),Comedy +60411,"Pornographers, The (Erogotoshi-tachi yori: Jinruigaku nyûmon) (1966)",Comedy|Drama +60418,Kabluey (2007),Comedy|Drama +60421,"Stone Angel, The (2007)",Drama +60436,Honeydripper (2007),Drama +60450,Summer of '04 (Sommer '04) (2006),Drama +60461,"Home of Dark Butterflies, The (Tummien perhosten koti) (2008)",Drama +60463,Dark Floors (2008),Fantasy|Horror +60469,Silentium (2004),Crime|Thriller +60471,Rogue (2007),Action|Adventure|Horror|Sci-Fi|Thriller +60475,"Violin, El (2005)",Drama +60479,Sublime (2007),Horror|Thriller +60482,Towelhead (a.k.a. Nothing is Private) (2007),Drama +60484,No Regrets for Our Youth (Waga seishun ni kuinashi) (1946),Drama +60487,"It's the Great Pumpkin, Charlie Brown (1966)",Animation|Children|Comedy +60490,Lost Islands (2008),Drama +60494,Borderline (1950),Crime|Drama|Romance +60503,Katyn (2007),Drama|War +60508,Pan Tadeusz: The Last Foray in Lithuania (Pan Tadeusz) (1999),Drama|Romance|War +60514,Journey to the Center of the Earth (2008),Action|Adventure|Sci-Fi +60516,Meet Dave (2008),Adventure|Children|Comedy|Romance|Sci-Fi +60522,"Machine Girl, The (Kataude mashin gâru) (2008)",Action|Comedy|Fantasy|Horror|Thriller +60524,August (2008),Drama +60526,Death Defying Acts (2007),Drama|Romance|Thriller +60530,Water Lilies (Naissance des pieuvres) (2007),Drama +60538,Shrooms (2007),Horror|Thriller +60544,Manslaughter (Drabet) (2005),Drama +60546,"Bench, The (Bænken) (2000)",Drama +60551,Breath (Soom) (2007),Drama +60566,Just Another Love Story (Kærlighed på film) (2007),Crime|Drama|Thriller +60568,"Substitute, The (Vikaren) (2007)",Comedy|Sci-Fi|Thriller +60579,Next Door (Naboer) (2005),Horror|Mystery|Thriller +60585,Chinese Roulette (Chinesisches Roulette) (1976),Drama +60590,"Heartbeat Detector (Question humaine, La) (2007)",Drama|Thriller +60599,Flakes (2007),Comedy +60609,Death Note (2006),Adventure|Crime|Drama|Horror|Mystery +60616,"Majority of One, A (1961)",Comedy|Drama|Romance +60618,Moving McAllister (2007),Comedy +60625,"Tall T, The (1957)",Western +60641,Music Within (2007),Comedy|Drama|Romance|War +60647,Transsiberian (2008),Crime|Drama|Thriller +60649,Space Chimps (2008),Adventure|Animation|Comedy +60654,"Last Mistress, The (vieille maîtresse, Une) (2007)",Drama +60666,Jimmy Carter Man from Plains (2007),Documentary +60684,Watchmen (2009),Action|Drama|Mystery|Sci-Fi|Thriller|IMAX +60688,Conspiracy (2008),Action|Drama|Mystery|Thriller|War +60702,WarGames: The Dead Code (2008),Drama|Sci-Fi|Thriller +60707,Vince Vaughn's Wild West Comedy Show: 30 Days & 30 Nights - Hollywood to the Heartland (2006),Comedy|Documentary +60728,Steal a Pencil for Me (2007),Documentary|Romance +60735,Shotgun Stories (2007),Drama|Thriller +60737,Watching the Detectives (2007),Comedy|Romance +60743,Mr. Untouchable (2007),Crime|Documentary +60745,Blast of Silence (1961),Crime|Drama|Thriller +60753,Felon (2008),Crime|Drama +60756,Step Brothers (2008),Comedy +60758,Brideshead Revisited (2008),Drama +60760,"X-Files: I Want to Believe, The (2008)",Drama|Mystery|Sci-Fi|Thriller +60763,American Teen (2008),Documentary +60766,Man on Wire (2008),Documentary +60768,CSNY Déjà Vu (2008),Documentary +60803,"Little Drummer Boy, The (1968)",Animation|Children|Musical +60825,Mulberry Street (2006),Action|Horror|Thriller +60827,Lost in Beijing (Ping guo) (2007),Drama +60832,Pathology (2008),Crime|Horror|Thriller +60857,"Tracey Fragments, The (2007)",Drama +60880,"Family Game, The (Kazoku gêmu) (1983)",Comedy|Drama +60885,"Zone, The (La Zona) (2007)",Drama|Thriller +60887,Blindsight (2006),Adventure|Documentary +60894,"Edge of Love, The (2008)",Drama|Romance|War +60896,"Godless Girl, The (1929)",Drama +60930,Frozen City (Valkoinen kaupunki) (2006) ,Drama +60937,"Mummy: Tomb of the Dragon Emperor, The (2008)",Action|Adventure|Fantasy|Thriller +60939,Swing Vote (2008),Comedy|Drama +60941,"Midnight Meat Train, The (2008)",Horror|Mystery|Thriller +60943,Frozen River (2008),Drama +60946,Sixty Six (2006),Comedy|Drama +60948,Bottle Shock (2008),Drama +60950,Vicky Cristina Barcelona (2008),Comedy|Drama|Romance +60990,"End of Summer, The (Early Autumn) (Kohayagawa-ke no aki) (1961)",Drama +60992,"Moment to Remember, A (Nae meorisokui jiwoogae) (2004)",Drama|Romance +61004,Year of the Gun (1991),Action|Romance|Thriller +61009,Inside Paris (Dans Paris) (2006),Drama +61011,"Walker, The (2007)",Drama|Mystery +61013,Absolute Giganten (1999),Action|Comedy|Drama|Romance +61018,Peppermint Candy (Bakha satang) (1999),Drama +61024,Pineapple Express (2008),Action|Comedy|Crime +61026,Red Cliff (Chi bi) (2008),Action|Adventure|Drama|War +61031,"World's Greatest Lover, The (1977)",Comedy +61035,W Delta Z (a.k.a. The Killing Gene) (2007),Crime|Horror|Thriller +61037,Silent Light (Stellet licht) (2007),Drama +61041,"Take, The (2007)",Crime|Drama +61071,"Sisterhood of the Traveling Pants 2, The (2008)",Adventure|Comedy|Drama|Romance +61073,Hell Ride (2008),Action|Drama|Thriller +61075,Elegy (2008),Drama|Romance +61083,"Good Humor Man, The (2005)",Drama|Romance +61100,Still Life (Sanxia haoren) (2006),Drama|Romance +61110,Quid Pro Quo (2008),Drama|Thriller +61116,Black Caesar (1973),Crime|Drama +61123,High School Musical 2 (2007),Comedy|Drama|Musical|Romance +61132,Tropic Thunder (2008),Action|Adventure|Comedy|War +61136,"Objective, The (2008)",Horror|Sci-Fi|Thriller|War +61160,Star Wars: The Clone Wars (2008),Action|Adventure|Animation|Sci-Fi +61167,Henry Poole is Here (2008),Drama|Mystery +61206,In the City of Sylvia (En la ciudad de Sylvia) (2007),Drama +61210,Mutant Chronicles (2008),Action|Adventure|Sci-Fi +61215,13 Beloved (13 game sayawng) (2006),Horror|Mystery|Thriller +61236,Waltz with Bashir (Vals im Bashir) (2008),Animation|Documentary|Drama|War +61240,Let the Right One In (Låt den rätte komma in) (2008),Drama|Fantasy|Horror|Romance +61246,Hamlet 2 (2008),Comedy +61248,Death Race (2008),Action|Adventure|Sci-Fi|Thriller +61250,"House Bunny, The (2008)",Comedy +61253,"Longshots, The (2008)",Drama +61255,"Rocker, The (2008)",Comedy +61257,I.O.U.S.A. (a.k.a. IOUSA) (2008),Documentary +61262,Mirrors (2008),Horror|Mystery|Thriller +61264,"Girl Cut in Two, The (Fille coupée en deux, La) (2007)",Drama|Thriller +61267,Fly Me to the Moon (2008),Adventure|Animation|Children|IMAX +61269,Trumbo (2007),Documentary +61279,Variety Lights (1950),Drama +61285,Path to War (2002),Drama +61289,Sukiyaki Western Django (2008),Action|Western +61301,American Zombie (2007),Comedy|Horror +61312,Noise (2007),Comedy|Drama +61317,Feed (2005),Action|Crime|Mystery|Thriller +61319,Somers Town (2008),Drama +61323,Burn After Reading (2008),Comedy|Crime|Drama +61348,Disaster Movie (2008),Comedy +61350,Babylon A.D. (2008),Action|Adventure|Sci-Fi|Thriller +61352,Traitor (2008),Crime|Drama|Thriller +61354,College (2008),Comedy +61357,Trouble the Water (2008),Documentary +61361,"Women, The (2008)",Comedy|Drama +61373,"Woman in Black, The (1989)",Horror|Mystery +61396,Sergeant Rutledge (1960),Crime|Western +61398,"Mother of Tears: The Third Mother (Terza madre, La) (2007)",Fantasy|Horror|Thriller +61401,"Spirit, The (2008)",Action|Comedy|Fantasy|Thriller +61406,John Adams (2008),Drama +61414,Tobacco Road (1941),Comedy|Drama +61434,Oh! What a Lovely War (1969),Musical|War +61449,"Burning Plain, The (2008)",Drama|Romance +61451,"Seventh Cross, The (1944)",Drama|War +61465,Bangkok Dangerous (2008),Action|Crime|Thriller +61467,Everybody Wants to Be Italian (2007),Comedy|Romance +61470,"Boys in Company C, The (1978)",Drama|War +61473,"Secret, A (Un secret) (2007)",Drama|War +61475,August Evening (2007),Drama +61493,Flash Point (a.k.a. Flashpoint) (Dou fo sin) (2007),Action +61553,"Fifth Commandment, The (2008)",Action|Comedy|Crime|Drama|Thriller +61560,That's Black Entertainment (1990),Documentary +61567,Kummeli Alivuokralainen (2008),Comedy +61569,"Jammed, The (2007)",Drama|Thriller +61586,"Half Life of Timofey Berezin, The (PU-239) (2006)",Drama +61628,Sunflower (Xiang ri kui) (2005),Drama +61634,Son of Lassie (1945),Children|Drama +61638,Flu Bird Horror (2008),Horror|Thriller +61646,DarkBlueAlmostBlack (Azuloscurocasinegro) (2006),Drama|Romance +61678,"Foot Fist Way, The (2006)",Comedy +61692,Altered (2006),Horror|Sci-Fi|Thriller +61695,Ladrones (2007),Drama +61697,Righteous Kill (2008),Crime|Mystery|Thriller +61705,Lakeview Terrace (2008),Drama|Thriller +61707,Ladrón que roba a ladrón (2007),Action|Adventure|Comedy|Crime +61724,Shadows in Paradise (Varjoja paratiisissa) (1986),Comedy|Romance +61729,Ghost Town (2008),Comedy|Fantasy|Romance +61742,Maradona by Kusturica (2008),Documentary +61768,Accused (Anklaget) (2005),Drama +61816,Import/Export (2007),Drama +61818,"Crow, The: Wicked Prayer (2005)",Action|Adventure|Fantasy|Thriller +61862,In Bed (En la cama) (2005),Drama +61868,Jam (2006),Drama +61913,Africa addio (1966),Documentary +61931,Private Parts (1972),Horror|Thriller +61934,Freebie and the Bean (1974),Action|Comedy +61937,Sawdust and Tinsel (Gycklarnas afton) (1953),Drama +61941,Humboldt County (2008),Comedy|Drama +61948,100 Feet (2008),Horror|Thriller +61950,Boot Camp (2007),Thriller +61967,"Autumn Afternoon, An (Sanma no aji) (1962)",Drama +61986,Appaloosa (2008),Western +61991,Miracle at St. Anna (2008),Drama|Mystery|War +61994,"So Normal (Normais, Os) (2003)",Comedy +62000,"Steamroller and the Violin, The (Katok i skripka) (1961)",Drama +62010,Tears of April (Käsky) (2008),Drama|Romance|War +62014,Zuzu Angel (2006),Drama +62049,1984 (1956),Drama|Sci-Fi +62054,"Friend Among Strangers, Stranger Among Friends (Svoy sredi chuzhikh, chuzhoy sredi svoikh) (1974)",Action|War|Western +62081,Eagle Eye (2008),Action|Crime|Thriller|IMAX +62113,How to Lose Friends & Alienate People (2008),Comedy +62115,Six Shooter (2004),Comedy|Drama +62137,Nights in Rodanthe (2008),Drama|Romance +62153,Look Back in Anger (1958),Drama +62155,Nick and Norah's Infinite Playlist (2008),Comedy|Drama|Romance +62157,"Secrets, The (Sodot, Ha-) (2007)",Drama|Romance +62198,Marjoe (1972),Documentary +62203,Martyrs (2008),Horror +62206,Supermarket Woman (Sûpâ no onna) (1996),Comedy +62208,"Sound of the Mountain (Thunder of the Mountain, The) (Yama no oto) (1954)",Drama +62213,"Sexo, Amor e Traição (2004)",Comedy +62235,Red (2008),Drama|Thriller +62237,Part of the Weekend Never Dies (2008),Documentary +62245,"Music Room, The (Jalsaghar) (1958)",Drama +62250,Gomorrah (Gomorra) (2008),Crime|Drama +62254,"Funeral, The (Ososhiki) (1984)",Comedy +62265,"Accidental Husband, The (2009)",Comedy|Romance +62277,KM 31: Kilometro 31 (2006),Horror +62293,"Duchess, The (2008)",Drama|Romance +62299,Alone in the Dark II (2008),Action|Horror +62304,"Tulse Luper Suitcases, Part 1: The Moab Story, The (2003)",Adventure|Drama|Fantasy|Film-Noir +62334,"Wrong Man, The (1993)",Romance|Thriller +62344,Rachel Getting Married (2008),Drama|Romance +62374,Body of Lies (2008),Action|Drama|Thriller +62376,City of Ember (2008),Adventure|Children|Sci-Fi +62378,Magicians (2007),Comedy +62383,"20,000 Leagues Under the Sea (1916)",Action|Adventure|Sci-Fi +62385,Ace High (1968),Comedy|Western +62390,Autism: The Musical (2007),Documentary +62394,Max Payne (2008),Action|Crime|Drama|Thriller +62420,"Pool, The (2007)",Comedy|Drama +62434,Zack and Miri Make a Porno (2008),Comedy|Drama|Romance +62437,W. (2008),Drama +62439,My Best Friend's Girl (2008),Comedy|Romance +62467,Family Life (1971),Drama +62474,Adios Sabata (1970),Action|War|Western +62511,"Synecdoche, New York (2008)",Comedy|Drama +62514,Come to the Stable (1949),Drama +62526,"Drowning Pool, The (1975)",Mystery|Thriller +62553,"Secret Life of Bees, The (2008)",Drama +62577,Flash of Genius (2008),Drama +62586,"American Carol, An (2008)",Comedy|Fantasy +62644,"Wave, The (Welle, Die) (2008)",Drama +62660,"Deux mondes, Les (2007)",Comedy|Fantasy +62662,Tokyo-Ga (1985),Documentary +62669,Black River (Kuroi kawa) (1957),Drama +62718,"Angus, Thongs and Perfect Snogging (2008)",Comedy|Romance +62721,Bad Eggs (2003),Comedy|Thriller +62726,Tyler Perry's The Family That Preys (2008),Drama +62729,Niko & the Way to the Stars (a.k.a. The Flight Before Christmas) (Niko - Lentäjän poika) (2008),Adventure|Animation|Children|Drama|Fantasy +62733,Quarantine (2008),Drama|Horror|Mystery|Thriller +62761,Taifu Club (Taifû kurabu) (1985),Drama|Romance +62764,Black Moon (1975),Fantasy|Mystery|Sci-Fi|War +62781,My Sons (Musuko) (1991),Comedy|Romance +62788,Lost Boys: The Tribe (2008),Comedy|Horror|Thriller +62792,Pride and Glory (2008),Crime|Drama +62796,Fifty Pills (2006),Comedy +62799,"Express, The (2008)",Drama +62801,Lone Wolf and Cub: Baby Cart to Hades (Kozure Ôkami: Shinikazeni mukau ubaguruma) (1972),Action|Drama +62803,Lone Wolf and Cub: Baby Cart in Peril (Kozure Ôkami: Oya no kokoro ko no kokoro) (1972),Action +62834,Babylon 5: The Legend of the Rangers: To Live and Die in Starlight (2002),Sci-Fi +62836,Babylon 5: The Lost Tales - Voices in the Dark (2007),Sci-Fi +62847,"Love of Siam, The (Rak haeng Siam) (2007)",Drama|Mystery|Romance +62849,RocknRolla (2008),Action|Crime +62851,Zen Noir (2004),Comedy|Drama|Mystery +62912,High School Musical 3: Senior Year (2008),Musical +62916,"Wicked Lady, The (1945)",Adventure|Drama +62920,I Can Get It for You Wholesale (1951),Drama|Romance +62925,"Adventures of Huckleberry Finn, The (1939)",Adventure|Drama +62953,Resistance (2003),Drama|Romance|War +62972,Into the West (2005),Adventure|Drama|Western +62974,"Adventures of Tom Sawyer, The (1938)",Adventure +62999,Madagascar: Escape 2 Africa (2008),Action|Adventure|Animation|Children|Comedy|IMAX +63001,Admiral (2008),Drama|War +63007,"Affairs of Anatol, The (1921)",Comedy|Drama +63033,Blindness (2008),Drama|Mystery|Romance|Thriller +63062,Changeling (2008),Crime|Drama|Mystery +63072,"Road, The (2009)",Adventure|Drama|Thriller +63082,Slumdog Millionaire (2008),Crime|Drama|Romance +63113,Quantum of Solace (2008),Action|Adventure|Thriller +63119,Filth and Wisdom (2008),Comedy|Drama|Musical|Romance +63121,"Tale of Two Cities, A (1958)",Drama|Romance +63131,Role Models (2008),Comedy +63134,"Great K & A Train Robbery, The (1926)",Action|Western +63141,Rockin' in the Rockies (1945),Comedy|Musical|Western +63179,Tokyo! (2008),Drama +63181,Tokyo Gore Police (Tôkyô zankoku keisatsu) (2008),Action|Horror +63187,Kozara (1962),Drama|War +63189,Sauna (2008),Horror|Mystery +63194,Caótica Ana (2007),Comedy|Drama|Mystery|Romance +63222,JCVD (2008),Action|Drama|Thriller +63226,Repast (Meshi) (1951),Drama +63229,Feiern (2006),Documentary +63237,Happily Ever After (1993),Animation|Children|Comedy|Musical +63239,Cinderella (1997),Children|Fantasy|Musical|Romance +63271,Gold Raiders (1951),Comedy|Western +63273,Captain Mike Across America (Slacker Uprising) (2007),Documentary +63276,Crows Zero (Kurôzu zero) (2007),Action +63278,"Homem Que Desafiou o Diabo, O (2007)",Comedy +63280,"Winning of Barbara Worth, The (1926)",Drama|Romance|Western +63283,"Whole Town's Talking, The (Passport to Fame) (1935)",Comedy|Crime +63310,"War Lord, The (1965)",Drama|Romance|War +63312,Krabat (2008),Drama|Fantasy +63327,Säg att du älskar mig (2006),Drama +63329,Christmas Story (Joulutarina) (2007),Children|Drama|Fantasy +63332,"Guard Post, The (G.P. 506) (2008)",Horror +63339,Every Stewardess Goes to Heaven (Todas las azafatas van al cielo) (2002),Drama|Romance +63391,Goyokin (1969),Action|Drama +63393,Camp Rock (2008),Comedy|Musical|Romance +63433,Farscape: The Peacekeeper Wars (2004),Action|Adventure|Sci-Fi +63436,Saw V (2008),Crime|Horror|Thriller +63446,"Christmas Tale, A (Un conte de Noël) (2008)",Comedy|Drama +63458,Critters 4 (1991),Comedy|Horror|Sci-Fi +63468,Restaurant (1998),Drama +63479,Sex Drive (2008),Comedy +63481,Soul Men (2008),Comedy|Musical +63483,While She Was Out (2008),Thriller +63515,The Island (2006),Drama|Mystery +63540,Beverly Hills Chihuahua (2008),Adventure|Children|Comedy +63544,Half Moon (a.k.a. Niwemang) (2006),Drama|War +63617,Christmas on Mars (2008),Sci-Fi +63629,Fanny (1961),Drama|Romance +63645,"Free Will, The (Freie Wille, Der) (2006)",Crime|Drama +63662,Where a Good Man Goes (Joi gin a long) (1999),Action|Drama|Thriller +63676,"Face of Another, The (Tanin no kao) (1966)",Drama|Sci-Fi +63688,"Gaucho, The (1927)",Adventure|Romance +63692,Don Q Son of Zorro (1925),Adventure|Romance +63698,Three Monkeys (Üç maymun) (2008),Drama +63758,Casanova '70 (1965),Comedy|Drama +63760,Bellissima (1951),Drama +63768,Tattooed Life (Irezumi ichidai) (1965),Crime|Drama +63772,Bullfighter and the Lady (1951),Action|Drama|Romance +63781,"Living Sea, The (1995)",Documentary|IMAX +63788,"Dirty Dozen: Next Mission, The (1985)",Action|War +63793,Wagon Master (1950),Western +63806,Ring of Darkness (2004),Horror|Thriller +63808,"Class, The (Entre les murs) (2008)",Drama +63810,When Willie Comes Marching Home (1950),Comedy|War +63826,Splinter (2008),Action|Horror|Thriller +63828,Confessions of a Superhero (2007),Documentary +63836,"Manson Family, The (2003)",Crime|Drama|Horror +63840,Kanak Attack (2000),Drama +63853,Australia (2008),Adventure|Drama|War|Western +63859,Bolt (2008),Action|Adventure|Animation|Children|Comedy +63862,Revenge of the Zombies (1943),Horror +63876,Milk (2008),Drama +63989,"Devil Doll, The (1936)",Horror|Sci-Fi +63992,Twilight (2008),Drama|Fantasy|Romance|Thriller +64010,"Children, The (2008)",Horror +64030,Transporter 3 (2008),Action|Adventure|Crime|Thriller +64032,Four Christmases (2008),Comedy +64034,"Boy in the Striped Pajamas, The (Boy in the Striped Pyjamas, The) (2008)",Drama|War +64037,Surveillance (2008),Crime|Mystery|Thriller +64099,Stuff and Dough (Marfa si banii) (2001),Drama +64114,Fireproof (2008),Drama|Romance +64116,Igor (2008),Animation|Comedy +64153,"Devil's Chair, The (2006)",Horror +64167,Dinotopia (2002),Adventure|Fantasy +64197,Hunger (2008),Drama +64229,Cadillac Records (2008),Drama|Musical +64231,Punisher: War Zone (2008),Action|Crime|Drama|Thriller +64234,"Guyver, The (1991)",Action|Comedy|Sci-Fi +64241,"Lonely Wife, The (Charulata) (1964)",Drama|Romance +64243,"Lady with the Dog, The (Dama s sobachkoy) (1960)",Drama|Romance +64245,"Bell Boy, The (1918)",Comedy +64249,Shrek the Halls (2007),Adventure|Animation|Comedy|Fantasy +64273,"Lovers, The (Les Amants) (1958)",Drama +64275,"Blue Light, The (Blaue Licht, Das) (1932)",Drama|Fantasy|Mystery +64278,"Pervert's Guide to Cinema, The (2006)",Documentary +64280,Hospital (1970),Documentary +64283,Women of the Night (Yoru no onnatachi) (1948),Drama +64285,Wallace and Gromit in 'A Matter of Loaf and Death' (2008),Animation|Comedy +64288,Ace of Hearts (2008),Children|Drama +64321,"Friend of Mine, A (Ein Freund von mir) (2006)",Comedy|Drama +64325,"Long Night, The (1947)",Crime|Drama|Film-Noir|Romance|Thriller +64327,Fools' Parade (1971),Comedy|Drama|Thriller +64338,Gypsy (1993),Comedy|Drama|Musical +64365,Malaya (1949),Adventure|Drama +64368,Ninja III: The Domination (1984),Action +64385,Body of War (2007),Documentary|War +64408,"Sun Shines Bright, The (1953)",Comedy|Drama +64410,Four Men and a Prayer (1938),Adventure|Mystery +64418,"Man Named Pearl, A (2006)",Documentary +64424,Dallas: War of the Ewings (1998),Drama +64427,Much Ado About Something (2001),Documentary +64497,"Day the Earth Stood Still, The (2008)",Drama|Sci-Fi|Thriller|IMAX +64499,Che: Part One (2008),Drama|War +64501,Che: Part Two (2008),Drama|War +64511,Dean Spanley (2008),Comedy|Drama +64517,I Am the Law (1938),Crime|Drama +64519,Boomerang (1947),Crime|Drama|Film-Noir +64522,Patterns (1956),Drama +64524,Nothing Like the Holidays (2008),Comedy|Drama|Romance +64548,"Climax, The (1944)",Horror|Musical +64550,"Strange Door, The (1951)",Horror +64552,Pandora's Box (Pandora'nin kutusu) (2008),Drama +64575,Doubt (2008),Drama|Mystery +64614,Gran Torino (2008),Crime|Drama +64620,Frost/Nixon (2008),Drama +64622,"Reader, The (2008)",Drama|Romance +64645,The Wrecking Crew (1968),Action|Adventure|Comedy|Crime|Drama|Thriller +64650,"Marriage Made in Heaven, A (Rab Ne Bana Di Jodi) (2008)",Comedy|Drama|Musical|Romance +64652,Delgo (2008),Adventure|Animation|Comedy|Fantasy|Romance +64658,"Chamber of Death (Chambre des morts, La) (2007)",Crime|Mystery|Thriller +64660,Waiter (Ober) (2006),Comedy +64695,Sword of the Stranger (Sutorejia: Mukô hadan) (2007),Action|Adventure|Animation +64701,I've Loved You So Long (Il y a longtemps que je t'aime) (2008),Drama|Mystery +64704,Jesus Is a Palestinian (Jezus is een Palestijn) (1999),Comedy +64716,Seven Pounds (2008),Drama +64750,Pin... (1988),Horror +64754,Love (2005),Crime|Drama|Thriller +64784,"Animal Kingdom, The (1932)",Drama|Romance +64839,"Wrestler, The (2008)",Drama +64845,"Memory Keeper's Daughter, The (2008)",Drama +64895,"Little Giant, The (1933)",Comedy|Crime +64897,Mr. Wu (1927),Drama +64918,Small Cuts (Petites coupures) (2003),Drama|Romance +64921,Arabian Nights (1942),Action|Adventure +64923,"Blackbird, The (1926)",Crime|Drama +64930,"More the Merrier, The (1943)",Comedy|Romance +64942,Tuya's Marriage (Tuya de hun shi) (2006),Drama|Romance +64944,Face of a Fugitive (1959),Western +64957,"Curious Case of Benjamin Button, The (2008)",Drama|Fantasy|Mystery|Romance +64969,Yes Man (2008),Comedy +64976,Hexed (1993),Comedy +64979,On the Rumba River (On the Rhumba River) (2007),Documentary|Musical +64983,Valkyrie (2008),Drama|Thriller|War +64986,Birds of America (2008),Comedy|Drama +64990,Pete Seeger: The Power of Song (2007),Documentary +64993,5 Centimeters per Second (Byôsoku 5 senchimêtoru) (2007),Animation|Drama|Romance +64997,War of the Worlds (2005),Action|Sci-Fi +65001,Constantine's Sword (2007),Documentary +65011,Zona Zamfirova (2002),Comedy|Drama +65025,Double Dynamite (1951),Comedy|Musical +65027,"Death Kiss, The (1933)",Comedy|Mystery +65033,Girls Rock! (2007),Documentary +65037,Ben X (2007),Drama +65051,American Loser (Trainwreck: My Life as an Idiot) (2007),Comedy|Drama +65063,"King of Ping Pong, The (Ping-pongkingen) (2008)",Drama +65078,Jane Austen in Manhattan (1980),Drama|Romance +65088,Bedtime Stories (2008),Adventure|Children|Comedy +65091,Manhattan Melodrama (1934),Crime|Drama|Romance +65111,Two Days (2003),Comedy|Drama|Thriller +65126,Choke (2008),Comedy|Drama +65130,Revolutionary Road (2008),Drama|Romance +65133,Blackadder Back & Forth (1999),Comedy +65142,Loft (2008),Crime|Drama|Mystery +65155,"Surfer, Dude (2008)",Comedy +65181,Nobel Son (2007),Comedy|Crime|Drama|Thriller +65188,Dear Zachary: A Letter to a Son About His Father (2008),Documentary +65193,Wild Child (2008),Drama|Romance +65204,Chandu the Magician (1932),Action|Adventure|Fantasy|Sci-Fi +65216,Defiance (2008),Drama|Thriller|War +65225,Zeitgeist: Addendum (2008),Documentary +65227,Dr. Jack (1922),Comedy +65230,Marley & Me (2008),Comedy|Drama +65235,"Grocer's Son, The (Fils de l'épicier, Le) (2007)",Drama|Romance +65238,Decoy (1946),Crime|Drama|Film-Noir +65243,Blackout (2008),Mystery|Thriller +65259,Involuntary (De ofrivilliga) (2008),Drama +65261,Ponyo (Gake no ue no Ponyo) (2008),Adventure|Animation|Children|Fantasy +65263,High and Dizzy (1920),Comedy +65267,Now or Never (1921),Comedy +65277,"Good Guys and the Bad Guys, The (1969)",Comedy|Western +65288,Six in Paris (Paris vu par...) (1965),Drama|Romance +65290,Shadow Company (2006),Documentary|War +65293,Satan Met a Lady (1936),Comedy|Drama|Mystery +65300,Jack Brooks: Monster Slayer (2007),Action|Comedy|Horror +65304,Ce que mes yeux ont vu (2007),Drama|Mystery|Thriller +65310,Poultrygeist: Night of the Chicken Dead (2006),Comedy|Horror|Musical +65315,Young Gods (Hymypoika) (2003),Drama +65350,"General Died at Dawn, The (1936)",Adventure|Crime|Thriller +65352,"Have Rocket, Will Travel (1959)",Comedy|Sci-Fi +65357,House of Sand (Casa de Areia) (2005),Drama +65359,Earthsea (Legend of Earthsea) (2004),Adventure|Drama|Fantasy +65370,Brotherhood of Death (1976),Action|Drama|War +65381,Man with the Gun (1955),Western +65400,American Ninja 4: The Annihilation (1990),Action +65418,Wendy and Lucy (2008),Drama +65435,Open Season 2 (2008),Adventure|Animation|Children|Comedy +65465,Last Chance Harvey (2008),Drama|Romance +65468,Dallas (1950),Western +65514,Ip Man (2008),Action|Drama|War +65518,"Dungeonmaster, The (1985)",Fantasy|Horror|Sci-Fi +65521,Howling V: The Rebirth (1989),Horror +65538,"Young Visiters, The (2003)",Comedy|Romance +65552,Replicant (2001),Action|Sci-Fi|Thriller +65556,"Duel at Silver Creek, The (1952)",Western +65558,"Recruiter, The (2008)",Documentary +65567,Passengers (2008),Drama|Mystery|Thriller +65577,"Tale of Despereaux, The (2008)",Adventure|Animation|Children|Comedy|Fantasy +65585,Bride Wars (2009),Comedy|Romance +65588,"Gamers, The: Dorkness Rising (2008)",Action|Adventure|Comedy|Fantasy +65596,Mesrine: Killer Instinct (L'instinct de mort) (2008),Action|Crime|Drama|Thriller +65601,My Bloody Valentine 3-D (2009),Horror|Thriller +65603,Blood and Bones (Chi to hone) (2004),Drama +65612,Castaway (1986),Adventure|Drama +65614,Island in the Sun (1957),Drama|Romance +65621,Liberty Kid (2007),Drama +65629,"Fûke, De (2000)",Drama|War +65631,Battle in Seattle (2007),Action|Drama +65633,Fuel (2008),Documentary +65642,"Timecrimes (Cronocrímenes, Los) (2007)",Sci-Fi|Thriller +65651,Fire and Ice (2008),Adventure|Fantasy +65660,"Secret of the Grain, The (La graine et le mulet) (2007)",Drama +65665,Hamlet (2000),Drama +65667,Punk's Not Dead (2007),Documentary +65669,"Streaks, The (Pregi) (2004)",Drama +65672,Grbavica: The Land of My Dreams (Grbavica) (2006),Drama +65682,Underworld: Rise of the Lycans (2009),Action|Fantasy|Horror|Thriller +65685,Inkheart (2008),Adventure|Fantasy +65696,Gun the Man Down (1956),Western +65698,Albuquerque (1948),Romance|Western +65702,"War Comes to America (Why We Fight, 7) (1945)",Documentary|War +65709,This Filthy World (2006),Comedy|Documentary +65729,Shoot on Sight (2007),Crime|Drama +65731,The Alphabet Killer (2008),Crime|Mystery|Thriller +65738,Revenge of the Nerds III: The Next Generation (1992),Comedy +65740,Revenge of the Nerds IV: Nerds in Love (1994),Comedy|Romance +65762,Soup to Nuts (1930),Comedy|Romance +65764,Chinese Coffee (2000),Drama +65770,Save Me (2007),Drama +65772,"Lazarus Project, The (2008)",Drama|Thriller +65780,"Man, The (1972)",Drama +65796,Galaxy Express 999 (Ginga tetsudô Three-Nine) (1979),Adventure|Animation|Fantasy|Sci-Fi +65802,Paul Blart: Mall Cop (2009),Action|Comedy|Crime +65810,Notorious (2009),Drama|Musical +65813,"Unborn, The (2009)",Horror|Mystery|Thriller +65817,Donkey Punch (2008),Horror|Thriller +65845,Make It Happen (2008),Drama +65866,Three Strangers (1946),Crime|Drama +65868,Repo! The Genetic Opera (2008),Fantasy|Horror|Musical +65878,Edge of Madness (2002),Drama +65882,"Uninvited, The (2009)",Drama|Horror|Mystery|Thriller +65894,Fear[s] of the Dark (Peur[s] du noir) (2007),Animation|Horror +65899,12:01 (1993),Comedy|Romance|Sci-Fi|Thriller +65907,Game Over (2005),Crime|Drama|Thriller +65909,Maria (2003),Drama +65930,"Big Stampede, The (1932)",Western +65932,Blue (1968),Romance|Western +65935,"Visitor, The (Muukalainen) (2008)",Drama|Mystery +65939,Kummeli Goldrush (Kummeli kultakuume) (1997),Comedy +65974,Shadow of the Holy Book (Pyhän kirjan varjo) (2007),Documentary +65982,Outlander (2008),Action|Adventure|Sci-Fi +65984,Belle of the Nineties (1934),Comedy|Western +65986,Branded (1950),Western +66006,Beachhead (1954),Drama|War +66008,"Signos del zodiaco, Los (1964)",Drama +66015,Passchendaele (2008),Action|Drama|Romance|War +66019,"Great Ecstasy of Woodcarver Steiner, The (Große Ekstase des Bildschnitzers Steiner, Die) (1974)",Documentary +66025,Go Go Tales (2007),Comedy|Drama +66036,Wrestling with Alligators (1998),Drama +66051,"Badlanders, The (1958)",Romance|Western +66053,Black Widow (1954),Drama|Mystery +66057,Dead Husbands (1998),Comedy|Drama|Romance +66059,Bad Luck Love (2000),Crime|Drama +66066,"Grudge 3, The (2009)",Horror +66068,Indictment: The McMartin Trial (1995),Drama|Thriller +66090,Eden Lake (2008),Horror|Thriller +66092,"Triumph of the Nerds, The: The Rise of Accidental Empires (1996)",Documentary +66097,Coraline (2009),Animation|Fantasy|Thriller +66105,"Psychomania (Death Wheelers, The) (1973)",Horror +66118,Point of Order (1964),Documentary +66130,Chocolate (2008),Action|Drama +66140,Blackout (2007),Horror|Thriller +66152,TerrorVision (1986),Comedy|Horror|Sci-Fi +66156,"Escapist, The (2008)",Thriller +66171,Push (2009),Sci-Fi|Thriller +66198,"International, The (2009)",Drama|Thriller +66200,Two Lovers (2008),Drama|Romance +66203,He's Just Not That Into You (2009),Comedy|Drama|Romance +66234,Jar City (Mýrin) (2006),Crime|Drama|Thriller +66246,Numbskull Emptybrook (Uuno Turhapuro) (1973),Comedy +66250,California (1946),Romance|Western +66252,Canyon Passage (1946),Action|Romance|Western +66268,"Con, The (1998)",Comedy|Crime +66279,Husbands (1970),Drama +66282,"Cimarron Kid, The (1952)",Western +66284,"Avenging Conscience, The (1914)",Drama|Horror +66289,Singapore Sling (Singapore sling: O anthropos pou agapise ena ptoma) (1990),Crime|Film-Noir|Horror|Romance|Thriller +66295,33 Scenes from Life (33 sceny z zycia) (2008),Drama +66304,Hotel for Dogs (2009),Adventure|Children|Comedy +66306,The Deadly Trackers (1973),Drama|Western +66310,Frontière(s) (2007),Drama|Horror|Thriller +66317,Comet in Moominland (1992),Adventure|Animation|Fantasy +66320,"11th Hour, The (2007)",Documentary +66323,Daddy (Tato) (1995),Drama +66330,Fireflies in the Garden (2008),Drama +66335,Afro Samurai: Resurrection (2009),Animation +66337,Café Lumière (2003),Drama +66339,Death by Hanging (Koshikei) (1968),Comedy|Crime +66344,"Last Movie, The (1971)",Drama +66352,Dry Season (Daratt) (2006),Drama +66365,Trancers (1985),Action|Sci-Fi +66369,"Man Who Quit Smoking, The (Mannen som slutade röka) (1972)",Comedy +66371,Departures (Okuribito) (2008),Drama +66385,Taking Chance (2009),Drama|War +66389,AmericanEast (2008),Drama +66427,My Name Is Bruce (2007),Comedy|Horror +66437,Man in the Chair (2007),Comedy|Drama +66440,Robinson in Space (1997),Documentary|Sci-Fi +66491,Kimberly (1999),Comedy|Romance +66503,Rally On! (Ralliraita) (2009),Comedy +66506,Ping Pong Playa (2007),Comedy +66509,Funny People (2009),Comedy|Drama +66511,Berlin Calling (2008),Comedy|Drama +66537,"Letter for the King, The (Brief voor de koning, De) (2008)",Adventure +66539,Firepower (1979),Action|Drama|Thriller +66544,Nuremberg (2000),Drama|War +66547,Bigger Than Life (1956),Drama|Mystery|Thriller +66549,Going to Kansas City (1998),Drama|Romance|Thriller +66553,Show Me (2004),Crime|Drama|Thriller +66579,"Lost, The (2009)",Thriller +66584,Pistol Whipped (2008),Action|Drama +66590,"Far Horizons, The (1955)",Western +66592,Container (2006),Drama|Horror +66596,Mystery Team (2009),Comedy|Crime|Mystery +66618,"World Without Thieves, A (Tian xia wu zei) (2004)",Action|Crime|Drama +66620,"Gunfight at Dodge City, The (1959)",Western +66622,His Private Secretary (1933),Comedy|Romance +66639,Street Fighter: The Legend of Chun-Li (2009),Action|Adventure|Sci-Fi|Thriller +66655,Tough Enough (Knallhart) (2006),Crime|Drama +66659,Tyler Perry's Madea Goes to Jail (2009),Comedy|Crime|Drama +66662,"Black Watch, The (1929)",Adventure|Drama +66665,Away We Go (2009),Comedy|Drama|Romance +66667,Hell to Eternity (1960),Drama|War +66686,"Unsuspected, The (1947)",Drama|Film-Noir|Thriller +66691,"Thick as Thieves (a.k.a. Code, The) (2009)",Crime +66701,Beautiful Ohio (2006),Comedy|Drama +66718,"Cry, The (Grido, Il) (1957)",Drama +66720,"Big Lift, The (1950)",Drama|War +66744,"Divo, Il (2008)",Drama +66758,Wings (Krylya) (1966),Drama +66762,Paris (2008),Comedy|Drama|Romance +66773,Adrift in Manhattan (2007),Drama +66783,Friday the 13th (2009),Horror +66785,"Good, the Bad, the Weird, The (Joheunnom nabbeunnom isanghannom) (2008)",Action|Adventure|Comedy|Western +66789,Screamers: The Hunting (2009),Sci-Fi|Thriller +66798,"Pink Panther 2, The (2009)",Adventure|Comedy|Mystery +66801,Crips and Bloods: Made in America (2008),Documentary +66808,Far Cry (2008),Action|Adventure|Drama +66813,"English Surgeon, The (2007)",Documentary +66815,"Hell of a Day, A (Reines d'un jour) (2001)",Comedy|Drama +66854,Shara (Sharasojyu) (2003),Drama +66857,Marius (1931),Comedy|Drama|Romance +66859,"Adventures of Food Boy, The (aka High School Superhero) (2008)",Comedy +66861,César (1936),Comedy|Drama|Romance +66866,They Wait (2007),Horror|Mystery|Thriller +66868,"Rebel, The (2006)",Action|Drama|Romance +66870,Everlasting Moments (Maria Larssons eviga ögonblick) (2008),Drama +66897,Expecting Love (Mala wielka milosc) (2008),Comedy|Romance +66915,Rock-A-Doodle (1991),Adventure|Animation|Children|Musical +66927,Tokyo.Sora (2002),Drama +66932,Dead Silent (1999),Thriller +66934,Dr. Horrible's Sing-Along Blog (2008),Comedy|Drama|Musical|Sci-Fi +66943,"Cottage, The (2008)",Comedy|Crime|Horror|Thriller +66947,Two Men in Manhattan (Deux hommes dans Manhattan) (1959),Crime|Drama|Thriller +66977,Fanny (1932),Comedy|Drama|Romance +66979,Out at the Wedding (2007),Comedy|Romance +66981,Hell Town (Born to the West) (1937),Romance|Western +66983,"Hasty Heart, The (1949)",Drama +67009,Frontrunners (2008),Documentary +67068,"Quick and the Dead, The (1987)",Western +67073,Day of the Dead (2008),Horror +67087,"I Love You, Man (2009)",Comedy +67096,"Big Steal, The (1949)",Adventure|Drama|Film-Noir|Thriller +67098,Billy Budd (1962),Adventure +67135,Night Has a Thousand Eyes (1948),Drama|Film-Noir +67138,Live Free or Die (2006),Comedy|Crime +67140,Blonde Venus (1932),Drama +67168,Dance of the Dead (2008),Adventure|Comedy|Horror +67186,"Haunting in Connecticut, The (2009)",Horror|Thriller +67193,Duplicity (2009),Crime|Romance|Thriller +67197,Knowing (2009),Action|Drama|Mystery|Sci-Fi|Thriller +67223,Sugar (2008),Drama +67233,Young Thugs: Nostalgia (Kishiwada shônen gurentai: Bôkyô) (1998),Drama +67247,Praying with Lior (2008),Documentary +67252,Ong-Bak 2: The Beginning (Ong Bak 2) (2008),Action +67255,"Girl with the Dragon Tattoo, The (Män som hatar kvinnor) (2009)",Crime|Drama|Mystery|Thriller +67267,Sunshine Cleaning (2008),Comedy|Drama +67298,Hangman's Knot (1952),Western +67300,Immortal Sergeant (1943),Drama|War +67314,Never Ever! (Nigdy w zyciu!) (2004),Comedy|Romance +67316,"Children of Leningradsky, The (2005)",Documentary +67354,Stacy (2001),Comedy|Horror +67356,Insanitarium (2008),Horror|Thriller +67359,Illegal (1955),Crime|Drama|Film-Noir +67361,Echelon Conspiracy (2009),Action|Mystery|Thriller +67363,Jasminum (2006),Comedy|Drama +67365,After Sex (2007),Comedy|Drama|Romance +67370,"Third Part of the Night, The (Trzecia czesc nocy) (1972)",Drama|Horror|War +67405,13B (2009),Horror|Mystery|Thriller +67408,Monsters vs. Aliens (2009),Animation|Sci-Fi|IMAX +67420,Boarding Gate (2007),Thriller +67422,California Dreamin' (Nesfarsit) (2007),Comedy|Drama|War +67424,Counter Investigation (Contre-enquête) (2007),Crime|Drama +67429,Sita Sings the Blues (2008),Animation|Musical +67457,Naked Fear (2007),Horror|Thriller +67459,Chaos (2005),Crime|Drama|Horror +67464,Three on a Match (1932),Crime|Drama|Romance +67501,Kogel mogel (1988),Comedy +67504,Land of Silence and Darkness (Land des Schweigens und der Dunkelheit) (1971),Documentary +67508,"Baader Meinhof Komplex, Der (2008)",Action|Crime|Drama|Thriller +67534,Big Stan (2007),Comedy +67536,Dating the Enemy (1996),Comedy|Romance +67603,Blue Steel (1934),Western +67607,We Live in Public (2009),Documentary +67620,Nothing But the Truth (2008),Drama|Thriller +67624,"Square, The (2008)",Thriller +67657,"Gray Man, The (2007)",Crime|Thriller +67665,Anvil! The Story of Anvil (2008),Documentary|Musical +67667,Border Incident (1949),Crime|Drama|Film-Noir +67675,Star of Midnight (1935),Comedy|Mystery|Romance +67695,Observe and Report (2009),Action|Comedy +67702,Private Lives (1931),Comedy|Drama +67704,Too Many Girls (1940),Comedy|Musical +67706,Union Station (1950),Drama|Film-Noir +67734,Adventureland (2009),Comedy|Drama +67744,With Fire and Sword (Ogniem i mieczem) (1999),Adventure|Crime|Drama|Romance|War +67748,Scenes of a Sexual Nature (2006),Comedy|Drama|Romance +67784,"Cake Eaters, The (2007)",Drama +67788,Confessions of a Shopaholic (2009),Comedy|Romance +67792,"Black Balloon, The (2008)",Drama +67799,The Butterfly Effect 3: Revelations (2009),Drama|Fantasy|Sci-Fi|Thriller +67801,Revanche (2008),Crime|Drama|Romance +67803,One Kill (2000),Crime|Drama +67809,Killer Force (1976),Action|Thriller +67839,"Lucky Ones, The (2008)",Comedy|Drama|War +67845,My Friend Henry (Ystäväni Henry) (2004),Children|Drama +67847,Cialo (2003),Comedy|Crime +67850,Fitna (2008),Documentary +67852,"Bar at the Victoria Station, A (Bar na Victorii) (2003)",Documentary +67865,Land of Happines (Onnen maa) (1993),Drama +67867,Dragonball Evolution (2009),Action|Adventure|Fantasy|Sci-Fi +67869,Flash Gordon (1936),Action|Adventure|Sci-Fi +67873,Your Life in 65 (Tu vida en 65') (2006),Comedy|Romance +67876,Kansas Raiders (1950),Action|Adventure|Western +67878,"Lonely Man, The (1957)",Western +67881,Dating Games People Play (2005),Comedy +67888,Man on the Flying Trapeze (1935),Comedy +67890,Porgy and Bess (1959),Drama|Musical|Romance +67892,Can-Can (1960),Comedy|Musical|Romance +67894,Pekka ja Pätkä lumimiehen jäljillä (1954),Comedy +67896,Law and Order (1953),Action|Romance|Western +67898,"Gravedancers, The (2006)",Horror|Thriller +67900,Broken (2006),Horror|Thriller +67907,Kiler (1997),Comedy|Crime +67923,"Fast & Furious (Fast and the Furious 4, The) (2009)",Action|Crime|Drama|Thriller +67925,City Girl (1930),Drama|Romance +67927,Hangover Square (1945),Crime|Drama|Horror|Thriller +67929,Sanshiro Sugata (Judo Saga) (Sugata Sanshirô) (1943),Action|Adventure|Drama +67931,Sanshiro Sugata Part Two (Judo Saga II) (Zoku Sugata Sanshirô) (1945),Action|Adventure +67949,"Exterminating Angels, The (anges exterminateurs, Les) (2006)",Drama|Fantasy|Romance +67957,Superstar: The Karen Carpenter Story (1988),Drama|Musical +67980,"Force of One, A (1979)",Action|Crime|Drama|Thriller +67983,Gardens of the Night (2008),Drama +67997,In the Loop (2009),Comedy +67999,Global Metal (2008),Documentary +68028,What Doesn't Kill You (2008),Crime|Drama +68033,Vigilante Force (1976),Action|Adventure|Crime|Drama|Thriller +68039,Life Is What You Make It (Linha de Passe) (2008),Drama +68044,Crime Wave (1954),Crime|Drama|Film-Noir +68067,Escape from Fort Bravo (1953),Western +68069,Ride Lonesome (1959),Western +68073,Pirate Radio (2009),Comedy|Drama +68099,Apollo 13: To the Edge and Back (1994),Documentary +68115,"Small Back Room, The (1949)",Romance|Thriller +68135,17 Again (2009),Comedy|Drama +68137,Nana (2005),Drama +68153,Double Trouble (1984),Action|Comedy +68157,Inglourious Basterds (2009),Action|Drama|War +68159,State of Play (2009),Crime|Drama|Thriller +68161,"Lawless Breed, The (1953)",Action|Romance|Western +68163,Lust for Gold (1949),Romance|Western +68168,"Strategy of the Snail, The (Estrategia del Caracol, La) (1993)",Comedy|Drama +68173,Strike (Stachka) (1925),Drama +68175,"Magic of Méliès, The (magie Méliès, La) (1997)",Documentary +68177,Lawless Range (1935),Western +68180,Bab'Aziz -The Prince Who Contemplated His Soul (2005),Drama +68194,"Damned United, The (2009)",Drama +68201,Hank and Mike (2008),Comedy +68205,Crank: High Voltage (2009),Action|Comedy|Crime +68214,"Garage, The (1920)",Comedy +68216,"Strong Man, The (1926)",Comedy +68222,"Final Inquiry, The (Inquiry, The) (inchiesta, L') (2006)",Adventure|Drama|Mystery +68226,Two Kilers (Kilerów 2-óch) (1999),Comedy|Crime +68233,"Man Behind the Gun, The (1953)",Western +68237,Moon (2009),Drama|Mystery|Sci-Fi|Thriller +68242,Matrimonial Comedy (Komedia malzenska) (1994),Comedy +68254,"Smart Set, The (1928)",Comedy|Drama +68259,Aamir (2008),Drama|Thriller +68263,Mammoth (Mammut) (2009),Drama +68265,"Days Between, The (In den Tag hinein) (2001)",Drama +68269,"Young Victoria, The (2009)",Drama|Romance +68271,Intentions of Murder (a.k.a. Murderous Instincts) (Akai satsui) (1964),Drama +68273,Amazing Journey: The Story of The Who (2007),Documentary +68288,"Informers, The (2008)",Crime|Drama|Thriller +68314,Antique (Sayangkoldong yangkwajajeom aentikeu) (2008),Comedy|Drama +68319,X-Men Origins: Wolverine (2009),Action|Sci-Fi|Thriller +68324,"Girlfriend Experience, The (2009)",Drama +68326,Turtles Are Surprisingly Fast Swimmers (Turtles Swim Faster Than Expected) (Kame wa igai to hayaku oyogu) (2005),Comedy +68329,"Desert Trail, The (1935)",Western +68337,Moving Midway (2007),Documentary +68339,American Swing (2008),Documentary +68347,Sin Nombre (2009),Crime|Drama|Thriller +68349,"Life and Times of Allen Ginsberg, The (1994)",Documentary +68358,Star Trek (2009),Action|Adventure|Sci-Fi|IMAX +68392,Happy Campers (2001),Comedy +68411,Black Magic (1944),Comedy|Crime|Drama|Horror|Mystery|Thriller +68442,Lymelife (2008),Comedy|Drama +68444,"Great Buck Howard, The (2008)",Comedy +68462,Euphoria (Eyforiya) (2006),Drama|Romance +68472,Cherry Blossoms (Kirschblüten - Hanami) (2008),Drama|Romance +68474,Riders of Destiny (1933),Romance|Western +68480,Flatfoot on the Nile (Piedone d'Egitto) (1980),Action|Comedy|Crime +68482,XIII: The Conspiracy (2008),Action|Crime|Mystery|Thriller +68486,Red Cliff Part II (Chi Bi Xia: Jue Zhan Tian Xia) (2009),Action|Drama|War +68489,Täynnä Tarmoa (2009),Documentary +68495,Love Sick (Legaturi bolnavicioase) (2006),Drama +68498,"Girl from Monaco, The (fille de Monaco, La) (2008)",Comedy|Drama +68511,Black Ice (Musta jää) (2007),Drama +68515,Man with an Apartment (Czlowiek z M-3) (1969),Comedy +68517,"I Hate Mondays, (Nie lubie poniedzialku) (1971)",Comedy +68519,S. Darko (S. Darko: A Donnie Darko Tale) (2009),Crime|Mystery|Sci-Fi|Thriller +68522,Earth (2007),Documentary +68524,Sagebrush Trail (1933),Western +68533,Within Limits (Liikkumavara) (2009),Documentary +68536,Stanley Kubrick: A Life in Pictures (2001),Documentary +68539,"Lady Takes a Chance, A (1943)",Comedy|Romance|Western +68541,"Emergency Escape, The (Wyjscie awaryjne) (1982)",Comedy +68544,"Stolen Collection, (Skradziona kolekcja) (1979)",Comedy +68548,Shuttle (2008),Crime|Drama|Horror|Thriller +68552,Crossing Over (2009),Drama +68554,Angels & Demons (2009),Crime|Drama|Mystery|Thriller +68572,"Kids in the Hall: Same Guys, New Dresses (2001)",Comedy|Documentary +68574,"Django the Bastard (Strangers Gundown, The) (Django il bastardo) (1969)",Action|Thriller|Western +68576,"Man from Monterey, The (1933)",Western +68590,Horrorvision (2001),Horror +68593,Daylight Robbery (2008),Crime|Drama|Thriller +68597,Scorpio (1973),Action|Drama|Thriller +68612,Outrage (2009),Documentary +68614,"Seduction of Joe Tynan, The (1979)",Drama +68645,Man in the Middle (1963),Drama|War +68647,More Dead Than Alive (1968),Romance|Western +68650,Powder Blue (2009),Drama +68653,"Devil Is a Woman, The (1935)",Comedy|Drama|Romance +68659,Fanboys (2009),Adventure|Comedy|Drama +68662,Folks! (1992),Comedy +68664,Breaking the Rules (1992),Comedy|Drama +68667,Live! (2007),Comedy|Drama +68674,"Merry Gentleman, The (2008)",Drama +68676,"Murder of Fred Hampton, The (1971)",Crime|Documentary +68685,Incendiary (2008),Drama|Mystery|Romance|Thriller +68690,Love Songs (Les chansons d'amour) (2007),Drama|Musical +68749,Management (2008),Comedy|Romance +68791,Terminator Salvation (2009),Action|Adventure|Sci-Fi|Thriller +68793,Night at the Museum: Battle of the Smithsonian (2009),Action|Comedy|IMAX +68831,Ghosts of Cité Soleil (2006),Action|Documentary|Drama|Romance|War +68833,How to Cook Your Life (2007),Documentary +68835,Were the World Mine (2008),Adventure|Fantasy|Musical|Romance +68838,Every Little Step (2008),Documentary +68848,"Brothers Bloom, The (2008)",Adventure|Comedy|Crime|Romance +68853,Man in the Saddle (1951),Western +68855,Montana (1950),Action|Adventure|Romance|Western +68858,Vincere (2009),Drama|Romance +68865,"Cure for Love, A (Lekarstwo na milosc) (1966)",Comedy|Crime|Romance +68868,Our Folks (Sami swoi) (1967),Comedy +68872,Paisan (Paisà) (1946),Drama|War +68874,"Jeanne Dielman, 23 Quai du Commerce, 1080 Bruxelles (1975)",Drama +68884,Shall We Kiss? (Un baiser s'il vous plait) (2007),Comedy|Romance +68886,I Do: How to Get Married and Stay Single (Prête-moi ta main) (2006),Comedy|Romance +68890,Hi Diddle Diddle (1943),Comedy +68892,Rhinoceros (1974),Comedy|Drama|Fantasy|Mystery|Romance +68897,"Man with Bogart's Face, The (1980)",Comedy +68899,"Monster, The (1925)",Comedy|Horror|Mystery|Sci-Fi +68901,Chop Shop (2007),Drama +68915,Caliber 9 (1972),Action|Crime|Thriller +68919,Suzanne's Career (La carrière de Suzanne) (1963),Romance +68921,Moontide (1942),Drama|Film-Noir +68932,"Soloist, The (2009)",Drama|Musical +68941,"Last House on the Left, The (2009)",Drama|Horror|Thriller +68943,Angel in Cracow (Aniol w Krakowie) (2002),Comedy|Drama +68952,Drag Me to Hell (2009),Comedy|Horror +68954,Up (2009),Adventure|Animation|Children|Drama +68956,Late Autumn (Akibiyori) (1960),Comedy|Drama +68959,Fullmetal Alchemist the Movie: Conqueror of Shamballa (Gekijô-ban hagane no renkinjutsushi: Shanbara wo yuku mono) (2005),Action|Adventure|Animation|Drama +68963,Easy Virtue (2008),Comedy|Romance +68965,Dance Flick (2009),Comedy|Musical +68967,"Summer Hours (Heure d'été, L') (2008)",Drama +68974,Show People (1928),Comedy|Romance +68976,Two English Girls (Les deux anglaises et le continent) (1971),Drama|Romance +69005,Female (1933),Comedy|Drama|Romance +69007,Firecreek (1968),Western +69027,OSS 117 - Lost in Rio (OSS 117: Rio ne répond plus) (2009),Adventure|Comedy +69039,"Flame of New Orleans, The (1941)",Comedy|Romance +69042,Flash Gordon's Trip to Mars (1938),Action|Sci-Fi +69061,Personal Effects (2009),Drama +69069,Fired Up (2009),Comedy +69072,The Winslow Boy (1948),Children|Crime|Drama +69075,Trojan War (1997),Comedy +69088,"War Game, The (1965)",Documentary|Drama|War +69095,Graduation (2007),Action|Adventure|Comedy|Crime|Drama +69118,In the Electric Mist (2009),Drama|Mystery +69122,"Hangover, The (2009)",Comedy|Crime +69131,Killshot (2008),Action|Crime|Drama|Thriller +69134,Antichrist (2009),Drama|Fantasy +69136,Don (1978),Action|Comedy|Crime|Drama|Musical|Thriller +69140,Sweeney Todd (2006),Crime|Drama|Horror|Thriller +69155,Pete Kelly's Blues (1955),Crime|Drama +69159,Jimmy and Judy (2006),Crime|Drama|Thriller +69169,"Song Is Born, A (1948)",Comedy|Musical +69187,Billu (2009),Comedy|Drama|Musical +69195,Many Rivers to Cross (1955),Comedy|Romance|Western +69199,Ricky Rapper (Risto Räppääjä) (2008),Comedy|Musical +69201,Zakochani (2000),Comedy|Romance +69203,Show (2003),Comedy|Crime|Drama +69217,"Man from Utah, The (1934)",Action|Adventure|Crime|Romance|Western +69219,"Wing and the Thigh, The (L'aile ou la cuisse) (1976)",Comedy +69222,Perched on a Tree (Sur un arbre perché) (1971),Comedy +69227,Ernest Rides Again (1993),Children|Comedy +69231,Snug as a Bug (U Pana Boga za piecem) (1998),Comedy|Drama +69233,Blind Husbands (1919),Drama|Romance +69241,Berlin Alexanderplatz (1980),Drama +69243,Before the Rains (2007),Drama|Romance|Thriller +69251,Special (2006),Drama|Fantasy +69253,New in Town (2009),Comedy|Romance +69255,The Merry Widow (2007),Comedy|Drama +69269,Salaam Namaste (2005),Comedy|Musical|Romance +69275,Dead Snow (Død snø) (2009),Action|Adventure|Comedy|Horror +69278,Land of the Lost (2009),Action|Adventure|Comedy|Sci-Fi +69280,"Clique, The (2008)",Comedy +69284,Fatso (2008),Comedy +69299,"Free Soul, A (1931)",Drama +69302,Momma's Man (2008),Drama +69304,Imagine That (2009),Comedy|Drama|Fantasy +69306,"Taking of Pelham 1 2 3, The (2009)",Crime|Drama|Thriller +69310,Hana and Alice (Hana to Arisu) (2004),Comedy|Drama +69324,Flame and Citron (Flammen & Citronen) (2008),Action|Drama|War +69332,Fade to Black (2006),Mystery|Thriller +69336,In Therapy (Divã) (2009),Comedy|Drama|Romance +69354,Went the Day Well? (1942),Thriller|War +69356,Zulu Dawn (1979),Action|Drama|Thriller|War +69358,American Violet (2008),Drama +69361,Suspect X (Yôgisha X no kenshin) (2008),Crime|Drama|Mystery +69370,Spiritual Kung Fu (Quan jing) (1978),Action +69372,Big Man Japan (Dai-Nihonjin) (2007),Comedy|Sci-Fi +69374,Wrestling Ernest Hemingway (1993),Drama|Romance +69381,"Hitman, The (1991)",Action|Crime|Thriller +69387,Goodbye Again (1961),Drama|Romance +69394,"Stoning of Soraya M., The (2008)",Crime|Drama +69406,"Proposal, The (2009)",Comedy|Romance +69419,"Crawling Hand, The (1963)",Horror|Sci-Fi +69421,Dillinger (1973),Action|Crime|Drama +69429,Home from the Hill (1960),Drama|Romance +69436,Year One (2009),Adventure|Comedy +69438,O'Horten (2007),Comedy|Drama +69442,Pekka ja Pätkä neekereinä (1960),Comedy +69444,5 Against the House (1955),Crime|Drama|Film-Noir +69446,3 on a Couch (Three on a Couch) (1966),Comedy|Romance +69448,Promise Me This (Zavet) (2007),Comedy +69453,"Land That Time Forgot, The (1975)",Adventure|Sci-Fi +69458,Tyson (2008),Documentary +69460,Primary (1960),Documentary +69466,"Alibi, The (Lies and Alibis) (2006)",Comedy|Drama|Romance +69469,Garfield's Pet Force (2009),Animation +69475,Dutchman (1967),Drama +69481,"Hurt Locker, The (2008)",Action|Drama|Thriller|War +69483,"Not on Your Life (Verdugo, El) (Executioner, The) (1963)",Comedy|Drama +69485,Air Hawks (1935),Action|Drama|Mystery|Romance|Sci-Fi +69487,Anna Lucasta (1958),Drama +69489,How I Unleashed World War II (Jak rozpetalem II wojne swiatowa) (1970),Comedy|War +69493,Tu£sday (2008),Action|Crime|Mystery|Thriller +69495,Breakfast with Scot (2007),Drama|Romance +69498,La Ronde (1950),Drama|Romance +69500,Brunet Will Call (Brunet wieczorowa pora) (1976),Comedy +69503,Going Berserk (1983),Comedy +69509,"Vampires, Les (1915)",Action|Adventure|Drama|Horror|Thriller +69516,"Limits of Control, The (2009)",Crime|Drama|Film-Noir +69518,Pornorama (2007),Comedy +69521,Heavy Metal in Baghdad (2007),Documentary|Musical|War +69524,Raiders of the Lost Ark: The Adaptation (1989),Action|Adventure|Thriller +69526,Transformers: Revenge of the Fallen (2009),Action|Adventure|Sci-Fi|IMAX +69529,Home (2009),Documentary +69542,K2 (1991),Adventure|Drama +69545,D@bbe (2006),Horror|Thriller +69552,Tulpan (2008),Comedy|Drama +69559,"File on Thelma Jordan, The (1950)",Crime|Drama|Film-Noir|Mystery +69569,Jet Pilot (1957),Drama +69574,Phoebe in Wonderland (2008),Drama|Fantasy +69604,Whatever Works (2009),Comedy|Romance +69606,Ghosts of Girlfriends Past (2009),Comedy|Fantasy|Romance +69609,Holly (2006),Drama +69611,Hustle (1975),Crime|Drama|Mystery|Thriller +69626,Houdini (1953),Drama +69640,Public Enemies (2009),Crime|Drama|Thriller +69644,Ice Age: Dawn of the Dinosaurs (2009),Action|Adventure|Animation|Children|Comedy|Romance +69652,120 (2008),Drama|War +69654,Prison Break: The Final Break (2009),Action|Drama|Thriller +69666,Samson and Delilah (2009),Drama +69670,Final Approach (1991),Sci-Fi|Thriller +69674,"Mob, The (1951)",Crime|Drama|Film-Noir +69677,Daisy Kenyon (1947),Drama|Romance +69685,Daria: Is It College Yet? (2002),Animation|Comedy +69687,"Irene, Go Home! (Irena do domu!) (1955)",Comedy +69689,Resan Till Melonia (1989),Adventure|Animation|Children|Fantasy +69699,Love Streams (1984),Comedy|Drama +69704,Night of the Living Dead 3D (2006),Adventure|Comedy|Fantasy|Horror +69706,Mumia Abu-Jamal: A Case for Reasonable Doubt? (1997),Documentary +69708,Off the Charts: The Song-Poem Story (2003),Documentary +69712,My Sister's Keeper (2009),Drama +69714,Kambakkht Ishq (Incredible Love) (2009),Action|Comedy|Musical +69729,I Have Found It (Kandukondain Kandukondain) (2000),Comedy|Drama|Musical|Romance +69744,Blonde Crazy (1931),Comedy|Crime|Drama|Romance +69746,Watchmen: Tales of the Black Freighter (2009),Action|Adventure|Animation|Horror +69753,Pittsburgh (1942),Drama +69755,"Lucky Texan, The (1934)",Romance|Western +69757,(500) Days of Summer (2009),Comedy|Drama|Romance +69761,Through the Olive Trees (Zire darakhatan zeyton) (1994),Drama +69766,News from a Personal War (Notícias de uma Guerra Particular) (1999),Documentary +69768,Magnificent Obsession (1935),Drama|Romance +69771,7th Heaven (Seventh Heaven) (1927),Drama|Romance +69773,Madame Bovary (1949),Drama|Romance +69784,Brüno (Bruno) (2009),Comedy +69786,"Boys: The Sherman Brothers' Story, The (2009)",Documentary +69792,Madigan (1968),Crime|Drama +69800,Toughguy (1995),Crime|Drama|Thriller +69805,"Librarian, The: The Curse of the Judas Chalice (2008)",Action|Adventure|Fantasy +69809,The Inhabited Island (2008),Fantasy|Sci-Fi +69818,Franklyn (2008),Drama|Fantasy|Romance|Thriller +69821,Men of War (1994),Action|Drama +69830,Iron Maiden: Flight 666 (2009),Documentary +69834,Agency (1980),Drama +69842,Good Dick (2008),Comedy|Drama|Romance +69844,Harry Potter and the Half-Blood Prince (2009),Adventure|Fantasy|Mystery|Romance|IMAX +69849,Roots (1977),Drama|War +69856,Mélo (1986),Drama|Romance +69860,Eichmann (2007),Drama|War +69864,Blue Blood (2006),Documentary +69873,"Corridors of Time: The Visitors II, The (Couloirs du temps: Les visiteurs 2, Les) (1998)",Children|Comedy|Fantasy|Sci-Fi +69878,Who Killed Nancy? (2009),Documentary +69904,Open Water 2: Adrift (2006),Drama|Thriller +69906,Possessed (2000),Drama|Horror +69908,"Group, The (1966)",Drama +69911,Senso (1954),Drama|Romance|War +69919,"Mark of Cain, The (2007)",Drama +69926,"Strawberry Blonde, The (1941)",Comedy|Romance +69928,"Muppet Musicians of Bremen, The (1972)",Children|Comedy|Musical +69931,"Brief Vacation, A (breve vacanza, Una) (1973)",Drama|Romance +69934,My Sassy Girl (2008),Comedy|Drama|Romance +69945,"Fast and the Furious, The (1955)",Crime|Mystery +69947,Game of Death II (a.k.a. Tower of Death) (Si wang ta) (1981),Action|Mystery +69949,Rosso (1985),Crime|Drama +69951,"Imaginarium of Doctor Parnassus, The (2009)",Drama|Fantasy +69953,9to5: Days in Porn (a.k.a. 9 to 5: Days in Porn) (2008),Documentary +69957,Sink or Swim (1990),Documentary +69964,"Giant of Marathon, The (Battaglia di Maratona, La) (1959)",Action|Drama|War +69971,Ludwig (1972),Drama +69979,Haaveiden kehä (2002),Drama +69981,Winter of Frozen Dreams (2009),Crime|Thriller +69986,"Cold Water (Eau Froide, L') (1994)",Drama +69988,Humpday (2009),Comedy +69995,Tokyo Sonata (2008),Drama +70008,Kill Your Darlings (2006),Comedy|Drama +70015,Polytechnique (2009),Crime|Drama +70032,Visioneers (2008),Comedy +70046,"Vault of Horror, The (1973)",Horror|Mystery +70048,"Dark Backward, The (1991)",Comedy +70050,Blue City (1986),Action|Crime|Drama +70088,Jonathan Livingston Seagull (1973),Drama +70093,Cheri (2009),Romance +70121,'Neath the Arizona Skies (1934),Western +70126,Pavement: Slow Century (2002),Documentary +70130,Loulou (1980),Drama|Romance +70133,"Answer Man, The (a.k.a. Arlen Faber) (2009)",Comedy|Romance +70146,Rage at Dawn (1955),Western +70148,Paradise Canyon (1935),Crime|Western +70155,Seven Years Bad Luck (1921),Comedy +70157,"Gang's All Here, The (1943)",Comedy|Musical|Romance +70159,Orphan (2009),Drama|Horror|Mystery|Thriller +70173,Afterburn (1992),Drama +70175,Fragments (2008),Crime|Drama +70181,Rainbow Valley (1935),Action|Romance|Western +70183,"Ugly Truth, The (2009)",Comedy|Drama|Romance +70186,Heimat - A Chronicle of Germany (Heimat - Eine deutsche Chronik) (1984),Drama +70188,Wild River (1960),Drama|Romance +70197,My First War (2008),Documentary +70201,High Hopes (1988),Comedy +70204,Tulsa (1949),Action|Drama|Romance +70206,"Collector, The (2009)",Crime|Horror|Thriller +70208,"Perfect Getaway, A (2009)",Horror|Thriller +70223,Fanfan la Tulipe (Fan-Fan the Tulip) (1952),Action|Adventure|Comedy|Romance|War +70227,Dark Ride (2006),Horror|Thriller +70229,House (2008),Drama|Horror|Thriller +70235,Dallas 362 (2003),Drama +70237,Moonshot (2009),Drama +70282,Aliens in the Attic (2009),Adventure|Children|Fantasy|Sci-Fi +70286,District 9 (2009),Mystery|Sci-Fi|Thriller +70293,Julie & Julia (2009),Comedy|Drama|Romance +70295,"Beaches of Agnes, The (Plages d'Agnès, Les) (2008)",Documentary +70301,Obsessed (2009),Crime|Drama|Thriller +70305,Race to Witch Mountain (2009),Adventure|Children|Fantasy|Sci-Fi|Thriller +70312,"Family Secret, A (Le secret de ma mère) (2006)",Comedy|Drama|Musical +70315,Friend Zone (Pagafantas) (2009),Comedy +70318,"Black Box, The (La boîte noire) (2005)",Mystery|Thriller +70331,My Stars (Mes stars et moi) (2008),Comedy +70334,Hannah Montana: The Movie (2009),Comedy|Drama|Musical|Romance +70336,G.I. Joe: The Rise of Cobra (2009),Action|Adventure|Sci-Fi|Thriller +70342,Séraphine (2008),Drama|War +70344,Cold Souls (2009),Comedy|Drama +70355,Daddy Nostalgia (Daddy Nostalgie) (1990),Drama +70361,12 Rounds (2009),Action|Thriller +70366,"Silent Night, Deadly Night Part 2 (1987)",Comedy|Horror +70370,The Boys from Fengkuei (1983),Drama +70372,The Sandwich Man (1983),Drama +70374,"Left-Hand Side of the Fridge, The (Moitié gauche du frigo, La) (2000)",Comedy +70377,Where Danger Lives (1950),Drama|Film-Noir|Romance|Thriller +70418,Introducing Dorothy Dandridge (1999),Drama|Musical|Romance +70421,A Summer at Grandpa's (1984),Drama +70423,"A Time to Live, a Time to Die (1985)",Drama +70425,"One and Only, The (Eneste ene, Den) (1999)",Comedy|Romance +70432,Fail Safe (2000),Drama|Thriller +70439,Four Last Songs (2007),Comedy|Drama +70451,Max Manus (2008),Action|Drama|War +70465,Jerusalema (Gangster's Paradise: Jerusalema) (2008),Action|Crime|Drama +70488,Wings of Hope (Julianes Sturz in den Dschungel) (2000),Adventure|Documentary +70490,"Trail Beyond, The (1934)",Action|Adventure|Western +70492,Winds of the Wasteland (1936),Western +70495,Kill Buljo: The Movie (2007),Action|Comedy +70497,Stone of Destiny (2008),Adventure|Comedy|Crime|Drama +70500,Okie Noodling (2001),Documentary +70507,Days of Darkness (2007),Comedy|Drama|Fantasy +70511,Randy Rides Alone (1934),Western +70513,West of the Divide (1934),Romance|Western +70517,Army Brats (Schatjes!) (1984),Children|Comedy +70531,"Star Packer, The (1934)",Action|Romance|Western +70533,Evangelion: 1.0 You Are (Not) Alone (Evangerion shin gekijôban: Jo) (2007),Action|Animation|Sci-Fi +70535,Love Hina Christmas Special: Silent Eve (Rabu Hina kurisumasu supesharu: Sairento ivu) (2000),Animation|Comedy|Romance +70537,Moliere (1978),Drama +70541,Floating Clouds (Ukigumo) (1955),Drama|Romance +70543,Japanese Girls at the Harbor (Minato no nihon musume) (1933),Drama +70545,"Deal, The (2008)",Comedy +70549,Doing Time on Maple Drive (1992),Drama +70565,"Goods: Live Hard, Sell Hard, The (2009)",Comedy +70567,Adam (2009),Drama|Romance +70571,Just Sex and Nothing Else (Csak szex és más semmi) (2005),Comedy +70587,Alien Trespass (2009),Comedy|Sci-Fi +70591,Ignition (2001),Action|Drama +70595,"Next Stop, Greenwich Village (1976)",Comedy +70597,Gigantic (2008),Comedy|Romance +70599,"Time Traveler's Wife, The (2009)",Drama|Romance|Sci-Fi +70607,Feast II: Sloppy Seconds (2008),Action|Comedy|Horror|Thriller +70609,Katze im Sack (2005),Drama +70611,Traffic Affairs (Mitfahrer) (2004),Drama +70629,Waterland (1992),Drama +70637,I Can't Think Straight (2007),Drama|Romance +70641,Miss March (2009),Comedy +70643,Bandslam (2009),Comedy|Drama|Musical +70649,A City of Sadness (1989),Drama +70656,Harvard Beats Yale 29-29 (2008),Documentary +70661,Tyler Perry's Meet the Browns (2008),Comedy|Drama|Romance +70663,"I Love You, Beth Cooper (2009)",Comedy|Romance +70670,Second Wind (Le deuxième souffle) (Second Breath) (1966),Crime|Drama|Film-Noir +70678,Huhwihaji Anha (No Regret) (2006),Drama +70682,Detroit Metal City (Detoroito Metaru Shiti) (2008),Comedy|Drama|Musical +70684,Daughter of the Nile (1987),Drama +70687,Paper Heart (2009),Comedy|Documentary|Drama|Romance +70689,Mystery Street (1950),Crime|Drama|Film-Noir +70695,"Haunting of Molly Hartley, The (2008)",Drama|Horror|Thriller +70697,G-Force (2009),Action|Adventure|Children|Fantasy +70703,Christopher Columbus: The Discovery (1992),Adventure +70706,Fighting (2009),Action|Drama +70708,Tetro (2009),Drama|Mystery +70712,Abandon Ship! (Seven Waves Away) (1957),Adventure|Drama +70722,"Good Men, Good Women (1995)",Drama|Romance +70724,Side Street (1949),Crime|Drama|Film-Noir +70726,Adoration (2008),Drama +70728,Bronson (2009),Action|Comedy|Drama|Thriller +70730,Feel the Noise (2007),Drama +70740,I Really Hate My Job (2007),Comedy|Drama +70742,"Matador, The (2008)",Documentary +70751,Little Richard (2000),Drama +70762,"Curiosity of Chance, The (2006)",Comedy +70769,If Only (2004),Drama|Fantasy|Romance|Thriller +70789,"Susana (Devil and the Flesh, The) (1951)",Drama|Romance +70792,Vengeance Valley (1951),Western +70795,Great Guy (1936),Crime|Drama|Mystery +70797,"Hurricane Express, The (1932)",Adventure|Crime|Drama +70800,Paris (2007),Documentary +70802,"Secret of Moonacre, The (2008)",Adventure|Fantasy|Romance +70804,Olympia Part One: Festival of the Nations (Olympia 1. Teil - Fest der Völker) (1938),Documentary +70806,Olympia Part Two: Festival of Beauty (Olympia 2. Teil - Fest der Schönheit) (1938),Documentary +70819,The Shadow of the Eagle (1932),Crime|Drama|Mystery|Thriller +70821,Cinematographer Style (2006),Documentary +70824,"Cell 2, The (2009)",Horror|Sci-Fi|Thriller +70828,Space Odyssey: Voyage to the Planets (2004),Documentary|Drama|Sci-Fi +70831,Krakatoa: The Last Days (2006),Documentary|Drama +70833,Queen Kelly (1929),Drama +70837,"Master Touch, The (Un uomo da rispettare) (1972)",Action|Crime|Drama|Thriller +70839,Midnight Bayou (2009),Drama|Mystery|Romance +70843,Northern Lights (2009),Drama|Mystery|Romance +70846,Lorna's Silence (Le silence de Lorna) (2008),Drama +70849,"Doulos, Le (1962)",Crime|Thriller +70862,It Might Get Loud (2008),Documentary +70869,High Noon (2009),Drama|Mystery|Romance +70871,"Day in the Country, A (Partie de campagne) (1936)",Drama|Romance +70877,Moonfleet (1955),Adventure|Drama +70880,7 Women (a.k.a. Seven Women) (1966),Drama +70889,"Pom Pom Girls, The (1976)",Comedy +70891,Tribute (2009),Drama|Mystery|Romance +70898,Post Grad (2009),Comedy +70912,Goodbye Solo (2008),Drama +70914,Long John Silver (1954),Action|Adventure +70920,Questo piccolo grande amore (2009),Comedy|Romance +70924,Voices (1979),Drama|Romance +70927,To Each His Own Cinema (Chacun son cinéma ou Ce petit coup au coeur quand la lumière s'éteint et que le film commence) (2007),Comedy|Drama +70932,My Life in Ruins (2009),Comedy +70948,London (1994),Documentary +70958,Paris 36 (Faubourg 36) (2008),Drama|Musical|Romance +70961,Murder Ahoy (1964),Comedy|Crime|Drama|Mystery +70964,Witch Hunt (2008),Documentary +70968,"Dog Year, A (2009)",Comedy|Drama +70970,Good (2008),Drama|War +70976,"Romance of Astrea and Celadon, The (Les amours d'Astrée et de Céladon) (2007)",Drama|Romance +70978,Boyfriends and Girlfriends (a.k.a. My Girlfriend's Boyfriend) (L'ami de mon amie) (1987),Comedy +70984,Taking Woodstock (2009),Comedy +70992,Cargo 200 (Gruz 200) (2007),Drama +70994,Halloween II (2009),Horror|Thriller +71007,Meteor (2009),Action|Drama|Sci-Fi +71011,Five Graves to Cairo (1943),Thriller|War +71014,"Dark Corner, The (1946)",Crime|Drama|Film-Noir +71027,"Good Marriage, A (Beau mariage, Le) (1982)",Comedy|Drama|Romance +71029,Videocracy (Videocracy - Basta apparire) (2009),Documentary +71033,"Secret in Their Eyes, The (El secreto de sus ojos) (2009)",Crime|Drama|Mystery|Romance|Thriller +71047,"Day After Trinity, The (1981)",Documentary +71057,9 (2009),Adventure|Animation|Sci-Fi +71065,Cosmonaut (Cosmonauta) (2009),Comedy +71067,Carry on Screaming! (1966),Comedy|Horror +71094,Randy and the Mob (2007),Comedy|Crime +71096,Detective (Détective) (1985),Crime|Drama +71102,"Three Musketeers, The (1933)",Action|Adventure|Thriller +71104,Seven Sinners (1940),Comedy|Drama|Romance +71106,Frequently Asked Questions About Time Travel (2009),Comedy|Sci-Fi +71108,"White Ribbon, The (Das weiße Band) (2009)",Drama|Mystery +71110,Kahlekuningas (2002),Comedy|Drama +71114,Brain Drain (2009),Comedy|Romance +71116,Living with Michael Jackson (2003),Documentary +71129,Green Lantern: First Flight (2009),Action|Adventure|Animation|Fantasy|Sci-Fi +71131,"Most Hated Family in America, The (2007)",Documentary +71133,Lies and Illusions (2009),Action|Comedy|Thriller +71135,Pandorum (2009),Horror|Sci-Fi|Thriller +71139,Paraíso Travel (2008),Adventure|Drama|Romance +71141,Airbag (1997),Action|Comedy|Crime|Thriller +71143,Peter Ibbetson (1935),Drama|Fantasy|Romance +71147,Death of a Cyclist (Muerte de un ciclista) (1955),Drama +71154,Flood (2007),Action|Drama|Thriller +71156,"Men Who Stare at Goats, The (2009)",Action|Comedy|Drama +71158,Immigrants (L.A. Dolce Vita) (2008),Animation +71164,Welcome Mr. Marshall (Bienvenido Mister Marshall) (1953),Comedy +71168,Beast from Haunted Cave (1959),Crime|Horror|Romance +71170,All's Well (1972),Drama +71178,Street of Shame (Akasen chitai) (1956),Drama +71180,Padre padrone (1977),Drama +71182,"Travelling Players, The (O thiasos) (1975)",Drama|War +71184,Valentino: The Last Emperor (2008),Documentary +71187,"Pilgrim, The (1923)",Comedy +71189,"Million, Le (Million, The) (1931)",Comedy|Musical +71199,Memories of Underdevelopment (Memorias del subdesarrollo) (1968),Drama +71205,Jennifer's Body (2009),Comedy|Horror|Sci-Fi|Thriller +71211,"Informant!, The (2009)",Comedy|Crime|Drama|Thriller +71216,"Great Gabbo, The (1929)",Drama|Musical|Romance +71237,Hillsborough (1996),Drama +71239,"Brøken, The (a.k.a. Broken, The) (2008)",Drama|Horror|Thriller +71241,"Tall Men, The (1955)",Action|Adventure|Drama|Romance|Western +71243,Tension (1949),Crime|Drama|Film-Noir|Romance +71246,Amreeka (2009),Drama +71248,Extract (2009),Comedy +71252,"Final Destination, The (Final Destination 4) (Final Destination in 3-D, The) (2009)",Horror|Thriller +71254,Gamer (2009),Action|Sci-Fi|Thriller +71264,Cloudy with a Chance of Meatballs (2009),Animation|Children|Fantasy|IMAX +71268,Tyler Perry's I Can Do Bad All by Myself (2009),Comedy|Drama +71276,"Silver Stallion (Silver Brumpy, The) (1993)",Drama +71278,Mr. Robinson Crusoe (1932),Adventure|Comedy +71280,"Wreck of the Mary Deare, The (1959)",Drama|Thriller +71282,"Food, Inc. (2008)",Documentary +71285,Beeswax (2009),Comedy|Drama +71300,"Conspiracy of Torture, The (Beatrice Cenci) (1969)",Drama +71302,Attack of the 50 Foot Woman (1958),Comedy|Sci-Fi +71304,Thirst (Bakjwi) (2009),Drama|Horror +71318,Terra (a.k.a. Battle for Terra) (2007),Adventure|Animation|Sci-Fi +71322,Forbidden Fruit (Kielletty hedelmä) (2009),Drama +71325,Love Happens (2009),Comedy|Drama|Romance +71327,Bright Star (2009),Drama|Romance +71341,Blood Creek (a.k.a. Town Creek) (2009),Horror +71343,Split Second (1953),Film-Noir|Thriller +71348,A Good Man (2009),Crime|Drama +71350,Scandal Sheet (1952),Crime|Drama|Film-Noir|Romance|Thriller +71355,February (Khumphaphan) (2003),Drama|Romance +71357,Turn Left at the End of the World (Sof Ha'Olam Smola) (2005),Drama|Romance +71361,I Want You (1998),Crime|Drama|Romance +71363,"Confiance règne, La (2004)",Comedy +71372,Hellraiser: Deader (2005),Horror +71374,Hellraiser: Hellworld (2005),Horror +71376,Chronicle of an Escape (Crónica de una fuga) (2006),Thriller +71379,Paranormal Activity (2009),Horror|Thriller +71382,Lake City (2008),Drama +71384,"Eagle Has Two Heads, The (L'aigle à deux têtes) (1948)",Drama +71386,"Forever, Darling (1956)",Comedy|Fantasy +71390,"Not Quite Hollywood: The Wild, Untold Story of Ozploitation! (2008)",Documentary +71402,3 Ring Circus (1954),Comedy +71404,"3 Worlds of Gulliver, The (1960)",Adventure|Fantasy +71409,"Execution of P, The (Kinatay) (2009)",Crime|Thriller +71413,Angel (1937),Comedy|Drama|Romance +71416,Hellzapoppin' (1941),Comedy|Musical +71418,Ballast (2008),Drama +71426,5 Dolls for an August Moon (5 bambole per la luna d'agosto) (1970),Horror|Mystery|Thriller +71429,World's Greatest Dad (2009),Comedy|Drama +71433,"Black God, White Devil (Deus e o Diabo na Terra do Sol) (1964)",Adventure|Crime|Drama|Western +71438,Still Walking (Aruitemo aruitemo) (2008),Drama +71442,Le Plaisir (1952),Comedy|Drama +71444,Thirst (Pyaasa) (1957),Drama|Musical|Romance +71446,"Muriel, or The Time of Return (Muriel ou Le temps d'un retour) (1963)",Drama +71448,Xala (1975),Comedy +71450,Capitalism: A Love Story (2009),Documentary +71453,"Blood of the Beasts (Sang des bêtes, Le) (1949)",Documentary|Drama +71458,The Five Man Army (1969),Western +71460,Wanted (2009),Action|Romance +71462,"Cove, The (2009)",Documentary +71464,"Serious Man, A (2009)",Comedy|Drama +71466,City Island (2009),Comedy|Drama +71472,"Cameraman's Revenge, The (Mest kinematograficheskogo operatora) (1912)",Animation|Comedy +71482,Yatterman (Yattâman) (2009),Action|Comedy|Fantasy +71484,Metropia (2009),Animation|Sci-Fi +71488,"Pit, the Pendulum and Hope, The (Kyvadlo, jáma a nadeje) (1983)",Horror|Thriller +71490,Grace (2009),Drama|Horror|Thriller +71494,"Haunted World of El Superbeasto, The (2009)",Action|Animation|Comedy|Horror|Thriller +71497,Story of a Prostitute (Shunpu den) (1965),Drama|War +71500,Trick 'r Treat (2007),Comedy|Horror|Thriller +71518,Whip It (2009),Comedy|Drama +71520,"Invention of Lying, The (2009)",Comedy +71522,Unmistaken Child (2008),Documentary +71525,A-Haunting We Will Go (1942),Comedy +71530,Surrogates (2009),Action|Sci-Fi|Thriller +71533,Next Day Air (2009),Action|Comedy|Crime +71535,Zombieland (2009),Action|Comedy|Horror +71537,Fame (2009),Comedy|Drama|Musical|Romance +71542,"September Issue, The (2009)",Documentary +71545,Paris Trout (1991),Drama +71550,Assassination of a High School President (2008),Comedy|Drama|Mystery +71558,Abbott and Costello in Hollywood (1945),Comedy +71560,Abbott and Costello in the Foreign Legion (1950),Adventure|Comedy +71571,Sorority Row (2009),Horror|Thriller +71573,Whiteout (2009),Action|Crime|Drama|Mystery|Thriller +71575,Rudo y Cursi (Rough and Vulgar) (2008),Comedy|Drama +71579,"Education, An (2009)",Drama|Romance +71591,Abbott and Costello Meet Captain Kidd (1952),Adventure|Comedy|Musical +71606,"Life is a Bed of Roses (Vie est un roman, La) (1983)",Fantasy|Musical +71619,Coco Before Chanel (Coco avant Chanel) (2009),Drama +71634,"Story of Louis Pasteur, The (1935)",Drama +71638,"Killing of John Lennon, The (2006)",Drama +71640,Burma VJ: Reporting from a Closed Country (Burma VJ: Reporter i et lukket land) (2008),Documentary +71650,Werner Herzog Eats His Shoe (1980),Documentary +71664,Abbott and Costello Meet the Keystone Kops (1955),Comedy +71668,Couples Retreat (2009),Comedy|Romance +71670,All About Steve (2009),Comedy +71675,Hiroshima (2009),Comedy +71677,Gigante (2009),Comedy|Drama +71685,"End of St. Petersburg, The (Konets Sankt-Peterburga) (1927)",Drama +71688,Jab We Met (2007),Comedy|Drama|Romance +71691,Fifty Dead Men Walking (2008),Action|Drama|Thriller +71693,Bay of Angels (La baie des anges) (1963),Drama|Romance +71695,"Docks of New York, The (1928)",Crime|Drama +71697,Our Daily Bread (1934),Drama|Romance +71700,Deadgirl (2008),Horror +71702,All About Lola (Ce que je sais de Lola) (Lo que sé de Lola) (2006),Romance +71705,"Merry Jail, The (Das fidele Gefängnis) (1917)",Comedy|Romance +71707,Love Hina Spring Special (2001),Animation|Comedy|Musical|Romance +71709,Yellow Earth (Huang tu di) (1984),Drama +71717,Cleopatra (1934),Drama|Romance|War +71719,"Divorce of Lady X, The (1938)",Comedy|Romance +71730,"Windmill Movie, The (2008)",Documentary +71732,I Sell the Dead (2008),Comedy|Horror +71736,Van Gogh (1991),Drama +71738,"Shanghai Gesture, The (1941)",Drama|Film-Noir +71740,"Tales of Hoffmann, The (1951)",Adventure|Fantasy|Musical|Romance +71743,"Wedding March, The (1928)",Drama|Romance +71745,Where the Wild Things Are (2009),Adventure|Children|Drama|Fantasy|IMAX +71748,Georg (2007),Drama|Musical +71750,Chelsea Girls (1966),Drama +71755,Earth Entranced (Terra em Transe) (1967),Drama +71760,India Song (1975),Drama|Fantasy|Romance +71762,Que Viva Mexico (¡Que Viva Mexico! - Da zdravstvuyet Meksika!) (1979),Documentary +71779,Aces High (1976),Action|Drama|War +71792,Shoulder Arms (1918),Comedy|War +71795,The Paris Express (1952),Crime|Drama +71804,Reckless (1984),Comedy|Drama|Romance +71806,Lost Angels (1989),Drama +71808,Black Eagle (1988),Action|Drama +71817,Beer Wars (2009),Documentary +71821,Shorts (2009),Children +71823,"New York, I Love You (2009)",Drama|Romance +71838,Law Abiding Citizen (2009),Drama|Thriller +71840,"Flame and the Arrow, The (1950)",Action|Adventure|Romance +71851,"I, Monster (1971)",Horror|Sci-Fi +71865,Rich in Love (1993),Drama +71867,"Misfortunates, The (De helaasheid der dingen) (2009)",Drama +71876,Amelia (2009),Drama +71878,"Stepfather, The (2009)",Horror|Thriller +71888,See You in the Morning (1989),Drama|Romance +71902,Spread (2009),Drama|Romance +71910,"Tournament, The (2009)",Action +71926,"Boys Are Back, The (2009)",Comedy|Drama +71928,Cairo Time (2009),Drama|Romance +71931,5th Day of Peace (Dio è con noi) (1969),Drama|War +71933,"7th Dawn, The (1964)",Adventure|Drama|War +71936,There's Always Tomorrow (1956),Drama +71938,"Round-Up, The (Szegénylegények) (1966)",Drama|War +71940,"Taking of Power by Louis XIV, The (Prise de pouvoir par Louis XIV, La) (1966)",Drama +71942,"Sound Barrier, The (1952)",Drama +71970,"Princess and the Pirate, The (1944)",Adventure|Comedy|Romance +71973,Outsiders (Ceddo) (1977),Drama +71976,"Tiger of Eschnapur, The (Tiger von Eschnapur, Der) (1959)",Adventure|Romance +71978,Mother (Mat) (1926),Drama +71980,Under the Roofs of Paris (Sous les toits de Paris) (1930),Comedy|Drama|Romance +71986,"Hour of the Furnaces, The (Hora de los hornos, La) (1968)",Documentary|War +71989,Before the Revolution (Prima della rivoluzione) (1964),Drama|Romance +71991,Afterschool (2008),Drama +71999,Aelita: The Queen of Mars (Aelita) (1924),Action|Adventure|Drama|Fantasy|Romance|Sci-Fi|Thriller +72001,"Extraordinary Adventures of Mr. West in the Land of the Bolsheviks, The (Neobychainye priklyucheniya mistera Vesta v strane bolshevikov) (1924)",Comedy +72011,Up in the Air (2009),Drama|Romance +72013,David Copperfield (2000),Drama +72016,EXPO: Magic of the White City (2005),Documentary +72018,H.H. Holmes: America's First Serial Killer (2004),Crime|Documentary +72022,"Cuenca Crime, The (Crimen de Cuenca, El) (1980)",Drama +72027,Korczak (1990),Drama|War +72030,You're Gonna Miss Me (2005),Documentary +72032,Forever (2006),Documentary +72035,Dimensions of Dialogue (Moznosti dialogu) (1982),Animation|Comedy|Fantasy +72037,Darkness/Light/Darkness (Tma/Svetlo/Tma) (1989),Animation|Comedy|Fantasy +72039,35 Shots of Rum (35 rhums) (2008),Drama +72041,Tormented (2009),Comedy|Horror +72043,Monsters vs Aliens: Mutant Pumpkins from Outer Space (2009),Animation|Comedy|Sci-Fi +72045,"Ali Zoua: Prince of the Streets (Ali Zaoua, prince de la rue) (2000)",Crime|Drama +72090,"13th Letter, The (1951)",Film-Noir +72092,23 Paces to Baker Street (1956),Mystery|Thriller +72094,"Maradona, the Hand of God (Maradona, la mano di Dio) (2007)",Drama +72096,"Collector, The (Komornik) (2005)",Drama +72102,Ryan (2004),Animation|Documentary|Drama|Fantasy +72104,Balance (1989),Animation|Drama|Mystery|Sci-Fi|Thriller +72113,Is Anybody There? (2008),Drama +72117,"Misérables, Les (1935)",Drama|Romance +72124,Vital Signs (1990),Drama +72129,Saw VI (2009),Crime|Horror|Mystery|Thriller +72131,Michael Jackson's This Is It (2009),Documentary|Musical|IMAX +72153,"Dangerous Woman, A (1993)",Drama|Romance +72156,Twilight of the Ice Nymphs (1997),Fantasy +72159,"Grave Decisions (Wer früher stirbt, ist länger tot) (2006)",Comedy|Drama +72161,99 River Street (1953),Action|Crime|Drama|Film-Noir +72163,40 Guns to Apache Pass (1967),Adventure|Romance|Western +72165,Cirque du Freak: The Vampire's Assistant (2009),Action|Adventure|Comedy|Fantasy|Horror|Thriller +72167,"Boondock Saints II: All Saints Day, The (2009)",Action|Crime|Drama|Thriller +72169,Good Hair (2009),Comedy|Documentary +72171,Black Dynamite (2009),Action|Comedy +72176,Big Fan (2009),Comedy|Crime|Drama +72178,Welcome to Dongmakgol (2005),Comedy|Drama|War +72204,Salvage (2006),Horror|Mystery|Thriller +72209,Astro Boy (2009),Action|Animation|Children|Sci-Fi +72212,100 Men and a Girl (One Hundred Men and a Girl) (1937),Comedy +72216,Fun is Beautiful (1980),Comedy +72224,Gentlemen Broncos (2009),Comedy +72226,Fantastic Mr. Fox (2009),Adventure|Animation|Children|Comedy|Crime +72228,Creation (2009),Drama +72235,Between the Devil and the Deep Blue Sea (1995),Drama +72249,Coco Chanel & Igor Stravinsky (2009),Drama|Romance +72258,Top Dog (1995),Action|Comedy|Crime|Thriller +72261,"Pebble and the Penguin, The (1995)",Animation|Musical +72263,MVP: Most Valuable Primate (2000),Comedy +72265,Not Easily Broken (2009),Drama|Romance +72267,Price of Glory (2000),Drama +72273,Plácido (1961),Comedy +72276,"Indian Tomb, The (Das indische Grabmal) (1959)",Adventure +72281,"Amour fou, L' (1969)",Drama +72283,Storm Over Asia (Potomok Chingis-Khana) (1928),Drama|War +72287,"Bridge, The (Most) (2003)",Drama +72290,Arsenal (1928),Drama|War +72292,Barren Lives (Vidas Secas) (1963),Drama +72294,"Christmas Carol, A (2009)",Animation|Children|Drama|Fantasy|IMAX +72298,"Lusty Men, The (1952)",Action|Drama|Western +72302,Outskirts (Okraina) (1933),Drama|War +72304,Fires Were Started (1943),Documentary|Drama +72310,"Chronicle of Anna Magdalena Bach, The (Chronik der Anna Magdalena Bach) (1968)",Drama +72315,Hell's Hinges (1916),Romance|Western +72321,Michael Jackson: Life of a Superstar (2009),Documentary +72325,Paper Flowers (Kaagaz Ke Phool) (1959),Musical|Romance +72327,Murder by Contract (1958),Crime|Drama|Film-Noir|Thriller +72330,"Private Lives of Pippa Lee, The (2009)",Drama +72332,"Introduction to Physics, An (2009)",Adventure|Comedy|Documentary|Fantasy +72334,Our Daily Bread (2005),Documentary +72336,"Doctor Takes a Wife, The (1940)",Comedy +72340,"Night to Remember, A (1942)",Comedy|Mystery +72342,Last Stop for Paul (2006),Comedy +72344,"Toll of the Sea, The (1922)",Drama|Romance +72356,Partly Cloudy (2009),Animation|Children|Comedy|Fantasy +72360,Rocks (Das Rad) (2003),Action|Animation|Fantasy +72363,"Chechahcos, The (1924)",Adventure|Drama +72369,Goemon (2009),Action|Drama +72378,2012 (2009),Action|Drama|Sci-Fi|Thriller +72380,"Box, The (2009)",Drama|Horror|Mystery|Sci-Fi|Thriller +72386,Broken Embraces (Los abrazos rotos) (2009),Drama|Romance|Thriller +72388,Sunday (1997),Drama|Romance +72391,"Through the Mist (Dédé, à travers les brumes) (2009)",Drama +72393,"Fourth Kind, The (2009)",Horror|Mystery|Sci-Fi|Thriller +72395,Precious (2009),Drama +72400,Undercover Man (1949),Crime|Drama|Film-Noir|Romance +72405,Bad Lieutenant: Port of Call New Orleans (2009),Crime|Drama +72407,"Twilight Saga: New Moon, The (2009)",Drama|Fantasy|Horror|Romance|Thriller +72479,"Messenger, The (2009)",Drama|Romance|War +72485,Lemon Tree (2008),Drama +72489,Ninja Assassin (2009),Action|Crime|Drama|Thriller +72491,"Police, Adjective (Politist, adj.) (2009)",Comedy|Crime|Drama +72512,Efectos secundarios (2006),Comedy +72514,Straight from the Barrio (Talento de barrio) (2008) ,Action|Crime|Drama|Musical +72516,"Plumm Summer, A (2007)",Adventure +72524,Wattstax (1973),Documentary|Musical +72552,Oxford Blues (1984),Comedy|Drama +72557,"Film with Me in It, A (2008)",Comedy|Thriller +72559,"Last Remake of Beau Geste, The (1977)",Adventure|Comedy +72571,Doomwatch (1972),Mystery|Sci-Fi|Thriller +72583,Brightness (Yeelen) (1987),Fantasy +72585,Carnival in Flanders (La kermesse héroïque) (1935),Comedy|Romance +72587,Pure One (Pakeezah) (1972),Drama|Musical|Romance +72589,Princess Yang Kwei Fei (Yôkihi) (1955),Drama|Romance +72591,"Patriot, The (1998)",Action|Thriller +72601,Teenage Mutant Ninja Turtles: Turtles Forever (2009),Action|Adventure|Animation|Comedy|Thriller +72603,Merry Madagascar (2009),Animation +72605,Brothers (2009),Drama|Thriller|War +72607,Portraits of Women (Naisenkuvia) (1970),Comedy|Drama +72609,Nine Ways to Approach Helsinki (Yhdeksän tapaa lähestyä Helsinkiä) (1982),Documentary +72612,"Fly, The (Légy, A) (1980)",Animation|Comedy +72618,Summer of the Monkeys (1998),Children|Drama +72621,"Man with No Shadow, The (Homme sans ombre, L') (2004)",Animation|Drama +72624,Garage (2007),Drama +72626,"Billy Blazes, Esq. (1919)",Comedy|Western +72628,Home Movie (2008),Horror|Thriller +72630,Sleep Dealer (2008),Sci-Fi +72632,Before I Self Destruct (2009),Drama +72637,Printed Rainbow (2006),Adventure|Animation|Fantasy +72641,"Blind Side, The (2009)",Drama +72643,Happiness (Schastye) (1934),Comedy|Drama +72645,"Tale of the Wind, A (Histoire de vent, Une) (1988)",Documentary +72647,Zorn's Lemma (1970),Drama +72649,"Ceremony, The (Gishiki) (1971)",Comedy|Drama +72651,"Italian Straw Hat, The (Un chapeau de paille d'Italie) (1928)",Comedy +72653,"Tom, Tom, the Piper's Son (1969)",Drama +72657,Hitler: A Film from Germany (Hitler - ein Film aus Deutschland) (1977),Drama|War +72672,Crows Zero II (Kurôzu Zero II) (2009),Action +72674,True Heart Susie (1919),Drama|Romance +72678,"Région centrale, La (1971)",Drama +72681,Anatahan (1953),Drama|War +72683,Limit (Limite) (1931),Drama +72692,Mickey's Once Upon a Christmas (1999),Animation|Comedy|Fantasy +72694,Shrink (2009),Drama +72696,Old Dogs (2009),Comedy +72701,Planet 51 (2009),Adventure|Animation|Children|Comedy|Sci-Fi +72703,Me and Orson Welles (2008),Drama +72712,Objectified (2009),Documentary +72718,Trucker (2008),Drama +72720,"Single Man, A (2009)",Drama +72726,Morphia (Morfiy) (2008),Drama +72731,"Lovely Bones, The (2009)",Crime|Drama|Fantasy|Horror|Thriller +72733,Invictus (2009),Drama +72735,Carla's Song (1996),Drama|Romance|War +72737,"Princess and the Frog, The (2009)",Animation|Children|Fantasy|Musical|Romance +72741,Everybody's Fine (2009),Drama +72751,Two Rode Together (1961),Western +72762,Armored (2009),Action|Drama|Thriller +72764,Transylmania (2009),Comedy|Horror +72777,Invaders from Mars (1986),Horror|Sci-Fi +72781,Red Chapel (Røde kapel) (2006),Comedy|Documentary +72784,Link (1986),Horror|Thriller +72787,Doghouse (2009),Comedy|Horror +72822,Munyurangabo (2007),Drama +72833,"Art of Travel, The (2008)",Adventure|Drama|Romance +72840,Cover-Up (1991),Action|Thriller +72842,Pentathlon (1994),Action|Drama|Thriller +72844,People on Sunday (Menschen am Sonntag) (1930),Documentary|Drama|Romance +72846,Days and Nights in the Forest (Aranyer Din Ratri) (1970),Drama +72848,"Sign of Leo, The (Signe du lion, Le) (1959)",Drama +72850,My Friend Ivan Lapshin (Moy drug Ivan Lapshin) (1984),Drama +72852,Judex (1963),Action|Crime|Drama +72854,"Saga of Gosta Berling, The (Gösta Berlings saga) (1924)",Drama|Romance +72856,Moonrise (1948),Drama|Film-Noir +72866,Sandra of a Thousand Delights (Vaghe stelle dell'Orsa...) (1965),Drama +72870,"Taira Clan Saga, The (Shin heike monogatari) (1955)",Drama +72872,"Hidden Assassin (Shooter, The) (1995)",Action|Crime|Drama +72874,"Peacekeeper, The (1997)",Action +72876,Comradeship (Kameradschaft) (1931),Drama +72878,Utamaro and His Five Women (Utamaro o meguru gonin no onna) (1946),Drama +72880,Flaming Creatures (1963),Drama +72883,Yesterday Girl (Abschied von gestern - Anita G.) (1966),Comedy|Romance +72885,"Childhood of Maxim Gorky, The (Detstvo Gorkogo) (1938)",Drama +72897,White Shadows in the South Seas (1928),Drama|Romance +72899,Blissfully Yours (Sud sanaeha) (2002),Drama|Romance +72901,"Art of Vision, The (1965)",Drama +72904,Colossal Youth (Juventude Em Marcha) (2006),Drama +72906,Not Reconciled (Nicht versöhnt oder Es hilft nur Gewalt wo Gewalt herrscht) (1965),Drama +72908,Devil in the Flesh (1947),Drama|Romance +72910,King of the Children (Hai zi wang) (1987),Drama +72913,Disco and Atomic War (Disko ja tuumasõda) (2009),Documentary +72915,Duo (Pas de deux) (1968),Animation|Musical +72919,Did You Hear About the Morgans? (2009),Comedy|Crime|Drama|Romance +72921,Snow White (1916),Fantasy|Romance +72923,Shaolin Kung Fu Mystagogue (Da mo mi zong) (1976),Action|Drama +72927,Donkey Xote (2007),Animation +72931,Tango (1981),Animation +72934,My Sister Eileen (1942),Comedy +72936,She Wouldn't Say Yes (1945),Comedy|Romance +72947,Make the Yuletide Gay (2009),Comedy|Romance +72949,Faith Like Potatoes (2006),Drama +72953,Less of Sugar (Cheeni Kum) (2007),Comedy|Drama|Musical|Romance +72958,Mum & Dad (2008),Horror +72960,Nasty Old People (2009),Drama +72980,Veronika Decides to Die (2009),Drama|Romance +72995,"Offence, The (1972)",Crime|Drama|Mystery +72998,Avatar (2009),Action|Adventure|Sci-Fi|IMAX +73000,Nine (2009),Drama|Musical|Romance +73010,You Are So Beautiful (Je vous trouve très beau) (2005),Comedy|Romance +73015,It's Complicated (2009),Comedy|Romance +73017,Sherlock Holmes (2009),Action|Crime|Mystery|Thriller +73023,Crazy Heart (2009),Drama|Romance +73027,"Last Station, The (2009)",Drama +73031,Too Shy to Try (Je suis timide... mais je me soigne) (1978),Comedy +73042,Alvin and the Chipmunks: The Squeakquel (2009),Animation|Children|Comedy|Musical +73049,Uncertainty (2009),Action|Crime|Drama|Fantasy|Romance +73051,Guru (2007),Drama|Romance +73060,Film Geek (2005),Comedy +73064,In a Year with 13 Moons (In einem Jahr mit 13 Monden) (1978),Drama +73086,"Fallen Sparrow, The (1943)",Film-Noir|Thriller +73089,Beyond a Reasonable Doubt (2009),Drama|Mystery +73099,"Profit, The (2001)",Drama +73101,Looking for Eric (2009),Comedy|Drama|Fantasy +73109,Trapeze (1956),Drama +73111,There Was a Crooked Man... (1970),Comedy|Western +73114,"Pursuit of the Graf Spee (Battle of the River Plate, The) (1956)",Action|Adventure|Drama|War +73117,Marriage Italian Style (Matrimonio all'italiana) (1964),Comedy|Drama|Romance +73125,Lady Windermere's Fan (1925),Comedy|Drama +73133,Not Your Typical Bigfoot Movie (2008),Documentary +73135,"Good Life, The (2007)",Comedy|Drama +73137,Variety (Varieté) (1925),Crime|Drama|Romance +73139,Out 1: Spectre (1974),Comedy|Drama|Thriller +73141,Moana (1926),Documentary +73143,"Diary for Timothy, A (1945)",Documentary +73145,Under the Bridges (Unter den Brücken) (1945),Comedy|Drama|Romance +73152,By the Bluest of Seas (U samogo sinego morya) (1936),Drama +73154,"H.M. Pulham, Esq. (1941)",Drama|Romance +73158,Clash of the Wolves (1925),Adventure|Romance|Western +73160,Sorority Babes in the Slimeball Bowl-O-Rama (1988),Comedy|Horror +73165,Pronto (1997),Comedy|Crime|Thriller +73168,Carriers (2009),Drama|Horror|Thriller +73170,Aaja Nachle (2007),Comedy|Musical|Romance +73183,"Friends of Eddie Coyle, The (1973)",Crime|Drama|Thriller +73185,Rocker (1972),Action|Crime|Drama +73188,Mayerling (1936),Drama +73194,"Whole Night, A (Toute une nuit) (1982)",Drama +73196,My Love Has Been Burning (Waga koi wa moenu) (1949),Drama +73198,"Song of Ceylon, The (1934)",Documentary +73200,Maskerade (1934),Comedy|Romance +73202,"Too Early, Too Late (Trop tôt, trop tard) (1982)",Drama +73204,On His Own (a.k.a. My Apprenticeship) (V lyudyakh) (1939),Drama +73208,Piter FM (2006),Comedy|Drama|Romance +73211,Pontypool (2008),Horror|Thriller +73226,Big Pun: The Legacy (2008),Documentary +73232,"Girl in the Park, The (2007)",Drama +73240,"Matriarch, The (Lieksa!) (2007)",Comedy|Drama|Romance +73245,Land of the Pharaohs (1955),Drama +73256,Heart of Midnight (1988),Drama|Horror|Thriller +73261,"Sun Also Rises, The (1957)",Drama +73266,Youth in Revolt (2009),Comedy|Drama|Romance +73268,Daybreakers (2010),Action|Drama|Horror|Thriller +73270,"Milk of Sorrow, The (Teta asustada, La) (2009)",Drama +73276,"Age of Stupid, The (2009)",Documentary +73290,Hachiko: A Dog's Story (a.k.a. Hachi: A Dog's Tale) (2009),Drama +73317,"Prophet, the Gold and the Transylvanians, The (Profetul, aurul si Ardelenii) (1979)",Comedy|Western +73319,Leap Year (2010),Comedy|Romance +73321,"Book of Eli, The (2010)",Action|Adventure|Drama +73323,"Girl Who Kicked the Hornet's Nest, The (Luftslottet som sprängdes) (2009)",Action|Crime|Mystery +73328,Tickets (2005),Comedy|Drama +73330,Hickey and Boggs (1972),Crime|Drama|Film-Noir|Thriller +73334,Mister Johnson (1990),Drama +73339,"Innocent, The (Innocente, L') (1976)",Drama|Romance +73344,"Prophet, A (Un Prophète) (2009)",Crime|Drama +73355,"Man, Woman and Beast (L'uomo la donna e la bestia) (1977)",Drama|Fantasy +73359,"Guide for the Married Man, A (1967)",Comedy +73370,"Thorn Birds, The (1983)",Drama|Romance +73386,Staten Island (2009),Crime|Drama +73390,Princess (2006),Action|Animation|Drama +73392,Collapse (2009),Documentary +73399,Last Resort (2000),Drama|Romance +73401,"Yacoubian Building, The (Omaret yakobean) (2006)",Drama +73413,My One and Only (2009),Comedy|Drama +73416,"Birdsong (Cant dels ocells, El) (2008)",Drama +73447,I Live My Life (1935),Comedy|Romance +73449,"V.I.P.s, The (1963)",Drama +73453,One Shot (2004),Documentary +73457,Flavor of Green Tea Over Rice (Ochazuke no aji) (1952),Drama +73460,Louie Bluie (1985),Documentary +73462,Ernest Goes to School (1994),Children|Comedy|Drama +73469,Mr. Warmth: The Don Rickles Project (2007),Documentary +73472,Shooting War (2000),Documentary +73475,Semper Fi (2001),Action|Drama +73480,Gretchen the Greenhorn (1916),Crime|Drama|Romance +73488,Blood: The Last Vampire (2009),Action|Horror|Thriller +73492,Liverpool (2008),Drama +73494,Theodora Goes Wild (1936),Comedy|Romance +73499,MacGyver: Lost Treasure of Atlantis (1994),Action|Adventure +73501,Pekka ja Pätkä Suezilla (1958),Comedy +73504,"Duchess of Langeais, The (a.k.a. Don't Touch the Axe) (Ne touchez pas la hache) (2007)",Drama|Romance +73511,Horsemen (2009),Crime|Drama|Horror|Mystery|Thriller +73513,"Swades: We, the People (Our Country) (2004)",Drama +73515,Bart Got a Room (2008),Comedy|Romance +73523,Jerichow (2008),Drama +73526,"Matter of Dignity, A (To teleftaio psema) (1957)",Drama +73529,God’s Wedding (As Bodas de Deus) (1999),Comedy +73531,"Last of England, The (1988)",Drama +73533,Harmful Insect (Gaichu) (2001),Drama +73569,Project A 2 ('A' gai wak juk jap) (1987),Action|Comedy|Crime +73572,"My Son, My Son, What Have Ye Done (2009)",Drama|Horror +73581,Fire-Eater (Tulennielijä) (1998),Drama +73587,Soul Kitchen (2009),Comedy +73590,Quiet Chaos (Caos calmo) (2008),Drama|Romance +73608,Heat (1972),Comedy|Drama|Romance +73614,"Devil, Probably, The (Diable probablement, Le) (1977)",Crime|Drama +73630,One Way Passage (1932),Drama|Romance +73641,"House on Sorority Row, The (1983)",Horror|Mystery|Thriller +73664,Dragon Hunters (Chasseurs de dragons) (2008),Adventure|Animation|Children +73668,"27 Club, The (2008)",Drama +73678,Year of the Comet (1992),Action|Adventure|Comedy|Romance +73681,"Concert, Le (2009)",Comedy|Drama +73708,Macheads (2009),Documentary +73710,Welcome to Macintosh (2008),Documentary +73713,"Butterfly, The (Papillon, Le) (2002)",Comedy|Drama +73718,"Other Man, The (2008)",Drama +73730,Wrong Turn at Tahoe (2009),Action|Crime|Thriller +73741,Ninja (2009),Action|Crime|Drama|Thriller +73744,If You Love (Jos rakastat) (2010),Drama|Musical|Romance +73754,"Queen and I, The (Drottningen och jag) (2008)",Documentary +73772,"Long Day Closes, The (1992)",Drama +73774,The Baker's Wife (1938),Comedy|Drama +73776,Fighter (2007),Action|Drama|Romance +73778,"Story of a Cheat, The (Roman d'un tricheur, Le) (1936)",Comedy +73780,"Golden Thread, The (Subarnarekha) (1965)",Drama +73782,Love Story (1943),Drama +73790,Kid Galahad (1937),Crime|Drama|Romance +73804,Asterix at the Olympic Games (Astérix aux jeux olympiques) (2008),Adventure|Children|Comedy|Fantasy +73808,"Chaser, The (Chugyeogja) (2008)",Crime|Drama|Thriller +73813,Flock of Dodos: The Evolution-Intelligent Design Circus (2006),Documentary +73818,My Sex Life... or How I Got Into an Argument (Comment je me suis disputé... (ma vie sexuelle)) (1996),Comedy|Drama|Romance +73820,Hannah Takes the Stairs (2007),Drama +73822,Meantime (1984),Comedy|Drama +73824,Abigail's Party (1977),Drama +73826,Violence at Noon (Hakuchu no torima) (1966),Drama +73829,Mega Shark vs. Giant Octopus (2009),Action|Horror +73831,Mall Girls (Galerianki) (2009),Drama +73851,Dr. Otto and the Riddle of the Gloom Beam (1986),Comedy +73854,"Rudolph, the Red-Nosed Reindeer (1964)",Adventure|Animation|Children|Fantasy|Musical +73858,"Dennis the Menace Christmas, A (2007)",Comedy +73860,Nowhere Boy (2009),Drama +73862,Note by Note: The Making of Steinway L1037 (2007),Documentary +73868,Garbage Warrior (2007),Documentary +73870,"Thaw, The (2009)",Horror|Sci-Fi|Thriller +73872,"Living Room of the Nation, The (Kansakunnan olohuone) (2009)",Documentary +73879,Motocrossed (2001),Action|Children|Comedy|Romance +73881,3 Idiots (2009),Comedy|Drama|Romance +73885,Troubled Water (DeUsynlige) (2008),Drama|Thriller +73900,Hum Tum (2004),Comedy|Drama|Musical|Romance +73912,Genevieve (1953),Comedy +73914,Sometimes a Great Notion (1970),Action|Adventure|Drama +73919,The Escape (1978),Comedy +73929,Legion (2010),Action|Fantasy|Horror|Thriller +73954,Air Force (1943),Action|Drama|War +73967,Coquette (1929),Drama +73978,Unconquered (1947),Adventure|Drama|Romance|Western +73981,Man Hunt (1941),Crime|Drama|Thriller +73983,"Maid, The (Nana, La) (2009)",Drama +73987,"Oil, the Baby and the Transylvanians, The (Pruncul, petrolul si Ardelenii) (1981)",Comedy|Western +73989,Defenseless (1991),Thriller +74014,Silent Wedding (Nunta Muta) (2008),Comedy|Drama +74017,"Fine Mess, A (1986)",Comedy +74056,Thomas Pynchon: A Journey into the Mind of P. (2001),Documentary +74061,Rahtree: Flower of the Night (Buppha Rahtree) (2003),Comedy|Drama|Horror|Thriller +74064,Beautiful (2009),Drama|Thriller +74089,Peter Pan (1960),Children|Fantasy|Musical +74095,Wicked City (Yôjû toshi) (1987),Animation|Fantasy|Horror|Sci-Fi +74097,Cabiria (1914),Adventure|Drama|War +74099,Virginia City (1940),Action|Drama|Romance|Western +74107,Together Again (1944),Comedy +74109,If You Could Only Cook (1935),Comedy|Romance +74111,Arn: The Kingdom at Road's End (Arn: Riket vid vägens slut) (2008),Action|Adventure|Drama|Romance|War +74113,Japan's Longest Day (Nihon no ichiban nagai hi) (1967),Drama|War +74115,Dante's Inferno Animated (2010),Action|Animation|Fantasy +74127,Shriek of the Mutilated (1974),Horror +74129,Four Eyed Monsters (2005),Comedy|Drama|Fantasy|Romance +74131,Extraordinary Measures (2010),Drama +74135,Backwood Philosopher (Havukka-ahon ajattelija) (2009),Comedy|Drama +74137,Too Many Husbands (1940),Comedy|Romance +74139,"Red Baron, The (Der rote Baron) (2008)",Action|Drama|Romance|War +74141,"Holy Innocents, The (Santos inocentes, Los) (1984)",Drama +74144,Crime and Punishment (1935),Drama +74148,More Than a Game (2008),Documentary +74150,Falling Up (2009),Comedy|Drama|Romance +74152,Zach Galifianakis: Live at the Purple Onion (2006),Comedy|Documentary +74154,When in Rome (2010),Comedy|Romance +74156,Edge of Darkness (2010),Drama|Thriller +74159,Ethan Mao (2004),Drama|Thriller +74161,Charlie Chan in Shanghai (1935),Comedy|Crime|Mystery|Thriller +74164,"Hands of Orlac, The (Orlacs Hände) (1924)",Crime|Horror +74204,Mad Detective (Sun taam) (2007),Action|Crime|Thriller +74226,"Dream of Light (a.k.a. Quince Tree Sun, The) (Sol del membrillo, El) (1992)",Documentary|Drama +74228,Triangle (2009),Drama|Horror|Mystery|Thriller +74230,"Perfect Circle, The (Savrseni krug) (1997)",Drama|War +74255,Rampage (1987),Thriller +74257,"Ambulance, The (1990)",Thriller +74261,Cimarron (1960),Drama|Western +74263,Dangerous (1935),Drama +74266,I Never Sang for My Father (1970),Drama +74271,Space Pirate Captain Harlock: Arcadia of My Youth (Waga seishun no Arcadia) (1982),Action|Adventure|Animation|Drama|Sci-Fi +74275,I Love You Phillip Morris (2009),Comedy|Drama|Romance +74284,Nobody (2009),Comedy +74287,"Donner Party, The (2009)",Drama|Western +74297,Electric Shadows (Meng ying tong nian) (2004),Drama +74300,Mistress (1992),Comedy +74302,Extreme Justice (1993),Action|Thriller +74306,"Sun, The (Solntse) (2005)",Drama +74310,Vivacious Lady (1938),Comedy|Romance +74317,Escape from Suburbia: Beyond the American Dream (2007),Documentary +74327,"First Day of the Rest of Your Life, The (Le premier jour du reste de ta vie) (2008)",Comedy|Drama +74330,Wide Open Spaces (2009),Animation|Comedy +74332,Me and Him (Ich und Er) (1988),Comedy +74337,Desirée (1954),Drama|Romance +74339,Thank God It's Friday (1978),Comedy|Musical +74342,"Captain Newman, M.D. (1963)",Comedy|Drama|War +74355,Serious Moonlight (2009),Comedy|Crime|Drama|Romance +74370,"House of the Devil, The (2009)",Horror|Thriller +74382,Black Legion (1937),Crime|Drama +74404,"Hero: Love Story of a Spy, The (2003)",Action|Adventure|Drama|Musical|Romance|Thriller|War +74406,Lucky: No Time For Love (2005),Action|Adventure|Drama|Musical|Romance|Thriller|War +74416,Fish Tank (2009),Drama +74426,Mohabbatein (2000),Drama|Musical|Romance +74428,Absurdistan (2008),Comedy|Romance +74431,Takva: A Man's Fear of God (2006),Drama +74434,"Wounds, The (Rane) (1998)",Comedy|Crime|Drama|War +74436,Body Bags (1993),Comedy|Horror|Sci-Fi|Thriller +74438,"Legend of the Red Dragon (a.k.a. New Legend of Shaolin, The) (Hong Xi Guan: Zhi Shao Lin wu zu) (1994)",Action|Adventure|Comedy|Drama|Romance +74446,"Hound of the Baskervilles, The (2000)",Crime|Mystery +74448,"Royal Scandal, The (2001)",Crime|Mystery +74450,Valentine's Day (2010),Comedy|Romance +74452,"Wolfman, The (2010)",Horror|Thriller +74456,Babysitter Wanted (2008),Horror|Thriller +74458,Shutter Island (2010),Drama|Mystery|Thriller +74473,"Case of the Whitechapel Vampire, The (2002)",Crime|Mystery +74475,"Headless Woman, The (Mujer sin cabeza, La) (2008)",Drama|Mystery|Thriller +74478,Yellow (1998),Comedy|Drama +74480,"Other End of the Line, The (2008)",Comedy|Romance +74484,Bitch Slap (2009),Action|Comedy|Crime|Thriller +74486,$9.99 (2008),Animation +74488,Ondine (2009),Drama|Fantasy|Romance +74493,"Steam Experiment, The (2009)",Drama|Thriller +74504,Letters to Father Jacob (Postia pappi Jaakobille) (2009),Drama +74508,Persuasion (2007),Drama|Romance +74510,"Girl Who Played with Fire, The (Flickan som lekte med elden) (2009)",Action|Crime|Drama|Mystery|Thriller +74512,Steal This Film (2006),Documentary +74530,Percy Jackson & the Olympians: The Lightning Thief (2010),Adventure|Fantasy +74532,Cop Out (2010),Action|Comedy|Crime +74538,Mademoiselle (1966),Drama +74541,Trailer Park Boys: Countdown to Liquor Day (2009),Comedy|Crime +74545,"Ghost Writer, The (2010)",Drama|Mystery|Thriller +74547,Darling Lili (1970),Drama|War +74553,"Secret of Kells, The (2009)",Animation|Fantasy +74573,"Vicious Kind, The (2009)",Comedy|Drama +74575,"Secret of Santa Vittoria, The (1969)",Comedy|Drama|War +74580,"Spy Next Door, The (2010)",Action|Children|Comedy +74582,I Hope They Serve Beer in Hell (2009),Comedy +74588,Caged (1950),Crime|Drama +74590,"House on 92nd Street, The (1945)",Drama|Film-Noir +74595,Blood Done Sign My Name (2010),Drama +74613,"Therese Raquin (a.k.a. Adultress, The) (1953)",Crime|Drama|Romance +74619,Mysterious Island (2005),Action|Adventure|Fantasy|Sci-Fi +74621,Dare (2009),Drama +74624,Agora (2009),Adventure|Drama|Romance +74630,Tom Thumb (1958),Children|Fantasy|Musical +74641,Singh Is Kinng (2008),Action|Comedy|Crime|Romance +74647,Motherhood (2009),Comedy +74649,Shades of Ray (2008),Comedy|Drama|Romance +74653,Shinjuku Incident (San suk si gin) (2009),Crime|Drama|Thriller +74668,District 13: Ultimatum (Banlieue 13 - Ultimatum) (2009),Action|Sci-Fi +74675,Pudana Last of the Line (Sukunsa viimeinen) (2010),Drama +74677,"Yes Men Fix the World, The (2009)",Documentary +74679,In the Shadow of Doubt (Epäilyksen varjossa) (2010),Documentary +74681,Pekka ja Pätkä puistotäteinä (1955),Comedy +74683,Mike Bassett: England Manager (2001),Comedy +74685,"Crazies, The (2010)",Action|Drama|Horror|Sci-Fi|Thriller +74688,Dear John (2010),Drama|Romance|War +74696,Last Train Home (2009),Documentary|Drama +74698,Tooth Fairy (2010),Comedy|Fantasy +74701,Of Time and the City (2008),Documentary +74706,"Commune, La (Paris, 1871) (2000)",Drama|War +74727,Gentlemen of Fortune (Dzhentlmeny udachi) (1972),Comedy|Crime|Drama|Mystery +74731,Eden Log (2007),Horror|Mystery|Sci-Fi|Thriller +74733,"Trap, The (Klopka) (2007)",Crime|Drama|Thriller +74738,Isolation (2005),Horror|Thriller +74740,Fermat's Room (La habitación de Fermat) (2007),Mystery|Thriller +74748,Under the Bombs (2007),Drama|War +74750,[REC]² (2009),Horror|Thriller +74754,"Room, The (2003)",Comedy|Drama|Romance +74787,My Name is Khan (2010),Drama|Romance +74789,Alice in Wonderland (2010),Adventure|Fantasy|IMAX +74791,"Town Called Panic, A (Panique au village) (2009)",Animation +74795,Green Zone (2010),Action|Drama|Thriller|War +74799,"Call of the Wild, The (1935)",Action|Adventure|Drama|Romance|Western +74818,44 Inch Chest (2009),Crime|Drama +74820,"Fall of the Roman Empire, The (1964)",Drama +74827,Ajami (2009),Crime|Drama +74851,From Paris with Love (2010),Action|Crime +74857,Strategic Air Command (1955),Action|Drama +74859,The Boy Friend (1971),Comedy|Musical|Romance +74864,Road Trip: Beer Pong (2009),Comedy +74868,Dorian Gray (2009),Drama|Horror|Sci-Fi +74870,That Sinking Feeling (1980),Comedy +74886,Taras Bulba (1962),Action|Adventure|Drama|Romance|War +74916,Greenberg (2010),Comedy|Drama +74937,Two-Minute Warning (1976),Drama|Thriller +74944,Brooklyn's Finest (2010),Crime|Drama|Thriller +74946,She's Out of My League (2010),Comedy +74948,Harry Brown (2009),Crime|Drama|Thriller +74967,"Mysteries of Pittsburgh, The (2008)",Adventure|Comedy|Drama +75335,Never Forever (2007),Drama|Romance +75341,Remember Me (2010),Drama|Romance +75345,Failan (2001),Drama|Romance +75349,Teenage Caveman (2002),Horror|Sci-Fi|Thriller +75351,"Night Stalker, The (1972)",Horror|Thriller +75362,Skeleton Crew (2009),Horror +75367,"Cool World, The (1964)",Crime|Drama +75370,Posse (1993),Western +75386,Vinyan (2008),Drama|Horror|Thriller +75389,"Burrowers, The (2008)",Horror|Thriller|Western +75392,MR 73 (a.k.a. The Last Deadly Mission) (2008),Crime|Drama|Thriller +75395,Frozen (2010),Drama|Horror|Thriller +75397,Torrid Zone (1940),Action|Adventure|Comedy +75402,Rosvo Roope (1949),Drama|Romance +75404,ZMD: Zombies of Mass Destruction (2009),Comedy|Horror +75406,"Carter, The (2009)",Documentary +75414,Blade of the Ripper (1971),Drama|Horror|Mystery|Romance|Thriller +75423,"Devil's Eye, The (Djävulens öga) (1960)",Comedy|Drama|Fantasy +75425,Survival of the Dead (2009),Horror +75428,"Way You Wanted Me, The (Sellaisena kuin sinä minut halusit) (1944)",Drama|Romance +75434,"Wrestler, The (Painija) (1985)",Comedy|Drama|Fantasy +75436,"Skin, Skin (Käpy selän alla) (1966)",Drama +75443,Invisible Stripes (1939),Crime|Drama +75446,Little Ashes (2008),Drama +75803,Our Family Wedding (2010),Comedy +75805,"Bounty Hunter, The (2010)",Action|Comedy|Romance +75808,Dead Man Running (2009),Action|Crime|Drama|Thriller +75813,Leaves of Grass (2009),Comedy|Crime|Drama|Thriller +75816,Women in Trouble (2009),Comedy +75820,I Was A Communist for the FBI (1951),Drama|Film-Noir|Thriller +75823,Combat Shock (1986),Drama|Horror|War +75825,"Card Player, The (Il cartaio) (2004)",Crime|Horror|Mystery|Thriller +75831,"Hollywood Revue of 1929, The (1929)",Musical +75927,Haunted Echoes (2008),Thriller +75929,Possession (2009),Drama|Horror|Mystery|Romance|Thriller +75938,Deadly Prey (1987),Action|Adventure|War +75940,"Seventh Veil, The (1945)",Drama +75947,Mondo Cane (1962),Documentary +75950,"Egyptian, The (1954)",Drama +75962,"Egg and I, The (1947)",Comedy|Romance +75977,Brass Monkey (1948),Comedy|Crime|Drama|Mystery +75979,"Frightened City, The (1961)",Crime|Drama|Film-Noir +75981,"Who Are you Polly Maggoo (Qui êtes-vous, Polly Maggoo?) (1966)",Comedy +75983,North Face (Nordwand) (2008),Adventure|Drama +75985,Repo Men (2010),Action|Sci-Fi|Thriller +75990,"Apprenticeship of Duddy Kravitz, The (1974)",Comedy|Drama +75992,"Brothers Karamazov, The (1958)",Drama +75994,"Buccaneer, The (1958)",Adventure|Drama|Romance|War +76022,Restless Blood (Levoton veri) (1946),Drama|Romance|Thriller +76030,Case 39 (2009),Horror|Thriller +76049,Guest of Cindy Sherman (2008),Documentary +76051,Delhi-6 (2009),Comedy|Crime|Drama +76054,Oceans (Océans) (2009),Documentary|Drama +76056,New York (2009),Crime|Drama|Thriller +76060,"Slammin' Salmon, The (2009)",Comedy +76063,Your Vice is a Locked Room and Only I Have the Key (1972),Horror|Mystery|Thriller +76066,Cookers (2001),Drama|Horror|Thriller +76077,Hot Tub Time Machine (2010),Comedy|Sci-Fi +76079,Chloe (2009),Drama|Thriller +76082,Blackwoods (2002),Drama|Thriller +76085,Trash (1970),Drama +76087,Zift (2008),Crime|Drama|Mystery +76089,Flesh and the Devil (1926),Drama|Romance +76091,Mother (Madeo) (2009),Crime|Drama|Mystery|Thriller +76093,How to Train Your Dragon (2010),Adventure|Animation|Children|Fantasy|IMAX +76108,Tom and Jerry: The Movie (1992),Animation|Children|Comedy +76111,About Elly (Darbareye Elly) (2009),Drama|Mystery +76117,"King and the Clown, The (Wang-ui namja) (2005)",Drama|Thriller +76119,Extreme Movie (2008),Comedy +76127,"You're a Good Man, Charlie Brown (1985)",Animation|Comedy|Musical +76130,Universal Soldier: Regeneration (2009),Action|Drama|Sci-Fi|Thriller +76132,B.N.B. (Bunty Aur Babli) (2005),Adventure|Comedy|Crime +76134,"Sherlock Holmes in Pearl of Death (Pearl of Death, The) (1944)",Crime|Horror|Mystery|Thriller +76137,Lumiere and Company (Lumière et compagnie) (1995),Documentary +76143,"Bone Man, The (Der Knochenmann) (2009)",Crime|Thriller +76145,Scar (2007),Crime|Horror|Thriller +76147,I Hate Valentine's Day (2009),Comedy|Romance +76149,Ollin oppivuodet (1920),Drama +76151,Zizek! (2005),Documentary +76156,Yuki & Nina (2009),Drama +76158,Air Doll (Kûki ningyô) (2009),Drama +76160,It Happened at the Inn (Goupi mains rouges) (1943),Drama|Film-Noir +76163,Main Street (Calle Mayor) (1956),Drama +76169,"Come Sweet Death (Komm, süsser Tod) (2000)",Comedy|Mystery|Thriller +76171,India (Indien) (1993),Comedy|Drama +76173,Micmacs (Micmacs à tire-larigot) (2009),Comedy|Crime +76175,Clash of the Titans (2010),Action|Adventure|Drama|Fantasy +76185,Miss Météo (2005),Comedy|Drama +76187,White Mane (Crin blanc: Le cheval sauvage) (1953),Drama +76208,"Cremator, The (Spalovac mrtvol) (1969)",Comedy|Drama|Horror|Thriller +76210,Defendor (2009),Comedy|Crime|Drama +76217,Bass Ackwards (2010),Drama +76238,One 2 Ka 4 (2001),Action|Comedy|Drama +76241,Shakthi: The Power (2002),Action|Drama +76244,Glorious 39 (2009),Drama|Romance|Thriller|War +76251,Kick-Ass (2010),Action|Comedy +76255,Varg Veum - Bitter Flowers (Varg Veum - Bitre Blomster) (2007),Crime|Drama|Thriller +76258,Varg Veum - Fallen Angels (Varg Veum - Falne Engler) (2008),Crime|Drama|Thriller +76269,Chalte Chalte (2003),Drama +76272,Five Minutes of Heaven (2009),Crime|Drama|Thriller +76277,"Hanging Tree, The (1959)",Drama|Romance|Western +76279,Cain and Mabel (1936),Comedy|Musical|Romance +76288,Swastika (1973),Documentary +76291,Karan Arjun (1995),Drama +76293,Date Night (2010),Action|Comedy|Romance +76298,The Pit and the Pendulum (1991),Horror +76303,Mark of the Devil (Hexen bis aufs Blut gequält) (1970),Drama|Horror +76312,"Brink's Job, The (1978)",Comedy|Crime|Drama +76317,After.Life (2009),Drama|Horror|Thriller +76533,Dear Me (2008),Comedy|Romance +76680,Camille (2007),Comedy|Drama|Romance +76692,"Virgin Queen, The (1955)",Drama|Romance +76695,"Sheepman, The (1958)",Comedy|Western +76699,Sex Positive (2008),Documentary +76709,Spider-Man: The Ultimate Villain Showdown (2002),Animation +76714,Five Star Final (1931),Drama +76716,Downloading Nancy (2008),Drama|Thriller +76720,Movie Crazy (1932),Comedy|Romance +76722,"Oklahoma Kid, The (1939)",Western +76729,Don McKay (2009),Drama|Mystery|Thriller +76731,Taqwacore: The Birth of Punk Islam (2009),Documentary +76736,Grim Reaper (2007),Horror +76738,Steam of Life (Miesten vuoro) (2010),Documentary +76743,Mortadelo & Filemon: The Big Adventure (La gran aventura de Mortadelo y Filemón) (2003),Action|Adventure|Comedy +76747,Angel (2007),Drama|Romance +76751,American Drug War: The Last White Hope (2007),Crime|Documentary +76753,"Final, The (2010)",Drama|Horror|Thriller +76758,Tillie's Punctured Romance (1914),Comedy +76763,"Runaways, The (2010)",Drama|Musical +76770,Steal This Film II (2007),Documentary +76772,Carne (1991),Drama|Thriller +76776,Pigsty (Porcile) (1969),Drama|Mystery +76778,Rembrandt's J'accuse (2008),Documentary|Mystery +76808,"Way I Spent the End of the World, The (Cum mi-am petrecut sfarsitul lumii) (2006)",Drama +76811,It! The Terror from Beyond Space (1958),Horror|Sci-Fi|Thriller +76814,Deep in the Woods (Promenons-nous dans les bois) (2000),Horror|Thriller +76816,Daisy (2006),Drama|Romance +76818,Cape No. 7 (Hái-kak chhit-ho) (2008),Comedy|Drama|Romance +76823,"Men Who Tread on the Tiger's Tail, The (Tora no o wo fumu otokotachi) (1945)",Adventure|Drama|Thriller +76827,Trench Road (Juoksuhaudantie) (2004),Comedy|Drama +76832,"Black Waters of Echo's Pond, The (2009)",Fantasy|Horror|Thriller +76836,"Most Beautiful, The (Ichiban utsukushiku) (1944)",Drama +76860,Razorback (1984),Horror|Thriller +76862,"Education of Charlie Banks, The (2007)",Drama +76864,Cooking with Stella (2009),Drama +76866,Until the Light Takes Us (2008),Documentary +76873,Angel of Death (2009),Action|Crime|Thriller +77141,"Farewell to Arms, A (1957)",Drama|Romance|War +77143,Caesar and Cleopatra (1945),Comedy|Drama|War +77146,Reclaim Your Brain (Free Rainer) (2007),Comedy|Crime|Drama|Romance +77149,When Dinosaurs Ruled the Earth (1970),Adventure|Fantasy|Romance|Sci-Fi +77154,Waking Sleeping Beauty (2009),Animation|Documentary +77156,Affinity (2008),Drama|Romance +77162,"Roman Spring of Mrs. Stone, The (1961)",Drama|Romance +77177,Wild China (2008),Documentary +77181,"Ascent of Money, The (2008)",Documentary +77184,Hot Millions (1968),Comedy|Crime +77189,Desperate Journey (1942),Drama|War +77191,Death at a Funeral (2010),Comedy +77201,Valhalla Rising (2009),Action|Drama|War +77204,Sahara (1983),Adventure|Drama|Romance +77206,Diary of a Wimpy Kid (2010),Children|Comedy +77208,Skin (2008),Drama|Mystery +77210,Hum Tumhare Hain Sanam (2002),Comedy|Drama|Romance +77212,Out of the Fog (1941),Crime|Drama|Film-Noir +77217,"Tender Trap, The (1955)",Comedy|Musical +77223,"Caddy, The (1953)",Comedy|Musical +77229,Hotel Reserve (1944),Thriller +77233,"Union: The Business Behind Getting High, The (2007)",Comedy|Documentary +77238,Decision Before Dawn (1951),Drama|War +77240,I Am Love (Io sono l'amore) (2009),Drama|Romance +77259,Circle of Eight (2009),Horror|Mystery +77264,Ballet Shoes (2007),Children|Drama +77266,Disgrace (2008),Drama +77291,Aria (1987),Comedy|Drama +77293,"Silent Partner, The (1978)",Crime|Drama|Thriller +77296,Normal Adolescent Behavior (2007),Drama|Romance +77298,Hell (L'enfer) (2005),Drama +77307,Dogtooth (Kynodontas) (2009),Drama +77312,"Genova (Summer in Genoa, A) (2008)",Drama|Romance +77316,City of Life and Death (Nanjing! Nanjing!) (2009),Drama|War +77318,Scarecrows (1988),Horror +77326,"Beast, The (La bête) (1975)",Drama|Fantasy|Horror|Mystery|Romance +77328,Red Riding: 1974 (2009),Crime|Drama|Mystery|Thriller +77330,Red Riding: 1980 (2009),Crime|Drama|Mystery +77332,Don's Plum (2001),Drama +77336,"Cellar, The (Huset vid vägens ände) (2003)",Horror|Thriller +77339,"Dunwich Horror, The (2009)",Horror +77344,Chizuko's Younger Sister (Futari) (1991),Drama +77353,Achilles and the Tortoise (Akiresu to kame) (2008),Comedy +77355,"Moment After, The (1999)",Drama|Sci-Fi|Thriller +77357,Bananas!* (2009),Crime|Documentary|Drama +77359,Red Riding: 1983 (2009),Crime|Drama|Mystery +77362,Texas Carnival (1951),Comedy|Musical +77364,"Losers, The (2010)",Action|Adventure|Drama|Mystery|Thriller +77414,"Last Song, The (2010)",Drama|Romance +77416,Chained Heat (1983),Action|Crime|Drama|Thriller +77421,Cyrus (2010),Comedy|Drama|Romance +77427,"Human Centipede, The (First Sequence) (2009)",Horror +77433,"Ten Commandments, The (1923)",Drama +77435,This Is the Army (1943),Comedy|Musical|War +77444,"Best of Times, The (Mei li shi guang) (2001)",Crime|Drama|Thriller +77449,Ben (1972),Horror|Thriller +77451,Operator 13 (1934),Drama|Romance|War +77455,Exit Through the Gift Shop (2010),Comedy|Documentary +77463,Summer and Smoke (1961),Drama|Romance +77479,Letting Go of God (2008),Comedy|Documentary +77481,King of the Zombies (1941),Comedy|Horror +77491,"Last Voyage, The (1960)",Drama +77493,Night Must Fall (1937),Thriller +77496,Night Train to Munich (1941),Film-Noir|Thriller|War +77509,Pinky (1949),Drama +77517,Tobruk (1967),Drama|War +77540,Solomon Kane (2009),Action|Adventure|Fantasy|Horror +77550,Blood and Sand (1941),Drama +77561,Iron Man 2 (2010),Action|Adventure|Sci-Fi|Thriller|IMAX +77596,Lebanon (2009),Drama|War +77613,Johnny Angel (1945),Crime|Drama|Film-Noir +77615,"Dark Tower, The (1943)",Drama|Thriller +77629,Reindeerspotting - Pako joulumaasta (2010),Documentary +77665,Marmaduke (2010),Comedy +77667,MacGruber (2010),Action|Comedy +77672,Ca$h (2010),Crime|Thriller +77680,"Dalton, Les (2004)",Comedy|Western +77682,Three (a.k.a. 3 Extremes II) (Saam gaang) (2002),Horror|Mystery +77688,Three Men and a Cradle (3 hommes et un couffin) (1985),Comedy +77707,"When I Grow Up, I'll Be a Kangaroo (Kad porastem bicu Kengur) (2004)",Comedy +77709,"Sky Crawlers, The (Sukai kurora) (2008)",Adventure|Animation|Drama +77711,"Bridesmaid, The (Demoiselle d'honneur, La) (2004)",Drama|Romance|Thriller +77715,Games of Love and Chance (L'esquive) (2003),Drama|Romance +77719,Voyager (Homo Faber) (1991),Drama +77721,Deathdream (a.k.a. Dead of Night) (1974),Horror|War +77729,"Man on the Roof, The (Mannen på taket) (1976)",Action|Crime|Drama|Thriller +77731,Vengeance (Fuk sau) (2009),Action|Crime|Thriller +77736,Crazy Stone (Fengkuang de shitou) (2006),Comedy|Crime +77738,Living Death (2006),Drama|Horror|Thriller +77742,3 Sailors and a Girl (Three Sailors and a Girl) (1953),Comedy|Musical +77744,"3rd Voice, The (1960)",Crime|Drama|Thriller +77770,Los Bandoleros (2009),Action|Drama +77772,Vampire Apocalypse (2008),Comedy|Horror +77774,Big River Man (2009),Documentary +77776,7 Dollars on the Red (Sette dollari sul rosso) (1966),Western +77778,Aces and Eights (1936),Western +77780,Virtuality (2009),Drama|Sci-Fi|Thriller +77783,Tora-san Our Lovable Tramp (Otoko wa tsurai yo) (1969),Comedy|Drama|Romance +77788,"Good Heart, The (2009)",Drama +77795,Cargo (2009),Sci-Fi +77798,"Nightmare on Elm Street, A (2010)",Fantasy|Horror|Thriller +77800,Four Lions (2010),Comedy|Drama +77804,Adios Amigo (1976),Comedy|Western +77808,Bobby Deerfield (1977),Drama|Romance +77810,Diary of a Nymphomaniac (Diario de una Ninfómana) (2008),Drama +77816,"Lord, Save Us from Your Followers (2008)",Documentary +77818,Gunless (2010),Action|Comedy|Drama|Western +77820,Furry Vengeance (2010),Children|Comedy +77829,"Shock Doctrine, The (2009)",Documentary +77831,"Fine, Totally Fine (Zenzen Daijobu) (2008)",Comedy +77833,Armadillo (2010),Documentary|Drama +77835,Stage Door Canteen (1943),Comedy|Musical|Romance|War +77837,You Don't Know Jack (2010),Drama +77841,St Trinian's 2: The Legend of Fritton's Gold (2009),Adventure|Comedy +77843,"Disappearance of Alice Creed, The (2009)",Thriller +77846,12 Angry Men (1997),Crime|Drama +77854,"Work of Director Michel Gondry, The (2003)",Comedy|Documentary +77866,Robin Hood (2010),Action|Adventure|Drama|Romance|War +77875,L'enfance nue (Naked Childhood) (1968),Drama +77881,Lovers & Leavers (Kuutamolla) (2002),Drama|Romance +77883,Heartbeats (Kohtaamisia) (2009),Comedy|Drama +77891,Little Fugitive (1953),Drama +77893,Merantau (2009),Action|Drama +77896,Gold (1974),Action|Adventure|Drama|Thriller +77899,I'll Cry Tomorrow (1955),Drama +77907,"Red Chapel, The (Røde kapel, Det) (2009)",Comedy|Documentary +77910,American Gothic (1988),Horror +77917,"Inn in Tokyo, An (Tôkyô no yado) (1935)",Drama +77919,"Chalk Garden, The (1964)",Drama +77921,Hollywood Canteen (1944),Comedy|Musical|Romance +77941,In a Dark Place (2006),Horror|Mystery|Thriller +77944,Art & Copy (2009),Documentary +77947,Harishchandrachi Factory (2009),Comedy|Drama +77951,Bonhoeffer: Agent of Grace (2000),Drama +77966,Love the Beast (2009),Documentary +77968,Must Read After My Death (2007),Documentary +77979,Johnny Mad Dog (2008),Drama|War +77981,Sparrow (a.k.a. Cultured Bird) (Man jeuk) (2008),Drama|Romance +77983,Rancho Notorious (1952),Drama|Western +77985,Father and Son (Otets i syn) (2003),Drama +77990,Scavenger Hunt (1979),Comedy +78000,Deficit (Déficit) (2007),Drama +78003,"Dirty Carnival, A (Biyeolhan geori) (2006)",Action|Crime|Thriller +78006,Phantom (O Fantasma) (2000),Drama +78009,Donkey Skin (Peau d'âne) (1970),Children|Drama|Fantasy|Musical|Romance +78011,Me and Morrison (Minä ja Morrison) (2001),Romance +78014,"Peck on the Cheek, A (Kannathil Muthamittal) (2002)",Drama|War +78016,Times and Winds (Bes vakit) (2006),Drama +78019,Adam Resurrected (2008),Drama|War +78032,Dread (2009),Horror +78034,Cemetery Junction (2010),Comedy|Drama|Romance +78037,Hell's Highway: The True Story of Highway Safety Films (2003),Documentary +78039,Blue Valentine (2010),Drama|Romance +78041,Killers (2010),Action|Comedy +78043,Tora-san's Rise and Fall (Otoko wa tsurai yo: Torajiro aiaigasa) (1975),Comedy +78045,Tora-san's Love Call (Otoko wa tsurai yo: Torajiro koiuta) (1971),Comedy +78049,Adventures of Captain Fabian (1951),Adventure +78054,Esa ja Vesa - auringonlaskun ratsastajat (1994),Action|Adventure|Comedy|Crime +78057,Adventures of Tarzan (1921),Action|Adventure +78059,"Velvet Vampire, The (1971)",Fantasy|Horror +78062,Puppet Master vs. Demonic Toys (Puppet Master 9) (2004),Comedy|Fantasy|Horror|Sci-Fi|Thriller +78064,Ween Live in Chicago (2004),Documentary +78068,Aerial Gunner (1943),Drama|War +78071,Panama Hattie (1942),Comedy|Musical +78073,Lucky Night (1939),Drama|Romance +78081,Delusions of Grandeur (La folie des grandeurs) (1971),Comedy +78084,"Anthropophagus: The Grim Reaper (Antropophagus) (Man Beast) (Savage Island, The) (Zombie's Rage, The) (1980)",Horror +78088,Buried (2010),Mystery|Thriller +78090,Sleep Furiously (2008),Documentary +78093,Parisian Love (1925),Comedy|Crime|Drama|Romance +78095,Girl with Green Eyes (1964),Drama|Romance +78097,Forbidden Door (Pintu Terlarang) (2009),Drama|Mystery|Thriller +78099,"Ape, The (Apan) (2009)",Drama|Thriller +78101,Life After Tomorrow (2006),Documentary +78103,Shake Hands with the Devil (2007),Drama|War +78105,Prince of Persia: The Sands of Time (2010),Action|Adventure|Fantasy|Romance|IMAX +78111,Artists and Models (1955),Comedy|Musical +78116,Please Give (2010),Comedy|Drama +78122,Peter & the Wolf (2006),Animation|Musical +78124,Hoffman (1970),Comedy|Drama|Romance +78128,True Legend (Su Qi-Er) (2010),Action|Drama +78130,"Reeds, The (2009)",Action|Horror|Thriller +78132,The Tomb (2009),Horror|Thriller +78140,Supermen of Malegaon (2008),Documentary +78142,Baarìa (2009),Comedy|Drama|War +78145,Reunion (1989),Drama +78157,At Midnight I'll Take Your Soul (À Meia-Noite Levarei Sua Alma) (1964),Horror +78168,"Wedding Weekend, The (Sing Now or Forever Hold Your Peace) (Shut Up and Sing) (2006)",Comedy|Drama +78170,Tokyo Chorus (Tôkyô no kôrasu) (1931),Comedy|Drama +78174,Sex and the City 2 (2010),Comedy|Drama|Romance +78181,Young Winston (1972),Adventure|Drama|War +78184,The Black Rose (1950),Adventure +78186,"Sniper, The (1952)",Crime|Drama|Film-Noir|Thriller +78192,Firaaq (2008),Drama +78201,The Past Is a Foreign Land (2008),Drama +78207,Brief Interviews with Hideous Men (2009),Comedy|Drama +78209,Get Him to the Greek (2010),Comedy +78211,Snarveien (Detour) (2009),Horror|Thriller +78218,Unthinkable (2010),Drama|Thriller +78222,"Other Side of Midnight, The (1977)",Drama|Romance|Thriller +78224,Our Dancing Daughters (1928),Drama +78235,Betrayal (1983),Drama|Thriller +78245,Romeo and Juliet (1936),Drama|Romance +78247,"Drawn Together Movie: The Movie!, The (2010)",Animation|Comedy +78249,It's Good to Be Alive (1974),Drama +78251,Friendship! (2010),Comedy +78264,"Back-up Plan, The (2010)",Comedy|Romance +78266,Splice (2009),Horror|Sci-Fi|Thriller +78268,Tales from the Golden Age (Amintiri din epoca de aur) (2009),Comedy +78270,May Fools (Milou en mai) (1990),Comedy|Romance +78272,"Tale of Winter, A (a.k.a. A Winter's Tale) (Conte d'hiver) (1992)",Drama +78276,"Hail Mary ('Je vous salue, Marie') (1985)",Drama +78278,No One Knows About Persian Cats (Kasi az gorbehaye irani khabar nadareh) (2009),Drama +78290,Burnt by the Sun 2 (Utomlyonnye solntsem 2) (2010),Drama +78295,"Knack ...and How to Get It, The (1965)",Comedy +78308,El Greco (2007),Drama +78313,Adulthood (2008),Drama +78316,Letters to Juliet (2010),Drama|Romance +78329,Reconstituirea (Reconstruction) (1968),Comedy|Drama +78332,"Beautiful Person, The (La belle personne) (2008)",Drama|Romance +78335,"Mermaid, The (Rusalka) (2007)",Comedy|Drama|Fantasy +78337,Humble Pie (American Fork) (2007),Comedy|Drama +78340,Gervaise (1956),Drama +78342,Wonderful World (2009),Drama|Romance +78344,"Song of Sparrows, The (Avaze gonjeshk-ha) (2008)",Drama +78349,Exam (2009),Mystery|Thriller +78358,"Go, Go Second Time Virgin (Yuke yuke nidome no shojo) (1969)",Drama +78360,"Corridor, The (Koridorius) (1994)",Drama +78366,No Time for Comedy (1940),Comedy|Drama|Romance +78370,How to Be (2008),Comedy|Drama +78376,"Wheel, The (La Roue) (1923)",Drama +78379,Dialogues with Solzhenitsyn (Uzel) (1999),Documentary +78381,Blood Wedding (Bodas de sangre) (1981),Drama|Musical|Romance +78405,It Happened Tomorrow (1944),Comedy|Fantasy +78408,Salaam-E-Ishq (2007),Comedy|Drama|Musical|Romance +78410,Chance Pe Dance (2010),Comedy|Drama|Romance +78413,Bless the Beasts & Children (1971),Drama +78416,Whoopee! (1930),Comedy|Musical +78418,Dr. Ehrlich's Magic Bullet (1940),Drama +78420,"House on Telegraph Hill, The (1951)",Drama|Film-Noir|Mystery|Thriller +78422,How About You... (2007),Comedy|Drama +78438,Edge of the City (1957),Drama|Film-Noir +78442,No Greater Love (2009),Drama|Romance +78445,"Woman In Berlin, A (Anonyma - Eine Frau in Berlin) (2008)",Drama|War +78459,Talhotblond: (2009),Documentary|Thriller +78461,Godspeed (2009),Drama|Horror|Thriller +78463,Tortilla Flat (1942),Comedy|Drama|Romance +78465,Three Little Words (1950),Comedy|Musical|Romance +78467,Jonah Hex (2010),Action|Drama|Thriller|Western +78469,"A-Team, The (2010)",Action|Comedy|Thriller +78483,Gigot (1962),Comedy +78488,Dhoondte Reh Jaoge (2009),Comedy|Drama +78490,Othello (1965),Drama|Romance +78499,Toy Story 3 (2010),Adventure|Animation|Children|Comedy|Fantasy|IMAX +78517,Joan Rivers: A Piece of Work (2010),Documentary +78519,No Highway in the Sky (1951),Drama|Thriller +78528,"East Side, West Side (1949)",Crime|Drama|Romance +78534,Adrift (À Deriva) (2009),Drama +78536,In the Beginning (À l'Origine) (2009),Drama +78557,Aladin (2009),Comedy|Fantasy|Musical|Romance +78559,One Good Man (2009),Drama +78574,Winter's Bone (2010),Drama|Thriller +78579,Tell-Tale (2009),Drama|Horror|Sci-Fi|Thriller +78583,Drama/Mex (2006),Drama +78585,Dream (Bi-mong) (2008),Drama|Fantasy|Mystery|Romance +78606,Don't Look Back (Ne te retourne pas) (2009),Drama|Horror|Mystery|Thriller +78612,Mandingo (1975),Action|Romance +78614,Clouds of May (Mayis sikintisi) (1999),Drama +78618,"Bad Girls (Biches, Les) (1968)",Drama|Mystery +78620,"Scalphunters, The (1968)",Comedy|Western +78626,Barking Dogs Never Bite (Flandersui gae) (2000),Comedy|Horror +78629,"Man There Was, A (Terje Vigen) (1917)",Drama +78633,Casino Jack and the United States of Money (2010),Documentary +78635,Under the North Star (Täällä Pohjantähden alla) (2009),Drama|Romance|War +78637,Shrek Forever After (a.k.a. Shrek: The Final Chapter) (2010),Adventure|Animation|Children|Comedy|Fantasy|IMAX +78640,"Open Road, The (2009)",Comedy|Drama +78642,Magic Man (2009),Crime|Mystery|Thriller +78646,"Sense of History, A (1992)",Comedy|Crime|Drama +78649,"Hot Dog Program, A (1999)",Documentary +78651,"Ashes, The (Popioly) (1965)",Drama|War +78653,Everyone Else (Alle Anderen) (2009),Drama|Romance +78658,Coming Down the Mountain (2007),Drama +78666,Princess Raccoon (Operetta tanuki goten) (2005),Comedy|Fantasy|Musical|Romance +78677,"Near East, The (El Proximo Oriente) (2006)",Comedy|Drama|Romance +78679,"Killer Inside Me, The (2010)",Crime|Drama|Thriller|Western +78681,"Wild Hunt, The (2009)",Drama|Thriller +78684,"Acla, The Descent into Floristella (La discesa di Aclà a Floristella) (1992)",Drama +78690,I Accuse (1919),Drama|Horror|War +78698,Mercy Streets (2000),Action|Crime|Drama +78701,"Guitar, The (2008)",Drama|Romance +78703,TiMER (2009),Comedy|Drama|Fantasy|Romance +78713,"Trespasser, The (1929)",Drama +78715,"Woman of Affairs, A (1928)",Drama +78717,Chelsea on the Rocks (2008),Documentary +78719,Ashes and Blood (2009),Drama +78721,Heart Like a Wheel (1983),Drama +78723,Little Dorrit (1988),Drama|Romance +78727,Saving God (2008),Crime|Drama +78729,24: Redemption (2008),Action|Adventure|Crime|Drama|Thriller +78737,Captain from Castile (1947),Adventure|Drama +78739,One of Our Aircraft Is Missing (1942),Action|Drama|War +78742,Diary of a Mad Housewife (1970),Comedy|Drama +78746,Best Worst Movie (2009),Documentary +78748,Beetle Queen Conquers Tokyo (2009),Documentary +78757,"Deal, The (2003)",Drama +78759,"Special Relationship, The (2010)",Drama +78765,Three Comrades (1938),Drama +78772,"Twilight Saga: Eclipse, The (2010)",Fantasy|Romance|Thriller|IMAX +78774,Solitary Man (2009),Comedy|Drama +78776,Hannah Free (2009),Drama +78827,Bluebeard (Barbe Bleue) (2009),Fantasy +78829,"Betrayal, The (Nerakhoon) (2008)",Documentary +78832,Wing and a Prayer (1944),Action|Drama|War +78834,Tomorrow at Dawn (Demain dès l'aube) (2009),Drama +78836,Enter the Void (2009),Drama +78838,"Cry of the Owl, The (2009)",Drama|Thriller +78856,"World According to Monsanto, The (monde selon Monsanto, Le) (2008)",Documentary +78858,Dream Wife (1953),Comedy|Romance +78860,"Slender Thread, The (1965)",Drama +78871,"Genesis Found, A (2010)",Adventure|Mystery +78873,Accident on Hill Road (2010),Crime|Drama|Thriller +78885,Tennessee (2008),Drama +78893,"Last Airbender, The (2010)",Action|Adventure|Fantasy +78895,When Father Was Away on Business (Otac na sluzbenom putu) (1985),Drama +78898,"Big Hand for the Little Lady, A (1966)",Comedy|Drama|Western +78903,State of Siege (État de siège) (1972),Drama|Thriller +78905,Whirlpool (1949),Crime|Drama|Film-Noir|Mystery +78909,Little Lili (La petite Lili) (2003),Drama +78913,Didier (1997),Comedy|Fantasy +78916,Grande école (2004),Drama +78919,Fat People (Gordos) (2009),Comedy +78921,This Happy Breed (1944),Comedy|Drama +78934,Yella (2007),Drama|Romance|Thriller +78941,Destricted (2006),Drama +78944,Culloden (The Battle of Culloden) (1964),Documentary|Drama|War +78946,Distant Thunder (Ashani Sanket) (1973),Drama +78951,Cool Air (2006),Horror +78955,"Rain People, The (1969)",Drama +78957,I Even Met Happy Gypsies (Skupljaci perja) (1967),Drama +78959,Endgame (2009),Drama +78961,Dead Air (2009),Horror|Sci-Fi|Thriller +78967,"Island of Dr. Moreau, The (1977)",Adventure|Fantasy|Horror|Romance|Sci-Fi|Thriller +78974,Malice N Wonderland (2010),Drama|Musical +78976,Stones in Exile (2010),Documentary|Musical +78978,"Cousins, The (Cousins, Les) (1959)",Drama|Romance +78980,Dynamite Girl (Dynamiittityttö) (1944),Comedy|Crime +78982,Gumshoe (1971),Comedy|Crime|Drama|Mystery +78984,Guts (Agallas) (2009),Action|Crime +78986,Salvador (Puig Antich) (2006),Drama +78991,Slam Dunk Ernest (1995),Children|Comedy +78993,Waiting Women (Kvinnors väntan) (1952),Comedy|Drama +79003,Romance on the High Seas (1948),Comedy|Musical|Romance +79006,Empire of Dreams: The Story of the 'Star Wars' Trilogy (2004),Documentary +79010,Marie and Bruce (2004),Comedy|Drama +79022,"Intern, The (2000)",Comedy +79029,Kurt Cobain About a Son (2006),Documentary|Musical +79035,Hold Back the Dawn (1941),Drama|Romance +79038,"Gazebo, The (1959)",Comedy|Crime +79043,Inside the Twin Towers (2006),Drama +79045,We Stand Alone Together (2001),Documentary +79057,Predators (2010),Action|Sci-Fi|Thriller +79060,Far North (2007),Drama|Romance|Thriller +79063,"Leslie, My Name is Evil (Manson, My Name is Evil) (2009)",Comedy|Crime|Fantasy +79065,Thank Your Lucky Stars (1943),Comedy|Musical +79067,"Fixer, The (1968)",Drama +79073,When You're Strange (2009),Documentary +79077,"Flight That Fought Back, The (2005)",Drama +79081,Hell and High Water (1954),Adventure|Drama|Thriller +79083,Young Bess (1953),Drama|Romance +79091,Despicable Me (2010),Animation|Children|Comedy|Crime +79094,So Proudly We Hail! (1943),Drama|Romance|War +79104,31 North 62 East (2009),Thriller +79106,Irene in Time (2009),Comedy|Drama|Romance +79109,Captains of the Clouds (1942),Action|Drama|War +79111,"Front Line, The (2006)",Crime|Drama|Thriller|War +79124,The Girl of the Golden West (1938),Musical|Romance|Western +79127,Sweethearts (1938),Musical|Romance +79132,Inception (2010),Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX +79134,Grown Ups (2010),Comedy +79136,Thirst (2008),Drama +79139,"Sorcerer's Apprentice, The (2010)",Action|Adventure|Children|Comedy|Fantasy +79163,Swedish Auto (2006),Drama|Romance +79166,Creepshow 3 (2006),Horror +79185,Knight and Day (2010),Action|Comedy|Romance +79187,"Greatest, The (2009)",Drama|Romance +79191,Roadracers (1994),Drama +79195,Raincoat (2004),Drama|Romance +79197,"Fastest Gun Alive, The (1956)",Western +79203,Nightwatching (2007),Drama|Mystery +79207,Fear City (1984),Crime|Drama|Mystery|Thriller +79213,Sade (2000),Crime|Drama +79222,"Phantom, The (2009)",Action|Adventure|Crime|Fantasy +79224,"Karate Kid, The (2010)",Action|Children|Drama +79226,"Good Guy, The (2009)",Comedy|Romance +79228,Like Minds (2006),Crime|Horror|Mystery|Thriller +79230,"Yellow Handkerchief, The (2008)",Drama|Romance +79232,Comrades (1986),Drama +79234,Snake-Crane Secret (She hao dan xin zhen jiu zhou) (1976),Action|Drama +79236,Yumeji (1991),Drama|Fantasy +79238,Zigeunerweisen (Tsigoineruwaizen) (1980),Horror|Mystery +79242,"Kids Are All Right, The (2010)",Comedy|Drama +79244,Perestroika (2009),Drama +79247,Terror is a Man (1959),Horror|Sci-Fi +79249,"Twilight People, The (1973)",Horror +79251,"Serbian Film, A (Srpski film) (2010)",Horror|Thriller +79254,Home (2008),Drama +79259,Cherrybomb (2009),Drama|Thriller +79276,"Pont du Nord, Le (1981)",Comedy|Fantasy|Mystery +79278,My Boy (1921),Comedy|Drama +79285,Mammy (1930),Comedy|Drama|Musical +79287,"Wizard of Oz, The (1925)",Adventure|Children|Comedy|Fantasy +79293,Salt (2010),Action|Thriller +79299,"No. 1 Ladies' Detective Agency, The (2008)",Comedy|Crime|Mystery +79303,Sinbad (Szindbád) (1971),Drama +79318,Winnebago Man (2009),Comedy|Documentary +79321,Crime of Passion (1958),Crime|Drama|Film-Noir +79327,"Patsy, The (1928)",Comedy|Drama|Romance +79329,Passing Strange (2009),Documentary|Musical +79333,Watch Out for the Automobile (Beregis avtomobilya) (1966),Comedy|Crime|Romance +79335,Peg o' My Heart (1933),Drama|Romance +79337,Downstairs (1932),Drama +79339,Five and Ten (1931),Romance +79346,Smashing Pumpkins: If All Goes Wrong (2008),Documentary|Musical +79357,Mr. Nobody (2009),Drama|Fantasy|Romance|Sci-Fi +79363,Music in the Air (1934),Comedy|Musical|Romance +79368,"Girasoli, I (Sunflower) (1970)",Drama +79388,Play Dirty (1969),Action|Adventure|Drama|War +79395,"Silver Chalice, The (1954)",Drama|Romance +79397,George Washington Slept Here (1942),Comedy +79402,Telstar: The Joe Meek Story (2008),Comedy|Drama +79424,"Name for Evil, A (1973)",Horror +79428,Dinner for Schmucks (2010),Comedy +79430,8: The Mormon Proposition (2010),Documentary +79458,"Man Who Left His Will on Film, The (Tôkyô sensô sengo hiwa) (1970)",Drama +79461,Diary of a Shinjuku Thief (Shinjuku dorobo nikki) (1969),Comedy|Drama +79463,Nanny McPhee Returns (a.k.a. Nanny McPhee and the Big Bang) (2010),Children|Comedy|Fantasy +79467,Mid-August Lunch (Pranzo di ferragosto) (2008),Comedy|Drama +79469,"Northerners, The (De noorderlingen) (1992)",Comedy +79471,3 Needles (2005),Drama +79473,"Olivier, Olivier (1992)",Drama +79475,"Power of Kangwon Province, The (Kangwon-do ui him) (1998)",Drama +79477,Taking Off (1971),Comedy|Drama +79494,Safe Sex (1999),Comedy +79496,Restless (Uro) (2006),Action|Crime|Thriller +79498,"Town That Dreaded Sundown, The (1976)",Crime|Drama|Horror|Mystery|Thriller +79501,Deadly Outlaw: Rekka (a.k.a. Violent Fire) (Jitsuroku Andô Noboru kyôdô-den: Rekka) (2002),Crime|Drama|Thriller +79505,North (Nord) (2009),Comedy|Drama +79507,Amar Akbar Anthony (1977),Action|Comedy|Drama +79515,Farsan (2010),Comedy +79519,Trans-Europ-Express (1966),Thriller +79521,Lies (Gojitmal) (1999),Drama +79523,"Man from London, The (A Londoni férfi) (2007)",Crime|Drama|Mystery +79525,Human Desire (1954),Drama|Film-Noir +79528,Treasure Island (1934),Adventure +79533,"Bugs Bunny / Road Runner Movie, The (a.k.a. The Great American Chase) (1979)",Animation|Children|Comedy +79539,Here and There (Tamo i ovde) (2009),Comedy|Drama +79541,Little Nicholas (Le petit Nicolas) (2009),Comedy|Drama +79543,"Confucian Confusion, A (Du li shi dai) (1994)",Comedy +79545,Grotesque (Gurotesuku) (2009),Horror|Thriller +79547,2:13 (2009),Horror|Thriller +79551,Shifty (2008),Crime|Thriller +79553,Ip Man 2 (2010),Action +79561,Dr. Moreau's House of Pain (2004),Horror +79568,I Am Maria (Jag är Maria) (1979),Drama +79570,Lucky (2010),Documentary +79572,Ramona and Beezus (2010),Children|Comedy +79575,Solstice (1994),Drama +79578,"Year of the Hare, The (Jäniksen vuosi) (1977)",Drama|Romance +79580,"Yank in the R.A.F., A (1941)",Action|Adventure|Drama|Romance|War +79588,Charlie St. Cloud (2010),Drama|Fantasy|Romance +79590,"Rebound, The (2009)",Comedy|Romance +79592,"Other Guys, The (2010)",Action|Comedy +79596,"Lineup, The (1958)",Crime|Drama|Film-Noir +79599,Operation Endgame (2010),Action|Comedy|Drama +79601,Love in Another Language (Baska Dilde Ask) (2009),Drama|Romance +79603,"Oh, Woe Is Me (Hélas pour moi) (1993)",Comedy|Drama +79607,"Millions Game, The (Das Millionenspiel)",Action|Drama|Sci-Fi|Thriller +79610,Affair in Trinidad (1952),Drama|Film-Noir|Musical|Thriller +79617,She-Wolf of London (1946),Action|Drama|Horror|Mystery +79627,Cradle of Fear (2001),Crime|Drama|Horror|Mystery|Thriller +79633,"Kautokeino Rebellion, The (Kautokeino-opprøret) (2008)",Drama +79636,"Inner Life of Martin Frost, The (2007)",Comedy|Drama +79638,"Family, The (Famiglia, La) (1987)",Drama|Musical|Romance +79642,Dreamboat (1952),Comedy +79644,"Desperados, The (1969)",Western +79647,"Haunted Strangler, The (Grip of the Strangler) (1958)",Crime|Horror|Mystery +79651,"L-Shaped Room, The (1962)",Drama +79653,North West Mounted Police (1940),Action|Adventure|Drama|Romance|Western +79656,"Great Caruso, The (1951)",Drama|Musical +79663,Triage (2009),Drama|War +79667,Call Me Madam (1953),Comedy|Musical|Romance +79681,Invisible Agent (1942),Adventure|Comedy|Sci-Fi|Thriller|War +79684,Paper Man (2009),Comedy|Drama +79686,All Tomorrow's Parties (2009),Documentary|Musical +79692,Bjarnfreðarson (2009),Comedy|Drama +79695,"Expendables, The (2010)",Action|Adventure|Thriller +79702,Scott Pilgrim vs. the World (2010),Action|Comedy|Fantasy|Musical|Romance +79709,"Spanish Main, The (1945)",Adventure|Drama|Romance +79711,Svengali (1931),Drama|Horror +79718,Sheep Eaters (Lampaansyöjät) (1972),Comedy|Drama +79720,Animal Kingdom (2010),Crime|Drama +79723,"Exploding Girl, The (2009)",Drama +79725,Prodigal Sons (2008),Documentary +79731,Seven Angry Men (1955),Drama|Western +79736,May 6th (06/05) (2004),Drama|Thriller +79739,"Thorn in the Heart, The (2009)",Documentary +79741,See What I'm Saying: The Deaf Entertainers Documentary (2010),Documentary +79760,Facing Ali (2009),Documentary +79765,"Beast, The (1996)",Drama|Horror|Thriller +79767,Pretty Bird (2008),Comedy|Drama +79769,Raajneeti (2010),Crime|Drama|Romance +79771,"Return of Frank James, The (1940)",Western +79773,Moloch (Molokh) (1999),Drama +79775,"Story of My Life, The (Mensonges et trahisons et plus si affinités...) (2004)",Comedy|Romance +79794,Crossworlds (1997),Action|Comedy|Sci-Fi +79796,Centurion (2010),Action|Adventure|Drama|Thriller|War +79798,I Killed My Mother (J'ai tué ma mère) (2009),Drama +79800,Life During Wartime (2009),Comedy|Drama +79802,Lion's Den (Leonera) (2008),Drama +79805,That Most Important Thing: Love (L'important c'est d'aimer) (1975),Drama|Romance +79807,Pope Joan (Die Päpstin) (2009),Drama|Romance +79809,Cluny Brown (1946),Comedy|Romance +79824,Babies (Bébé(s)) (2010),Documentary +79828,"Green Room, The (a.k.a. Vanishing Fiancee) (La chambre verte) (1978)",Drama +79830,Captain Conan (Capitaine Conan) (1996),Drama|War +79832,Easy Living (1937),Comedy|Romance +79835,Like It Is (1998),Drama +79838,Ankur (The Seedling) (1974),Drama +79842,For Neda (2010),Documentary +79844,"Battle of the Rails, The (La bataille du rail) (1946)",Drama|War +79846,Spider Forest (Geomi sup) (2004),Drama|Horror|Mystery|Thriller +79848,What Goes Up (2009),Drama +79850,12th & Delaware (2010),Documentary +79855,Wonder Bar (1934),Comedy|Crime|Drama|Musical|Romance +79860,"Experiment, The (2010)",Drama|Thriller +79863,Black Water (2007),Adventure|Drama|Horror|Thriller +79866,Schmatta: Rags to Riches to Rags (2009),Documentary +79868,Heartless (2009),Fantasy|Horror|Mystery|Thriller +79870,Smash His Camera (2010),Documentary +79872,Chicago (1927),Comedy|Crime|Drama +79874,Underworld (1927),Crime|Drama|Film-Noir +79879,Piranha (Piranha 3D) (2010),Action|Horror|Thriller +79884,FC Venus (2006),Comedy|Romance +79895,"Extraordinary Adventures of Adèle Blanc-Sec, The (2010)",Action|Adventure|Fantasy|Mystery +79897,Get Low (2009),Comedy|Drama|Mystery +79899,Ten9Eight: Shoot for the Moon (2009),Documentary +79901,"Danse: The Paris Opera Ballet, La (La Danse - Le ballet de l'Opéra de Paris) (2009)",Documentary +79910,According to Greta (2009),Drama|Romance +79912,Accident (Yi ngoi) (2009),Thriller +79914,Centre Stage: Turn It Up (2008),Drama|Romance +79916,Tony Manero (2008),Crime|Drama +79918,Fate Is the Hunter (1964),Drama +79920,Blue Skies (1946),Comedy|Drama|Musical|Romance +79923,"Mating Season, The (1951)",Comedy +79925,Prince of Foxes (1949),Adventure|Drama +79927,Terribly Happy (Frygtelig lykkelig) (2008),Crime|Drama|Film-Noir|Thriller +79929,"Eclipse, The (2009)",Drama|Horror|Thriller +79936,Pohjanmaa (1988),Drama +79946,"Joneses, The (2009)",Comedy|Drama +79953,With a Song in My Heart (1952),Drama|Musical +79955,"Love Parade, The (1929)",Comedy|Musical|Romance +79972,"Girl on the Train, The (La fille du RER) (2009)",Drama +79974,Pyaar Impossible (2010),Comedy|Romance +79977,"Rains Came, The (1939)",Adventure|Drama|Romance +79980,Children of Invention (2009),Drama +79987,Gainsbourg (Vie Héroïque) (2010),Drama|Musical|Romance +79994,"Wild Grass (Herbes folles, Les) (2009)",Drama|Romance +79996,Giallo (2009),Crime|Horror|Thriller +80004,Gaby: A True Story (1987),Drama|Romance +80020,Jumbo (Billy Rose's Jumbo) (1962),Comedy|Musical|Romance +80022,Miss Sadie Thompson (1953),Drama|Musical|Romance +80026,Tekken (2010),Action|Sci-Fi +80033,"President's Man, The (2000)",Action|Adventure|Thriller +80044,Don Quixote (2000),Adventure|Comedy|Drama|Romance +80049,"Secret Adventures of Gustave Klopp, The (Narco) (2004)",Action|Comedy|Fantasy +80052,Muggers (2000),Comedy +80054,Blood into Wine (2010),Documentary +80072,Deadly Circuit (Mortelle randonnée) (1983),Crime|Mystery|Thriller +80074,Something Like Happiness (Stestí) (2005),Comedy|Drama +80076,"Story of Marie and Julien, The (Histoire de Marie et Julien) (2003)",Drama|Mystery|Romance +80083,Dragon Ball Z: Dead Zone (Doragon bôru Z 1: Ora no Gohan wo kaese) (1989),Action|Adventure|Animation|Fantasy|Sci-Fi +80086,Retribution (Sakebi) (2006),Horror|Mystery|Thriller +80094,"Last Exorcism, The (2010)",Horror|Thriller +80097,Mother Joan of the Angels (Matka Joanna od aniolów) (1961),Drama|Horror +80100,Camila (1984),Drama|Romance +80102,Christopher Strong (1933),Drama +80104,San Pietro (1945),Documentary|War +80107,"Dance, Girl, Dance (1940)",Comedy|Drama +80109,King Lear (Korol Lir) (1971),Drama +80111,Black Girl (La noire de...) (1966),Drama +80122,Rosa Luxemburg (1986),Drama +80124,Sisters (Syostry) (2001),Action|Crime|Drama +80126,"American, The (2010)",Drama|Thriller +80129,How Tasty Was My Little Frenchman (Como Era Gostoso o Meu Francês) (1971),Comedy|Drama +80132,Children of Hiroshima (Gembaku no ko) (1952),Drama|War +80135,Kisses (Kuchizuke) (1957),Drama|Romance +80137,If God Is Willing and da Creek Don't Rise (2010),Documentary +80141,"Christmas Toy, The (1986)",Children|Musical +80144,"Wildcat, The (Die Bergkatze) (1921)",Comedy|Drama|Romance +80146,"Hypothesis of the Stolen Painting, The (L'hypothèse du tableau volé) (1979)",Drama|Mystery +80152,"Trials of Oscar Wilde, The (1960)",Drama +80154,Urban Menace (1999),Action|Horror +80160,"Flintstone Kids' Just Say No Special, The (1988)",Animation|Children +80162,"Horde, The (La Horde) (2009)",Action|Horror|Thriller +80166,"Switch, The (2010)",Comedy|Romance +80179,Golem (1980),Drama|Mystery|Sci-Fi +80181,Elephants Dream (2006),Animation|Fantasy|Sci-Fi +80183,8th Wonderland (2008),Drama|Thriller +80185,GasLand (2010),Documentary +80189,"Dark Wind, The (1991)",Action|Mystery +80191,Fear and Desire (1953),Drama|War +80193,No One Dies in Lily Dale (2010),Documentary +80195,Shouting Fire: Stories from the Edge of Free Speech (2009),Documentary +80204,Vesku from Finland (Vesku) (2010),Documentary +80206,Dirty Ho (Lan tou He) (1976),Action|Drama +80208,Visual Acoustics (2008),Documentary +80210,"End of Poverty, The (2008)",Documentary +80214,"Swan and the Wanderer, The (Kulkuri ja joutsen) (1999)",Drama +80219,Machete (2010),Action|Adventure|Comedy|Crime|Thriller +80222,Step Up 3D (2010),Drama|Romance +80224,Smart Money (1931),Crime|Drama +80226,Tarzan's Magic Fountain (1949),Action|Adventure|Fantasy|Romance +80230,Off and Running (2009) ,Documentary +80233,"Truth, The (2010) ",Thriller +80235,"Wedding Song, The (2008) ",Drama|War +80241,Going the Distance (2010),Comedy|Romance +80243,Bananaz (2008),Documentary +80258,"Moon Is Blue, The (1953)",Comedy|Romance +80260,Love Letters (1945),Drama|Mystery|Romance +80264,Pride of the Marines (1945),Drama|War +80267,Comrade X (1940),Comedy|Drama +80269,Above and Beyond (1952),Action|Drama +80271,Four Stories of St. Julian (2010) ,Crime|Thriller +80281,Bill Bailey: Tinselworm (2008),Comedy|Documentary +80283,Babes on Broadway (1941),Comedy|Musical|Romance +80285,Conquest (1937),Drama|Romance +80288,"Street with No Name, The (1948)",Crime|Drama|Film-Noir|Thriller +80290,It's a Great Feeling (1949),Comedy +80292,"Joker Is Wild, The (All the Way) (1957)",Drama|Musical +80295,"Reincarnation of Peter Proud, The (1975)",Horror|Mystery +80311,"Come On, Rangers (1938)",Romance|Western +80313,"Oh, Susanna! (1936)",Romance|Western +80315,"Worthless, The (Arvottomat) (1982)",Crime|Drama +80321,Blood River (2009),Horror|Thriller|Western +80328,"Saimaa Gesture, The (Saimaa-ilmiö) (1981)",Documentary +80337,Still Bill (2009),Documentary +80339,Homecoming (2009),Drama|Thriller +80344,Beach Red (1967),Drama|War +80346,"Song to Remember, A (1945)",Drama +80348,Arch of Triumph (1948),Drama|Romance|War +80350,Vampires Suck (2010),Comedy +80352,Young Again (1986),Fantasy +80354,Men in the City (Männerherzen) (2009),Comedy +80358,"Theory of Everything, The (2006)",Drama +80361,$5 a Day (2008),Comedy|Drama +80363,Resident Evil: Afterlife (2010),Action|Horror|Sci-Fi|Thriller|IMAX +80368,Udzinarta mze (1992),Crime|Drama +80374,Symbol (Shinboru) (2009),Comedy|Fantasy +80376,Preacher's Kid (2010),Drama +80398,22 Bullets (L'immortel) (2010),Action|Crime|Thriller +80400,"Larceny, Inc. (1942)",Comedy|Crime|Drama +80402,"New Country, The (Det nya landet) (2000)",Comedy|Drama +80405,Triangle (Tie saam gok) (2007),Action +80408,Trance (1998),Horror +80417,Io Island (Iodo) (1977),Mystery +80419,Seopyeonje (1993),Drama|Musical +80421,Heroes for Sale (1933),Drama +80424,Western Union (1941),Western +80428,"Pornographer, The (Le pornographe) (2001)",Drama +80430,Palermo Shooting (2008),Drama +80432,Our Relations (1936),Comedy +80442,Freedom Park (2004),Children|Comedy +80444,"Hunchback, The (1997)",Drama +80447,Someone's Watching Me! (1978),Horror|Mystery|Thriller +80449,Sue (1997),Drama +80451,Season of the Witch (Hungry Wives) (Jack's Wife) (1972),Drama|Horror +80454,Princess (Prinsessa) (2010),Drama +80456,Long Weekend (1978),Horror|Mystery|Thriller +80463,"Social Network, The (2010)",Drama +80465,Few of Us (1996),Drama +80472,Design for Scandal (1941),Comedy|Romance +80476,Otis (2008),Comedy|Crime|Horror|Thriller +80487,"Married Woman, A (Une femme mariée) (1964)",Drama +80489,"Town, The (2010)",Crime|Drama|Thriller +80491,Kapò (1959),Drama|War +80494,"Phenix City Story, The (1955)",Crime|Drama|Film-Noir +80498,Some Days Are Better Than Others (2010),Drama +80500,Fear Me Not (Den du frygter) (2008),Drama|Thriller +80549,Easy A (2010),Comedy|Romance +80551,Eat Pray Love (2010),Drama|Romance +80553,Howl (2010),Drama +80557,Camp Hell (2010),Thriller +80560,Blue Gold: World Water Wars (2008),Documentary +80562,Senseless (2008),Crime|Drama|Thriller +80566,"Rocket from Calabuch, The (Calabuch) (1956)",Comedy +80568,Come Blow Your Horn (1963),Comedy +80570,Susan Slept Here (1954),Comedy|Drama +80572,I'm Still Here (2010),Comedy|Drama +80574,Saratoga Trunk (1945),Drama|Romance +80582,Girl 27 (2007),Documentary +80584,"Patrik Age 1.5 (Patrik 1,5) (2008)",Comedy|Drama|Romance +80586,Flipped (2010),Comedy|Drama|Romance +80588,IMAX: Hubble 3D (2010),Documentary|IMAX +80590,Wall Street: Money Never Sleeps (2010),Drama +80592,Phaedra (1962),Drama +80599,Buster Keaton: A Hard Act to Follow (1987),Documentary +80611,Mister Buddwing (1966),Drama +80615,Legend of the Guardians: The Owls of Ga'Hoole (2010),Adventure|Animation|Fantasy|IMAX +80617,Cats & Dogs: The Revenge of Kitty Galore (2010),Action|Children|Comedy +80619,What's the Matter with Helen? (1971),Crime|Drama|Horror|Musical +80622,Rhapsody in Blue (1945),Drama|Musical +80639,Broadway Melody of 1936 (1935),Musical|Romance +80641,Boy on a Dolphin (1957),Adventure|Romance +80646,Lone Wolf and Cub: White Heaven in Hell (Kozure ôkami: Jigoku e ikuzo! Daigorô) (1974),Action|Drama|Fantasy +80648,Lone Wolf and Cub: Baby Cart in the Land of Demons (Kozure Ôkami: Meifumadô) (1973),Action|Drama|Thriller +80650,Diên Biên Phú (1992),Drama|War +80653,"Missing Person, The (2009)",Drama|Film-Noir|Mystery +80655,Amigo (2010),Drama|War +80659,"Edward, My Son (1949)",Drama +80661,Beneath the 12-Mile Reef (1953),Adventure +80667,The Oscar (1966),Drama +80677,"Classe Tous Risques (Big Risk, The) (1960)",Crime|Drama|Film-Noir|Romance|Thriller +80680,Monga (2010),Crime|Drama +80693,It's Kind of a Funny Story (2010),Comedy|Drama +80695,Lbs. (2004),Documentary|Drama +80701,Mudhoney (1965),Drama +80713,Entre nos (Between Us) (2009),Drama +80715,Just Like Us (2010),Comedy|Documentary +80717,Voyeur (Abel) (1986),Comedy +80719,Kanchenjungha (1962),Drama +80725,"Squaw Man, The (1914)",Drama|Western +80727,Middle Men (2009),Comedy|Crime|Drama +80729,(Untitled) (2009),Comedy|Drama +80731,"Paper Will Be Blue, The (Hîrtia va fi albastrã) (2006)",Action|Drama +80733,Ricky (2009),Comedy|Drama|Fantasy +80742,"Last Letter, The (La dernière lettre) (2002)",Drama +80744,Deciduous Tree (Tree Without Leaves) (Rakuyôju) (1986),Drama +80746,Remote Control (1930),Comedy|Drama +80748,Alice in Wonderland (1933),Adventure|Children|Fantasy +80759,Hardcore (2004),Crime|Drama +80761,"Crimson Wing: Mystery of the Flamingos, The (2008)",Documentary +80763,Saint John of Las Vegas (2009),Comedy|Drama +80768,Patsy (2008),Comedy|Drama|Mystery|Romance +80775,Tamara Drewe (2010),Comedy|Drama|Romance +80777,Tere Naam (2003),Romance +80779,Every Day (2010),Comedy|Drama +80781,Vampitheatre (2009),Horror +80789,Loving Leah (2009),Drama|Romance +80792,Southbounders (2005),Drama +80797,"Thank You, Mr. Moto (1937)",Crime|Drama|Mystery +80799,West Point (1927),Drama|Romance +80806,"Red Bear, A (Un oso rojo) (2002)",Crime|Drama|Thriller +80808,"Night Strangler, The (1973)",Crime|Horror|Mystery +80810,Twilight's Last Gleaming (1977),Thriller +80812,Effi Briest (Fontane - Effi Briest) (1974),Drama +80816,Dark Night of the Scarecrow (1981),Horror|Mystery +80818,Remarkable Power (2008),Comedy +80820,My Girlfriend's Boyfriend (2010),Comedy|Romance +80825,Shadows (Senki) (2007),Drama|Horror|Mystery|Thriller +80827,Brown of Harvard (1926),Drama|Romance +80831,Let Me In (2010),Drama|Horror|Mystery +80834,Sintel (2010),Animation|Fantasy +80836,Big Buck Bunny (2008),Animation|Comedy +80839,Secretariat (2010),Adventure|Drama +80844,Lake Mungo (2008),Drama|Mystery|Thriller +80846,Devil (2010),Horror|Mystery|Thriller +80848,Looking for Cheyenne (2005),Drama|Romance +80858,You Again (2010),Comedy +80860,Life as We Know It (2010),Comedy|Romance +80862,Catfish (2010),Documentary|Mystery +80864,You Will Meet a Tall Dark Stranger (2010),Comedy|Romance +80870,Dark House (2009),Horror|Thriller +80880,Stone (2010),Drama|Thriller +80891,Hunger (2009),Horror|Thriller +80893,Grimm Love (2006),Crime|Drama|Horror|Thriller +80899,Naughty Marietta (1935),Drama|Musical +80901,"Hawaiians, The (1970)",Drama +80903,One Million B.C. (1940),Adventure|Fantasy|Romance|Sci-Fi +80906,Inside Job (2010),Documentary +80908,Leaving (Partir) (2009),Drama|Romance +80917,Monsters (2010),Drama|Sci-Fi +80924,Where the Red Fern Grows (2003),Drama +80928,David Cross: Bigger & Blackerer (2010),Comedy|Documentary +80933,"Murder, Inc. (1960)",Crime|Drama +80939,Conviction (2010),Drama +80947,Bran Nue Dae (2009),Comedy|Musical +80950,"Private War of Major Benson, The (1955)",Children|Comedy|Romance +80952,"Promoter, The (Card, The) (1952)",Comedy +80954,Merrily We Live (1938),Comedy|Romance +80967,Harmony and Me (2009),Comedy +80969,Never Let Me Go (2010),Drama|Romance|Sci-Fi +80980,Countdown (1968),Sci-Fi|Thriller +80984,Rogue Cop (1954),Crime|Drama|Film-Noir +80986,That Forsyte Woman (1949),Drama|Romance +80990,"Lady Vanishes, The (1979)",Action|Comedy|Mystery|Romance +81000,To the Limit (Am Limit) (2007),Documentary +81014,Hush (2009),Horror|Thriller +81018,"Illusionist, The (L'illusionniste) (2010)",Animation +81020,"Hedgehog, The (Le hérisson) (2009)",Comedy|Drama +81027,Autumn Ball (Sügisball) (2007),Drama +81029,"Murder, He Says (1945)",Comedy +81031,Worlds Apart (To verdener) (2008),Drama +81041,"American Affair, An (2009)",Drama +81046,Martha (1974),Drama|Thriller +81049,Rooster's Breakfast (Petelinji zajtrk) (2007),Drama +81051,Massacre at Central High (1976),Drama|Horror|Thriller +81054,Love Is Colder Than Death (Liebe ist kälter als der Tod) (1969),Comedy|Crime|Romance +81059,"Family Friend, The (L'amico di famiglia) (2006)",Drama +81061,Party Girl (1958),Drama|Film-Noir +81064,J.C. Chávez (a.k.a. Chavez) (2007),Documentary +81069,Toe to Toe (2009),Drama +81072,Konopielka (1982),Comedy +81075,"Temptation of St. Tony, The (Püha Tõnu kiusamine) (2009)",Drama|Fantasy|Mystery +81080,Lost Boys: The Thirst (2010),Horror|Thriller +81083,Kaboom (2010),Comedy|Sci-Fi +81085,Morning Patrol (Proini peripolos) (1987),Sci-Fi +81087,Luck by Chance (2009),Drama +81090,Tales from the Script (2009),Documentary +81094,Mummies: Secrets of the Pharaohs (a.k.a. Mummies 3D) (2007),Documentary|IMAX +81100,Bianca Beauchamp: All Access (2007),Documentary +81102,"Padrecito, El (Little Priest) (1964)",Comedy|Drama +81104,Budrus (2009),Documentary +81107,Wife! Be Like a Rose! (Tsuma yo bara no yo ni) (1935),Drama +81109,Adelheid (1970),Drama +81111,Peepli Live (2010),Comedy|Drama +81117,"Moth, The (Cma) (1980)",Drama +81123,"Girl Said No, The (1930)",Comedy|Romance +81125,"American Dream, An (1966)",Drama +81130,Tube Tales (1999),Drama +81132,Rubber (2010),Action|Adventure|Comedy|Crime|Drama|Film-Noir|Horror|Mystery|Thriller|Western +81138,7 Days (Les 7 jours du talion) (2010),Thriller +81140,6 Souls (Shelter) (2010),Horror|Mystery|Thriller +81142,In My Sleep (2009),Drama|Mystery|Thriller +81145,Hamlet Goes Business (Hamlet liikemaailmassa) (1987),Comedy|Drama|Romance +81147,Barefoot Gen 2 (Hadashi no Gen II) (1986),Animation|Drama|War +81156,Jackass 3D (2010),Action|Comedy|Documentary +81158,Restrepo (2010),Documentary|War +81162,Road Kill (2010),Horror|Thriller +81164,"Hole, The (2009)",Horror|Thriller +81172,Spring Subway (2002),Drama|Romance +81180,30 Days of Night: Dark Days (2010),Horror|Thriller +81182,No Mercy (Yongseoneun Eupda) (2010),Thriller +81191,Waiting for 'Superman' (2010),Documentary +81193,"West Point Story, The (1950)",Comedy|Musical +81195,Perrier's Bounty (2009),Action|Comedy|Crime|Drama +81198,Where Love Has Gone (1964),Drama +81200,Suzy (1936),Drama +81204,"Disappeared, The (2008)",Horror +81214,"Fox, The (1967)",Drama +81216,"Frogmen, The (1951)",Adventure|Drama|War +81225,Jerry Springer: The Opera (2005),Comedy|Fantasy|Musical +81229,Red (2010),Action|Comedy +81238,Zeisters (Fat Guy Goes Nutzoid) (1986),Comedy +81243,Strip-tease (1963),Drama +81248,The Other Side of the Mountain (1975),Drama +81250,"Actress, The (1953)",Comedy|Drama +81257,In a Better World (Hævnen) (2010),Drama +81270,My Soul to Take (2010),Horror|Thriller +81274,Under the Stars (Bajo las estrellas) (2007),Drama +81276,South of the Border (2009),Documentary +81281,"Architect, The (2006)",Drama +81305,Eyes Wide Open (Einayim Petukhoth) (2009),Drama +81312,Borderland (2007),Crime|Horror|Thriller +81314,Big Game (2008),Action|Drama|Thriller +81316,Deadline (2009),Drama|Horror|Thriller +81322,Nicht alle waren Mörder (2006),Drama|War +81328,"Hunt, The (Caza, La) (1966)",Drama|Thriller +81330,My Kidnapper (2010),Documentary +81347,Vivere (2007),Drama|Romance +81349,Provocateur (Prowokator) (1995),Drama +81351,"Olsen Gang, The (Olsen-Banden) (1968)",Comedy|Crime +81355,"Employment, The (Empleo, El) (2008)",Animation|Comedy|Drama +81357,"Pear Tree, The (Derakhte Golabi) (1998)",Drama|Romance +81359,"Road, Movie (2009)",Comedy|Drama|Fantasy +81364,"Box, The (2007)",Crime|Thriller +81366,"Only Son, The (Hitori musuko) (1936)",Drama +81371,There Was a Father (Chichi ariki) (1942),Drama +81381,"Perfect Human, The (Perfekte Menneske, Det) (1967)",Documentary +81383,Heartbreaker (L'Arnacoeur) (2010),Comedy|Romance +81385,Of Gods and Men (Des hommes et des dieux) (2010),Drama +81387,12 Storeys (Shier lou) (1997),Comedy|Drama +81389,"Great Ecstasy of Robert Carmichael, The (2005)",Drama|Horror +81391,Eastern Plays (2009),Drama +81396,Bombshell (1933),Comedy|Drama|Romance +81403,"Gendarme Gets Married, The (Le gendarme se marie) (1968)",Comedy +81405,Zero Degrees of Separation (2005),Documentary +81411,Voyage to Cythera (Taxidi sta Kythira) (1984),Drama +81413,"Girlfriends, The (Le amiche) (1955)",Drama|Romance +81417,Paranormal Activity 2 (2010),Horror|IMAX +81427,Born to Raise Hell (2010),Action +81429,"Maze, The (2010)",Horror +81441,Mitä meistä tuli (2009),Crime|Drama|Thriller +81443,Counsellor at Law (1933),Drama +81445,Daughter from Danang (2002),Documentary|War +81447,"Smell of Camphor, Fragrance of Jasmine (Booye kafoor, atre yas) (2000)",Drama +81451,Night Wolf (2010),Action|Horror +81453,Dial 1119 (1950),Crime|Drama|Film-Noir +81456,Heartbeats (Les amours imaginaires) (2010),Drama|Romance +81495,"Countess, The (2009)",Drama|Thriller +81497,"Last American Hero, The (1973)",Action|Drama +81499,Tenderness (2009),Crime|Drama|Thriller +81512,Hereafter (2010),Drama|Fantasy +81516,Black Death (2010),Adventure|Drama|Horror|Mystery +81518,Afterwards (2008),Mystery +81520,Undisputed III: Redemption (2010),Action|Crime|Drama +81524,"Olsen Gang on the Track, The (Olsen-banden på sporet) (1975)",Comedy|Crime +81535,Saw VII 3D - The Final Chapter (2010),Horror|Mystery|Thriller +81537,Due Date (2010),Comedy +81546,Vacation from Marriage (1945),Drama|Romance +81548,Desire Under the Elms (1958),Drama|Romance +81562,127 Hours (2010),Adventure|Drama|Thriller +81564,Megamind (2010),Action|Animation|Children|Comedy|Sci-Fi|IMAX +81566,"Stranger in Me, The (Das Fremde in mir) (2008)",Drama +81568,"Fuehrer's Face, Der (1942)",Animation|War +81574,"Witch Who Came from the Sea, The (1976)",Horror|Thriller +81583,Quality Street (1937),Comedy|Drama|Romance +81585,Strike Up the Band (1940),Comedy|Musical|Romance +81587,Period of Adjustment (1962),Comedy|Drama +81589,"Singing Nun, The (1966)",Comedy|Drama +81591,Black Swan (2010),Drama|Thriller +81610,You'll Find Out (1940),Comedy|Horror|Musical|Mystery|Romance +81613,Bloodbrothers (1978),Drama +81615,Who Is Harry Kellerman and Why Is He Saying Those Terrible Things About Me? (1971),Comedy|Drama +81617,Tribute (1980),Comedy|Drama +81629,"Horse Boy, The (2009)",Documentary +81637,"Turtle's Tale: Sammy's Adventures, A (2010)",Adventure|Animation +81639,Jack Goes Boating (2010),Comedy|Romance +81641,Fair Game (2010),Drama|Thriller +81643,Flame of Barbary Coast (1945),Romance|Western +81646,Million Dollar Mermaid (1952),Drama|Musical +81656,Woman in the Moon (By Rocket to the Moon) (Frau im Mond) (1929),Comedy|Drama|Romance|Sci-Fi +81658,Flamingo Road (1949),Drama|Romance +81660,1990: The Bronx Warriors (1990: I guerrieri del Bronx) (1982),Action|Sci-Fi +81665,Deep End (1970),Comedy|Drama|Romance +81667,Ten Minutes Older: The Cello (2002),Drama|Musical|Romance|Sci-Fi +81669,"Castle, The (Das Schloß) (1997)",Drama|Mystery +81671,"Tramp, The (Awaara) (Awara) (1951)",Drama|Musical|Romance +81673,"Small Town, The (a.k.a. The Town) (Kasaba) (1997)",Drama +81676,United (2003),Comedy|Romance +81679,Roman (2006),Drama|Thriller +81681,I Shot Jesse James (1949),Drama|Romance|Western +81684,Comanche Station (1960),Western +81688,Habit (1995),Drama|Horror|Romance +81690,Ploy (2007),Drama +81698,'R Xmas (2001),Crime|Drama +81700,Ten Skies (2004),Documentary +81702,Lake Tahoe (2008),Drama +81704,Lourdes (2009),Drama +81708,Four Nights with Anna (Cztery noce z Anna) (2008),Crime|Drama|Thriller +81711,Scared Shrekless (2010),Adventure|Animation|Comedy +81725,How I Ended This Summer (Kak ya provyol etim letom) (2010),Drama +81727,Thieves by Law (Ganavim Ba Hok) (2010),Documentary +81733,Ménilmontant (1926),Comedy|Drama +81736,Hamlet (Gamlet) (1964),Drama +81738,"Older Brother, Younger Sister (Ani imôto) (1953)",Drama +81742,Witch Way Love (Un amour de sorcière) (1997),Comedy|Fantasy +81744,"King of Fighters, The (2010)",Action|Sci-Fi +81751,Uncle Boonmee Who Can Recall His Past Lives (Loong Boonmee raleuk chat) (2010),Drama|Fantasy +81753,"Magnetic Man, The (Magneettimies) (2009)",Documentary +81755,My Childhood (1972),Drama +81758,Faces of Schlock (2005),Comedy|Horror +81765,Playing from the Plate (Grajacy z talerza) (1995),Drama|Fantasy|Mystery +81768,"Man Who Could Work Miracles, The (1936)",Comedy|Fantasy +81770,"House, The (A Casa) (1997)",Drama +81782,Unstoppable (2010),Action|Drama|Thriller +81784,Morning Glory (2010),Comedy|Drama|Romance +81786,Certified Copy (Copie conforme) (2010),Drama +81788,"Next Three Days, The (2010)",Crime|Drama|Romance|Thriller +81791,Somewhere (2010),Drama +81795,Mein Leben - Marcel Reich-Ranicki (2009),Drama +81802,Agnosia (2010),Drama|Thriller +81804,Wild Target (2010),Comedy|Drama|Romance|Thriller +81806,Vlad Tepes (Vlad Ţepeş) (1979),Drama +81817,Carlos (2010),Crime|Drama|Thriller +81819,Biutiful (2010),Drama +81823,Katalin Varga (2009),Crime|Drama|Thriller +81825,Eden Is West (Eden à l'Ouest) (2009),Drama +81831,"First Beautiful Thing, The (La prima cosa bella) (2010)",Comedy|Drama +81834,Harry Potter and the Deathly Hallows: Part 1 (2010),Action|Adventure|Fantasy|IMAX +81845,"King's Speech, The (2010)",Drama +81847,Tangled (2010),Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX +81851,"Last Sunset, The (1961)",Western +81853,These Are the Damned (a.k.a. The Damned) (1963),Drama|Fantasy|Romance|Sci-Fi +81857,Maytime (1937),Drama|Musical|Romance +81859,Neptune's Daughter (1949),Comedy|Musical|Romance +81880,Wedding Belles (2007),Comedy|Drama +81898,"Agony and the Ecstasy of Phil Spector, The (2009)",Documentary +81906,Snow and Ashes (2010),Drama|Thriller|War +81908,Edge of America (2003),Drama +81910,"Art of the Steal, The (2009)",Documentary +81930,Toi et Moi (2006),Comedy|Drama|Romance +81932,"Fighter, The (2010)",Drama +81949,"Romantics, The (2010)",Comedy|Drama|Romance +81952,Feet First (1930),Comedy +81954,"Dorado, El (1988)",Drama +81957,"World Unseen, The (2007)",Drama|Romance +81959,"Dossier 51 (Dossier 51, Le) (1978)",Crime|Drama +81962,Three (Tri) (1965),Drama|War +81979,"Monk and the Fish, The (Le moine et le poisson) (1994)",Animation|Musical +81981,"Toy, The (Le jouet) (1976)",Comedy +81983,Bread and Alley (Nan va Koutcheh) (1970),Drama +81985,My Ain Folk (1973),Drama +81987,From the Clouds to the Resistance (Dalla nube alla resistenza) (1979),Drama +81989,"Devil, The (Diabel) (1972)",Drama|Horror +81991,Islander (2006),Drama +81993,Red: Werewolf Hunter (2010),Action|Fantasy|Horror +82003,"Rendez-vous d'Anna, Les (Meetings of Anna, The) (1978)",Drama +82005,"Extra Man, The (2010)",Comedy +82007,Ingeborg Holm (1913),Drama +82015,M (1951),Crime|Drama|Film-Noir|Thriller +82017,"Viking, The (1928)",Action|Adventure|Drama +82022,"Reef, The (2010)",Drama|Horror|Thriller +82026,Mendy: A Question of Faith (2003),Drama +82030,"Lesson in Love, A (En lektion i kärlek) (1954)",Comedy|Drama +82032,All These Women (För att inte tala om alla dessa kvinnor) (1964),Comedy +82037,"Tillman Story, The (2010)",Documentary +82041,"Loved Ones, The (2009)",Horror +82043,Little Red Flowers (Kan shang qu hen mei) (2006),Comedy|Drama +82045,Madam Satan (1930),Comedy|Musical|Romance +82047,"Sun Also Rises, The (Tai yang zhao chang sheng qi) (2007)",Drama +82049,"Hitch Hike (Autostop rosso sangue) (Naked Prey, The) (1977)",Adventure|Crime|Drama|Horror|Thriller +82051,Dishonored (1931),Drama|War +82053,Casino Jack (2010),Comedy|Crime +82055,"Devil to Pay!, The (1930)",Comedy|Romance +82059,Farewell (L'affaire Farewell) (2009),Thriller +82061,To Paint or Make Love (Peindre ou faire l'amour) (2005),Comedy +82063,Let it Rain (Parlez-moi de la pluie) (2008),Comedy|Drama +82066,London River (2009),Drama|Mystery +82068,Police (1985),Crime|Drama|Romance +82070,Underworld U.S.A. (1961),Crime|Drama +82093,London Boulevard (2010),Crime|Romance +82095,Skyline (2010),Sci-Fi|Thriller +82097,Karthik Calling Karthik (2010),Comedy|Drama|Thriller +82102,Sex & Drugs & Rock & Roll (2010),Comedy|Drama +82106,Last of the Red Hot Lovers (1972),Comedy|Romance +82108,Against the Current (2009),Drama +82110,October Country (2009),Documentary +82115,Home for Christmas (Hjem til jul) (2010),Drama +82119,The Reverse (2009),Comedy|Drama|Romance|Thriller +82121,"Verdict, The (1946)",Crime|Drama|Film-Noir|Mystery|Thriller +82123,Pay or Die (1960),Crime +82129,"Passionate Friends, The (a.k.a. One Woman's Story) (1949)",Drama +82131,Men in War (1957),Drama|War +82139,Not Forgotten (2009),Thriller +82141,"Brotherhood, The (1968)",Crime|Drama +82143,Alone in the Wilderness (2004),Documentary +82150,Bunny and the Bull (2009),Adventure|Comedy|Drama +82152,Beastly (2011),Drama|Fantasy|Romance +82154,Get Educated: Paathshaala (2010),Drama +82167,Love and Other Drugs (2010),Comedy|Drama|Romance +82169,"Chronicles of Narnia: The Voyage of the Dawn Treader, The (2010)",Adventure|Children|Fantasy +82173,Tiny Furniture (2010),Comedy +82175,Lovers of Hate (2010),Comedy +82179,"High Wind in Jamaica, A (1965)",Adventure|Drama +82182,If I Had a Million (1932),Comedy|Drama +82184,Killer McCoy (1947),Drama +82186,It's Alive 2: It Lives Again (1978),Horror +82188,"Man I Love, The (1947)",Crime|Drama|Thriller +82194,Track of the Cat (1954),Drama|Western +82196,Intruder in the Dust (1949),Drama +82202,"Tourist, The (2010)",Drama|Thriller +82227,"Man Called Peter, A (1955)",Drama +82235,"Story of Three Loves, The (1953)",Drama|Musical|Romance +82240,Suck (2009),Comedy|Horror|Musical +82242,Rare Exports: A Christmas Tale (Rare Exports) (2010),Action|Comedy +82244,13 (2010),Thriller +82261,Breaking the Maya Code (2008),Documentary +82269,Triple Agent (2004),Drama|Thriller +82271,Western (1997),Comedy|Romance +82274,Doppelganger (Dopperugengâ) (2003),Comedy|Thriller +82276,Days and Clouds (Giorni e nuvole) (2007),Drama +82280,Workingman's Death (2005),Documentary +82283,Secret Ceremony (1968),Drama|Thriller +82298,Buchanan Rides Alone (1958),Western +82300,Cotton Comes to Harlem (1970),Action|Comedy +82302,Dillinger Is Dead (Dillinger è morto) (1969),Crime|Drama +82304,"Mirror, The (Ayneh) (1997)",Drama +82306,"Student Prince in Old Heidelberg, The (1927)",Drama|Romance +82308,Illustrious Corpses (Cadaveri eccellenti) (1976),Crime|Mystery|Thriller +82311,Hands Across the Table (1935),Comedy|Romance +82313,Nightfall (1957),Crime|Drama|Film-Noir +82315,"Beau Serge, Le (1958)",Drama +82320,Fate (Yazgi) (2001),Drama +82322,"Father of My Children, The (Le père de mes enfants) (2009)",Drama +82324,Bal (Honey) (2010),Drama +82326,Seven Invisible Men (Septyni nematomi zmones) (2005),Drama +82328,One Fine Spring Day (Bomnaleun ganda) (2001),Drama +82330,"Blossoming of Maximo Oliveros, The (Ang pagdadalaga ni Maximo Oliveros) (2005)",Comedy|Drama +82332,"Outlaw and His Wife, The (a.k.a. You and I) (Berg-Ejvind och hans hustru) (1918)",Drama +82335,"Silent World, The (Le monde du silence) (1956)",Documentary +82337,Four Heads Are Better Than One (Un homme de tête) (1898),Fantasy +82353,Solo Sunny (1980),Drama|Musical|Romance +82356,Boy Interrupted (2008),Documentary +82358,Caribe (2004),Drama|Mystery|Romance +82360,Rammbock (2010),Drama|Horror +82362,"Pyramid of Triboulet, The (La pyramide de Triboulet) (1899)",Fantasy +82364,Conversation Piece (Gruppo di famiglia in un interno) (1974),Drama +82366,Hatchet II (2010),Comedy|Horror|Thriller +82368,Alabama's Ghost (1973),Horror +82370,"Master and Margaret, The (Il maestro e Margherita) (1972)",Drama|Fantasy|Romance +82378,All Good Things (2010),Drama|Mystery|Thriller +82380,Night Catches Us (2010),Drama|Romance +82382,"Interrogation, The (Kuulustelu) (2009)",Drama +82388,"Sergeant, The (1968)",Drama +82390,Different from the Others (Anders als die Andern) (1919),Drama +82393,Stray Dogs (Sag-haye velgard) (2004),Drama +82395,Saving Shiloh (2006),Children|Drama +82420,Pray the Devil Back to Hell (2008),Documentary +82438,Tali-Ihantala 1944 (2007),Action|Drama|War +82447,"Tomorrow, When the War Began (2010)",Action|Adventure|Drama +82449,I Love You Too (2010),Comedy +82452,Frozen (2007),Drama +82454,Days of Glory (1944),Drama|Romance|War +82459,True Grit (2010),Western +82461,Tron: Legacy (2010),Action|Adventure|Sci-Fi|IMAX +82463,Another Year (2010),Drama +82465,It's Alive III: Island of the Alive (1987),Comedy|Drama|Horror|Sci-Fi +82467,Forever Amber (1947),Drama +82469,Billy the Kid (1941),Drama|Western +82476,Interrupted Melody (1955),Drama|Musical +82491,Cooperstown (1993),Drama +82499,How Do You Know (2010),Comedy|Drama|Romance +82525,Nömadak TX (2006),Documentary|Musical +82527,Barney's Version (2010),Drama +82529,Soo (Art of Revenge) (2007),Action|Crime|Drama|Thriller +82531,One Foot in Heaven (1941),Drama +82534,"Company Men, The (2010)",Drama +82536,"Mad Miss Manton, The (1938)",Comedy|Crime|Mystery|Romance +82564,"Last of the Mohicans, The (1936)",Adventure|Drama|War +82567,Riffraff (1936),Crime|Drama +82581,Dying Breed (2008),Horror|Thriller +82584,The Great Waltz (1938),Drama|Musical|Romance +82589,Mother and Child (2009),Drama|Romance +82591,Adventures of Power (2008),Comedy|Musical +82593,How to Seduce Difficult Women (2009),Comedy +82595,Great Communist Bank Robbery (Marele jaf comunist) (2004),Documentary +82597,"Catered Affair, The (1956)",Comedy|Drama|Romance +82602,Titanic Town (1998),Drama +82606,Life in Flight (2008) ,Drama +82608,Zerophilia (2005),Comedy|Romance +82631,Duelist (Hyeongsa) (2005),Action|Mystery +82633,"Kuroneko (Black Cat from the Grove, The) (Yabu no naka no kuroneko) (1968)",Drama|Fantasy|Horror|Romance +82635,Glue (2006),Drama +82638,Under the Sun of Satan (Sous le soleil de Satan) (1987),Drama +82641,"One-Armed Swordsman, The (Dubei dao) (1967)",Action|Drama +82643,Top of the Food Chain (a.k.a. Invasion!) (1999),Comedy|Horror|Sci-Fi +82667,I Saw the Devil (Akmareul boatda) (2010),Crime|Thriller +82669,"Night Train Murders (Last Stop on the Night Train) (Ultimo treno della notte, L') (1975)",Horror|Thriller +82671,7 Virgins (7 vírgenes) (2005),Crime|Drama +82673,Unmade Beds (2009),Comedy|Drama +82676,Hannie Caulder (1971),Comedy|Crime|Drama|Western +82678,"Breach, The (Rupture, La) (1970)",Drama|Thriller +82680,Stars in My Crown (1950),Drama|Western +82682,Mickey One (1965),Crime|Drama +82684,Trash Humpers (2009),Drama +82705,"Desert of the Tartars, The (Deserto dei Tartari, Il) (1976)",Drama|War +82711,Valley of the Bees (Údolí vcel) (1968),Drama +82715,Morsian yllättää (1941),Comedy +82722,"Sarah, Plain and Tall (1991)",Children|Drama +82732,New York Confidential (1955),Crime|Drama|Film-Noir +82744,Faster (2010),Action|Crime|Drama +82747,"Insect Woman, The (Nippon konchûki) (1963)",Drama +82749,Pigs and Battleships (Hogs and Warships) (The Flesh Is Hot) (Buta to gunkan) (1961),Comedy|Crime|Drama +82751,From B Movie to Cult Film: Western (2005),Adventure|Documentary +82753,Life As a Fatal Sexually Transmitted Disease (Zycie jako smiertelna choroba przenoszona droga plciowa) (2000),Drama +82759,On the Silver Globe (Na srebrnym globie) (1988),Sci-Fi +82765,Little Big Soldier (Da bing xiao jiang) (2010),Action|Adventure|Comedy|Drama|War +82767,Rabbit Hole (2010),Drama +82770,Nights and Weekends (2008),Drama +82834,Elena and Her Men (Paris Does Strange Things) (Elena et les hommes) (1956),Comedy|Drama|Romance +82836,"Life of Reilly, The (2006)",Comedy +82840,"Home Song Stories, The (2007)",Drama +82848,One Week (1920),Comedy +82850,Convict 13 (1920),Comedy +82852,Little Fockers (2010),Comedy +82854,Gulliver's Travels (2010),Adventure|Comedy|Fantasy +82857,Sweetgrass (2009),Adventure|Documentary|Western +82902,Chori Chori Chupke Chupke (2001),Drama|Romance +82906,Baghban (2003),Drama|Romance +82909,Take the High Ground! (1953),Comedy|Drama|War +82911,"Cowboy and the Lady, The (1938)",Comedy|Drama|Romance|Western +82915,"Tiger's Tail, The (2006)",Comedy|Crime|Drama|Mystery|Thriller +82917,Blood and Concrete (Blood & Concrete: A Love Story) (1991),Comedy|Crime +82920,Thirst (a.k.a. Three Strange Loves) (Törst) (1949),Drama +82926,Klown: The Movie (Klovn) (2010),Comedy +82928,Nude Nuns with Big Guns (2010),Action|Comedy +82931,"Last Circus, The (Balada triste de trompeta) (Sad Trumpet Ballad, A) (2010)",Comedy|Drama|War +82934,"Most Dangerous Man in America: Daniel Ellsberg and the Pentagon Papers, The (2009)",Documentary +82976,"Scarecrow, The (1920)",Comedy +82978,Neighbors (1920),Comedy +82980,Mujhse Shaadi Karogi (2004),Comedy|Romance +82982,Primrose Path (1940),Drama +82984,Mission to Moscow (1943),Drama|War +83006,"Scientist, The (2010)",Drama +83034,Death of a Salesman (1951),Drama +83038,Disco Dancer (1983),Action|Musical|Romance +83049,Toothless (1997),Children|Comedy +83056,Topper Takes a Trip (1938),Comedy|Fantasy|Romance +83059,White Material (2009),Drama|Mystery|Thriller|War +83067,And Soon the Darkness (2010),Horror|Thriller +83071,"North Star, The (1943)",Drama|Musical|Romance|War +83082,Mao's Last Dancer (2009),Drama +83086,Burlesque (2010),Drama|Musical|Romance +83089,Violet Tendencies (2010),Comedy|Drama|Romance +83096,"Haunted House, The (1921)",Comedy +83115,"Polar Bear King, The (Kvitebjørn Kong Valemon) (1991)",Adventure|Children|Fantasy +83132,"Secret World of Arrietty, The (Kari-gurashi no Arietti) (2010)",Animation|Children|Fantasy +83134,Tucker & Dale vs Evil (2010),Comedy|Horror +83138,Erasing David (2010),Documentary +83140,"Woman Hunted, A (2003)",Crime|Drama|Thriller +83158,Malice in Wonderland (2009),Drama|Fantasy|Romance +83161,Deadly Delicious (Shuang Shi Ji) (2008),Drama|Mystery +83163,Princess Aurora (Orora gongju) (2005),Crime|Drama|Mystery +83177,Yogi Bear (2010),Children|Comedy +83180,Countdown to Zero (2010),Documentary +83184,Breathless (Ddongpari) (2009),Crime|Drama +83186,"Django, Kill... If You Live, Shoot! (Se sei vivo spara) (1967)",Horror|Western +83189,Merrill's Marauders (1962),Adventure|Drama|War +83193,Early Spring (Soshun) (1956),Drama +83219,"Pixar Story, The (2007)",Documentary +83222,Trouble in Mind (1985),Crime|Drama +83225,Cochochi (2007),Drama +83227,L.627 (1992),Crime|Drama|Thriller +83232,White Wedding (Noce blanche) (1989),Drama|Romance +83241,Embodiment of Evil (Encarnação do Demônio) (2008),Mystery +83244,"It's Not Me, I Swear! (C'est pas moi, je le jure!) (2008)",Comedy|Drama +83246,Navajo Joe (1966),Western +83248,This Night I'll Possess Your Corpse (Esta Noite Encarnarei no Teu Cadáver) (1967),Horror +83250,Bad Ronald (1974),Drama|Horror|Thriller +83256,"State Witness, The (Swiadek koronny) (2007)",Action|Crime|Drama +83258,C(r)ook (Basta - Rotwein Oder Totsein) (2004),Comedy +83260,Hardcover (2008),Comedy +83264,Band Baaja Baaraat (2010),Comedy|Drama|Musical +83266,Kaho Naa... Pyaar Hai (2000),Action|Adventure|Comedy|Drama|Mystery|Romance|Thriller +83270,Made in Dagenham (2010),Comedy|Drama +83273,Smoke on the Potato Fields (Dým bramborové nate) (1977),Drama +83275,Mág (1988),Drama +83277,Last Days of Mussolini (Mussolini: Ultimo atto) (1974),Drama|War +83279,Samoure (2005),Drama +83281,"Family Jewels, The (Eierdiebe) (2003)",Comedy|Drama|Romance +83291,"Order of Myths, The (2008)",Documentary +83293,Waste Land (2010),Documentary +83295,Paternity (1981),Comedy|Romance +83302,Last Night (2010),Drama|Romance +83308,Asphalt (1929),Drama +83310,Harlan: In the Shadow of Jew Suess (Harlan - Im Schatten von Jud Süss) (2006),Documentary +83316,"Bingo Long Traveling All-Stars & Motor Kings, The (1976)",Comedy +83318,"Goat, The (1921)",Comedy +83320,Skidoo (1968),Comedy +83322,"Boat, The (1921)",Comedy +83332,Who Is Harry Nilsson (And Why Is Everybody Talkin' About Him?) (2010),Documentary +83334,Train (2008),Horror|Thriller +83337,Mujhse Dosti Karoge! (2002),Drama|Romance +83339,Main Prem Ki Diwani Hoon (2003),Comedy|Drama|Romance +83343,Mister 880 (1950),Comedy +83345,"Bread, Love and Dreams (Pane, amore e fantasia) (1953)",Comedy|Romance +83349,"Green Hornet, The (2011)",Action|Comedy|Crime|Fantasy|Thriller|IMAX +83351,The Miracle of Our Lady of Fatima (1952),Drama +83357,A Gathering of Eagles (1963),Drama|Romance +83359,"Play House, The (1921)",Comedy +83361,"Paleface, The (1922)",Comedy +83369,"Way Back, The (2010)",Drama +83374,"Warrior's Way, The (2010)",Action|Fantasy|Western +83376,Disraeli (1929),Drama +83381,Seven Thieves (1960),Crime|Drama +83385,Handsome Harry (2009),Crime|Drama +83389,Jacques Brel Is Alive and Well and Living in Paris (1975),Musical +83411,Cops (1922),Comedy +83415,Agony (a.k.a. Rasputin) (Agoniya) (1981),Drama +83417,Canciones de amor en Lolita's Club (2007),Drama +83424,Ghajini (2008),Action|Romance|Thriller +83430,Fool N Final (2007),Action|Comedy|Romance +83435,"Hatful of Rain, A (1957)",Drama +83437,"Young in Heart, The (1938)",Comedy|Drama +83439,Toys in the Attic (1963),Drama +83446,Orchestra Wives (1942),Musical +83448,Attack on Leningrad (2009),Drama|War +83450,Brest Fortress (Brestskaya krepost) (2010),Action|Drama|War +83457,Hum Aapke Hain Koun...! (1994),Comedy|Drama|Musical +83464,Only Two Can Play (1962),Comedy|Drama +83468,Chinaman (Kinamand) (2005),Drama +83478,Ong-Bak 3: The Final Battle (Ong Bak 3) (2010),Action +83480,Season of the Witch (2011),Adventure|Drama|Fantasy +83525,Outrage (Autoreiji) (2010),Crime|Drama +83527,Madeinusa (2006),Drama +83529,Hamsun (1996),Drama|War +83531,"Two of Us, The (Le vieil homme et l'enfant) (1967)",Comedy|Drama +83533,Lola and Billy the Kid (Lola + Bilidikid) (1999),Drama +83535,"Princess and the Goblin, The (1992)",Animation|Fantasy +83538,"Léon Morin, Priest (Léon Morin, prêtre) (1961)",Drama +83540,"Silence of the Sea, The (Le silence de la mer) (1949)",Drama|Romance|War +83556,Stella (2008),Drama +83558,On the Occasion of Remembering the Turning Gate (Saenghwalui balgyeon) (2002),Drama +83560,Macario (1960),Drama|Fantasy|Mystery +83562,Will It Snow For Christmas? (Y'aura-t-il de la neige à Noël?) (1996),Drama +83569,Eros Plus Massacre (Erosu purasu Gyakusatsu) (1969),Drama +83575,"Muertos, Los (2004)",Drama +83577,Spy in Black (1939),Thriller|War +83581,"Marrying Kind, The (1952)",Comedy|Drama +83583,Distance (2001),Drama +83585,It's Alive (2008),Horror +83588,"I Love You, I Love You (Je t'aime je t'aime) (1968)",Drama|Sci-Fi +83590,Zotz! (1962),Comedy|Fantasy|Horror +83592,"Letter, The (La lettre) (1999)",Drama +83601,Amer (2009),Drama|Horror +83603,Fern flowers (Fleur de fougère) (1949),Animation +83607,Manon (1949),Crime|Drama +83613,Cowboys & Aliens (2011),Action|Sci-Fi|Thriller|Western|IMAX +83616,"Real McCoy, The (1999)",Drama +83619,Just Like Me (Igualita a Mi) (2010),Comedy|Romance +83652,Emma's Bliss (Emmas Glück) (2006),Drama|Romance +83654,Don't Think About It (Non Pensarci) (2007),Comedy|Drama +83656,Tango Kabaree (2001),Comedy|Drama +83658,Jackpot 2 (1982),Sci-Fi +83660,Trog (1970),Horror|Sci-Fi +83662,Spring Fever (1927),Comedy|Romance +83664,Riot on Sunset Strip (1967),Drama +83760,V2: Dead Angel (Vares 2 - Jäätynyt Enkeli) (2007),Action|Comedy|Crime +83763,My Wife's Relations (1922),Comedy +83765,"Blacksmith, The (1922)",Comedy +83767,"Naked Edge, The (1961)",Thriller +83773,Away with Words (San tiao ren) (1999),(no genres listed) +83777,"Strongest Man in the World, The (1975)",Comedy|Fantasy +83789,Siete minutos (Seven Minutes) (2009),Comedy +83791,Gung Ho! (Gung Ho!: The Story of Carlson's Makin Island Raiders) (1943),Drama|War +83796,Anything for Her (Pour elle) (2008),Crime|Drama|Thriller +83798,Cracks (2009),Drama|Romance|Thriller +83801,"Film Unfinished, A (Shtikat Haarchion) (2010)",Documentary|Drama +83803,Day & Night (2010),Animation|Children +83807,"Russell Peters: Red, White and Brown (2008)",Comedy|Documentary +83809,Russell Peters: Outsourced (2006),Comedy|Documentary +83819,Plymouth Adventure (1952),Adventure|Drama|Romance +83821,"Happy Ending, The (1969)",Drama +83823,Visit to a Small Planet (1960),Comedy|Sci-Fi +83825,Kismet (1944),Adventure|Fantasy +83827,Marwencol (2010),Documentary +83831,"Story of Dr. Wassell, The (1944)",Action|Adventure|Drama|Romance|War +83833,Street Angel (1928),Drama +83835,"Frozen North, The (1922)",Comedy +83837,"Electric House, The (1922)",Comedy +83842,"Edge, The (Kray) (2010)",Adventure|Drama|Romance +83897,"Living Wake, The (2007)",Comedy +83910,"Dilemma, The (2011)",Comedy|Drama +83912,Frankie and Alice (2010),Drama +83916,Blues in the Night (1941),Drama|Film-Noir|Musical +83918,"Gorgeous Hussy, The (1936)",Drama +83920,Pete 'n' Tillie (1972),Comedy|Drama +83923,Wicked Little Things (2006),Horror +83927,Lucky Jordan (1942),Comedy|Crime|Drama +83956,Om Jai Jagadish (2002),Drama +83962,Daydreams (1922),Comedy +83969,Down Argentine Way (1940),Comedy|Drama|Romance +83972,"Europeans, The (1979)",Drama|Romance +83974,My Dear Secretary (1948),Comedy|Romance +83976,"Trip, The (2010)",Comedy|Drama +83978,Walt & El Grupo (2008),Documentary +83986,Good Time Max (2007),Drama +84015,Gravity (Schwerkraft) (2009),Crime|Drama|Romance +84017,2012: Time for Change (2010),Animation|Documentary +84019,Cool It (2010),Documentary +84047,Eight Miles High (Das wilde Leben) (2007),Drama +84090,Treeless Mountain (2008),Drama +84092,Decision at Sundown (1957),Western +84094,Beware of a Holy Whore (Warnung vor einer heiligen Nutte) (1971),Comedy|Drama +84096,Kisses (2008),Drama +84098,Phone Call from a Stranger (1952),Drama +84100,Throw Down (Yau doh lung fu bong) (2004),Drama +84103,Congorama (2006),Comedy|Drama +84111,"Nun, The (La religieuse) (1966)",Drama +84114,"S21: The Khmer Rouge Death Machine (S-21, la machine de mort Khmère rouge) (2003)",Documentary|War +84116,Poetry (Shi) (2010),Drama +84118,Birdwatchers (BirdWatchers - La terra degli uomini rossi) (2008),Drama +84120,Wittgenstein (1993),Comedy|Drama +84122,History Is Made at Night (1937),Drama|Romance +84125,Monte Carlo (1930),Comedy|Musical|Romance +84128,"Tuesday, After Christmas (Marti, dupa craciun) (2010)",Drama|Romance +84131,City of Pirates (La ville des pirates) (1983) ,Drama|Fantasy +84133,Short Night of the Glass Dolls (La corta notte delle bambole di vetro) (1971),Horror|Mystery|Thriller +84137,"Housemaid, The (Hanyo) (2010)",Thriller +84140,Message from Space (Uchu Kara no Messeji) (Return to Jelucia) (1978),Action|Adventure|Sci-Fi +84148,Five (1951),Drama|Horror|Sci-Fi +84150,"Prowler, The (1951)",Drama|Film-Noir|Thriller +84152,Limitless (2011),Sci-Fi|Thriller +84156,Happy People: A Year in the Taiga (2010),Documentary +84158,Craig's Wife (1936),Drama +84160,Wishful Drinking (2010),Documentary +84162,"One and Only, The (2002)",Comedy|Romance +84164,Brute (Bandyta) (1998),Drama +84173,Ca$h (2008),Action|Comedy|Crime|Thriller +84176,Waxworks (Das Wachsfigurenkabinett) (1924),Comedy|Drama|Romance|Thriller +84178,Jew Süss (Jud Süß) (1940),Drama +84181,Shogun's Ninja (Ninja bugeicho momochi sandayu) (1980),Action|Adventure|Drama +84183,Makai Tensho: Samurai Reincarnation (Makai tenshô) (1981),Action|Fantasy|Horror +84187,Evangelion: 2.0 You Can (Not) Advance (Evangerion shin gekijôban: Ha) (2009),Action|Animation|Drama|Sci-Fi +84189,I Spit on Your Grave (2010),Crime|Horror|Thriller +84223,Mademoiselle Chambon (2009),Drama|Romance +84226,First Love (2004),Drama|Romance +84228,"Girl by the Lake, The (La ragazza del lago) (2007)",Drama|Mystery|Thriller +84230,"Balloonatic, The (1923)",Comedy +84232,"Love Nest, The (1923)",Comedy +84234,Simple Simon (I rymden finns inga känslor) (2010),Comedy|Drama +84236,"White Stripes Under Great White Northern Lights, The (2009)",Documentary +84238,Aankhen (2002),Comedy|Crime|Thriller +84242,Welcome to the Rileys (2010),Drama +84246,It Happened on Fifth Avenue (1947),Comedy|Romance +84248,"Organizer, The (I compagni) (1963)",Crime|Drama +84250,Christmas Holiday (1944),Drama|Film-Noir +84252,Back Street (1961),Drama +84258,Up in Arms (1944),Comedy|Musical +84260,"Traveler, The (2010)",Horror|Thriller +84262,Chain Letter (2009),Horror|Mystery|Thriller +84273,Zeitgeist: Moving Forward (2011),Documentary +84279,Look What's Happened to Rosemary's Baby (a.k.a. Rosemary's Baby II) (1976),Drama|Horror +84281,"Great Stone Face, The (1968)",Documentary +84283,Speed & Angels (2008),Documentary|Drama +84291,Torch Song (1953),Drama|Romance +84293,Of Human Hearts (1938),Drama +84296,Princess O'Rourke (1943),Comedy|Romance +84298,Trial (1955),Drama +84300,"Whisperers, The (1967)",Drama|Thriller +84302,And Now My Love (Toute une vie) (1974),Drama|Romance +84304,What Women Want (a.k.a. I Know a Woman's Heart) (2011),Comedy|Romance +84312,Home Alone 4 (2002),Children|Comedy|Crime +84334,"Rich, Young and Pretty (1951)",Comedy|Musical|Romance +84372,"Rains of Ranchipur, The (1955)",Adventure|Drama|Romance +84374,No Strings Attached (2011),Comedy|Romance +84387,Boogie Woogie (2009),Comedy|Drama +84392,"Lincoln Lawyer, The (2011)",Crime|Drama|Thriller +84395,"Rite, The (2011)",Drama|Horror|Thriller +84407,Dog Pound (2010),Drama +84436,Less is More (Menos es más) (2000),Comedy +84444,And Everything Is Going Fine (2010),Documentary +84446,Eccentricities of a Blonde-haired Girl (Singularidades de uma Rapariga Loura) (2009),Drama|Romance +84448,The Law of the Weakest (2006),Crime|Drama|Thriller +84450,Tale of Cinema (Geuk jang jeon) (2005),Drama +84453,"Little Thief, The (Le petit voleur) (1999)",Drama +84455,Hadewijch (2009),Drama +84467,High and Dry (1954),Comedy +84469,"Devil's Playground, The (1976)",Drama +84471,Mysterious Object at Noon (Dokfa nai meuman) (2000),Drama|Mystery +84473,Little Soldier (Lille soldat) (2008),Drama +84475,"Rise and Fall of Legs Diamond, The (1960)",Crime +84477,"Day a Pig Fell Into the Well, The (Daijiga umule pajinnal) (1996)",Drama +84479,Remember My Name (1978),Drama|Thriller +84481,Who's Camus Anyway? (Kamyu nante shiranai) (2005),Drama +84483,"Magic Gloves, The (Los guantes mágicos) (2003)",Comedy|Drama +84485,Riot in Cell Block 11 (1954),Drama +84496,Nickelodeon (1976),Comedy +84498,Lucky Lady (1975),Comedy|Drama +84500,Seventh Horse of the Sun (Suraj Ka Satvan Ghoda) (1993),Drama|Romance +84502,"World According to Sesame Street, The (2006)",Documentary|War +84504,Raja (2003),Drama +84506,Silent Souls (Ovsyanki) (2010),Drama +84508,The Raid (1954),Action|Drama|War +84510,Belphecor: Curse of the Mummy (Belphégor - Le fantôme du Louvre) (2001),Fantasy|Horror|Mystery +84512,Girls About Town (1931),Comedy +84523,Kill! (Kiru) (1968),Action|Comedy|Drama +84529,Thirty-Five Something (Tout pour plaire) (2005),Comedy +84532,Tyler Perry's For Colored Girls (2010),Drama +84534,Kolberg (1945),Drama|War +84551,44500 Max (2009),Documentary +84553,Pekka ja Pätkä salapoliiseina (1957),Comedy +84555,Slave Ship (1937),Adventure|Drama +84557,From Prada to Nada (2011),Comedy|Romance +84559,Young Aphrodites (Mikres Afrodites) (1963),Drama|Romance +84565,Legend of the Eight Samurai (Satomi hakken-den) (1983),Action|Adventure|Drama|Fantasy +84567,Ninja Wars (Iga ninpôchô) (1984),Action|Fantasy +84570,Country Strong (2010),Drama|Musical|Romance +84601,Unknown (2011),Drama|Mystery|Thriller +84613,Sanctum (2011),Action|Adventure|Drama|Thriller|IMAX +84615,Cedar Rapids (2011),Comedy +84619,Tongan Ninja (2002),Action|Adventure|Comedy +84621,Mirrors 2 (2010),Horror|Mystery|Thriller +84637,Gnomeo & Juliet (2011),Adventure|Animation|Children|Comedy|Fantasy|Romance +84639,Saps at Sea (1940),Comedy +84641,Skippy (1931),Comedy|Drama +84643,Allegheny Uprising (1939),Action|Adventure|Western +84646,All the Brothers Were Valiant (1953),Adventure|Drama|Romance +84648,Ulysses (1967),Drama +84660,"Misadventures of Margaret, The (1998)",Comedy|Romance +84663,Elizabeth I (2005),Drama +84665,Pepe (1960),Comedy|Musical +84667,When Ladies Meet (1941),Comedy|Drama|Romance +84669,Lloyds of London (1936),Drama|Romance|War +84671,Libel (1959),Drama +84680,My Foolish Heart (1949),Drama +84682,"Luck of the Irish, The (1948)",Comedy|Fantasy|Romance +84686,Trader Horn (1931),Adventure|Romance +84689,They Gave Him A Gun (1937),Crime|Drama +84691,Rage in Heaven (1941),Drama|Thriller +84696,Burke and Hare (2010),Comedy|Thriller +84714,Hands of the Ripper (1971),Horror|Thriller +84730,Army of Crime (L'armée du crime) (2009),Drama|Thriller|War +84732,Vanishing on 7th Street (2010),Horror|Mystery|Thriller +84734,Old Man Made in Spain (Abuelo made in Spain) (1969),Comedy +84736,Tuareg: The Desert Warrior (Tuareg - Il guerriero del deserto) (1984),Action|Adventure +84738,Slaughter (2009),Horror|Thriller +84740,Open House (2010) ,Crime|Drama|Thriller +84764,Werewolves on Wheels (1971),Horror +84766,Fantasma (2006),Drama +84768,Glitterbug (1994),(no genres listed) +84770,Client 9: The Rise and Fall of Eliot Spitzer (2010),Documentary +84772,Paul (2011),Adventure|Comedy|Sci-Fi +84775,Submarino (2010),Drama +84777,All the Colors of the Dark (1972),Horror|Mystery|Thriller +84779,Inspector Bellamy (Bellamy) (2009),Crime|Drama +84781,"Notorious Landlady, The (1962)",Comedy|Mystery +84792,Szamanka (1996),Drama|Horror|Mystery +84794,What Is It? (2005),Drama +84796,"8 Diagram Pole Fighter, The (a.k.a. Invincible Pole Fighter) (Wu Lang ba gua gun) (1984)",Action|Drama +84799,"Asphyx, The (1973)",Horror|Sci-Fi +84801,Sut (Milk) (2008),Drama +84805,Midnight Movies: From the Margin to the Mainstream (2005),Documentary +84807,Hideaway (2009),Drama +84829,Three Crowns of the Sailor (Les trois couronnes du matelot) (1983),Drama|Fantasy +84832,Don Quixote (Don Quijote de Orson Welles) (1992),Drama +84834,Three Kingdoms: Resurrection of the Dragon (Saam gwok dzi gin lung se gap) (2008),Action|Drama|War +84836,"Spiders, Part 2: The Diamond Ship, The (Die Spinnen, 2. Teil - Das Brillantenschiff) (1920)",Action|Adventure|Drama +84838,Harakiri (1919),Drama +84844,Brother 2 (Brat 2) (2000),Crime|Drama +84852,Judith of Bethulia (1914),Drama +84855,Desert Flower (2009),Drama +84857,Adrift in Tokyo (Tenten) (2007),Comedy|Drama +84859,"Cold Light of Day, The (1996)",Drama|Thriller +84861,"Jimmy Rosenberg: The Father, the Son & the Talent (2006)",Documentary +84863,Spider Lilies (Ci qing) (2007),Drama|Romance +84871,At Long Last Love (1975),Comedy|Musical|Romance +84876,Bungee Jumping of Their Own (Beonjijeompeureul hada) (2001),Drama|Romance +84880,"Infidel, The (2010)",Comedy +84884,"Feuerzangenbowle, Die (1944)",Comedy +84886,"Rothschilds, The (Die Rothschilds) (1940)",Drama +84890,Incantato (Il cuore altrove) (2003),Comedy|Drama|Romance +84894,Run of the Arrow (1957),Western +84942,Drive Angry (2011),Action|Fantasy|Thriller +84944,Rango (2011),Action|Adventure|Animation|Children|Comedy|Western +84948,Thunder Bay (1953),Adventure +84950,Take Me Home Tonight (2011),Comedy|Drama +84952,Confessions (Kokuhaku) (2010),Drama|Horror +84954,"Adjustment Bureau, The (2011)",Romance|Sci-Fi|Thriller +84957,"Tempest, The (2010)",Comedy|Drama|Fantasy|Romance +84961,Tycoon (1947),Adventure|Drama|Romance +84963,Journey for Margaret (1942),Drama|War +84972,God on Trial (2008),Drama +84974,Holokaustin värit (2010),Documentary|War +84976,Chronicle of the Years of Fire (Chronique des années de braise) (1975),Drama +84978,"Long Absence, The (Une aussi longue absence) (1961)",Drama +84983,Edge of Darkness (1943),Drama|War +84985,"Magus, The (1968)",Drama|Fantasy|Mystery +84987,Elvis on Tour (1972),Documentary|Musical +84989,Italianamerican (1974),Documentary +84996,Presumed Guilty (Presunto culpable) (2008),Crime|Documentary +85007,Happythankyoumoreplease (2010),Comedy|Drama +85010,Background to Danger (1943),Drama|Thriller|War +85012,"Given Word, The (O Pagador de Promessas) (1962)",Drama +85014,Autumn Leaves (1956),Drama +85016,Cropsey (2009),Documentary|Horror +85020,"Mechanic, The (2011)",Action|Drama|Thriller +85022,Hall Pass (2011),Comedy +85025,"Eagle, The (2011)",Adventure|Drama +85056,I Am Number Four (2011),Action|Sci-Fi|Thriller|IMAX +85070,Blackout (2007),Drama +85072,"Wild and Wonderful Whites of West Virginia, The (2009)",Documentary +85106,"Assassin Next Door, The (Kirot) (2009)",Action|Film-Noir|Thriller +85108,Lakota Woman: Siege at Wounded Knee (1994),Drama +85129,71: Into The Fire (Pohwasogeuro) (2010),War +85131,Battle: Los Angeles (2011),Action|Sci-Fi|War +85133,"Burn, Witch, Burn (Night of the Eagle) (1962)",Horror +85140,"Perfect Gentleman, The (1935)",Comedy|Drama|Romance +85143,Adam Had Four Sons (1941),Drama|Romance +85175,Liliom (1934),Drama|Fantasy +85177,$ (Dollars) (1971),Comedy|Crime|Drama +85179,Summer Wars (Samâ wôzu) (2009),Adventure|Animation|Comedy|Sci-Fi +85190,Public Speaking (2010),Documentary +85203,Liliom (1930),Drama|Fantasy +85205,"Merry Widow, The (1925)",Drama|Romance +85207,Yellow Fangs (1990),Action|Adventure +85209,Rasen (1998),Drama|Fantasy|Horror|Mystery|Thriller +85211,Norwegian Wood (Noruwei no mori) (2010),Drama|Romance +85213,"Sunset Limited, The (2011)",Drama +85215,Ninja Cheerleaders (2008),Action|Comedy +85226,"Janky Promoters, The (2009)",Comedy|Crime|Musical +85231,Twenty-Four Eyes (Nijûshi no hitomi) (1954),Drama +85259,Winnie the Pooh and the Honey Tree (1966),Animation|Children +85261,Mars Needs Moms (2011),Action|Adventure|Animation|Children|Comedy|Sci-Fi|IMAX +85268,Scooby-Doo! The Mystery Begins (2009),Comedy|Fantasy|Mystery +85270,Twisted Nerve (1968),Crime|Drama|Horror|Thriller +85273,Crude (2009),Documentary +85275,Uncounted: The New Math of American Elections (2008),Documentary +85278,"City of Your Final Destination, The (2009)",Drama +85284,Anna Madelina (Ngon na ma dak lin na) (1998),Comedy|Romance +85291,Fubar II (Fubar: Balls to the Wall) (2010),Comedy +85293,"Bannen Way, The (2010)",Action|Comedy|Crime|Thriller +85295,Scooby-Doo! Curse of the Lake Monster (2010),Adventure|Children|Comedy|Mystery +85298,Black Lightning (Chernaya Molniya) (2009),Action|Adventure|Sci-Fi +85305,Holy Rollers (2010),Crime|Drama +85307,Medicine for Melancholy (2008),Drama|Romance +85309,Summer Holiday (1948),Musical +85312,"House of Small Cubes, The (Tsumiki no ie) (2008)",Animation|Drama +85316,Winnie the Pooh and Tigger Too (1974),Animation|Children +85319,Mandabi (The Money Order) (1968),Drama +85323,In the City (En la ciudad) (2003),Drama +85325,"County Teacher, The (Venkovský ucitel) (2008)",Drama +85327,Trapped Ashes (2006),Horror +85332,Closing the Ring (2007),Drama|Romance +85334,Hard Ticket to Hawaii (1987),Action|Comedy +85342,Elite Squad: The Enemy Within (Tropa de Elite 2 - O Inimigo Agora É Outro) (2010),Action|Crime|Drama +85354,Mesrine: Public Enemy #1 (L'ennemi public n°1) (2008),Action|Crime +85358,"Last Lovecraft: Relic of Cthulhu, The (2009)",Comedy|Horror +85362,Herb & Dorothy (2008),Documentary +85365,"Wildest Dream, The (2010)",Documentary +85367,Just Go with It (2011),Comedy|Romance +85369,For Love of Ivy (1968),Comedy|Drama|Romance +85372,Potiche (2010),Comedy +85374,Emma (1932),Comedy|Drama|Romance +85378,Mother Carey's Chickens (1938),Drama|Romance +85387,Chang: A Drama of the Wilderness (1927),Adventure|Documentary +85389,Mannequin (1937),Drama +85392,Just Buried (2008),Comedy|Drama|Romance +85394,Cave of Forgotten Dreams (2010),Documentary +85397,Red Riding Hood (2011),Fantasy|Horror|Mystery|Thriller +85399,"Big Mommas: Like Father, Like Son (2011)",Comedy +85401,Super (2010),Action|Comedy|Drama +85403,"Little Night Music, A (1977)",Comedy|Musical|Romance +85412,"Troll Hunter, The (Trolljegeren) (2010)",Fantasy|Horror +85414,Source Code (2011),Action|Drama|Mystery|Sci-Fi|Thriller +85438,Jane Eyre (2011),Drama|Romance +85440,Smilin' Through (1932),Drama|Romance +85442,Children of the Decree (Das Experiment 770 - Gebären auf Befehl) (2005),Documentary +85450,Casanova Brown (1944),Comedy +85453,Kind Lady (1951),Drama|Thriller +85476,Wild Is the Wind (1957),Drama +85503,Streetballers (2009),Drama +85505,X Games 3D: The Movie (2009),Documentary +85510,Sucker Punch (2011),Action|Fantasy|Thriller|IMAX +85527,Putty Hill (2010),Drama +85538,That Evening Sun (2009),Drama +85540,Essential Killing (2010),Thriller|War +85542,Map of the Sounds of Tokyo (2009),Drama|Thriller +85544,Bye Bye Brazil (Bye Bye Brasil) (1980),Drama +85547,"Hugh Hefner: Playboy, Activist and Rebel (2009)",Documentary +85549,"Mourning Forest, The (Mogari no mori) (2007)",Drama +85552,Journey to the Sun (Günese yolculuk) (1999),Drama +85555,"Kings of Mykonos, The (2010)",Comedy +85565,Chalet Girl (2011),Comedy|Romance +85567,"Letzte schöne Herbsttag, Der (2010)",Comedy|Drama|Romance +85570,"Die Is Cast, The (La suerte está echada) (2005)",Comedy +85576,Alibi (1929),Crime|Drama +85585,Winnie the Pooh and a Day for Eeyore (1983),Animation|Children +85609,The Good Shepherd (2004),Drama|Thriller +85616,Games (1967),Thriller +85618,Noah's Ark (1928),Drama|War +85624,Bohemian Eyes (Boheemi elää - Matti Pellonpää) (2011),Documentary +85626,Beyond Enemy Lines (Framom främsta linjen) (2004),Drama|War +85689,Otaku (1994),Documentary +85691,Reconstruction (Anaparastasi) (1970),Crime|Drama +85694,Diamond Girl (1998),Drama|Romance +85728,"Second Civil War, The (1997)",Comedy|Drama +85734,Don't You Forget About Me (2009),Documentary +85738,Twilight of a Woman's Soul (Sumerki zhenskoi dushi) (1913),Drama +85740,"Dying Swan, The (Umirayushchii lebed) (1917)",Drama +85744,Sube y Baja (1959),Comedy +85746,Scipio Africanus: The Defeat of Hannibal (Scipione l'africano) (1937),Drama|War +85763,Beneath Hill 60 (2010),Drama|War +85770,Formosa Betrayed (2009),Thriller +85772,What No One Knows (Det som ingen ved) (2008),Drama|Thriller +85774,Senna (2010),Documentary +85777,Death Note 2: The Last Name (2006),Adventure|Crime|Drama +85783,Kapitalism: Our Improved Formula (Kapitalism - Reteta noastra secreta) (2010),Documentary +85788,Insidious (2010),Fantasy|Horror|Thriller +85790,Meek's Cutoff (2010),Western +85792,"Arise, My Love (1940)",Comedy|Drama|Romance +85794,"Green Years, The (1946)",Drama +85796,Hobo with a Shotgun (2011),Action|Adventure|Crime|Thriller +85861,"Criminal Code, The (1931)",Crime|Drama|Romance +85863,Night People (1954),Adventure +85874,L: Change the World (2008),Crime|Drama|Horror|Thriller +85881,Win Win (2011),Comedy|Drama +85883,"Jericho Mile, The (1979)",Crime|Drama +85885,Room in Rome (Habitación en Roma) (2010),Drama|Romance +85889,Stand by for Action (1942),Action|Drama|War +85892,Wild Rovers (1971),Western +85894,Johnny in the Clouds (1945),Drama|Romance|War +85896,Tribute to a Bad Man (1956),Western +85910,"Time That Remains, The (2009)",Drama +85966,Eila (2003),Drama +85981,Happy Here and Now (2002),Drama +85983,Bye Bye Braverman (1968),Comedy|Drama +85985,Artois the Goat (2009),Comedy +85987,River of Grass (1994),Drama +85994,Sex Galaxy (2008),Comedy|Sci-Fi +85997,Skeleton Man (2004),Action|Horror +86000,Boy (2010),Comedy|Drama +86002,"Necessities of Life, The (Ce qu'il faut pour vivre) (2008)",Drama +86014,Diary of a Wimpy Kid: Rodrick Rules (2011),Comedy +86023,Female Vampire (Les avaleuses) (Erotic Kill) (1973),Horror +86028,Henry's Crime (2010),Comedy|Crime +86033,Flodder in Amerika! (1992),Comedy +86057,Outrageous Class (Hababam sinifi) (1975),Comedy|Drama +86059,Hop (2011),Animation|Children|Comedy +86061,"Question of Silence, A (De stilte rond Christine M.) (1982)",Drama +86064,Delta (2008),Drama +86066,Playing the Victim (Izobrazhaya zhertvu) (2006),Comedy +86070,And Along Come Tourists (Am Ende kommen Touristen) (2007),Drama +86077,Film ist. (2000),Documentary +86079,Conflagration (Enjô) (1958),Drama +86081,Ana and the Others (Ana y los otros) (2003),Drama +86083,"Crazy Class Wakes Up, The (Hababam sinifi uyaniyor) (1977)",Comedy +86085,Berta's Motives (Los motivos de Berta: Fantasía de Pubertad) (1985),Drama +86087,"Dunce Class on Vacation, The (Hababam sinifi tatilde) (1978)",Comedy +86089,"Girl with the Red Scarf, The (Selvi boylum, al yazmalim) (1978)",Drama|Romance +86091,"Nutcracker, The (1993)",Children|Fantasy|Musical +86094,24 City (Er shi si cheng ji) (2008),Drama +86096,"Arbor, The (2010)",Documentary +86137,Leap Year (Año bisiesto) (2010),Drama +86139,"Traveler, The (Mossafer) (1974)",Drama +86142,13 Assassins (Jûsan-nin no shikaku) (2010),Action +86145,On Tour (Tournée) (2010),Comedy|Drama +86148,Life Is Hot in Cracktown (2009),Drama +86151,"Koko, a Talking Gorilla (1978)",Documentary +86153,"Captive, The (La captive) (2000)",Drama|Romance +86166,Crisis (Kris) (1946),Drama +86168,Port of Call (Hamnstad) (1948),Drama +86170,Harry + Max (2004),Drama +86173,"White Hell of Pitz Palu, The (Die weiße Hölle vom Piz Palü) (1929) ",Action|Adventure|Drama +86181,Late Chrysanthemums (Bangiku) (1954),Drama +86190,Hanna (2011),Action|Adventure|Mystery|Thriller +86204,I Became a Criminal (They Made Me a Fugitive) (1947),Crime|Drama|Film-Noir +86206,Dark City (1950),Crime|Drama|Film-Noir|Mystery +86229,Castle of Purity (El castillo de la pureza) (1973),Drama +86231,Warrendale (1967),Documentary +86233,New Kids Turbo (2010),Action|Comedy +86237,Connections (1978),Documentary +86244,Easy Money (Snabba Cash) (2010),Action|Thriller +86246,To Joy (Till glädje) (1950),Drama +86263,Grown Up Movie Star (2009),Drama +86277,Beyond (Svinalängorna) (2010),Drama +86279,Into Eternity (2010),Documentary +86286,Daffy Duck's Quackbusters (1988),Animation|Children|Comedy|Horror +86288,"Day the Universe Changed, The (1985)",Documentary +86290,American: The Bill Hicks Story (2009),Comedy|Documentary +86293,Arthur (2011),Comedy +86295,Scream 4 (2011),Comedy|Horror|Mystery|Thriller +86298,Rio (2011),Adventure|Animation|Children|Comedy +86300,"Princess of Montpensier, The (La princesse de Montpensier) (2010)",Action|Drama|Romance +86308,Dear Heart (1964),Comedy +86310,"Mudlark, The (1950)",Drama +86312,"Mouse on the Moon, The (1963)",Comedy +86314,"Happy Time, The (1952)",Comedy +86316,Gold Diggers of 1937 (1936),Comedy|Musical|Romance +86318,"Goddess, The (1958)",Drama +86320,Melancholia (2011),Drama|Sci-Fi +86330,Forever Strong (2008),Drama +86332,Thor (2011),Action|Adventure|Drama|Fantasy|IMAX +86334,War of the Wildcats (In Old Oklahoma) (1943),Western +86337,Jolson Sings Again (1949),Musical +86343,Spooner (2009),Comedy|Drama +86345,Louis C.K.: Hilarious (2010),Comedy +86347,Louis C.K.: Chewed Up (2008),Comedy +86355,Atlas Shrugged: Part 1 (2011),Drama|Mystery|Sci-Fi +86368,Confessions of a Nazi Spy (1939),Drama +86372,"Journey, The (1959)",Drama|Romance +86377,Louis C.K.: Shameless (2007),Comedy +86380,Pushover (1954),Crime|Drama|Film-Noir +86382,Saint Jack (1979),Drama +86399,Movie Days (Bíódagar) (1994),Comedy|Drama +86401,Children of Nature (Börn náttúrunnar) (1991),Drama|Mystery +86408,Welcome to the South (Benvenuti al Sud) (2010),Comedy +86410,"Resident, The (2011)",Drama|Horror|Thriller +86412,That's What I Am (2011),Children|Comedy +86416,Kobe Doin' Work (2009),Documentary +86418,City Streets (1931),Crime|Film-Noir +86420,Two Drifters (Odete) (2005),Drama +86430,Women Without Men (Zanan-e bedun-e mardan) (2009),Drama +86432,Outside the Law (Hors-la-loi) (2010),Crime|Drama|War +86434,Wrong Rosary (Uzak ihtimal) (2009),Drama +86436,"Crimson Kimono, The (1959)",Crime|Mystery|Thriller +86438,Laaga Chunari Mein Daag: Journey of a Woman (2007),Drama +86440,Outsider (1997),Drama +86442,Crazy Love (a.k.a. Love Is a Dog from Hell) (1987),Drama +86449,Abominable (2006),Horror +86451,Love Torn in Dream (Combat d'amour en songe) (2000),Drama|Fantasy +86453,Pleasures of the Flesh (Etsuraku) (1965),Comedy|Drama +86455,"Sing a Song of Sex (Treatise on Japanese Bawdy Songs, A) (Nihon shunka-kô) (1967)",Thriller +86463,"Silent Night, Deadly Night III: Better Watch Out! (1989)",Horror +86471,"Perils of Pauline, The (1914)",Action +86474,"Good Lawyer's Wife, A (Baramnan gajok) (2003)",Drama +86476,Larks on a String (Skrivánci na niti) (1990),Comedy|Drama|Romance +86478,Rabbit Without Ears 2 (Zweiohrküken) (2009),Comedy|Romance +86487,Mildred Pierce (2011),Drama +86489,Nothing About Robert (Rien sur Robert) (1999),Comedy|Drama +86491,Stranded: I've Come from a Plane That Crashed on the Mountains (2007),Documentary +86493,"Age of the Earth, The (A Idade da Terra) (1980)",(no genres listed) +86495,Blind Mountain (Mang shan) (2007),Drama +86497,15 (2005),Action|Drama +86500,Service (Serbis) (2008),Drama +86502,Flow: For Love of Water (2008),Documentary +86508,Japanese Summer: Double Suicide (Muri shinjû: Nihon no natsu) (1967),Crime|Drama +86510,"No Blood Relation (Stepchild, The) (Nasanunaka) (1932)",Drama +86518,"Student of Prague, The (a.k.a. Bargain with Satan, A) (Student von Prag, Der) (1913)",Drama|Horror +86521,Ito: A Diary of an Urban Priest (Seitti - kilvoittelijan päiväkirja) (2009),Documentary +86536,High School (1968),Documentary +86539,White Lightnin' (2009),Drama +86541,To the Sea (Alamar) (2009),Drama +86548,Water for Elephants (2011),Drama|Romance +86550,Love & Savagery (2009),Drama|Romance +86553,Yolanda and the Thief (1945),Fantasy|Musical|Romance +86559,Raw Meat (Death Line) (1973),Horror +86572,"Horseman, The (2008)",Crime|Thriller +86574,Foo Fighters: Back and Forth (2011),Documentary|Musical +86583,Storm (2009),Drama +86590,Day and Night (Dag och natt) (2004),Drama +86593,African Cats (2011),Adventure|Documentary +86604,My Dog Tulip (2009),Animation|Drama +86620,Ali Baba Goes to Town (1937),Comedy|Fantasy|Musical +86622,"Bachelor Party, The (1957)",Drama +86624,"Woman, a Gun and a Noodle Shop, A (San qiang pai an jing qi) (2009)",Comedy|Drama +86626,Socialism (Film socialisme) (2010),Drama +86628,Kill the Irishman (2011),Action|Crime +86635,Vice (2008),Crime|Film-Noir|Mystery|Thriller +86642,Cold Weather (2010),Drama +86644,"Fast Five (Fast and the Furious 5, The) (2011)",Action|Crime|Drama|Thriller|IMAX +86646,Shirin (2008),Drama +86648,They Won't Forget (1937),Drama|Mystery +86651,Here Comes the Navy (1934),Comedy|Drama|Romance +86653,"Sky's the Limit, The (1943)",Comedy|Musical|Romance +86655,"Emperor Jones, The (1933)",Drama +86657,Babylon (1981),Drama +86664,Once Upon a Time (Der var engang) (1922),Romance +86668,Louis Theroux: Law & Disorder (2008),Documentary +86671,"Woman on the Beach, The (1947)",Drama|Film-Noir|Romance +86673,"Yes, Giorgio (1982)",Comedy|Musical|Romance +86675,"House of Rothschild, The (1934)",Drama|War +86687,"Day They Robbed the Bank of England, The (1960)",Crime|Drama +86689,Reunion in France (1942),Drama|Romance|War +86709,Cooking Up Dreams (De ollas y sueños) (2009),Documentary +86715,Daughters of Darkness (Les lèvres rouges) (1971),Horror +86717,Kosmos (2010),Drama +86719,"Mother Dao, the Turtlelike (Moeder Dao, de schildpadgelijkende) (1995)",Documentary +86721,Idiots and Angels (2008),Animation|Drama|Fantasy +86723,"Parking Lot Movie, The (2010)",Documentary +86725,We Are What We Are (Somos lo que hay) (2010),Drama|Horror +86728,"Gentle Woman, A (Une femme douce) (1969)",Drama +86748,Ghosts (Gespenster) (2005),Drama +86750,"Robber, The (Der Räuber) (2010)",Crime|Drama +86753,I Just Didn't Do It (Soredemo boku wa yattenai) (2006),Drama +86756,"Idiot Returns, The (Návrat idiota) (1999)",Comedy|Drama|Romance +86758,"Bastards, The (Los bastardos) (2008)",Crime|Drama|Thriller +86760,Truly Human (Et rigtigt menneske) (2001),Drama +86762,Attenberg (2010),Drama +86764,"Asthenic Syndrome, The (Astenicheskiy sindrom) (1990)",Drama +86766,My Dear Enemy (Meotjin haru) (2008),Drama|Romance +86768,Night and Day (Bam gua nat) (2008),Drama +86770,Porto of My Childhood (Porto da Minha Infância) (2001),Drama +86773,Everybody's Woman (1934),Drama +86781,Incendies (2010),Drama|Mystery|War +86785,Blue Smoke (2007),Drama|Romance|Thriller +86787,Montana Sky (2007),Drama|Romance|Thriller +86789,Bird of Paradise (1932),Adventure|Drama|Romance +86791,Invitation to the Dance (1956),Animation|Fantasy|Musical +86795,"Leaning Tower, The (Kalteva torni) (2006)",Comedy +86802,Strange Behavior (1981),Horror|Mystery|Thriller +86815,Soul Surfer (2011),Action|Drama +86817,Something Borrowed (2011),Comedy|Drama|Romance +86826,June 9 (2008) ,Horror|Mystery|Thriller +86833,Bridesmaids (2011),Comedy +86835,Priest (2011),Action|Horror|Sci-Fi|Thriller +86837,"19th Wife, The (2010)",Drama +86839,PoliWood (2009),Documentary +86841,"Storm Warriors, The (Fung wan II) (2009)",Action|Adventure|Fantasy +86844,Same Same But Different (2009),Drama|Romance +86846,Eye of the Dolphin (2006),Children|Drama +86848,Intimate Enemies (L'ennemi intime) (2007),Drama|War +86852,"Beaver, The (2011)",Drama +86854,King Lear (1987),Comedy|Drama|Sci-Fi +86856,To the Shores of Tripoli (1942),Drama|Romance|War +86858,"Racket, The (1928)",Crime|Film-Noir +86860,Black Fury (1935),Crime|Drama|Romance +86862,Kitty (1945),Drama +86864,Mothra (Mosura) (1961),Adventure|Fantasy|Sci-Fi +86866,Godzilla Raids Again (Gojira no gyakushû) (1955),Action|Drama|Horror|Romance|Sci-Fi +86880,Pirates of the Caribbean: On Stranger Tides (2011),Action|Adventure|Fantasy|IMAX +86882,Midnight in Paris (2011),Comedy|Fantasy|Romance +86884,"Kid With a Bike, The (Le gamin au vélo) (2011)",Drama +86892,The Man from Nowhere (2010),Action|Crime|Thriller +86894,Born to Be Bad (1950),Drama|Film-Noir +86896,Jewel Robbery (1932),Comedy|Crime|Romance +86898,"Tree of Life, The (2011)",Drama +86900,Paper Lion (1968),Comedy +86902,All I Desire (1953),Drama|Romance +86904,Jeopardy (a.k.a. A Woman in Jeopardy) (1953),Film-Noir|Thriller +86906,"Village Barbershop, The (2008)",Comedy|Drama +86911,"Hangover Part II, The (2011)",Comedy +86922,Nothing to Declare (Rien à déclarer) (2010),Comedy +86927,No Time for Love (1943),Comedy|Romance +86929,"Sin of Madelon Claudet, The (1931)",Drama +86931,This Above All (1942),Drama|Romance|War +86941,Double Take (2009),Documentary +86943,Fly Away (2011),Drama +86947,Van Diemen's Land (2009),Drama +86949,One Hundred Mornings (2009),Drama +86952,Son of Babylon (Syn Babilonu) (2009),Drama +86970,Daayen Ya Baayen (2010),Comedy|Drama +86973,John Rabe (2009),Drama|War +86975,As Seen Through These Eyes (2008),Documentary +86977,Oh My God (2009),Documentary +86982,Destroy All Monsters (Kaijû sôshingeki) (1968),Action|Sci-Fi|Thriller +86985,Stonewall Uprising (2010),Documentary +86988,Ballou (2008),Documentary|Musical +86990,"Clairvoyant, The (1935)",Drama|Thriller +87000,"Virginity Hit, The (2010)",Comedy +87002,Through and Through (Na wylot) (1973),Crime +87004,Pina (2011),Documentary|Musical +87006,Eyes of a Stranger (1981),Horror|Thriller +87008,Outcast of the Islands (1952),Adventure|Drama +87010,"Moon in the Gutter, The (La lune dans le caniveau) (1983)",Drama +87012,Under Our Skin (2008),Documentary +87016,Belle toujours (2006),Drama +87028,"Roommate, The (2011)",Drama|Thriller +87031,Strip Nude for Your Killer (Nude per l'assassino) (1975),Horror|Mystery|Thriller +87033,Ballad of the Paper Balloons (a.k.a. Humanity and Paper Balloons) (Ninjô kami fûsen) (1937),Drama +87036,Comedy of Innocence (Comédie de l'innocence) (2000),Drama|Thriller +87038,Hollow Triumph (a.k.a. The Scar) (1948),Crime|Drama|Film-Noir +87040,"Housemaid, The (Hanyo) (1960)",Crime|Drama|Horror +87042,Wanda (1970),Crime|Drama +87047,"Strange Case of Angelica, The (O Estranho Caso de Angélica) (2010)",Drama +87049,Frownland (2007),Comedy|Drama +87051,"King of Escape, The (Le roi de l'évasion) (2009)",Adventure|Comedy +87053,Zoo in Budapest (1933),Drama|Romance +87055,Tomorrow We Move (Demain on déménage) (2004),Comedy +87057,Dealer (2004),Drama +87059,No Rest for the Brave (Pas de repos pour les braves) (2003),Comedy|Drama|Romance +87061,Trails (Veredas) (1978),(no genres listed) +87063,Bis zum Ellenbogen (2007),Comedy +87069,Ossos (1997),Drama +87071,All Is Forgiven (Tout est pardonné) (2007),Drama +87076,Fraulein (Das Fräulein) (2006) ,Drama +87079,Trust (2010),Drama|Thriller +87081,Penny Dreadful (2006),Horror|Thriller +87085,Night Flight (1933),Drama +87092,Prison (Fängelse) (1949) ,Drama +87094,Dreams (Kvinnodröm) (1955),Drama +87098,"Mosquito Net, The (La mosquitera) (2010)",Drama +87100,Loft (2010),Comedy|Thriller +87103,Vieraalla maalla (2003),Comedy|Romance +87105,Open Season 3 (2010),Animation|Children|Comedy +87164,Henri-Georges Clouzot's Inferno (L'enfer d'Henri-Georges Clouzot) (2009),Documentary +87166,Stolen (Stolen Lives) (2009),Crime|Drama|Mystery|Thriller +87173,Turbulence 2: Fear of Flying (1999),Action|Thriller +87175,"Singer Not the Song, The (1961)",Drama|Western +87179,"Sisters, The (1938)",Drama +87181,"Double Hour, The (La doppia ora) (2009)",Crime|Drama|Mystery|Romance|Thriller +87186,20 Seconds of Joy (2007),Documentary +87188,Happy Ever Afters (2009),Comedy +87190,My Brother Talks to Horses (1947),Comedy +87192,Attack the Block (2011),Action|Comedy|Sci-Fi +87194,The Way (2010),Adventure|Comedy|Drama +87197,Let the Bullets Fly (2010),Action|Comedy +87205,"Tunnel, The (2011)",Drama|Horror|Thriller +87207,Orwell Rolls in His Grave (2003),Documentary +87210,Wake (2009),Comedy|Drama|Romance +87216,Kings of the Sun (1963),Adventure|Drama|Thriller +87218,He Ran All the Way (1951),Crime|Drama|Film-Noir +87220,Violent Saturday (1955),Crime|Drama +87222,Kung Fu Panda 2 (2011),Action|Adventure|Animation|Children|Comedy|IMAX +87225,"Burglars, The (Le casse) (1971)",Action|Crime|Thriller +87227,Gabriel Over the White House (1933),Drama|Fantasy|Romance +87229,Lynch (2007),Documentary +87232,X-Men: First Class (2011),Action|Adventure|Sci-Fi|Thriller|War +87234,Submarine (2010),Comedy|Drama|Romance +87256,Tonight and Every Night (1945),Musical +87258,The Thief (1952),Crime|Drama|Film-Noir +87260,Raffles (1930),Adventure|Crime|Drama|Romance|Thriller +87262,"Dark Angel, The (1935)",Drama|Romance +87264,Brewster's Millions (1945),Comedy +87266,"Patent Leather Kid, The (1927)",Drama +87270,"Other Woman, The (2009)",Drama +87276,"Last Dispatch, The (2005)",Documentary +87279,Brotherhood (2010),Crime|Drama|Thriller +87287,American Grindhouse (2010),Documentary +87290,Two Arabian Knights (1927),Adventure|Comedy|Romance +87296,Captive (Cautiva) (2004) ,Drama +87298,Everything Must Go (2010),Comedy|Drama +87302,Red White & Blue (2010),Drama|Mystery|Romance +87304,Beginners (2010),Drama +87306,Super 8 (2011),Mystery|Sci-Fi|Thriller|IMAX +87314,Lottery Ticket (2010),Comedy +87316,Calvin Marshall (2009) ,Comedy +87320,"Oath, The (2010)",Documentary +87322,Falling (a.k.a. Fallen) (2006),Drama +87325,Delbaran (2001),Drama +87327,Camp de Thiaroye (1989),Drama|War +87330,"Target Shoots First, The (2000)",Comedy|Drama +87332,"City Below, The (Unter dir die Stadt) (2010)",Drama +87334,Chain Camera (2001),Documentary +87336,Playing 'In the Company of Men' (En jouant 'Dans la compagnie des hommes') (2003),Drama +87354,Then I Sentenced Them All to Death (Atunci i-am condamnat pe toti la moarte) (1972),Drama|War +87356,Pale Flower (Kawaita hana) (1964),Crime|Film-Noir|Thriller +87358,Santa Claus Has Blue Eyes (Le père Noël a les yeux bleus) (1969),Drama +87360,It Felt Like a Kiss (2009),Documentary +87366,After the Reconciliation (Après la réconciliation) (2000),Drama +87368,Matinée (1977),Adventure|Comedy|Crime|Thriller +87370,"Year of Living Vicariously, The (2005)",Documentary +87378,"Sixth of the World, A (Shestaya chast mira) (1926)",Documentary +87383,Curly Top (1935),Children|Musical|Romance +87385,Envy (Kiskanmak) (2009),Drama +87387,Private (2004),Drama|War +87390,"Very British Gangster, A (2007)",Crime|Documentary +87392,"Working Class Goes to Heaven, The (a.k.a. Lulu the Tool) (La classe operaia va in paradiso) (1971)",Drama +87408,"Täältä tullaan, elämä! (1980)",Drama|Romance +87410,"Chosen One, The (2010)",Comedy|Drama +87413,Bernie (1996),Comedy|Drama +87415,Lucky Star (1929),Drama|Romance +87417,Araya (1959),Documentary +87420,"Danube Exodus, The (1998)",Documentary +87425,Vääpeli Körmy - Taisteluni (1994),Comedy +87430,Green Lantern (2011),Action|Adventure|Sci-Fi +87433,"Ghidorah, the Three-Headed Monster (San daikaijû: Chikyû saidai no kessen) (1964)",Action|Adventure|Fantasy|Sci-Fi +87435,Sergeant Körmy and the South Pacific (Vääpeli Körmy ja etelän hetelmät) (1992),Comedy +87444,Elektra Luxx (2010),Comedy +87449,Stricken (Er komt een vrouw bij de dokter) (2009),Drama|Romance +87466,Net Worth (1995),Drama +87469,Cinema Verite (2011),Drama +87471,"Yoo-Hoo, Mrs. Goldberg (2009)",Documentary +87473,Badland (2007),Drama +87483,Mr. Popper's Penguins (2011),Comedy +87485,Bad Teacher (2011),Comedy +87497,Wives and Lovers (1963),Comedy +87499,Tyler Perry's Why Did I Get Married Too? (2010),Comedy +87505,"President's Lady, The (1953)",Drama +87507,Suez (1938),Drama|Romance +87509,Meet Me in Las Vegas (1956),Comedy|Musical|Romance +87511,Two Girls and a Sailor (1944),Comedy|Musical|Romance +87514,Papa's Delicate Condition (1963),Comedy +87516,Sundown (1941),Drama|War +87518,Storm Center (1956),Drama +87520,Transformers: Dark of the Moon (2011),Action|Adventure|Sci-Fi|War|IMAX +87522,Larry Crowne (2011),Comedy|Drama|Romance +87527,Score: A Hockey Musical (2010),Comedy|Musical +87529,Your Highness (2011),Action|Adventure|Comedy|Fantasy +87547,Hand Gun (1994),Action|Crime|Drama|Thriller +87556,Jacqueline Susann's Once Is Not Enough (1975),Drama|Romance +87558,When Ladies Meet (1933),Comedy|Romance +87560,"Pride of St. Louis, The (1952)",Drama +87562,"Prizefighter and the Lady, The (1933)",Comedy|Crime|Romance +87564,"Son of Monte Cristo, The (1940)",Action|Adventure +87566,If I Were King (1938),Adventure +87568,Judy Moody and the Not Bummer Summer (2011),Children|Comedy +87589,"Four-Faced Liar, The (2010)",Comedy|Drama|Romance +87595,King of Jazz (1930),Animation|Musical +87598,"Dolly Sisters, The (1945)",Drama|Musical|Romance +87608,Seconds Apart (2011) ,Horror|Thriller +87618,"Mattei Affair, The (Il caso Mattei) (1972)",Crime|Drama|Mystery +87633,"Scenic Route, The (1978)",Drama +87636,"Run, Man, Run! (Corri uomo corri) (1968)",Adventure|Comedy|Western +87642,Sergeant Körmy and the Underwater Vehicles (Vääpeli Körmy ja vetenalaiset vehkeet) (1991),Comedy +87644,Armless (2010),Comedy +87647,Life After People (2008),Documentary +87660,Too Big to Fail (2011),Drama +87662,"Bishop Murder Case, The (1930)",Mystery +87683,"Unexpected Love, An (2003)",Drama +87685,Girl Play (2004),Comedy +87689,Pekko ja unissakävelijä (1997),Comedy +87691,Pelicanman (Pelikaanimies) (2004),Adventure|Children|Fantasy +87693,Train of Shadows (Tren de sombras) (1997),Drama +87697,Shoppen (2006) ,Comedy|Romance +87700,Apart from You (After Our Separation) (Kimi to wakarete) (1933),Drama +87702,Every Night Dreams (Each Night I Dream) (Yogoto no yume) (1933),Drama +87719,Living with Wolves (2005),Documentary +87745,Lazybones (1925),Action|Comedy|Drama|Romance|War +87751,Film ist. 7-12 (2002),Documentary +87761,"Rita, Sue and Bob Too! (1987)",Comedy|Drama +87763,For Heaven's Sake (1926),Action|Comedy|Romance +87766,Three Brothers (Tre fratelli) (1981),Drama +87769,Die Frau des Frisörs (2008),Drama +87771,Human Failure (Menschliches Versagen) (2008),Documentary +87773,"Letter, The (1929)",Drama +87785,Takers (2010),Action|Crime|Thriller +87790,Three (a.k.a. 3) (2010),Comedy|Drama|Romance +87792,Route Irish (2010),Drama|Thriller +87794,"Quo Vadis, Baby? (2005)",Drama|Thriller +87796,"Man of My Life, The (L'homme de sa vie) (2006)",Drama +87798,"Squall, The (1929)",Drama +87802,Vääpeli Körmy ja marsalkan sauva (1990),Comedy +87804,Vääpeli Körmy ja kahtesti laukeava (1997),Comedy|War +87808,Street Without End (Kagirinaki hodo) (1934),Drama +87831,Marie-Jo and Her 2 Lovers (Marie-Jo et ses 2 amours) (2002),Comedy|Drama +87834,My Life as McDull (Mak dau goo si) (2001),Animation|Comedy|Drama +87843,Broken Windows (2008),Drama +87860,Strapped (2010),Drama +87867,Zookeeper (2011),Comedy +87869,Horrible Bosses (2011),Comedy|Crime +87874,See This Movie (2004),Comedy +87876,Cars 2 (2011),Adventure|Animation|Children|Comedy|IMAX +87878,King & Country (1964),Drama|War +87880,Guns at Batasi (1964),Drama +87882,De Dana Dan (2009),Comedy +87884,Savage Messiah (1972),Drama +87888,Westward Passage (1932),Drama +87890,"Carey Treatment, The (1972)",Mystery +87909,Megan Is Missing (2011),Crime|Drama +87911,In Her Skin (2009),Drama|Thriller +87913,Possessed (1931),Drama|Romance +87915,Mondo Trasho (1969),Comedy +87917,Swamp Water (1941),Drama +87919,"Mysterious Lady, The (1928)",Drama|Romance +87923,Room for One More (1952),Comedy +87928,Tapped (2009),Documentary +87930,Page One: Inside the New York Times (2011),Documentary +87948,Bright Victory (1951),Drama +87950,"Promise, The (1979)",Drama +87952,On the Riviera (1951),Comedy|Musical +87954,In Old Arizona (1928),Romance|Western +87964,Breaking Upwards (2010),Romance +87966,"Doorway to Hell, The (1930)",Crime|Drama +87971,Anton Chekhov's The Duel (2010),Drama +87977,Murder in Coweta County (1983),Crime|Drama +87979,Five Minutes to Live (1961),Crime|Drama|Thriller +87984,Red Like the Sky (Rosso come il cielo) (2007),Drama +87988,Like You Know It All (Jal aljido mothamyeonseo) (2009),Drama +87990,"If I Want to Whistle, I Whistle (Eu cand vreau sa fluier, fluier) (2010)",Drama +87992,Mammuth (2010),Comedy|Drama +87994,Gilles' Wife (La femme de Gilles) (2004),Drama +87996,Waiting Room (Bekleme odasi) (2004),Drama +87999,I Am Curious (Blue) (Jag är nyfiken - en film i blått) (1968),Drama +88001,Suspicious River (2000),Drama +88003,"Perfect Day, A (Un giorno perfetto) (2008)",Drama +88005,Laws of Gravity (1992),Drama +88015,Elvis (1979),Drama +88017,Time Stood Still (Il tempo si è fermato) (1959),Drama +88022,Hot Coffee (2011),Documentary +88024,To Sleep with Anger (1990),Drama +88028,Green Fish (Chorok mulkogi) (1997),Drama +88031,Tiresia (2003),Drama +88040,Killing Auntie (Zabicie ciotki) (1985),Drama|Thriller +88042,Cornered (1945),Film-Noir|Thriller +88044,Love (Szerelem) (1971),Drama +88047,New Wave (Nouvelle vague) (1990),Drama +88049,Virgin Stripped Bare by Her Bachelors (Oh! Soo-jung) (2000),Drama +88051,Four Adventures of Reinette and Mirabelle (4 aventures de Reinette et Mirabelle) (1987),Comedy|Drama|Romance +88053,Hangtime - Kein leichtes Spiel (2009),Drama +88055,"Missing Star, The (La stella che non c'è) (2006)",Drama +88059,Bikini Summer (1991),Comedy +88061,Transistor Love Story (Monrak Transistor) (2001),Comedy|Drama|Musical|Romance +88063,Bugmaster (Mushishi) (2006),Fantasy +88065,Double Dhamaal (2011),Comedy|Crime|Drama +88067,"Happiness Is a Warm Blanket, Charlie Brown (2011)",Animation|Comedy +88069,Delhi Belly (2011),Comedy|Crime +88071,Ballerina (La mort du cygne) (1937),Children|Drama|Romance +88073,Heir to an Execution (2004),Documentary +88087,Welcome Farewell-Gutmann (Bienvenido a Farewell-Gutmann) (2008),Comedy|Drama +88092,Education for Death (1943),Animation|Comedy +88094,Upside Down: The Creation Records Story (2010),Documentary +88099,Streets of Laredo (1995),Drama|Western +88106,Mahler (1974),Drama +88108,Monte Carlo (2011),Adventure|Comedy|Romance +88110,Monogamy (2010) ,Drama|Romance +88114,Read It and Weep (2006),Comedy +88118,"Perfect Host, The (2010)",Crime|Drama|Thriller +88125,Harry Potter and the Deathly Hallows: Part 2 (2011),Action|Adventure|Drama|Fantasy|Mystery|IMAX +88127,Conan O'Brien Can't Stop (2011),Documentary +88129,Drive (2011),Crime|Drama|Film-Noir|Thriller +88131,Love Crime (Crime d'amour) (2010),Crime|Mystery|Thriller +88133,Brink of Life (Nära livet) (1958),Drama +88135,"Kind of Loving, A (1962)",Drama|Romance +88138,Snow Flower and the Secret Fan (2011),Drama +88140,Captain America: The First Avenger (2011),Action|Adventure|Sci-Fi|Thriller|War +88158,Far from Home (1989),Thriller +88160,Girls in Prison (1994),Crime|Drama|Thriller +88163,"Crazy, Stupid, Love. (2011)",Comedy|Drama|Romance +88166,"Eversmile, New Jersey (1989)",Comedy|Drama|Romance +88168,"Last Run, The (1971)",Action|Crime|Drama|Thriller +88171,Trio (1950),Drama|Romance +88173,Flight Command (1940),Drama|War +88175,Cheers for Miss Bishop (1941),Drama +88177,"Buccaneer, The (1938)",Adventure +88179,One Day (2011),Drama|Romance +88185,Every Little Crook and Nanny (1972),Comedy +88192,"Poker House, The (2008)",Drama +88194,Forget Me Not (2009),Horror|Romance|Thriller +88203,Car Bonus (Autobonus) (2001),Documentary +88205,Feast of All Saints (2001),Drama|Romance +88210,Bombardier (1943),Drama|War +88213,Joan of Paris (1942),Drama|Romance|War +88224,"Charming Mass Suicide, A (Hurmaava joukkoitsemurha) (2000)",Comedy +88228,Vice Squad (1953),Crime|Drama +88235,"Guard, The (2011)",Comedy|Crime +88237,Griff the Invisible (2011),Comedy|Drama|Romance +88248,Quarantine 2: Terminal (2011),Horror|Mystery|Sci-Fi +88250,Earth Days (2009),Documentary +88252,Children (Börn) (2006),Drama +88267,Winnie the Pooh (2011),Animation|Children|Comedy +88270,Peep World (2010),Comedy +88272,"Woman, The (2011)",Horror +88274,"Unholy Rollers, The (1972)",Action|Comedy|Drama +88276,Dry Summer (Susuz yaz) (Reflections) (1964),Drama +88278,Phantom (1922),Drama|Fantasy|Romance +88280,Frontier of the Dawn (La frontière de l'aube) (2008),Drama +88282,Sombre (1998),Drama|Horror +88284,"Think Fast, Mr. Moto (1937)",Crime|Drama|Mystery|Thriller +88299,No Impact Man: The Documentary (2009),Documentary +88305,"Wedding in Blood (Noces rouges, Les) (1973)",Crime|Drama +88307,"Goalie's Anxiety at the Penalty Kick, The (Die Angst des Tormanns beim Elfmeter) (1972)",Drama +88310,A Year Ago in Winter (2008),Drama +88313,"Electra, My Love (Szerelmem, Elektra) (1974)",Drama +88315,Indian Summer (a.k.a. The Professor) (La prima notte di quiete) (1972),Drama +88317,"Married Couple, A (1969)",Documentary +88321,Betty (1992),Drama +88327,"New One-Armed Swordsman, The (Xin du bi dao) (1971)",Action|Drama|War +88329,Madeleine (1950),Crime|Drama +88331,Exodus (Cheut ai kup gei) (2007),Comedy|Crime|Drama +88335,Wanted! (Nachbarinnen) (2004),Drama +88339,"Four Times, The (Le Quattro Volte) (2010)",Drama +88341,Park Row (1952),Drama|Thriller +88343,"Sleeping Beauty, The (La belle endormie) (2010)",Drama +88352,Escape from Dartmoor (1929),Crime|Drama +88356,"Smurfs, The (2011)",Animation|Children|Comedy +88374,"Arrangement, The (1969)",Drama +88376,Comanche Moon (2008),Drama|Western +88378,Dead Man's Walk (1996),Western +88380,Dylan Dog: Dead of Night (2010),Comedy|Horror|Mystery|Thriller +88382,Angel of Mine (a.k.a. The Mark of an Angel) (L'empreinte de l'ange) (2008),Drama +88398,"Undefeated, The (2011)",Documentary +88400,Chromophobia (2005),Drama +88405,Friends with Benefits (2011),Comedy|Romance +88411,"Dust of Time, The (2008)",Drama +88414,"Winner, The (1996)",Comedy|Crime|Thriller +88417,Exposed (1983),Drama +88419,Forbidden (1932),Drama|Romance +88423,3 Backyards (2010),Drama +88425,Small Town Murder Songs (2010),Crime|Thriller +88427,Count Three and Pray (1955),Drama|Western +88429,"Rally 'Round the Flag, Boys! (1958)",Comedy +88448,Paper Birds (Pájaros de papel) (2010),Comedy|Drama +88452,Last Stop 174 (Última Parada 174) (2008) ,Crime|Drama|Thriller +88454,Waking Madison (2010) ,Drama +88456,"Possession of David O'Reilly, The (2010) ",Horror +88466,Broken Sky (El cielo dividido) (2006),Drama +88468,Alpha and Omega (2010),Adventure|Animation|Children|Comedy|Romance +88471,"Caretakers, The (1963)",Drama +88473,Tender Is the Night (1962),Drama +88480,Bikini Summer II (1992),Comedy +88483,"Boy in Blue, The (1986)",Drama +88485,Deadfall (1993),Comedy|Crime|Drama +88488,"Summer Wishes, Winter Dreams (1973)",Drama +88491,Lady Be Good (1941),Comedy|Musical +88493,Eternally Yours (1939),Comedy|Drama +88495,Legend of the Fist: The Return of Chen Zhen (Jing wu feng yun: Chen Zhen) (2010),Action|Drama +88511,Big City Blues (1932),Comedy|Drama +88513,Lawyer Man (1932),Drama|Romance +88518,Pennies from Heaven (1936),Comedy|Drama|Musical +88520,"Living and the Dead, The (2006)",Drama|Horror|Mystery +88543,She Cried No (Freshman Fall) (1996),Crime|Drama +88548,Industrial Symphony No. 1: The Dream of the Brokenhearted (1990),Drama +88562,Our Beloved Month of August (Aquele Querido Mês de Agosto) (2008),Romance +88564,"Autobiography of Nicolae Ceausescu, The (Autobiografia lui Nicolae Ceausescu) (2010)",Documentary +88566,Mysteries of Lisbon (Mistérios de Lisboa) (2010),Drama|Mystery +88568,Oki's Movie (Ok-hui-ui yeonghwa) (2010),Comedy|Drama +88570,Welfare (1975),Documentary +88572,Fred: The Movie (2010),Comedy +88574,Four Bags Full (1956),Comedy +88576,Emitai (1971),Drama +88578,"Me Too (Yo, también) (2009)",Drama +88580,"Assassination (Ansatsu) (Assassination, The) (Assassin, The) (1964)",Action|Drama +88589,Messiah of Evil (1973),Horror +88591,Souls for Sale (1923),Comedy|Drama|Romance +88593,"Yellow Sea, The (a.k.a. The Murderer) (Hwanghae) (2010)",Crime|Drama|Thriller +88595,"Temptress, The (1926)",Drama|Romance +88597,Our Life (La nostra vita) (2010),Drama +88599,Come Undone (Cosa voglio di più) (2010),Drama +88601,"Illusion Travels by Streetcar (Ilusión viaja en tranvía, La) (1954)",Adventure|Comedy|Drama +88603,Change of Address (Changement d'adresse) (2006),Comedy +88605,"Help Me, Eros (Bang bang wo ai shen) (2007)",Drama +88607,"Eye Above the Well, The (Het oog boven de put) (1988)",Documentary +88638,"Joyless Street, The (Die freudlose Gasse) (1925)",Drama +88640,Rapt (2009),Drama +88642,Bear's Kiss (2002),Drama|Fantasy|Romance +88646,"Cairo Station (a.k.a. Iron Gate, The) (Bab el hadid) (1958)",Crime|Drama +88649,Sweet Rush (Tatarak) (2009),Drama +88652,"Blind Sunflowers, The (Los girasoles ciegos) (2008)",Drama +88654,"Queen of Spades, The (1949)",Drama|Horror +88670,Change of Plans (Le code a changé) (2009),Comedy|Drama +88672,Our Idiot Brother (2011),Comedy +88674,Edison Kinetoscopic Record of a Sneeze (1894),Documentary +88682,"Letter to Elia, A (2010)",Documentary +88688,Drive-In Horrorshow (2009),Horror +88692,Princess Ka'iulani (2009),Drama|Romance +88697,SUBWAYStories: Tales from the Underground (1997),Drama +88704,Air Guitar Nation (2006),Comedy|Documentary|Musical +88706,Cyberbully (2011),Drama +88724,Beats Rhymes & Life: The Travels of a Tribe Called Quest (2011),Documentary +88740,Above Suspicion (1943),Drama|Thriller +88742,Desperate Search (1952),Adventure|Drama +88744,Rise of the Planet of the Apes (2011),Action|Drama|Sci-Fi|Thriller +88746,Terri (2011),Comedy +88748,"Magnificent Yankee, The (1950)",Drama +88750,Happy New Year (1987),Comedy|Crime|Romance +88752,Hide-Out (1934),Comedy|Crime|Drama|Romance +88754,Shanks (1974),Fantasy|Horror +88756,Christmas Carol: The Movie (2001),Animation|Children +88759,Coffin Rock (2009),Thriller +88761,Strapped (1993),Action|Drama +88764,Ponterosa (2001),Comedy +88766,Tevye (1939),Drama +88785,"Change-Up, The (2011)",Comedy +88788,Sins of My Father (2009),Documentary +88801,"Yearling, The (1994)",Adventure|Children|Drama +88810,"Help, The (2011)",Drama +88812,30 Minutes or Less (2011),Action|Comedy|Crime +88814,Fjols til fjells (1957),Comedy +88816,My Son John (1952),Drama +88818,Bulldog Drummond (1929),Drama|Mystery|Thriller +88821,"Merry Widow, The (1952)",Musical +88823,High Time (Big Daddy) (1960),Comedy|Musical +88833,There Goes My Heart (1938),Comedy|Romance +88835,Glee: The 3D Concert Movie (2011),Documentary|Musical +88837,"Trotsky, The (2009)",Comedy +88839,Anthony Zimmer (2005),Crime|Drama|Romance|Thriller +88852,"Richest Girl in the World, The (1934)",Comedy|Romance +88855,Szuler (1994),Drama +88857,Just Imagine (1930),Musical|Sci-Fi +88877,"Invisible Sign, An (2010)",Comedy|Drama +88879,Gantz (2011),Action|Horror|Sci-Fi +88886,Blues Harp (1998),Crime|Drama +88889,From Beijing with Love (1994),Action|Comedy +88894,"Lady is Willing, The (1942)",Comedy|Drama|Romance +88897,Ghetto Physics (2010),Drama +88899,Vision (Vision - Aus dem Leben der Hildegard von Bingen) (2009),Drama +88901,"Bulli: Cooking in Progress, El (2011)",Documentary +88911,My Afternoons with Margueritte (La tête en friche) (2010),Comedy +88925,Soloalbum (2003),Comedy|Romance +88932,Final Destination 5 (2011),Horror|Thriller|IMAX +88934,"Lovely, Still (2008)",Drama|Romance +88950,"Conspirator, The (2010)",Drama +88954,"Very Harold & Kumar 3D Christmas, A (2011)",Comedy +88957,"Young One, The (1960)",Drama +88959,Michael the Brave (Mihai Viteazul) (1971),Action|Drama +88961,Missile to the Moon (1958),Sci-Fi +88971,Mr. Moto Takes a Chance (1938),Crime|Drama|Mystery +88973,Mysterious Mr. Moto (1938),Crime|Drama|Mystery +88975,Where Are the Dreams of Youth? (Seishun no yume imaizuko) (1932),Drama +88979,"Little Girl Who Conquered Time, The (Toki o kakeru shôjo) (1983)",Romance|Sci-Fi +88989,Kairat (1992),Drama +88991,Queen to Play (Joueuse) (2009),Drama +89000,Carancho (2010),Crime|Drama|Romance +89002,Spy Kids: All the Time in the World in 4D (2011),Action|Adventure|Children|Comedy|Sci-Fi +89007,Recollections of the Yellow House (Recordações da Casa Amarela) (1989),Comedy|Drama +89010,Super 8 Stories (2001),Documentary +89014,Passing Fancy (Dekigokoro) (1933),Drama +89016,What Did the Lady Forget? (Shukujo wa nani o wasureta ka) (1937) ,Comedy|Drama +89018,Miranda (1948),Comedy|Fantasy|Romance +89021,Elvira Madigan (1967),Drama|Romance +89023,Forest (Rengeteg) (2003),Drama +89025,Evil - In the Time of Heroes (To kako - Stin epohi ton iroon) (2009),Adventure|Comedy|Horror +89028,Don't Be Afraid of the Dark (2010),Horror|Thriller +89030,Fright Night (2011),Comedy|Horror +89039,Another Earth (2011),Drama|Romance|Sci-Fi +89043,"Classic, The (Klassikko) (2001)",Comedy|Drama +89047,Hesher (2010),Drama +89054,Bolivia (2001),Drama +89056,Company: Original Cast Album (1970),Documentary|Musical +89060,Cold Prey (Fritt Vilt) (2006),Action|Horror|Mystery|Thriller +89069,American Boy: A Profile of: Steven Prince (1978),Documentary +89072,Stake Land (2010),Horror +89074,"Greatest Movie Ever Sold, The (POM Wonderful Presents: The Greatest Movie Ever Sold) (2011)",Documentary +89083,"Great White Silence, The (1924)",Documentary +89085,"Debt, The (2011)",Drama|Thriller +89087,Colombiana (2011),Action|Adventure|Drama|Thriller +89090,Bill Cunningham New York (2011),Documentary +89098,"Hireling, The (1973)",Drama +89100,Street Scenes (1970) ,Documentary +89102,Freakonomics (2010),Documentary +89104,Puzzlehead (2005),Drama|Sci-Fi +89110,"Possession of Joel Delaney, The (1972)",Drama|Horror|Thriller +89112,"Kid from Brooklyn, The (1946)",Comedy +89114,"Last Frontier, The (1955)",Western +89116,Tight Spot (1955),Drama|Film-Noir|Thriller +89118,"Skin I Live In, The (La piel que habito) (2011)",Drama +89126,Messengers 2: The Scarecrow (2009),Horror|Mystery +89133,Boys (Drenge) (1977),Drama +89135,"Birds, the Bees and the Italians, The (Signore & signori) (1966)",Comedy +89137,Backlight (2010),Drama|Sci-Fi|Thriller +89139,"Lodger, The (2009)",Crime|Drama|Mystery|Thriller +89145,William Vincent (Shadows and Lies) (2010),Drama +89147,Legends of the Canyon (2009),Documentary +89162,Phil Ochs: There But for Fortune (2010),Documentary|Musical +89164,Good Neighbours (a.k.a. Good Neighbors) (2010),Crime|Thriller +89170,"Winning Season, The (2009)",Comedy +89190,Conan the Barbarian (2011),Action|Adventure|Fantasy +89192,Dead Awake (2010),Fantasy|Mystery|Romance|Thriller +89194,Prom (2011),Comedy|Drama +89203,Magic Trip (2011),Documentary +89206,Stay Cool (2009),Comedy|Drama|Romance +89208,Walled In (2009),Horror|Thriller +89213,Fierce Light: When Spirit Meets Action (2008),Documentary +89215,Strongman (2009),Documentary +89217,Waiting for Forever (2010),Drama|Romance +89219,"Creation of the Humanoids, The (1962)",Sci-Fi +89230,Tooth & Nail (2007),Drama|Horror|Sci-Fi +89244,Face (Visage) (2009),Comedy|Drama +89246,Orderers (Les ordres) (1974),Drama +89248,"Story of Temple Drake, The (1933)",Drama +89260,Project Nim (2011),Documentary +89268,Escape (1940),Drama +89270,Love Crimes of Kabul (2011),Documentary +89281,Birdemic: Shock and Terror (2010),Romance|Thriller +89285,Keep Walking (Camminacammina) (1983),Drama +89300,Win/win (2010),Drama +89302,Page Eight (2011),Drama|Thriller +89305,"Inbetweeners Movie, The (2011)",Adventure|Comedy +89308,"Old Man and the Sea, The (1990)",Drama +89313,Time to Die (Tiempo de morir) (1966),Drama|Western +89315,Dying at Grace (2003),Documentary +89321,"Future, The (2011)",Drama +89323,Richard III (1912),Drama +89325,Burning Secret (1988),Drama +89327,Love Ranch (2010),Comedy|Drama|Romance +89329,Payment Deferred (1932),Drama +89337,"Interrupters, The (2011)",Documentary +89341,Night Ambush (Ill Met by Moonlight) (1957),Action|Adventure|Drama|War +89343,Red State (2011),Action|Crime|Horror|Thriller +89347,"Dark Side of the Heart, The (Lado oscuro del corazón, El) (1992)",Comedy|Drama|Romance +89349,"Misérables, Les (1934)",Drama +89351,Wooden Crosses (Les croix de bois) (1932),Drama|War +89354,Short Sharp Shock (Kurz und schmerzlos) (1998) ,Crime|Drama +89356,Chinese Take-Out (Chinese Take-Away) (Un cuento chino) (2011),Comedy +89365,"Stranger's Heart, A (2007)",Drama +89367,Restraint (2008),Drama|Thriller +89369,"Better Life, A (2011)",Drama +89371,Raging Phoenix (Deu suay doo) (2009),Action|Romance +89373,Ceremony (2011),Comedy +89375,Sympathy for Delicious (2011),Drama +89377,Wrecked (2010),Thriller +89386,Pearl Jam Twenty (2011),Documentary|Musical +89388,I Don't Know How She Does It (2011),Comedy +89393,Two Cents Worth of Hope (Due soldi di speranza) (1952),Comedy|Romance +89398,Commandos Strike at Dawn (1942),Drama|War +89401,"Pleasure Seekers, The (1964)",Comedy|Musical|Romance +89403,The Little Kidnappers (1953),Drama|Romance|War +89406,That Lady in Ermine (1948),Comedy|Fantasy|Musical|Romance +89408,April Love (1957),Comedy|Drama|Musical +89425,Red Meadows (De røde enge) (1945),Drama|War +89427,Shark Night 3D (2011),Horror|Thriller +89449,Beautiful Lies (De vrais mensonges) (Full Treatment) (2010),Comedy|Drama|Romance +89470,Contagion (2011),Sci-Fi|Thriller|IMAX +89472,We Have a Pope (Habemus Papam) (2011),Comedy|Drama +89474,Our Very Own (1950),Drama +89476,Frenchman's Creek (1944),Adventure|Drama|Romance +89478,Vigilante (1983),Action|Crime|Drama +89480,Sleeping Beauty (2011),Drama +89482,Portrait of Maria (María Candelaria (Xochimilco)) (1944),Drama|Romance +89485,"Maze, The (1953)",Horror|Sci-Fi +89490,Straw Dogs (2011),Thriller +89492,Moneyball (2011),Drama +89501,William S. Burroughs: A Man Within (2010),Documentary +89506,"Appeared, The (Aparecidos) (2007)",Horror|Thriller +89516,Felicity (1980),Drama +89519,Please Believe Me (1950),Comedy|Romance +89521,"Winning Team, The (1952)",Drama|Romance +89527,Higher and Higher (1943),Comedy|Musical|Romance +89532,"House of the Seven Gables, The (1940)",Drama|Thriller +89535,"Havre, Le (2011)",Comedy|Drama +89537,"Unlikely Weapon, An (2008)",Documentary +89539,Cedar Boys (2009),Crime|Drama +89542,Bloom (2003),Comedy|Drama|Romance +89549,A Via Láctea (2007),Drama +89551,Magnificent Warriors (Zhong hua zhan shi) (1987),Action +89554,Zindagi Na Milegi Dobara (2011),Adventure|Comedy|Drama|Romance +89570,Restless (2011),Drama +89580,Neds (2010),Drama +89582,Cold Fish (Tsumetai nettaigyo) (2010),Drama|Thriller +89584,Skeletons (2010),Comedy|Fantasy +89588,Follow Me Quietly (1949),Crime|Drama|Film-Noir|Mystery +89590,Scott Walker: 30 Century Man (2006),Documentary|Musical +89592,Four Nights of a Dreamer (Quatre nuits d'un rêveur) (1971),Drama|Romance +89594,"Perfume of the Lady in Black, The (Il profumo della signora in nero) (1974)",Horror|Mystery|Thriller +89596,"Soul of a Man, The (2003)",Documentary|Musical +89598,God's Comedy (A Comédia de Deus) (1995),Comedy|Drama +89607,Nightmare (1964),Horror|Mystery|Thriller +89610,Taxi zum Klo (1980),Comedy +89613,I Am (Jestem) (2005),Drama +89616,My Little Business (Ma petite entreprise) (1999),Comedy|Drama +89618,Sachs' Disease (La maladie de Sachs) (1999),Drama +89620,"Witches, The (Le streghe) (1967)",Comedy|Drama|Romance +89623,"Valley, The (Obscured by Clouds) (La vallée) (1972)",Action|Drama +89629,Point Blank (À bout portant) (2010),Action|Crime|Thriller +89632,Masti (2004),Comedy +89635,"Story of Me, The (O contador de histórias) (2009)",Drama +89638,Nothing Personal (2009),Drama +89650,Ironclad (2011),Action|Adventure +89658,Green Fire (1954),Adventure|Drama +89664,Photos in the City of Sylvia (Unas fotos en la ciudad de Sylvia) (2007),Documentary +89668,Pathetic Fallacy (Ajantrik) (1958),Drama +89670,No Man of Her Own (1932),Drama|Romance +89674,Zombie Island Massacre (1984),Horror +89678,Northanger Abbey (2007),Drama|Romance +89701,Floods of Fear (1959),Action|Adventure|Crime|Thriller +89703,"Loser Takes All, The (O hamenos ta pairnei ola) (2002)",Action|Adventure|Drama +89705,Film ist a Girl & a Gun (2009),Documentary|Romance +89707,In Vanda's Room (No Quarto da Vanda) (2000),Drama +89712,"Preacher, The (De dominee) (2004)",Crime|Drama +89714,Black Butterflies (2011),Drama +89718,Sweet Karma (2009),Crime|Drama|Thriller +89720,Bereavement (2010),Horror +89722,"Horrible Way to Die, A (2010) ",Horror|Thriller +89726,"Last Chance, The (Die letzte Chance) (1945)",Drama|War +89728,Men Without Wings (Muzi bez krídel) (1946),Drama +89732,Bulldog Drummond Escapes (1937),Adventure|Mystery|Romance|Thriller +89745,"Avengers, The (2012)",Action|Adventure|Sci-Fi|IMAX +89747,Taxi! (1932),Crime|Drama|Romance +89753,Tinker Tailor Soldier Spy (2011),Drama|Film-Noir|Thriller +89759,"Separation, A (Jodaeiye Nader az Simin) (2011)",Drama +89761,"Dangerous Method, A (2011)",Drama|Thriller +89763,Man's Castle (1933),Drama|Romance +89765,"Sleep, My Love (1948)",Drama|Film-Noir|Mystery +89767,My Name Is Julia Ross (1945),Drama|Film-Noir|Mystery +89769,"Romantic Englishwoman, The (1975)",Comedy|Drama +89772,Lowly City (Neecha Nagar) (1946),Drama +89774,Warrior (2011),Drama +89778,Littlerock (2010),Drama +89794,"Crowd Roars, The (1932)",Action|Drama +89797,Eva (a.k.a. Eve) (1962),Drama +89800,You're Telling Me! (1934),Comedy +89802,Mother Wore Tights (1947),Musical +89804,"Ides of March, The (2011)",Drama +89806,"Proud and the Beautiful, The (Orgueilleux, Les) (Proud Ones, The) (1953)",Drama +89819,Punk in London (1977),Documentary|Musical +89829,"Star Witness, The (1931)",Drama +89831,"Strip, The (1951)",Drama|Film-Noir +89833,Bad Girl (1931),Drama +89837,Kill List (2011),Horror|Mystery|Thriller +89840,Killer Elite (2011),Action|Thriller +89844,"Dukes, The (2007)",Comedy|Crime|Drama +89846,Bobby Fischer Against the World (2011),Documentary +89848,Badmaash Company (2010),Comedy|Crime|Drama +89850,"Nature of Existence, The (2010)",Documentary +89862,Bellflower (2011),Action|Drama|Romance +89864,50/50 (2011),Comedy|Drama +89872,Warrior of the Lost World (1983),Action|Sci-Fi +89877,Main Street (2010),Drama +89881,Superman and the Mole-Men (1951),Children|Mystery|Sci-Fi +89883,Rat Pfink a Boo Boo (1966),Action|Comedy +89896,"Turin Horse, The (A Torinói ló) (2011)",Drama +89898,Generation P (2011),Comedy|Drama|Sci-Fi +89900,Once Upon a Time in Anatolia (Bir zamanlar Anadolu'da) (2011),Drama +89904,The Artist (2011),Comedy|Drama|Romance +89908,Someone I Loved (Je l'aimais) (2009),Drama|Romance +89910,"Housewarming (Travaux, on sait quand ça commence...) (2005)",Comedy +89912,Whity (1971),Drama|Western +89924,I Want Candy (2007),Comedy +89926,At Any Second (In jeder Sekunde) (2008),Drama +89930,Superheroes (2011),Action|Comedy|Documentary|Drama +89932,Me and the Colonel (1958),Comedy|War +89936,Corruption (1968),Horror +89939,Gigi (1949),Comedy +89941,Ornamental Hairpin (Kanzashi) (1941),Drama +89945,BlinkyTM (2011),Horror|Sci-Fi +89961,Play (2011),Crime|Drama +89963,"Khroustaliov, My Car! (Khrustalyov, mashinu!) (1998)",Comedy|Drama +89965,Song of the Exile (Ke tu qiu hen) (1990),Drama +89969,"Legend of Suram Fortress, The (Ambavi Suramis tsikhitsa) (1986) ",Drama +89971,On the Double (1961),Comedy|War +89973,Here Comes Peter Cottontail (1971),Animation|Children|Musical +89977,Don't Change Your Husband (1919),Comedy +89979,"Masseurs and a Woman, The (Anma to onna) (1938)",Drama +89983,Robot (2010),Action|Comedy|Musical|Sci-Fi +89985,"Trap: What Happened to Our Dream of Freedom, The (2007)",Documentary +89988,Animal Love (Tierische Liebe) (1996),Documentary +89990,"Novena, The (La neuvaine) (2005)",Drama +89994,Rabbit à la Berlin (Królik po berlinsku) (2009),Documentary|War +89997,Circumstance (2011),Drama +89999,The Beast Kills in Cold Blood (1971),Horror|Mystery|Thriller +90007,Ghost from the Machine (2010),Sci-Fi +90009,Reykjavik-Rotterdam (2008),Drama|Thriller +90011,Wrestling (Bræðrabylta) (2007),Drama|Romance +90015,White of the Eye (1987),Thriller +90017,The Boss (1973),Action|Crime|Thriller +90019,Green Chair (Noksaek uija) (2005),Drama|Romance +90021,I'm Gonna Explode (a.k.a. I'm Going to Explode) (Voy a explotar) (2008),Drama +90035,"Report, The (Gozaresh) (1977)",Drama +90049,Five Dedicated to Ozu (2003),Documentary +90052,"Lizard in a Woman's Skin, A (Lucertola con la pelle di donna, Una) (1971)",Horror|Mystery|Thriller +90057,Take Shelter (2011),Drama +90059,Genealogies of a Crime (Généalogies d'un crime) (1997),Crime|Drama +90061,"Myth of the American Sleepover, The (2010)",Comedy|Drama|Romance +90064,That Day (Ce jour-là) (2003),Comedy|Crime|Drama|Mystery +90066,Road to Nowhere (2010),Romance|Thriller +90068,Zaat (1971),Fantasy|Horror|Sci-Fi +90071,"Music Never Stopped, The (2011)",Drama +90084,"Experience, The (Tadjrebeh) (1973)",Drama +90086,"Suit for Wedding, A (a.k.a. The Wedding Suit) (Lebassi Baraye Arossi) (1976)",Drama +90104,ABC Africa (2001),Documentary +90106,Pigskin Parade (1936),Musical +90108,Songwriter (1984),Drama +90112,First Love (1939),Comedy|Musical +90114,I Dream Too Much (1935),Comedy|Musical|Romance +90116,"One Potato, Two Potato (1964)",Drama +90118,"Sheep Has Five Legs, The (Le mouton à cinq pattes) (1954)",Comedy +90127,No Rest for the Wicked (2011),Thriller +90133,"Presence, The (2010)",Drama|Horror|Thriller +90154,"Caller, The (2011)",Horror|Mystery|Thriller +90167,Small Town Girl (1953),Musical|Romance +90170,Monsieur Vincent (1947),Drama +90172,"Toast of New Orleans, The (1950)",Musical +90183,"Captain Thunder (Capitán Trueno y el Santo Grial, El) (Prince Killian and the Holy Grail) (2011)",Adventure +90196,"Happiest Days of Your Life, The (1950)",Comedy +90199,"I Am Taraneh, I Am Fifteen Years Old (Man, taraneh, panzdah sal daram) (2002)",Drama +90201,"Grand Dukes, The (Les grands ducs) (1996)",Comedy +90203,Tony Arzenta (No Way Out) (Big Guns) (1973),Action|Crime|Drama|Thriller +90206,"Living Desert, The (1953)",Documentary +90208,Brothers at War (2009),Documentary|War +90211,Salaam Cinema (1995),Comedy|Documentary|Drama +90235,"Happiest Girl in the World, The (Cea mai fericita fata din lume) (2009)",Drama +90237,Examined Life (2008),Documentary +90239,Wadd: The Life & Times of John C. Holmes (1999),Documentary +90241,Don't Deliver Us from Evil (Mais ne nous délivrez pas du mal) (1971),Drama|Horror +90243,Three Outlaw Samurai (Sanbiki no samurai) (1964),Action|Drama +90245,Antonio Gaudí (1985),Documentary +90247,Slumming (2006),Comedy|Drama +90249,Real Steel (2011),Action|Drama|Sci-Fi|IMAX +90252,Devil Times Five (a.k.a. Peopletoys) (1974),Horror +90254,"Dream Catcher, The (1999)",Drama +90256,"Pleasure of Being Robbed, The (2008)",Comedy +90262,"Enchanted World of Danny Kaye: The Emperor's New Clothes, The (1972)",Animation|Children|Musical +90264,Pinocchio (1976),Children|Fantasy|Musical +90266,Buck (2011),Documentary +90268,Hell (2011),Horror|Sci-Fi|Thriller +90270,Exit (2006),Drama|Mystery|Thriller +90273,Frozen Hell (Jäämarssi) (2011) ,Documentary|War +90279,Clara and Me (Clara et moi) (2004),Drama|Romance +90281,My Joy (Schastye moe) (2010),Drama +90284,"Overbrook Brothers, The (2009)",Comedy +90292,Sokkotanssi (1999),Comedy|Drama +90306,"Smiling Madame Beudet, The (La souriante Madame Beudet) (1923)",Drama +90308,Snow (Snijeg) (2008),Drama +90310,Father of Invention (2010),Comedy|Drama +90312,Quiet Flows the Don (Tikhiy Don) (1957),Drama|War +90314,No Exit (Huis clos) (1954),Drama +90319,At Sea (2007),Documentary +90321,House by the River (1950),Crime|Drama|Film-Noir +90327,"Bullfighters, The (1945)",Comedy|Musical +90339,"Last Days of Pompeii, The (Gli ultimi giorni di Pompeii) (1913)",Adventure|Drama +90341,Catching Hell (2011),Documentary +90343,Footloose (2011),Comedy|Drama|Musical +90345,"Thing, The (2011)",Horror|Mystery|Sci-Fi|Thriller +90350,Lemmy (2010),Documentary +90353,Beautiful Boy (2010),Drama +90355,"Harvest/La Cosecha, The (2011)",Documentary +90357,Tyrannosaur (2011),Drama +90359,Männerherzen... und die ganz ganz große Liebe (2011),Comedy|Drama|Romance +90364,"O-Bi, O-Ba - The End of Civilization (O-bi, O-ba - Koniec cywilizacji) (1985)",Drama|Mystery|Sci-Fi +90371,"Killer Is Loose, The (1956)",Crime|Drama|Film-Noir +90374,Martha Marcy May Marlene (2011),Drama|Thriller +90376,We Need to Talk About Kevin (2011),Drama|Thriller +90378,Tabloid (2010),Documentary +90380,"Old Fashioned Way, The (1934)",Comedy +90382,"River Murders, The (2011)",Thriller +90397,"Return of Django (Son of Django) (Figlio di Django, Il) (1968)",Western +90403,"Three Musketeers, The (2011)",Action|Adventure +90405,In Time (2011),Crime|Sci-Fi|Thriller +90413,Oranges and Sunshine (2010),Drama +90419,"Pain in the Ass, A (L'emmerdeur) (2008)",Comedy +90421,Brighton Rock (2010),Crime|Drama|Thriller +90424,"League of Gentlemen, The (1960)",Adventure|Comedy|Crime|Drama +90426,Burning Palms (2010),Comedy|Drama +90428,Margaret (2011),Drama +90430,Carnage (2011),Comedy|Drama +90434,Assassination Games (2011),Action|Thriller +90439,Margin Call (2011),Drama|Thriller +90458,God's Little Acre (1958),Comedy|Drama|Romance +90460,2019: After the Fall of New York (1983),Action|Horror|Sci-Fi +90466,Out California Way (1946),Western +90469,Paranormal Activity 3 (2011),Horror +90471,Puncture (2011),Drama +90474,Polisse (2011),Crime|Drama +90476,"Little Bit of Heaven, A (2011)",Comedy|Drama|Romance +90478,Year of the Carnivore (2010),Comedy|Romance +90488,"Perfect Couple, A (1979)",Comedy|Romance +90497,Bertsolari (2011),Documentary +90514,Blondie Knows Best (1946),Comedy +90522,Johnny English Reborn (2011),Adventure|Comedy|Thriller +90524,Abduction (2011),Action|Drama|Mystery|Thriller +90526,Beginning of the Great Revival (a.k.a. The Founding of a Party) (2011),Drama|IMAX +90528,This Must Be the Place (2011),Crime|Drama|Thriller +90531,Shame (2011),Drama +90533,"Marseillaise, La (1938)",Drama|War +90535,Werewolf Woman (La lupa mannara) (1976),Horror +90537,"Love Affair, or the Case of the Missing Switchboard Operator (Ljubavni slucaj ili tragedija sluzbenice P.T.T.) (1967)",Drama +90543,11 x 14 (1977),Drama +90545,"True Story of Jesse James, The (1957)",Action|Crime|Western +90547,One to Another (Chacun sa nuit) (2006),Drama +90549,American Son (2008),Drama|Romance|War +90554,"Book of Stars, The (1999)",Drama +90556,Directed by John Ford (1971),Documentary +90559,TV Junkie (2006),Documentary +90561,"Happy, Happy (Sykt lykkelig) (2010)",Comedy|Drama +90564,"Screaming Man, A (Un homme qui crie) (2010)",Drama +90566,"Cab for Three, A (Taxi para tres) (2001)",Action|Comedy|Crime|Drama +90570,Ballad of the Little Soldier (Ballade vom kleinen Soldaten) (1984),Documentary +90574,Nora's Will (Cinco días sin Nora) (2008),Comedy|Drama +90576,What's Your Number? (2011),Comedy|Romance +90578,Dream House (2011),Drama|Mystery|Thriller +90592,How to Die in Oregon (2011),Documentary|Drama +90594,"Suddenly, Last Winter (Improvvisamente l'inverno scorso) (2008)",Documentary +90596,Queen of Blood (1966),Horror|Sci-Fi +90598,Radioactive Dreams (1985),Action|Comedy|Film-Noir|Musical|Sci-Fi +90600,Headhunters (Hodejegerne) (2011),Action|Crime|Thriller +90609,Camouflage (Barwy ochronne) (1977),Comedy|Drama +90620,Mulan (2009),Action|Adventure|Drama|Romance +90622,Campus Radio (2011),Comedy|Drama +90624,Machine Gun Preacher (2011),Action|Crime +90630,Miss Representation (2011),Documentary +90632,Answer This! (2010),Comedy|Romance +90645,Anonymous (2011),Drama +90647,Puss in Boots (2011),Adventure|Animation|Comedy|Fantasy|IMAX +90649,Mr. Nice (2010),Comedy|Drama +90651,Hella W (2011),Drama +90662,"Veteran, The (2011)",Action|Thriller +90664,"Gold of Naples, The (L'oro di Napoli) (1954)",Comedy +90666,Crashing (2007),Drama +90668,"Loving Father, A (Aime ton père) (2002)",Drama +90671,End of the Game (Der Richter und sein Henker) (1975),Crime|Drama|Mystery|Thriller +90673,Gone to Earth (1950),Drama|Romance +90690,Colorado Avenue (2007),Drama +90697,Doc (1971),Western +90700,Al Franken: God Spoke (2006),Documentary +90702,Bone (1972),Comedy +90704,Hamlet (1969),Drama +90706,"China 9, Liberty 37 (Amore, piombo e furore) (1978)",Western +90717,Tower Heist (2011),Action|Comedy|Crime +90719,J. Edgar (2011),Drama +90730,Sometimes They Come Back (1991),Drama|Fantasy|Horror|Thriller +90738,"Double, The (2011)",Action|Crime|Drama|Mystery|Thriller +90741,Cherry Crush (2007),Drama|Thriller +90744,WUSA (1970),Drama +90746,"Adventures of Tintin, The (2011)",Action|Animation|Mystery|IMAX +90748,Operation Mad Ball (1957),Comedy|War +90751,"Son of No One, The (2011)",Action|Crime|Thriller +90753,Undertow (Contracorriente) (2009),Drama|Romance +90769,Starsuckers (2009),Documentary +90775,Flicker (2009),Horror +90777,White on Rice (2009),Comedy +90795,"Exercice de l'État, L' (2011)",Drama +90806,"Heroic Ones, The (Shi san tai bao) (1970)",Action|Drama +90809,Tomboy (2011),Drama +90811,Glasses (Megane) (2007),Comedy|Drama +90813,See How They Fall (Regarde les hommes tomber) (1994),Drama +90815,Actresses (Actrices) (2007),Comedy|Drama +90817,Cobra Woman (1944),Adventure|Drama +90819,"Last Days of Pompeii, The (1935)",Adventure|Drama +90821,Capricious Summer (Rozmarné léto) (1968),Comedy +90823,Bandwagon (1996),Comedy +90825,Flower & Garnet (2002),Drama +90827,Loft (Rofuto) (2005),Horror +90843,Lavatory Lovestory (Ubornaya istoriya - lyubovnaya istoriya) (2007),Animation +90849,Woman Obsessed (1959),Drama|Romance +90853,"Heirloom, The (Zhai Ban) (2005)",Drama|Horror +90863,George Harrison: Living in the Material World (2011),Documentary +90866,Hugo (2011),Children|Drama|Mystery +90868,Higher Ground (2011),Drama +90870,Trespass (2011),Crime|Drama|Thriller +90873,Savage Streets (1984),Action|Crime|Drama|Thriller +90876,"Dark House, The (Dom zly) (2009)",Crime|Drama|Thriller +90878,Street Scene (1931),Drama +90886,Election Day (2007),Documentary +90888,Immortals (2011),Action|Drama|Fantasy +90890,Jack and Jill (2011),Comedy +90895,Take Out (2004),Drama +90897,Chesty: A Tribute to a Legend (1976),Documentary +90903,Mahjong (Ma jiang) (1996),Comedy|Drama +90907,Eerie Tales (Unheimliche Geschichten) (1919),Fantasy|Horror|Mystery +90914,"Devil's Double, The (2011)",Action|Drama +90929,House of Tolerance (2011),Drama +90931,Beats Being Dead (Dreileben - Etwas Besseres als den Tod) (2011),Drama +90933,"Deep Blue Sea, The (2011)",Drama|Romance +90935,Killer (Tueur à gages) (1998),Action|Crime|Thriller +90937,My Mother and Her Guest (Sarangbang sonnimgwa eomeoni) (1961),Drama +90939,11-11-11 (11-11-11: The Prophecy) (2011),Horror|Thriller +90943,Into the Abyss (2011),Documentary +90947,"Oslo, August 31st (Oslo, 31. august) (2011)",Drama +90949,Paper Soldier (Bumazhnyy soldat) (2008),Drama|Romance +90951,"Nada Gang, The (Nada) (1974)",Thriller +90953,Whatever Lola Wants (2007),Drama +90958,Daffy Duck's Movie: Fantastic Island (1983),Animation|Children|Comedy +90960,Westward Ho (1935),Drama|Western +90963,"Last Mountain, The (2011)",Documentary +90965,Sasha (Sascha) (2010),Comedy|Drama +91007,I Want to Be a Soldier (2011),Drama +91010,Another Happy Day (2011),Drama +91012,"Big Hangover, The (1950)",Comedy +91014,Shaolin (Xin shao lin si) (2011),Action|Drama +91026,Fright (1972),Crime|Horror|Thriller +91028,"Story of Mankind, The (1957)",Drama|Fantasy +91031,Wichita (1955),Action|Romance|Western +91035,Wuthering Heights (2011),Drama +91037,From Beyond the Grave (Creatures) (1974),Horror +91044,LennoNYC (2010),Documentary +91048,Cherry (2010),Comedy|Drama +91054,Batman (1943),Action|Adventure|Crime|Sci-Fi|Thriller +91056,Batman and Robin (1949),Action|Adventure|Crime|Drama|Sci-Fi +91058,Make Like a Thief (Juokse kuin varas) (1964),Comedy|Crime|Thriller +91065,Bluebeard (Landru) (1963),Drama +91067,Spy(ies) (Espion(s)) (2009),Drama|Romance|Thriller +91069,"Good Morning, Miss Dove (1955)",Drama +91071,"Late George Apley, The (1947)",Comedy +91073,Million Dollar Legs (1932),Comedy +91075,"Great Flamarion, The (1945)",Drama|Film-Noir +91077,"Descendants, The (2011)",Comedy|Drama +91079,Like Crazy (2011),Drama|Romance +91094,"Muppets, The (2011)",Children|Comedy|Musical +91096,"White Dragon, The (Fei hap siu baak lung) (2004)",Action|Adventure|Fantasy|Romance +91104,"Twilight Saga: Breaking Dawn - Part 1, The (2011)",Adventure|Drama|Fantasy|Romance +91106,Circle of Deceit (Die Fälschung) (1981),Drama|War +91108,Figures in a Landscape (1970),Thriller +91110,Barocco (1976),Crime|Drama|Romance|Thriller +91112,Blown Away (1993),Action|Drama|Romance +91126,War Horse (2011),Drama|War +91128,"Rum Diary, The (2011)",Comedy|Drama|Thriller +91134,My Week with Marilyn (2011),Drama +91137,Stanley and Livingstone (1939),Adventure|Drama +91140,"Making Plans for Lena (Non ma fille, tu n'iras pas danser) (2009)",Drama +91161,Strange Affair (1944),Mystery +91163,Moonlight and Cactus (1944),Comedy|Musical|Western +91167,"Inconvenient Tax, An (2011)",Documentary +91169,Easier with Practice (2009),Drama|Romance +91179,I Was an Adventuress (1940),Comedy|Crime +91181,Safe in Hell (1931),Drama +91187,Millhaven (2010),Animation +91189,Three Days (Tres días) (2008),Crime|Drama|Fantasy +91191,À l'aventure (2008),Drama +91193,"Criminal, The (a.k.a. Concrete Jungle) (1960)",Crime|Drama +91195,"Wedding Director, The (Il regista di matrimoni) (2006)",Drama|Mystery +91199,Weekend (2011),Drama|Romance +91201,"South, The (Sur) (1988)",Drama +91206,"Iron Rose, The (Rose de fer, La) (1973)",Horror +91208,Silvestre (1982),Drama +91211,Echoes of the Rainbow (Sui yuet san tau) (2010),Comedy|Drama|Romance +91213,Beijing Taxi (2010),Documentary +91216,"Lebanon, Pa. (2010)",Drama +91218,Hollywood Party (1934),Comedy|Musical +91223,"Constant Nymph, The (1943)",Drama|Romance +91227,Cyclomania (2001),Drama|Romance +91229,Enon opetukset (2011),Comedy|Drama +91241,Singham (2011),Action|Drama|Romance +91243,Shanghai (2010),Drama|Mystery|Romance +91246,Milky Way (Tejút) (2007),(no genres listed) +91248,"Silence Before Bach, The (Die Stille vor Bach) (2007) ",Musical +91250,Chandni Chowk to China (2009),Action|Comedy +91253,Stage Struck (1936),Comedy|Musical +91256,Faat Kiné (2001),Comedy|Drama +91261,Hipsters (Stilyagi) (2008),Drama|Musical|Romance +91266,Another Cinderella Story (2008),Children|Comedy|Musical|Romance +91268,"Plough and the Stars, The (1936)",Drama +91271,Miracle at Oxford (True Blue) (1996),Drama +91273,Bunraku (2010),Action|Drama|Fantasy +91284,"Lonely Passion of Judith Hearne, The (1987)",Drama|Romance +91286,"Little Colonel, The (1935)",Children|Comedy|Crime|Drama +91290,Sarah's Key (Elle s'appelait Sarah) (2010),Drama +91298,Bigga Than Ben (2008),Crime|Drama +91302,"Tree, The (2010)",Children|Drama +91304,Xtro (1983),Horror|Sci-Fi +91306,Waiting for Happiness (Heremakono) (2002),Drama +91309,Applause (Applaus) (2009),Drama +91323,"Sitter, The (2011)",Comedy +91325,Extremely Loud and Incredibly Close (2011),Drama +91331,Terror on a Train (Time Bomb) (1953),Thriller +91333,Hanussen (1988),Drama +91335,"Gruffalo, The (2009)",Adventure|Animation|Children|Comedy|Drama +91337,Play the Game (2009),Comedy|Romance +91339,"12 Dogs of Christmas, The (2005)",Children +91351,Asterix and the Big Fight (Astérix et le coup du menhir) (1989),Adventure|Animation|Children|Comedy +91353,Asterix in America (a.k.a Asterix Conquers America) (Astérix et les Indiens) (1994),Adventure|Animation|Children|Comedy +91355,Asterix and the Vikings (Astérix et les Vikings) (2006),Adventure|Animation|Children|Comedy|Fantasy +91360,Sing Your Song (2011),Documentary +91362,Rings on Her Fingers (1942),Comedy|Romance +91371,Rampart (2011),Action|Crime|Drama|Thriller +91386,Happy Feet Two (2011),Animation|Children|Comedy|IMAX +91388,Angel (1982),Drama +91391,HealtH (1980),Comedy +91393,L'amore (1948),Drama +91395,That Cold Day in the Park (1969),Drama +91414,Arthur Christmas (2011),Animation|Children|Comedy|Drama +91416,Miss Bala (2011),Action|Adventure|Drama|Thriller +91419,Wind Across the Everglades (1958),Drama|Romance +91421,Red Line 7000 (1965),Action|Drama +91423,99 and 44/100% Dead (1974),Action|Adventure|Comedy|Crime +91425,"Suspect, The (1944)",Drama|Thriller +91442,"Midsummer Night's Dream, A (1968)",Comedy|Fantasy|Romance +91444,Getting to Know You (1999),Comedy|Drama +91446,Run for Cover (1955),Western +91450,"Perfect Game, The (2009)",Drama +91474,Flypaper (2011),Comedy|Crime +91483,Bullet to the Head (2012),Action|Crime|Film-Noir +91485,"Expendables 2, The (2012)",Action|Adventure +91488,"Snowman, The (1982)",Animation|Children|Musical +91492,Bathing Beauty (1944),Comedy|Musical +91494,What Price Glory (1926),Comedy|Drama|War +91500,The Hunger Games (2012),Action|Adventure|Drama|Sci-Fi|Thriller +91503,Blind Justice (Hævnens nat) (1916),Drama|Mystery|Thriller +91505,Clone (Womb) (2010),Drama|Romance|Sci-Fi +91509,Fire of Conscience (For lung) (2010),Action|Crime|Mystery|Thriller +91511,"Goddess, The (Shen nu) (1934)",Drama +91513,Intimate Lighting (Intimni osvetleni) (1965),Comedy|Drama +91515,Sweeney Todd: The Demon Barber of Fleet Street (1936),Crime|Horror +91517,"Death King, The (Der Todesking) (1990)",Drama|Horror +91529,"Dark Knight Rises, The (2012)",Action|Adventure|Crime|IMAX +91531,Hovering Over the Water (À Flor do Mar) (1986),Drama|Romance +91533,Dacii (1967),Drama|War +91535,"Bourne Legacy, The (2012)",Action|Adventure|Drama|Thriller|IMAX +91537,"Don't Worry, I'm Fine (Je vais bien, ne t'en fais pas) (2006)",Drama +91540,I Melt with You (2011),Drama +91542,Sherlock Holmes: A Game of Shadows (2011),Action|Adventure|Comedy|Crime|Mystery|Thriller +91548,Life in a Day (2011),Documentary|Drama +91554,Evidence of Blood (1998),Crime|Drama|Mystery|Thriller +91556,"Cost of Living, The (Le coût de la vie) (2003)",Comedy +91558,Flamenco (de Carlos Saura) (1995),Musical +91560,"Funny Man, A (Dirch) (2011)",Drama +91562,Judex (1916),Adventure +91564,Wild Animals (Yasaeng dongmul bohoguyeog) (1997),Crime|Drama +91566,Sasayaki (a.k.a. Moonlight Whispers) (Gekkô no sasayaki) (1999),Drama|Romance +91571,Coriolanus (2011),Drama|Thriller +91573,Americano (2011),Drama +91582,Stagecoach (1966),Western +91586,Angelus (2000),Comedy|Drama +91589,"Forty-first, The (Sorok pervyy) (1956)",Drama|Romance|War +91591,Macon County Line (1974),Action|Drama +91593,Gitmek: My Marlon and Brando (Gitmek: Benim Marlon ve Brandom) (2008),Drama|Romance|War +91595,Prom Night in Mississippi (2009),Documentary +91597,This Is Not a Film (In film nist) (2011),Documentary +91599,Carmen Comes Home (Karumen kokyo ni kaeru) (1951),Comedy +91601,Outside Satan (Hors Satan) (2011),Drama +91603,"Student, The (El estudiante) (2011)",Drama +91605,Shit Year (2010),Drama +91610,Toronto Stories (2008),Drama +91612,Backstage (2005),Drama +91615,Better Things (2008),Drama +91617,"New Life, A (La vie nouvelle) (2002)",Drama +91619,"Why Are the Bells Ringing, Mitica? (a.k.a. Carnival Scenes) (De ce trag clopotele, Mitica?) (1981)",Comedy +91622,Young Adult (2011),Comedy|Drama +91624,Mr Bones 2: Back from the Past (2008),Comedy +91626,Faces in the Crowd (2011),Crime|Drama|Mystery +91628,New Year's Eve (2011),Comedy|Romance +91630,Mission: Impossible - Ghost Protocol (2011),Action|Adventure|Thriller|IMAX +91632,G.I. Joe: A Real American Hero (G.I. Joe: The MASS Device) (1983),Action|Animation +91634,G.I. Joe: The Revenge of Cobra (1984),Action|Animation +91653,We Bought a Zoo (2011),Comedy|Drama +91655,April in Paris (1952),Comedy|Musical|Romance +91658,"Girl with the Dragon Tattoo, The (2011)",Drama|Thriller +91660,"Darkest Hour, The (2011)",Action|Horror|Sci-Fi|Thriller +91662,Jim (2010),Drama +91664,Picture Me: A Model's Diary (2009),Documentary +91666,Last Holiday (1950),Comedy|Drama|Romance +91671,Alvin and the Chipmunks: Chipwrecked (2011),Animation|Comedy +91673,Albert Nobbs (2011),Drama +91681,"Julia's Eyes (Ojos de Julia, Los) (2010)",Horror|Thriller +91683,Metrobranding (2010),Documentary +91688,Salvation Boulevard (2011),Comedy|Thriller +91690,Friends with Kids (2011),Comedy +91692,"Girl in the Red Velvet Swing, The (1955)",Crime|Drama|Romance +91694,Intruders (2011),Horror|Thriller +91697,Pitfall (1948),Film-Noir +91707,In the Land of Blood and Honey (2011),Drama|Romance|War +91709,Kongo (1932),Drama|Horror +91711,Shockproof (1949),Crime|Drama|Film-Noir +91713,Boy Meets Girl (1938),Comedy +91715,Model Shop (1969),Drama +91718,Broken Lullaby (1932),Drama +91727,"Toast of New York, The (1937)",Comedy|Drama|War +91729,Texas (1941),Drama|Romance|Western +91741,Peas at 5:30 (Erbsen auf halb 6) (2004),Comedy|Drama|Romance +91743,Today's Special (2009),Comedy +91745,Brutal Beauty: Tales of the Rose City Rollers (2010),Documentary +91747,G.I. Joe: Operation Dragonfire (1989),Action|Animation +91749,Sophie's Revenge (Fei chang wan mei) (2009),Comedy|Romance +91755,Reagan (2011),Documentary +91762,"Last Lions, The (2011)",Documentary +91766,Machine Gun McCain (Gli intoccabili) (1969),Crime|Drama|Thriller +91768,"Outside Man, The (Un homme est mort) (1972)",Action|Crime|Drama|Thriller +91770,Private Hell 36 (1954),Crime|Drama|Film-Noir +91782,Territories (2010) ,Crime|Horror +91784,Girl Walks Into a Bar (2011),Comedy|Drama|Fantasy +91786,Professor Layton and the Eternal Diva (Eiga Reiton-kyôju to eien no utahime) (2009),Action|Adventure|Animation|Mystery|Sci-Fi +91789,Bringing Up Bobby (2011),Comedy +91793,"Painting Sellers, The (Taulukauppiaat) (2010)",Drama +91797,"Chapman Report, The (1962)",Comedy|Drama|Romance +91799,Skyscraper Souls (1932),Drama|Romance +91805,Ladies vs. Ricky Bahl (2011),Comedy|Drama +91808,Pariah (2011),Drama +91821,"Muppet Family Christmas, A (1987)",Children|Comedy|Musical +91823,Kung Fu Panda Holiday Special (2010),Animation|Children|Comedy +91826,Tanner Hall (2009),Drama +91829,Newlyweds (2011),Drama +91831,"Devil Inside, The (2012)",Horror|Thriller +91834,Born to Race (2011),Action +91840,Roadie (2011),Comedy|Drama +91842,Contraband (2012),Action|Crime|Drama|Thriller +91844,Chak De India! (2007),Drama +91852,"Métamorphose des cloportes, La (1965)",Comedy|Crime +91854,Mantrap (1926),Comedy +91858,"Cow, The (Gaav) (1969)",Drama +91860,"Way South, The (De weg naar het zuiden) (1981)",Documentary +91862,Local Color (1977),Drama +91866,Beneath the Darkness (2011),Thriller +91869,Being Elmo: A Puppeteer's Journey (2011),Documentary +91871,Idol of the Crowds (1937),Drama|Romance +91873,Joyful Noise (2012),Comedy|Musical +91880,My Best Enemy (Mi mejor enemigo) (2005),Drama|War +91882,To Die Like a Man (Morrer Como Um Homem) (2009),Drama|Fantasy|Musical +91884,"Sea Gull, The (1968)",Drama|Romance +91886,Dolphin Tale (2011),Children|Drama +91888,Chico & Rita (2010),Animation|Musical|Romance +91890,"Iron Lady, The (2011)",Drama +91894,Happy Tears (2009),Comedy|Drama +91896,"Golden Boys, The (2008)",Comedy|Romance +91902,Elena (2011),Drama +91904,"House Built on Water, A (Khanei ruye ab) (2003)",Thriller +91906,Aurora (2010),Drama +91908,Psyhi vathia (a.k.a. Deep Soul) (2009),Drama|War +91911,"Conquest, The (La conquête) (2011)",Drama +91914,Mad Bastards (2010),Drama +91919,Mr. Bug Goes to Town (1941),Animation|Children|Comedy|Fantasy|Musical +91921,"Construction, The (En construcción) (2001)",Documentary +91924,"Wild Bees, The (Divoké vcely) (2001)",Comedy|Drama +91927,"End of the Line, The (2009)",Documentary +91929,Nostalgia for the Light (Nostalgia de la luz) (2010),Documentary|Drama +91931,Surrogate Valentine (2011),Comedy +91933,Top Floor Left Wing (Dernier étage gauche gauche) (2010),Action|Comedy|Drama +91935,Albatross (2011),Drama +91937,Loosies (2012),Comedy|Drama|Romance +91947,"Revenant, The (2009)",Comedy|Horror +91952,"Mill and the Cross, The (2011)",Drama +91954,One Trick Pony (1980),Drama +91957,Cat Run (2011),Action|Comedy +91960,"Magic Christmas Tree, The (1964)",Children|Comedy|Fantasy +91970,The Man Next Door (2009),Comedy|Drama +91972,"Divide, The (2011)",Thriller +91974,Underworld: Awakening (2012),Action|Fantasy|Horror|IMAX +91976,"Grey, The (2012)",Action|Drama +91978,Man on a Ledge (2012),Crime|Thriller +91981,Sacrifice (Zhao shi gu er) (2010),Drama +91983,"Hustlers, The (Veijarit) (2010)",Comedy|Drama +91991,First Family (1980),Comedy +91993,All Night Long (1962),Drama +91995,Gorilla at Large (1954),Mystery|Thriller +91997,"Garden of Eden, The (2008)",Drama +92001,Time Without Pity (1957),Crime|Drama|Mystery +92004,Chill Out! (Descongélate!) (2003),Comedy|Drama +92006,White Irish Drinkers (2010),Drama +92008,Haywire (2011),Action|Thriller +92010,Case départ (2011),Comedy +92023,"Las Vegas Story, The (1952)",Crime|Drama|Film-Noir +92025,My Man and I (1952),Drama +92027,Secrets (1933),Western +92029,Westbound (1959),Western +92032,"Don Is Dead, The (1973)",Action|Crime|Drama|Thriller +92046,Contact High (2009),Comedy +92048,"Whistleblower, The (2010)",Drama|Thriller +92058,"Human Centipede II (Full Sequence), The (2011)",Horror +92062,Dad Savage (1998),Crime|Thriller +92064,You and Me (1938),Crime|Romance +92079,"Nazis: A Warning from History, The (1997)",Documentary|War +92083,Zen (2009),Drama +92085,King of Beggars (Mo jong yuen So Hat-Yi) (1992),Action|Comedy|Drama +92087,"Light Touch, The (1952)",Crime|Drama +92094,Einstein and Eddington (2008),Drama +92096,14 Blades (Jin yi wei) (2010),Action|Drama +92099,"Locals, The (2003)",Horror|Thriller +92102,"Buona Sera, Mrs. Campbell (1968)",Comedy +92104,40 Pounds of Trouble (1962),Comedy +92106,My Future Boyfriend (2011),Comedy|Romance|Sci-Fi +92118,"Terrorizers, The (Kong bu fen zi) (1986)",Drama +92120,Good Bye (Bé omid é didar) (2011),Drama +92122,"Loneliest Planet, The (2011)",Thriller +92124,Images of the World and the Inscription of War (Bilder der Welt und Inschrift des Krieges) (1989),Documentary|War +92126,Policeman (Ha-shoter) (2011),Drama +92128,Disorder (2009),Documentary +92130,Red Psalm (Még kér a nép) (1972),Drama|Musical|War +92132,Regeneration (1915),Crime|Drama|Romance +92134,"Afternoon of a Torturer, The (Dupa-amiaza unui tortionar) (2001)",Drama +92136,We Won't Grow Old Together (Nous ne vieillirons pas ensemble) (1972),Drama +92152,"Turn Me On, Dammit! (Få meg på, for faen) (2011)",Comedy +92154,Faust (2011),Drama +92156,Post Mortem (2010),Drama +92159,Decasia: The State of Decay (2002),Documentary +92161,Viva (2007),Comedy|Drama|Musical +92163,Fados (2007),Documentary|Musical +92165,Go Get Some Rosemary (Daddy Longlegs) (2009),Comedy|Drama +92167,Praise (1998),Drama +92169,Stanley Kubrick's Boxes (2008),Documentary +92172,Street Mobster (a.k.a. Modern Yakuza: Outlaw Killer) (Gendai yakuza: hito-kiri yota) (1972),Action|Crime +92174,Alexandria... Why? (Iskanderija... lih?) (1979),Drama +92176,"Grand Maneuver, The (Les grandes manoeuvres) (1955)",Comedy|Drama|Romance +92178,Can Go Through Skin (Kan door huid heen) (2009),Drama +92180,Morgen (2010),Drama +92182,"What's Up, Scarlet? (2005)",Comedy|Romance +92184,Christmas Evil (a.k.a. You Better Watch Out) (1980),Horror|Thriller +92186,Three Wise Men (Kolme viisasta miestä) (2008),Drama +92188,Call Her Savage (1932),Drama +92192,Apollo 18 (2011),Horror|Sci-Fi|Thriller +92196,Crazy Horse (2011),Documentary +92198,Seeking Justice (2011),Action|Drama|Thriller +92200,"Sound and the Fury, The (1959)",Drama|Romance +92204,"Pointe-Courte, La (1955)",Drama +92210,"Disappearance of Haruhi Suzumiya, The (Suzumiya Haruhi no shôshitsu) (2010)",Adventure|Animation|Drama|Mystery|Sci-Fi +92222,Broken Trail (2006),Action|Adventure|Crime|Drama|Western +92224,"River Called Titas, A (Titash Ekti Nadir Naam) (1973)",Drama +92229,"Vanquished, The (I vinti) (1953)",Drama +92231,"Blue Bird, The (1918)",Fantasy +92234,Red Tails (2012),Action|Adventure|Drama|War +92240,Kagi (Odd Obsession) (1959),Drama +92243,"Flowers of War, The (Jin líng shí san chai) (2011)",Drama|War +92245,Enthusiasm (Entuziazm: Simfoniya Donbassa) (1931),Documentary +92250,"Scenesters, The (2009)",Comedy|Crime|Mystery +92252,Thunder Soul (2010),Documentary +92257,Vlad (2003),Horror|Thriller +92259,Intouchables (2011),Comedy|Drama +92262,Declaration of War (La Guerre est Déclarée) (2011),Drama +92264,One for the Money (2012),Action|Comedy|Crime +92268,Queen of the Amazons (1947),Action|Adventure|Mystery|Romance +92270,Becoming Chaz (2011),Documentary +92307,W.E. (2011),Drama|Romance +92309,"Innkeepers, The (2011)",Horror|Thriller +92314,Varasto (2011),Comedy|Drama +92321,Nancy Goes to Rio (1950),Comedy|Musical +92325,Dog Tags (2008),Drama|Romance +92335,Big Miracle (2012),Drama|Romance +92343,"Great Bank Hoax, The (1978)",Comedy|Crime +92348,Puss in Boots (Nagagutsu o haita neko) (1969),Adventure|Animation|Children|Comedy|Fantasy|Romance +92352,Reel Injun (2009),Documentary +92354,"Man Called Sledge, A (1970)",Western +92357,Cameraman: The Life and Work of Jack Cardiff (2010),Documentary +92371,Yolki (2010),Comedy +92374,Yolki 2 (2011),Comedy +92380,Jenny (1936),Drama +92382,"Straits of Love and Hate, The (Aien kyo) (1937)",Drama +92389,State Fair (1933),Comedy|Drama|Romance +92391,Grave Encounters (2011),Horror +92393,Detective Dee and the Mystery of the Phantom Flame (Di Renjie) (2010),Action|Crime|Mystery +92399,Hurry Sundown (1967),Drama +92408,Batch '81 (1982),Drama +92410,"Eleventh Year, The (Odinnadtsatyy) (1928) ",Documentary +92412,Forever Yours (Ikuisesti sinun) (2011),Documentary +92416,Kariera Nikosia Dyzmy (2002),Comedy +92420,Chronicle (2012),Action|Sci-Fi|Thriller +92422,"Woman in Black, The (2012)",Drama|Horror|Thriller +92424,Dottie Gets Spanked (1993),Drama +92427,Woman in Love (Rubbeldiekatz) (2011),Comedy +92435,"Dancing Hawk, The (Tanczacy jastrzab) (1978)",(no genres listed) +92437,Toast (2010),Comedy|Drama +92439,"Art of Getting By, The (2011)",Drama|Romance +92441,"Human Resources Manager, The (2010)",Drama +92446,"Overcoat, The (Il cappotto) (1952)",Comedy|Drama|Fantasy +92448,Bucky Larson: Born to Be a Star (2011),Comedy +92453,"Moine, Le (Monk, The) (2011)",Drama|Mystery|Thriller +92455,Can Mr. Smith Get to Washington Anymore? (2006),Documentary +92457,"Doll's House, A (1973)",Drama +92461,"Canyon, The (2009)",Thriller +92471,Cass Timberlane (1947),Drama|Romance +92475,All Watched Over by Machines of Loving Grace (2011),Documentary +92477,Yes: 9012 Live (1985),Documentary|Musical +92479,Kisses for My President (1964),Comedy +92481,Third Star (2010),Comedy|Drama +92483,Living Proof (2008),Drama +92507,Safe House (2012),Action|Crime|Mystery|Thriller +92509,"Vow, The (2012)",Drama|Romance +92511,Swamp Shark (2011),Sci-Fi +92514,Moon of the Wolf (1972),Horror|Mystery +92516,She Gods of Shark Reef (1958),Adventure +92518,King Kong Escapes (Kingu Kongu no gyakushû) (1967),Action|Adventure|Sci-Fi +92520,"Chocolate Soldier, The (1941)",Comedy|Musical +92522,Frisco Jenny (1932),Drama +92593,Special Bulletin (1983),Drama +92600,"As Luck Would Have It (Chispa de la vida, La) (2011)",Drama +92606,"Black Power Mixtape 1967-1975, The (2011)",Documentary +92609,"Common Law, The (1931)",Drama|Romance +92611,"Girl from Jones Beach, The (1949)",Comedy +92613,Holding Trevor (2007),Drama|Romance +92633,The Castle of Sand (1974),Crime|Mystery|Thriller +92635,At Home by Myself... with You (2009),Comedy|Romance +92637,Pitfall (Otoshiana) (1962),Crime|Drama|Fantasy +92639,Casual Relations (1973),Drama +92641,Warsaw Bridge (Pont de Varsòvia) (1990),(no genres listed) +92643,Monsieur Lazhar (2011),Children|Comedy|Drama +92646,Tin Pan Alley (1940),Drama|Musical|Romance +92648,BookWars (2000),Comedy|Crime|Documentary +92652,Windfall (2010),Documentary +92658,Kino-Eye (Kinoglaz) (1924),Documentary +92660,Silence (Chinmoku) (1971),Drama +92665,"For a Good Time, Call... (2012)",Comedy|Drama|Romance +92672,Casey Jones (2011),Action|Adventure|Fantasy +92674,Janie Jones (2010),Drama|Musical +92676,Thirteen Women (1932),Drama|Mystery +92681,Journey 2: The Mysterious Island (2012),Action|Adventure|Comedy|Sci-Fi|IMAX +92683,Stella Does Tricks (1996),Drama +92687,"Boys, The (Pojat) (1962)",Drama|War +92691,Hoodoo Ann (1916),Comedy|Drama|Romance +92694,Perfect Sense (2011),Drama|Romance|Sci-Fi +92696,"Shrine, The (2010)",Horror +92702,Johnny Cash at Folsom Prison (2008),Documentary +92713,Forest of Bliss (1986),Documentary +92715,The Artist (2008),Comedy|Drama +92719,Tim and Eric's Billion Dollar Movie (2012),Comedy +92726,"Pearl, The (La perla) (1947)",Adventure|Drama|Romance +92728,"Summer by the River, A (Kuningasjätkä) (1998)",Drama +92730,Rollo and the Woods Sprite (Rölli ja metsänhenki) (2001),Children|Fantasy +92738,Beautiful Kate (2009),Drama|Mystery +92740,Chapiteau-show (Shapito-shou) (2011),Adventure|Comedy +92749,"Sommer der Gaukler, Der (2011)",Comedy +92751,Kokowääh (2011),Comedy +92756,Hearts of the West (1975),Comedy|Western +92758,When Love Is Not Enough: The Lois Wilson Story (2010),Drama +92760,"Atomic Brain, The (1963)",Horror|Sci-Fi +92768,Sixpack (Pussikaljaelokuva) (2011),Comedy|Drama +92781,"City Dark, The (2011)",Documentary +92783,Latin Music USA (2009),Documentary|Musical +92787,OKA! (2011),Drama +92789,Bombay Beach (2011),Documentary|Drama|Musical +92793,Rusalochka (The Little Mermaid) (1976),Children|Fantasy|Musical|Romance +92804,Bodyguards and Assassins (2009),Action|Drama +92817,"Sorcerer and the White Snake, The (Bai she chuan shuo) (2011)",Action|Fantasy|Romance +92819,"Flying Swords of Dragon Gate, The (Long men fei jia) (2011)",Action|Adventure|IMAX +92829,Smokin' Aces 2: Assassins' Ball (2010),Action +92836,Knuckle (2011) ,Documentary +92841,Winter in Wartime (Oorlogswinter) (2008),Drama|War +92843,"Three Musketeers, The (1939)",Adventure|Comedy|Musical +92845,Untamed Youth (1957),Drama +92847,God's Gift to Women (1931),Comedy|Romance +92852,Ricky Rapper and the Bicycle Thief (Risto Räppääjä ja polkupyörävaras) (2009),Children|Comedy|Musical +92872,Plans for Tomorrow (Planes para mañana) (2010),Drama +92874,Born to Be Bad (1934),Drama|Romance +92881,Such Is Life (Así es la vida...) (2000),Drama|Romance +92883,"Mysterious X, The (Sealed Orders) (Det hemmelighedsfulde X) (1914)",Drama|War +92885,"Septième juré, Le (2008)",Crime|Drama +92887,"Year and a Half in the Life of Metallica, A (1992)",Documentary|Musical +92894,Balkan Spy (Balkanski spijun) (1984),Comedy|Drama +92904,We Were Here (2011),Documentary +92906,Girls on the Road (a.k.a. Hot Summer Week) (1973),Comedy|Drama|Thriller +92910,Happy End (1967),Comedy +92918,New York in the 50's (2000),Documentary +92920,"Hunter, The (2011)",Drama +92923,"Dead, The (2010)",Horror +92925,"Love Trap, The (1929)",Comedy|Romance +92927,"Show Off, The (1926)",Comedy|Drama +92935,Kaleidoscope (1966),Comedy|Crime +92938,Ghost Rider: Spirit of Vengeance (2012),Action|Fantasy|Thriller +92944,"Monster in Paris, A (Un monstre à Paris) (2011)",Adventure|Animation|Children +92946,"Souler Opposite, The (1998)",Comedy|Romance +92948,Film About a Woman Who... (1974),Drama +92951,Dos (2011),Drama|Fantasy|Romance +92954,Prayers for Bobby (2009),Drama +92956,Little Criminals (1995),Crime|Drama +92963,Bustin' Down the Door (2009),Documentary +92966,Love Wrecked (2005),Comedy|Romance +92968,"World according to Ion B., The (Lumea vazuta de Ion B) (2009)",Documentary +92980,Comanche Territory (Territorio comanche) (1997),Drama|War +93002,Father Takes a Wife (1941),Comedy|Romance +93004,Adventures in Manhattan (1936),Comedy|Crime|Drama|Mystery +93014,Perifery (Härmä) (2012),Drama +93022,Miss Nobody (2010),Comedy|Crime +93024,Retreat (2011),Thriller +93029,Guy and Madeline on a Park Bench (2009),Drama|Musical +93035,"Great Sinner, The (1949)",Drama +93037,Her Highness and the Bellboy (1945),Comedy|Romance +93040,"Civil War, The (1990)",Documentary|War +93061,October Baby (2011),Drama +93063,Khodorkovsky (2011),Documentary|Drama +93070,Ursul (2011),Comedy|Drama +93083,Live Music (2009),Animation +93116,Paris Belongs to Us (Paris nous appartient) (1961),Mystery +93126,Bag of Bones (2011),Horror +93128,"Mozart's Sister (Nannerl, la soeur de Mozart) (2011)",Drama|Romance +93132,Seven Days in Utopia (2011),Drama +93136,One of Our Dinosaurs Is Missing (1975),Adventure|Comedy +93142,Wrong Turn 4 (2011),Action|Horror|Thriller +93164,Sleep Tight (Mientras duermes) (2011),Horror|Thriller +93168,"Munekata Sisters, The (Munekata kyôdai) (1950)",Drama +93172,Arena (2011),Action|Thriller +93181,Mail Order Bride (1964),Comedy|Western +93183,"Satan Bug, The (1965)",Sci-Fi|Thriller +93185,Poppy Shakespeare (2008),Drama +93187,Freedom (2000),Drama +93189,"Price of Forgiveness, The (Ndeysaan) (2001)",Drama +93193,Red Hill (2010),Crime|Thriller|Western +93196,Zone Troopers (1985),Action|Sci-Fi|War +93201,"Ice Rink, The (La patinoire) (1998)",Comedy|Romance +93204,"Secret Glory, The (2001)",Documentary +93206,"Woman Who Drinks, The (La femme qui boit) (2001)",Drama|Romance +93208,Mickey's The Prince and the Pauper (1990),Animation|Children +93210,"Life of Another, The (La vie d'une autre) (2012)",Comedy|Drama|Mystery +93212,"Cat in Paris, A (Une vie de chat) (2010)",Animation|Crime|Mystery +93217,Dr. Goldfoot and the Girl Bombs (Le spie vengono dal semifreddo) (1966),Comedy|Sci-Fi +93240,Children Who Chase Lost Voices from Deep Below (Hoshi o ou kodomo) (Journey to Agartha) (2011),Animation|Drama|Fantasy +93242,Gone (2012),Drama|Thriller +93263,"Plastic Age, The (1925)",Comedy|Romance +93265,Courageous (2011),Drama +93267,Flywheel (2003),Drama +93270,Project X (2012),Comedy +93272,Dr. Seuss' The Lorax (2012),Animation|Fantasy|Musical|IMAX +93287,"Big Year, The (2011)",Comedy +93289,"Liar, The (Valehtelija) (1981)",Comedy|Drama +93291,"Stone Left Unturned, A (Kovat miehet) (2000)",Comedy|Drama +93295,Mr. Moto's Last Warning (1939),Crime|Mystery|Thriller +93297,Act of Valor (2012),Action|Thriller|War +93320,Trailer Park Boys (1999),Comedy|Crime +93322,Don Quixote (1933),Adventure|Comedy|Drama +93324,Undefeated (2011),Documentary +93326,This Means War (2012),Action|Comedy|Romance +93328,One A.M. (1916),Comedy +93330,"Cure, The (1917)",Comedy +93333,"Bank, The (1915)",Comedy +93336,"Night Out, A (1915)",Comedy +93344,"Earth Dies Screaming, The (1964)",Horror|Sci-Fi +93351,"Dark Side of the Sun, The (1988)",Drama|Romance +93363,John Carter (2012),Action|Adventure|Sci-Fi|IMAX +93365,Canned Dreams (Säilöttyjä unelmia) (2012),Documentary +93367,Sunnyside (1919),Comedy +93376,When We Leave (Die Fremde) (2010),Drama +93391,10 Mountains 10 Years (2010),Documentary +93393,Great Directors (2009),Documentary +93397,Something Big (1971),Western +93399,"Take, The (1974)",Crime|Drama +93404,Queen: Days of Our Lives (2011),Documentary +93406,Police (1916),Comedy +93408,Behind the Screen (1916),Comedy|Romance +93418,Easy Street (1917),Comedy +93420,"Art of Flight, The (2011)",Adventure|Documentary +93422,Starbuck (2011),Comedy +93432,Forks Over Knives (2011),Documentary +93437,Deserter (Dezertir) (1933),Drama +93439,Skies Above the Landscape (Nebo iznad krajolika) (2006),Comedy +93441,United Red Army (Jitsuroku Rengo Sekigun: Asama sanso e no michi) (2007),Drama +93443,Goon (2011),Comedy|Drama +93448,Landscape with a Woman (Zena s krajolikom) (1989),Drama +93450,Blind Pig Who Wants to Fly (Babi buta yang ingin terbang) (2008),Drama +93455,¡Qué hacer! (1970),Drama +93463,Eye of the Devil (1966),Horror|Mystery +93467,Listen to Your Heart (2010),Drama|Musical|Romance +93469,Dead on Time (1983),Comedy|Drama|Romance +93473,Pale Cocoon (Peiru Kokun) (2006),Animation|Sci-Fi +93475,"Awakening, The (2011)",Horror|Thriller +93490,Law of the Lawless (Brigada) (2002),Crime +93492,Like Water (2011),Documentary +93496,Cencoroll (2009),Action|Animation|Sci-Fi +93498,Game Change (2012),Drama +93500,Kill by Inches (1999),Fantasy|Horror|Thriller +93502,"Ledge, The (2011)",Drama|Thriller +93510,21 Jump Street (2012),Action|Comedy|Crime +93512,"Jeff, Who Lives at Home (2012)",Comedy|Drama +93516,Blackballed: The Bobby Dukes Story (2004),Comedy +93520,Adventures of Captain Marvel (1941),Action|Adventure|Fantasy|Mystery|Sci-Fi +93522,Captain Midnight (1942),Action|Adventure|Thriller +93529,Submission (Underkastelsen) (2010),Documentary +93533,City of Fear (1959),Crime|Thriller +93535,Treed Murray (2001),Drama +93544,Satan Never Sleeps (1962),Drama|War +93547,S.O.S. Coast Guard (1937),Action|Adventure|Sci-Fi|Thriller +93550,Yes Or No (2010),Comedy|Drama|Romance +93552,Blind (Beul-la-in-deu) (2011),Drama|Horror|Thriller +93563,Lockout (2012),Action|Sci-Fi|Thriller +93568,Punksters & Youngsters (Punk - Tauti joka ei tapa) (2008),Documentary +93570,Bedevilled (Kim Bok-nam salinsageonui jeonmal) (2010),Crime|Drama|Horror +93572,Lucky (2011),Comedy|Crime|Romance +93574,Resurrect Dead: The Mystery of the Toynbee Tiles (2011),Documentary|Mystery +93578,"Lonely Place to Die, A (2011)",Adventure|Crime|Thriller +93583,Caltiki the Undying Monster (1959),Adventure|Horror|Sci-Fi|Thriller +93598,"Snowtown (Snowtown Murders, The) (2011)",Crime|Drama|Thriller +93610,Space Battleship Yamato (2010),Action|Adventure|Drama +93612,Nothing Lasts Forever (1984) ,Comedy|Fantasy|Sci-Fi +93618,Zero Bridge (2008),Drama +93621,"Bleeding, The (2009)",Action|Horror +93628,Family Meeting (2007),Documentary|Musical +93641,Wreckers (2011),Drama +93649,Fat Head (2009),Documentary +93652,Public Housing (1997),Documentary +93654,"Runner, The (Davandeh) (1990)",Drama +93656,Last Exit (2003),Crime|Drama|Thriller +93659,Verbo (2011),Adventure|Fantasy +93667,"Thousand Months, A (Mille mois) (2003)",Drama +93669,La nación clandestina (1990),Drama +93672,Manrape (Män kan inte våldtas) (1978) ,Drama +93674,Passion of Love (Passione d'amore) (1981),Drama|Romance +93693,Casa de mi Padre (2012),Comedy +93700,Corman's World: Exploits of a Hollywood Rebel (2011),Documentary +93702,Tropical Fish (Re dai yu) (1995),Comedy|Drama +93717,Listy do M. (2011),Comedy|Romance +93719,Dragon Age: Redemption (2011),Action|Adventure|Fantasy +93721,Jiro Dreams of Sushi (2011),Documentary +93723,Damsels in Distress (2011),Comedy|Romance +93725,"Skin Too Few: The Days of Nick Drake, A (2002)",Documentary +93729,Pageant (2008),Documentary +93731,"Warm December, A (1973)",Drama|Romance +93733,White Night Wedding (Brúðguminn) (2008),Drama +93740,Salmon Fishing in the Yemen (2011),Comedy|Drama|Romance +93742,Hotel (1967),Drama +93748,Eden of the East the Movie I: The King of Eden (Higashi no Eden Gekijoban) (2009),Action|Animation|Crime|Sci-Fi|Thriller +93750,Eden of the East the Movie II: Paradise Lost (Higashi no Eden Gekijôban II: Paradise Lost) (2010),Animation|Crime|Mystery|Sci-Fi|Thriller +93752,Saving Face (2012),Documentary|Drama +93757,Admiral Yamamoto (1968),Drama|War +93766,Wrath of the Titans (2012),Action|Adventure|Fantasy|IMAX +93775,Seitsemän veljestä (1939),Drama +93782,Paan Singh Tomar (2010),Crime +93785,"Horrible Dr. Hichcock, The (1962)",Horror +93792,Four Sided Triangle (1953),Romance|Sci-Fi +93801,Answers to Nothing (2011),Drama|Mystery +93803,4:44 Last Day on Earth (2011),Drama|Fantasy|Sci-Fi +93805,Iron Sky (2012),Action|Comedy|Sci-Fi +93816,"Ghost, The (1963)",Horror|Mystery +93819,Absentia (2011),Horror +93821,There's Something Wrong with Aunt Diane (2011),Documentary +93831,American Reunion (American Pie 4) (2012),Comedy +93834,Ticked-Off Trannies with Knives (2010),Action|Comedy|Crime|Horror|Thriller +93838,The Raid: Redemption (2011),Action|Crime +93840,"Cabin in the Woods, The (2012)",Comedy|Horror|Sci-Fi|Thriller +93842,Delicacy (La délicatesse) (2011),Comedy|Romance +93855,God Bless America (2011),Comedy|Drama +93859,"Desert of Forbidden Art, The (2010)",Adventure|Documentary|Drama|War +93865,Frankenstein (1910),Drama|Horror|Sci-Fi +93885,Osmosis (Osmose) (2003),Comedy|Drama|Romance +93888,"Clay Bird, The (Matir moina) (2002)",Drama +93890,"Dupes, The (Al-makhdu'un) (1973)",Drama +93892,Romantics Anonymous (Les émotifs anonymes) (2010),Comedy|Romance +93894,"Unknown Woman, The (Tuntematon emäntä) (2011)",Documentary +93900,Popatopolis (2009),Documentary +93905,The Gamma People (1956),Horror|Sci-Fi +93907,"Wild, Wild Planet (I criminali della galassia) (1965)",Sci-Fi +93909,Yumurta (Egg) (2007),Drama +93911,Village People Radio Show (Apa khabar orang kampung) (2007),Documentary +93916,Genesis (1998),Drama|Horror +93918,"Big Night, The (1951)",Drama|Film-Noir|Thriller +93921,Housefull 2 (2012),Comedy|Romance +93923,Agent Vinod (2012),Action +93928,After... (2006),Horror|Thriller +93931,Lust for Gold (Duhul aurului) (1974),Drama +93933,Footnote (Hearat Shulayim) (2011),Drama +93939,Café de Flore (2011),Drama +93946,L!fe Happens (2012),Comedy +93948,Midnight Movie (2008),Horror|Thriller +93952,"Silent House, The (La casa muda) (2010)",Horror|Thriller +93954,Silent House (2011),Horror|Thriller +93970,Helsinki Napoli All Night Long (1987),Comedy|Thriller +93980,"Three Stooges, The (2012)",Comedy +93982,"Raven, The (2012)",Mystery|Thriller +93988,North & South (2004),Drama|Romance +93991,"Eye for an Eye, An (Silmä silmästä) (1999)",Horror +94005,"Ballad of Nessie, The (2011)",Animation|Children +94011,"Big Bang, The (2011)",Action|Thriller +94015,Mirror Mirror (2012),Adventure|Comedy|Fantasy +94018,Battleship (2012),Action|Sci-Fi|Thriller|IMAX +94024,Louis Theroux: The Most Hated Family in America in Crisis (2011),Documentary +94027,Uwasa No Onna (The Woman in the Rumor) (Her Mother's Profession) (1954),Drama|Romance +94041,Appropriate Adult (2011),Drama +94044,Terraferma (2011),Drama +94061,Madhouse (1974),Crime|Horror|Mystery +94068,Goodbye First Love (2011),Drama|Romance +94070,"Best Exotic Marigold Hotel, The (2011)",Comedy|Drama +94074,Rush: Beyond the Lighted Stage (2010),Documentary|Musical +94076,Position Among The Stars (Stand van de Sterren) (2010),Documentary +94083,"Second Time Around, The (1961)",Comedy|Western +94101,Crime After Crime (2011),Documentary +94103,Black Pond (2011),Comedy|Drama +94107,18 Years Later (Diciotto anni dopo) (2010),Comedy|Drama +94112,Twelve (2010),Crime|Drama|Thriller +94122,Comic-Con Episode IV: A Fan's Hope (2011),Documentary +94126,Bullhead (Rundskop) (2011),Crime|Drama +94128,Drummer-Crab (Le Crabe-Tambour) (1977),Adventure|Drama|War +94130,Bully (2011),Documentary +94142,Uncovered (1995),Mystery|Thriller +94144,"Chance of a Lifetime, The (1943)",Crime|Drama +94146,Flower in Hell (Jiokhwa) (1958),Crime|Drama +94148,White Mountains (Belyie gory) (1964),Drama +94155,Listen to Britain (1942),Documentary +94157,"Mad Masters, The (Les maîtres fous) (1955)",Documentary +94184,"Bleeding House, The (2011)",Drama|Horror|Mystery|Thriller +94186,Barrier (Bariera) (1966),Comedy|Drama +94188,Crazy Sexy Cancer (2007),Documentary +94190,Aakrosh (2010),Action|Drama|Thriller +94202,"¡Alambrista! (Illegal, The) (1977)",Drama +94204,Androcles and the Lion (1952),Comedy +94218,Super Demetrios (2012),Adventure|Comedy|Sci-Fi +94262,"Atomic Submarine, The (1959)",Sci-Fi|Thriller +94264,"Baron of Arizona, The (1950)",Drama|Romance|Western +94266,"Five-Year Engagement, The (2012)",Comedy|Romance +94268,"White Darkness, The (2002)",Documentary +94271,Voyage to the End of the Universe (Ikarie XB 1) (1963),Sci-Fi +94278,Muzi v nadeji (2011),Comedy|Drama|Romance +94280,Spud (2010),Comedy +94283,Black Sun (Kuroi taiyô) (1964),Drama|Thriller +94289,"Murderer Lives at Number 21, The (L'assassin habite... au 21) (1942)",Comedy|Mystery|Thriller +94291,Judgment in Berlin (1988),Crime|Drama +94299,Elsewhere (2009),Crime|Drama|Thriller +94301,"Marc Pease Experience, The (2009)",Comedy|Drama|Musical +94306,One Body Too Many (1944),Comedy|Horror|Mystery +94308,Slim Carter (1957),Comedy|Western +94310,In the Hands of the Gods (2007),Documentary +94312,"Catechism Cataclysm, The (2011)",Comedy +94314,"Devil's Rock, The (2011)",Horror|Thriller|War +94323,Think Like a Man (2012),Comedy +94325,"Lucky One, The (2012)",Drama +94337,"First Texan, The (1956)",Western +94339,"Good-bye, My Lady (1956)",Drama +94341,Chosin (2010) ,Documentary|War +94350,Nob Hill (1945),Drama|Musical +94352,Bride Flight (2008),Drama +94365,Chained for Life (1951),Crime +94394,"Scarlet Letter, The (1979)",Drama +94401,If a Tree Falls: A Story of the Earth Liberation Front (2011),Documentary +94403,"Greening of Whitney Brown, The (2011)",Adventure +94405,Safe (2012),Action|Crime|Thriller +94410,Hamlet (2009),Drama +94412,"Fairy, The (La fée) (2011) ",Comedy|Drama +94417,Diaries Notes and Sketches (Walden) (1969),Documentary +94419,3rd World Hero (Bayaning Third World) (2000),Drama +94421,Fruitcake (2003),Comedy +94425,Kept Husbands (1931),Comedy|Drama +94427,Shadow Kill (2002),Drama +94429,"Swell Season, The (2011)",Documentary|Romance +94431,"Ella Lola, a la Trilby (1898)",(no genres listed) +94433,Guilty Hands (1931),Crime|Drama +94435,"Over-Eater, The (L'outremangeur) (2003)",Crime|Drama +94442,"Story Written with Water, A (Mizu de kakareta monogatari) (1965)",Drama +94444,Feast III: The Happy Finish (2009),Action|Comedy|Horror +94469,Red Dog (2011),Comedy|Drama|Romance +94471,Any Questions for Ben? (2012),Comedy|Drama +94473,Sweet Bunch (Glykia symmoria) (1983),Crime|Drama|Thriller +94475,Amu (2005),Drama +94478,Dark Shadows (2012),Comedy|Horror|IMAX +94480,The Scorpion King: Rise of a Warrior (2008),Action|Adventure|Fantasy +94482,Big Boys Gone Bananas!* (2011),Documentary +94486,Ciao Bella (2007),Comedy|Drama|Romance +94491,Daylight (2010),Horror|Thriller +94494,96 Minutes (2011) ,Drama|Thriller +94503,"Decoy Bride, The (2011)",Comedy|Romance +94531,"Headhunter's Sister, The (1997)",Drama +94537,Angels Crest (2011),Drama +94539,Viva Riva! (2010),Drama +94542,"Forgiveness of Blood, The (Falja e gjakut) (2011)",Drama +94545,Among Wolves (Entrelobos) (2010),Drama +94556,Citizen Gangster (2011) ,Crime|Drama +94558,Beyond the Black Rainbow (2010),Mystery|Sci-Fi +94573,"Last Play at Shea, The (2010)",Documentary|Musical +94647,"Poker Club, The (2008)",Crime|Drama|Thriller +94649,"Clown, The (2011)",Comedy|Drama +94653,Creature (2011),Horror +94663,Vicky Donor (2012),Comedy|Romance +94666,Zig Zag (1970),Drama|Thriller +94668,Extraordinary Stories (Historias extraordinarias) (2008),Drama|Mystery +94670,Small Town of Anara (Qalaqi Anara) (1978),Comedy +94672,Across the Line: The Exodus of Charlie Wright (2010),Crime|Drama +94675,Three Steps Above Heaven (2010),Drama|Romance +94677,"Dictator, The (2012)",Comedy +94679,Thrive (2011),Documentary +94725,Bombay Talkie (1970),Drama|Musical|Romance +94727,Border Radio (1987),Drama +94729,Beyond All Boundaries (2009),Documentary|War +94733,Keyhole (2011),Drama|Mystery +94739,"Island President, The (2011)",Documentary +94746,"Largo Winch (Heir Apparent: Largo Winch, The) (2008)",Adventure|Thriller +94748,"Mighty Macs, The (2009)",Drama +94750,My Blue Heaven (1950),Drama|Musical +94752,Gifted Hands: The Ben Carson Story (2009),Drama +94760,Chains (Catene) (1949),Crime|Drama +94762,"Ciel est à vous, Le (Woman Who Dared, The) (1944)",Drama +94765,Lumberjacking (Nuoruuteni savotat) (1988),Drama +94767,Safrana or Freedom of Speech (Safrana ou le droit à la parole) (1978),Drama +94769,"Rose Seller, The (La vendedora de rosas) (1998)",Drama +94772,Galileo (1975),Drama +94777,Men in Black III (M.III.B.) (M.I.B.³) (2012),Action|Comedy|Sci-Fi|IMAX +94780,Snow White and the Huntsman (2012),Action|Adventure|Drama +94786,Pine Flat (2006),Drama +94788,Back Street (1941),Drama +94790,Where East Is East (1929),Drama +94799,Sound of My Voice (2011),Drama|Mystery|Sci-Fi +94801,"Steel Trap, The (1952)",Crime|Drama +94803,Night of the Demons (2009),Horror +94806,"Secrets of Jonathan Sperry, The (2008)",Drama +94808,Someone Like You (Unnaipol Oruvan) (2009),Crime|Drama +94810,Eva (2011),Drama|Fantasy|Sci-Fi +94813,Chernobyl Diaries (2012),Horror +94815,Chicken with Plums (Poulet aux prunes) (2011),Drama +94817,Escuela de seducción (2004),Comedy +94819,You Can't Win 'Em All (1970),Adventure|Comedy|War +94833,"Pirates! Band of Misfits, The (2012)",Adventure|Animation|Children|Comedy +94835,"Vie meilleure, Une (Better Life, A) (2011)",Drama +94837,Hemingway & Gellhorn (2012),Drama|Romance|War +94839,"Fish Child, The (El niño pez) (2009)",Drama|Romance|Thriller +94841,Hick (2011),Drama|Romance +94864,Prometheus (2012),Action|Horror|Sci-Fi|IMAX +94867,"Pact, The (2012)",Horror|Mystery|Thriller +94891,Phyllis and Harold (2008),Documentary +94893,Letters to God (2010),Children|Drama +94896,Bernie (2011),Comedy|Crime|Drama +94900,Desi Boyz (2011),Comedy|Drama +94902,Ten North Frederick (1958),Drama|Romance +94904,3 A.M. (2001),Crime|Mystery|Romance +94917,Deadline - U.S.A. (1952),Crime|Drama +94919,Inhale (2010),Drama|Thriller +94931,Take This Waltz (2011),Drama|Romance +94933,Berlin 36 (2011),Drama +94939,Sound of Noise (2010),Comedy|Crime|Musical +94941,"Blot, The (1921)",Drama +94945,Dr. Crippen (1964),Crime|Drama +94953,Wanderlust (2012),Comedy +94955,Harriet Craig (1950),Drama +94957,Ladies They Talk About (1933),Drama|Romance +94959,Moonrise Kingdom (2012),Comedy|Drama|Romance +94965,There Be Dragons (2011),Drama|War +94967,Texas Killing Fields (2011),Crime|Drama|Thriller +94969,Kahaani (2012),Crime|Drama|Thriller +94978,I Wish (Kiseki) (2011),Children|Drama +94980,Stavisky... (1974),Crime|Drama +94982,Never Take Candy from a Stranger (Never Take Sweets from a Stranger) (1960),Drama|Thriller +94985,Get the Gringo (2012),Action|Crime|Drama|Thriller +94998,5 Days of War (2011),Action|Drama|War +95000,"Life, Above All (2010)",Drama +95002,Contagion / Bio Slime (2010),Horror +95007,Entr'acte (1924),Comedy|Drama +95010,"Lake, A (Un lac) (2008)",Drama +95012,Tracy Morgan: Black and Blue (2010),Comedy +95014,"Importance of Tying Your Own Shoes, The (Hur många lingon finns det i världen?) (2011)",Drama +95016,"Peach Thief, The (Kradetzat na praskovi) (1964)",Drama|Romance|War +95018,Salomè (1972),Drama +95021,Outer Space (2000),Animation|Horror +95026,Exporting Raymond (2010),Comedy|Documentary +95028,Appointment with Danger (1951),Crime|Drama|Film-Noir +95032,Vares: The Kiss of Evil (Vares - Pahan suudelma) (2011),Action|Crime|Film-Noir +95034,"Few Best Men, A (2011)",Comedy +95036,Late Bloomers (2011),Drama +95052,Hide and Seek (2000),Crime|Drama|Thriller +95058,Cosmopolis (2012),Drama +95067,"Thousand Words, A (2012)",Comedy|Drama +95069,Chimpanzee (2012),Documentary +95088,Safety Not Guaranteed (2012),Comedy|Drama +95105,Madagascar 3: Europe's Most Wanted (2012),Adventure|Animation|Children|Comedy|IMAX +95107,Bunnyman (2011),Horror +95109,Athena (1954),Comedy|Musical|Romance +95111,"Lawless, The (1950)",Drama +95133,Blackthorn (2011),Western +95135,Your Sister's Sister (2011),Comedy|Drama +95137,"Needle, The (Igla) (1988)",Drama|Thriller +95139,"Beekeeper, The (O melissokomos) (1986)",Drama +95157,Kidnapped (2010),Horror|Thriller +95159,This Special Friendship (Les amitiés particulières) (1964),Drama +95165,Dragon Ball Z the Movie: The World's Strongest (a.k.a. Dragon Ball Z: The Strongest Guy in The World) (Doragon bôru Z: Kono yo de ichiban tsuyoi yatsu) (1990),Action|Adventure|Animation|Sci-Fi|Thriller +95167,Brave (2012),Action|Adventure|Animation|Children +95182,Dragon Ball Z the Movie: The Tree of Might (Doragon bôru Z 3: Chikyû marugoto chô kessen) (1990),Action|Adventure|Animation|Sci-Fi +95185,Dangerous Liaisons (2007),Comedy|Crime|Drama|Mystery +95197,Bel Ami (2012),Drama|Romance +95199,What to Expect When You're Expecting (2012),Comedy|Drama|Romance +95201,To Rome with Love (2012),Comedy +95207,Abraham Lincoln: Vampire Hunter (2012),Action|Fantasy|Horror|Thriller +95214,Mad Dog Coll (1961),Crime|Drama +95218,First Position (2011),Documentary +95223,4.3.2.1 (2010),Crime|Thriller +95230,Macbeth in Manhattan (1999),Drama +95232,Beauty #2 (1965),Drama +95234,Wings in the Dark (1935),Adventure|Romance +95237,Detention (2012),Comedy|Horror +95288,Confession (1937),Drama +95290,Kind Lady (1935),Drama|Thriller +95294,Planet B-Boy (2007),Documentary +95296,For Greater Glory: The True Story of Cristiada (2012),Drama|War +95298,Woochi: The Demon Slayer (2009),Action|Comedy|Fantasy +95300,Scusa ma ti chiamo amore (2008),Romance +95302,Torpedo Bombers (Torpedonostsy) (1983),Drama|War +95305,Taxi Hunter (Di shi pan guan) (1993),Action +95307,Rock of Ages (2012),Comedy|Drama|Musical|IMAX +95309,Seeking a Friend for the End of the World (2012),Comedy|Drama|Romance +95311,Presto (2008),Animation|Children|Comedy|Fantasy +95375,Boundin' (2003),Animation|Children +95425,"Map For Saturday, A (2007)",Documentary +95441,Ted (2012),Comedy|Fantasy +95443,"Giant Mechanical Man, The (2012)",Comedy|Drama|Romance +95449,Magic Mike (2012),Drama|Romance +95461,Revenge of the Electric Car (2011),Documentary +95477,Blood of the Vampire (1958),Horror|Sci-Fi +95484,Pulgasari (1985),Action|Drama|Fantasy +95486,"Toughest Man in the World, The (1984)",Comedy|Drama +95488,On the Road (2012),Adventure|Drama +95494,Joffrey: Mavericks of American Dance (2012),Documentary +95504,Virtual JFK: Vietnam If Kennedy Had Lived (2008),Documentary +95506,Extraterrestrial (Extraterrestre) (2011),Comedy|Drama|Sci-Fi +95508,Cleanskin (2012),Crime|Drama|Thriller +95510,"Amazing Spider-Man, The (2012)",Action|Adventure|Sci-Fi|IMAX +95521,Reminiscences of a Journey to Lithuania (1972),Documentary +95529,ID:A (2011),Crime|Thriller +95531,"Koruto wa ore no pasupooto (Colt Is My Passport, A) (1967)",Action|Crime|Drama +95533,Coup de grâce (Der Fangschuß) (1976),Drama|War +95543,Ice Age 4: Continental Drift (2012),Adventure|Animation|Comedy +95558,Beasts of the Southern Wild (2012),Drama|Fantasy +95560,Dangerous Davies: The Last Detective (1981),Comedy|Crime +95563,Dynamite (1929),Drama +95565,"Day the Fish Came Out, The (1967)",Comedy|Sci-Fi +95567,People Like Us (2012),Drama +95570,Crazed Fruit (Kurutta kajitsu) (1956),Drama +95572,Cruel Gun Story (Kenjû zankoku monogatari) (1964),Action|Crime|Thriller +95574,Flame and Women (Honô to onna) (1967) ,Drama +95576,Euridice BA 2O37 (Evridiki BA 2O37) (1975),Drama +95578,"Stoplight Society, The (La Sociedad del Semáforo) (2010)",Drama +95581,"Flying Fleet, The (1929)",Adventure|Drama|Romance +95583,Savages (2012),Crime|Drama|Thriller +95591,Rat King (2012),Mystery|Thriller +95595,Bela Kiss: Prologue (2013),Horror|Mystery|Thriller +95597,Ticket To Romance (En enkelt til Korsør) (2008),Comedy|Drama|Romance +95600,Candles on Bay Street (2006) ,Drama +95602,Once Upon a Time in Phuket (En gång i Phuket) (2011),Comedy +95604,The War (2007),Documentary|War +95611,Mooz-lum (2011),Drama +95613,"Union, The (2011)",Documentary +95615,"Miser, The (L'avare) (1980)",Comedy +95617,Scorcher (2002),Action|Sci-Fi +95624,"Firm, The (2009)",Drama +95633,Spirit Camp (2009),Horror +95643,Maya (1966),Adventure +95650,"Perfect Roommate, The (2011)",Thriller +95652,"Fatal Hour, The (1940)",Crime|Mystery|Thriller +95654,Geri's Game (1997),Animation|Children +95658,My Last Day Without You (Nie mehr ohne Dich) (2011),Comedy|Drama|Romance +95668,Red Rover (2003),Horror|Thriller +95670,Tyler Perry's Madea's Witness Protection (2012),Comedy +95672,"Black Windmill, The (1974)",Crime|Drama +95688,"Good Night to Die, A (2003)",Action|Comedy|Crime|Thriller +95695,"Five Minarets in New York (Act of Vengeance) (Terrorist, The) (2010)",Drama +95697,No Problem (2010),Action|Comedy|Crime|Drama +95717,Treasure Island (2012),Adventure +95720,"Watch, The (2012)",Comedy|Sci-Fi +95732,Vampires (2010),Comedy|Fantasy|Horror +95735,"Drive, He Said (1971)",Comedy|Drama +95742,Someday This Pain Will Be Useful to You (2011),Drama +95744,2 Days in New York (2012),Comedy +95746,Radio On (1980),Drama +95748,2010: Moby Dick (2010),Action|Adventure|Thriller +95750,Promise of the Flesh (Yukcheui yaksok) (1975),(no genres listed) +95752,Terminal USA (1993),Comedy +95754,From Beginning to End (Do Começo ao Fim) (2009),Drama|Romance +95756,"Cat in the Hat, The (1971)",Animation|Children +95761,Killer Joe (2011),Crime|Thriller +95767,Power (Jew Süss) (1934),Drama|Romance +95769,"Gospel of Judas, The (2006)",Documentary +95773,King of Thorn (King of Thorns) (Ibara no O) (2009),Adventure|Animation|Horror|Sci-Fi|Thriller +95784,Intohimon vallassa (1947),Drama|Romance +95794,"Lost, Lost, Lost (1976) ",Documentary +95796,Anaconda: The Offspring (2008),Action|Horror|Sci-Fi|Thriller +95804,Wild Bill (2011),Crime|Drama +95814,Pete Smalls Is Dead (2010),Comedy +95816,Being Flynn (2012),Comedy|Drama +95830,Drums (1938),Adventure|War +95832,Elephant Boy (1937),Adventure|Drama +95839,"Christmas Carol, A (1999)",Drama|Fantasy +95843,Goodbye Charlie (1964),Comedy|Fantasy|Romance +95854,Rage (Rabia) (2009),Romance|Thriller +95856,Knick Knack (1989),Animation|Children +95858,For the Birds (2000),Animation|Children|Comedy +95873,Ruby Sparks (2012),Comedy|Fantasy|Romance +95875,Total Recall (2012),Action|Sci-Fi|Thriller +95890,Le Donk & Scor-zay-zee (2009),Comedy +95896,388 Arletta Avenue (2011),Thriller +95898,The Craigslist Killer (2011),Crime|Drama|Thriller +95926,"Monitor, The (Babycall) (2011)",Horror|Thriller +95939,"Angels' Share, The (2012)",Comedy|Drama +95949,"Immature, The (Immaturi) (2011)",Comedy +95969,Vampire Journals (1997),Fantasy|Horror +95971,Dikkenek (2006),Comedy +95973,"Classe américaine, La (a.k.a. Le grand détournement) (1993)",Comedy +95975,"Necessary Death, A (2008)",Crime|Drama|Thriller +96002,"Tür, Die (Door, The) (2009)",Drama|Mystery|Sci-Fi +96020,Sidewalls (Medianeras) (2011),Drama +96022,Dick Tracy vs. Cueball (1946),Action|Crime|Mystery +96024,Stash House (2012),Thriller +96030,"Weekend It Lives, The (Ax 'Em) (1992)",Horror +96052,"Tortoise and the Hare, The (1935)",Animation|Children|Comedy +96054,Steak (2007),Comedy +96056,"Legend of Bigfoot, The (1976)",Documentary +96058,Neil Young Journeys (2012),Documentary +96060,"Capture of Bigfoot, The (1979)",Adventure|Horror|Sci-Fi +96064,Dragon Eyes (2012),Action|Crime|Drama +96066,"Love, Wedding, Marriage (2011)",Comedy|Romance +96071,Bag It (2010),Documentary +96075,Bleak House (2005),Drama +96079,Skyfall (2012),Action|Adventure|Thriller|IMAX +96084,Hands Over the City (Le mani sulla città) (1963),Drama +96086,"Householder, The (Gharbar) (1963)",Comedy|Drama +96096,Mais qui a tué Pamela Rose ? (2003),Comedy +96098,Louise-Michel (2008),Comedy +96110,"Campaign, The (2012)",Comedy +96114,Brake (2012),Crime|Thriller +96121,Hope Springs (2012),Comedy|Drama +96131,K-20: The Fiend with Twenty Faces (2008),Action|Adventure|Crime +96144,Warning from Space (Uchûjin Tôkyô ni arawaru) (1956),Sci-Fi +96146,Logan's War: Bound by Honor (1998),Action|Drama|Thriller +96148,"President's Man: A Line in the Sand, The (2002)",Action|Drama|Thriller +96150,"Queen of Versailles, The (2012)",Documentary +96160,33 Postcards (2011),Drama +96176,Tender Comrade (1943),Drama|Romance +96179,Amish Grace (2010),Drama +96181,Female Agents (Les femmes de l'ombre) (2008),Drama|War +96193,Captain Video: Master of the Stratosphere (1951),Adventure|Sci-Fi +96195,Run Sister Run! (2010),Drama +96197,Secret Reunion (Ui-hyeong-je) (2010),Drama|Thriller +96212,"One Percent, The (2006)",Documentary +96214,Primal (2010),Horror|Thriller +96216,Dreams That Money Can Buy (1947),Fantasy +96218,Profound Desires of the Gods (Kamigami no fukaki yokubo) (1968) ,Drama +96221,"See You in Hell, My Darling (Tha se do stin Kolasi, agapi mou) (1999)",Crime|Horror|Thriller +96223,"Rickshaw Man, The (Muhomatsu no issho) (1958)",Comedy|Drama +96225,Identification Marks: None (Rysopis) (1965) ,Drama +96227,I Am Waiting (Ore wa matteru ze) (1957),Crime|Drama +96239,Chillerama (2011),Comedy|Horror +96242,Viimeiset rotannahat (1985) ,Comedy +96246,In Eagle Shadow Fist (Ding tian li di) (Fist of Anger) (1973),Action|Drama|War +96250,K.G. (Karate Girl) (2011),Action +96252,I Am Bruce Lee (2011),Documentary +96255,On Top of the Whale (Het dak van de Walvis) (1982),Fantasy +96257,Heroic Purgatory (Rengoku eroica) (1970),Drama +96259,Beloved (Les bien-aimées) (2011),Drama|Musical|Romance +96264,Wagner's Dream (2012),Documentary +96275,In Custody (1994),Comedy|Drama +96277,"Rumble in Hong Kong (Nu jing cha) (Heroine, The) (1973)",Action|Crime +96279,Young Tiger (Xiao lao hu) (1973),Action|Drama +96281,ParaNorman (2012),Adventure|Animation|Comedy +96283,Diary of a Wimpy Kid: Dog Days (2012),Children|Comedy +96288,"Rites of May, The (Itim) (1977) ",Drama|Horror|Thriller +96290,Opfergang (1944),Drama +96292,Immensee (1943),Drama +96298,El Hada Buena - Una Fábula Peronista (2010),Comedy|Sci-Fi +96302,War of the Arrows (Choi-jong-byeong-gi Hwal) (2011),Action +96304,Hara-Kiri: Death of a Samurai (2011),Drama +96306,Goats (2012),Comedy +96314,Celeste and Jesse Forever (Celeste & Jesse Forever) (2012),Comedy|Drama|Romance +96316,Aliisa (1970),Drama +96337,Our Children (À perdre la raison) (2012),Drama +96367,Hit and Run (Hit & Run) (2012),Action|Comedy|Romance +96373,Broken (2012),Drama +96383,"Family Tree, The (2011)",Comedy|Drama +96401,"Je, tu, il, elle (I, You, He, She) (1976)",Drama +96407,Dark Horse (2011),Drama +96411,6 Days to Air: The Making of South Park (2011),Documentary +96413,Funeral Parade of Roses (Bara no sôretsu) (1969),Drama +96415,Doomsday Book (2012),Comedy|Drama|Horror|Sci-Fi +96417,Premium Rush (2012),Action|Thriller +96419,Letter Never Sent (Neotpravlennoye pismo) (1960),Drama|Romance +96421,Lonesome (1928),Comedy|Drama|Romance +96423,Evil Toons (1992),Comedy|Horror +96428,From the Life of the Marionettes (Aus dem Leben der Marionetten) (1980) ,Drama +96430,"Odd Life of Timothy Green, The (2012)",Comedy|Drama|Fantasy +96432,Lawless (2012),Crime|Drama +96435,Chameleon (Kaméleon) (2008),Comedy|Drama|Thriller +96448,Piranha 3DD (a.k.a. Piranha DD) (2012),Comedy|Horror +96451,Man Is Not a Bird (Covek nije tica) (1965),Drama|Romance +96456,ATM (2012),Horror|Thriller +96460,"Wave, The (1981)",Drama +96467,Sleepwalk with Me (2012),Comedy|Drama +96471,Prime Suspect 3 (1993),Crime|Drama|Mystery +96473,Prime Suspect: Inner Circles (1995),Drama|Mystery +96479,Nocturno 29 (1968),(no genres listed) +96481,American Mullet (2001),Documentary +96486,Prime Suspect 7: The Final Act (2006),Crime|Drama|Mystery|Thriller +96488,Searching for Sugar Man (2012),Documentary +96490,"Possession, The (2012)",Horror|Thriller +96498,"Dinosaur Project, The (2012)",Adventure +96501,Little White Lies (Les petits mouchoirs) (2010),Comedy|Drama +96504,"Manzanar Fishing Club, The (2012)",Adventure|Documentary +96510,"Apparition, The (2012)",Horror|Thriller +96512,Dreams of a Life (2011),Documentary +96514,Life for Sale (Kotirauha) (2011),Drama +96516,To Mars by A-Bomb: The Secret History of Project Orion (2003),Documentary +96518,Prime Suspect 6: The Last Witness (2003),Drama|Thriller +96520,Prime Suspect: The Lost Child (1995),Drama|Mystery +96522,"Zero Years, The (2005)",Drama +96524,Bigfoot Lives (2007),Adventure|Documentary|Drama +96530,Conception (2011),Comedy|Romance +96532,Do We Really Need the Moon? (2011),Documentary +96535,French Film (2008),Comedy|Romance +96537,Backwoods (Bosque de sombras) (2006),Drama|Thriller +96539,"Californie, La (2006)",Drama +96543,The Great Northfield Minnesota Raid (1972),Action|Western +96545,"Mikado, The (1939)",Comedy|Musical +96547,"Model Couple, The (Le couple témoin) (1977)",Comedy +96563,Paradise Lost 3: Purgatory (2011),Documentary +96565,Bachelorette (2012),Comedy +96567,"Words, The (2012)",Drama|Romance +96569,Teddy Bear (10 timer til Paradis) (2012),Drama|Romance +96571,Soldier in the Rain (1963),Comedy|Drama +96574,For My Father (Sof Shavua B'Tel Aviv) (2008),Drama +96576,"Moment of Truth, The (Il momento della verità) (1965)",Drama +96578,Mr. Freedom (1969),Comedy +96585,La dama boba (2006),Comedy +96588,Pitch Perfect (2012),Comedy|Musical +96590,"Cold Light of Day, The (2012)",Action|Thriller +96592,Hello I Must Be Going (2012),Comedy|Drama|Romance +96594,Flowing (Nagareru) (1956),Drama +96596,Branded (2012),Action|Drama|Mystery|Sci-Fi +96598,"Wild Wild West Revisited, The (1979)",Action|Adventure|Sci-Fi|Western +96603,"Sugar Curtain, The (El telón de azúcar) (2005)",Documentary +96606,Samsara (2011),Documentary +96608,Runaway Brain (1995) ,Animation|Comedy|Sci-Fi +96610,Looper (2012),Action|Crime|Sci-Fi +96612,Compliance (2012),Drama|Thriller +96616,That's My Boy (2012),Comedy +96621,Arthur and the Revenge of Maltazard (Arthur et la vengeance de Maltazard) (2009),Animation|Children|Fantasy +96629,Deathstalker (1983),Action|Adventure|Fantasy +96631,Deathstalker II (1987),Action|Adventure|Comedy|Fantasy +96634,Apartment 143 (2011),Horror|Thriller +96638,Klitschko (2011),Documentary +96640,Kinyarwanda (2011),Drama|Romance +96642,Nobody's Children (I figli di nessuno) (1952),Drama|Romance +96644,Patriotism (Yûkoku) (1966),Drama +96651,Les hautes solitudes (1974),(no genres listed) +96653,"Vampir (Cuadecuc, vampir) (1971)",Documentary|Horror +96655,Robot & Frank (2012),Comedy|Drama|Sci-Fi +96664,Where Do We Go Now? (2011),Comedy|Drama +96667,Ai Weiwei: Never Sorry (2012),Documentary +96679,Love Hina Again (2002),Animation|Comedy|Drama +96681,"Age of the Medici, The (L'età di Cosimo de Medici) (1973) ",Drama +96687,Jesus Henry Christ (2012),Comedy +96689,Pirates of the Great Salt Lake (2006),Adventure|Comedy +96691,Resident Evil: Retribution (2012),Action|Horror|Sci-Fi|IMAX +96693,Trouble with the Curve (2012),Drama +96695,Crown v. Stevens (1936),Crime|Thriller +96697,"Walk Softly, Stranger (1950)",Crime|Drama|Film-Noir|Romance +96700,360 (2011),Drama +96702,Close (2004),Drama +96704,Detroit (2003),Drama +96706,Straight Shooting (1917),Western +96710,Employees' Entrance (1933),Drama|Romance +96717,"Pearls of the Crown, The (Les perles de la couronne) (1937)",Comedy +96722,Suicide Club (2010),Adventure|Comedy|Drama +96724,Under African Skies (2012),Documentary +96726,Lola Versus (2012),Comedy|Romance +96728,"Master, The (2012)",Drama +96730,More Wild Wild West (1980),Adventure|Comedy|Sci-Fi|Western +96732,"Love Movie, The (Rakkauselokuva) (1984)",Comedy|Drama +96734,"John Huston: The Man, the Movies, the Maverick (1989)",Documentary +96737,Dredd (2012),Action|Sci-Fi +96739,We Live Again (1934),Drama +96751,Arbitrage (2012),Drama|Thriller +96753,Blue Like Jazz (2012),Comedy|Drama +96755,Manual of Love 2 (Manuale d'amore (capitoli successivi)) (2007),Comedy|Romance +96757,"Friends at the Margherita Cafe, The (Gli amici del bar Margherita) (2009)",Comedy|Drama|Romance +96759,Play Girl (1941),Comedy|Romance +96762,Detropia (2012),Documentary +96771,"Chemical Brothers: Don't Think, The (2012)",Musical +96773,Pearls of the Deep (Perlicky na dne) (1966),Comedy +96775,"Perfect Murder, The (1988)",Action|Comedy|Crime|Thriller +96792,Kismet (1955),Adventure|Comedy|Fantasy|Musical|Romance +96794,ChromeSkull: Laid to Rest 2 (2011),Horror +96796,Rain Over Santiago (Il pleut sur Santiago) (1976),Documentary|Drama|War +96799,Puckoon (2002),Comedy +96801,Dolan's Cadillac (2009),Crime|Thriller +96803,"Pig's Tale, A (1996)",Adventure|Comedy|Drama|Romance +96805,Nobody Knows Anybody (Nadie conoce a nadie) (1999),Romance|Thriller +96807,Breathless (2012),Thriller +96811,End of Watch (2012),Crime|Drama|Thriller +96813,"High, Wide, and Handsome (1937)",Musical|Western +96815,V/H/S (2012),Horror|Thriller +96817,Boxing Gym (2010),Documentary +96821,"Perks of Being a Wallflower, The (2012)",Drama|Romance +96823,"Mary, Mary (1963)",Comedy +96829,"Hunt, The (Jagten) (2012)",Drama +96832,Holy Motors (2012),Drama|Fantasy|Musical|Mystery|Sci-Fi +96834,Knuckleball! (2012),Documentary +96836,Either Way (Á annan veg) (2011),Comedy|Drama +96840,"Hunter, The (2010)",Thriller +96842,Behind the Burly Q: The Story of Burlesque in America (2010),Documentary +96849,Sparkle (2012),Drama|Musical +96853,Thin Ice (2011),Comedy|Crime|Drama +96857,Red Lights (2012),Drama|Mystery|Thriller +96861,Taken 2 (2012),Action|Crime|Drama|Thriller +96863,"Paperboy, The (2012)",Thriller +96865,Sam Peckinpah: Man of Iron (1993),Documentary +96868,Shut Up and Play the Hits (2012),Documentary +96870,"Private Life of Don Juan, The (1934)",Comedy|Drama|Romance +96872,Quadrille (1938),Comedy|Romance +96897,Bleach: Fade to Black (Burīchi Fade to Black Kimi no Na o Yobu) (2008),Animation +96903,In Passing (2011),Drama|Fantasy|Mystery +96907,Nanayo (Nanayomachi) (2008),Drama +96911,"Royal Affair, A (Kongelig affære, En) (2012)",Drama|Romance +96917,House at the End of the Street (2012),Horror|Thriller +96921,Sexy Nights of the Living Dead (1980),Horror +96925,"Hard, Fast and Beautiful (1951)",Drama +96933,Despair (1978),Drama|Fantasy +96935,My Left Eye Sees Ghosts (Ngo joh aan gin diy gwai) (2002),Comedy|Fantasy|Romance +96941,2016: Obama's America (2012),Documentary +96943,"Happy Event, A (Un Heureux Evénement) (2011)",Comedy|Drama|Romance +96945,Love Lasts Three Years (L'amour dure trois ans) (2011),Comedy|Drama|Romance +96947,Volcano (Eldfjall) (2011),Drama +96950,Guilty (Présumé coupable) (2011),Drama +96952,Surviving Progress (2011),Documentary +96954,Doughboys (1930),Comedy|War +96960,Tobor the Great (1954),Children|Sci-Fi +96962,Lightnin' (1925),Comedy|Drama +96964,"Tall Man, The (2012)",Crime|Drama|Mystery +96966,Laurence Anyways (2012),Drama|Romance +96969,"Magic of Belle Isle, The (2012)",Comedy|Drama +96971,"Lie, The (2011)",Drama +96973,"Painted Veil, The (1934)",Drama|Romance +96975,LOL (2012),Comedy|Drama|Romance +96983,Remorques (Stormy Waters) (1941),Action|Drama|Romance +96985,"Report on the Party and the Guests, A (O slavnosti a hostech) (1966)",Drama +96991,"Sapphires, The (2012)",Comedy|Drama|Musical +96993,That Certain Summer (1972),Drama +97002,Something from Nothing: The Art of Rap (2012),Documentary|Musical +97005,Just Add Water (2008),Comedy|Romance +97008,"Return of the Prodigal Son, The (Návrat ztraceného syna) (1967)",Drama +97024,Rust and Bone (De rouille et d'os) (2012),Drama|Romance +97026,Upstream (1927),Comedy|Drama +97029,Genocide (Konchû daisensô) (1968),Horror|Sci-Fi +97031,"Goke, Body Snatcher from Hell (Kyuketsuki Gokemidoro) (1968)",Horror|Sci-Fi +97035,"Living Skeleton, The (Kyûketsu dokuro-sen) (1968)",Horror +97037,Madonna of the Seven Moons (1945),Drama|Mystery +97039,"Man in Grey, The (1943)",Drama|Romance +97042,Ishaqzaade (2012),Action|Drama|Romance +97046,Evil Bong (2006),Comedy|Horror +97051,Here Comes the Devil (Ahí va el diablo) (2012),Horror|Thriller +97057,Kon-Tiki (2012),Adventure|Documentary|Drama +97059,Katy Perry: Part of Me (2012),Documentary|Drama +97061,Broadway (1929),Drama|Musical +97065,Viy or Spirit of Evil (Viy) (1967),Comedy|Drama|Fantasy|Horror +97068,"Rise of Catherine the Great, The (1934)",Drama +97070,Roseland (1977),Drama|Musical|Romance +97073,Rusty Knife (Sabita naifu) (1958),Action|Crime +97092,Glorious Technicolor (1998),Documentary +97096,Lon Chaney: A Thousand Faces (2000),Documentary +97115,El tren de la memoria (2005),Documentary +97117,"March of the Movies (Film Parade, The) (1933)",Documentary +97119,Rules of Single Life (Sinkkuelämän säännöt) (2011),Documentary +97124,Tank on the Moon (2007),Documentary +97128,"Safe Place, A (1971)",Drama +97132,Urbanized (2011),Documentary +97134,Waco: A New Revelation (1999),Documentary +97137,"Cool Ones, The (1967)",Comedy +97139,Blood of Dracula (1957),Horror|Romance +97146,I'm King Kong!: The Exploits of Merian C. Cooper (2005) ,Documentary +97148,Elia Kazan: A Director's Journey (1995),Documentary +97151,"John Garfield Story, The (2003)",Documentary +97153,Not Here to Be Loved (Je ne suis pas là pour être aimé) (2005),Drama|Romance +97161,California Solo (2012),Drama +97163,Shameless (Maskeblomstfamilien ) (2010),Drama +97165,"Marshal of Finland, The (Suomen Marsalkka) (2012)",Drama|Romance +97168,Marley (2012),Documentary +97172,Frankenweenie (2012),Animation|Comedy|Horror|IMAX +97175,His Name Was Jason: 30 Years of Friday the 13th (2009),Documentary|Horror +97177,Colin Quinn: Long Story Short (2011),Comedy +97184,588 Rue Paradis (Mother) (1992),Drama +97186,Sinivalkoinen valhe (2012),Documentary +97188,Sinister (2012),Horror|Thriller +97194,"Thing: Terror Takes Shape, The (1998)",Documentary +97196,Shottas (2002),Action|Crime|Drama +97200,Sapphire (1959),Crime|Drama|Mystery|Thriller +97220,Virginia (2010),Drama +97225,Hotel Transylvania (2012),Animation|Children|Comedy +97227,Our City Dreams (2008),Documentary +97232,"Good Old Fashioned Orgy, A (2011)",Comedy +97234,Inside: 'Dr. Strangelove or How I Learned to Stop Worrying and Love the Bomb' (2000),Documentary +97236,Shadowing the Third Man (2004),Documentary +97238,Making 'Do the Right Thing' (1989),Documentary +97240,"Young and the Dead, The (2000)",Documentary +97242,Daleks' Invasion Earth: 2150 A.D. (1966),Adventure|Sci-Fi +97244,Fat Kid Rules the World (2012),Comedy +97246,Charlie Chan in Egypt (1935),Mystery +97250,Charlie Chan in London (1934),Drama|Mystery +97252,Coupe de Ville (1990),Comedy|Drama +97254,Shakespeare-Wallah (1965),Drama +97256,Love in the Time of Hysteria (Sólo con tu pareja) (1991),Comedy|Romance +97280,We Are from the Future (My iz budushchego) (2008),Action|Drama|Fantasy +97283,Creature from the Haunted Sea (1961),Comedy|Horror +97285,Take Aim at the Police Van (Sono gosôsha wo nerae: 'Jûsangô taihisen' yori) (1960),Action|Crime|Mystery +97296,"Screaming Skull, The (1958)",Horror|Mystery +97302,Madame Tutli-Putli (2007),Animation|Fantasy +97304,Argo (2012),Drama|Thriller +97306,Seven Psychopaths (2012),Comedy|Crime +97308,Nobody Walks (2012),Drama +97311,Butter (2011),Comedy +97319,"Cigarette Girl of Mosselprom, The (Papirosnitsa ot Mosselproma) (1924)",Comedy|Romance +97324,Atlas Shrugged: Part II (2012),Drama|Mystery|Sci-Fi +97326,Ill Manors (2012),Crime|Drama +97328,Liberal Arts (2012),Comedy|Drama +97330,"Ator, the Fighting Eagle (Ator l'invincibile) (1982)",Action|Adventure|Fantasy +97332,"Den tatuerade änkan (Tattooed Widow, The) (1998) ",Comedy|Drama|Romance +97334,Portrait in Black (1960),Crime|Drama|Thriller +97382,Under the Boardwalk: The Monopoly Story (2010),Documentary +97384,Arachnoquake (2012),Action|Horror|Sci-Fi +97386,Choking Man (2006),Drama +97388,"Farewell, My Queen (Les adieux à la reine) (2012)",Drama|Romance +97390,Marley & Me: The Puppy Years (2011),Children|Comedy +97393,"House I Live In, The (2012)",Documentary +97395,West of Memphis (2012),Documentary +97397,Boogie Man: The Lee Atwater Story (2008),Documentary +97401,Terumae romae (Thermae Romae) (2012),Comedy|Sci-Fi +97423,Michael (2011),Drama|Thriller +97455,Kings of Pastry (Les rois de la pâtisserie) (2009),Documentary +97457,"Reluctant Saint, The (1962)",Comedy|Drama +97460,"Gorilla, The (1939)",Comedy|Horror +97462,Hoodwinked Too! Hood vs. Evil (2011),Animation|Comedy +97464,"Thirst for Love, The (Ai no kawaki) (1966)",Drama +97466,Weight of the Nation (2012),Documentary +97468,Drones (2010),Comedy|Sci-Fi +97470,Catch .44 (2011),Action|Drama|Thriller +97494,"Return of Frank Cannon, The (1980)",Action|Crime|Drama|Mystery|Thriller +97526,"Sound of Fury, The (1950)",Crime|Drama|Film-Noir +97533,"Letter, The (2012)",Drama +97536,Three Resurrected Drunkards (Kaette kita yopparai) (1968),Comedy +97538,Tormento (1950),Drama +97540,"Visiteurs du soir, Les (Devil's Envoys, The) (1942)",Drama|Fantasy|Romance +97544,Eastwood on Eastwood (1997),Documentary +97548,Giger's Necronomicon (1975),Documentary +97550,"Secret Life of Zoey, The (2002)",Drama +97593,Tony (2009),Drama|Horror|Thriller +97595,Dive! (Dive!: Living off America's Waste) (2010),Documentary +97597,"Clink of Ice, The (a.k.a.: Sound of Ice Cubes, The) (Le bruit des glaçons) (2010)",Comedy|Drama +97600,"Warped Ones, The (Kyonetsu no kisetsu) (1960)",Drama +97615,16 to Life (2009),Comedy|Drama +97639,How to Survive a Plague (2012),Documentary +97643,[REC]³ 3 Génesis (2012),Horror|Thriller +97646,Four Sons (1940),Drama|War +97660,Last Ride (2009),Drama +97662,Girl in Progress (2012),Comedy|Drama +97665,Asterix & Obelix: God Save Britannia (Astérix et Obélix: Au service de Sa Majesté) (2012),Adventure|Comedy +97667,Lightning Strikes Twice (1951),Drama|Mystery +97670,My Forbidden Past (1951),Drama +97673,56 Up (2012),Documentary +97680,King Leopold's Ghost (2006),Documentary +97685,Around the World (1943),Comedy|Musical +97688,Turkish Passion (La pasión turca) (1994),Drama +97690,"Sunday in Kigali, A (Un dimanche à Kigali) (2006)",Drama|War +97692,We Are Legion: The Story of the Hacktivists (2012),Documentary +97694,"Barrens, The (2012)",Horror +97697,Transit (2012),Crime|Drama|Thriller +97699,Love Me No More (Deux jours à tuer) (2008),Drama|Romance +97701,Paranormal Activity 4 (2012),Horror|IMAX +97703,You Are God (Jestes Bogiem) (2012),Drama +97705,Where the Boys Are '84 (1984),Comedy +97707,Skyscraper (Skyskraber) (2011),Comedy|Drama +97709,Tai Chi Zero (2012),Action|Fantasy|Sci-Fi|IMAX +97711,"White Angel, The (L'angelo bianco) (1955)",Drama +97713,"X from Outer Space, The (Uchû daikaijû Girara) (1967)",Horror|Sci-Fi +97715,"Babymakers, The (2012)",Adventure|Comedy +97722,Rosewood Lane (2011),Horror|Thriller +97724,"Glamorous Life of Sachiko Hanai, The (Hatsujô kateikyôshi: sensei no aijiru) (2003)",Action|Comedy|Drama|Fantasy|Mystery|Sci-Fi|War +97726,"Strange Case of the End of Civilization as We Know It, The (1977)",Comedy|Crime|Mystery +97730,"Feast at Midnight, A (1994)",Children|Comedy|Drama +97732,Tom & Thomas (2002),Adventure|Children +97740,"3, 2, 1... Frankie Go Boom (Frankie Go Boom) (2012)",Comedy +97742,Alex Cross (2012),Action|Crime|Mystery|Thriller +97744,"Ambassador, The (Ambassadøren) (2011)",Documentary +97752,Cloud Atlas (2012),Drama|Sci-Fi|IMAX +97755,"Luck, Trust & Ketchup: Robert Altman in Carver Country (1993)",Documentary +97757,'Hellboy': The Seeds of Creation (2004),Action|Adventure|Comedy|Documentary|Fantasy +97759,Budd Boetticher: A Man Can Do That (2005),Documentary +97765,ReGeneration (2010),Documentary +97768,Free Men (Les hommes libres) (2011),Drama|War +97775,This Ain't California (2012),Documentary +97779,Steve Jobs: The Lost Interview (2012),Documentary +97785,Silent Hill: Revelation 3D (2012),Horror|Mystery|Thriller +97792,Graduation Day (1981),Horror +97797,Holiday Affair (1949),Drama|Romance +97799,Like Dandelion Dust (2009),Drama +97801,Mann tut was Mann kann (2012),Comedy +97806,Stockholm East (Stockholm Östra) (2011),Drama +97808,"Woman That Dreamed About a Man, The (Kvinden der drømte om en mand) (2010)",Drama +97815,Beware the Moon: Remembering 'An American Werewolf in London' (2009),Documentary +97817,Pumping Iron II: The Women (1985),Documentary +97819,Witness to Murder (1954),Crime|Drama|Film-Noir|Thriller +97821,"Busher, The (1919)",Comedy|Drama +97823,"Piano in a Factory, The (Gang de qin) (2010)",Comedy|Drama|Musical +97826,"Patience Stone, The (2012)",Drama|War +97828,Hamoun (1990),Drama +97832,Chasing Mavericks (2012),Drama +97834,Craigslist Joe (2012),Adventure|Documentary +97836,Here Comes the Boom (2012),Action|Comedy +97845,"Men Who Made the Movies: Samuel Fuller, The (2002)",Documentary +97853,Night of the Running Man (1995),Action|Crime|Thriller +97855,Hitman's Run (1999),Action +97858,Mental (2012),Comedy|Drama +97860,Killing Them Softly (2012),Crime|Drama|Thriller +97866,"Imposter, The (2012)",Documentary +97868,"Other Dream Team, The (2012)",Documentary +97870,"Sessions, The (Surrogate, The) (2012)",Drama +97872,Living with the Fosters (2002),Comedy +97878,Remember the Day (1941),Drama|Romance|War +97880,"Child Is Waiting, A (1963)",Drama +97882,Salvage (2009),Horror +97884,Submarine X-1 (1969),Drama|War +97886,Rid of Me (2011),Comedy|Drama|Romance +97895,What Richard Did (2012),Drama +97904,Smashed (2012),Comedy|Drama +97906,Splinterheads (2009),Comedy +97908,"Babysitters, The (2007)",Drama +97910,"Juche Idea, The (2008)",Documentary +97913,Wreck-It Ralph (2012),Animation|Comedy +97915,Lookin' to Get Out (1982),Comedy +97917,Diplomatic Siege (1999),Action|Thriller +97919,Midnight Man (1997),Action|Drama|Thriller +97921,Silver Linings Playbook (2012),Comedy|Drama +97923,Flight (2012),Drama +97933,5 Broken Cameras (2011),Documentary +97936,Anna Karenina (2012),Drama +97938,Life of Pi (2012),Adventure|Drama|IMAX +97940,"Saint in London, The (1939)",Action|Comedy|Crime|Drama|Mystery +97946,"Day, The (2011)",Drama|Sci-Fi|Thriller +97950,"Man with the Iron Fists, The (2012)",Action|Adventure|Crime +97955,Gable: The King Remembered (1975),Documentary +97957,Excision (2012),Crime|Drama|Horror|Thriller +97959,"Other Son, The (Fils de l'autre, Le) (2012)",Drama +97966,Bait (2012),Action|Horror|Thriller +97968,Gallowwalkers (2012),Action|Horror|Sci-Fi|Western +97971,Rosencrantz and Guildenstern Are Undead (2009),Comedy|Horror +97984,Wake in Fright (1971),Drama|Thriller +97986,Won't Back Down (2012),Drama +97988,"Bay, The (2012)",Horror|Sci-Fi|Thriller +97994,Union Square (2011),Drama +97998,"Hypnotist, The (Hypnotisören) (2012)",Thriller +98000,Student of the Year (2012),Comedy|Romance +98002,"Madrid, 1987 (2011)",Drama +98004,Single White Female 2: The Psycho (2005),Drama|Thriller +98007,Miehen tie (1940),Drama +98013,"Details, The (2011)",Comedy +98015,Jack and Diane (2012),Drama|Horror|Romance +98017,"Late Quartet, A (2012)",Drama +98019,Vexille (Bekushiru: 2077 Nihon sakoku) (2007),Action|Animation|Sci-Fi +98022,Sleepless Night (Nuit blanche) (2011),Action|Crime|Thriller +98027,"Age of Innocence, The (1934)",Drama|Romance +98030,Atomic Twister (2002),Action|Drama|Sci-Fi +98032,Bear with Me (2005),Adventure +98036,"Lady, The (2011)",Drama +98045,All About Actresses (Le bal des actrices) (2009),Comedy|Drama +98052,Goal! III (2009),Drama|Romance +98054,Stolen (2012),Action|Crime|Thriller +98056,Amour (2012),Drama|Romance +98059,Something's Gonna Live (2010),Documentary +98061,Himizu (2011),Children|Crime|Drama +98063,Mona and the Time of Burning Love (Mona ja palavan rakkauden aika) (1983)),Drama +98065,Brooklyn Castle (2012),Documentary +98067,"Well Digger's Daughter, The (La fille du puisatier) (2011)",Comedy|Drama|Romance +98069,Incident at Blood Pass (Machibuse) (Ambush) (1970),Action|Drama +98072,Triad Underworld (Gong wu) (Jiang Hu) (2004),Action|Crime|Drama +98078,Death Weekend (1976),Horror|Thriller +98087,Cockneys vs Zombies (2012),Comedy|Horror +98107,28 Hotel Rooms (2012),Drama +98109,Citadel (2012),Drama|Horror|Thriller +98111,Dangerous Liaisons (2012),Drama|Mystery|Romance +98114,Bloodtide (1982),Horror +98116,The Scorpion King 3: Battle for Redemption (2012),Action|Adventure|Fantasy +98122,Indie Game: The Movie (2012),Documentary +98126,Capital (Le capital) (2012),Drama +98131,Beloved Berlin Wall (Liebe Mauer) (2009),Comedy|Drama|Romance +98140,Meet Monica Velour (2010),Comedy|Drama|Romance +98142,Thurgood (2011),Drama +98144,"Conscientious Objector, The (2004)",Documentary|War +98151,Kill Me Please (2010),Comedy +98154,Lincoln (2012),Drama|War +98160,Nature Calls (2012),Comedy +98162,Babbitt (1934),Drama +98167,In Their Sleep (Dans ton sommeil) (2010),Horror|Thriller +98169,Requiem for a Killer (Requiem pour une tueuse) (2011),Thriller +98171,"Bohème, La (1926)",Drama|Romance +98173,"Caine Mutiny Court-Martial, The (1988)",Drama|War +98175,Vamps (2012),Comedy|Horror|Romance +98183,Cash on Demand (1962),Crime|Drama|Thriller +98189,"Moth Diaries, The (2011)",Thriller +98191,Joe + Belle (2011),Comedy|Crime|Drama|Romance +98193,"Invisible War, The (2012)",Crime|Documentary|Drama|War +98198,OMG Oh My God! (2012),Comedy|Drama +98200,"Strawberry Statement, The (1970)",Drama|Romance +98203,"Twilight Saga: Breaking Dawn - Part 2, The (2012)",Adventure|Drama|Fantasy|Romance|IMAX +98211,Shakespeare High (2011),Documentary +98213,"Circle, The (1925)",Drama +98217,Holiday Engagement (2011),Comedy +98219,"Tiger Brigades, The (Les brigades du Tigre) (2006)",Action|Adventure|Crime +98221,"Year One, The (L'an 01) (1973)",Comedy +98224,"Big Blonde, The (Iso vaalee) (1983)",Comedy|Drama +98228,Walter (1982),Drama +98230,10 Years (2011),Comedy|Drama|Romance +98237,Price Check (2012),Comedy|Drama +98239,Red Dawn (2012),Action|War +98241,Starry starry night (Xing kong) (2011),Children|Drama|Fantasy +98243,Rise of the Guardians (2012),Adventure|Animation|Children|Fantasy|IMAX +98246,"Seafarers, The (1953)",Documentary +98248,"Counterfeiters, The (Le cave se rebiffe) (1961)",Comedy +98251,Kabei: Our Mother (Kâbê) (2008),Drama +98253,Samurai Banners (Fûrin kazan) (1969),Action|Adventure|Drama|War +98261,Murder on Flight 502 (1975),Drama|Mystery|Thriller +98271,Amor? (2011),Drama +98273,"Last Trapper, The (Le dernier trappeur) (2004)",Adventure|Documentary +98275,"Octopus, The (Le poulpe) (1998)",Comedy|Crime|Thriller +98277,Locked Out (Enfermés dehors) (2006),Comedy +98279,"Fantastic Fear of Everything, A (2012)",Comedy +98284,Fire Over England (1937),Adventure|Romance|War +98286,Fog Over Frisco (1934),Crime|Mystery|Thriller +98288,Ten Seconds to Hell (1959),Action|Drama|Romance|War +98294,Tokio Baby (2010),Drama +98296,Deadfall (2012),Crime|Drama|Thriller +98298,Skirt Day (La journée de la jupe) (2008),Drama +98304,So Big! (1932),Drama +98306,"Singing Marine, The (1937)",Comedy|Musical|Romance +98311,"Great Diamond Robbery, The (1954)",Comedy|Crime +98313,Half a Hero (1953),Comedy|Musical +98323,Two Sisters from Boston (1946),Comedy|Musical +98325,"Quare Fellow, The (a.k.a. The Condemned Man) (1962)",Drama +98328,Chronicle of My Mother (Waga haha no ki) (2011),Drama +98335,"Moral Tales, Filmic Issues (2006)",Documentary +98339,Les modèles de 'Pickpocket' (2005),Documentary +98341,"Confession, The (1999)",Drama|Thriller +98344,Lovely to Look At (1952),Comedy|Musical|Romance +98346,Excuse My Dust (1951),Comedy|Musical +98348,Watch the Birdie (1950),Comedy|Crime|Romance +98353,Putin's Kiss (2012),Documentary +98358,Journey to Saturn (Rejsen til Saturn) (2008),Action|Adventure|Animation|Sci-Fi +98361,Byzantium (2012),Drama|Fantasy|Thriller +98373,Step Up Revolution (2012),Musical +98376,"Yellow Cab Man, The (1950)",Comedy|Drama|Romance +98378,Four more years (Fyra år till) (2010),Comedy|Romance +98381,Hellraiser: Revelations (2011),Horror +98385,Jungle de Ikou (Jungre de Ikou) (1997),Action|Comedy|Fantasy +98387,Making 'The New World' (2006),Documentary +98389,"Lost Missile, The (1958)",Sci-Fi +98394,Cry Wolf (1947),Crime|Drama|Mystery|Thriller +98398,Everybody's Acting (1926),Drama|Romance +98400,Imaginaerum (2012),Fantasy|Musical +98402,Nokas (2010),Crime|Thriller +98409,Budd Boetticher: An American Original (2005) ,Documentary +98411,"Footprints of a Spirit, The (Huellas de un espíritu) (1998)",Documentary +98437,Bed of Roses (1933),Comedy|Drama|Romance +98439,Division III: Football's Finest (2011),Comedy|Romance +98441,Rebecca of Sunnybrook Farm (1938),Children|Comedy|Drama|Musical +98443,Mark Twain (2001),Documentary +98449,"Burning Hot Summer, A (Un été brûlant) (2011)",Drama +98452,"Kiss for Corliss, A (Almost a Bride) (1949)",Comedy +98456,Adventure in Baltimore (1949),Comedy|Drama +98458,Baby Take a Bow (1934),Children|Comedy|Drama +98460,"Tempest, The (1979)",Drama +98464,New Fist of Fury (Xin jing wu men) (1976),Action|Drama +98467,"Killer Meteors, The (Feng yu shuang liu xing) (1976)",Action|Thriller +98469,Shaolin Wooden Men (Shao Lin mu ren xiang) (1976),Action +98473,"Sleeping Car Murder, The (Compartiment tueurs) (1965)",Drama|Mystery|Thriller +98475,Let's Not Get Angry (Ne nous fâchons pas) (1966),Comedy|Crime +98477,Hothead (Coup de tête) (1979),Comedy|Drama +98485,Aftermath (2012),Drama|Thriller +98491,Paperman (2012),Animation|Comedy|Romance +98493,To Kill with Intrigue (Jian hua yan yu Jiang Nan) (1977),Action|Drama +98497,Magnificent Bodyguards (Fei du juan yun shan) (1978),Action +98499,"Fearless Hyena, The (Xiao quan guai zhao) (1979)",Action|Comedy +98501,Dragon Fist (Long quan) (1979),Action|Drama +98503,Half a Loaf of Kung Fu (Dian zhi gong fu gan chian chan) (1980),Action|Comedy +98507,We Should Not Exist (On ne devrait pas exister) (2006),Comedy|Drama +98509,Bank Error in Your Favour (Erreur de la banque en votre faveur) (2009),Comedy +98511,Kirikou and the Wild Beast (Kirikou et les bêtes sauvages) (2005),Adventure|Animation|Children +98518,Slingshot (2005),Crime|Drama|Romance +98520,Brooklyn Bridge (1981),Documentary +98552,Nativity! (2009),Children|Comedy|Musical +98558,Dragon Attack (1983),Action|Adventure|Comedy|Crime|Thriller|War +98560,Fearless Hyena II (Long teng hu yue) (1983),Action +98566,Ghost Voyage (2008),Horror|Thriller +98570,"Peace, Love & Misunderstanding (2011)",Drama|Romance +98581,Fever (1991),Drama +98583,Hecho en México (2012),Documentary|Musical +98585,Hitchcock (2012),Drama +98587,Caesar Must Die (Cesare deve morire) (2012),Drama +98589,Interceptor (1993),Action|Sci-Fi +98591,Now Where Did the Seventh Company Get to? (Mais où est donc passée la 7ème compagnie) (1973),Action|Comedy|War +98593,Other Worlds (D'autres mondes) (2004),Documentary +98595,Peppermint Soda (Diabolo menthe) (1977),Comedy|Drama +98601,American Roulette (1988),Thriller +98604,From Up on Poppy Hill (Kokuriko-zaka kara) (2011),Animation|Drama|Romance +98607,Redline (2009),Action|Animation|Sci-Fi +98609,Honeymoon (1947),Comedy|Romance +98611,Just Around the Corner (1938),Comedy|Musical +98613,Kathleen (1941),Comedy|Drama|Romance +98617,Lulu in Berlin (1984),Documentary +98619,L'instant et la patience (1994) ,Documentary +98621,Welcome to the Space Show (Uchû shô e yôkoso) (2010),Adventure|Animation|Sci-Fi +98623,Winners and Sinners (Qi mou miao ji: Wu fu xing) (1983),Action|Comedy|Crime +98629,Purge (Puhdistus) (2012),Drama +98631,"Day He Arrives, The (Book chon bang hyang) (2011)",Drama|Romance +98633,My Lucky Stars (Fuk sing go jiu) (1985),Action|Comedy +98636,Twinkle Twinkle Lucky Stars (Xia ri fu xing) (1985),Action|Comedy +98643,Kiss and Tell (1945),Comedy +98693,"Yes, But... (Oui, mais...) (2001)",Comedy|Drama|Romance +98695,Space Adventure Cobra (1982),Animation|Sci-Fi +98697,"Money Money Money (L'aventure, c'est l'aventure) (1972)",Adventure|Comedy +98751,"Awful Truth, The (1925)",Comedy +98755,1911 (Xinhai geming) (2011),Action|Adventure|Drama|War +98757,Jackie Chan: Kung Fu Master (Xun zhao Cheng Long) (2009),Action|Comedy +98759,"Shaolin Temple, The (Shao Lin Si) (1982)",Action +98766,Carol Channing: Larger Than Life (2012),Comedy|Documentary|Musical +98768,Memory (2006),Drama|Horror|Thriller +98783,Shaolin Temple 3: Martial Arts of Shaolin (Nan bei Shao Lin) (Martial Arts of Shaolin) (1986),Action +98786,Snowmageddon (2011),Adventure|Fantasy +98788,Stand Up and Fight (1939),Drama|Romance|Western +98797,Barbara (2012),Drama +98799,"Liar's Autobiography: The Untrue Story of Monty Python's Graham Chapman, A (2012)",Animation|Comedy +98803,Little Miss Broadway (1938),Drama|Musical +98805,Miss Annie Rooney (1942),Drama +98807,Mr. Belvedere Goes to College (1949),Comedy +98809,"Hobbit: An Unexpected Journey, The (2012)",Adventure|Fantasy|IMAX +98815,Mon Paradis - Der Winterpalast (2001),Documentary +98819,I am Von Höfler (Variation on Werther - Private Hungary 15) (2008),Documentary +98823,Dragon Fight (Long zai tian ya) (1989),Action +98825,"Master, The (Huang Fei Hong jiu er zhi long xing tian xia) (1992)",Action +98829,"Evil Cult, The (Lord of the Wu Tang) (Yi tian tu long ji: Zhi mo jiao jiao zhu) (1993)",Action|Fantasy +98834,"Fitzgerald Family Christmas, The (2012)",Drama +98836,Hyde Park on Hudson (2012),Comedy|Drama +98838,Lay the Favorite (2012),Comedy +98840,Audition (Konkurs) (1964),Documentary +98842,All's Faire in Love (2009),Comedy +98845,Crooked Arrows (2012),Drama +98847,"Enforcer, The (Gei ba ba de xin) (1995)",Action +98850,Dr. Wai in the Scriptures with No Words (Mao xian wang) (1996),Action +98852,Once Upon a Time in China and America (Wong Fei Hung: Chi sai wik hung see) (1997) ,Action|Adventure|Western +98854,Hitman (Contract Killer) (Sat sau ji wong) (1998),Action|Comedy +98859,Never Say... Never! (Il ne faut jurer... de rien!) (2005),Comedy +98861,"Cool, Calm and Collected (Calmos) (1976)",Comedy +98911,"After Fall, Winter (2011)",Drama +98913,Violeta Went to Heaven (Violeta se fue a los cielos) (2011),Drama +98922,Rebellion (L'ordre et la morale) (2011),Action|Drama +98924,Versailles (2008),Drama +98927,Two in the Wave (2010),Documentary +98929,Lotte Reiniger: Homage to the Inventor of the Silhouette Film (2001),Documentary +98931,"RKO Production 601: The Making of 'Kong, the Eighth Wonder of the World' (2005)",Documentary +98933,Yossi (Ha-Sippur Shel Yossi) (2012),Drama|Romance +98936,"All Blossoms Again: Pedro Costa, Director (Tout refleurit: Pedro Costa, cinéaste) (2006)",Documentary +98938,"Last Rites of Joe May, The (2011)",Drama +98943,"Prodigal, The (1955)",Drama +98949,"Eleventh Hour, The (2008)",Action|Thriller +98956,Barfi! (2012),Comedy|Drama|Romance +98958,Federico Fellini's Autobiography (Federico Fellini - un autoritratto ritrovato) (2000),Documentary +98961,Zero Dark Thirty (2012),Action|Drama|Thriller +98963,Neighbouring Sounds (O som ao redor) (2012),Drama|Thriller +98973,Chasing Ice (2012),Documentary +98975,Antiviral (2012),Horror|Sci-Fi|Thriller +98981,"Arrival of a Train, The (1896)",Documentary +98983,Arsène Lupin (2004),Action|Adventure|Crime|Mystery|Romance +98985,"Three Brothers, The (Les trois frères) (1995)",Comedy +98989,Ghost Machine (2009),Action|Sci-Fi|Thriller +98991,Freeloaders (2011),Comedy +98994,"Immortal Story, The (Histoire immortelle) (1968)",Drama +98996,Filming 'Othello' (1978),Documentary +99007,Warm Bodies (2013),Comedy|Horror|Romance +99020,Let Fury Have the Hour (2012),Documentary +99022,Now I'll Tell (1934),Drama +99024,Asylum Blackout (2011),Horror|Thriller +99026,Fresh Bait (L'appât) (1995) ,Crime|Drama +99028,Frenchmen (Le coeur des hommes) (2003),Comedy|Romance +99030,Wrong (2012),Comedy|Drama +99041,Young & Wild (Joven y alocada) (2012),Drama +99043,Trishna (2011),Drama +99045,Aftershock (Tangshan dadizhen) (2010),Drama|IMAX +99047,Chained (2012),Horror|Thriller +99050,"Goodbye Girl, The (2004)",Comedy|Romance +99054,"Ring Finger, The (L'annulaire) (2005)",Drama +99056,"Count Yorga, Vampire (1970)",Drama|Horror|Romance +99058,"Comedy, The (2012)",Drama +99061,7 Khoon Maaf (2011),Drama|Mystery|Thriller +99064,"Red Shoes, The (Bunhongsin) (2005)",Drama|Horror|Mystery +99068,Bluebeard (1972),Thriller +99085,Our Little Girl (1935),Comedy|Drama|Romance +99087,Playing for Keeps (2012),Comedy|Romance +99089,Poor Little Rich Girl (1936),Adventure|Musical|Romance +99091,Skate or Die (2008),Action +99106,"Guilt Trip, The (2012)",Comedy +99108,"Girl on a Motorcycle, The (1968)",Drama|Romance +99110,Save the Date (2012),Comedy|Romance +99112,Jack Reacher (2012),Action|Crime|Thriller +99114,Django Unchained (2012),Action|Drama|Western +99117,This Is 40 (2012),Drama +99122,I Bought a Vampire Motorcycle (1990),Comedy|Horror +99124,Willard (1971),Horror +99126,"Public Woman, The (Femme publique, La) (1984)",Drama +99143,Cirque du Soleil: Worlds Away (2012),Fantasy|IMAX +99145,"Impossible, The (Imposible, Lo) (2012)",Drama|Thriller +99149,"Misérables, Les (2012)",Drama|Musical|Romance|IMAX +99169,"Gestapo's Last Orgy, The (L'ultima orgia del III Reich) (1977)",Thriller|War +99171,Mamitas (2011),Drama +99173,"Bobo, The (1967)",Comedy +99178,Struck by Lightning (2012),Comedy|Drama +99182,Spring Break Shark Attack (2005),Adventure|Drama|Horror +99191,Campfire Tales (1997),Horror +99210,Seven Ways from Sundown (1960),Action|Adventure|Western +99217,Not Fade Away (2012),Drama +99220,Quartet (2012),Comedy|Drama +99222,Silent Night (2012),Horror +99240,"Coluche, l'histoire d'un mec (2008)",Drama +99243,"Parasites, Les (1999)",Comedy +99246,"Reluctant Dragon, The (1941)",Animation|Comedy +99249,"Marine Story, A (2010)",Drama +99251,Malibu High (1979),Comedy|Crime +99258,Who Wants to Kill Jessie? (Kdo chce zabít Jessii?) (1966),Comedy|Sci-Fi +99260,Jerusalem Countdown (2011),Thriller +99270,Stand Up and Cheer! (1934),Comedy|Musical +99273,Stowaway (1936),Adventure|Musical +99276,Susannah of the Mounties (1939),Drama +99279,11 Flowers (Wo 11) (2011),Drama +99285,"Meilleurs amis du monde, Les (2010)",Comedy +99287,Quatre garçons pleins d'avenir (1997),Comedy +99289,In Your Dreams (Dans tes rêves) (2005),Drama +99294,"Willow Tree, The (Beed-e majnoon) (2005)",Drama +99305,Kumaré (2011),Documentary +99308,Lady Oscar (1979),Drama +99314,That Hagen Girl (1947),Drama +99325,"Eye of the Storm, The (2011)",Drama +99327,976-EVIL II (1992),Horror +99337,Foreign Intrigue (1956),Thriller +99343,Harem suare (1999),Drama +99345,Electile Dysfunction (2008),Documentary +99347,"Glenn, the Flying Robot (2010)",Sci-Fi +99351,Slipstream (1989),Adventure|Sci-Fi +99355,"Woodmans, The (2010)",Documentary +99364,Move (3 Zimmer/Küche/Bad) (2012),Comedy|Drama +99367,Holiday in Handcuffs (2007),Comedy|Romance +99371,Camp Rock 2: The Final Jam (2010),Comedy|Musical|Romance +99373,StreetDance 3D (2010),Drama|Romance +99380,"New Barbarians, The (I nuovi barbari) (1983)",Action|Sci-Fi|Thriller|Western +99384,How to Stop Being a Loser (2011),Comedy +99387,Transfer (2010),Drama|Sci-Fi +99395,Time of Roses (Ruusujen aika) (1969),Sci-Fi +99397,Lipton Cockton in the Shadows of Sodoma (1995),Drama|Mystery|Sci-Fi +99400,"Midsummer Night's Party, A (Midsummer of Love, A) (Sommaren med Göran) (2009)",Comedy +99402,Alois Nebel (2011),Animation|Crime|War +99413,Juan of the Dead (Juan de los Muertos) (2011),Comedy|Horror +99415,Parental Guidance (2012),Comedy +99417,Sexy Baby (2012),Documentary +99434,Snow on Tha Bluff (2011),Crime|Drama +99437,John Dies at the End (2012),Comedy|Fantasy|Horror +99439,Vidal Sassoon: The Movie (2010),Documentary +99441,Born to Be Wild (2011),Documentary|IMAX +99444,Blonde Ice (1948),Film-Noir +99446,Ultrasuede: In Search of Halston (2010),Documentary +99452,Wish Me Away (2011),Documentary +99468,"Central Park Five, The (2012)",Documentary +99470,"Collection, The (2012)",Action|Horror|Thriller +99478,FDR: American Badass! (2012),Action|Comedy +99487,All Superheros Must Die (2011),Thriller +99489,Jean Renoir: Part One - From La Belle Époque to World War II (1993),Documentary +99493,Girl Walk: All Day (2011),Musical +99495,"Acacias, Las (2011)",Drama +99497,Just Ask My Children (2001),Drama +99499,Never Too Young to Die (1986),Action|Adventure|Drama +99502,"Remember the Daze (Beautiful Ordinary, The) (2007)",Comedy|Drama +99513,Waiting for Lightning (2012),Documentary +99515,Yesterday's Enemy (1959),Drama|War +99517,Young People (1940),Drama +99519,Henry (2010),Comedy +99521,"Incruste, L' (a.k.a. L'Incruste, fallait pas le laisser entrer!) (2004)",Comedy +99523,"Villain, The (Le Vilain) (2009)",Comedy +99525,Soldiers of Fortune (2012),Action|Adventure +99530,Rurouni Kenshin (Rurôni Kenshin: Meiji kenkaku roman tan) (2012),Action|Drama +99537,Extracted (2012),Drama|Sci-Fi +99539,Stevie (2008),Drama|Horror +99549,Mansome (2012),Documentary +99560,"Misérables, Les (1958)",Drama +99562,"Misérables, Les (1952)",Drama|Romance +99564,"Big Street, The (1942)",Drama|Romance +99566,"True Meaning of Christmas Specials, The (2002)",Comedy +99570,Kenji Mizoguchi: The Life of a Film Director (Aru eiga-kantoku no shogai) (1975),Documentary +99574,Promised Land (2012),Drama +99591,Neo Ned (2005),Drama|Romance +99594,Offender (2012),Crime|Thriller +99596,Sun Wind (Aurinkotuuli) (1980),Drama|Sci-Fi +99598,Confessions of a Window Cleaner (1974),Comedy +99600,"Man Who Haunted Himself, The (1970)",Drama|Fantasy|Horror|Mystery|Thriller +99602,Dakota Skye (2008),Drama|Romance +99607,Immaculate Conception of Little Dizzle (2009),Comedy +99611,Confessions of a Pop Performer (1975),Comedy +99613,Private Romeo (2011),Drama +99615,Role/Play (2010),Drama +99633,"Sweeney, The (2012)",Action|Crime +99636,English Vinglish (2012),Comedy|Drama +99638,Fish Story (Fisshu sutôrî) (2009),Comedy +99640,Comedy Central Roast of Bob Saget (2008),Comedy +99642,Tiny Toon Adventures: How I Spent My Vacation (1992),Adventure|Animation|Comedy +99644,Trapped in the Closet: Chapters 1-12 (2005),Drama|Musical +99659,"Sea of Grass, The (1947)",Drama|Western +99663,"Visitors, The (1972)",Crime|Drama|Thriller +99665,L'homme qui rit (2012),Drama|Fantasy|Romance +99667,Excuse Me for Living (2012),Comedy|Romance +99669,Aftermath (1994),Horror +99671,Fragments of an Alms-Film (Fragmentos de um Filme-Esmola: A Sagrada Família) (1972),Comedy +99673,Manuel on the Island of Wonders (Manoel dans l'île des merveilles) (1984),Drama +99675,Eat Sleep Die (Äta sova dö) (2012),Drama +99677,Dr. Bronner's Magic Soapbox (2006),Documentary +99687,"Dark Truth, A (Truth, The) (2012)",Drama|Thriller +99689,"Conversation with Gregory Peck, A (1999)",Documentary +99691,Odette Toulemonde (2006),Comedy|Drama +99695,Pusher (2012),Crime|Drama +99699,Lucy (2003),Comedy|Drama +99706,"Hollywood Complex, The (2011)",Documentary +99708,"Shunning, The (2011)",Drama +99717,She Had to Say Yes (1933),Drama +99721,Texas Chainsaw 3D (2013),Horror|Mystery|Thriller +99724,K-11 (2012),Crime|Drama +99726,Ex-Girlfriends (2012),Comedy|Drama +99728,Gangster Squad (2013),Action|Crime|Drama +99731,Dabangg 2 (2012),Action|Comedy|Drama|Musical|Romance +99733,"Marsh, The (2006)",Horror|Thriller +99735,Road to Redemption (2001),Comedy|Drama +99737,"Climb, The (2002)",Action|Adventure|Drama +99739,"Warrior and the Sorceress, The (1984)",Action|Adventure|Fantasy|Sci-Fi +99741,"Company You Keep, The (2012)",Thriller +99744,"Trouble with Bliss, The (2011)",Comedy|Drama +99746,"Samaritan, The (2012)",Drama|Thriller +99750,"Iceman, The (2012)",Crime|Drama|Thriller +99758,T.N.T. (1997),Action +99760,Secrets of the Tribe (2010),Documentary +99764,It's Such a Beautiful Day (2012),Animation|Comedy|Drama|Fantasy|Sci-Fi +99768,Kiss the Bride (2007),Comedy|Romance +99787,"Haunted House, A (2013)",Comedy|Horror +99792,Painted Lady (1997),Crime|Drama|Thriller +99795,Whores' Glory (2011),Documentary +99798,Somewhere in Palilula (Undeva la Palilula) (2012),Drama +99807,Planet of Snail (2011),Documentary|Drama +99809,"Waiting Room, The (2012)",Documentary +99811,Beware of Mr. Baker (2012),Documentary +99815,Alphabet City (1984),Crime|Drama|Thriller +99820,Pokémon the Movie: Black - Victini and Reshiram (2011),Animation +99822,Pokémon the Movie: White - Victini and Zekrom (2011),Animation +99826,Cleanflix (2009),Crime|Documentary +99839,Paul Williams Still Alive (2011),Comedy|Documentary|Musical +99841,Sister (L'enfant d'en haut) (2012),Crime|Drama +99843,Mea Maxima Culpa: Silence in the House of God (2012),Documentary +99846,Everything or Nothing: The Untold Story of 007 (2012),Documentary +99848,It's About You (2010),Documentary +99850,Grayeagle (1977),Adventure|Drama|Romance|Western +99853,Codependent Lesbian Space Alien Seeks Same (2011),Comedy|Romance|Sci-Fi +99855,"World's Greatest Athlete, The (1973)",Comedy|Romance +99866,Cargo (2011),Drama|Thriller +99889,Diana Vreeland: The Eye Has to Travel (2011),Documentary +99893,Sangre de mi sangre (Padre Nuestro) (2007),Drama|Thriller +99895,Milarepa (2006),Action|Adventure|Drama +99899,Marked for Murder (1993) ,Action|Drama +99901,O Panishyros Megistanas Ton Ninja (2008),Action|Comedy|Sci-Fi +99904,Morgan Pålsson - världsreporter (2008),Action|Comedy +99906,Renoir (2012),Drama|Romance +99910,"Last Stand, The (2013)",Action|Crime|Thriller +99912,Mama (2013),Horror +99915,"Candidate, The (Kandidaten) (2008)",Thriller +99917,Upstream Color (2013),Romance|Sci-Fi|Thriller +99919,Fast Life (1932),Comedy|Romance +99922,Careless Love (2012),Drama +99925,Special When Lit (2009),Documentary +99933,"Year of the Tiger, The (Año del tigre, El) (2011)",Drama +99939,Preston Sturges: The Rise and Fall of an American Dreamer (1990),Documentary +99941,Double Indemnity (1973),Crime|Drama|Thriller +99946,London After Midnight (2002),Drama|Horror +99957,Broken City (2013),Crime|Drama|Thriller +99960,Nursery University (2008),Documentary +99962,"Counterfeit Coin, The (Istoria mias kalpikis liras) (1955)",Comedy|Drama|Film-Noir|Romance +99964,Nameless Gangster (Bumchoiwaui junjaeng) (2012),Crime|Thriller +99968,Ginger & Rosa (2012),Drama +99970,First Shot (2002),Action +99986,Marina Abramovic: The Artist Is Present (2012),Documentary +99989,Bonsái (2011),Drama +99992,Shadow Dancer (2012),Crime|Drama|Thriller +99996,It's a Disaster (2012),Comedy|Drama +99999,Texas Across the River (1966),Comedy|Western +100001,"Comic, The (1969)",Comedy|Drama +100003,Up in Smoke (1957),Comedy +100008,"Flaw, The (2011)",Documentary +100015,Chicago Massacre: Richard Speck (2007),Crime|Drama|Thriller +100017,Keep the Lights On (2012),Drama +100032,Beauty Is Embarrassing (2012),Documentary +100034,Girl Model (2011),Documentary +100036,Crossfire Hurricane (2012),Documentary|Musical +100038,Middle of Nowhere (2012),Drama|Romance +100040,True Blue (2001) ,Crime|Drama|Thriller +100042,"Guns of Fort Petticoat, The (1957)",War|Western +100044,Human Planet (2011),Documentary +100046,Madagascar (2011),Documentary +100048,Omar Killed Me (Omar m'a tuer) (2011),Crime|Drama +100052,Red Hook Summer (2012),Drama +100054,Stella Maris (1918),Drama +100056,Die (2010),Thriller +100058,Patrice O'Neal: Elephant in the Room (2011),Comedy +100060,Sunny (Sseo-ni) (2011),Drama +100062,My Way (Mai Wei) (2011),Action|Drama|War +100070,Punching the Clown (2009),Comedy +100072,Metsän tarina (2012),Documentary +100075,Choose (2010),Crime|Drama|Horror +100077,Made in Hong Kong (Xiang Gang zhi zao) (1997),Crime|Drama|Romance +100079,Creature from Black Lake (1976) ,Drama|Horror|Mystery +100081,Bad Luck (Zezowate szczescie) (1960),Comedy +100083,Movie 43 (2013),Comedy +100087,Night of the Demons 2 (1994),Horror +100091,Hitler's Madman (1943),Drama|War +100096,Black White + Gray: A Portrait of Sam Wagstaff and Robert Mapplethorpe (2007) ,Documentary +100099,Pictures of the Old World (Obrazy starého sveta) (1972),Documentary +100101,Jean Gentil (2010),Drama +100103,Day and Night (Le jour et la nuit) (1997),Drama +100106,"Pervert's Guide to Ideology, The (2012)",Documentary +100108,Parker (2013),Crime|Thriller +100131,We the Party (2012),Comedy +100138,"Simple Life, A (Tao jie) (2011)",Drama +100143,"End of Love, The (2012)",Drama +100145,Palms (Ladoni) (1994),Documentary +100150,"Color Wheel, The (2011)",Comedy|Romance +100155,"Green Wave, The (2010)",Documentary +100157,Gayby (2012),Comedy|Drama +100159,Sightseers (2012),Comedy +100161,Oppai Volleyball (Oppai barê) (2009),Comedy +100163,Hansel & Gretel: Witch Hunters (2013),Action|Fantasy|Horror|IMAX +100167,Murder by Proxy: How America Went Postal (2010),Documentary +100169,After Porn Ends (2010),Documentary +100171,"Angélique, marquise des anges (1964)",Adventure|Romance +100173,Stonehenge Apocalypse (2010),Sci-Fi +100180,"Last Godfather, The (2010)",Comedy +100183,Portrait of Wally (2012),Documentary +100185,Starlet (2012),Drama +100194,Jim Jefferies: Fully Functional (EPIX) (2012),Comedy +100196,Tom Petty and the Heartbreakers: Runnin' Down a Dream (2007),Documentary|Musical +100198,"Ah of Life, The (2010)",Drama|Romance|Sci-Fi +100200,Churchill: The Hollywood Years (2004),Comedy|War +100203,Sundome (2007),Comedy|Drama|Romance +100205,Godzilla vs. Gigan (Chikyû kogeki meirei: Gojira tai Gaigan) (1972),Action|Adventure|Horror +100210,"Wild Horse, Wild Ride (2011)",Documentary|Western +100229,"Psychopath, The (1966)",Horror|Mystery +100232,"Not with My Wife, You Don't! (1966)",Comedy|Drama +100238,"Big Picture, The (L'homme qui voulait vivre sa vie) (2010)",Drama +100240,"Woman's Face, A (En kvinnas ansikte) (1938) ",Drama +100244,"East, The (2013)",Drama +100246,Pretty Sweet (2012),Documentary +100248,Lo (2009),Comedy|Horror|Romance +100251,"House of Seven Corpses, The (1974)",Horror +100253,Karlsson Brothers (Bröderna Karlsson) (2010),Comedy|Drama +100255,Confessions of a Driving Instructor (1976),Comedy +100257,Confessions from a Holiday Camp (1977),Comedy +100259,Kilometre Zero (Kilomètre zéro) (2005),Drama|War +100264,Paziraie Sadeh (2012),Drama +100270,Love Loves Coincidences (2011),Drama|Romance +100272,Snow White (Blancanieves) (2012),Drama +100275,Return (2011),Drama +100277,Tabu (2012),Drama|Romance +100287,Head Games (2012),Documentary +100289,"Pink Ribbons, Inc. (2011)",Documentary +100291,Ballplayer: Pelotero (2011),Documentary|Drama +100294,Désiré (1992),Comedy +100302,Upside Down (2012),Drama|Romance|Sci-Fi +100304,"Liability, The (2012)",Action|Thriller +100308,Pressure Point (1962),Drama +100315,2 Become 1 (Tin sun yut dui) (2006),Comedy|Drama|Romance +100322,"Baytown Outlaws, The (2012)",Action|Comedy|Crime +100324,LUV (2012),Drama +100326,Stand Up Guys (2012),Comedy|Crime +100328,Le grand soir (2012),Comedy +100330,Kukuli (1961),Drama +100334,Chouga (Shuga) (2007),Drama +100336,Udaan (2010),Drama +100338,"Life Apart: Hasidism in America, A (1997)",Documentary +100344,No (2012),Drama +100347,Finding Joy (2013),Comedy +100359,"Haunting in Connecticut 2: Ghosts of Georgia, The (2013)",Drama|Horror|Thriller +100361,"Adonis Factor, The (2010)",Documentary +100365,Call Me Kuchu (2012),Documentary +100368,No Man of Her Own (1950) ,Drama|Film-Noir +100370,Prinsessa (Starring Maja) (2009),Drama +100372,Miss Kicki (2009),Drama +100383,Side Effects (2013),Crime|Drama|Mystery|Thriller +100385,Midnight's Children (2012),Drama +100387,Kadal (2013),Drama|Romance +100390,Identity Thief (2013),Comedy|Crime +100395,Shadow People (2007),Drama +100397,"ABCs of Death, The (2012)",Horror +100401,21 tapaa pilata avioliitto (2013),Comedy|Romance +100404,Rainy Dog (Gokudô kuroshakai) (1997),Crime|Drama +100406,Perkele! Kuvia Suomesta (1971),Documentary +100411,"Foreigner, The (1978)",Drama +100415,Days and Hours (Kod amidze Idriza) (2004),Drama +100419,Assault of the Sasquatch (Sasquatch Assault) (2009),Action|Horror +100421,Dancing in the Rain (Ples v dezju) (1961),Drama +100423,"Rage, The (2007)",Horror|Sci-Fi +100426,"Bang Bang Club, The (2010)",Drama +100436,"Gatekeepers, The (2012)",Documentary +100438,"Glimpse Inside the Mind of Charles Swan III, A (2012)",Comedy +100440,Lore (2012),Drama|Thriller|War +100442,Drogówka (2013),Comedy|Crime|Drama +100444,"Rumble in the Air-Conditioned Auditorium: O'Reilly vs. Stewart 2012, The (2012)",Comedy +100446,Sasquatch: The Legend of Bigfoot (1977),Adventure|Mystery +100448,Right America: Feeling Wronged - Some Voices from the Campaign Trail (2009) ,Documentary +100457,Game of Death (2010),Action|Adventure|Thriller +100463,Quackser Fortune Has a Cousin in the Bronx (1970),Comedy|Drama|Romance +100465,Can Heironymus Merkin Ever Forget Mercy Humppe and Find True Happiness? (1969),Comedy|Musical +100467,"Pink Jungle, The (1968)",Action|Adventure|Comedy|Romance +100469,Chinese Zodiac (Armour of God III) (CZ12) (2012),Action|Adventure|IMAX +100483,"Playroom, The (2012)",Drama +100485,Unfinished Song (Song for Marion) (2012),Comedy|Drama|Romance +100487,Beautiful Creatures (2013),Drama|Fantasy|Romance +100490,Living Free (1972),Adventure|Children|Drama +100492,Ten Tall Men (1951),Action|Adventure|Comedy|War +100496,Knucklehead (2010),Comedy|Drama +100498,"Good Day to Die Hard, A (2013)",Action|Crime|Thriller|IMAX +100503,I Thank a Fool (1962),Drama +100505,Monte Walsh (2003),Action|Adventure|Western +100507,21 and Over (2013),Comedy +100509,Tale of Tales (Skazka skazok) (1979),Animation +100511,"House Is Black, The (1963)",Documentary +100513,Mothlight (1963),Documentary +100515,War Witch (Rebelle) (2012),Drama|War +100517,"World Before Her, The (2012)",Documentary +100519,A.K.A. Don Bonus (1995),Documentary +100521,Who Killed Vincent Chin? (1987),Crime|Documentary +100527,Safe Haven (2013),Drama|Mystery|Romance +100529,Elles (2011),Drama +100534,In the Edges: The 'Grizzly Man' Session (2005) ,Documentary +100536,"Last Will of Dr. Mabuse, The (Testament du Dr. Mabuse, Le) (1933)",Crime|Horror|Mystery +100538,"Blue Angel, The (1930)",Drama|Musical +100540,Bronies: The Extremely Unexpected Adult Fans of My Little Pony (2012),Documentary +100556,"Act of Killing, The (2012)",Documentary +100559,"Match King, The (1932)",Drama +100562,"Goddess of 1967, The (2000)",Comedy|Drama|Romance +100567,PressPausePlay (2011),Documentary +100570,U.S. Seals (2000),Action|Thriller +100574,Raid on Rommel (1971),War +100577,"Angel Levine, The (1970)",Comedy|Drama +100579,Universal Soldier: Day of Reckoning (2012),Action|Sci-Fi|Thriller +100581,Room 237 (2012),Documentary +100583,Arnulf Rainer (1960),Documentary +100585,"Above the Street, Below the Water (Over gaden under vandet) (2009)",Drama +100588,Amazing Johnathan: Wrong on Every Level (2006),Comedy +100591,"Mind Reader, The (1933)",Drama|Romance +100593,Benji (2012) ,Documentary +100595,To.get.her (2011),Drama|Mystery|Thriller +100611,Escape from Planet Earth (2013),Adventure|Animation|Comedy|Sci-Fi +100613,Saving Lincoln (2013),Drama +100642,Sunday Lovers (1980),Comedy|Drama|Romance +100647,Helicopter String Quartet (1996),Documentary +100653,Salla: Selling the Silence (2010),Documentary +100655,"Cost of Oil: Voices from the Arctic, The (2009)",Documentary +100714,Before Midnight (2013),Drama|Romance +100717,"Oranges, The (2011)",Comedy|Drama|Romance +100719,Fake It So Real (2012),Documentary +100721,The Reincarnation of Isabel (1973),Horror +100725,Which Way Home (2009),Documentary +100727,Heroine (2012),Drama +100737,Snitch (2013),Action|Drama|Thriller +100739,Black on White (Mustaa valkoisella) (1968),Drama +100741,Sixtynine (69) (1969),Drama +100743,Eye In The Sky (Gun chung) (2007),Crime|Thriller +100745,TPB AFK: The Pirate Bay Away from Keyboard (2013),Documentary +100799,Living in Emergency: Stories of Doctors Without Borders (2008),Documentary +100810,Dark Skies (2013),Horror|Sci-Fi|Thriller +100823,Zig Zag (2002),Drama +100836,Empty Nest (El nido vacío) (2008),Comedy|Drama +100838,I Am Jesus (2011),Documentary +100843,Oh Boy (A Coffee in Berlin) (2012),Comedy|Drama +100882,Journey to the West: Conquering the Demons (Daai wa sai you chi Chui mo chun kei) (2013),Adventure|Comedy|Fantasy|Romance|IMAX +100884,Holy Wars (2010),Documentary +100904,Murder in Greenwich (2002),Crime|Drama|Mystery +100906,Maniac Cop 2 (1990),Action|Horror|Thriller +100942,Gunfighter's Moon (1997),Romance|Western +100944,"Movie, A (1958)",Documentary +100946,Fantomas (Fantômas - À l'ombre de la guillotine) (1913),Crime|Drama +100948,"Act of Seeing with One's Own Eyes, The (1971) ",Documentary +101003,"Look, Up in the Sky! The Amazing Story of Superman (2006)",Documentary +101006,"Aral, Fishing in an Invisible Sea (2004)",Documentary +101016,"Suitor, The (Soupirant, Le) (1962)",Comedy +101018,Yo Yo (Yoyo) (1965),Comedy|Drama|Romance +101022,Dark Intruder (1965),Horror|Mystery +101025,Jack the Giant Slayer (2013),Adventure|Fantasy|IMAX +101058,East Meets West (Dung sing sai tsau 2011) (2011),Comedy +101060,"Last Exorcism Part II, The (2013)",Horror|Thriller +101062,Lenny Bruce: Swear to Tell the Truth (1998),Documentary +101064,Verboten! (1959),Action|Romance|War +101068,"Solitude of Prime Numbers, The (2010)",Drama +101070,Wadjda (2012),Drama +101072,"Unintentional Kidnapping of Mrs. Elfriede Ott, The (Die Unabsichtliche Entführung der Frau Elfriede Ott) (2010)",Comedy +101074,"Legend of Sleepy Hollow, The (1949)",Animation|Comedy|Horror|Musical +101076,G.I. Joe: Retaliation (2013),Action|Adventure|Sci-Fi|Thriller|IMAX +101079,Kiss Me (Kyss Mig) (2011),Drama|Romance +101086,My Name is Juani (Yo soy la Juani) (2006),Comedy|Drama +101088,Stoker (2013),Drama|Mystery|Thriller +101097,Phantom (2013),Thriller +101104,"Grand Amour, Le (1969)",Comedy|Romance +101106,Sound City (2013),Documentary +101112,Oz the Great and Powerful (2013),Action|Adventure|Fantasy|IMAX +101123,Satan's Blood (Escalofrío) (1978),Horror +101127,Tripping the Rift: The Movie (2008),Animation|Comedy|Sci-Fi +101133,Fog City Mavericks (2007),Documentary +101137,Dead Man Down (2013),Action|Crime|Drama|Romance|Thriller +101142,"Croods, The (2013)",Adventure|Animation|Comedy +101156,This Movie Is Broken (2010),Drama|Romance +101158,Life 2.0 (2010),Documentary +101160,Sons of Perdition (2010),Documentary +101162,Last Call at the Oasis (2011),Documentary +101168,Wieners (2008),Comedy +101170,"Borrowers, The (2011)",Adventure|Children|Fantasy +101176,First Person Plural (2000),Documentary +101178,First Target (2000),Action +101180,Age of the Dragons (2011),Action|Adventure|Fantasy +101186,Populaire (2012),Comedy +101188,Central Park (1990),Documentary +101197,"Inheritance, The (Karami-ai) (1964)",Drama +101200,"Hello, Friend (2003)",Comedy|Horror +101204,"Hucksters, The (1947)",Drama +101207,Emperor (2012),Drama|War +101210,"Silence, The (Das letzte Schweigen) (2010)",Crime|Drama|Thriller +101212,"Girl, The (2012)",Drama +101214,Genghis Khan (1965),Adventure|Drama|War +101216,Shadow Boxers (1999),Documentary +101218,Leviathan (2012),Documentary +101220,Burn (2012),Documentary +101222,Elevator (2011) ,Thriller +101224,3some (Castillos de cartón) (2009),Drama|Romance +101226,Accomplices (Complices) (2009),Crime|Mystery +101229,May the Best Man Win (2009),Comedy +101233,"Glass Menagerie, The (1950)",Drama +101235,"Great Gatsby, The (1949)",Drama +101237,9500 Liberty (2009),Documentary +101239,Wild Guitar (1962),Drama|Musical|Romance +101241,"Sadist, The (1963)",Thriller +101243,Klip (Clip) (2012),Drama|Romance +101245,Herman's House (2012),Crime|Documentary +101247,Westward the Women (1951),Drama|Western +101249,"Thousand Cuts, A (2012)",Thriller +101258,Radio Rebel (2010),Drama +101260,StarStruck (2010),Comedy|Musical +101262,Geek Charming (2011),Comedy +101264,Elevator (2008),Comedy|Drama +101273,In Their Skin (2012),Horror|Thriller +101281,I Give It a Year (2013),Comedy|Romance +101283,"Incredible Burt Wonderstone, The (2013)",Comedy +101285,Spring Breakers (2013),Comedy|Crime|Drama +101287,"Red Spectacles, The (Jigoku no banken: akai megane) (1987)",Comedy|Drama|Sci-Fi +101289,Stray Dog: Kerberos Panzer Cops (Jigoku no banken: kerubersu) (1991),Comedy|Drama|Sci-Fi +101294,Shanghai Calling (2012),Comedy|Drama|Romance +101296,I'm So Excited (Los amantes pasajeros) (2013),Comedy +101299,"Finger, The (Dedo, El) (2011)",Comedy +101301,"Frozen, The (2012)",Horror|Thriller +101303,Amber Lake (2011) ,Drama|Thriller +101305,Unspeakable Acts (1990) ,Drama +101307,Árido Movie (2005),Drama +101319,Operation Daybreak (1975),War +101322,"Crossing, The (2000)",Drama|War +101329,Shining Night: A Portrait of Composer Morten Lauridsen (2012),Documentary +101335,Stolen Seas (2012),Adventure|Crime|Documentary +101337,"Snow Creature, The (1954)",Horror +101339,Snowbeast (1977),Horror +101341,"Atomic States of America, The (2012)",Documentary +101350,Miss Farkku-Suomi (2012),Drama|Romance +101352,I Am Comic (2010),Documentary +101355,Outlaw of Gor (1988),Action|Fantasy|Sci-Fi +101360,"Call, The (2013)",Drama|Thriller +101362,Olympus Has Fallen (2013),Action|Thriller +101371,Soulkeeper (2001),Action|Adventure|Comedy|Fantasy|Horror|Sci-Fi +101373,"Wayward Bus, The (1957)",Drama +101375,Where Are My Children? (1916),Drama +101379,InAPPropriate Comedy (2013),Comedy +101381,Gregory Crewdson: Brief Encounters (2012),Documentary|Drama +101383,Blood Games (1990) ,Action|Thriller +101388,"Colder Kind of Death, A (2001)",Crime|Drama|Mystery +101400,Abraham Lincoln (1930),Drama|War +101402,Riders of the Purple Sage (1996),Drama|Romance|Western +101405,Steep (2007),Documentary +101409,Los Marziano (2011),Comedy|Drama +101413,My Brother the Devil (2012),Drama +101415,"First Time, The (2012)",Comedy|Drama|Romance +101425,Company (2011),Drama|Musical +101428,Kill for Me (2013),Drama|Thriller +101431,"Christine Jorgensen Story, The (1970)",Drama +101433,Moving Out (1983),Drama +101444,Big Bang in Tunguska (Das Rätsel von Tunguska) (2008),Documentary +101446,"Big Circus, The (1959)",Drama +101448,My Last Five Girlfriends (2009),Comedy +101450,"Kiss, The (1929)",Drama|Romance +101456,Trailer Park of Terror (2008),Horror|Thriller +101458,"Task, The (2011)",Horror +101466,2:22 (2008),Crime|Drama|Thriller +101470,Miguel and William (Miguel y William) (2007),Comedy|Romance +101472,"Brussels Business, The (2012)",Documentary|Thriller +101476,Big Girls Don't Cry... They Get Even (Stepkids) (1992),Comedy +101481,"Substitute, The (1993)",Drama|Thriller +101485,Upperworld (1934),Drama +101487,Storage (2009),Thriller +101489,Assassin's Bullet (Sofia) (2012),Action|Drama|Thriller +101498,In the House (2012),Comedy|Drama|Mystery|Thriller +101505,30 Beats (2012),Comedy|Romance +101510,Nazty Nuisance (1943),Action|Adventure|Comedy +101525,"Place Beyond the Pines, The (2012)",Crime|Drama +101527,Into the White (Cross of Honour) (2012),Action|Drama|War +101529,"Brass Teapot, The (2012)",Comedy|Fantasy|Thriller +101531,Phil Spector (2013),Drama +101534,For the Love of a Dog (2008),Children +101536,Alabama Moon (2009),Adventure|Children|Drama +101577,"Host, The (2013)",Action|Adventure|Romance +101579,Ocean Heaven (2010) ,Drama +101581,Angel Dog (2011),Children|Drama +101583,"Best and the Brightest, The (2010)",Comedy +101585,Two Little Boys (2012),Comedy +101590,"Beautiful Life, A (2008)",Drama +101592,"Bird of the Air, A (Loop, The) (2011)",Drama|Romance +101595,"Breed Apart, A (1984)",Action|Drama +101597,"Bag of Hammers, A (2011)",Comedy|Drama +101599,"Good Doctor, The (2011)",Drama|Mystery|Thriller +101606,"Whale, The (2011)",Documentary +101612,Admission (2013),Comedy|Romance +101614,Riverworld (2010),Drama|Sci-Fi +101627,Confidential Agent (1945),Drama|Thriller +101629,"King - Jari Litmanen, The (Kuningas Litmanen) (2012)",Documentary +101636,"Man Called Gannon, A (1968)",Western +101640,Don (2006),Action|Crime|Musical +101642,"Bunch Of Amateurs, A (2008)",Comedy +101646,Night Across the Street (La noche de enfrente) (2012),Drama +101648,"Flat, The (2011)",Documentary +101650,Patience (After Sebald) (2012),Documentary +101653,Magadheera (2009),Action|Adventure|Fantasy|Romance +101662,Three Way (2004),Crime|Drama|Thriller +101664,Hey Ram (2000),Drama +101666,"Night in Heaven, A (1983)",Drama|Romance +101670,'Twas the Night Before Christmas (1974),Animation|Children|Fantasy +101674,Horror of the Zombies (1974),Horror +101680,Copper Mountain (1983),Comedy|Musical +101682,David (1988),Drama +101685,One Life (2011),Documentary +101687,Blue Caprice (2013),Crime|Drama +101689,Bad 25 (2012),Documentary +101692,Besa (Solemn Promise) (2009),Drama|Romance|War +101695,Hadersfild (Huddersfield) (2007),Drama +101703,Underground: The Julian Assange Story (2012),Drama +101706,Lush Life (1993),Drama|Musical +101708,009 Re: Cyborg (2012),Action|Animation|Sci-Fi +101710,Ace Attorney (Gyakuten saiban) (2012),Comedy|Crime|Drama +101715,Loaded (2008),Action|Crime|Drama|Thriller +101717,"Elusive Summer of '68, The (Varljivo leto '68) (1984)",Comedy|Drama|Romance +101719,Koi... Mil Gaya (2003),Action|Adventure|Fantasy|Sci-Fi +101726,Dinosaurus! (1960),Adventure|Comedy +101728,Miss Castaway and the Island Girls (2004),Adventure|Comedy|Fantasy +101730,Business as Usual (1988),Drama +101732,Thank God He Met Lizzie (1997),Comedy|Drama|Romance +101734,"Rough House, The (1917)",Comedy +101739,Evil Dead (2013),Horror +101741,Trance (2013),Crime|Thriller +101747,"War of the Gargantuas, The (Furankenshutain no kaijû: Sanda tai Gaira) (1968)",Horror|Sci-Fi +101749,"Machine That Kills Bad People, The (La Macchina Ammazzacattivi) (1952)",Comedy|Fantasy +101754,Chasing Beauty (2013),Documentary +101756,Killing Bono (2011),Comedy +101761,Welcome to the Punch (2013),Action|Adventure|Crime|Thriller +101763,My Awkward Sexual Adventure (2012),Comedy +101765,"Perfect Plan, A (Plan parfait, Un) (2012)",Adventure|Comedy|Romance +101767,"Familie, En (2010)",Drama +101770,Papadopoulos & Sons (2012),Comedy|Drama +101782,Better This World (2011),Documentary +101794,"Stone's Throw Away, A (A tiro de piedra) (2010)",Adventure +101799,Americano (2005),Adventure|Comedy|Documentary +101801,"Skylab, Le (2011)",Comedy|Drama +101803,Putzel (2012),Comedy|Romance +101812,"Mountain, The (1956)",Adventure|Drama +101820,"Fighting Prince of Donegal, The (1966)",Action|Adventure +101823,Poor White Trash (2000),Comedy|Crime +101825,Year of the Jellyfish (L'année des méduses) (1984),Drama +101827,Don't Make Waves (1967),Comedy +101829,"King of Texas, The (2008)",Documentary +101833,About Face: Supermodels Then and Now (2012),Comedy|Documentary +101835,According to Spencer (2001),Comedy|Drama|Romance +101844,Hitler's Stealth Fighter (2009),Documentary +101846,One Lucky Elephant (2010),Documentary +101848,Racing Dreams (2009),Documentary +101850,Death on the Staircase (Soupçons) (2004),Crime|Documentary +101855,Shepard & Dark (2012),Documentary +101857,Teenage Paparazzo (2010),Documentary +101862,50 Children: The Rescue Mission of Mr. And Mrs. Kraus (2013),Documentary +101864,Oblivion (2013),Action|Adventure|Sci-Fi|IMAX +101872,"Fourth State, The (Die vierte Macht) (2012)",Thriller +101878,God's Puzzle (Kamisama no pazuru) (2008),Drama|Sci-Fi +101880,Siberian Education (Educazione siberiana) (2013),Drama +101884,Dark Tide (2012),Adventure|Drama|Thriller +101887,Bernice Bobs Her Hair (1976),Comedy|Drama +101891,Bones Brigade: An Autobiography (2012),Documentary +101893,To the Wonder (2013),Drama|Romance +101895,42 (2013),Drama +101897,"Prodigal Son, The (Tuhlaajapoika) (1992)",Thriller +101902,Ladybug Ladybug (1963) ,Drama +101904,Happy (2011),Documentary|Drama +101916,"Castle of Cloads, The (Pilvilinna) (1970)",Comedy|Drama +101918,Bhutto (2010),Documentary +101920,Black Rose Ascension (Kurobara shôten) (1975),Drama +101935,"Lawless Street, A (Marshal of Medicine Bend) (1955)",Western +101938,Across the Wide Missouri (1951),Adventure|Romance|Western +101940,Seeking Asian Female (2012),Documentary +101942,Love Is All You Need (Den skaldede frisør) (2012),Comedy|Drama|Romance +101944,Downeast (2012),Documentary +101947,From the Sky Down (2011),Documentary +101950,Adventure for Two (1943),Comedy|Drama|Romance|War +101954,Alex in Wonderland (1970),Comedy|Drama +101957,Carne de gallina (Chicken Skin) (2002),Comedy +101962,Wolf Children (Okami kodomo no ame to yuki) (2012),Animation|Fantasy +101964,Mugabe and the White African (2009),Documentary +101967,Battle in Outer Space (1959),Adventure|Sci-Fi +101969,Tesla: Master of Lightning (2000),Documentary +101971,Never Sleep Again: The Elm Street Legacy (2010),Documentary +101973,Disconnect (2012),Drama|Thriller +101975,iSteve (2013),Comedy +101979,All American Orgy (Cummings Farm) (2009),Comedy +101986,"Eternal Return, The (L'éternel retour) (1943)",Drama|Romance +101989,Konga (1961),Horror|Sci-Fi +101991,"H-Man, The (Bijo to Ekitainingen) (1958)",Horror|Mystery|Sci-Fi|Thriller +101997,Scary Movie 5 (Scary MoVie) (2013),Comedy +101999,Last Cowboy Standing (Skavabölen pojat) (2009),Drama +102005,Like Someone In Love (2012),Drama +102012,Before Your Eyes (Min Dit: The Children of Diyarbakir) (2009),Drama +102025,Yongary: Monster from the Deep (1967),Children|Horror|Sci-Fi +102028,To the Arctic (2012),Documentary|IMAX +102033,Pain & Gain (2013),Action|Comedy|Crime +102035,"Holding, The (2011)",Horror|Thriller +102037,Breaking Wind (2011),Comedy +102039,"Taming of the Shrew, The (1980)",Comedy +102047,"Bride Came C.O.D., The (1941)",Comedy|Romance +102049,Mexican Hayride (1948),Comedy +102062,"Band Called Death, A (2012)",Documentary +102064,Home Run (2013),Drama +102066,Resolution (2012),Horror|Thriller +102070,Grabbers (2012),Comedy|Horror|Sci-Fi +102072,"Erased (Expatriate, The) (2012)",Action|Thriller +102080,All She Can (Benavides Born) (2011),Drama +102082,Always in My Heart (1942),Drama|Musical +102088,"Grandmaster, The (Yi dai zong shi) (2013)",Action|Drama|IMAX +102090,"Magnetic Monster, The (1953)",Sci-Fi +102093,After Office Hours (1935),Comedy|Crime|Drama +102109,Polly of the Circus (1932),Comedy|Drama|Fantasy +102111,Going to Pieces: The Rise and Fall of the Slasher Film (2006),Documentary +102113,One-Eyed Monster (2008),Comedy|Horror|Sci-Fi +102115,Prinsessa Ruusunen (1949),Children|Fantasy|Romance +102119,Yesterday Was a Lie (2008),Drama|Film-Noir|Mystery|Romance|Sci-Fi +102123,This Is the End (2013),Action|Comedy +102125,Iron Man 3 (2013),Action|Sci-Fi|Thriller|IMAX +102131,Valentino (1977),Drama +102133,Revolution (2012),Adventure|Documentary +102135,Sadda Haq (2013),Action +102138,"Black Camel, The (Charlie Chan in the Black Camel) (1931)",Crime|Drama|Horror|Mystery|Thriller +102150,"Angel from Texas, An (1940)",Comedy|Romance +102152,Middle of Nowhere (2008),Comedy|Drama +102156,Zombies of the Stratosphere (1952),Adventure|Sci-Fi|Thriller +102158,Three Degrees Colder (3° kälter) (2005),Drama|Romance +102160,"Numbers Station, The (2013)",Action|Thriller +102171,Late Autumn (Man-choo) (2010),Drama|Romance +102174,Day of the Falcon (2011),Adventure|Drama +102176,"Late Great Planet Earth, The (1979)",Documentary|Drama +102178,"Better Way to Die, A (2000)",Action|Thriller +102180,Casanova's Big Night (1954),Adventure|Comedy +102188,Tunnel Rats (1968 Tunnel Rats) (2008),Action|Drama|War +102192,"Successful Calamity, A (1932)",Comedy|Drama +102194,Mud (2012),Adventure|Crime|Drama +102199,Chariots of the Gods (Erinnerungen an die Zukunft) (1970),Documentary +102213,"Tenth Man, The (1988)",Drama|War +102219,Perils of the Sentimental Swordsman (1982),Action|Adventure|Fantasy +102233,"Verlorene, Der (Lost One, The) (1951)",Crime|Drama|Thriller +102235,Manhunt (2013),Documentary|War +102245,Small Apartments (2012),Comedy|Crime|Drama +102248,Holy Flame of the Martial World (1983),Adventure|Comedy|Fantasy +102263,Ju-on: White Ghost (2009),Horror +102273,Cold Steel (1987),Action|Thriller +102275,"Afflicted, The (2010)",Horror|Thriller +102286,Family Weekend (2013),Comedy|Drama +102292,Sergeant Dead Head (1965),Comedy|Musical +102294,"Scapegoat, The (2012)",Drama +102297,8:46 (2011),Drama +102303,Hardboiled Egg (Ovosodo) (1997),Comedy|Drama +102323,"Grin Without a Cat, A (Fond de l'air est rouge, Le) (1977)",Documentary +102325,Number Two (Numéro deux) (1975),Drama +102327,Empire (1964),Documentary +102354,About Cherry (2012),Drama +102356,Sushi Girl (2012),Crime|Mystery|Thriller +102373,"Tomorrow, the World! (1944)",Drama +102378,Syrup (2013),Comedy|Drama +102388,"Candy Snatchers, The (1973)",Crime|Thriller +102396,"Woman in the Fifth, The (Femme du Vème, La) (2011)",Drama|Mystery|Thriller +102399,Dangerous Corner (1934),Mystery +102403,"Intruder, The (1999)",Drama|Mystery|Romance|Thriller +102407,"Great Gatsby, The (2013)",Drama +102411,Hurt (2009),Drama|Horror|Thriller +102413,How Much Wood Would a Woodchuck Chuck (Beobachtungen zu einer neuen Sprache) (1976),Documentary +102415,Hyenas (Hyènes) (1992),Comedy|Drama +102417,Sicily! (Sicilia!) (1999),Drama +102419,Lesson Plan (2011) ,Documentary +102421,Seven Billiard Tables (Siete mesas de billar francés) (2007),Drama +102425,Lady Terminator (Pembalasan ratu pantai selatan) (1989),Action|Adventure|Horror|Sci-Fi|Thriller +102429,"Little Thief, The (La petite voleuse) (1988)",Crime|Drama|Romance +102432,"Blueprint for Murder, A (1953)",Film-Noir|Mystery|Thriller +102436,"Affair of the Heart, An (2012)",Documentary +102445,Star Trek Into Darkness (2013),Action|Adventure|Sci-Fi|IMAX +102450,"Last Chance: Diary of Comedians, The (Bokutachi no koukan nikki) (2013)",Comedy|Drama +102456,"American Romance, An (1944)",Drama +102469,Wish You Were Here (2012),Drama|Mystery +102481,"Internship, The (2013)",Comedy +102483,Bliss (Mutluluk) (2007),Drama +102485,La Soufrière - Warten auf eine unausweichliche Katastrophe (1977),Documentary +102487,"Man with a Cloak, The (1951)",Drama|Thriller +102495,Spine Tingler! The William Castle Story (2007),Documentary +102499,"Flaying, The (El Bosque de los Sometidos) (2012)",Fantasy|Horror|Thriller +102509,"Secret Six, The (1931)",Crime +102514,"Corsican File, The (L'enquête corse) (2004)",Action|Comedy|Crime +102517,Zatoichi Meets Yojimbo (Zatôichi to Yôjinbô) (Zatôichi 20) (1970),Action|Adventure|Drama +102521,Deep in the Valley (American Hot Babes) (2009),Comedy +102523,To Be King (Koning van Katoren) (2012),Adventure +102526,Tokyo Trial (Tokyo saiban) (1983),Documentary +102529,"Harvest: 3,000 Years (Mirt Sost Shi Amit) (1976)",Drama +102535,Sissi: The Young Empress (Sissi - Die Junge Kaiserin) (1956),Drama +102544,Below the Belt (1980),Action|Comedy|Drama +102557,Kiss of the Damned (2012),Horror|Romance|Thriller +102588,Stories We Tell (2012),Documentary +102590,Darkon (2006),Documentary|Fantasy +102596,180° South (180 Degrees South) (180° South: Conquerors of the Useless) (2010),Documentary|Drama +102602,Mimino (1977),Comedy +102604,"Jeffrey Dahmer Files, The (2012)",Crime|Documentary +102606,Drowsiness (Sennosc) (2008),Drama +102662,Company of Heroes (2013),Action|War +102664,Three Smart Girls Grow Up (1939),Comedy|Musical|Romance +102666,Ivan Vasilievich: Back to the Future (Ivan Vasilievich menyaet professiyu) (1973),Adventure|Comedy +102672,New York: A Documentary Film (1999),Documentary +102675,"Dead Man and Being Happy, The (El muerto y ser feliz) (2012)",Drama +102677,"Players, The (Les infidèles) (2012)",Comedy +102682,Livid (Livide) (2011),Fantasy|Horror +102684,Only God Forgives (2013),Drama|Thriller +102686,"Hangover Part III, The (2013)",Comedy +102688,Garbo the Spy (Garbo: El espía) (2009),Documentary|War +102716,"Fast & Furious 6 (Fast and the Furious 6, The) (2013)",Action|Crime|Thriller|IMAX +102720,Epic (2013),Adventure|Animation|Fantasy +102742,Tie Xi Qu: West of the Tracks (Tiexi qu) (2003),Documentary +102744,Night at the Crossroads (La nuit du carrefour) (1932),Crime|Drama|Mystery +102747,"Rink, The (1916)",Comedy +102751,Bastards of the Party (2005),Documentary +102753,"Past, The (Le passé) (2013)",Drama|Mystery|Romance +102760,Down Terrace (2009),Comedy|Crime|Drama +102765,Bush Mama (1979),Drama +102777,"Surrender, Dorothy (2006)",Drama +102779,"Twonky, The (1953)",Comedy|Sci-Fi +102794,After School Midnighters (Hôkago middonaitâzu) (2012),Action|Animation|Children|Comedy|Fantasy +102796,Life Back Then (Antoki no inochi) (2011),Drama|Romance +102798,"Devil's Carnival, The (2012)",Horror|Musical +102800,Frances Ha (2012),Comedy|Drama +102804,Up Periscope (1959),Action|Drama|War +102807,Alive and Ticking (Ein Tick anders) (2011),Comedy|Drama +102817,Cell Count (2012),Horror|Sci-Fi +102819,Behind the Candelabra (2013),Drama +102821,India: Matri Bhumi (1959),Documentary|Drama +102823,As I Was Moving Ahead Occasionally I Saw Brief Glimpses of Beauty (2000),Documentary +102826,"Parade, The (Parada) (2011)",Comedy|Drama +102828,L.A. Zombie (2010),Horror +102830,Firecracker (2005),Crime|Drama|Mystery +102845,Babies for Sale (1940),Crime|Drama +102854,Aftershock (2012),Horror|Thriller +102856,3096 Days (2013),Drama +102860,Hilton! (2013),Documentary +102862,"Human Scale, The (2012)",Documentary +102868,Privilege (1967),Drama|Musical +102870,Little Girl (La pivellina) (2009),Drama +102876,Last Days Here (2011),Documentary +102878,"Global Affair, A (1964)",Comedy +102880,After Earth (2013),Action|Adventure|Sci-Fi|IMAX +102893,Act One (1963),Drama +102895,Fairhaven (2012),Drama +102899,Sharon's Baby (1975),Horror +102901,In the Park (1915),Comedy +102903,Now You See Me (2013),Crime|Mystery|Thriller +102905,Lovelace (2013),Drama +102908,"Dangerous Place, A (2012)",Thriller +102910,Modify (2005) ,Documentary +102912,Hiroshima (2005) ,Documentary +102917,War Made Easy: How Presidents & Pundits Keep Spinning Us to Death (2007),Documentary|War +102941,Special Forces (Forces spéciales) (2011),Action|Drama|War +102947,"Walk with Love and Death, A (1969)",Drama +102951,All In: The Poker Movie (2009),Documentary +102953,Nice Guy Johnny (2010),Comedy|Romance +102956,Take Me Home (2011),Comedy|Romance +102961,"Ideal Husband, An (1947)",Comedy +102963,Any Wednesday (Bachelor Girl Apartment) (1966),Comedy +102965,Attack on the Iron Coast (1968),Action|Drama|War +102967,"Combat dans L'Ile, Le (Fire and Ice) (1962)",Drama +102969,"Era of Vampires, The (2003)",Action|Horror +102972,"East, West, East: The Final Sprint (2009)",Comedy|Drama +102974,Somebody Up There Likes Me (2012),Comedy|Drama|Romance +102976,Dances Sacred and Profane (1985),Documentary +102980,Opera Jawa (2006),Musical +102986,Rapado (1992),Drama +102989,"Color of Friendship, The (2000)",Comedy|Drama +102991,Berberian Sound Studio (2012),Drama|Horror|Thriller +102993,"Way, Way Back, The (2013)",Comedy|Drama +102995,Foxfire (2012),Drama +102997,Vasermil (2007),Drama +103003,Whole (2003),Documentary +103006,Penthouse (1933),Comedy|Crime|Drama +103008,Come Out and Play (2012),Horror +103017,The Body (2012),Mystery|Thriller +103027,Much Ado About Nothing (2012),Comedy|Drama|Romance +103030,Any Day Now (2012),Drama +103036,No and Me (No et moi) (2010),Drama +103040,His New Profession (1914),Comedy +103042,Man of Steel (2013),Action|Adventure|Fantasy|Sci-Fi|IMAX +103044,Shanghaied (1915),Comedy +103048,"Kings of Summer, The (2013)",Comedy +103050,Pyaar Ka Punchnama (2011),Comedy|Drama|Romance +103052,London Paris New York (2012),Romance +103055,The Big Wedding (2013),Comedy +103057,Still Mine (2012),Drama +103059,Hannah Arendt (2012),Drama +103071,Bakhita (2009),Drama +103075,"Purge, The (2013)",Crime|Horror|Thriller +103078,"Neighbor, The (1993)",Horror|Thriller +103083,"Reluctant Fundamentalist, The (2012)",Drama +103085,Rapture-Palooza (2013),Comedy|Fantasy +103087,Landet som icke är (1977),Drama +103089,100 Years of Evil (2010),Adventure|Comedy|Documentary +103091,Speed: In Search of Lost Time (Speed - Auf der Suche nach der verlorenen Zeit) (2012),Documentary +103101,Après lui (2007),Drama +103103,"Witches, The (aka Devil's Own, The) (1966)",Horror +103105,Tetsuo III: The Bullet Man (2009),Action|Horror|Sci-Fi +103107,20 Feet from Stardom (Twenty Feet from Stardom) (2013),Documentary +103112,Perfumed Nightmare (1977),Comedy|Drama +103114,Far Out Man (1990),Comedy +103118,Bad Blood: A Cautionary Tale (2010) ,Documentary +103120,Beverly Hills Chihuahua 3 (2012),Adventure|Children|Comedy +103130,AM1200 (2008),Horror +103132,"Executioner, The (1970)",Drama|Thriller +103135,Looking for Palladin (2008),Comedy +103137,"Bling Ring, The (2013)",Crime|Drama +103139,"Mugger, The (El asaltante) (2007)",Drama +103141,Monsters University (2013),Adventure|Animation|Comedy +103162,"6 Month Rule (Six Month Rule, The) (2011)",Comedy +103171,Schlussmacher (2013),Comedy +103175,From the East (D'Est) (1993),Documentary +103177,Ill-Fated Love (Doomed Love) (Amor de Perdição) (1979),Drama|Romance +103180,"Reason, Debate and a Story (Jukti, Takko Aar Gappo) (1974)",Drama +103182,Julius Caesar (1979),Drama +103186,Wedding Trough (Vase de noces) (1975),Horror|Romance +103190,Oblivion Island: Haruka and the Magic Mirror (Hottarake no shima - Haruka to maho no kagami) (2009),Adventure|Animation|Fantasy +103203,Eden (2012),Crime|Drama +103206,Days of Grace (Días de gracia) (2011) ,Thriller +103208,"Place at the Table, A (2012)",Documentary +103210,Fullmetal Alchemist: The Sacred Star of Milos (2011),Action|Adventure|Animation +103219,Maniac (2012),Horror|Thriller +103221,Not Suitable for Children (2012),Comedy|Romance +103228,Pacific Rim (2013),Action|Adventure|Sci-Fi|IMAX +103237,Sassy Pants (2012),Comedy|Drama +103241,"Flea in Her Ear, A (1968)",Comedy +103243,Ada (1961),Drama +103245,Adam and Eve (National Lampoon's Adam & Eve) (2005),Comedy|Drama|Romance +103249,World War Z (2013),Action|Drama|Horror|IMAX +103253,Elysium (2013),Action|Drama|Sci-Fi|IMAX +103255,Dirty Wars (2013),Documentary|War +103259,K-911 (1999),Action|Comedy|Crime +103266,Mr. Moto's Gamble (1938),Crime|Drama|Mystery +103269,Unconditional (2012),Drama +103271,Sign 'o' the Times (1987),Documentary|Musical +103273,Just Before Dawn (1981),Horror +103275,We Steal Secrets: The Story of WikiLeaks (2013),Documentary +103279,What Maisie Knew (2012),Drama +103282,Dragon Hunter (2009),Action|Adventure|Fantasy +103286,Shark Alarm at Müggelsee (Hai Alarm am Müggelsee) (2013),Comedy +103288,"Revisionaries, The (2012)",Documentary +103290,"Anniversary, The (1968)",Comedy|Drama|Horror|Thriller +103292,"Purple Gang, The (1959)",Crime|Drama +103294,"Death of Maria Malibran, The (Der Tod der Maria Malibran) (1972)",Comedy|Drama|Fantasy|Musical +103296,Minamata: The Victims and Their World (Minamata: Kanja-san to sono sekai) (1971),Documentary +103299,American Mary (2012),Horror|Thriller +103301,Liz & Dick (2012) ,Drama +103303,Yamla Pagla Deewana 2 (2013),Action|Comedy|Drama +103306,Europa Report (2013),Sci-Fi|Thriller +103315,Odd Thomas (2013),Drama|Fantasy|Mystery|Thriller +103317,Cigarettes and Coffee (Un cartus de kent si un pachet de cafea) (2004),Drama +103322,"Projectionist, The (1971)",Comedy|Drama|Fantasy +103324,"Vampire, The (1957)",Horror|Sci-Fi|Thriller +103328,Love Ghost (Shibito no koiwazura) (2001),Horror +103330,"Sound of Insects, The (2009)",Adventure|Documentary|Drama|Mystery|Thriller +103333,Blutzbrüdaz (2013),Comedy +103335,Despicable Me 2 (2013),Animation|Children|Comedy|IMAX +103339,White House Down (2013),Action|Drama|Thriller|IMAX +103341,"World's End, The (2013)",Action|Comedy|Sci-Fi +103343,Keith Lemon: The Film (2012),Comedy +103361,Back to 1942 (2012) ,Drama|IMAX +103363,Aks (2001),Thriller +103366,Redemption (Hummingbird) (2013),Action|Crime|Thriller +103372,"Heat, The (2013)",Action|Comedy|Crime +103374,May I Kill U? (2012),Comedy|Horror|Thriller +103380,A Coming-Out Party (1961),Comedy|Drama +103384,"Lone Ranger, The (2013)",Action|Adventure|Western|IMAX +103388,My Perestroika (2010),Documentary +103406,"Millionaire for Christy, A (Golden Goose) (No Room for the Groom) (1951)",Comedy|Romance +103411,"Doctor and the Devils, The (1985)",Drama|Horror +103418,Hong Kong Confidential (Amaya) (2010),Drama +103420,Life Without Dick (2002),Comedy|Crime|Romance +103422,"Beach Boys: An American Family, The (2000)",Documentary|Drama +103424,Hypocrites (1915),Drama|Fantasy +103435,"Ah, Wilderness! (1935)",Comedy|Drama +103444,Woody Allen: A Documentary (2012),Documentary +103446,Epitaph (2007),Horror +103449,Passion (2012),Crime|Drama|Mystery|Thriller +103452,Pussy Riot: A Punk Prayer (2013),Documentary +103460,Ghoulies III: Ghoulies Go to College (1991),Comedy|Horror +103474,How to Make Money Selling Drugs (2013),Documentary +103478,"Ice House, The (1997)",Drama|Mystery|Thriller +103483,V/H/S/2 (2013),Horror|Thriller +103489,Arctic Blast (2010),Sci-Fi|Thriller +103502,"Knot, The (2012)",Comedy|Romance +103506,Cottage Country (2013),Action|Comedy|Crime +103515,"Along the Great Divide (Travelers, The) (1951)",Adventure|Romance|Western +103517,Ambush Trail (1946),Action|Western +103521,Food Matters (2008),Documentary +103523,Charm School (Niñas mal) (2007),Comedy +103525,Ichi (2008),Action +103528,"Shadow Riders, The (1982)",Romance|Western +103534,Inadequate People (Neadekvatnye lyudi) (2010),Comedy|Romance +103536,Kid Millions (1934),Comedy|Musical +103539,The Spectacular Now (2013),Comedy|Drama|Romance +103541,Thanks for Sharing (2012),Comedy|Drama +103543,"Lifeguard, The (2013)",Comedy|Drama +103545,Ed Hardy: Tattoo the World (2010) ,Documentary +103547,Vile (2011) ,Horror +103549,"What's in a Name (Prénom, Le) (2012)",Comedy +103554,"Hijacking, A (Kapringen) (2012)",Drama|Thriller +103557,Tell Me and I Will Forget (2010),Documentary +103561,Big Star: Nothing Can Hurt Me (2012),Documentary +103563,Which Way Is the Front Line From Here? The Life and Time of Tim Hetherington (2013),Documentary +103567,It's a Bikini World (1967),Comedy +103570,Dead Man's Burden (2012),Western +103576,Chu Chin Chow (1934),Comedy|Fantasy|Musical +103598,"Hamlet, Prince of Denmark (1980)",Drama +103600,Please Remove Your Shoes (2010) ,Documentary +103604,Cold Moon (Lune froide) (1991),Comedy|Drama +103606,Stuck in Love (2012),Comedy|Drama|Romance +103611,How to Live Forever (2009),Documentary +103614,Topralli (1966),Comedy +103617,ATF (1999) ,Drama|Thriller +103621,Brain Dead (1990),Horror|Sci-Fi +103624,Fruitvale Station (2013),Drama +103626,Senotaji (2013),Comedy +103629,Limuzins Janu nakts krasa (1981),Comedy|Drama +103631,Abols Upe (1974),Drama +103633,Making a Killing: The Untold Story of Psychotropic Drugging (2008),Documentary +103635,Pax Americana and the Weaponization of Space (2009),Documentary +103637,Arizona Raiders (1965),Western +103639,Bhaag Milka Bhaag (2013),Drama +103641,D-Day (2013),Action|Thriller +103645,"Terror Within, The (1989)",Horror|Sci-Fi +103647,"Surgeon, The (1995)",Horror|Thriller +103651,Tai Chi Hero (2012),Action|Comedy|Drama|Fantasy|Sci-Fi|IMAX +103653,Zombies on Broadway (1945),Comedy|Fantasy|Horror +103655,R.I.P.D. (2013),Action|Comedy|Fantasy +103657,"Client List, The (2010)",Drama +103661,United (2011),Drama +103663,Love Is a Woman (Death Is a Woman) (1966),Crime|Drama|Mystery +103665,Ip Man: The Final Fight (2013),Action|Drama +103671,Joker (2012),Comedy +103673,Gitmo (2005),Documentary +103676,My Avatar and Me (Min Avatar og mig) (2010),Documentary +103681,"Blood Beast Terror, The (1968)",Crime|Horror|Mystery +103683,Othello (1981),Drama +103685,"Field in England, A (2013)",Drama|Fantasy|Thriller|War +103688,"Conjuring, The (2013)",Horror|Thriller +103690,Everything (2004),Drama|Mystery +103692,Strawberry Fields (2012),Drama +103695,"Starfighters, The (1964)",Drama +103721,Love (2011),Drama|Sci-Fi +103727,"Colony, The (2013)",Action|Horror|Sci-Fi|Thriller +103729,"Warrior's Heart, A (2011)",Action|Drama +103731,"Angel Named Billy, An (2007)",Drama +103736,Scenic Route (2013),Drama|Thriller +103741,"Bashu, the Little Stranger (Bashu, gharibeye koochak) (1990)",Drama +103743,Wild Gals Of The Naked West (1962),Comedy|Western +103749,"Damned, The (Les Maudits) (1947)",Drama +103751,Gasland Part II (2013),Documentary +103753,"Human Behavior Experiments, The (2006)",Documentary +103755,Turbo (2013),Adventure|Animation|Children|Comedy|Fantasy +103759,Gunman's Walk (1958) ,Western +103769,"Devil's in the Details, The (2013)",Thriller +103772,"Wolverine, The (2013)",Action|Adventure|Fantasy|Sci-Fi +103774,Sol (2012) ,Sci-Fi +103776,"Devil Dared Me To, The (2007)",Action|Comedy +103779,Sky West and Crooked (Gypsy Girl) (1965),Drama|Romance +103784,Make Believe (2010),Documentary +103787,Gold (2013),Western +103790,Sacrificio: Who Betrayed Che Guevara (2001),Documentary +103792,Let's Make Money (2008),Documentary +103794,"Middle of the World, The (O Caminho das Nuvens) (2003)",Drama +103801,Drinking Buddies (2013),Comedy|Drama|Romance +103806,90 Minutes (90 minutter) (2012),Drama +103810,Red 2 (2013),Action|Comedy|Crime|Thriller +103816,"Battery, The (2012)",Drama|Horror +103819,Coffee Town (2013),Comedy +103823,"Nick Carter, Master Detective (1939)",Crime|Drama|Mystery +103825,Vehicle 19 (2013),Thriller +103827,To Get to Heaven First You Have to Die (Bihisht faqat baroi murdagon) (2006),Drama +103829,Tinpis Run (1991),Comedy|Drama +103831,Out of Life (Hors la vie) (1991),Drama +103836,Black & White & Sex (2012),Drama +103840,Whisper of Sin (Nuodemes uzkalbejimas) (2007),Drama +103842,Forest of the Gods (Dievu miskas) (2005),Drama +103846,RFK Must Die: The Assassination of Bobby Kennedy (2007),Documentary +103849,New World (Shin-sae-gye) (2013),Thriller +103851,Page Miss Glory (1935),Comedy +103863,Holidays by the Sea (Ni à vendre ni à louer) (2011),Comedy +103865,Revenge for Jolly! (2012),Comedy|Drama +103867,Night Train To Lisbon (2013),Mystery|Romance|Thriller +103869,Bigfoot (2012),Adventure|Horror|Sci-Fi +103871,Consuming Kids: The Commercialization of Childhood (2008),Documentary +103873,"Breath, The (Nefes: Vatan sagolsun) (2009)",Action|Drama|Thriller +103875,Iran Is Not the Problem (2008),Documentary +103877,Mighty Uke (2010),Documentary +103881,"Hard Man, The (1957)",Western +103883,2 Guns (2013),Action|Comedy|Crime +103908,First Comes Love (2013),Documentary +103910,Rafa (2012),Drama +103912,Giorgino (1994),Adventure|Drama|Horror +103920,"All Together, The (2007)",Comedy|Drama|Romance +103923,Aloha Summer (1988),Comedy|Drama +103935,Hell and Back Again (2011),Documentary|Drama|War +103966,Lost in Thailand (Ren zai jiong tu zhi tai jiong) (2012),Adventure|Comedy|Drama +103968,And Baby Makes Three (Baby Is Here) (1949),Comedy|Romance +103970,And So They Were Married (Bless Their Hearts) (1936),Comedy|Romance +103972,"Last Days, The (Últimos días, Los) (2013)",Adventure|Sci-Fi|Thriller +103974,Our Nixon (2013),Documentary +103978,Darling Companion (2012),Drama +103980,Blue Jasmine (2013),Drama +103982,Frankenstein's Army (2013),Action|Horror|Sci-Fi +103984,"Great Beauty, The (Grande Bellezza, La) (2013)",Comedy|Drama +103990,Troma's War (1988) ,Action|Adventure|Comedy +103994,Only the Young (2012),Documentary +104000,And You Thought Your Parents Were Weird (1991),Children|Comedy|Sci-Fi +104002,Another Chance (1989),Comedy +104011,Andy Hardy's Double Life (1942),Comedy|Romance +104013,They Call Him Bulldozer (Lo chiamavano Bulldozer) (1978),Action|Comedy +104015,Bomber (1982),Action|Comedy +104026,Another Face (Two Faces) (1935),Comedy|Drama +104028,Armored Car Robbery (1950),Crime|Film-Noir|Thriller +104031,Fred & Vinnie (2011),Comedy|Drama +104033,"Love, Marilyn (2012)",Documentary +104035,Beneath (2013),Horror +104039,Arena (1989),Sci-Fi +104050,Phantom of the Megaplex (2000),Action|Children|Comedy|Mystery +104054,"Redhead from Wyoming, The (1953)",Western +104059,Baby On Board (1992),Comedy +104061,Battle for Brooklyn (2011),Documentary +104064,Vares: The Path of the Righteous Men (Vares - Kaidan tien kulkijat) (2012),Crime|Drama +104066,Alcan Highway (Alaska Highway) (2013),Documentary +104072,The Count of Monte Cristo (1998),Adventure|Drama|Romance +104074,Percy Jackson: Sea of Monsters (2013),Adventure|Children|Fantasy +104076,"Smurfs 2, The (2013)",Animation|Children|Comedy +104078,Alan Partridge: Alpha Papa (2013),Comedy +104085,Class of 1999 (1990),Action|Horror|Sci-Fi +104089,Computer Chess (2013),Comedy +104091,"Devil's Nightmare, The (Plus longue nuit du diable, La) (1971)",Fantasy|Horror +104093,"Attack, The (2012)",Drama +104095,"Attack, The (1996)",Romance|Thriller +104097,My Little Pony: Equestria Girls (2013),Animation|Children|Fantasy +104099,Lupin the Third: The Secret of Mamo (1978),Action|Animation|Crime +104119,"Forsyte Saga, The (1967)",Drama +104123,Jay and Silent Bob Go Down Under (2012),Comedy +104126,"Brute, The (Bruto, El) (1953)",Drama +104132,Zombies of Mora Tau (1957),Horror +104135,"Giant Claw, The (1957)",Horror|Sci-Fi +104137,Prince Avalanche (2013),Comedy|Drama +104139,"Werewolf, The (1956)",Horror|Sci-Fi +104153,Creature with the Atom Brain (1955),Crime|Horror|Sci-Fi +104155,Clear History (2013),Comedy +104175,Kickboxer 3: The Art of War (Kickboxer III: The Art of War) (1992),Action|Thriller +104177,From One Second to the Next (2013),Documentary +104211,We're the Millers (2013),Comedy|Crime +104213,Growing Pains (1984),Comedy +104218,Grown Ups 2 (2013),Comedy +104224,DEFCON: The Documentary (2013),Documentary +104226,Jamie and Jessie Are Not Together (2011),Comedy|Musical|Romance +104231,Drug War (Du zhan) (2012),Crime +104233,"Cat and the Canary, The (1939)",Comedy|Horror|Mystery +104239,Farmageddon (2011),Documentary +104241,Kick-Ass 2 (2013),Action|Comedy|Crime +104243,Riddick (2013),Action|Sci-Fi|Thriller|IMAX +104245,Planes (2013),Adventure|Animation|Comedy +104249,Mr. Moto in Danger Island (1939),Crime|Drama|Mystery|Thriller +104261,80 Steps to Jonah (1969),Drama +104264,A Family Affair (1937),Comedy +104266,Killer at Large (2008),Documentary +104270,Cameron's Closet (1988),Horror +104272,Blackfish (2013),Documentary +104274,Paranoia (2013),Drama|Thriller +104276,"Legend of Kaspar Hauser, The (Leggenda di Kaspar Hauser, La) (2012)",Comedy|Drama|Mystery +104280,"Black Room, The (1935)",Crime|Horror|Thriller +104283,"Wind Rises, The (Kaze tachinu) (2013)",Animation|Drama|Romance +104285,"Maria, ihm schmeckt's nicht! (Maria, He Doesn't Like It) (2009)",Comedy +104294,Around the World Under the Sea (1966),Action|Adventure +104298,Evidence (2013) ,Horror|Thriller +104303,Jobs (2013),Drama +104307,"Souper, Le (Supper, The) (1992)",Drama +104309,Moving the Mountain (1994),Documentary +104312,"Mortal Instruments: City of Bones, The (2013)",Action|Adventure|Drama|IMAX +104314,Hitler's Children (2011),Documentary +104317,Flight of the Conchords: A Texan Odyssey (2006),Comedy +104319,"First Grader, The (2010)",Drama +104321,Touchy Feely (2013),Drama +104335,Vassilisa the Beautiful (Vasilisa prekrasnaya) (1939),Adventure|Fantasy +104337,Lee Daniels' The Butler (2013),Drama +104339,In a World... (2013),Comedy +104345,Back Door to Hell (1964),Drama|War +104350,Terms and Conditions May Apply (2013),Documentary +104352,Alias Ruby Blade (2012),Documentary +104356,Museum Hours (2013),Drama +104361,Ain't Them Bodies Saints (2013),Drama +104372,"Cry in the Night, A (1956)",Crime|Drama|Film-Noir +104374,About Time (2013),Drama|Fantasy|Romance +104376,Tatsumi (2011),Documentary|Drama|Thriller +104379,Chennai Express (2013),Action|Adventure|Comedy +104384,"Source Family, The (2012)",Documentary|Musical +104386,Cold Prey II (Fritt Vilt II) (2008),Horror +104388,Cold Prey III (Fritt Vilt III) (2010),Horror +104390,When Nietzsche Wept (2007),Drama +104392,Four Flies on Grey Velvet (1971),Horror|Mystery|Thriller +104406,Fill the Void (Lemale et ha'halal) (2012),Drama +104408,Truth or Die (2012) ,Horror|Thriller +104414,Looking for Hortense (Cherchez Hortense) (2012) ,Drama +104423,"Snows of Kilimanjaro, The (Neiges du Kilimandjaro, Les) (2011)",Drama +104431,Enter Nowhere (2011),Mystery|Thriller +104441,"Frozen Ground, The (2013)",Crime|Drama|Thriller +104451,Dealing: Or the Berkeley-to-Boston Forty-Brick Lost-Bag Blues (1972),Comedy|Drama|Thriller +104453,"Marva Collins Story, The (1981)",Documentary|Drama +104457,You're Next (2011),Horror|Thriller +104459,"Parisienne, La (Une parisienne) (1957)",Comedy +104462,"Brothers O'Toole, The (1973)",Comedy|Western +104464,Taipei Exchanges (Di 36 ge gu shi) (2010),Comedy|Drama +104472,Find Love (2006),Romance +104480,"Late Mathias Pascal, The (a.k.a. The Living Dead Man) (Feu Mathias Pascal) (1926)",Drama|Fantasy +104489,"Date with Judy, A (1948)",Comedy|Musical|Romance +104491,"Royal Scandal, A (1945)",Comedy|Drama +104493,"Ticklish Affair, A (1963)",Comedy|Romance +104495,"Woman in The Septic Tank, The (Ang Babae sa septic tank) (2011)",Comedy|Musical +104498,"Glass House, The (1972)",Drama +104504,Confine (2013),Thriller +104506,Sparrows Dance (2012),Drama|Romance +104508,Dieta mediterránea (2009),Comedy|Drama|Romance +104513,Clownhouse (1989),Horror +104518,Empire State (2013),Action|Drama +104520,"Crimson Permanent Assurance, The (1983)",Adventure|Comedy +104524,Dolly and Her Lover (Räpsy ja Dolly eli Pariisi odottaa) (1990),Comedy|Crime|Romance +104526,So It Goes (Korsoteoria) (2012),Drama +104540,"Immortals, The (1995)",Action|Crime|Drama +104542,Joyride (1997),Drama +104546,Queen of Montreuil (2013),Comedy +104552,Crawlspace (2012),Horror|Mystery|Sci-Fi|Thriller +104561,Mutants (2009),Horror|Sci-Fi +104563,Too Hot to Handle (1938),Adventure|Comedy|Romance +104569,"Act of Love (Acte d'amour, Un) (1953)",Drama|Romance|War +104576,"Seasoning House, The (2012)",Horror|Thriller +104583,Logorama (2009),Action|Animation|Crime +104588,"Little Traitor, The (2007)",Drama +104590,Tidal Wave (2009),Drama +104595,Family Band: The Cowsills Story (2011) ,Documentary +104597,"Chicago 8, The (2011)",Drama +104604,Something Real and Good (2013),Drama +104606,The Last Drop (2006),Action|Adventure|Crime|War +104608,Autopsy (2008),Horror +104610,Komodo (1999),Horror|Sci-Fi|Thriller +104612,"Trust Us, This Is All Made Up (2009)",Comedy|Documentary +104625,Apartment for Peggy (1948),Drama +104627,Back from Eternity (1956),Drama +104629,Back in Business (1997),Action|Adventure +104631,Adore (2013),Drama|Romance +104636,TT3D: Closer to the Edge (2011),Documentary +104638,"Planet of the Future, The (2010)",Action|Adventure|Sci-Fi +104640,"Long Dark Hall, The (1951)",Crime|Drama +104642,Sealed Cargo (1951),Thriller|War +104654,"Life of Her Own, A (1950)",Drama +104656,Across the Sierras (1941),Action|Romance|Western +104662,"First Nudie Musical, The (1976)",Comedy|Musical +104669,Simon Killer (2012) ,Drama +104671,Dracula (Dracula 3D) (2012),Horror|Romance|Thriller +104673,"Kidnapping of the President, The (1980)",Action|Drama|Thriller +104675,Kitchen Party (1997),Drama +104685,"Suicide Shop, The (Le magasin des suicides) (2012) ",Animation|Comedy|Musical +104698,From Hell It Came (1957),Horror +104712,Instructions Not Included (No se Aceptan Devoluciones) (2013),Comedy|Drama +104721,"Motivation, The (2013)",Documentary +104723,Conman (Du Xia 1999) (1998),Comedy +104726,Koch (2012),Documentary +104728,One Direction: This Is Us (2013),Documentary +104731,Murder à la Mod (1968),Comedy|Crime|Mystery +104733,"Fireman, The (1916)",Comedy +104736,Closed Circuit (2013),Crime|Drama|Mystery +104741,Doctors' Wives (1971),Drama +104743,AmeriQua (2013),Comedy +104757,Evocateur: The Morton Downey Jr. Movie (2012),Documentary +104760,Getaway (2013),Action|Crime +104762,"Teacher, A (2013)",Drama +104774,Three Worlds (Trois mondes) (2012),Drama +104776,"Cockleshell Heroes, The (1955)",Action|Drama|War +104778,King of Texas (2002),Drama|Western +104795,Backlash (1956),Mystery|Romance|Western +104805,"Item, The (1999)",Action|Horror +104807,I Am (2010),Documentary +104809,Phantom of the Rue Morgue (1954),Crime|Horror|Mystery +104815,Bad Men of Missouri (1941),Action|Romance|Western +104817,Badman's Country (1958),Western +104823,Hunky Dory (2011),Drama|Musical +104829,"Story of Luke, The (2012)",Comedy|Drama +104832,"Glass Web, The (1953)",Crime|Drama|Film-Noir +104837,Rage of Honor (1987),Action|Crime +104839,Moonlight Serenade (1997),Drama +104841,Gravity (2013),Action|Sci-Fi|IMAX +104843,And Now a Word from Our Sponsor (2013),Comedy|Drama +104847,Spin (You Are Here) (2007),Comedy|Romance +104849,Lisa (1990),Drama|Thriller +104854,"Coward, The (Kapurush) (1965)",Drama +104863,What If (2013),Comedy|Drama|Romance +104867,"Sex of Angels, The (El sexo de los ángeles) (2012)",Drama|Romance +104870,Deathsport (1978),Action|Sci-Fi +104875,"History of Future Folk, The (2012)",Adventure|Comedy|Musical|Sci-Fi +104879,Prisoners (2013),Drama|Mystery|Thriller +104881,"Out of the Furnace (Dust to Dust) (Low Dweller, The) (2013)",Drama|Thriller +104883,"Conspiracy, The (2012)",Horror|Thriller +104903,Good Vibrations (2012),Drama|Musical +104906,Austenland (2013),Comedy|Romance +104908,Insidious: Chapter 2 (2013),Horror|Thriller +104910,"Ultimate Life, The (2013)",Drama +104913,Rush (2013),Action|Drama +104920,Vizontele (2001),Comedy|Drama +104923,This is Martin Bonner (2013),Drama +104925,"Family, The (2013)",Action|Comedy|Crime +104936,High on Crack Street: Lost Lives in Lowell (1995),Documentary +104944,Short Term 12 (2013),Drama +104947,At Any Price (2012),Drama|Thriller +104954,Joy of Sex (1984),Comedy|Romance +104959,Aurora Borealis (2005),Drama|Romance +104961,Badman's Territory (1946),Action|Drama|Western +104969,"Milky Way, The (1936)",Comedy +104971,Imaginary Witness: Hollywood and the Holocaust (2004) ,Documentary +104973,Eminem AKA (2004) ,Documentary +104975,Salinger (2013),Documentary +104984,Tears of Steel (2012),Sci-Fi +104996,Table No.21 (2013),Drama|Thriller +104998,Paradise: Faith (Paradies: Glaube) (2012),Drama +105011,"Story of Maths, The (2008)",Documentary +105017,"Wet Parade, The (1932)",Drama|Romance +105028,Post Tenebras Lux (2012),Drama +105032,Farah Goes Bang (2013),Comedy +105037,"To Do List, The (2013)",Comedy +105040,Dragon Day (2013),Drama|Sci-Fi|Thriller +105042,"Wedding Party, The (1969)",Comedy +105044,"Unspeakable Act, The (2012)",Drama +105047,Shakma (1990),Horror +105049,"Champion, The (1915)",Comedy +105051,"Jitney Elopement, A (1915)",Comedy +105053,"Factory, The (2012)",Mystery|Thriller +105057,Saint Joan (1957),Drama +105071,Pig Hunt (2008) ,Action|Horror|Thriller +105073,Officer Down (2013),Crime|Drama +105077,"Cat's-Paw, The (1934)",Comedy +105079,His Regeneration (1915),Western +105081,Mabel at the Wheel (1914),Comedy +105084,Grand Masti (2013),Comedy|Drama|Romance +105086,Battle of the Year (2013),Musical +105104,"Big Day, The (We Met on the Vineyard) (2001)",Comedy +105117,Off Beat (1986),Comedy|Romance +105119,Out On A Limb (1992),Comedy +105121,Inescapable (2012),Action|Drama|War +105128,Casting By (2012),Documentary +105130,"Notebook, The (A nagy füzet) (2013)",Drama|War +105133,Repeaters (2010) ,Action|Drama +105135,"Pit, The (1981)",Horror +105142,Barbed Wire (1952),Action|Comedy|Western +105144,Bare Knuckles (2010),Action|Drama +105147,Karate-Robo Zaborgar (Denjin Zabôgâ) (2011),Action|Adventure|Comedy|Fantasy +105155,America the Beautiful (2007) ,Documentary +105157,Supporting Characters (2012),Comedy|Romance +105159,Alps (Alpeis) (2011),Drama +105165,World Without End (1956),Sci-Fi +105176,Barricade (2012),Horror|Thriller +105178,Killers from Space (1954),Sci-Fi +105181,"Monster That Challenged the World, The (1957)",Horror|Sci-Fi +105193,Bastards (Les salauds) (2013),Drama +105197,Nebraska (2013),Adventure|Drama +105204,Saint (Sint) (2010),Horror +105206,Amsterdamned (1988),Action|Horror|Thriller +105211,Enough Said (2013),Comedy|Drama|Romance +105213,Don Jon (2013),Comedy|Drama|Romance +105215,Scatter My Ashes at Bergdorf's (2013),Documentary +105217,Adventures in Zambezia (2012),Adventure|Animation|Children|Comedy +105223,Colorado Territory (1949),Western +105227,102 Minutes That Changed America (2008),Documentary +105236,Sorceress (1982),Action|Adventure|Fantasy +105238,New Town Killers (2008),Drama +105240,"Tender Hook, The (Boxer and the Bombshell, The) (2008)",Crime|Drama|Mystery +105242,Mushrooming (Seenelkäik) (2012),Adventure|Comedy|Thriller +105244,Dance of Outlaws (Häätanssi) (2012),Documentary +105246,Mood Indigo (L'écume des jours) (2013),Drama|Fantasy +105250,"Century of the Self, The (2002)",Documentary +105252,Conquest (1983),Action|Adventure|Fantasy +105254,Crystal Fairy & the Magical Cactus and 2012 (2013),Adventure|Comedy +105266,First Cousin Once Removed (2012),Documentary +105279,Adventures of Kitty O'Day (Kitty O'Day Comes Through) (1945),Comedy|Crime|Mystery|Romance +105282,"Innocent Affair, An (Don't Trust Your Husband) (Under Suspicion) (1948)",Comedy +105288,Ferocious (2012),Crime|Thriller +105290,Shanghai (2012),Crime|Thriller +105292,Paintball (2009),Action|Thriller +105296,Lincz (2010),Drama|Thriller +105299,Tsunami: Caught on Camera (2009),Documentary +105302,The Rise (2012),Crime|Drama|Thriller +105304,Thampu (1978),Drama +105314,Once Upon a Warrior (Anaganaga O Dheerudu) (2011),Action|Adventure|Fantasy|Musical|Romance +105320,Apache Country (1952),Action|Western +105328,America the Beautiful 2: The Thin Commandments (2011) ,Documentary +105330,"Public Eye, The (Follow Me!) (1972)",Comedy +105338,Kabul Express (2006),Action|Comedy|Drama|Thriller +105340,Miracle in Cell No. 7 (2013),Comedy|Drama +105343,Special 26 (2013),Crime|Drama|Thriller +105345,Jolene (2008),Drama +105351,Runner Runner (2013),Crime|Drama|Thriller +105353,"Dilettante, La (1999)",Comedy +105355,Blue Is the Warmest Color (La vie d'Adèle) (2013),Drama|Romance +105357,Tyler Perry's Temptation: Confessions of a Marriage Counselor (2013),Drama +105359,Future Weather (2012),Drama +105364,Something in the Air (Après Mai) (2012),Action|Drama +105366,Shake Hands with the Devil (1959),Action|Drama +105368,I Declare War (2012),Action|Comedy|Drama +105375,"German Doctor, The (Wakolda) (2013)",Drama|Thriller +105377,"Puerta de Hierro, el exilio de Perón (2012)",Drama +105379,"Monitors, The (1969)",Comedy|Sci-Fi +105382,This is Our Time (2013),Drama +105404,Muhammad Ali's Greatest Fight (2013),Drama +105406,711 Ocean Drive (1950),Crime|Drama|Film-Noir|Thriller +105408,"Cadaver Christmas, A (2011)",Comedy|Horror +105410,Angel (1984),Action|Crime|Thriller +105412,Favela Rising (2005),Documentary +105414,Mariage à Mendoza (2012),Comedy|Drama +105416,Germany Pale Mother (1980),Drama|War +105420,Parkland (2013),Drama +105423,Imagine (2012),Drama +105429,Inequality for All (2013),Documentary +105435,Narrien illat (1970) ,Comedy|Drama|Musical +105439,Sword of Desperation (Hisshiken torisashi) (2010),Action|Drama +105444,Seyyit Khan: Bride of the Earth (Seyyit Han) (1968),Drama|Western +105446,"Tale from the Past, A (Përralle Nga e Kaluara) (1987)",Comedy +105448,Eros (Men and Women) (Noite Vazia) (1964),Drama +105450,Jessie James Meets Frankenstein's Daughter (1966),Sci-Fi|Western +105453,On the Job (2013),Action|Drama +105455,Resurrecting the Street Walker (2009),Horror +105465,Alice's Adventures in Wonderland (1972),Adventure|Children|Fantasy|Musical +105468,Cloudy with a Chance of Meatballs 2 (2013),Animation|Children|Comedy|Fantasy +105470,Extraction (2013),Action +105474,Microphone (2010),Comedy|Drama|Musical +105477,Talaash (2012),Crime|Drama|Mystery +105484,Nobody Else But You (Poupoupidou) (2011),Comedy|Crime|Mystery +105490,Almost You (1985),Comedy|Drama +105492,Dirty (2005),Crime|Drama|Thriller +105495,"Dish & the Spoon, The (2011)",Comedy|Drama|Romance +105497,Kumail Nanjiani: Beta Male (2013) ,Comedy|Documentary +105499,"Shiro Amakusa, the Christian Rebel (Amakusa Shiro tokisada) (1962)",Drama|War +105502,"Devil's Ground, The (2009)",Horror|Thriller +105504,Captain Phillips (2013),Adventure|Drama|Thriller|IMAX +105509,"Misérables, Les (1978)",Drama +105519,"Philosophers, The (After The Dark) (2013)",Drama|Fantasy|Sci-Fi +105531,"Wall, The (Die Wand) (2012)",Drama|Fantasy +105533,They Only Kill Their Masters (1972),Mystery|Romance|Thriller +105542,Another Harvest Moon (2010),Drama +105560,Beneath the Dark (2010),Drama|Mystery|Thriller +105565,Sincerely Yours (1955),Drama|Musical +105571,Attila (Attila the Hun) (1954),Drama +105575,Look (2007),Drama +105577,Avenger (2006) ,Thriller +105585,Machete Kills (Machete 2) (2013),Action|Crime|Thriller +105589,Bachelor Bait (1934),Comedy|Romance +105591,I Am Fishead (2011),Documentary +105593,Filth (2013),Comedy|Crime|Drama +105595,Game of Chance (Onnenpeli) (1965),Comedy|Drama +105597,Romeo and Juliet (2013),Drama|Romance +105599,Drona (2008),Action|Adventure|Fantasy|Musical +105601,Calling Dr. Death (1943),Mystery +105608,Sunshine on Leith (2013) ,Musical +105612,Wild Seven (2006),Crime|Drama +105616,"Frozen Ghost, The (1945)",Mystery +105618,Four Eyes and Six-Guns (1992),Comedy|Western +105620,Baggage Claim (2013),Comedy +105628,Parking (Ting che) (2008),Crime|Drama +105653,Escape Plan (2013),Action|Mystery|Thriller +105659,Weird Woman (1944),Drama +105663,Family Affair (2010) ,Documentary +105665,Dances With the Dragons ( Yu long gong wu) (1991),Comedy|Drama|Romance +105703,Haute Cuisine (2012),Drama +105709,Brazilian Western (Faroeste Caboclo) (2013),Crime|Drama|Romance +105713,How to Meet Girls from a Distance (2012),Comedy +105715,Just Wright (2010),Comedy|Romance +105717,My Grandfather's People (Dedemin insanlari) (2011),Comedy|Drama +105720,"Thief of Paris, The (Le voleur) (1967)",Comedy|Crime|Drama +105731,Carrie (2013),Drama|Horror +105733,"Legend of Lylah Clare, The (1968)",Drama +105742,"Fifth Estate, The (2013)",Drama|Thriller +105748,"Place of One's Own, A (1945)",Drama|Mystery|Thriller +105753,Superclásico (2011),Comedy|Drama +105755,"Counselor, The (2013)",Crime|Drama|Thriller +105765,Cinema Komunisto (2010),Documentary +105767,One Nation Under God (1993) ,Documentary +105769,"Congress, The (2013)",Animation|Sci-Fi +105772,Earth vs. The Spider (1958),Horror +105776,"Trip to Mars, A (1910)",Sci-Fi +105778,One Small Hitch (2013),Comedy|Romance +105792,"Stranger in Town, A (1943)",Drama|Romance +105796,Back in the Saddle (Back in the Saddle Again) (1941),Action|Drama|Western +105799,"Unbelievers, The (2013)",Documentary +105801,Escape From Tomorrow (2013),Drama|Fantasy|Horror +105803,Frankenstein Conquers the World (1965),Action|Drama|Sci-Fi +105805,Episode 3: Enjoy Poverty (2009),Documentary|War +105811,Godzilla vs. Megaguirus (Gojira tai Megagirasu: Jî shômetsu sakusen) (2000),Action|Sci-Fi +105813,Godzilla vs. Megalon (Gojira tai Megaro) (1973),Action|Sci-Fi +105815,Undocumented (2010),Horror|Thriller +105821,Cult of the Cobra (1955),Horror +105825,Mustasukkaisuus (1953),Drama|Romance +105827,Rebirth of Mothra (1996),Action|Fantasy|Sci-Fi +105835,"Double, The (2013)",Comedy|Drama|Thriller +105837,Godzilla vs. SpaceGodzilla (Gojira VS Supesugojira) (1994),Action|Sci-Fi +105839,Deep Dark Canyon (Hunting Season) (2013),Action|Drama|Thriller +105841,B-Side (2013),Comedy|Romance +105844,12 Years a Slave (2013),Drama +105846,Only Daughter (2013),Drama +105849,"Trouble with the Truth, The (2011)",Drama|Romance +105855,"Right Kind of Wrong, The (2013)",Comedy|Romance +105863,Child's Pose (2013),Drama +105865,"Enemy Within, The (O ehthros mou) (2013)",Drama +105869,Kill Your Darlings (2013),Crime|Drama|Romance|Thriller +105873,"Killing of America, The (1982)",Documentary +105884,Being Cyrus (2005),Comedy|Drama|Thriller +105886,Buddha Collapsed Out of Shame (2007),Drama|War +105888,Debtocracy (2011),Documentary +105890,"White Dwarf, The (Valkoinen kääpiö) (1986)",Drama +105892,August (Elokuu) (2011) ,Drama +105901,Silja - nuorena nukkunut (1956),Drama|Romance +105906,Watermarks (2004),Documentary +105915,History of Hell (Rosas Höllenfahrt) (2009),Documentary +105918,Kimjongilia (2009),Documentary +105926,Barrio Tales (2012),Horror +105928,"Day of the Crows, The (Le jour des corneilles) (2012)",Animation|Children|Comedy|Fantasy +105936,Space Amoeba (Yog: Monster from Space) (1970),Action|Sci-Fi +105938,Varan the Unbelievable (1958),Action|Drama|Sci-Fi +105943,Bridegroom (2013),Documentary +105950,Miracle Run (2004),Drama +105952,Spinning Plates (2012),Documentary +105954,All Is Lost (2013),Action|Adventure|Drama +105959,Pillow of Death (1945),Mystery|Thriller +105961,Rebirth of Mothra II (1997),Action|Fantasy +105963,Rebirth of Mothra III (1998),Action|Fantasy|Sci-Fi +105972,"Little Help, A (2010)",Comedy|Drama +105974,Assault on a Queen (1966),Action|Adventure|Crime|Drama|Thriller +105976,Bad Medicine (1985),Comedy +105985,Man on a Mission: Richard Garriott's Road to the Stars (2010),Documentary +106002,Ender's Game (2013),Action|Adventure|Sci-Fi|IMAX +106004,Maniac (1963),Crime|Horror|Mystery|Romance|Thriller +106011,"Blue Umbrella, The (2013)",Animation +106017,Hello! How Are You? (Buna! Ce faci?) (2010),Comedy|Romance +106019,TWA Flight 800 (2013) ,Documentary +106022,Toy Story of Terror (2013),Animation|Children|Comedy +106024,"Return of Mod Squad, The (1979)",Crime|Drama +106026,Folies Bergere de Paris (1935),Comedy|Musical +106028,"Thrill of Brazil, The (1946)",Musical +106030,"Last Days on Mars, The (2013)",Horror|Sci-Fi +106032,Chastity Bites (2013),Comedy|Horror +106034,Don't Play Us Cheap (1973),Comedy|Musical|Romance +106037,Dreamer (1979),Drama +106040,Fire Sale (1977),Comedy +106046,The Escape Artist (1982),Crime|Drama +106052,Death by China (2012) ,Documentary +106054,Het Vonnis (2013),Crime|Drama +106057,Wind with the Gone (El viento se llevó lo qué) (1998),Comedy|Drama +106059,Conversations with My Gardener (Dialogue avec mon jardinier) (2007),Comedy|Drama +106062,Jackass Presents: Bad Grandpa (2013),Comedy +106066,Freaky Deaky (2012),Comedy|Crime +106072,Thor: The Dark World (2013),Action|Adventure|Fantasy|IMAX +106074,"Code, The (2011)",Documentary +106076,Precision: The Measure of All Things (2013),Documentary +106078,"Great Texas Dynamite Chase, The (1976)",Action|Comedy|Crime|Drama|Romance +106080,Fragment of Fear (1970),Crime|Drama|Mystery +106082,Shock and Awe: The Story of Electricity (2011),Documentary +106090,Tortured (2008),Crime|Thriller +106092,Disfigured (2008),Drama +106094,Godzilla: Tokyo S.O.S. (Gojira tai Mosura tai Mekagojira: Tôkyô S.O.S.) (2003),Action|Fantasy|Sci-Fi +106098,Science and Islam (2009),Documentary +106100,Dallas Buyers Club (2013),Drama +106107,Order and Disorder (2009),Documentary +106109,"Masquerade (Gwanghai, Wangyidoen namja) (2012)",Drama +106111,Marc Maron: Thinky Pain (2013),Comedy +106115,"Story of Science, The (2010)",Documentary +106136,Beatdown (2010),Action|Crime|Thriller +106138,You May Not Kiss the Bride (2011),Action|Comedy|Crime|Romance +106141,Bad Chicken (2013),Comedy +106144,"Selfish Giant, The (2013)",Drama +106147,Changing Sides (De l'autre côté du lit) (2008),Comedy +106156,London - The Modern Babylon (2012) ,Documentary +106158,La discrète (1990),Drama|Romance +106163,"Touch of Sin, A (Tian zhu ding) (2013)",Drama +106170,"Patriots, The (Patriotes, Les) (1994)",Thriller +106173,Looking for Lenny (2011) ,Documentary +106190,Red Garters (1954),Comedy|Musical|Western +106195,How I Live Now (2013),Action|Drama|Thriller +106202,Free The Mind (2012),Documentary +106204,Pieta (2013),Drama +106208,Stuck (2013) ,Documentary +106212,Root of All Evil? (2006),Documentary +106214,What If ... (2010),Drama +106226,Clandestine Childhood (2011),Drama +106230,Free Radicals: A History of Experimental Film (2012),Documentary +106232,"Reformer and the Redhead, The (1950)",Comedy|Romance +106234,Great Expectations (2012),Drama +106236,Somm (2012),Documentary +106238,Amber Alert (2012) ,Thriller +106240,Free Birds (2013),Action|Adventure|Animation|Children|Comedy|Sci-Fi +106243,Godzilla Against MechaGodzilla (Gojira tai Mekagojira) (2002),Action|Sci-Fi|Thriller +106245,Latitude Zero (Ido zero daisakusen) (1969),Action|Adventure|Sci-Fi +106254,Boy Wonder (2010),Action|Crime|Drama +106270,Because You're Mine (1952),Comedy|Musical +106284,Back Pay (1930),Drama|Romance +106286,Bailey's Billion$ (Bailey's Billions) (Bailey) (2005),Children|Comedy +106295,"Castle of the Living Dead (Castello Dei Morti Vivi, Il) (1964)",Horror|Sci-Fi|Thriller +106297,"Sword and the Dragon, The (Ilya Muromets) (1956)",Adventure|Fantasy +106300,"Day The Earth Froze, The (Sampo) (1959)",Adventure|Fantasy +106304,Hit! (1973),Action|Drama +106306,Snowball Effect: The Story of 'Clerks' (2004),Documentary +106326,Things We Do For Love (Kaikella rakkaudella) (2013),Drama +106330,Last Vegas (2013),Comedy|Drama|Romance +106332,Muscle Shoals (2013),Documentary +106336,So Young (Zhi wo men zhong jiang shi qu de qing chun) (2013),Drama +106342,Different from You and Me (Anders als du und ich) (1957) ,Drama +106346,W.C. Fields and Me (1976),Drama +106348,Outside the Law (2002),Action +106351,Apache Territory (1958) ,Action|Western +106355,Apartment 4E (2012) ,Drama|Mystery +106363,Lumihiutalemuodostelma (2012),Comedy|Drama +106365,"Super Cops, The (1974)",Action|Comedy|Crime|Drama|Thriller +106371,Back Roads (1981),Adventure|Comedy|Romance +106376,"Lords of Discipline, The (1983)",Thriller +106378,Won Ton Ton: The Dog Who Saved Hollywood (1976),Comedy +106382,Bedevilled (1955),Crime|Drama +106387,A Bucket of Blood (1995),Comedy|Horror|Thriller +106397,Stephen Tobolowsky's Birthday Party (2005),Comedy|Documentary|Drama +106399,"Wonderful Crook, The (Pas si méchant que ça) (1975)",Crime|Drama|Romance +106401,Le convoyeur (2004),Crime|Drama|Thriller +106403,"Conclave, The (2006)",Drama +106405,Making the Boys (2011) ,Documentary +106415,A Walk in the Sun (1978),Drama +106419,Aggie Appleby Maker of Men (1933),Comedy|Romance +106421,"Institute, The (2013)",Documentary +106423,Dreamworld (2012),Comedy|Drama|Romance +106431,Chasing Ghosts: Beyond the Arcade (2007) ,Documentary +106436,For Those in Peril (2013),Drama +106438,Philomena (2013),Comedy|Drama +106441,"Book Thief, The (2013)",Children|Drama|War +106443,"Best Man Holiday, The (2013)",Comedy|Drama +106452,Ida (2013),Drama +106458,"Tiger from Tjampa, The (Harimau Tjampa) (1953)",Drama +106460,Curse of the Oily Man (Sumpah orang minyak) (1956) ,Drama|Fantasy|Thriller +106466,"White Shadow, The (1924)",Drama +106468,Hambone and Hillie (1983),Comedy|Drama +106471,One Piece Film: Strong World (2009),Action|Adventure|Animation|Comedy|Fantasy +106473,One Piece Film Z (2012),Action|Adventure|Animation|Fantasy +106475,Caught Inside (2010),Action|Adventure|Horror|Thriller +106483,All Mine to Give (1957),Drama|Romance +106487,The Hunger Games: Catching Fire (2013),Action|Adventure|Sci-Fi|IMAX +106489,"Hobbit: The Desolation of Smaug, The (2013)",Adventure|Fantasy|IMAX +106491,47 Ronin (2013),Action|Adventure|Fantasy +106493,"Scarlet Letter, The (Der scharlachrote Buchstabe) (1973)",Drama +106495,"Girl From Nowhere, The (2012)",Drama|Romance +106498,"Magic Voyage of Sindbad, The (Sadko) (1953)",Adventure|Fantasy +106501,"Chameleon, The (2010) ",Drama +106503,"Enemies of Reason, The (2007)",Documentary +106506,World War II: When Lions Roared (1994),Drama|War +106508,"Dyatlov Pass Incident, The (Devil's Pass) (2013)",Mystery|Thriller +106521,Beyond the Time Barrier (1960),Sci-Fi +106523,"Flight That Disappeared, The (1961)",Adventure|Fantasy|Sci-Fi +106525,"Crystal Ball, The (1943)",Comedy +106527,Chocchan's Story (Chocchan monogatari) (1996),Animation|Drama|War +106538,Flesh (1968),Drama +106540,Delivery Man (2013),Comedy +106542,Charlie Countryman (2013),Action|Comedy|Romance +106549,Back to the USSR - takaisin Ryssiin (1992),Comedy|Drama +106559,Bad Biology (2008),Comedy|Fantasy|Thriller +106563,Once Upon a Scoundrel (1974),Comedy +106565,Emotion (1966),Comedy|Horror +106581,Bells of Capistrano (1942),Western +106583,Berlin Express (1948),Crime|Drama|Film-Noir|Thriller +106590,Hansel & Gretel (2013),Horror +106592,"Happy Poet, The (2010)",Comedy|Drama|Romance +106594,Red Flag (2012),Comedy|Drama|Romance +106611,The Club (1994),Horror +106614,"Christmas Party, The (Joulubileet) (1996)",Comedy +106620,Z.P.G. (1972),Sci-Fi|Thriller +106622,To Age or Not to Age (2010),Documentary +106624,Twice Born (Venuto al mondo) (2012),Drama|Romance|War +106644,"Story of Esther Costello, The (1957)",Drama +106672,Club Fed (1990),Comedy +106682,Apollo Zero (2009),Documentary +106686,José and Pilar (José e Pilar) (2010),Documentary +106690,"Mating of Millie, The (1948)",Comedy|Romance +106696,Frozen (2013),Adventure|Animation|Comedy|Fantasy|Musical|Romance +106698,"Ninja, A Band of Assassins (Shinobi No Mono) (1962)",Action|Drama +106704,Disco Godfather (1979),Action|Crime|Drama +106722,Crisis: Behind a Presidential Commitment (1963),Documentary +106729,"Galaxy Invader, The (1985)",Sci-Fi +106734,Marfa Girl (2012),Drama +106736,Bad Girls Go To Hell (1965),Drama +106745,"Stranger, The (Straniero, Lo) (1967)",Drama +106747,Circles (Krugovi) (2013),Drama +106753,Shed No Tears (Känn ingen sorg) (2013),Drama|Musical|Romance +106762,Trigun: Badlands Rumble (2010),Action|Animation|Sci-Fi|Western +106766,Inside Llewyn Davis (2013),Drama +106770,5up 2down (Getting High) (5 Up 2 Down) (2006),Drama +106782,"Wolf of Wall Street, The (2013)",Comedy|Crime|Drama +106785,Homefront (2013),Action|Crime|Thriller +106808,Love Life (Liebesleben) (2007),Drama +106820,Marriage Material (2012),Drama +106822,Shadows of a Hot Summer (Stíny horkého léta) (1978),Drama|Thriller +106824,Scissere (1982),Drama +106832,7th Cavalry (Seventh Cavalry) (1956),Western +106839,Mandela: Long Walk to Freedom (2013),Drama +106841,August: Osage County (2013),Comedy|Drama +106848,Gamera: The Giant Monster (Daikaijû Gamera) (1965),Sci-Fi +106852,"Tale of Zatoichi Continues, The (Zoku Zatôichi monogatari) (Zatôichi 2) (1962)",Action|Drama +106854,Angels Sing (2013),Comedy|Drama +106863,Concrete Night (Betoniyö) (2013),Drama +106868,Breaking the Girls (2013) ,Crime|Thriller +106870,Grave Encounters 2 (2012),Horror +106877,My Piece of the Pie (Ma part du gâteau) (2011),Comedy|Drama +106879,Fright Night 2: New Blood (2013),Horror +106881,Sweetwater (2013),Thriller|Western +106883,All is Bright (2013),Comedy|Drama +106887,True Heart (1997),Adventure|Children|Drama +106889,Tim's Vermeer (2013),Documentary +106892,After Tiller (2013),Documentary +106895,Lovecraft: Fear of the Unknown (2008),Documentary +106897,Stuck Between Stations (2011),Comedy|Drama|Romance +106906,Gamera vs. Barugon (1966),Action|Fantasy|Sci-Fi +106914,Rouva presidentti (2012),Documentary +106916,American Hustle (2013),Crime|Drama +106918,"Secret Life of Walter Mitty, The (2013)",Adventure|Comedy|Drama +106920,Her (2013),Drama|Romance|Sci-Fi +106927,RoboGeisha (Robo-geisha) (2009),Action|Comedy|Sci-Fi +106963,"War Between Men and Women, The (1972)",Comedy +106965,Alex & the Gypsy (1976),Comedy|Romance +106967,"April Fools, The (1969)",Comedy|Drama|Romance +106970,Captain Abu Raed (2007),Drama +106972,"Man You Had in Mind, The (2006)",Documentary +106983,Young & Beautiful (2013),Drama +106986,"Life and Adventures of Santa Claus, The (1985)",Animation|Children +106988,Carmina or Blow Up (Carmina o revienta) (2012),Comedy|Drama +106990,Malta G.C. (1942),Documentary|War +106992,Cousin Angelica (La prima Angélica) (1974),Drama +106994,Baboona (1935),Adventure|Documentary +106996,Stakeout on Dope Street (1958),Crime|Drama +106998,Zatoichi Goes to the Fire Festival (Zatôichi abare-himatsuri) (Zatôichi 21) (1970),Action|Drama +107000,"Challenger Disaster, The (2013)",Drama +107002,Linsanity (2013),Documentary +107004,Some Girl(s) (2013),Comedy|Drama +107022,Ski Patrol (1940),Action|War +107024,Sel8nne (2013),Documentary +107028,"Fourth Angel, The (2001)",Action|Drama|Thriller +107039,The Rat Race (1960),Comedy|Drama|Romance +107042,Six by Sondheim (2013),Documentary +107050,Straight from the Heart (2003),Action|Adventure|Drama|Romance|Western +107052,"Punk Singer, The (2013)",Documentary +107061,Urusei Yatsura Movie 2: Beautiful Dreamer (Urusei Yatsura 2: Byûtifuru dorîmâ) (1984),Animation|Comedy|Fantasy +107063,Widows (2002),Crime|Drama +107065,I-See-You.Com (2006),Comedy +107067,Pianomania (2009),Documentary +107069,Lone Survivor (2013),Action|Drama|Thriller|War +107081,Zatoichi on the Road (Zatôichi kenka-tabi) (Zatôichi 5) (1963),Action|Drama +107083,Geography Club (2013),Comedy|Drama|Romance +107085,Measuring the World (Die Vermessung der Welt) (2012),Adventure|Drama +107096,Three Stars (2010),Documentary +107098,"Noose, The (Petla) (1958)",Drama +107100,Sambizanga (1973),Drama +107102,My Amityville Horror (2012),Documentary +107117,"Armstrong Lie, The (2013)",Documentary +107128,"Blood Relatives (Liens de sang, Les) (1978)",Crime|Drama|Mystery|Thriller +107130,"Adventure in Space and Time, An (2013)",Drama +107132,Mountaintop Motel Massacre (1986) ,Horror|Thriller +107137,Star Trek: Of Gods and Men (2007),Action|Adventure|Sci-Fi +107141,Saving Mr. Banks (2013),Comedy|Drama +107143,Kinbaku (2010),Documentary +107147,Last Winter (L'hiver dernier) (2011),Drama +107150,"Disappearance, The (1977)",Drama|Thriller +107153,"Frozen Dead, The (1966)",Horror|Sci-Fi +107155,Captive Women (1000 Years from Now) (3000 A.D.) (1952),Sci-Fi +107157,"Boy and the Pirates, The (1960)",Adventure|Fantasy +107159,Zatoichi and the Chest of Gold (Zatôichi senryô-kubi) (Zatôichi 6) (1964),Action|Drama +107174,La Rabbia (1963),Documentary +107183,"Battle of amfAR, The (2013)",Documentary +107185,Blue Sunshine (1978),Horror|Thriller +107188,Adventures of Zatoichi (Zatôichi sekisho yaburi) (Zatôichi 9) (1964),Action|Drama +107194,Edmund Kean: Prince Among Lovers (Kean) (1924),Drama +107196,Is the Man Who Is Tall Happy? (2013),Animation|Documentary +107199,Reel Rock 8 (2013) ,Documentary +107202,Reel Rock 7 (2012) ,Documentary +107215,Midnight Clear (2006),Drama +107217,The Nutcracker in 3D (2009),Action|Children|Fantasy|Musical +107234,Deadly Surveillance (1991),Action|Drama|Thriller +107236,Those Daring Young Men in Their Jaunty Jalopies (1969),Adventure|Comedy|Crime|Romance +107241,Cowboy del Amor (2005),Documentary +107243,Gregoire Moulin vs. Humanity (Grégoire Moulin contre l'humanité) (2001),Comedy|Romance +107246,"Curse of the Living Dead (a.k.a. Demoniacs, The) (Démoniaques, Les) (1974)",Horror +107248,"Night of the Hunted, The (Nuit des traquées, La) (1980)",Horror|Sci-Fi +107252,Island at War (2004),Drama|War +107262,Zatoichi and the Doomed Man (Zatôichi sakate giri) (Zatôichi 11) (1965),Action|Drama +107274,"Deep, The (Djúpið) (2012)",Drama +107278,Lips of Blood (Lèvres de sang) (1975),Horror +107281,"Gentlemen Don't Eat Poets (Grotesque, The) (1995)",Comedy|Drama|Horror +107291,Annapolis Salute (1937),Drama|Romance +107295,"Last Ride, The (2012)",Drama +107297,Hava Nagila: The Movie (2012),Comedy|Documentary|Musical +107302,"Perfect Man, A (2013)",Drama +107304,Gurren Lagann: Childhood's End (Gekijô ban Tengen toppa guren ragan: Guren hen) (2008),Adventure|Animation|Drama|Sci-Fi|War +107306,Gurren Lagann: The Lights in the Sky are Stars (Gekijô ban Tengen toppa guren ragan: Ragan hen) (2009),Adventure|Animation|Drama|Sci-Fi|War +107309,Una Noche (2012),Drama +107314,Oldboy (2013),Action|Drama|Mystery +107328,"Shiver of the Vampires, The (Frisson des vampires, Le) (1971)",Horror +107334,"Sucker, The (Corniaud, Le) (1965)",Comedy +107338,Dampfnudelblues (2013),Comedy|Crime +107342,Zatoichi and the Chess Expert (Zatôichi Jigoku tabi) (Zatôichi 12) (1965),Action|Drama +107344,Zatoichi's Vengeance (Zatôichi no uta ga kikoeru) (Zatôichi 13) (1966),Action|Drama +107346,Zatoichi's Pilgrimage (Zatôichi umi o wataru) (Zatôichi 14) (1966),Action|Drama +107348,Anchorman 2: The Legend Continues (2013),Comedy +107350,Escape Fire: The Fight to Rescue American Healthcare (2012),Documentary +107352,Killing Lincoln (2013),Drama|War +107354,Good Ol' Freda (2013),Documentary +107357,Call Me Crazy: A Five Film (2013),Drama +107359,What If... (An...) (2012),Drama|Romance +107361,Unbeatable (Ji zhan) (2013),Action|Drama +107368,Sarah Silverman: We Are Miracles (2013),Comedy +107370,Footprints on the Moon (Le orme) (Primal Impulse) (1975),Mystery|Thriller +107372,Happy Family (2010),Comedy +107380,Mike Tyson: Undisputed Truth (2013),Comedy +107382,Whoopi Goldberg Presents Moms Mabley (2013),Documentary +107397,"Take Her, She's Mine (1963)",Comedy +107400,Bonnie and Clyde (2013),Crime|Documentary|Drama +107404,"Executioner, The (Massacre Mafia Style) (1978)",Crime|Drama|Thriller +107406,Snowpiercer (2013),Action|Drama|Sci-Fi +107408,Only Old Men Are Going to Battle (V boy idut odni stariki) (1973),Comedy|Drama|War +107410,Guest from the Future (Gostya iz buduschego) (1985),Adventure|Drama|Sci-Fi +107412,"Kidnapping, Caucasian Style (Kavkazskaya plennitsa) (1967)",Comedy|Romance +107418,Phase 7 (2011),Comedy|Sci-Fi|Thriller +107426,Demons 2 (Dèmoni 2... l'incubo ritorna) (1986),Horror +107430,The Phynx (1970),Comedy +107432,Green Hell (1940),Adventure|Romance +107436,Haunter (2013),Horror|Mystery|Thriller +107442,Two Against Time (2002),Drama +107445,"Big Fix, The (1978)",Comedy|Mystery|Thriller +107447,Wrong Cops (2013),Comedy|Crime +107462,Ninja: Shadow of a Tear (2013),Action|Crime|Thriller +107466,Always (1985),Comedy|Drama +107477,Trinity: Gambling for High Stakes (Odds and Evens) (Pari e dispari) (1978),Comedy|Crime +107481,Free Style (2008),Drama +107501,$ellebrity (Sellebrity) (2012),Documentary +107505,Macabre (Macabro) (1980),Horror|Thriller +107516,Punk's Dead: SLC Punk! 2 (2014),Comedy +107535,Chinese Hercules (1973),Action|Drama +107537,Q (2011),Drama +107539,In the Fog (V tumane) (2012),Drama|War +107541,As Cool As I Am (2013),Comedy|Drama +107546,Everything Happens to Me (a.k.a. Why Did You Pick on Me?) (Chissà perché... capitano tutte a me) (1980),Children|Comedy|Sci-Fi +107548,Ice Quake (2010) ,Action|Sci-Fi|Thriller +107557,Fun Size (2012),Comedy +107561,Someone Like Him (Einer wie Bruno) (2011),Comedy|Drama +107563,"Princess for Christmas, A (2011)",Children|Comedy +107565,"Fuck You, Goethe (Fack Ju Göhte) (2013)",Comedy +107573,Apnea (Apnoia) (2010),Drama +107591,Open Up to Me (Kerron sinulle kaiken) (2013),Drama +107595,"Fly Away (Bis zum Horizont, dann links!) (2012)",Comedy +107603,Heiter bis wolkig (2012),Comedy|Drama|Romance +107614,White Reindeer (2013),Comedy|Drama +107623,"2013 Rock and Roll Hall of Fame Induction Ceremony, The (2013)",Documentary|Musical +107625,Gorko! (2013),Comedy +107630,High School (2010),Comedy +107632,Carmen (1918),Drama +107636,Springsteen & I (2013),Documentary +107638,I Will Fight No More Forever (1975),Action|Drama|War|Western +107645,"Dinner, The (Diner, Het) (2013)",Drama|Thriller +107649,Borgman (2013),Thriller +107653,"Lost Thing, The (2010)",Animation|Drama|Fantasy +107656,Buddy Goes West (Occhio alla penna) (1981),Comedy|Western +107658,Mio in the Land of Faraway (Mio min Mio) (1987),Adventure|Children|Drama|Fantasy|Mystery +107662,Zatoichi's Cane Sword (Zatôichi tekka tabi) (Zatôichi 15) (1967),Action|Adventure|Drama +107664,Wild Women (1970),Action|Western +107669,Our Little Differences (Die feinen Unterschiede) (2012),Drama +107671,Boy Eating the Bird's Food (To agori troei to fagito tou pouliou) (2012),Drama +107673,"Laughing Woman, The (Frightened Woman, The) (Femina ridens) (1969)",Thriller +107675,Vendetta (2013),Action|Crime +107682,Escape to Athena (1979),Action|Adventure|Comedy|War +107684,Smiley (2012),Horror +107690,Pretty Good for a Human (People Not as Bad as They Seem) (Aika hyvä ihmiseksi) (1977),Comedy|Drama +107692,"Hijack That Went South, The (Kaappari) (2013)",Action|Comedy|Crime +107700,I Am Divine (2013),Documentary +107702,Grudge Match (2013),Comedy +107704,Justin Bieber's Believe (2013),Documentary +107707,Dhoom (2004),Action|Crime|Musical|Romance +107710,Marvin Hamlisch: What He Did for Love (2013),Documentary|Musical +107713,Meat the Truth (2008),Documentary +107716,"Citizen, The (2012)",Drama +107723,Highlander: The Search for Vengeance (2007),Action|Adventure|Fantasy +107725,"Botany of Desire, The (2009)",Documentary +107730,By the People: The Election of Barack Obama (2009),Documentary +107732,"Pirates of Penzance, The (2006)",Adventure|Comedy|Musical +107737,Bounty Killer (2013),Action|Sci-Fi|Thriller +107740,"South, The (Lomalla) (2000)",Drama|Thriller +107747,Nude for Satan (Nuda per Satana) (1974),Horror +107752,White Fang (Zanna Bianca) (1973),Adventure +107754,Soundbreaker (2012) ,Documentary +107756,A.C.O.D. (2013),Comedy +107758,Ass Backwards (2013),Comedy +107769,Paranormal Activity: The Marked Ones (2014),Horror|Thriller +107771,Only Lovers Left Alive (2013),Drama|Horror|Romance +107774,When the North Wind Blows (1974),Adventure|Drama +107776,Across the Great Divide (1976),Adventure|Children|Western +107778,Inn of Evil (Inochi bô ni furô) (1971),Crime|Drama +107782,Gold (1934),Crime|Sci-Fi +107827,Swing (2002),Comedy|Drama|Musical +107842,Short Eyes (1977),Drama +107846,MacGyver: Trail to Doomsday (1994),Action|Adventure +107848,Vegucated (2010),Comedy|Documentary +107851,Serrallonga (2008),Adventure|Drama +107853,Scorching Winds (Garm Hava) (Garam Hawa) (1974),Drama +107855,Ditirambo (1969),Comedy|Drama|Mystery|Thriller +107863,Cold Trail (Köld slóð) (2006),Drama|Mystery|Thriller +107865,"Glass-blower's Children, The (Glasblåsarns barn) (1998)",Children|Drama +107867,Restless Souls (Bag det stille ydre) (2005),Drama|Horror|Mystery +107875,Hit Man (1972),Crime|Drama +107877,The Valley of Gwangi (1969),Sci-Fi|Thriller|Western +107879,Voyage to the Prehistoric Planet (1965),Adventure|Sci-Fi +107881,Greenwich Village: Music That Defined a Generation (2012) ,Documentary +107883,The Lunchbox (2013),Drama|Romance +107885,Kauwboy (2012),Drama +107888,"Savage Is Loose, The (1974)",Adventure|Drama +107890,Liberty (1929),Comedy +107901,"Secret, The (2007)",Drama|Romance +107903,Stars (1959),Drama|War +107906,Lost in Siberia (Ausgerechnet Sibirien) (2012),Comedy|Drama +107910,I Know That Voice (2013),Documentary +107912,"Fallen, The (2004)",Action|Drama|War +107916,Yves Saint Laurent (2014),Drama|Romance +107919,Trader Games (Krach) (2010),Action|Drama|Thriller +107949,"Invisible Woman, The (2013)",Drama|Romance +107951,Hunting Elephants (2013),Comedy|Crime +107953,Dragon Ball Z: Battle of Gods (2013),Action|Animation|Fantasy|IMAX +107955,"Snitch Cartel, The (El cartel de los sapos) (2011)",Crime|Drama +107958,Foosball (Metegol) (2013),Adventure|Animation|Romance +107964,Modern Boy (Modeon boi) (2008),Drama +107966,Caught (1987),Drama +107968,"Texican, The (1966)",Adventure|Western +107970,Love and Sex under Nazi Occupation (Amour et sexe sous l'occupation) (2011) ,Documentary +107972,"Gilded Lily, The (1935)",Comedy|Romance +107974,"Bride Comes Home, The (1935)",Comedy|Romance +107976,Family Honeymoon (1949),Comedy|Romance +107984,Massacre Canyon (1954),Western +107987,Diana (2013),Drama|Romance +107990,"We and the I, The (2012)",Drama +108001,To Tulsa and Back: On Tour with J.J. Cale (2005),Documentary +108003,Forsaking All Others (1934),Comedy|Drama|Romance +108005,"Flesh Merchant, The (Wild and Wicked, The) (1956)",Drama +108007,Child Bride (1938),Drama +108010,Magic Town (1947),Comedy|Romance +108012,Grand Isle (1991),Drama +108016,Resistance (2011),Drama|Thriller|War +108041,"Me, Myself and Mum (Les garçons et Guillaume, à table!) (2013)",Comedy +108046,"Soldier's Plaything, A (1930)",Comedy|Drama|Romance|War +108048,"Time for Killing, A (1967)",Western +108050,Summer of '62 (Cartouches gauloises) (2007),Drama|War +108052,Close to Leo (Tout contre Léo) (2002),Drama +108056,Pokémon Origins (2013),Adventure|Animation +108065,Comrade Pedersen (Gymnaslærer Pedersen) (2006),Drama +108072,Fast Food (1989),Comedy +108076,"Other Shore, The (2013)",Adventure|Documentary +108078,Chinese Puzzle (Casse-tête chinois) (2013),Comedy|Romance +108085,+1 (2013),Sci-Fi|Thriller +108122,Absolute Quiet (1936),Drama +108125,Allotment Wives (1945),Crime|Drama|Film-Noir +108136,Lovers and Lollipops (1956),Drama|Romance +108138,Prata Palomares (1972),Horror|Thriller +108141,Creep Van (2012),Horror +108143,Cutie and the Boxer (2013),Documentary +108149,At Berkeley (2013),Documentary +108156,Ride Along (2014),Action|Comedy +108158,Penguin Pool Murder (1932),Comedy|Drama|Mystery|Romance +108160,Breakaway (Speedy Singhs) (2011),Comedy|Drama +108188,Jack Ryan: Shadow Recruit (2014),Action|Drama|Thriller|IMAX +108190,Divergent (2014),Adventure|Romance|Sci-Fi|IMAX +108200,Reasonable Doubt (2014),Crime|Thriller +108202,Heavy Metal Parking Lot (1986),Documentary|Musical +108204,"Geography of Fear, The (Pelon maantiede) (2000)",Crime|Drama|Mystery|Thriller +108206,Honey Baby (2004),Drama +108209,18 Years Old and Rising (J'aime regarder les filles) (2011),Comedy +108212,Saint Laurent (2014),Drama|Romance +108218,"Road to Ruin, The (1934)",Drama +108220,"Square, The (Al Midan) (2013)",Documentary +108237,HOUBA! On the Trail of the Marsupilami (Sur la piste du Marsupilami) (2012),Adventure|Children|Comedy|IMAX +108243,Devil's Due (2014),Horror +108250,Stille nacht (2004),Crime|Mystery|Thriller +108253,Shadow Puppets (2007),Horror|Mystery|Thriller +108255,Venus Wars (Venus Senki) (1989),Action|Animation|Sci-Fi|War +108257,"Adventures of Arsène Lupin, The (Aventures d'Arsène Lupin, Les) (1957)",Crime|Mystery +108265,"Night Walker, The (1964)",Horror|Mystery|Thriller +108271,Whitecoats (2004),Comedy +108282,"First Power, The (1990)",Crime|Horror|Thriller +108285,"Assault, The (L'assaut) (2010)",Action|Thriller +108287,Holiday Spin (2012),Drama|Romance +108289,Flight 93 (2006),Drama +108304,Another Dawn (1937),Adventure|Drama|Romance +108306,Another Dawn (Distinto amanecer) (1943),Drama|Romance|Thriller +108311,Nobody Lives Forever (1946),Crime|Drama|Film-Noir +108313,Dirty Pictures (2000),Drama +108316,American Scary (2006),Comedy|Documentary|Horror +108318,"Single Shot, A (2013)",Crime|Drama|Film-Noir|Thriller +108328,When Darkness Falls (När mörkret faller) (2006),Drama +108332,"Mystery of the Yellow Room, The (Mystère de la chambre jaune, Le) (2003)",Comedy|Crime|Mystery +108342,"Monkey in Winter, A (Un singe en hiver) (1962)",Comedy|Drama +108360,Murders in the Zoo (1933),Crime|Horror|Mystery +108370,Are You Listening? (1932),Drama +108374,"Arizona (Men Are Like That) (Virtuous Wife, The) (1931)",Drama|Romance +108389,We Need a Vacation (Fais-moi des vacances) (2002),Comedy|Drama +108395,Why Not Me? (Pourquoi pas moi ?) (1999),Comedy +108403,"Rock-afire Explosion, The (2008)",Documentary +108405,Weddings and Babies (1958) ,Drama|Romance +108407,Yanco (1961) ,Drama +108425,Hello Herman (2012),Drama +108427,Blume in Love (1973),Comedy|Drama|Romance +108430,Eggshells (1969),Drama|Fantasy +108432,"Guru, The (1969)",Comedy +108445,Concussion (2013),Drama +108447,Atrocious (2010),Horror|Thriller +108466,Curse of the Ring (Ring of the Nibelungs) (2004),Action|Adventure|Drama|Fantasy +108468,Decoding Annie Parker (2013),Drama +108473,"Laterna, ftoheia kai garyfallo (1958)",Comedy|Drama|Romance +108476,"Auntie from Chicago, The (I theia apo to Chicago) (1957)",Comedy|Romance +108479,Forced to Kill (1994),Action|Thriller +108488,Whitewash (2013),Drama +108491,Friends of God: A Road Trip with Alexandra Pelosi (2007),Documentary +108497,Blood Runs Cold (2011),Horror +108499,True Confession (1937),Comedy +108503,Gamera vs. Viras (1968) ,Action|Sci-Fi +108506,Dark Touch (2013),Horror +108508,Mother of George (2013),Drama +108510,Of Snails and Men (Despre oameni si melci) (2012),Comedy +108514,Yeh Jawaani Hai Deewani (2013),Comedy|Drama|Musical|Romance +108516,Visitors (2013),Documentary +108529,Vizontele Tuuba (2004),Comedy|Drama +108534,Easy Money 2 (Snabba cash II) (2012),Action|Crime|Drama +108536,Medora (2013),Documentary +108538,Rampage at Apache Wells (1965),Adventure|Western +108542,Wyoming Renegades (1954),Romance|Western +108544,"Simple Life of Noah Dearborn, The (1999)",Drama +108546,Private Lessons (Élève libre) (2008),Drama +108551,"String, The (Le fil) (2009)",Drama +108564,Love Before Breakfast (1936),Comedy|Romance +108566,"Man Who Sleeps, The (Un homme qui dort) (1974)",Drama +108569,"Monkey's Paw, The (2013)",Horror|Thriller +108571,Mitt (2014),Documentary +108575,Dear Mr. Watterson (2013),Documentary +108579,Samurai Cop (1989),Action|Thriller +108588,Frozen Assets (1992),Comedy +108592,My Son (Mon fils à moi) (2006),Drama +108595,Over Your Cities Grass Will Grow (2010),Documentary +108599,"Banshee Chapter, The (2013)",Horror|Thriller +108601,Drift (2013),Drama +108635,"Beyond the Law (Al di là della legge) (Bloodsilver) (Good Die First, The) (1968)",Western +108637,Al Jennings of Oklahoma (1951),Action|Romance|Western +108639,America (1924),Drama|War +108647,It Boy (20 ans d'écart) (2013),Comedy|Romance +108649,"Redemption of General Butt Naked, The (2011)",Documentary|Drama +108653,"Law of Enclosures, The (2000)",Drama +108656,Report to the Commissioner (1975),Crime|Drama +108658,40 Carats (1973),Comedy +108660,Deceptive Practice: The Mysteries and Mentors of Ricky Jay (2012),Documentary +108663,"House of Branching Love, The (Haarautuvan rakkauden talo) (2009)",Comedy|Drama +108667,Les Feux Arctiques (Arktiset tulet) (2011),Documentary|Drama +108674,Bachelor Apartment (1931),Comedy|Drama|Romance +108676,Backstreet Dreams (Backstreet Strays) (1990),Drama +108679,Bad Bascomb (1946),Western +108687,Gas (1981),Comedy +108689,"I, Frankenstein (2014)",Action|Fantasy|Sci-Fi|IMAX +108696,From the Earth to the Moon (1958),Adventure|Fantasy|Sci-Fi +108699,"Astounding She-Monster, The (Naked Invader, The) (1957)",Crime|Horror|Sci-Fi +108715,Better Living Through Chemistry (2014),Comedy|Drama +108727,Nymphomaniac: Volume I (2013),Drama +108729,Enemy (2013),Mystery|Thriller +108743,Bannerline (1951),Drama +108748,Tapestries of Hope (2009),Documentary +108752,Headquarters (Päämaja) (1970) ,Drama|War +108754,Xingu (2012) ,Adventure|Drama +108756,Adam and Eve (Adão e Eva) (1995),Drama +108758,Temptation (Tentação) (1997),Drama|Romance +108760,Big Bad Wolves (2013),Crime|Thriller +108773,Come Live with Me (1941),Comedy|Romance +108775,Striking Range (2006),Action|Thriller +108778,Stranger by the Lake (L'inconnu du lac) (2013),Drama|Romance +108780,Labor Day (2013),Drama|Romance +108787,Tom at the Farm (Tom à la ferme) (2013),Drama +108789,Beyond the Walls (Hors les murs) (2012),Drama +108791,"Noordzee, Texas (North Sea Texas) (2011)",Drama +108797,Flowers in the Attic (2014),Drama|Mystery|Thriller +108799,Speedway (1929),Drama|Romance +108802,Cry in the Woods (Den som frykter ulven) (2004),Crime|Thriller +108806,Heartbreak Hotel (2006),Comedy +108808,Blackout (1978),Action|Thriller +108811,French Fried Vacation 3 (Les bronzés 3: amis pour la vie) (2006),Comedy +108813,Hammer (1972),Action|Crime|Drama +108825,"Young and Prodigious T.S. Spivet, The (L'extravagant voyage du jeune et prodigieux T.S. Spivet) (2013)",Adventure|Children|Drama +108852,Behind Enemy Lines (1997),Action|Thriller +108857,Manhunt (2008),Horror|Thriller +108864,"Prey, The (La proie) (2011)",Action|Crime|Thriller +108866,"Blank Generation, The (1976)",Musical +108869,Scorned (2013),Thriller +108871,À propos de Nice (1930),Documentary +108873,"Same Love, Same Rain (El mismo amor, la misma lluvia) (1999)",Comedy|Drama|Romance +108877,"Soul of Bread, The (Ai de mian bao hun) (2012)",Comedy|Romance +108879,Teen Beach Movie (2013),Children|Musical +108885,Asier ETA biok (2013),Documentary +108888,Faithless (1932),Drama +108893,Zatoichi Challenged (Zatôichi chikemuri kaidô) (Zatôichi 17) (1967),Action|Drama +108895,Gamera vs. Guiron (1969),Action|Adventure +108899,Gloria (2013),Comedy|Drama +108901,"I, Cesar (Moi César, 10 ans 1/2, 1m39) (2003)",Children|Comedy +108918,Beloved Infidel (1959),Drama|Romance +108920,Berkeley Square (1933),Fantasy|Romance +108924,Best of the Badmen (1951),Western +108928,"Monuments Men, The (2014)",Action|Drama|War +108930,Just Like a Woman (2012),Drama +108932,The Lego Movie (2014),Action|Adventure|Animation|Children|Comedy|Fantasy +108934,We're Not Dressing (1934),Comedy|Musical +108936,Man of the World (1931),Drama|Romance +108938,Aliyah (Alyah) (2012) ,Drama +108940,"Road, The (2011)",Crime|Drama|Horror|Thriller +108942,Dirty Story (1984),Drama +108945,RoboCop (2014),Action|Crime|Sci-Fi|IMAX +108949,"Art of the Steal, The (2013)",Crime +108951,Rain or Shine (1930),Comedy|Drama|Romance +108968,"Betrayed (True and the Brave, The) (1954)",Drama|Romance|Thriller|War +108970,Between Midnight and Dawn (Prowl Car) (1950),Crime|Drama|Film-Noir +108977,Paranoia Agent (2004),Animation|Crime|Drama|Horror|Mystery +108981,Nymphomaniac: Volume II (2013),Drama|Mystery +108983,La Luna (2011),Animation +108993,American Anthem (1986),Drama +108995,Between Two Women (Surrounded by Women) (1937),Drama|Romance +108997,Between Us (2012),Drama +109000,Monsieur Batignole (2002),Comedy|Drama +109002,Song of the Bloodred Flower (Laulu tulipunaisesta kukasta) (1971),Drama +109004,Loputon Gehennan liekki (2011),Documentary +109006,Tukkijoella (1928),Drama +109008,Viper in the Fist (2004),Drama +109010,"Courage of the Eagles, The (Les aiguilles rouges) (2006)",Drama +109015,"Beware the Gonzo (Gonzo Files, The) (2010)",Comedy|Drama|Romance +109017,"Beware, My Lovely (1952)",Crime|Drama|Film-Noir +109019,Bewitched (Alter Ego) (1945),Crime|Drama|Film-Noir|Thriller +109027,Eyjafjallajökull (2013),Comedy +109032,Hornets' Nest (1970),Action|Drama|War +109034,Evidence (1995),Documentary +109038,Schooled: The Price of College Sports (2013) ,Documentary +109042,Knights of Badassdom (2013),Adventure|Comedy|Fantasy +109053,Midsummer (Midsommer) (2003),Drama|Mystery|Thriller +109055,Ten Little Indians (Ein Unbekannter rechnet ab) (And Then There Were None) (1974),Crime|Drama|Mystery +109062,Mustalaishurmaaja (1929),Drama|Romance +109064,"Trials of Muhammad Ali, The (2013)",Documentary +109066,You Ain't Seen Nothin' Yet (Vous n'avez encore rien vu) (2012),Drama +109069,"Lost Reels of Pancho Villa, The (Los rollos perdidos de Pancho Villa) (2003)",Documentary +109072,Sabotage (2014),Action|Crime|Drama +109074,"Four, The (Si da ming bu) (2012)",Action|Crime|Fantasy +109096,Pardes (1997),Action|Comedy|Musical|Romance +109102,"Little Brother, Big Trouble: A Christmas Adventure (Niko 2: Lentäjäveljekset) (2012)",Adventure|Animation|Children|Comedy +109104,Quest for a Heart (Röllin sydän) (2007),Adventure|Animation|Children|Fantasy|Musical +109106,"Wizard of Baghdad, The (1960)",Comedy|Fantasy|Musical +109127,"Beyond the Door (Chi sei?) (Devil Within Her, The) (1974)",Horror +109151,"Elephant in the Living Room, The (2010)",Documentary +109153,Ray Harryhausen: Special Effects Titan (2011),Documentary +109155,That Guy... Who Was in That Thing (2012),Documentary +109157,"Long Way Down, A (2014)",Comedy|Drama +109159,"Three Brothers 2, The (Les trois frères, le retour) (2014)",Comedy +109168,Devil Hunter (El caníbal) (1980),Horror +109177,Don't Go Breaking My Heart (Daan gyun naam yu) (2011),Romance +109179,S.O.S. Eisberg (1933),Adventure|Drama +109181,Adult World (2013),Comedy +109183,Date and Switch (2014),Comedy +109185,Night on the Galactic Railroad (Ginga-tetsudo no yoru) (1985),Animation|Drama +109187,"Zero Theorem, The (2013)",Drama|Fantasy|Sci-Fi +109189,Endless Love (2014),Drama|Romance +109191,Winter's Tale (2014),Drama|Fantasy|Mystery +109193,Me tulemme taas (1953),Comedy|Musical +109197,"Station, The (Blutgletscher) (2013)",Horror +109199,"Theatre Bizarre, The (2011)",Horror +109203,"Story of Ruth, The (1960)",Drama +109205,No Nukes (1980),Documentary|Musical +109209,Fagbug (2009),Documentary +109226,Attila (2013),Action|Horror|Thriller +109229,Beyond the Law (Beyond the Law - Blue) (1968),Comedy|Crime|Drama +109233,Beyond the Purple Hills (1950),Western +109235,Beyond Tomorrow (Beyond Christmas) (1940),Drama|Fantasy|Romance +109237,Bhowani Junction (1956),Adventure|Drama|Romance +109239,Women in Love (2011),Drama +109241,On the Other Side of the Tracks (De l'autre côté du périph) (2012),Action|Comedy|Crime +109243,Joe (2013),Drama +109245,"Inside Man, The (Slagskämpen) (1984)",Action|Mystery|Thriller +109265,Bickford Shmeckler's Cool Ideas (2006),Comedy|Romance +109267,Big Bad Wolf (2006),Comedy|Horror +109271,Big Leaguer (1953),Drama +109273,Big Money Rustlas (Big Money Ru$tla$) (2010),Comedy|Western +109277,Love Story 2050 (2008),Adventure|Comedy|Musical|Romance|Sci-Fi +109280,"Summit, The (2012)",Documentary +109282,GLOW: The Story of the Gorgeous Ladies of Wrestling (2012),Documentary +109290,The African (1983),Adventure|Comedy +109295,Cold Comes the Night (2013),Crime|Drama|Thriller +109313,Chouchou (2003),Comedy +109317,Someone Marry Barry (2014),Comedy +109319,Gamera the Brave (2006),Action|Sci-Fi +109321,"Painting, The (Tableau, Le) (2011)",Animation +109323,Are All Men Pedophiles (2013),Documentary +109325,Climate of Change (2010),Documentary +109330,Bury My Heart at Wounded Knee (2007),Drama|Western +109351,"Cutting Edge: Going for the Gold, The (2006)",Comedy|Drama|Romance +109353,Meet Me at the Fair (1953),Musical +109355,13 Fighting Men (1960),Western +109357,Pretty/Handsome (2008),Drama +109359,Gerontophilia (2013),Comedy|Romance +109362,Mystery (Fu cheng mi shi) (2012),Crime|Mystery|Thriller +109364,"King and the Mockingbird, The (Le roi et l'oiseau) (1980)",Animation|Children|Fantasy +109366,11.6 (2013),Crime|Drama +109368,Nightmare Factory (2011),Documentary +109372,About Last Night (2014),Comedy|Romance +109374,"Grand Budapest Hotel, The (2014)",Comedy|Drama +109376,Cuban Fury (2014),Comedy +109381,"Paimen, piika ja emäntä (1938)",Drama +109383,"Oversimplification of Her Beauty, An (2012)",Animation|Comedy|Drama|Romance +109385,Informant (2012),Documentary +109388,All the Light in the Sky (2012),Drama +109390,"Black Coal, Thin Ice (Bai ri yan huo) (2014)",Crime|Drama|Mystery|Thriller +109392,Blind Massage (Tui na) (2014),Drama +109399,Jailbait (2014),Crime|Drama|Thriller +109418,Scott Joplin (1977),Drama +109420,Mater and the Ghostlight (2006),Animation|Children|Comedy +109423,Your Friend the Rat (2007),Animation +109425,Dug's Special Mission (2009),Animation|Children|Comedy +109441,Satanas (2007),Crime|Drama +109446,Shinobi No Mono 2: Vengeance (Zoku shinobi no mono) (1963),Action|Drama +109448,Rapture (Arrebato) (1980),Drama|Horror +109450,News from Home (1977),Drama +109452,Omar (2013),Drama|Romance +109455,Highway (2014) ,Crime|Drama|Romance +109457,When Pigs Have Wings (2011),Comedy +109459,"Ditchdigger's Daughters, The (1997)",Drama +109461,Supercondriaque (2014),Comedy +109463,7 Boxes (2012),Thriller +109468,Prêt à tout (2014),Comedy +109470,"Brats, The (Les gamins) (2013)",Comedy +109472,Grand Piano (2013),Mystery|Thriller +109474,Satan's Sword (Daibosatsu tôge) (1960),Action|Drama +109476,Satan's Sword II (Daibosatsu toge: Ryujin no maki) (1960),Action|Drama +109479,Satan's Sword 3: The Final Chapter (Daibosatsu toge: Kanketsu-hen) (1961),Action|Drama +109481,"Boob, The (1926)",Comedy|Romance +109483,That Awkward Moment (2014),Comedy|Romance +109485,"Inevitable Defeat of Mister & Pete, The (2013)",Drama +109487,Interstellar (2014),Sci-Fi|IMAX +109489,"Amish Murder, An (2013)",Action|Crime|Drama +109492,"Last of the Unjust, The (Dernier des injustes, Le) (2013)",Documentary +109512,Anna Lucasta (1949),Drama +109524,"Woman Always Pays, The (Afgrunden) (Abyss, The) (1910)",Drama +109529,Everybody Street (2013),Documentary +109533,"Mark, The (1961)",Drama +109559,Billie (1965),Comedy|Musical|Romance +109561,Biography of a Bachelor Girl (1935),Comedy|Romance +109565,Väreitä (1965),Drama +109567,All the Young Men (1960),Drama|War +109569,3 Days to Kill (2014),Action|Crime|Drama +109576,Welcome to the Jungle (2013),Comedy +109578,Non-Stop (2014),Action|Mystery|Thriller +109580,"Look of Love, The (2013)",Comedy|Drama +109596,Wrinkles (Arrugas) (2011),Animation|Drama +109598,Vertical Features Remake (1978),Documentary +109600,"Art of War III: Retribution, The (2009)",Action|Thriller +109602,"Monster X Strikes Back: Attack the G8 Summit, The (Girara no gyakushû: Tôya-ko Samitto kikiippatsu) (2008)",Comedy|Sci-Fi +109607,In Fear (2013),Thriller +109613,One Mile Away (2012),Documentary +109616,Fire in the Blood (2013),Documentary +109621,Tell Them Anything You Want: A Portrait of Maurice Sendak (2009),Documentary +109623,Love Games (2012),Animation|Drama|Romance +109627,Mystery Road (2013),Mystery|Thriller +109629,Breathe In (2013),Drama|Romance +109633,"Garden of Words, The (Koto no ha no niwa) (2013)",Animation|Romance +109635,Pandora's Promise (2013),Documentary +109638,"Gentle Breeze in the Village, A (Tennen kokekkô) (2007) ",Drama +109640,I Don't Want to Be a Man (Ich möchte kein Mann sein) (1918),Comedy|Romance +109643,Always Leave Them Laughing (1949),Comedy|Drama +109645,Behind Office Doors (Private Secretary) (1931),Drama|Romance +109647,Bengazi (1955),Adventure|Crime|Drama +109651,Bird of Paradise (1951),Adventure|Drama|Romance +109653,Bitter Feast (2010),Comedy|Horror|Thriller +109665,Messages Deleted (2010),Mystery|Thriller +109667,Great Freedom No. 7 (Port of Freedom) (Große Freiheit Nr. 7) (1944),Drama|Musical|Romance +109669,"Traveling Executioner, The (1970)",Comedy|Drama|Western +109671,Shinobi No Mono 3: Resurrection (Shin shinobi no mono) (1963),Action|Drama +109673,300: Rise of an Empire (2014),Action|Drama|War|IMAX +109675,"Pill, The (2011)",Comedy|Drama|Romance +109677,"Adventures of Hajji Baba, The (1954)",Action|Adventure|Romance +109680,The Pursuit of Happiness (1971),Drama +109682,"Sumo Do, Sumo Don't (Shiko funjatta) (1992)",Comedy +109684,First Squad: The Moment of Truth (2009),Action|Animation|Drama|War +109687,Particle Fever (2013),Documentary +109697,Inspector Palmu's Error (Komisario Palmun erehdys) (1960),Comedy|Crime|Mystery|Thriller +109701,Any Number Can Play (1949),Drama +109704,Bitter Sweet (1940),Drama|Musical|Romance +109706,Bittersweet Love (1976),Drama|Romance +109708,Black Hand (1950),Crime|Film-Noir|Thriller +109713,Star Wars: Threads of Destiny (2014),Action|Adventure|Sci-Fi +109718,"Leo's Room (Cuarto de Leo, El) (2009)",Drama +109720,Contracted (2013),Drama|Horror|Thriller +109723,"Bag Man, The (2014)",Crime|Drama|Thriller +109726,Dorian Gray (1970),Drama|Horror +109728,Kai Po Che! (2013),Drama +109733,Captain EO (1986),Adventure|Children|Comedy|Musical|Sci-Fi +109736,"Concepción Arenal, la visitadora de cárceles (2012)",Drama +109738,"Bullet for the General, A (Quién Sabe?) (1966)",Western +109740,Obvious Child (2014),Comedy|Romance +109742,Cheap Thrills (2013),Comedy|Thriller +109745,Black Hills (1947),Action|Adventure|Western +109747,"Black Limousine (Land of the Astronauts, The) (2010)",Drama +109764,Steel (1979),Action|Adventure|Crime|Drama +109767,Toomorrow (1970),Comedy|Musical|Sci-Fi +109769,"Keeper of Lost Causes, The (Kvinden i buret) (2013)",Crime|Mystery|Thriller +109771,Dead Genesis (2010),Horror +109773,Crazy Kind of Love (2013),Comedy|Drama|Romance +109776,Dick Figures: The Movie (2013),Action|Adventure|Animation +109779,Choppertown: The Sinners (2005),Action|Adventure|Documentary +109781,"Werewolf Boy, A (Neuk-dae-so-nyeon) (2012)",Drama|Fantasy|Romance +109783,"Trouble at Timpetill (Enfants de Timpelbach, Les) (2008)",Adventure|Children|Fantasy +109786,Carmina and Amen (Carmina y amén) (2014),Comedy|Drama +109790,Ashura (2005),Action|Fantasy +109793,Queen of Outer Space (1958),Adventure|Fantasy|Sci-Fi +109796,Special Correspondents (Envoyés très spéciaux) (2009),Comedy +109798,Buddies (Colegas) (2012),Adventure|Comedy +109800,Quebrando o Tabu (2011),Documentary +109802,"Man from the Future, The (O Homem do Futuro) (2011)",Comedy|Fantasy|Sci-Fi +109808,"Dove, The (1974)",Drama|Romance +109810,Elena Undone (2010),Drama|Romance +109812,Romance in a Minor Key (Romanze in Moll) (1943),Drama|Romance +109833,"Blackbeard, the Pirate (1952)",Adventure +109837,"Blackjack Ketchum, Desperado (1956)",Western +109846,Mr. Peabody & Sherman (2014),Adventure|Animation|Comedy +109848,Under the Skin (2013),Horror|Sci-Fi|Thriller +109850,Need for Speed (2014),Action|Crime|Drama|IMAX +109853,Barefoot (2014),Comedy|Drama|Romance +109858,Entre ses mains (2005),Drama|Romance|Thriller +109864,Veronica Mars (2014),Comedy|Crime|Drama +109867,Kung Fu Tootsie (2007),Action|Comedy +109869,All for the Winner (Dou sing) (1990),Action|Comedy +109881,"She Does Not Drink, Smoke or Flirt But... She Talks (1970)",Comedy +109887,"Great Passage, The (Fune wo amu) (2013)",Drama +109889,Cranford (2007),Drama +109891,Sonny Boy (1989),Action|Drama|Thriller +109893,Chiko (2008),Crime|Drama +109895,Bad Words (2013),Comedy +109897,Son of God (2014),Drama +109902,Fightville (2011),Documentary +109904,Choke (1999),Documentary +109910,Blind Date (2007),Comedy|Drama|Romance +109917,Blond Cheat (Blonde Cheat) (1938),Comedy|Romance +109919,Blonde Fever (1944),Comedy|Drama +109921,Meth (2006),Documentary +109923,You Will Be My Son (Tu seras mon fils) (2011),Drama +109925,"It Is Written in the Stars, Inspector Palmu (Tähdet kertovat, komisario Palmu) (1962)",Crime|Mystery +109929,Superpower (2008),Documentary +109931,Repentance (Monanieba) (1984),Drama +109935,The Artist and the Model (2012),Drama +109941,Puss in Boots: The Three Diablos (2012),Animation|Comedy +109943,Head Over Heels (De Pernas pro Ar) (2010),Comedy +109945,Meu Passado Me Condena: O Filme (2013),Comedy|Romance +109947,My Mom Is a Character (Minha Mãe é uma Peça: O Filme) (2013),Comedy +109949,Blood Out (2011),Action +109951,Daylight (Daglicht) (2013),Action|Thriller +109953,"Cat Concerto, The (1947)",Animation|Children|Comedy +109963,"French Minister, The (Quai d'Orsay) (2013)",Comedy +109968,Why Don't You Play In Hell? (Jigoku de naze warui) (2013),Action|Drama +109971,Ocho apellidos vascos (2014),Comedy +109979,Blonde Inspiration (1941),Comedy|Drama|Romance +109981,Such Good Friends (1971),Comedy|Drama +109983,Sextette (1978),Comedy|Musical|Romance +109985,"Human Factor, The (1979)",Drama|Thriller +109987,Love Simple (2009),Comedy|Romance +109989,On My Way (Elle s'en va) (2013),Comedy|Drama +109991,Spider (2007),Action|Drama +109993,George & A.J. (2009),Animation|Children|Comedy +110004,"Next Man, The (1976)",Action|Thriller +110006,Wanda Nevada (1979),Comedy|Mystery|Romance|Western +110008,"'Human' Factor, The (Human Factor, The) (1975)",Drama|Thriller +110030,"Bless Me, Ultima (2013)",Drama|War +110032,Blondes at Work (1938),Crime|Drama|Mystery|Romance +110034,Blondie of the Follies (1932),Comedy +110042,Schwestern (2013),Comedy +110044,Dragonwyck (1946),Drama|Mystery|Thriller +110046,"Hunting Party, The (1971)",Action|Drama|Western +110048,Grandma's Boy (1922),Action|Comedy|Romance +110052,Stay as You Are (1978),Drama|Romance +110056,Our Modern Maidens (1929),Comedy|Drama +110058,Broderskab (Brotherhood) (2009),Drama +110061,Two Queens and One Consort (Twee vorstinnen en een vorst) (1981),Drama +110063,Le crocodile du Botswanga (2014),Comedy +110065,Stunts (1977),Drama|Mystery +110067,W.W. and the Dixie Dancekings (1975),Comedy +110070,From Within (2008),Horror|Thriller +110088,Blood on the Arrow (1964),Western +110090,Bloodfist (1989),Action +110102,Captain America: The Winter Soldier (2014),Action|Adventure|Sci-Fi|IMAX +110104,Pioneer (Pionér) (2013),Thriller +110106,Naked Harbour (Vuosaari) (2012),Drama +110108,Asphalt Playground (La cité rose) (2012),Comedy +110110,Starred Up (2013),Drama +110114,Kill Me Now (2012),Comedy|Horror +110116,Key of Life (Kagi-dorobô no mesoddo) (2012),Comedy|Crime|Romance +110127,Noah (2014),Adventure|Drama|IMAX +110130,"Nut Job, The (2014)",Adventure|Animation|Children|Comedy +110134,Belle and Sebastien (Belle et Sébastien) (2013),Adventure +110136,Amazonia (2013),Adventure|Documentary +110138,Aya of Yop City (2013),Animation|Comedy +110151,20 Mule Team (1940),Western +110153,"Challenge for Robin Hood, A (1967)",Adventure +110155,"Man Called Adam, A (1966)",Drama +110157,April Showers (1948),Musical +110159,April Showers (2009),Drama +110161,Battle of Rogue River (1954),Western +110163,Aujourd'hui (2012),Drama +110171,Gabrielle (2013),Drama|Romance +110173,Wolf (2013),Crime|Drama|Thriller +110177,Who Is Killing the Great Chefs of Europe? (1978),Comedy|Crime|Mystery +110179,Stardust (1974),Drama +110181,"Green Slime, The (1968)",Drama|Horror|Sci-Fi +110190,Blondie Johnson (1933),Crime|Drama +110194,Mistaken for Strangers (2013),Comedy|Documentary +110198,Don't Stop Believin': Everyman's Journey (2012),Documentary +110200,Blank City (2010),Documentary +110219,Outlaw Blues (1977),Drama +110221,Sky Riders (1976),Action|Adventure +110223,"Prisoner of Zenda, The (1979)",Adventure|Comedy +110225,"Haunted, The (1991)",Horror +110227,Across to Singapore (1928),Drama|Romance +110229,George and the Dragon (2004),Action|Adventure|Children|Comedy|Fantasy +110233,Man at Bath (Homme au bain) (2010),Drama +110235,Our Paradise (Notre paradis) (2011),Crime|Drama +110248,Blue Canadian Rockies (1952),Western +110250,Blue Montana Skies (1939),Comedy|Western +110253,Boarding School (Leidenschaftliche Blümchen) (Preppy School Girls) (1978),Comedy +110255,Kalevala - Uusi aika (2013),Drama|Fantasy +110259,"Town Called Hell, A (1971)",Action|Comedy|Drama|Western +110262,The Other Side of the Mountain: Part II (1978),Drama +110265,"Little Stiff, A (1991)",Comedy +110267,Season of Monsters (Szörnyek évadja) (1987) ,Drama +110269,My Way Home (Így jöttem) (1965) ,Drama +110273,Diplomacy (Diplomatie) (2014),Drama|War +110276,By the Pricking of My Thumbs (Mon petit doigt m'a dit...) (2005),Comedy|Mystery +110278,Partners in Crime (Associés contre le crime...) (2012),Comedy|Crime +110281,King of Comedy (Hei kek ji wong) (1999),Comedy|Drama|Romance +110284,alaskaLand (2013),Drama +110293,Table 7 (2010),Comedy|Drama +110295,"Legend of Hercules, The (2014)",Action|Adventure +110297,Muppets Most Wanted (2014),Adventure|Comedy|Crime +110314,"Me Two (Personne aux deux personnes, La) (2008)",Comedy|Fantasy +110316,"Dinner Guest, The (L'invité) (2007)",Comedy +110318,Do You Wanna Know a Secret? (2001),Horror|Mystery|Thriller +110320,"Man, Woman and the Wall (Kikareta onna no mirareta yoru) (2006)",Drama|Romance|Thriller +110322,Dom Hemingway (2014),Comedy|Crime|Drama +110324,"Missing Picture, The (L'image manquante) (2013)",Documentary +110326,Gleason (2002),Drama +110328,Electrick Children (2012),Drama +110330,Me and you (io e te) (2012),Drama +110339,Night Gallery (1969),Horror|Mystery +110346,Blood Ties (2013),Crime|Drama|Thriller +110350,Free to Play (2014),Documentary +110352,Survival Island (Three) (2005),Adventure|Drama|Horror +110354,Trailer Park Jesus (2012),Comedy|Romance +110372,"Boeing, Boeing (1965)",Comedy +110377,Fiston (2014),Comedy +110380,Nitro Circus: The Movie (2012),Action|Comedy|Documentary +110384,"Last Word, The (1979)",Comedy|Drama +110387,"Unknown Known, The (2013)",Documentary +110399,Boots and Saddles (1937),Action|Western +110401,Boots Malone (1952),Drama +110403,Border Feud (1947),Action|Comedy|Western +110407,"Machine, The (2013)",Sci-Fi|Thriller +110409,"Loves of Pharaoh, The (Das Weib des Pharao) (1922)",Drama|Romance|War +110417,Seizure (1974),Horror +110426,In the Blood (2014),Action|Crime|Thriller +110428,Trouble Man (1972),Action|Crime|Drama +110431,"Girl from the Naked Eye, The (2012)",Action|Romance|Thriller +110433,Möbius (2013),Drama|Thriller +110435,"Sheba, Baby (1975)",Action|Crime|Drama|Thriller +110439,Celestial Wives of the Meadow Mari (Nebesnye zheny lugovykh mari) (2012),Drama +110441,Viva Knievel! (1977),Action +110447,Her Master's Voice (2012),Comedy|Documentary +110449,Sun Don't Shine (2012),Crime|Drama|Mystery +110453,Draft Day (2014),Drama +110457,Detour (2013) ,Thriller +110459,Girls Against Boys (2012) ,Crime|Thriller +110461,We Are the Best! (Vi är bäst!) (2013),Children|Comedy|Drama +110476,Border Treasure (1950),Western +110484,When Jews Were Funny (2013),Documentary +110486,Big Jim McLain (1952),Action|Crime|Drama|Romance|Thriller +110497,"Thirteen, The (Trinadtsat) (1937)",Adventure|War +110501,The Raid 2: Berandal (2014),Action|Crime|Thriller +110503,Metro Manila (2013),Action|Crime|Drama +110505,Sparks (2013),Action|Fantasy|Mystery|Sci-Fi|Thriller +110508,Trancers II (1991),Action|Sci-Fi +110512,"My Lady Margarine (Die Austernprinzessin) (Oyster Princess, The) (1919)",Comedy +110515,Superdad (1973),Comedy +110517,Old Drac (Vampira) (1974),Comedy|Horror +110519,Policewomen (1974),Action|Crime|Drama +110535,"Boy, Did I Get a Wrong Number! (1966)",Comedy +110537,Boys' Night Out (1962),Comedy +110548,"Loving Story, The (2011)",Documentary +110553,The Amazing Spider-Man 2 (2014),Action|Sci-Fi|IMAX +110557,Graceland (2012),Crime|Drama|Thriller +110560,That'll Be the Day (1973),Drama +110562,Dragonfly (1976),Drama +110564,"Slams, The (1973)",Action|Drama +110568,"Terror Beneath the Sea, The (Kaitei daisensô) (1966)",Action|Sci-Fi +110582,16 Acres (2012),Documentary +110584,Shenandoah (2012),Documentary +110586,Calvary (2014),Comedy|Drama +110588,"Iran Job, The (2012)",Documentary +110591,Oculus (2013),Horror +110593,Full House (O. Henry's Full House) (1952),Drama +110597,Angels in the Outfield (1951),Comedy|Fantasy +110599,"Sweet Jesus, Preacherman (1973)",Action|Drama +110601,"Cosmic Monster, The (1958)",Drama|Horror|Sci-Fi +110603,God's Not Dead (2014),Drama +110605,"Spikes Gang, The (1974)",Western +110607,Dinoshark (2010),Horror|Sci-Fi +110609,Our Blushing Brides (1930),Drama +110611,Cold in July (2014),Drama|Thriller +110613,"Second Woman, The (1950)",Drama|Film-Noir|Mystery +110627,Hit Lady (1974),Crime|Drama|Thriller +110629,All American Chump (1936),Comedy +110633,Arsène Lupin (1932),Mystery|Romance +110635,Beauty and the Beast (1962),Children|Fantasy|Horror|Romance +110643,Claustrofobia (2011),Thriller +110647,Lovin' Molly (1974),Drama|Romance +110649,March or Die (1977),Adventure|Drama|Romance|War +110651,"Norseman, The (1978)",Action|Adventure +110653,"Signal, The (Señal, La) (2007)",Drama|Film-Noir|Mystery|Romance +110655,Rio 2 (2014),Adventure|Animation|Children|Comedy +110657,Hiding Cot (Piilopirtti) (1978),Comedy +110671,Cutlet for Three (Ein Schnitzel für drei) (2009),Comedy +110673,Echoes from the Dead (Skumtimmen) (2013),Drama|Mystery +110675,In Your Eyes (2014),Drama|Fantasy|Romance +110678,Bears (2014),Documentary +110686,Breaking Point (2009),Action|Crime|Drama|Thriller +110690,Breakthrough (1950),Drama|War +110692,Bride by Mistake (1944),Comedy +110696,Bridge to the Sun (1961),Drama|Romance|War +110718,Fading Gigolo (2013),Comedy +110730,Transcendence (2014),Drama|Sci-Fi|IMAX +110737,Old Boyfriends (1979),Drama +110739,"Reckoning, The (1969)",Drama +110744,Leo the Last (1970),Comedy|Drama +110746,Hatchet III (2013),Comedy|Horror +110748,Wake Wood (2010) ,Drama|Horror|Mystery +110750,Heaven Is for Real (2014),Drama +110752,Mondo Hollywood (1967),Documentary +110759,Bright Leaf (1950),Drama|Romance +110761,Bright Lights (Adventures in Africa) (1930),Drama|Musical +110763,Made for Each Other (1971),Comedy +110765,Pulling Strings (2013),Comedy|Romance +110769,Bullet Ballet (1998),Crime|Drama|Sci-Fi|Thriller +110771,"Other Woman, The (2014)",Comedy|Romance +110773,"Haunted House 2, A (2014)",Comedy|Horror +110779,What Matters Most (2001),Drama +110788,Jupiter's Darling (1955),Comedy|Musical|Romance +110790,Along the Sungari River (Song hua jiang shang) (1947),Drama +110792,Ghost Adventures (2004),Documentary +110794,Out of the Blue (2002),Documentary +110796,Le Week-End (2013),Comedy|Drama +110805,"Glass Slipper, The (1955)",Musical|Romance +110809,Vampire Academy (2014),Action|Comedy|Fantasy +110811,Dead in the Water (2002),Crime|Thriller +110813,Girl on a Bicycle (2013),Comedy|Romance +110818,Which Way to the Front? (1970),Comedy|War +110820,"Liberation of L.B. Jones, The (1970)",Crime|Drama +110822,Super Fly T.N.T. (1973),Action|Crime|Drama +110826,Brick Mansions (2014),Action|Crime|Drama +110828,Devil's Knot (2013),Crime|Drama|Thriller +110845,Bright Lights (1935),Comedy +110848,Bright Road (1953),Drama +110850,Broadway Melody of 1938 (1937),Musical|Romance +110852,Broadway Rhythm (1944),Musical +110854,Broadway Serenade (1939),Drama|Musical|Romance +110856,Broadway to Hollywood (1933),Musical +110858,Firstborn (1984),Drama|Thriller +110860,"Nature of the Beast, The (1995)",Crime|Horror|Mystery|Thriller +110862,"Private Files of J. Edgar Hoover, The (1977)",Drama +110864,"Master Gunfighter, The (1975)",Western +110867,Conquest 1453 (Fetih 1453) (2012),Action|Adventure|Drama|War +110871,"Rocket, The (2013)",Drama +110880,New Orleans Uncensored (1955),Crime|Drama|Film-Noir|Thriller +110882,Locke (2013),Drama +110884,Shinobi No Mono 4: Siege (1964),Drama|War +110887,"Squeeze, The (1977)",Crime|Drama +110889,"Point Men, The (2001)",Action|Drama +110892,Mortified Nation (2013),Comedy|Documentary +110895,Goya: Crazy Like a Genius (2002),Documentary +110899,Rage (2014),Action|Crime|Thriller +110916,"Study in Scarlet, A (1933)",Mystery|Thriller +110919,All Hands on Deck (1961),Comedy|Musical +110921,Anne of Green Gables (1934),Children|Comedy|Drama +110923,Before Dawn (1933),Drama|Mystery +110925,Belle of the Yukon (1944),Comedy|Musical|Western +110948,September (2013),Drama +110966,Garden Lovers (Eedenistä pohjoiseen) (2014),Documentary +110968,Pompeii (2014),Action|Adventure|Drama +110970,Tout ce qui brille (2010),Comedy|Drama +110973,"Ultimate Accessory,The (100% cachemire) (2013)",Comedy +110975,Donovan's Echo (2011),Drama|Sci-Fi|Thriller +111036,Attack from Space (1965),Action|Sci-Fi +111038,Ten Violent Women (1982),Action|Drama +111042,"Fever in the Blood, A (1961)",Drama +111048,"Good Day to Be Black & Sexy, A (2008)",Drama|Romance +111100,Three Faces East (1930),Drama|Mystery|War +111103,Mumblecore (2011),Drama|Romance +111105,Little Fauss and Big Halsy (1970),Drama +111107,Silver Bears (1978),Comedy|Crime +111109,"Man Who Loved Cat Dancing, The (1973)",Western +111113,Neighbors (2014),Comedy +111115,"Girl, The (Flickan) (2009)",Drama +111119,Man in the Wilderness (1971),Adventure|Western +111124,Trick (2010),Action|Crime +111126,"Gladiators, The (Gladiatorerna) (1969)",Drama|Sci-Fi +111128,"Oh, Sun (Soleil O) (1967)",Drama +111130,Powers of Ten (1977),Documentary +111142,"Resurrection, A (2013)",Horror|Thriller +111150,Always a Bride (1953),Comedy +111230,Henry Kissinger: Secrets of a Superpower (Henry Kissinger - Geheimnisse einer Supermacht) (2008),Documentary +111235,Jodorowsky's Dune (2013),Documentary|Sci-Fi +111237,Unlawful Killing (2011),Documentary +111245,"Case of You, A (2013)",Comedy|Romance +111249,Belle (2013),Drama +111251,"Immigrant, The (2013)",Drama|Romance +111255,"Wednesday!, A (2008)",Action|Drama|Thriller +111257,Blindman (1971),Western +111259,Good People (2014),Drama|Thriller +111261,Heldorado (1946),Musical|Western +111264,"Wild Life, The (1984)",Comedy|Drama +111266,Combat Girls (Kriegerin) (2011),Drama +111283,Tonight You're Mine (2011),Comedy|Drama +111285,Crack-Up (1946),Crime|Film-Noir|Mystery +111287,Magic Magic (2013),Thriller +111290,Heli (2013),Crime|Drama +111303,I Think We're Alone Now (2008),Documentary +111307,Visit to a Chief's Son (1974),Adventure|Drama +111310,Hide in Plain Sight (1980),Drama +111312,Into the Blue 2: The Reef (2009),Action|Adventure|Thriller +111314,Into the Storm (2009),Drama|War +111316,Atomic Rulers of the World (1965),Action|Sci-Fi +111318,City Under Siege (Chun sing gai bei) (2010),Action|Sci-Fi +111320,Mom's Night Out (2014),Comedy +111322,Peeper (1976),Comedy|Mystery +111325,"Neptune Factor, The (1973)",Sci-Fi +111332,Viola (2012),Drama +111343,An Enemy of the People (1989),Drama +111345,Gods of the Plague (Götter der Pest) (1970),Crime|Drama +111349,"Redes (Fishermen's Nets) (Wave, The) (1936)",Drama +111358,"Small Town in Texas, A (1976)",Action|Adventure|Crime|Drama|Romance +111360,Lucy (2014),Action|Sci-Fi +111362,X-Men: Days of Future Past (2014),Action|Adventure|Sci-Fi +111364,Godzilla (2014),Action|Adventure|Sci-Fi|IMAX +111368,Paid (1930),Crime|Drama|Film-Noir +111370,Walter Defends Sarajevo (Valter brani Sarajevo) (1972),War +111373,Lovely Molly (2011),Horror +111375,Walk of Shame (2014),Comedy +111384,Blue Ruin (2013),Thriller +111387,Palo Alto (2013),Drama +111389,Kid Cannabis (2014),Drama +111401,"Home and the World, The (Ghare-Baire) (1984)",Drama +111403,"Stranger, The (Agantuk) (Visitor, The) (1991)",Drama +111405,Trances (1981),Documentary|Musical +111411,Zatoichi at Large (Zatôichi goyô-tabi) (Zatôichi 23) (1972),Action|Adventure|Drama +111439,Legends of Oz: Dorothy's Return (2014),Animation|Children|Musical +111443,Chef (2014),Comedy +111445,"Doll Squad, The (1973)",Action|Thriller +111447,"Treasure Hunter, The (Ci ling) (2009)",Action|Adventure|Fantasy|Romance|Sci-Fi +111449,Burton and Taylor (2013),Drama +111456,"Brasher Doubloon, The (1947)",Crime|Drama|Film-Noir|Mystery +111462,"Beach Girls and the Monster, The (1965)",Horror +111464,Top Banana (1954),Comedy|Musical|Romance +111499,Zatoichi in Desperation (Shin Zatôichi monogatari: Oreta tsue) (Zatôichi 24) (1972),Action|Adventure|Drama +111505,"Love God?, The (1969)",Comedy +111507,"Last Time I Saw Archie, The (1961)",Comedy|Romance|War +111509,24 Exposures (2013),Crime|Drama|Thriller +111515,Zatoichi's Conspiracy (Shin Zatôichi monogatari: Kasama no chimatsuri) (Zatôichi 25) (1973),Action|Drama +111523,50 Kisses (2014),Comedy|Drama|Horror|Romance|Sci-Fi +111525,"Kiss in the Dark, A (1949)",Comedy +111536,"Swiss Conspiracy, The (1976)",Crime|Drama +111538,"Wicked, Wicked (1973)",Horror|Mystery|Thriller +111540,Man Friday (1975),Adventure|Drama +111542,Invaders from Space (1965),Action|Sci-Fi +111551,Afflicted (2013),Horror|Sci-Fi|Thriller +111553,Interior. Leather Bar. (2013),Drama +111560,Affectionately Yours (1941),Comedy|Romance +111562,Ambush at Dark Canyon (Dark Canyon) (2012),Western +111568,American Milkshake (2013),Comedy +111573,Moving Violation (1976),Comedy|Crime|Drama|Thriller +111575,Our Time (1974),Drama|Romance +111578,"Mansion of Madness, The (1973)",Horror +111583,An Enemy of the People (1978),Drama +111585,An Enemy of the People (2005),Drama +111592,Birth of the Living Dead (2013),Documentary +111597,Heroic Duo (Shuang xiong) (2003),Thriller +111599,Lady Ice (1973),Crime|Drama|Thriller +111603,Dark Girls (2011),Documentary +111614,El chocolate del loro (2004),Comedy +111617,Blended (2014),Comedy +111622,Begin Again (2013),Comedy|Romance +111624,Kelly & Cal (2014),Comedy|Drama +111626,"Brony Tale, A (2014)",Documentary +111628,Mega Python vs. Gatoroid (2011),Action|Horror|Sci-Fi +111630,Big Ass Spider! (2013),Comedy|Sci-Fi +111632,"Heat's On, The (1943)",Comedy|Musical +111638,An Enemy of the People (1966),Drama +111647,12 O'Clock Boys (2013),Documentary +111649,"Message to Garcia, A (1936)",Drama|Romance +111653,Nightwing (1979),Horror +111655,Satan's School for Girls (1973),Crime|Horror|Mystery +111657,"One and Only, The (1978)",Comedy|Romance +111659,Maleficent (2014),Action|Adventure|Children|IMAX +111661,"Two Faces of January, The (2014)",Thriller +111663,Zombeavers (2014),Action|Comedy|Horror +111665,Wake Me When It's Over (1960),Comedy +111667,Toward the Unknown (1956),Drama|Romance|War +111678,Army Surgeon (1942),Drama|War +111680,At Middleton (2013),Comedy|Romance +111687,A.C.A.B. All Cats Are Brilliant (Sygxaritiria Stous Aisiodoxous?) (2013),Drama +111689,Loving (1970),Comedy|Drama +111691,"Passage, The (1979)",Action|Drama|War +111696,Beneath the Valley of the Ultra-Vixens (1979),Comedy +111700,"Girl He Left Behind, The (1956)",Comedy|Drama +111702,Shoot-Out at Medicine Bend (1957),Western +111704,Darby's Rangers (1958),Action|Drama|War +111706,Having You (2013),Comedy|Drama +111716,Backfire (1950),Crime|Film-Noir|Mystery|Romance|Thriller +111718,Backfire (Échappement libre) (1964),Adventure|Comedy|Crime +111720,Not My Life (2011),Documentary +111732,"Dance of Reality, The (Danza de la realidad, La) (2013)",Drama|Fantasy +111734,"Love Punch, The (2013)",Comedy +111743,A Million Ways to Die in the West (2014),Comedy|Western +111745,"Cabinet of Caligari, The (1962)",Thriller +111749,Bye Bye Monkey (Ciao maschio) (1978),Comedy|Drama|Fantasy +111752,Empire of Silver (Bai yin di guo) (2009),Drama|Romance +111757,I Like Killing Flies (2004),Documentary +111759,Edge of Tomorrow (2014),Action|Sci-Fi|IMAX +111762,Mikra Anglia (2013),Drama|Romance +111766,"Pied Piper, The (Pied Piper of Hamelin, The) (1972)",Children|Drama|Fantasy|Musical +111774,"Unreal Dream: The Michael Morton Story, An (2013)",Documentary +111776,"Violent Men, The (1955)",Western +111778,Tracks (2013),Adventure|Drama +111781,Mission: Impossible - Rogue Nation (2015),Action|Adventure|Thriller +111789,Gulliver's Travels (1977),Adventure|Animation +111791,"File of the Golden Goose, The (1969)",Crime|Drama|Thriller +111793,Catlow (1971),Comedy|Western +111804,Jack the Ripper (Jess Franco's Jack the Ripper) (1976),Drama|Thriller +111811,Sunlight Jr. (2013),Drama +111813,Narco Cultura (2013),Documentary +111815,Once Upon a Time in Shanghai (2014),Crime +111817,Jimi: All Is by My Side (2013),Drama +111842,Backfire (1988),Drama|Mystery|Thriller +111846,"Bad Boy (Story of Danny Lester, The) (1949)",Drama +111848,Battle Circus (1953),Drama|Romance|War +111852,Generation Iron (2013),Documentary +111854,"X, Y and Zee (Zee and Co.) (1972)",Drama +111856,7500 (2014),Action|Horror|Mystery|Thriller +111868,Best Foot Forward (1943),Comedy|Musical +111872,Black Coffee (2014),Comedy|Romance +111874,Love and Pain and the Whole Damn Thing (1973),Comedy|Drama +111876,"Revolutionary, The (1970)",Action|Drama +111880,Liv & Ingmar (2012),Documentary +111885,Mad Love (Sappho) (1921),Drama|Romance +111887,Bettie Page Reveals All (2012),Documentary +111899,Luv (1967),Comedy +111901,Cinderella (1914),Fantasy|Romance +111913,Lilting (2014),Drama +111915,"Night in Old Mexico, A (2013)",Drama|Western +111917,Teresa (1951),Drama +111919,Cry Terror! (1958),Crime|Film-Noir|Thriller +111921,The Fault in Our Stars (2014),Drama|Romance +111924,"Grand Seduction, The (2013)",Comedy +111931,Raze (2013),Action|Horror +111944,Black Nativity (2013),Drama|Musical +111995,Jayne Mansfield's Car (2012),Drama +111997,Hot Rods to Hell (1967),Action|Drama|Thriller +111999,Princess Tam-Tam (Princesse Tam-Tam) (1935),Comedy|Drama +112001,Rumble on the Docks (1956),Crime|Drama +112015,"13 Frightened Girls! (Candy Web, The) (1963)",Adventure|Comedy|Thriller +112017,"Child Is Born, A (1939)",Drama +112019,Against All Flags (1952),Action|Adventure|Drama|Romance +112021,Andy Hardy Meets Debutante (1940),Comedy|Romance +112023,Annabel Takes a Tour (Annabel Takes a Trip) (1938),Comedy +112056,Backstairs (Hintertreppe) (1921),Drama +112060,One on One (1977),Drama +112062,Camille Claudel 1915 (2013),Drama +112064,"Plot Against Harry, The (1989)",Comedy +112066,"Letter to Momo, A (Momo e no tegami) (2011)",Animation|Drama +112070,Maps to the Stars (2014),Drama +112072,Helen (2009),Drama +112074,Go Fast (2008),Action|Crime|Drama +112076,My Best Enemy (Mein bester Feind) (2011),Comedy|Drama|War +112078,"Wrath of God, The (1972)",Western +112081,"Shape of Things to Come, The (1979)",Sci-Fi +112083,"Case Against 8, The (2014)",Documentary +112085,Goodbye World (2013),Comedy|Drama +112087,Frequencies (2013),Mystery|Romance|Sci-Fi +112095,R.P.M. (1970),Drama +112112,Back in the Day (2014),Comedy +112138,22 Jump Street (2014),Action|Comedy|Crime +112171,"Equalizer, The (2014)",Action|Crime|Thriller +112173,For Ellen (2012),Drama +112175,How to Train Your Dragon 2 (2014),Action|Adventure|Animation +112181,Bambou (2009),Comedy +112183,Birdman: Or (The Unexpected Virtue of Ignorance) (2014),Comedy|Drama +112185,"Outlaw, The (Lope) (2010)",Drama +112187,Saving Grace B. Jones (2009),Drama|Thriller +112204,Bitter Creek (1954),Western +112206,Blackout (Murder by Proxy) (1954),Crime|Drama|Thriller +112212,Blood Shed (2014),Horror +112214,Born Reckless (1937),Action|Adventure|Crime|Drama|Romance +112221,"Tell Me That You Love Me, Junie Moon (1970)",Comedy|Drama|Romance +112224,Play It As It Lays (1972),Comedy|Drama +112229,Crawlspace (2013),Horror|Thriller +112232,Borrowed Trouble (1948),Action|Adventure|Western +112234,Brave Warrior (1952),Western +112236,Broadway Idiot (2013),Documentary|Musical +112242,Brooklyn Babylon (2001),Drama|Romance +112245,"Dirties, The (2013)",Drama +112247,"Mind of Mr. Soames, The (1970)",Drama|Sci-Fi +112249,Mrs. Pollifax-Spy (1971),Adventure|Comedy +112251,Snapshot (1979),Drama|Horror|Thriller +112253,Brainstorm (1965),Drama|Film-Noir|Thriller +112255,Money as Debt (2006),Animation|Documentary +112257,Beginning of an Unknown Era (Nachalo nevedomogo veka) (1967),Drama +112259,Norman... Is That You? (1976),Comedy +112261,I See a Dark Stranger (1946),Romance|Thriller +112273,Brother (Hermano) (2010),Drama +112275,For No Good Reason (2012),Documentary +112277,Haunt (2013),Horror|Mystery +112279,Doc of the Dead (2014),Documentary +112281,I Do (2012),Drama +112283,"Legend of the 7 Golden Vampires, The (1974)",Action|Horror +112288,Coming Home (Gui lai) (2014),Drama +112290,Boyhood (2014),Drama +112293,"Trials of Cate McCall, The (2013)",Crime|Drama +112299,Saints and Soldiers: Airborne Creed (2012),Action|Drama|War +112301,Tall Story (1960),Comedy +112303,Think Like a Man Too (2014),Comedy|Romance +112307,Thin Ice (1937),Comedy|Musical|Romance +112309,"Pool Boys, The (2011)",Comedy +112316,Jersey Boys (2014),Drama|Musical +112320,"Corridor, The (2010)",Horror|Thriller +112326,Nick Fury: Agent of S.H.I.E.L.D. (1998),Action|Sci-Fi +112328,The Pirates of Blood River (1962),Action|Adventure|Comedy +112330,Bitch Hug (Bitchkram) (2012),Drama +112332,Caprice (1967),Comedy|Crime|Thriller +112334,"Internet's Own Boy: The Story of Aaron Swartz, The (2014)",Documentary +112338,Anita (2013),Documentary +112342,"Mother's Courage: Talking Back to Autism, A (2009)",Documentary +112353,"Fine Pair, A (Ruba al prossimo tuo) (1968)",Adventure|Comedy|Crime|Romance +112359,"Woman's Secret, A (1949)",Drama|Film-Noir|Mystery +112361,Amongst Vultures (Unter Geiern) (Frontier Hellcat) (1964),Adventure|Western +112365,"Deadly Trap, The (La maison sous les arbres) (1970)",Drama|Mystery +112367,"Fighting Spirit, The (2007)",Documentary +112370,Transformers: Age of Extinction (2014),Action|Adventure|Sci-Fi +112381,Metalhead (Málmhaus) (2013),Drama +112383,Russian Roulette (1975),Drama|Thriller +112385,Nightmare Circus (1974),Horror +112393,"Bang! Bang! You're Dead! (Our Man in Marrakesh) (Bang, Bang, Bang! Marrakesh) (I Spy, You Spy) (1966)",Comedy +112395,Belle Starr (1941),Western +112399,Finding Vivian Maier (2013),Documentary +112404,Jack Strong (2014),Action|Crime|Thriller +112408,Jennifer (1978),Horror +112412,Perfect Sisters (2014),Drama|Mystery +112419,Beware of Pity (1946),Drama|Romance +112421,Frank (2014),Comedy|Drama|Mystery +112425,Mama's Boy (2007),Comedy|Drama +112432,Sound of Redemption: The Frank Morgan Story (2014),Documentary|Drama|Musical +112434,In Bloom (Grzeli nateli dgeebi) (2013),Drama +112436,Very Good Girls (2014),Drama +112439,Joe's Palace (2009),Drama +112448,Happy Birthday to a Beautiful Woman (2012),Documentary +112450,They Came Together (2014),Comedy|Romance +112452,Questioning Darwin (2014),Documentary +112454,Honey (Miele) (2013),Drama +112458,"Son-Daughter, The (1932)",Drama +112460,Planes: Fire & Rescue (2014),Adventure|Animation|Comedy +112463,Black Gunn (1972),Action|Crime|Thriller +112467,"So Evil, So Young (1961)",Drama +112469,Elaine Stritch: Shoot Me (2013),Documentary|Musical +112471,Wild Oranges (1924),Drama|Romance +112473,Stuart: A Life Backward (2007),Drama +112481,Mrs. Brown's Boys D'Movie (2014),Comedy +112483,Sunburn (1979),Action|Comedy|Crime +112485,Francis (1950),Comedy +112488,"Gunfighter, The (2014)",Action|Comedy|Western +112493,Seven Brothers (Seitsemän veljestä) (1979),Animation|Comedy +112495,Let the Fire Burn (2013),Documentary +112497,Tammy (2014),Comedy +112501,Kabhi Haan Kabhi Naa (1994),Comedy|Drama|Musical|Romance +112506,Radio Free Albemuth (2010),Drama|Sci-Fi +112508,"Friends, The (Les Amis) (1971)",Drama +112510,"Pelican, The (Le Pelican) (1974)",Drama +112512,Colourful (Karafuru) (2010),Animation|Drama|Fantasy|Mystery +112517,Mystery on Monster Island (1981),Adventure|Comedy +112519,Killer Legends (2014),Crime|Documentary +112538,Black Moon (1934),Horror +112540,Bloodhounds of Broadway (1952),Comedy|Musical +112546,Blue (2009),Drama +112548,Brother Rat (1938),Comedy +112550,White God (Fehér isten) (2014),Drama +112552,Whiplash (2014),Drama +112554,Luther (1974),Drama +112556,Gone Girl (2014),Drama|Thriller +112563,Brother Rat and a Baby (1940),Comedy +112565,Brother's Justice (2010),Comedy +112570,Brothers (1977),Drama +112577,Willie & Phil (1980),Comedy|Drama|Romance +112580,"Angriest Man in Brooklyn, The (2014)",Comedy|Drama +112582,Life Itself (2014),Documentary +112591,Finding Fela! (2014),Documentary +112594,Duplicate (1998),Comedy|Crime|Musical +112596,Missing William (2014),Drama +112599,Favor (2013),Thriller +112601,Dogs (1976),Horror|Thriller +112603,A mí las mujeres ni fu ni fa (1971),Comedy|Musical +112612,Golden Needles (1974),Action +112614,Eye of the Cat (1969),Horror +112617,"Amsterdam Kill, The (1977)",Action|Crime|Drama +112621,Chronicle of a Disappearance (1996),Drama +112623,Dawn of the Planet of the Apes (2014),Sci-Fi +112625,The Great Magician (2011),Comedy|Drama|Romance +112635,Tilt (1979),Drama +112637,"Ultimate Warrior, The (1975)",Action|Sci-Fi|Thriller +112640,Ra.One (2011),Action|Musical|Sci-Fi +112642,Gun Woman (2014),Action|Thriller +112644,"Child in the Crowd, A (Un enfant dans la foule) (1976)",Drama +112648,"Rebel, The (Le Rebelle) (1980)",Drama +112650,Watercolors (2008),Drama|Romance +112653,"Battered Bastards of Baseball, The (2014)",Documentary +112655,No One Lives (2012),Horror|Thriller +112657,Unraveled (2011),Documentary +112663,Buckskin Frontier (1943),Action|Western +112670,Bullet Code (1940),Western +112672,Bullet for a Badman (Renegade Posse) (1964),Western +112689,Miss Violence (2013),Drama|Mystery +112693,"Dispatch from Reuter's, A (1940)",Drama +112695,"Modern Musketeer, A (1917)",Adventure|Comedy|Western +112697,After Tonight (1933),Drama|Romance|War +112700,Bachelor Flat (1962),Comedy +112702,"Beg, Borrow or Steal (1937)",Comedy|Romance +112705,"Beast with a Million Eyes, The (1955)",Sci-Fi +112710,"Strange One, The (1957)",Drama +112717,Jusqu'au bout de la nuit (1995),Drama +112719,Mag Wheels (1978),Action|Comedy +112723,"Billy Two Hats (Lady and the Outlaw, The) (1974)",Romance|Western +112725,Buffalo Bill (1944),Western +112727,Deliver Us from Evil (2014),Crime|Horror|Thriller +112729,If I Were You (2012),Comedy|Drama +112731,"Saratov Approach, The (2013)",Action|Drama +112733,Jonestown: Paradise Lost (2007),Documentary +112735,Charlie's Country (2013),Drama +112741,Finding Normal (2013),Comedy|Romance +112743,Margaret Thatcher: The Long Walk to Finchley (2008),Drama +112749,And So It Goes (2014),Comedy|Drama|Romance +112751,Ju-on: The Beginning of the End (Ju-on: Owari no hajimari) (2014),Horror +112753,Torment (2013),Horror|Thriller +112759,Healing (2014),Drama +112762,Hellphone (2007),Comedy|Fantasy +112767,Premature (2014),Comedy +112772,"Brain, The (1988)",Horror|Sci-Fi +112774,"Severed Arm, The (1973)",Crime|Horror +112776,Bloodline (2011),Horror +112780,Panic (2001),Action|Thriller +112782,Darkest Night (2012),Drama|Horror +112788,Sex Tape (2014),Comedy +112792,Operation Ganymed (1977),Sci-Fi +112798,Pick-up Summer (Pinball Summer) (1980),Comedy +112800,Ride Beyond Vengeance (1966),Western +112802,EMR (2004),Thriller +112804,I Origins (2014),Drama|Sci-Fi +112807,Gunbuster (Top wo Narae) (1988),Action|Animation|Drama|Sci-Fi +112809,"Diebuster ""Top wo Narae 2"" (2004)",Action|Animation|Drama|Sci-Fi +112811,"Front Line, The (Go-ji-jeon) (2011)",Drama|War +112814,Wrestling for Jesus: The Tale of T-Money (2011),Documentary +112818,"Purge: Anarchy, The (2014)",Action|Horror|Thriller +112840,Bullets for O'Hara (1941),Crime|Drama|Romance +112842,Bundle of Joy (1956),Comedy|Musical +112846,Bush Christmas (1947),Action|Adventure|Comedy +112850,Words and Pictures (2013),Comedy|Drama|Romance +112852,Guardians of the Galaxy (2014),Action|Adventure|Sci-Fi +112854,"Ghost Goes West, The (1935)",Comedy|Fantasy|Horror|Romance +112856,"Nazi Officer's Wife, The (2003)",Documentary|Drama|War +112866,"Strange Color Of Your Body's Tears, The (L'étrange couleur des larmes de ton corps) (2013)",Mystery|Thriller +112868,"Signal, The (2014)",Sci-Fi|Thriller +112871,"Ballroom, The (Chega de Saudade) (2007)",Drama|Musical|Romance +112877,Busses Roar (Buses Roar) (1942),Drama|Romance|War +112880,But Not for Me (1959),Comedy|Romance +112882,Butcher Boys (Bone Boys) (2012),Action|Comedy|Horror|Thriller +112890,Jimmy's Hall (2014),Drama +112893,Super Hero Party Clown (2010),Comedy|Romance +112895,Willow Creek (2013),Horror|Mystery +112897,The Expendables 3 (2014),Action|Adventure +112901,By Your Leave (1934),Comedy +112905,Goliyon Ki Raasleela Ram-Leela (2013),Drama|Romance +112907,"Villain, The (Ek Villain) (2014)",Action|Romance|Thriller +112909,Kites (2010),Action|Drama|Romance +112911,Hercules (2014),Action|Adventure +112913,Monty Python Live (Mostly) (2014),Animation|Comedy|Musical +112921,Once My Mother (2014),Documentary +112925,Hide Your Smiling Faces (2013),Drama +112929,Paradise: Hope (Paradies: Hoffnung) (2013),Drama +112938,"Detective, The (C+ jing taam) (2007)",Drama|Mystery|Thriller +112940,A Most Wanted Man (2014),Thriller +112942,Sky Murder (1940),Action|Adventure|Crime|Mystery|Thriller +112944,Molly Maxwell (2013),Drama|Romance +112946,Wish I Was Here (2014),Comedy|Drama +112948,Sandakan 8 (Sandakan hachibanshokan bohkyo) (1974),Drama|War +112950,Sex in Chains (Geschlecht in Fesseln) (1928),Drama +112953,Valley of the Dragons (1961),Sci-Fi +112955,Coney Island (1917),Comedy +112957,Never Weaken (1921),Comedy|Thriller +112959,Go for Sisters (2013),Crime|Drama +112961,Playing with Love (Puppy Love) (Maladolescenza) (1977),Drama +112974,C.O.G. (2013),Comedy|Drama +112982,Café Metropole (1937),Comedy|Drama|Romance +112988,Lust for Love (2014),Comedy|Romance +112990,"Pursuit of Unhappiness, The (Anleitung zum Unglücklichsein) (2012)",Romance +112992,Edge of Fear (Ella y el miedo) (1962),Horror +112995,Sorrow and Joy (Sorg og glæde) (2013),Drama +112999,Fugitives (Fugitivas) (2000),Drama|Thriller +113001,Family United (La gran familia española) (2013),Comedy +113008,Cairo (1942),Comedy|Drama|Musical|Romance +113010,Cairo (1963),Crime|Drama +113012,Calendar Girl (Star Dust and Sweet Music) (1947),Musical|Romance +113014,California Conquest (1952),Adventure|Romance|Western +113016,Call Me Bwana (1963),Comedy +113018,Call of the Canyon (1942),Western +113020,Two Tars (1928),Comedy +113024,"Unholy Wife, The (1957)",Crime|Drama +113029,"Keeper, The (2004)",Crime|Drama|Thriller +113033,Rasmus på luffen (1981),Children +113035,"Bachelor Weekend, The (2013)",Comedy|Drama +113037,Finding Bliss (2009),Comedy|Romance +113039,Gracie's Choice (2004),Drama +113041,Father and Guns (De père en flic) (2009),Comedy|Crime +113045,"Boogie (Boogie, el aceitoso) (2009)",Action|Animation|Crime +113048,Tables Turned on the Gardener (1895),Comedy +113058,Call of the Flesh (1930),Musical +113060,Call of the Wild (Call of the Wild 3D) (2009),Adventure|Children|Drama +113062,Hellion (2014),Drama|Thriller +113064,"Trip to Italy, The (2014)",Comedy|Drama +113066,Food (Jídlo) (1993),Animation|Comedy|Fantasy +113068,For a Woman (Pour une femme) (2013),Drama|Romance|War +113071,Earth to Echo (2014),Adventure|Children|Sci-Fi +113073,Two Lives (Zwei Leben) (2012),Drama|Thriller +113080,"Burma Conspiracy, The (Largo Winch II) (2011)",Action|Adventure|Thriller +113083,Westfront 1918 (1930),Drama|War +113085,Black Samurai (1977),Action|Crime +113089,Maidentrip (2014),Documentary +113092,Kidnapped For Christ (2014),Documentary +113099,8-Ball (8-pallo) (2013),Crime|Drama +113101,Overseas and Under Your Skin (Maata meren alla) (2009),Comedy|Drama +113103,Step Up All In (2014),Drama|Musical|Romance +113105,Mystery of the 13th Guest (1943),Crime|Mystery +113107,Invasion of the Star Creatures (1962),Comedy|Sci-Fi +113109,Gog (1954),Drama|Horror|Romance|Sci-Fi|Thriller +113126,Val Lewton: The Man in the Shadows (2007),Documentary +113128,Return to Life (1938),Documentary +113132,"Key, The (1934)",Drama +113139,"Day's Pleasure, A (Ford Story, A) (1919)",Comedy +113141,"Place for Lovers, A (Amanti) (1968)",Drama|Romance +113143,America 3000 (1986),Action|Adventure|Sci-Fi +113145,"Eye for an Eye, An (Oeil pour oeil) (Eyes of the Sahara) (1957)",Drama +113149,Andy Hardy's Blonde Trouble (1944),Comedy|Romance +113152,Sexual Life (2005),Romance +113162,Lowlands (Tiefland) (1954),Drama +113168,Apache Ambush (1955),Western +113170,Around June (2008),Animation|Drama|Fantasy|Romance +113174,Breakfast for Two (1937),Comedy|Romance +113176,C.C. & Company (Chrome Hearts) (1970),Action|Comedy|Drama +113184,Conduct Unbecoming (1975),Crime|Drama|Mystery +113186,Felony (2013),Thriller +113188,"Rover, The (2014)",Crime|Drama +113195,"6,000 Enemies (Six Thousand Enemies) (1939)",Crime|Drama|Romance +113198,Callaway Went Thataway (1951),Comedy|Western +113203,Caine (Shark!) (1969),Action|Adventure|Thriller +113205,L'Italien (2010),Comedy|Drama +113207,Get on Up (2014),Drama|Musical +113209,"Last Mogul, The (2005)",Documentary +113214,1 (2013),Documentary +113216,"Suspect, The (Yong-eui-ja) (2013)",Action|Thriller +113218,Space Milkshake (2012),Comedy|Sci-Fi +113220,"Dog, The (2013)",Documentary +113223,"Fool There Was, A (1915)",Drama +113225,Magic in the Moonlight (2014),Comedy|Drama|Romance +113227,Impudent Girl (L'effrontée) (1985),Comedy|Drama|Romance +113232,National Lampoon's Pucked (2006),Comedy +113234,"Thirty-Nine Steps, The (1978)",Crime|Mystery|Thriller +113236,Abby (1974),Horror +113238,And While We Were Here (2012),Drama +113240,Winter Sleep (Kis Uykusu) (2014),Drama +113244,When I Walk (2013),Documentary +113246,What! No Beer? (1933),Comedy +113250,In Order of Disappearance (Kraftidioten) (2014),Action|Comedy|Crime|Thriller +113252,Housebound (2014),Comedy|Horror|Thriller +113254,Zarafa (2012),Animation +113256,"New Jean-Claude, The (Le nouveau Jean-Claude) (2002)",Comedy|Romance +113263,Very Happy Alexander (Alexandre le bienheureux) (1968),Comedy|Romance +113275,The Hundred-Foot Journey (2014),Comedy|Drama +113280,White Frog (2012),Drama +113284,"Bell for Adano, A (John Hersey's A Bell for Adano) (1945)",Drama|War +113286,"Lady Without Passport, A (1950)",Crime|Drama|Film-Noir +113288,Ambush (1950),Western +113302,"Creeper, The (Rituals) (1977)",Adventure|Horror|Thriller +113304,American Revolutionary: The Evolution of Grace Lee Boggs (2013),Documentary +113306,"Dragon Missile, The (Fei long zhan) (1976)",Action +113309,The Fifth Cord (1971),Mystery|Thriller +113311,Man on a String (1960),Action|Crime|Drama|Thriller +113313,"Den, The (2013)",Horror|Thriller +113315,Zero Motivation (Efes beyahasei enosh) (2014),Comedy|Drama +113317,Before Winter Comes (1969),Comedy|Drama|War +113319,Behind the Headlines (1937),Action|Adventure|Crime|Drama|Romance +113325,Calling Bulldog Drummond (1951),Crime|Mystery +113327,Calling Philo Vance (1940),Crime|Mystery|Thriller +113337,Free Samples (2012),Comedy|Drama +113345,Jupiter Ascending (2015),Action|Adventure|Sci-Fi +113348,Teenage Mutant Ninja Turtles (2014),Action|Adventure|Comedy +113350,I'll Follow You Down (2013),Drama|Mystery|Sci-Fi +113352,Death in Buenos Aires (Muerte en Buenos Aires) (2014),Crime|Drama|Romance +113354,Who the F**K Is Arthur Fogel (2013),Documentary +113368,Kings of South Beach (2007),Drama +113370,Nayak: The Hero (1966),Drama +113374,"Old Lady and the Pigeons, The (La vieille dame et les pigeons) (1997)",Animation|Comedy +113376,"Reckoning, The (2014)",Crime|Mystery|Thriller +113378,"Giver, The (2014)",Drama|Sci-Fi +113380,Only God Knows (Sólo Dios Sabe) (2006),Drama|Mystery|Romance +113394,"Pretty One, The (2013)",Comedy|Drama +113416,Revenge of the Green Dragons (2014),Action|Crime|Drama +113420,Unborn in the USA: Inside the War on Abortion (2007),Documentary +113424,Mr. Wong in Chinatown (1939),Mystery +113430,Cane Toads: The Conquest (2010),Documentary +113432,So Much So Fast (2006),Documentary +113449,Crossroads (1942),Crime|Drama|Film-Noir +113451,Rendezvous (1935),Comedy|War +113453,Let's Be Cops (2014),Comedy|Crime +113457,Can I Do It 'Till I Need Glasses? (1977),Comedy +113459,Paradise (2013),Comedy|Drama +113464,My Way to Olympia (Mein Weg nach Olympia) (2013),Documentary +113466,Far Out Isn't Far Enough: The Tomi Ungerer Story (2012),Documentary +113468,D-Day the Sixth of June (1956),Drama|Romance|War +113474,"Autobiography of Miss Jane Pittman, The (1974)",Drama +113476,"Strangler, The (1964)",Horror +113478,You and Me (Ty i ya) (1971),Drama +113492,Alias a Gentleman (1948),Comedy|Romance +113495,"Act of Murder, An (Live Today for Tomorrow) (1948)",Crime|Drama|Film-Noir +113497,Antboy (2013),Adventure|Children|Comedy +113503,Generation Um... (2012),Drama +113505,Carry On... Up the Khyber (1968),Adventure|Comedy +113507,"Wise Guys, The (Les grandes gueules) (1965)",Comedy|Drama +113510,Switch (2011),Action|Crime|Thriller +113515,Snake River Desperadoes (1951),Western +113521,Bad Johnson (2014),Comedy|Fantasy +113524,Campus Rhythm (Fraternity Sweetheart) (1943),Comedy|Romance +113527,Canyon River (Cattle King) (1956),Western +113532,"Inbetweeners 2, The (2014)",Comedy +113534,Jesse Stone: Thin Ice (2009),Crime|Drama|Mystery +113536,State Affairs (Une affaire d'état) (2009),Thriller +113539,"First Man, The (Le Premier Homme) (2011)",Drama +113541,Sarraounia (1986),Drama|War +113543,Buud Yam (1997),Drama +113545,Primus Hallucino-Genetics Live 2004 (2004),(no genres listed) +113549,Captain Nemo and the Underwater City (1969),Adventure|Children|Fantasy|Sci-Fi +113551,Captain Salvation (1927),Drama|Romance +113553,Breaking Point (1976),Crime|Drama +113555,It Runs in the Family (My Summer Story) (1994),Comedy +113557,Age of Tomorrow (2014),Action|Sci-Fi|Thriller +113559,Osaka Elegy (Naniwa erejî) (1936),Drama +113561,"Wild Party, The (1975)",Comedy|Drama +113563,"Phantom Stagecoach, The (1957)",Western +113565,"Sacrament, The (2013)",Horror|Thriller +113573,Sin City: A Dame to Kill For (2014),Action|Crime|Thriller +113575,Authors Anonymous (2014),Comedy|Drama|Romance +113577,"Last Blitzkrieg, The (1959)",Drama|War +113580,Mary Had a Little... (1961),Comedy +113582,How to Be a Man (2013),Comedy +113585,Fingers at the Window (1942),Drama|Film-Noir|Mystery +113604,If I Stay (2014),Drama +113608,"Circle of Deception, A (1960)",Drama|War +113614,All the Way Home (1963),Drama +113630,"Man Who Couldn't Say No, The (Mies joka ei osannut sanoa EI) (1975)",Comedy|Drama|Romance +113632,"Other F Word, The (2011)",Comedy|Documentary|Drama +113634,"Message from Akira Kurosawa: For Beautiful Movies, A (Kurosawa Akira kara no messêji: Utsukushii eiga o) (2000)",Documentary +113636,Out of Balance: ExxonMobil's Impact on Climate Change (2006),Documentary +113638,"Myriad of Lights (Lights of Ten Thousand Homes, The) (Wanjia denghuo) (1948)",Drama +113640,"Canal, The (2014)",Horror|Thriller +113644,"Split, The (1968)",Crime|Drama +113646,Foreign Letters (2012),Comedy|Drama +113648,Boom! (1968),Drama +113659,Assassination (1967),Drama|Thriller +113663,Bandido (1956),Action|Adventure|War|Western +113668,Barquero (1970),Western +113674,Proxy (2013),Drama|Horror|Thriller +113678,"Result of Love, The (Resultado del Amor, El) (2007)",Drama +113682,Bobbikins (1959),Comedy +113692,Happy New Year (La Bonne Année) (1973),Comedy|Crime|Drama +113696,Are You Here (2014),Comedy +113698,Alligator Eyes (1990),Drama|Film-Noir|Mystery +113701,"Clown and the Kid, The (1961)",Drama +113705,"Two Days, One Night (Deux jours, une nuit) (2014)",Drama +113707,Kummeli V (2014),Comedy +113709,"Trans-Atlantic Tunnel (Tunnel, The) (1935)",Drama|Sci-Fi +113711,Losers' Club (Kaybedenler kulübü) (2011),Comedy|Drama +113717,"Undertaker and His Pals, The (1966)",Comedy|Horror +113721,How the Myth Was Made: A Study of Robert Flaherty's Man of Aran (1978),Documentary +113723,"I Love, You Love (Ja milujem, ty milujes) (1989)",Comedy|Drama|Romance +113725,If Footmen Tire You What Will Horses Do? (1971),Drama +113739,"Space Movie, The (1980)",Documentary +113741,Coherence (2013),Drama|Mystery|Sci-Fi|Thriller +113743,Just a Gigolo (1931),Comedy|Romance +113746,Redwood Highway (2013),Drama +113749,"Scarlet Clue, The (Charlie Chan in the Scarlet Clue) (1945)",Comedy|Crime|Mystery +113751,"Birder's Guide to Everything, A (2013)",Comedy +113755,"Woman's Tale, A (1991)",Drama +113757,Arsène Lupin Returns (1938),Mystery +113765,King's Faith (2013),Drama +113767,Cantinflas (2014),Drama +113769,"Pyramid, The (2014)",Horror +113771,Exists (2014),Horror +113775,Life of Crime (2013),Comedy|Crime +113778,Cat Run 2 (2014),Action +113780,"As Above, So Below (2014)",Horror|Thriller +113783,Hostile Witness (1968),Drama +113790,"Peace, Propaganda & the Promised Land (2004)",Documentary +113793,Reel Bad Arabs: How Hollywood Vilifies a People (2006),Documentary +113795,"Blast, A (2014)",Drama|Thriller +113798,Charlie Chan in the Secret Service (1944),Comedy|Crime|Mystery +113800,"Living Ghost, The (1942)",Comedy|Horror|Mystery|Thriller +113803,Behind That Curtain (1929),Mystery +113806,Big Hearted Herbert (1934),Comedy +113808,Breakout (Danger Within) (1959),Drama|War +113812,Bullet Scars (1942),Crime|Drama +113814,Captain Thunder (1930),Adventure|Drama|Western +113816,Never Make It Home (2011),Documentary|Musical +113829,"One I Love, The (2014)",Comedy|Drama|Romance +113838,"Black Bird, The (1975)",Comedy +113840,See You Next Tuesday (2013),Comedy|Drama +113843,Killing Us Softly 4: Advertising's Image of Women (2010),Documentary +113845,No Logo (2003),Documentary +113847,Killing Us Softly 3 (1999),Documentary +113849,Headshot (2011),Crime|Drama|Thriller +113851,El Niño (2014),Drama|Thriller +113853,Antisocial (2013),Horror|Sci-Fi|Thriller +113855,Faith School Menace? (2010),Documentary +113860,"Codes of Gender, The (2010)",Documentary +113862,"Guest, The (2014)",Thriller +113864,Woodstock Diary (1994),Documentary +113866,Leprechaun: Origins (2014),Horror +113868,To Be Takei (2014),Documentary +113889,Angry Video Game Nerd: The Movie (2014),Adventure|Comedy|Sci-Fi +113895,Zaza (1938),Drama +113898,"Long Ride Home, The (2003)",Romance|Western +113902,"Holy Man, The (Mahapurush) (1965)",Comedy +113904,Bottled Up (2013),Comedy|Drama +113906,"Beast Must Die, The (1974)",Horror|Mystery +113908,Getting Back to Abnormal (2013),Documentary +113911,Vinyl (2000),Documentary +113924,Oklahoma Crude (1973),Comedy|Drama|Western +113933,"Pyx, The (1973)",Crime|Horror|Thriller +113938,Nixon by Nixon: In His Own Words (2014),Documentary +113943,House of Women (1962),Crime|Drama +113945,"Dangerous Profession, A (1949)",Crime|Drama|Film-Noir +113947,"Lady of Chance, A (1928)",Comedy|Drama|Romance +113949,Aaron Loves Angela (1975),Comedy|Drama|Romance|Thriller +113951,Alamo Bay (1985),Action|Drama|Romance +113953,Ann Carver's Profession (1933),Drama +113955,Beauty and the Boss (1932),Comedy|Romance +113970,Mi Amigo Hugo (2014),Documentary +113972,"Dreamworlds II: Desire, Sex, Power in Music Video (1997)",Documentary +113981,Blazing Guns (1943),Adventure|Western +113983,Boy of the Streets (1937),Drama +113989,Cardinal Richelieu (1935),Drama|Romance +113991,Care Bears to the Rescue (Care Bears: To the Rescue Movie) (2010),Adventure|Animation|Children|Fantasy +113995,"Sell Out, The (1976)",Drama +114003,"Return to Homs, The (2013)",Documentary +114007,Before I Go to Sleep (2014),Mystery|Thriller +114009,PAY 2 PLAY: Democracy's High Stakes (2014),Comedy|Documentary +114013,Atlas Shrugged: Who Is John Galt? (Atlas Shrugged: Part III) (2014),Drama|Mystery|Sci-Fi +114015,"Great King, The (Der große König) (1942)",Drama|War +114017,Career (1959),Drama +114028,Pride (2014),Comedy|Drama +114033,Into the Storm (2014),Action|Thriller +114035,"Calling, The (2014)",Thriller +114042,Third Person (2013),Drama|Romance +114044,Honeymoon (2014),Horror +114046,God's Pocket (2014),Drama +114048,Tennessee Johnson (1942),Drama +114060,The Drop (2014),Crime|Drama|Thriller +114062,"Motel Life, The (2012)",Drama|Mystery|Thriller +114064,Pharaoh's Curse (1957),Horror +114066,"20,000 Days on Earth (2014)",Documentary|Drama|Musical +114068,Captivated (2014),Documentary +114070,"Good Job: Stories of the FDNY, A (2014)",Documentary +114072,Cheech and Chong's Animated Movie (2013),Animation|Comedy +114074,The Skeleton Twins (2014),Drama +114078,Seinto Seiya: Legend of Sanctuary (Seinto Seiya: Legend of Sanctuary) (2014),Animation +114085,"Return to Salem's Lot, A (1987)",Horror +114087,Advance to the Rear (1964),Comedy|War|Western +114089,Border Badmen (1945),Western +114091,"Broadway Limited (Baby Vanishes, The) (1941)",Comedy +114093,Camel Spiders (2011),Horror|Sci-Fi +114095,Carnegie Hall (1947),Drama +114122,Dim Sum: A Little Bit of Heart (1985),Comedy +114124,Newsfront (1978),Drama +114126,Beautiful Losers (2008),Documentary +114128,Bullies (1986),Action|Drama|Thriller +114134,Carnival Boat (1932),Adventure|Drama|Romance +114136,Carolina Moon (1940),Western +114138,Carry on Spying (Agent Oooh!) (1964),Comedy +114140,Carson City (1952),Action|Romance|Western +114142,Cast a Dark Shadow (Angel) (1955),Thriller +114146,Castle in the Desert (Charlie Chan in Castle in the Desert) (1942),Comedy|Crime|Mystery|Thriller +114164,Grassroots (2012),Comedy|Drama +114166,"Groundstar Conspiracy, The (1972)",Action|Crime|Mystery|Romance|Sci-Fi|Thriller +114168,Uranium Conspiracy (Agenten kennen keine Tränen) (1978),Action|Drama|Thriller +114170,Tattoo Nation (2013),Documentary +114172,"Shamrock Handicap, The (1926)",Drama|Romance +114174,American Dreams in China (2013),Comedy|Drama +114177,"Naked Face, The (1984)",Action|Mystery|Thriller +114180,"Maze Runner, The (2014)",Action|Mystery|Sci-Fi +114182,No Good Deed (2014),Thriller +114184,Camp X-Ray (2014),Drama +114186,Hori Smoku Sailor Jerry: The Life of Norman K. Collins (2008) ,Documentary +114188,Men Without Women (1930),Action|Drama +114191,Below Sea Level (2008),Documentary +114195,Power and Terror: Noam Chomsky in Our Times (2002),Documentary +114197,Noam Chomsky: Distorted Morality (2003),Documentary +114217,Castle on the Hudson (1940),Crime|Drama +114234,"Uncle Marin, the Billionaire (Nea Marin miliardar) (Uncle Martin, the Multimillionaire) (1979)",Comedy +114238,Homevideo (2011),Drama +114240,Aladdin (1992),Adventure|Animation|Children|Comedy|Fantasy +114244,"Riot Club, The (2014)",Drama|Thriller +114246,"Walk Among the Tombstones, A (2014)",Action|Crime|Mystery|Thriller +114248,"Galapagos Affair: Satan Came to Eden, The (2013)",Crime|Documentary|Mystery +114250,My Old Lady (2014),Comedy|Drama +114252,Thomasine & Bushrod (1974),Action|Crime|Western +114254,1971 (2014),Documentary +114256,"Other One, The (2014)",Drama|Mystery +114263,700 Sundays (2014),Comedy +114265,Laggies (2014),Comedy|Romance +114267,"Confession, The (L'aveu) (1970)",Drama|Thriller +114269,"Well Spent Life, A (1972)",Documentary|Musical +114271,Hot Pepper (1973),Documentary|Musical +114273,Bethlehem (2013),Drama|Thriller|War +114277,God Help the Girl (2014),Drama|Musical|Romance +114280,Misconception (2014),Documentary +114282,"Last Season, The (2014)",Documentary +114286,Cattle Empire (1958),Western +114288,Cattle King (Cattle King of Wyoming) (1963),Western +114292,Cause for Alarm! (1951),Crime|Drama|Film-Noir|Thriller +114329,What We Did on Our Holiday (2014),Comedy +114333,Kivski Freski (1966),Drama +114335,La cravate (1957),(no genres listed) +114337,Dead Within (2014),Drama|Horror|Thriller +114340,Free Range (Ballaad maailma heakskiitmisest) (2013),Drama +114342,Force Majeure (Turist) (2014),Drama +114353,Heavyweights (Schwere Jungs) (2006),Comedy +114355,Good Times (Beste Zeit) (2007),Action|Drama|Thriller +114357,"Best Place to be, The (Beste Gegend) (2008)",Action|Drama|Thriller +114359,Räuber Kneißl (2008),Drama +114361,Die Perlmutterfarbe (2009),Drama +114363,My Life in Orange (Sommer in Orange) (2011),Comedy +114365,Wer's glaubt wird selig (2012),Comedy +114369,"Soldier's Tale, A (1989)",Drama|Romance|War +114371,"Lonely Villa, The (1909)",Crime|Drama +114373,Spasmo (1974),Mystery|Thriller +114376,The Musketeers of Pig Alley (1912),Crime|Drama +114378,CBGB (2013),Drama +114380,Cement (2000),Crime|Drama +114382,Centennial (1978),Action|Adventure|Drama|Romance|Western +114392,"Homesman, The (2014)",Drama|Western +114394,"Center Stage (Ruan Lingyu) (Actress, The) (New China Woman, The) (1991)",Drama|Romance +114396,Cesar Chavez (2014),Drama +114398,Chad Hanna (1940),Drama|Romance +114400,Chain Lightning (1950),Action|Drama +114417,"Average Little Man, An (Un borghese piccolo piccolo) (1977)",Drama +114420,When Eight Bells Toll (1971),Action|Adventure|Crime|Mystery +114422,Never Too Late (1965),Comedy +114426,Trailer Park Boys: Don't Legalize It (2014),Comedy|Crime|Drama +114429,"Uncertainty Principle, The (O Princípio da Incerteza) (2002)",Drama +114433,"Dead Times (Temps morts, Les) (1965)",Animation +114436,"World of Kanako, The (Kawaki.) (2014)",Crime|Drama|Mystery +114439,"November Man, The (2014)",Action|Crime|Thriller +114453,My Girlfriend Is an Agent (Chilgeup gongmuwon) (2009),Action|Comedy|Romance +114455,"Night They Raided Minsky's, The (Night They Invented Striptease, The) (1968)",Comedy +114457,Cold Turkey (1971),Comedy +114459,White Bird in a Blizzard (2014),Drama|Romance|Thriller +114461,"Snails, The (Escargots, Les) (1966)",Animation|Fantasy +114486,"Electric Boogaloo: The Wild, Untold Story of Cannon Films (2014)",Comedy|Documentary +114489,"Occupants, The (2014)",Thriller +114492,Not Cool (2014),Comedy +114494,Who Am I (Kein System Ist Sicher) (2014),Thriller +114505,Loving Couples (1980),Comedy +114510,Gang Tapes (2001),Drama +114514,Corpo Celeste (2011),Drama +114535,Rovaniemen markkinoilla (1951),Comedy|Musical +114550,When Animals Dream (Når dyrene drømmer) (2014),Drama|Horror|Mystery +114552,"Boxtrolls, The (2014)",Adventure|Animation|Children|Comedy|Fantasy +114554,"Tale of Princess Kaguya, The (Kaguyahime no monogatari) (2013)",Animation|Drama|Fantasy +114556,Forbidden City Cop (Dai lap mat tam 008) (1996),Action|Comedy +114561,"Girl on the Train, The (2013)",Thriller +114563,Gore Vidal: The United States of Amnesia (2013),Documentary +114565,Double Play: James Benning and Richard Linklater (2013),Documentary +114567,Looking for Maria Sanchez (2013),Comedy|Romance +114569,"Bullet for Joey, A (1955)",Crime|Drama|Film-Noir|Thriller +114571,"Girl in Every Port, A (1928)",Comedy +114573,"Girl in Every Port, A (1952)",Comedy +114577,Africa: Texas Style (1967),Adventure|Western +114591,Nine Lives (Ni liv) (1957),Action|Adventure|War +114593,"Chasers, The (Jakten) (1959)",Drama|Romance|Thriller +114595,"Bridal Party in Hardanger, The (Brudeferden i Hardanger) (1926)",Drama|Romance +114599,The Empty Hours (2013),Drama|Romance +114601,This Is Where I Leave You (2014),Comedy|Drama +114604,"50 Worst Movies Ever Made, The (2004)",Documentary +114617,Murph: The Protector (2013),Documentary|War +114620,Alice (2005),Drama +114622,"Anyway, He's Definitely Dead (Hur som helst är han jävligt död) (2000)",Comedy +114624,"Barbary Coast Gent (Gold Town) (Honest Thief, The) (1944)",Comedy|Western +114627,Angel's Egg (Tenshi no tamago) (1985),Animation|Drama|Fantasy +114631,"Koumiko Mystery, The (Mystère Koumiko, Le) (1967)",Documentary +114633,Junkopia (1981),Documentary +114635,"Look of Silence, The (2014)",Documentary +114638,"Abdication, The (1974)",Drama +114640,51 (2011),Horror|Sci-Fi +114642,Beyond the Rockies (1932),Western +114652,"Case of the Grinning Cat, The (Chats perchés) (2004)",Documentary +114659,Cabin Fever: Patient Zero (2014),Horror|Sci-Fi|Thriller +114662,American Sniper (2014),Action|War +114667,Fort Bliss (2014),Drama|War +114670,Tusk (2014),Comedy|Drama|Horror +114676,Protector (Protektor) (2009),Drama +114678,Hector and the Search for Happiness (2014),Adventure|Comedy|Drama +114680,Rigor Mortis (Geung si) (2013),Action|Drama|Horror +114683,Romanzo di un giovane povero (1995),Drama +114685,"Dinner, The (Cena, La) (1998)",Comedy|Drama +114687,Unfair Competition (Concorrenza sleale) (2001),Drama|War +114692,"Overnighters, The (2014)",Documentary|Drama +114694,Rock-a-Bye Baby (1958),Comedy +114696,Hollywood or Bust (1956),Comedy|Musical +114698,"Bakeneko: A Vengeful Spirit (Kaibyô nori no numa) (Ghost-Cat Cursed Pond, The) (1968)",Horror +114700,"Tribe, The (Plemya) (2014)",Crime|Drama +114702,Around the Block (2013),Drama +114704,Space Station 76 (2014),Comedy|Drama|Sci-Fi +114713,Annabelle (2014),Horror +114715,American Promise (2013),Documentary +114717,Meg of June Hill (Madicken på Junibacken) (1980),Children +114719,She Devils of the SS (Eine Armee Gretchen) (1973),Drama|Thriller|War +114721,Bugs Bunny's 3rd Movie: 1001 Rabbit Tales (1982),Adventure|Animation|Children|Comedy +114725,"Study in Choreography for Camera, A (1945)",(no genres listed) +114752,Bloody Pit of Horror (Il boia scarlatto) (Virgins for the Hangman) (1965),Horror +114754,Fangs of the Living Dead (Malenka) (1969),Horror +114756,Blood Moon (2001),Drama|Horror +114758,Open Windows (2014),Crime|Thriller +114760,Happy Christmas (2014),Comedy|Drama +114762,Two Night Stand (2014),Comedy|Romance +114764,SS Camp 5: Women's Hell (SS Lager 5: L'inferno delle donne) (1977),Drama|Thriller|War +114766,SS Experiment Love Camp (Lager SSadis Kastrat Kommandantur) (1976),Horror|War +114773,Chained (1934),Drama|Romance +114777,Challenge of the Masters (Liu A-Cai yu Huang Fei-Hong) (1976),Action|Drama +114779,Champagne Charlie (1944),Comedy|Drama|Musical|Romance +114791,Darktown Strutters (Get Down and Boogie) (1975),Action|Comedy|Musical +114793,Time of Eve (Eve no jikan) (2010),Animation|Romance|Sci-Fi +114795,Dracula Untold (2014),Action|Drama|Fantasy +114799,Chandler (1971),Crime|Drama +114803,Changing Hearts (2002),Comedy|Drama|Romance +114805,Charles Bradley: Soul of America (2012),Documentary +114807,Charlie Chan at Monte Carlo (1937),Comedy|Crime|Mystery|Thriller +114809,Charlie Chan at the Circus (1936),Comedy|Crime|Mystery|Thriller +114814,Torrente 3: El protector (2005),Comedy|Crime +114818,Stretch (2014),Action|Comedy|Crime +114832,San Babila-8 P.M. (San Babila ore 20: un delitto inutile) (1976),Drama +114834,Hellgate (1989),Comedy|Horror +114836,"Sleeping Car, The (1990)",Comedy|Horror +114838,"Initiation, The (1984)",Horror|Mystery|Thriller +114842,Room 666 (Chambre 666) (1982),Documentary +114847,Autómata (Automata) (2014),Sci-Fi|Thriller +114849,The Prince (2014),Action|Thriller +114852,As I Lay Dying (2013),Drama +114854,Nicky's Family (2011),Documentary +114856,"Adventurer: The Curse of the Midas Box, The (2013)",Adventure|Fantasy +114859,Charlie Chan at the Olympics (1937),Comedy|Crime|Mystery|Thriller +114861,Charlie Chan at the Opera (1936),Comedy|Musical|Mystery|Thriller +114873,Stereo (1969),Sci-Fi +114875,Crimes of the Future (1970),Comedy|Sci-Fi +114883,Gold of Rome (L'oro di Roma) (1961),Drama +114888,House III: The Horror Show (1989),Horror +114891,Legendary (2010),Drama +114895,London Conspiracy (1974),Action|Mystery +114898,Millie (1931),Drama|Romance +114900,Stranger on the Prowl (Imbarco a mezzanotte) (1952),Drama +114902,"War Boys, The (2009)",Crime|Drama|Romance +114922,Ratko: The Dictator's Son (National Lampoon's Ratko: The Dictator's Son) (2009),Comedy +114925,"Captive, The (2014)",Crime|Drama|Thriller +114928,"Scribbler, The (2014)",Sci-Fi|Thriller +114933,Ilo Ilo (2013),Drama +114935,Predestination (2014),Action|Mystery|Sci-Fi|Thriller +114945,Jack and the Cuckoo-Clock Heart (Jack et la mécanique du coeur) (2013),Adventure|Animation|Drama|Fantasy|Musical|Romance +114947,"Red Tent, The (Krasnaya palatka) (1969)",Adventure|Drama|Fantasy +114954,Facing Fear (2013),Documentary +114958,Moomins on the Riviera (Muumit Rivieralla) (2014),Animation|Children|Comedy +114961,Waiting for the Sea (V ozhidanii morya) (2012),Fantasy +114963,Fara (1999),Drama +114980,Grace Unplugged (2013),Drama|Musical +114984,"Return of Dracula, The (1958)",Horror +114995,Podwórka (2009),Documentary +115004,It's My Mother's Birthday Today (2008),(no genres listed) +115006,Spare Bed-Room (1969),(no genres listed) +115008,Skhizein (2008),Animation|Drama +115019,"Yank on the Burma Road, A (1942)",Drama|War +115023,"Alien Predator (Mutant II) (Falling, The) (1985)",Drama|Horror|Sci-Fi +115027,Appointment in Tokyo (1945),Documentary|War +115038,"Silent One, The (1985)",Adventure|Children|Drama +115040,"Children of Noisy Village, The (a.k.a Children of Bullerby Village, The) (Alla vi barn i Bullerbyn) (1986)",Children +115042,More About the Children of Noisy Village (a.k.a. More About the Children of Bullerby Village) (Mer om oss barn i Bullerbyn) (1987),Children +115060,"Haunted Castle, The (Hiroku kaibyô-den) (1969)",Horror +115065,Justin and the Knights of Valour (2013),Adventure|Animation +115068,"Bride from Hades, The (Botan-dôrô) (Peony Lantern) (Tale of Peonies and Lanterns, A) (1968)",Horror +115071,Jackass Presents: Bad Grandpa .5 (2014),Comedy|Documentary +115075,"Swan Princess: Escape from Castle Mountain, The (1997)",Animation|Children|Fantasy|Romance +115078,Barnacle Bill (1941),Comedy|Drama +115082,Bonnie Prince Charlie (1948),Drama +115084,Born to Love (1931),Drama|War +115122,What We Do in the Shadows (2014),Comedy|Horror +115130,The Dark Horse (2014),Drama +115135,Corn Island (Simindis kundzuli) (2014),Drama +115137,Celine: Through the Eyes of the World (2010),Documentary +115139,Challenge to Lassie (1949),Children|Drama +115145,RiP: A Remix Manifesto (2009),Documentary +115147,The Best of Me (2014),Drama|Romance +115149,John Wick (2014),Action|Thriller +115151,Plastic (2014),Action|Crime +115160,Two Weeks in Another Town (1962),Drama +115162,Reclaim (2014),Drama|Thriller +115164,Good For Nothing (2011),Comedy|Western +115166,Snakes and Earrings (Hebi ni piasu) (2008),Drama|Thriller +115170,"Judge, The (2014)",Drama +115172,"Disappearance of Eleanor Rigby: Them, The (2014)",Drama +115174,Love Is Strange (2014),Drama +115176,Toute la mémoire du monde (1956),Documentary +115178,"Kids, The (Mistons, Les) (Mischief Makers, The) (1957)",Comedy +115203,"Culture High, The (2014)",Documentary +115205,Recipe for Love (2014),Romance +115207,Mount Head (Atama yama) (2002),Animation|Comedy|Drama|Fantasy +115210,Fury (2014),Action|Drama|War +115216,"Salvation, The (2014)",Drama|Western +115218,SIS (2008),Action|Crime|Drama|Thriller +115231,St. Vincent (2014),Comedy +115233,Berlin Babylon (2001),Documentary +115235,Young Ones (2014),Drama|Sci-Fi|Western +115238,"Jungo Goes Bananas: Jungo III (Jungledyret Hugo: Fræk, flabet og fri) (2007)",Adventure|Animation|Children +115240,Land Ho! (2014),Adventure|Comedy|Drama +115242,"Mine, The (2012)",Adventure|Horror|Mystery +115244,Mine Games (2012),Mystery|Thriller +115247,Charlie Chan at the Race Track (1936),Comedy|Crime|Mystery|Thriller +115249,Charlie Chan at the Wax Museum (1940),Comedy|Crime|Mystery|Thriller +115251,Charlie Chan at Treasure Island (1939),Comedy|Crime|Horror|Mystery|Thriller +115254,Charlie Chan Carries On (1931),Mystery +115256,Charlie Chan in City in Darkness (1939),Drama|Mystery|Thriller +115258,Charlie Chan in Honolulu (1938),Comedy|Crime|Horror|Mystery|Thriller +115263,(A)sexual (2011),Documentary +115277,Donkey Hide (Oslinaya shkura) (1982),Children|Comedy|Fantasy|Romance +115279,That Kiljunen Family (Kiljusen herrasväki) (1981),Children|Comedy|Musical +115283,"Purple Ball, The (Lilovyy shar) (1987)",Fantasy|Sci-Fi +115285,Sleeping Beauty (2014),Adventure|Fantasy +115287,Stage Fright (2014),Horror|Musical +115291,"Chaperone, The (2011)",Action|Comedy +115309,"Swan Princess: The Mystery of the Enchanted Treasure, The (1998)",Animation|Children|Fantasy|Mystery +115333,Charlie Chan in Panama (1940),Adventure|Comedy|Crime|Drama|Mystery|Thriller +115335,Charlie Chan in Paris (1935),Comedy|Crime|Drama|Mystery|Thriller +115337,Charlie Chan in Reno (1939),Comedy|Crime|Drama|Mystery|Thriller +115339,Charlie Chan in Rio (1941),Comedy|Crime|Mystery|Thriller +115341,Charlie Chan in The Chinese Cat (1944),Comedy|Crime|Mystery|Thriller +115343,Charlie Chan on Broadway (1937),Comedy|Crime|Mystery|Thriller +115348,"Wise Kids, The (2011)",Drama +115357,"Chair, The (2007)",Drama|Horror|Thriller +115364,"Jungle Creature: Hugo, The (Jungledyret) (Go Hugo Go) (1993)",Animation|Children|Musical|Romance +115373,"Miss and the Doctors (Tirez la langue, mademoiselle) (2013)",Drama|Romance +115376,"Black Sleep, The (1956)",Horror|Sci-Fi +115379,Grave Secrets (Silent Screams) (1989),Horror +115381,"Alexander and the Terrible, Horrible, No Good, Very Bad Day (2014)",Comedy +115386,Charlie Chan's Chance (1932),Mystery +115388,Charlie Chan's Courage (1934),Mystery +115409,"Brothers Rico, The (1957)",Crime|Drama|Film-Noir|Thriller +115412,El malvado Carabel (1956),Comedy +115414,Left Behind (2014),Action|Sci-Fi|Thriller +115417,"Presentation, or Charlotte and Her Steak (Présentation ou Charlotte et son steak) (1960)",Comedy|Romance +115421,"Pleasure Party (Partie de plaisir, Une) (Piece of Pleasure, A) (1975)",Drama +115423,My Father and the Man in Black (2012),Documentary +115437,Blind (2014),Drama +115439,10 minutes (10 minuta) (2002),Drama|War +115460,Motivational Growth (2013),Comedy|Horror +115463,"Dance Party, USA (2006)",Drama +115467,Harmontown (2014),Documentary +115469,You Killed Me First (1985),Drama +115471,Extraterrestrial (2014),Horror|Sci-Fi +115473,Loner (Woetoli) (2008),Horror|Thriller +115475,Blackbird (2012),Drama +115479,"Whip Hand, The (1951)",Action|Adventure|Crime|Drama|Sci-Fi|Thriller|War +115502,"Rewrite, The (2014)",Comedy|Romance +115518,The Mummy's Shroud (1967),Horror +115524,Why Me? (1990),Action|Adventure|Comedy|Crime +115526,Blood from the Mummy's Tomb (1971),Horror +115531,Violette (Violette Nozière) (1978),Crime|Drama|Thriller +115534,Ouija (2014),Horror +115540,Leave The World Behind (2014),Documentary +115543,"Night of Adventure, A (1944)",Crime|Mystery|Romance +115556,Films to Keep You Awake: The Baby's Room (Películas para no dormir: La habitación del niño) (2006),Horror +115558,Amazon Jack 2: The Movie Star (a.k.a. Hugo the Movie Star) (Jungledyret 2 - den store filmhelt) (1996),Animation|Children|Musical|Romance +115560,Hur gick det sen? (1995),Animation|Children +115562,Tiny Heroes (Vacak 2 - az erdõ hõse) (1997),Animation|Children|Musical +115569,Nightcrawler (2014),Crime|Drama|Thriller +115574,Child of God (2013),Crime|Drama|Thriller +115598,Blondie on a Budget (1940),Comedy +115600,"Breaktime, The (Zang-e Tafrih) (Recess) (1972)",Drama +115607,"Seventh Brother, The (A hetedik testvér) (1995)",Animation|Children +115611,Felix the Cat: The Movie (1988),Adventure|Animation|Children|Fantasy|Musical|Sci-Fi +115617,Big Hero 6 (2014),Action|Animation|Comedy +115620,"Bat, The (1926)",Mystery|Thriller +115629,Marshland (2014),Crime|Thriller +115635,"Bad Blonde (Flanagan Boy, The) (Woman Is Trouble, The) (1953)",Drama +115653,Blue Denim (1959),Drama +115664,The Book of Life (2014),Adventure|Animation|Romance +115667,"Love, Rosie (2014)",Comedy|Romance +115669,Young Detective Dee: Rise of the Sea Dragon (Di Renjie: Shen du long wang) (2013),Action|Adventure|Drama|Fantasy|Mystery|IMAX +115671,"Dancing Masters, The (1943)",Comedy|Romance +115673,So Be It (2014),Documentary +115676,Hard Sun (2014),Drama|Romance +115678,"Like Sunday, Like Rain (2014)",Drama|Romance +115680,Time Lapse (2014),Crime|Drama|Sci-Fi|Thriller +115682,Winterhawk (1975),Western +115685,National Theatre Live: Frankenstein (2011),Drama|Sci-Fi +115687,Mad Monster Party? (1967),Children|Comedy|Horror +115692,Blindfold (1965),Comedy|Romance|Thriller +115699,Turning Tide (En solitaire) (2013),Adventure|Drama +115701,Cry Baby Lane (2000),Drama|Horror +115703,"The Hire: Star, The (2001)",Action|Comedy +115705,"Cat Came Back, The (1988)",Action|Animation|Comedy +115708,"Big Snit, The (1985)",Animation|Comedy +115711,TINY: A Story About Living Small (2013),Documentary +115713,Ex Machina (2015),Drama|Sci-Fi|Thriller +115715,Learning to Ride (2014),Drama|Romance +115721,They Have Escaped (He ovat paenneet) (2014),Drama +115724,Separation City (2009),Comedy|Drama|Romance +115727,Crippled Avengers (Can que) (Return of the 5 Deadly Venoms) (1981),Action|Adventure +115746,Runaway (2009),Action|Animation|Comedy +115748,Strange Invaders (2002),Animation|Comedy +115752,Thief of Damascus (1952),Adventure|Fantasy|Romance +115754,Stunt Rock (1980),Action|Drama|Romance +115756,"Cube of Sugar, A (Ye Habe Ghand) (2011)",Comedy|Drama +115759,Dead Men Walk (1943),Drama|Horror|Mystery +115761,Inserts (1974),Comedy|Drama +115763,Heart Beat (1980),Drama +115770,Before I Disappear (2014),Drama +115772,Crimes Against Humanity (2014),Comedy +115775,Mission Congo (2013),Documentary +115777,Beneath (2013),Horror +115779,Great Guns (1941),Comedy|Romance|War +115784,Jitterbugs (1943),Comedy +115789,"Proud Valley, The (1940)",Drama +115791,Bones (2010),Drama +115793,Breaking and Entering (2010),Comedy|Documentary +115795,Bronx Obama (2014),Documentary +115797,Calling Dr. Gillespie (1942),Crime|Drama|Thriller +115799,Chance at Heaven (1933),Drama +115801,Charlie Chan's Greatest Case (1933),Mystery +115819,Mr Hublot (2013),Animation|Comedy +115824,Mr. Turner (2014),Drama +115826,Bound by Flesh (2012) ,Documentary +115828,Copenhagen (2014),Adventure|Drama|Romance +115831,Serial Killer Culture (2014),Crime|Documentary +115834,Charlie Chan's Murder Cruise (1940),Comedy|Crime|Mystery|Thriller +115836,Charlie Chan's Secret (1936),Comedy|Crime|Horror|Mystery|Thriller +115862,"Big Noise, The (1944)",Action|Adventure|Comedy|Romance|War +115864,Hue and Cry (1947),Action|Comedy|Crime +115867,Vai~E~Vem (2003),Comedy|Drama +115871,Mercy (2014) ,Horror|Thriller +115873,"Red Beret, The (1953)",Drama|War +115875,Toy Story Toons: Hawaiian Vacation (2011),Adventure|Animation|Children|Comedy|Fantasy +115879,Toy Story Toons: Small Fry (2011),Adventure|Animation|Children|Comedy|Fantasy +115881,9 (2005),Animation|Fantasy +115883,Boston Strangler: The Untold Story (2008),Crime|Drama|Mystery +115885,Wyatt Earp's Revenge (2012),Action|Adventure|Drama +115887,"Sniper, The (2009)",Action|Thriller +115889,"Deal, The (2007)",Action|Comedy|Thriller +115893,Madame Bovary (2000),(no genres listed) +115895,Cambridge Spies (2003),Drama +115897,Calm at Sea (La Mer à l'aube) (2012),Drama|War +115899,Animal (2005),Drama +115901,"Wedding Video, The (2012)",Comedy +115903,Young Goethe in Love (2011),Drama|Romance +115905,Gibraltar (2013),Crime +115907,"Crew, The (2008)",Action|Crime|Drama|Thriller +115909,"Hit List, The (2011)",Action|Thriller +115911,"Prodigy, The (2005)",Action|Children|Drama|Mystery|Thriller +115913,30 Nights of Paranormal Activity With the Devil Inside the Girl With the Dragon Tattoo (2013),Comedy +115915,"Better Tomorrow III: Love and Death in Saigon, A (1989)",Action|Thriller|War +115917,"Marine 2, The (2009)",Action|Adventure|Drama|Thriller +115919,"Delivery, The (1999)",Action|Adventure|Horror|Thriller +115921,Dead in Tombstone (2013),Action|Fantasy|Horror +115923,Seal Team Eight: Behind Enemy Lines (2014),Action|Drama|War +115925,Solan og Ludvig: Jul i Flåklypa (2013),Animation|Children +115927,Doctor Strange (2007),Action|Animation|Children|Fantasy|Sci-Fi +115929,Barbie: A Perfect Christmas (2011),Animation|Children +115931,LEGO Hero Factory: Savage Planet (2011),Action|Adventure|Animation|Children|Sci-Fi +115933,LEGO Hero Factory: Rise of the Rookies (2010),Action|Children +115935,Tom Sawyer (2000),Adventure|Animation|Children +115937,King Solomon's Mines (2004),Action|Adventure +115939,Joulupukki ja noitarumpu (1996),Animation|Children +115941,The Land Before Time IV: Journey Through the Mists (1996),Adventure|Animation|Children +115943,The Land Before Time V: The Mysterious Island (1997),Adventure|Animation|Children +115945,The Land Before Time VI: The Secret of Saurus Rock (1998),Animation|Children +115947,An American Tail: The Treasure of Manhattan Island (1998),Adventure|Animation +115949,An American Tail: The Mystery of the Night Monster (1999),Adventure|Animation|Children|Fantasy|Mystery|Sci-Fi +115951,Stranded (2013),Horror|Sci-Fi +115953,Special Forces (2003),Action|Thriller|War +115955,Category 7: The End of the World (2005),Action|Drama|Thriller +115957,The Jayne Mansfield Story (1980),Drama +115961,The Marine 3: Homefront (2013),Action +115963,The Stoker (2010),Crime|Drama +115965,Dead Man's Bluff (2005),Action|Comedy|Crime +115967,These Final Hours (2014),Drama|Thriller +115969,Generation War (2013),Drama|War +115971,Kung Fu Dunk (2008),Action|Adventure|Comedy +115973,Haider (2014),Crime|Drama|Romance +115975,The Fifth Season (2012),Drama +115977,Auschwitz: The Nazis and the 'Final Solution' (2005),Documentary +115979,Puerto Vallarta Squeeze (2004),Action|Adventure|Thriller +115981,Soccer Dog 2: European Cup (2004),Children +115983,The Veteran (2006),Drama|War +115985,Going Back (2001),Action|Drama|War +115987,The Circle (2002),Thriller +115989,American Soldiers (2005),Action|Drama|Thriller|War +115991,"Kumiko, the Treasure Hunter (2014)",Comedy|Drama +115994,The great match (2007),Comedy +115996,Stereo (2014),Thriller +115998,The Guardians (2012),Action|Thriller +116000,Starship Invasions (1977),Sci-Fi +116002,History of the Eagles (2013),Documentary +116004,Paradise: Love (2012),Drama +116006,Beyond the Border (2011),Action|Drama|War +116008,Everything Will Be Fine (2010),Drama|Thriller +116010,The Hour of the Lynx (2013),Drama|Thriller +116012,The Young Savages (1961),Crime|Drama +116014,Rage (1972),Drama +116016,Good Luck. And Take Care of Each Other (2012),Comedy|Drama +116018,Chasing Madoff (2010),Documentary +116020,Chasing Rainbows (1930),Comedy|Drama|Romance +116022,Chatterbox (1936),Comedy|Drama|Romance +116024,Northern Soul (2014),Drama +116026,Checking Out (2006),Comedy +116028,Children of the Corn (2009),Drama|Horror|Thriller +116030,Children of the Corn 666: Isaac's Return (1999),Horror|Mystery +116032,Children of the Corn V: Fields of Terror (1998),Horror|Thriller +116034,Children of the Corn: Genesis (2011),Horror|Thriller +116036,Children of the Corn: Revelation (2001),Horror|Thriller +116038,Chile can do it (2008),Comedy|Sci-Fi +116042,Christine (1958),Drama +116044,Christmas in Connecticut (1992),Comedy|Romance +116046,Christmas Oranges (2012),(no genres listed) +116048,Cleopatra (2003),Comedy|Drama +116050,Cleopatra (1999),Drama|Romance +116052,Cliente (2008),Drama|Romance +116054,Clockwork Mice (1995),(no genres listed) +116056,Coach (2010),Comedy|Romance +116058,Coast to Coast (2004),Drama +116060,Code Name: Emerald (1985),Action|Drama|War +116062,Cohen and Tate (1988),Crime|Thriller +116064,Cold Around the Heart (1997),Crime|Drama|Thriller +116066,Cold Blooded (2012),Crime|Thriller +116068,Cold Heart (2001),Romance|Thriller +116070,"Cole Younger, Gunfighter (1958)",Western +116072,Colleen (1936),Drama|Romance +116074,College Coach (1933),Drama +116076,Intersections (2013),Romance|Thriller +116078,Colorado (1940),Action|Western +116080,Torture Garden (1967),Horror +116082,British Sounds (1970),Documentary +116084,Here and Elsewhere (1976),Documentary +116086,Meetin' WA (1986),Documentary +116088,Keep Your Right Up (1987),Comedy|Drama +116090,A Night in the Show (1915),Comedy +116092,By the Sea (1915),Comedy +116094,Mabel's Married Life (1914),Comedy +116096,Lettera Amorosa (1995),(no genres listed) +116098,Passeio com Johnny Guitar (1996),(no genres listed) +116100,Conserva Acabada (1990),(no genres listed) +116102,O Amor das Três Romãs (1979),Drama +116104,Sophia de Mello Breyner Andresen (1969),Documentary +116106,Death of a Nation - The Timor Conspiracy (1994),Documentary +116108,The Secret Country: The First Australians Fight Back (1986),Documentary +116112,Elsk meg i morgen (2005),Comedy +116114,Colorado Serenade (1946),Western +116116,Colt .45 (1950),Action|Western +116118,Colt Comrades (1943),Western +116120,Comanche Territory (1950),Action|Adventure|Western +116122,Comin' Round the Mountain (1951),Comedy|Musical +116124,Coming Soon (1999),Comedy|Romance +116126,Complicit (2013),(no genres listed) +116128,Compulsion (2013),Drama|Thriller +116130,Con Express (2002),Action|Thriller +116132,Concrete Blondes (2013),Action|Comedy|Crime +116134,Coney Island (1943),Comedy|Musical +116136,Olive Kitteridge (2014),Drama +116138,Leviathan (2014),Drama +116141,The Russian Novel (2013),Drama +116155,Still Life (2013),Drama +116157,Electronic Labyrinth THX 1138 4EB (1967),Sci-Fi +116159,Level Five (1997),Documentary|Romance|War +116161,Foxcatcher (2014),Drama +116163,Jive Turkey (1974),Action +116165,Illusion Of Blood (1965),Fantasy|Horror +116167,Ladies of Leisure (1930),Romance +116169,Reign of Assassins (2010),Action +116171,Everybody Dies But Me (2008),Drama +116173,Three on a Weekend (1938),Drama +116175,The Emperor's Candlesticks (1937),Drama|Romance +116177,Romance in Manhattan (1935),Comedy|Romance +116179,Sazen Tange and the Pot Worth a Million Ryo (1935),Comedy|Drama +116181,The Princess Comes Across (1936),Comedy|Mystery|Romance|Thriller +116183,It's Love I'm After (1937),Comedy +116185,Thirty Day Princess (1934),Comedy|Romance +116187,You Belong to Me (1941),Comedy|Romance +116189,Personal Property (1937),Comedy|Romance +116191,Wolf Creek 2 (2013),Horror|Thriller +116193,Two-Faced Woman (1941),Comedy|Romance +116195,Love Is News (1937),Comedy|Romance +116197,Dark Journey (1937),Adventure|Romance|Thriller +116199,Storm Warning (2007),Horror +116201,Blind Alley (1939),Crime +116203,The Last Journey (1936),Crime|Drama +116205,The Clinic (2010),Horror|Thriller +116207,Zulu (2013),Crime|Drama|Thriller +116209,The Road to Glory (1936),Drama|War +116211,The Sign of Four: Sherlock Holmes' Greatest Case (1932),Mystery +116213,Walking With Dinosaurs (2013),Adventure|Animation|Children +116215,"Ultramarines: A Warhammer 40,000 Movie (2010)",Animation|Sci-Fi +116217,Secret of the Wings (2012),Adventure|Animation|Children|Fantasy +116219,Tinker Bell and the Lost Treasure (2009),Adventure|Animation|Children|Fantasy +116221,Tyson (1995),Drama +116223,The Conductor (2012),Drama +116225,Tsar (2009),Drama +116227,Taxi Blues (1990),Drama +116229,Roots (2005),Comedy|Drama +116231,Confessions of an Opium Eater (1962),Drama +116233,Confidence Girl (1952),Crime|Drama|Thriller +116235,Confidentially Connie (1953),Children|Comedy +116237,Conquest of Cochise (1953),(no genres listed) +116239,The Conquest of the Air (1936),Drama +116241,Conspiracy (1930),Mystery +116243,Convicted (1931),Drama|Thriller +116245,Convicts (1991),Drama +116247,Convicts 4 (1962),Drama +116249,Cool Blue (1990),Comedy|Romance|Thriller +116251,Cool Dog (2011),Children +116253,IMAX: Coral Reef Adventure (2003),Children|Documentary|IMAX +116255,Cost Of A Soul (2011),Action|Crime|Drama +116257,Cougar Club (2007),Comedy +116259,Courage of Lassie (1946),Adventure|Children|Drama +116261,Wuthering Heights (2009),Drama +116263,Cowboy and the Senorita (1944),Western +116265,Cowgirls n' Angels (2012),Children|Drama +116267,Craig Ferguson: Does This Need to Be Said? (2011),Comedy +116271,D.L. Hughley: Reset (2014),Comedy +116273,D.L. Hughley: Unapologetic (2007),Comedy +116275,Dane Cook: Vicious Circle (2006),Comedy +116277,Crawlspace (1972),Drama|Horror|Thriller +116279,Crazy (2007),Drama|Romance +116281,Crazy Eights (2006),Horror +116283,And So It Is (1966),Drama +116285,Crazy Mama (1975),Action|Comedy +116287,"Crime and Punishment, USA (1959)",(no genres listed) +116289,Crime and Punishment (1983),Crime|Drama +116291,Light Years Away (1981),Drama +116295,Critic's Choice (1963),Comedy|Romance +116297,Cutaway (2000),Action|Thriller +116299,Sniper: Legacy (2014),Action|Thriller +116301,Catch Hell (2014),Drama|Thriller +116305,Pentimento (1979),Drama +116307,You're Not You (2014),Drama +116309,Crime in the Streets (1956),Crime +116311,Crisis (1950),Drama|Thriller +116313,Cross My Heart (1987),Comedy|Romance +116315,Crush (2009),Drama|Horror|Thriller +116317,Crush (2013),Thriller +116319,Crusoe (1988),Action|Adventure|Drama +116321,Cry 'Havoc' (1943),Drama|War +116323,Cry of the City (1948),Crime|Drama +116325,Curandero (2005),Horror +116327,Curse of the Blood Ghouls (1962),Horror +116329,Curse of the Starving Class (1994),Drama +116331,Cyborg 3: The Recycler (1995),Action|Sci-Fi +116333,Cyborg Cop (1993),Action|Sci-Fi +116335,Cyborg Cop II (1994),Action|Sci-Fi +116337,Cyborg Cop III (1995),Action|Sci-Fi|Thriller +116339,Cynthia (1947),Comedy|Drama +116341,Dana Carvey: Squatting Monkeys Tell No Lies (2008),Comedy +116343,Dave Attell: Captain Miserable (2007),Comedy +116345,Dakota's Summer (2014),Children +116347,Danger Zone (1996),(no genres listed) +116349,Dangerous Mission (1954),Action|Mystery|Thriller +116351,Charlie Chan in Dangerous Money (1946),Crime|Mystery +116387,Muddy River (1981),Drama +116397,Stonehearst Asylum (2014),Thriller +116399,Russia 88 (2009),Drama +116401,Strawberry Wine (2009),Drama +116403,The Third Half (2012),Drama|Romance +116405,A Star Athlete (1937),Comedy|Drama +116407,Snake Woman's Curse (1968),Horror +116409,Aglaya (2012),Drama +116411,Tangerines (2013),Drama +116413,Life Partners (2014),Comedy|Romance +116415,Anatomy of a Love Seen (2014),Drama|Romance +116417,The Snow Woman (1968),Fantasy|Horror +116419,Drive Hard (2014),Action|Comedy|Crime +116421,The Ghost Story of Oiwa's Spirit (1961),Horror +116423,An Apology to Elephants (2013),Documentary +116425,Ecstasy in Entropy (1999),(no genres listed) +116427,Air Raid Wardens (1943),Children|Comedy +116429,Alias the Doctor (1932),Drama +116431,Now! (1967),Documentary +116433,America's Most Haunted Inns (2004),Documentary +116435,Building the Inferno: Nobuo Nakagawa and the Making of 'Jigoku' (2006),Documentary +116437,"Baby Peggy, the Elephant in the Room (2012)",Documentary +116439,Captain January (1924),Drama +116441,Heart of a Lion (2013),Comedy|Drama|Romance +116443,Counterplot (1959),Crime|Drama +116445,Crazy Enough (2013),Comedy +116447,Dark of the Sun (1968),Action|Adventure|Drama|War +116449,Endless Love (1993),Drama|Romance +116451,Frisco Kid (1935),Adventure|Romance +116453,Hateship Loveship (2013),Drama +116455,Heart Of Dixie (1989),Drama +116457,Hearts Divided (1936),Drama|Romance +116459,Hong Kong Confidential (1958),Action|Drama|Thriller +116461,How the Toys Saved Christmas (1996),Animation|Children +116463,Ice Castles (2010),Drama|Romance +116465,In Secret (2013),Crime|Drama|Romance|Thriller +116467,It's a Small World (1950),Comedy +116469,Kickboxer 5 (1995),Action|Thriller +116471,Kiki (1926),Comedy +116473,Kiki (1931),Musical +116475,King of the Khyber Rifles (1953),Adventure|Drama|Romance +116477,My Prairie Home (2014),Documentary +116479,Let's Spend the Night Together (1982),(no genres listed) +116481,Man for a Day (2012),Documentary +116483,Hawaii (2013),Romance +116485,The Skinny (2012),Comedy|Drama|Romance +116487,Remington and the Curse of the Zombadings (2011),Comedy|Drama|Horror +116489,Out in the Dark (2012),Drama|Romance +116491,The Noble Family (2013),Comedy +116493,The Returned (2013),Drama|Horror|Thriller +116495,52 Tuesdays (2014),Children|Drama +116497,Everybody's Got Somebody... Not Me (2012),Drama +116499,The True Story of Puss 'n Boots (2009),Adventure|Animation|Children +116501,Die Fighting (2014),Action|Thriller +116503,The Possession of Michael King (2014),Horror +116505,New Kids Nitro (2011),Action|Comedy +116507,Mission London (2010),Comedy +116509,Bombs Over Monte Carlo (1931),Comedy|Drama|Musical +116511,The Broken Jug (1937),Comedy +116513,'Master Harold' ... And the Boys (2010),Drama +116515,Mohawk (1956),Action|Adventure|Romance|Western +116517,Navy Blues (1929),Comedy|Drama +116519,Our Mother's House (1967),Drama|Thriller +116521,Over the Brooklyn Bridge (1984),Comedy +116523,"Pier 5, Havana (1959)",Action|Adventure|Crime|Drama|Mystery +116525,Circus (1936),Comedy|Musical +116527,Saturday's Children (1940),Drama|Romance +116529,Stalingrad (2013),Action|Drama|War|IMAX +116531,Say It with Songs (1929),(no genres listed) +116533,Scarecrow (2013),Horror +116535,Scarecrow (2002),Action|Comedy|Drama|Horror +116537,Shipmates Forever (1935),Musical +116539,Small Time (2014),Comedy|Drama +116543,So Long Letty (1929),Comedy|Musical +116547,Soldier of Fortune (1955),Adventure|Crime|Drama|Romance|Thriller +116549,Soldier of Fortune (1976),Adventure|Comedy|Drama +116551,The Dark Past (1948),Crime|Film-Noir|Thriller +116553,The Desperate Trail (1995),Action|Crime|Drama|Thriller|Western +116555,The Disembodied (1957),Horror +116557,The Rag Man (1925),Comedy|Drama +116560,The Secret Invasion (1964),Action|Drama|War +116562,The Sweet Ride (1968),Drama +116564,The Whistler (1944),Mystery|Thriller +116566,Tommy and the Cool Mule (2009),Children|Comedy +116568,Young Tom Edison (1940),Drama +116570,The Youngest Profession (1943),Comedy|Romance +116572,"Dance, Fools, Dance (1931)",Crime|Drama|Romance +116574,Dangerous When Wet (1953),Comedy|Musical|Romance +116578,Dante's Inferno (1911),Adventure|Drama|Fantasy|Horror +116580,Dante's Inferno (2007),Animation|Comedy +116584,Dark Alibi (1946),Crime|Drama|Mystery|Thriller +116586,David Spade: Take the Hit (1998),Comedy +116588,Day of the Evil Gun (1968),Action|Western +116590,Death In Love (2008),Drama|Romance|War +116594,Driftin' River (1946),Western +116596,Devotion (1946),Drama +116598,Dirty Little Trick (2011),Crime|Thriller +116600,Do Not Disturb (1965),Comedy +116604,Dark Fields (2009),Horror +116606,Dark Hearts (2014),Drama|Thriller +116608,Dark House (2014),Horror|Thriller +116647,The Emperor of California (1936),Western +116660,Free Fall (2013),Drama +116664,Advanced Style (2014),Comedy|Documentary|Drama +116666,Dr Jekyll & Sister Hyde (1971),Horror|Sci-Fi +116668,Dead Snow 2: Red vs. Dead (2014) ,Action|Comedy|Horror +116674,Dawn Rider (2012),Action|Western +116678,Dead Heat (2002),Action|Comedy|Drama|Thriller +116680,Twice-Told Tales (1963),Horror|Mystery|Romance|Sci-Fi +116682,Decoder (1984),Horror|Mystery|Sci-Fi +116686,Deadly Dreams (1988),Horror|Thriller +116688,Prime Evil (1988),Horror +116694,Dead Hooker in a Trunk (2009),Action|Horror|Mystery +116696,Dead Man's Eyes (1944),Horror|Mystery +116698,Dead Men Tell (1941),Comedy|Crime|Drama|Mystery|Thriller +116700,Elle: A Modern Cinderella Tale (2011),Children|Drama|Fantasy|Sci-Fi +116702,Zatoichi (1989),Action|Drama +116704,Zanjeer (1973),(no genres listed) +116708,Youngblood (1978),Drama +116710,Young Man with a Horn (1950),Drama|Musical|Romance +116716,Young Cassidy (1965),Drama +116718,Volga - Volga (1938),Comedy|Musical +116720,The Inhabited Island 2: Rebellion (2009),Action|Adventure|Sci-Fi +116722,Stromberg - Der Film (2014),Comedy +116724,You Are the Apple of My Eye (2011),Comedy|Drama|Romance +116726,Hamilton - In the Interest of the Nation (Hamilton: I nationens intresse) (2012),Action|Drama|Thriller +116728,Out of Bounds (2011),Drama +116730,Dead of the Nite (2013),Horror +116732,Moscow Laughs (1934),Comedy|Musical +116734,7eventy 5ive (2007),Horror|Thriller +116736,Deadfall (1968),Action|Crime|Drama|Thriller +116738,DeadHeads (2011),Adventure|Comedy|Horror +116740,Deadline (2004),Documentary +116742,Secret (2007),Drama|Fantasy|Romance +116744,Warriors of the Rainbow: Seediq Bale (2011),Action|Drama +116748,Deadline (2012),Drama|Mystery|Thriller +116750,Deadline at Dawn (1946),Film-Noir|Mystery|Romance|Thriller +116752,Deal (2008),Comedy|Drama +116754,Dear Brigitte (1965),Comedy +116756,Death of a Scoundrel (1956),Crime|Drama +116758,Death Racers (2008),Action|Adventure|Comedy|Sci-Fi|Thriller +116760,Death Valley Rangers (1943),Western +116762,Death Warrior (2009),Action|Thriller +116766,Deja Vu (1985),Drama +116768,Deliver Us from Evil (2009),Thriller +116770,Last Passenger (2013),Action|Mystery|Thriller +116772,The Hanoi Hilton (1987),Drama|War +116779,"Fat, Sick & Nearly Dead 2 (2014)",Documentary +116781,Serena (2014),Drama +116783,Queens Of Evil (1970),Fantasy|Horror +116787,The Four Feathers (1978),Adventure|Drama|Romance|War +116789,Hennessy (1975),Action|Drama|Thriller +116791,Callan (1974),Thriller +116793,The Violent Enemy (1967),Crime|Drama +116797,The Imitation Game (2014),Drama|Thriller|War +116799,Inherent Vice (2014),Comedy|Crime|Drama|Mystery|Romance +116801,Labyrinth of Lies (2014),Drama +116803,Battle of the Warriors (2006),Action|Drama|War +116805,Confucius (2010),Drama +116807,Babysitting (2014),Comedy +116809,Curse of the Fly (1965),Horror|Sci-Fi +116811,The Devil-Ship Pirates (1964),Action|Adventure|Thriller +116813,The Brides of Fu Manchu (1966),Action|Crime|Horror|Sci-Fi +116815,Witchcraft (1964),Horror +116817,Rudderless (2014),Comedy|Drama +116819,Jackboots on Whitehall (2011),Animation|Comedy|Sci-Fi|War +116821,Dirty Bomb (2011),Comedy +116823,The Hunger Games: Mockingjay - Part 1 (2014),Adventure|Sci-Fi|Thriller +116825,Those Fantastic Flying Fools (1967),Adventure|Comedy|Fantasy|Sci-Fi +116831,"Give 'em Hell, Malone (2009)",Action|Crime|Thriller +116833,Son of the White Mare (1981),Adventure|Animation|Fantasy +116835,Samson & Sally (1984),Animation|Children|Romance +116837,The Little Fox (1981),Adventure|Animation|Children +116839,Gett: The Trial of Viviane Amsalem (2014),Drama +116841,Rosewater (2014),Drama +116843,Freak Out! (2014),Documentary +116845,Valley Uprising (2014),Documentary +116847,United States of Secrets (Part One): The Program (2014),Documentary +116849,Sex Ed (2014),Comedy|Romance +116851,The Apocalypse (2002),Action|Drama +116853,A Good Marriage (2014),Thriller +116855,The Way He Looks (2014),Drama|Romance +116857,Love and Honor (2012),Drama|Romance|War +116859,Remember Sunday (2013),Drama|Romance +116861,The Gilded Cage (2013),Comedy +116863,Beauty Prize (1930),Drama +116865,Street of Chance (1930),Drama +116867,Romance (1930),Drama|Romance +116869,Illicit (1931),Drama|Romance +116871,Other Men's Women (1931),Drama|Romance +116877,The Royal Bed (1931),Comedy +116879,The Beast of the City (1932),Crime|Drama|Film-Noir|Romance +116881,The Cabin in the Cotton (1932),Drama +116883,The Last Mile (1932),Crime|Drama +116885,The Man Who Played God (1932),Drama|Romance +116887,Exodus: Gods and Kings (2014),Action|Adventure|Drama +116889,Attack on Darfur (2009),Action|Drama|War +116891,Max Schmeling (2010),Action|Drama|War +116893,Trash (2014),Adventure|Crime|Drama|Thriller +116895,Frozen Days (2005),Drama|Mystery|Thriller +116897,Wild Tales (2014),Comedy|Drama|Thriller +116899,Summer Days With Coo (2007),Animation +116901,Ambition (2014),Sci-Fi +116903,Head Over Heels (2012),Animation|Children|Comedy|Romance +116905,Patema Inverted (2013),Adventure|Animation|Drama|Fantasy|Sci-Fi +116907,Fed Up (2014),Documentary +116909,The Oblong Box (1969),Horror +116911,"Yobi, The Five-Tailed Fox (2007)",Animation|Fantasy +116913,The Savior (1971),Drama +116915,Arcana (1972),Drama|Horror|Mystery +116917,Whoregasm (1988),(no genres listed) +116919,The Johnstown Flood (1926),Drama +116921,Police State (1987),Drama +116923,Kiss Me Goodbye (1986),(no genres listed) +116925,The Male Animal (1942),Comedy|Romance +116927,Rio Rita (1942),Comedy|Musical|Romance +116929,The Undying Monster (1942),Drama|Horror|Mystery|Thriller +116931,One Night in the Tropics (1940),Comedy +116933,The Fighting 69th (1940),Action|Adventure|Drama|War +116935,Riley Rewind (2013),Drama|Sci-Fi +116937,My Gun is Quick (1957),Mystery +116939,Werner - Beinhart! (1990),Action|Animation|Comedy +116941,Jetsons: The Movie (1990),Animation|Children|Comedy|Musical|Sci-Fi +116943,Thesis on a Homicide (2013),Crime|Mystery|Thriller +116945,Freedom (2009),Drama +116947,Stand Off (2012),Comedy|Drama +116949,Thrust in Me (1985),(no genres listed) +116951,Bo Burnham: what. (2013),Comedy +116953,Magic Camp (2012),Children|Documentary +116955,The Wild World of Lydia Lunch (1983),(no genres listed) +116957,The Reunion (2013),Drama +116959,Embracing (1992),Documentary +116961,Katatsumori (1994),Documentary +116963,Ski School (1991),Comedy +116965,See Heaven (1995),Documentary +116969,Paths of Hate (2011),Action|Animation|Drama|War +116971,Bloody Birthday (1981),Horror|Thriller +116973,Ski Patrol (1990),Action|Comedy +116975,Long Way Round (2004),Adventure|Documentary +116977,Dumb and Dumber To (2014),Comedy +116979,The Legend of Sarila (2013),Adventure|Animation|Children +116981,Imago mortis (2009),Horror +116983,The Gun That Won the West (1955),Action|Adventure|Western +116985,The Longest Week (2014),Comedy|Drama +116987,Gunfighters (1947),Action|Drama|Romance|Western +116989,Tales of the Grim Sleeper (2014),Crime|Documentary +116991,"Yes Men Are Revolting, The (2014)",Documentary +117003,God Is the Bigger Elvis (2012),Documentary +117017,The Wicker Tree (2011),Drama|Horror|Mystery|Thriller +117022,The Fantasist (1986),Thriller +117061,The Green (2011),Drama +117065,The Damned (2014),Horror|Mystery|Thriller +117103,Deliver Us From Evil (1973),Crime|Drama +117105,Delta Force One: The Lost Patrol (2002),Action +117107,Miss Meadows (2014),Drama +117109,Too Many Cooks (2014),Comedy +117111,Pardon Us (1931),Comedy|Crime|Drama|Musical +117113,Murder Over New York (1940),Comedy|Crime|Mystery|Thriller +117115,Repentance (2013),Drama|Horror|Thriller +117117,Quantum Love (2014),Drama|Romance +117119,Cass (2008),Crime|Drama +117121,Dorothy Mills (2008),Drama|Horror|Mystery|Thriller +117123,Dear White People (2014),Comedy|Drama +117125,The Man Who Loved Yngve (2008),Comedy|Drama|Romance +117127,Camino (2008),Drama +117129,Alucarda (1977),Horror|Thriller +117133,Painted Skin (2008),Action|Drama|Thriller +117136,One Chance (2013),Comedy|Drama +117138,Rent: Filmed Live on Broadway (2008),Drama|Musical +117140,Columbus Day (2008),Crime|Drama|Thriller +117142,An Empress and the Warriors (2008),Action|Drama|Romance|War +117144,See You in September (2010),Comedy|Romance +117146,Lucky Them (2013),Drama +117148,Dil Bole Hadippa! (2009),Comedy|Drama|Romance +117150,Dead Letter Office (1998),Comedy|Drama|Romance +117152,Border Café (2005),Drama +117154,Last Weekend (2014),Comedy|Drama +117156,May in the Summer (2013),Comedy|Drama +117158,"Nono, the Zigzag Kid (2012)",Adventure|Children|Drama +117160,Tip Top (2013),Comedy|Thriller +117162,October Gale (2014),Drama|Romance|Thriller +117164,Musicwood (2012),Adventure|Documentary|Drama +117166,Liar's Dice (2014),Adventure|Children|Drama +117168,How Do You Write a Joe Schermann Song (2012),Comedy|Drama|Musical +117170,Calloused Hands (2013),Drama +117172,BFFs (2014),Comedy +117174,Winter in the Blood (2013),Drama +117176,The Theory of Everything (2014),Drama|Romance +117178,Amira & Sam (2014),Comedy|Drama|Romance +117180,Love Sick Love (2013),Thriller +117182,Double Tide (2010),Documentary +117184,"Moscow, Belgium (2008)",Comedy|Drama|Romance +117186,Brigham Young (1940),Romance|Western +117188,Johnny Apollo (1940),Crime|Drama|Film-Noir|Romance +117190,It All Came True (1940),Comedy|Crime|Drama|Musical|Romance +117194,Dolphin Tale 2 (2014),Children|Drama +117196,Lucky Partners (1940),Comedy|Drama|Romance +117198,You're Missing the Point (1940),Comedy +117300,Demoted (2011),Comedy +117302,Denver and Rio Grande (1952),Western +117304,Deranged (2012),Horror +117306,Desert Sands (1955),Adventure +117308,When the Game Stands Tall (2014),Drama +117310,Aashiqui 2 (2013),Drama|Musical|Romance +117312,The ABCs of Death 2 (2014),Comedy|Horror +117314,Neurons to Nirvana (2013),Documentary +117316,Fillmore (1972),(no genres listed) +117318,The Flyboys (2008),Action|Adventure +117320,The Last Word (2008),Drama|Romance +117322,Dream Boy (2008),Drama|Romance +117324,Nothing to Lose (2008),Crime|Thriller +117326,Take the Trash (2008),Comedy +117328,Les invincibles (2013),Comedy +117330,The Mark of the Angels - Miserere (2013),Thriller +117332,Wrestling Queens (2013),Comedy +117334,The New Girlfriend (2014),Drama +117336,The Missionaries (2014),Comedy|Romance +117338,Red Mist (2008),Horror|Thriller +117340,On a marché sur Bangkok (2014),Comedy +117342,Real Time (2008),Comedy|Drama +117344,Ragnarok (2013),Action|Adventure +117346,Secrets Of State (2008),Thriller +117348,Farm House (2008),Horror|Mystery|Thriller +117350,A Matador's Mistress (2008),Drama|Romance +117352,A Kind of America 2 (2008),Comedy +117354,Parasomnia (2008),Horror|Romance|Thriller +117356,Fast Track: No Limits (2008),Action|Thriller +117358,20th Century Boys - Chapter 1: Beginning of the End (2008),Adventure|Mystery|Sci-Fi +117360,Stiletto (2008),Action|Crime|Drama|Thriller +117362,If You Are the One (2008),Comedy|Romance +117364,Virunga (2014),Documentary|War +117366,Sick Girl (2007),Crime|Horror|Thriller +117368,The Madagascar Penguins in a Christmas Caper (2005),Animation|Comedy +117370,The Seven-Ups (1973),Action|Crime|Drama|Thriller +117372,V/H/S: Viral (2014),Horror|Thriller +117374,Running from Crazy (2013),Documentary +117376,April Story (1998),Romance +117415,Happiness (2014),Documentary +117418,Victor and the Secret of Crocodile Mansion (2012),Adventure|Children|Mystery +117420,The Boy Who Cried Werewolf (2010),Children|Horror +117424,Nothing But the Night (1973),Crime|Horror|Mystery|Thriller +117426,Destroyer (1943),Adventure|Drama|War +117428,Mr Hockey The Gordie Howe Story (2013),Drama +117430,Gone Nutty (2002),Animation|Comedy +117432,The Heart Machine (2014),Drama|Thriller +117434,Starry Eyes (2014),Horror +117436,End of the Road (1970),Comedy|Drama +117438,When Marnie Was There (2014),Animation|Drama +117440,Lupin the 3rd (2014),Action|Adventure|Comedy +117442,The Monkey King (2014),Action|Adventure|Children|IMAX +117444,Song of the Sea (2014),Animation|Children|Fantasy +117446,Expelled from Paradise (2014),Animation|Sci-Fi +117448,Kiki's Delivery Service (2014),Fantasy +117450,Exit (2011),Drama +117452,Tied (2013),Drama +117454,The Magic Crystal (2011),Adventure|Animation|Children|Comedy|Fantasy +117456,Beyond the Lights (2014),Drama +117458,Misunderstood (1984),Drama +117460,Treasure of the Four Crowns (1983),Adventure +117462,The Last Shark (1981),Adventure|Horror|Thriller +117464,Paulette (2012),Comedy|Crime +117466,In the Heart of the Sea (2015),Action|Adventure|Drama +117468,Leontine (1968),Comedy|Crime +117470,Les Tuche (2011),Comedy +117472,Comme les 5 doigts de la main (2010),Action|Drama|Thriller +117474,Iceman (2014),Action|Comedy|Sci-Fi +117476,Stockholm Stories (2014),Drama +117478,Pressed (2011),Action|Crime|Drama|Thriller +117480,The Care Bears Adventure in Wonderland (1987),Animation|Children|Comedy +117482,Merry-Go-Round (1923),Drama +117484,Fatty and Mabel Adrift (1916),Comedy +117486,A Connecticut Yankee in King Arthur's Court (1989),Adventure|Children|Comedy|Fantasy +117488,A Promise (2013),Drama|Romance +117490,Alien Nation: Dark Horizon (1994),Drama|Sci-Fi +117492,Alien Nation: Body and Soul (1995),Sci-Fi +117494,Alien Nation: The Enemy Within (1996),Sci-Fi +117496,Alien Nation: Millennium (1996),Sci-Fi +117498,Fandry (2013),Children|Drama +117500,Beauty For The Asking (1939),Drama|Romance +117502,Black Beauty (1946),Children|Drama|Romance +117504,Crackers (1984),Action|Comedy|Crime|Thriller +117506,Deewaar (1975),Action|Crime|Drama|Thriller +117509,City Slacker (2012),Romance +117511,Hello Ladies: The Movie (2014),Comedy +117513,Jamilya (1969),Drama|Romance|War +117515,Codebreaker (2011),Documentary|Drama +117517,Listen Up Philip (2014),Drama +117519,Hot Stuff (1979),Comedy +117521,Squeeze Play (1979),Comedy +117523,Love You You (2011),Romance +117525,Ain't in It for My Health: A Film About Levon Helm (2013),Documentary +117527,Seducing Mr. Perfect (2006),Romance +117529,Jurassic World (2015),Action|Adventure|Drama|Sci-Fi|Thriller +117531,Watermark (2014),Documentary +117533,Citizenfour (2014),Documentary +117535,Dans la peau d'une grande (2011),Comedy +117537,David et Madame Hansen (2012),Comedy|Drama +117539,Pop Redemption (2013),Comedy +117541,Home Sweet Home (2008),Comedy +117543,LOL (Laughing Out Loud) (2008),Comedy +117545,Asterix: The Land of the Gods (Astérix: Le domaine des dieux) (2014),Animation +117547,She Monkeys (2011),Drama +117549,The Taking of Deborah Logan (2014),Horror|Thriller +117551,Admissions (2004),Drama +117553,House Hunting (2013),Mystery|Thriller +117555,Alive Inside (2014),Documentary +117557,December (1991),Drama +117559,Decoy (1995),Action +117561,Once Upon a Time in Queens (2013),Comedy|Drama +117563,Earthworm Tractors (1936),Comedy +117565,God Forgives... I Don't! (1967),Action|Western +117567,Grind (1997),Drama +117570,Santa Who? (2000),Comedy|Fantasy +117572,Hit by Lightning (2014),Comedy|Crime|Romance +117574,The Incite Mill - 7 Day Death Game (2010),Horror|Mystery|Thriller +117576,Pumzi (2009),Sci-Fi +117578,1½ Knights - In Search of the Ravishing Princess Herzelinde (2008),Comedy +117580,Christmas Cottage (2008),Drama +117582,I Travel Alone (2013),Drama +117584,The Boy in the Mirror (2014),Adventure|Children|Drama|Fantasy +117586,My Dear Desperado (2010),Comedy +117588,The 39 Steps (2008),Crime|Mystery|Thriller +117590,Horrible Bosses 2 (2014),Comedy|Crime +117592,Poto and Cabengo (1980),Documentary +117594,Detention of the Dead (2012),Comedy|Horror +117596,Devil's Doorway (1950),Western +117598,Diary of a Madman (1963),Horror +117602,Disengagement (2007),Drama +117604,The Beaver Trilogy (2000),Comedy|Documentary|Drama +117606,Divorce (1945),Drama +117608,Docks of New Orleans (1948),Comedy|Crime|Drama|Mystery|Thriller +117610,Doctor at Large (1957),Comedy|Romance +117612,Doctor in Distress (1963),Comedy +117614,Doctor in the House (1954),Comedy +117616,Doll Face (1945),Comedy|Musical|Romance +117618,Don Juan (1926),Adventure|Drama|Romance +117620,Don Juan (1998),Comedy|Romance +117622,Don't Answer the Phone! (1980),Horror|Mystery|Thriller +117624,Don't Give Up the Ship (1959),Comedy +117626,Don't Go Near the Water (1957),Adventure|Comedy|Romance +117628,Donner Pass (2012),Horror +117630,Double Trouble (1992),Action|Comedy|Crime|Romance +117632,Down the Shore (2011),Drama|Romance|Thriller +117634,Down to the Sea in Ships (1949),Drama +117636,Dr. Dolittle: Million Dollar Mutts (2009),Children|Comedy|Fantasy +117638,Dr. Dolittle: Tail to the Chief (2008),Children|Comedy|Fantasy +117640,Dr. Gillespie's New Assistant (1942),Comedy|Drama|Mystery +117642,Dr. Jekyll and Mr. Hyde (2008),Drama|Horror|Sci-Fi|Thriller +117644,Dr. Socrates (1935),Crime|Drama|Romance +117646,Dragonheart 2: A New Beginning (2000),Action|Adventure|Comedy|Drama|Fantasy|Thriller +117648,Drive a Crooked Road (1954),Crime|Drama|Film-Noir|Thriller +117650,Drive Thru (2007),Comedy|Horror +117652,Drop Dead Sexy (2005),Comedy|Crime +117654,Drum Beat (1954),Adventure|Western +117656,Drunken Master 3 (1994),Action +117658,Dust Be My Destiny (1939),Drama +117660,Earthstorm (2006),Sci-Fi +117662,Easy Living (1949),Drama +117664,Easy To Love (1934),Comedy +117666,Easy to Love (1953),Comedy|Musical|Romance +117668,Ecstasy (2011),Drama|Thriller +117670,Edge of Eternity (1959),Crime|Drama +117672,Air Crew (1979),Action|Drama|Thriller +117674,El Condor (1970),Action|Adventure|Romance|Western +117676,El Gringo (2012),Action|Drama +117678,Elisa (1995),Drama +117680,Elliot Loves (2012),Comedy +117682,Elvis and Anabelle (2007),Drama|Romance +117684,Elvis Has Left the Building (2004),Comedy +117686,Elvis Meets Nixon (1997),Comedy|Drama +117688,Enchanted Island (1958),Adventure|Drama +117690,Enchantment (1948),Drama|Romance +117692,Endangered Species (2003),Horror|Sci-Fi|Thriller +117694,Endure (2010),Mystery|Thriller +117696,Executioners from Shaolin (1977),Action|Drama +117698,The Orkly Kid (1985),Comedy +117700,Feed The Fish (2009),Comedy|Romance +117702,Home Before Dark (1958),Drama +117704,Let No Man Write My Epitaph (1960),Drama +117706,Lost Christmas (2011),Drama +117708,Michael Shayne: Private Detective (1940),Comedy|Drama|Mystery +117710,Murder on the Orient Express (2001),Crime|Drama|Mystery +117712,My Friend Irma Goes West (1950),Comedy|Crime|Musical +117714,Enemies Closer (2013),Action|Thriller +117716,Enter Arsene Lupin (1944),Crime|Drama +117718,Barely Legal (2011),Comedy +117720,Nutcracker: The Motion Picture (1986),Children|Fantasy +117722,The Forgotten Faces (1961),(no genres listed) +117724,Record City (1978),Comedy +117726,Russell Brand: Messiah Complex (2013),Comedy +117728,Moving Violations (1985),Comedy +117730,Seven Days' Leave (1942),Comedy|Musical|Romance +117732,So Much Water (2013),Comedy|Drama +117734,The Collapsed (2011),Drama|Horror|Sci-Fi|Thriller +117736,The Dark Horse (1932),Comedy +117738,The Eagle and the Hawk (1933),Action|Drama|War +117740,The Fake (2013),Animation|Drama|Thriller +117742,The Fake (1953),Crime|Drama +117744,The Farmer Takes a Wife (1935),Comedy|Romance +117746,The Fearmakers (1958),Thriller +117748,The Happy Road (1957),Comedy +117750,The Real Glory (1939),War +117752,This Is the Night (1932),Comedy +117754,Under 18 (1931),Drama|Romance +117756,Yellow Rock (2011),Western +117838,Lucia (2013),Drama|Romance|Sci-Fi|Thriller +117843,Oppressed Majority (2010),Drama +117845,"T,O,U,C,H,I,N,G (1969)",(no genres listed) +117847,Little Hamlet (1960),(no genres listed) +117849,La Belle Verte (1996),Comedy +117851,Penguins of Madagascar (2014),Adventure|Animation|Children|Comedy +117853,Bill Bailey: Qualmpeddler (2013),Comedy +117855,Ivul (2010),Drama +117857,Hotline (2014),Documentary +117859,Fugly! (2013),Comedy +117861,Black or White (2014),Drama +117863,Ragamuffin (2014),Drama +117865,The Menacing Eye (1960),(no genres listed) +117867,'71 (2014),Action|Drama|Thriller|War +117869,Bastards (2014),Documentary +117871,"Water Diviner, The (2014)",Action|Drama|War +117873,Enlighten Up! (2008),Documentary +117875,Just a Sigh (2013),Drama|Romance +117877,The Rabbi's Cat (Le chat du rabbin) (2011),Adventure|Animation +117879,Altman (2014),Documentary +117881,Still Alice (2014),Drama +117883,Je préfère qu'on reste amis (2005),Comedy|Drama|Romance +117885,Grumpy Cat's Worst Christmas Ever (2014),Adventure|Children|Comedy +117887,Paddington (2014),Children|Comedy +117889,Drei Stunden (2013),Comedy|Romance +117891,Redemption: For Robbing the Dead (2011),Western +117893,Jessabelle (2014),Horror|Thriller +117895,Maze Runner: Scorch Trials (2015),Action|Thriller +117897,Kink (2013),Documentary +117899,Beautiful Girl (2014),Drama +117901,Showrunners: The Art of Running a TV Show (2014),Documentary +117903,Dirigible (1931),Adventure +117905,Sir Arne's Treasure (1919),Drama +117907,My Brother Tom (2001),Drama +117909,The Kiss (1900),Romance +117911,Quest (1996),Animation +117913,Scooby-Doo! Frankencreepy (2014),Adventure|Animation|Children|Mystery +117918,Pendulum (1969),Drama +117920,Burt's Buzz (2014),Documentary +117922,Ice Age: A Mammoth Christmas (2011),Adventure|Animation|Children +117924,The Bloody Olive (1997),Comedy|Crime|Film-Noir +117926,Hey Bartender (2013),Documentary +117928,Kajaki (2014),Adventure|Drama|War +117930,A Matter of Size (2009),Comedy|Drama|Romance +117932,Summer of Blood (2014),Comedy|Horror +117954,Appointment with Crime (1951),Crime|Drama +117956,Hungry Hill (1947),Drama +117958,Vice Versa (1948),Comedy +117960,Against the Wind (1949),Action|Drama|War +117962,Quartet (1948),Drama +117964,Scott of the Antarctic (1948),Action|Adventure|Drama +117966,Christopher Columbus (1949),Action|Adventure|Drama +117975,Operation X (1950),Drama +117977,The Magnet (1950),Comedy +117979,Blackmailed (1951),Crime|Drama|Thriller +117981,Pool of London (1951),Crime|Drama +117985,Anne of the Indies (1951),Action|Adventure|Drama|Romance +117987,The Lady Says No (1952),Comedy +117989,The Story of Robin Hood and His Merrie Men (1952),Action|Adventure|Children +117995,Murder Will Out (1952),Mystery +117997,The Sword and the Rose (1953),Adventure|Children|Drama +117999,"Rob Roy, The Highland Rogue (1954)",Adventure|Children|Drama|War +118003,Above Us The Waves (1955),Drama|War +118006,Doctor at Sea (1955),Comedy +118008,An Alligator Named Daisy (1955),Comedy|Musical|Romance +118010,Storm over the Nile (1956),Adventure|Drama|Romance|War +118013,The Iron Petticoat (1956),Comedy +118017,The Living Idol (1957),Adventure|Drama +118019,Campbell's Kingdom (1957),Adventure|Drama +118021,The Beasts of Marseilles (1957),Drama|Romance|War +118023,Orders to Kill (1958),Drama|War +118025,Upstairs and Downstairs (1959),Comedy +118033,Roommates (1961),Comedy|Drama|Romance +118036,Crooks Anonymous (1962),Comedy|Crime +118038,Guns of Darkness (1962),Drama +118040,Love on a Pillow (1962),Drama|Romance +118042,The Fast Lady (1962),Comedy +118050,Doctor in Clover (1966),Comedy +118052,The Trygon Factor (1966),Comedy|Crime|Drama +118054,Two Weeks in September (1967),Drama|Romance +118057,The Love Factor (1969),Comedy|Fantasy|Sci-Fi +118082,The Voices (2014),Comedy|Crime|Thriller +118085,"Welcome, or No Trespassing (1964)",Children|Comedy +118091,Farewell to Matyora (1983),Drama +118093,Eagle's Wing (1979),Western +118095,Levitated Mass (2013),Documentary +118097,Nativity 2: Danger in the Manger! (2012),Children|Comedy +118099,The Puzzle (2009),Drama +118101,Donald Glover: Weirdo (2011),Comedy +118103,Come Back to Me (2014),Horror +118105,Trailer Park Boys: Live at the North Pole (2014),Comedy +118107,The Righteous Thief (2009),Adventure +118109,State of Emergency (2011),Sci-Fi|Thriller +118111,Almost Married (2014),Comedy +118113,"Swinger, The (1966)",Comedy +118115,Christmas in Conway (2013),Drama|Romance +118117,Grace (2014),Horror|Thriller +118133,Winter Nomads (2012),Documentary +118166,Courier (1987),Comedy|Drama|Romance +118173,The Batman vs. Dracula (2005),Action|Animation|Horror|Thriller +118175,13 West Street (1962),Crime|Drama +118177,Baffled! (1973),Mystery|Sci-Fi|Thriller +118179,Dick Barton at Bay (1950),Crime|Sci-Fi +118183,Dying Room Only (1973),Horror|Mystery|Thriller +118185,Escapade (1955),Comedy|Drama +118189,Go for It (1983),Action|Adventure|Comedy +118191,Great Expectations (1934),Drama|Romance +118193,Hand in Hand (1961),Children|Drama +118195,Tenchi: The Samurai Astronomer (2012),Drama +118198,The Green Prince (2014),Documentary|Drama|Thriller +118200,Castles in the Sky (2014),Drama +118202,Cowspiracy: The Sustainability Secret (2014),Adventure|Comedy|Documentary|Mystery +118204,McConkey (2013),Adventure|Documentary +118206,Manny (2014),Documentary|Drama +118208,Stiletto (1969),Crime|Drama +118212,The McMasters (1970),Drama|Western +118214,Chocolate Strawberry Vanilla (2013),Comedy|Drama +118216,Night of the Juggler (1980),Action|Crime|Drama|Thriller +118220,"Mayday at 40,000 Feet! (1976)",Adventure +118222,The Ultimate Thrill (1974),Crime|Drama|Thriller +118224,Underground Aces (1981),Comedy +118226,Bus Riley's Back In Town (1965),Drama +118228,Shoot (1976),Drama|Thriller +118232,Fortune and Men's Eyes (1971),Drama +118234,"Party Animal, The (1984)",Comedy +118236,Bleak Night (2010),Drama +118238,Hot Car Girl (1958),Drama +118242,To Encourage the Others (1972),Drama +118244,Wanderers (2014),Animation|Sci-Fi +118246,Clouds of Sils Maria (2014),Drama +118248,Dying of the Light (2014),Drama|Thriller +118250,Survival Quest (1988),Adventure|Thriller +118252,All Cheerleaders Die (2013),Comedy|Horror|Thriller +118254,Cherry Tree Lane (2010),Horror|Thriller +118256,WolfCop (2014),Comedy|Horror +118258,It's a Wonderful Afterlife (2010),Comedy|Drama|Horror|Romance +118260,The Borderlands (2013),Horror|Mystery +118262,Slasher House (2012),Horror +118264,The Kick (2011),Action +118266,Norwegian Ninja (2010),Action|Comedy +118268,Borrowed Time (2012),Drama +118270,Hellbenders (2012),Comedy|Horror|Thriller +118272,Saving General Yang (2013),Adventure +118274,Legacy of Rage (1986),Action +118276,Shadowzone (1990),Horror|Sci-Fi +118278,In Your Hands (2011),Drama +118280,Black Samson (1974),Action|Drama +118282,Choke Canyon (1986),Action|Sci-Fi +118284,Cleopatra Jones and the Casino of Gold (1975),Action +118288,"Jonathan Rosenbaum, Present (2013)",Documentary +118290,Omega Doom (1996),Sci-Fi +118294,A Justified Life: Sam Peckinpah and the High Country (2006),Documentary +118298,Float (2007),Drama|Romance +118300,Home Alone: The Holiday Heist (2012),Children|Comedy|Crime +118302,The Pokrovsky Gates (1983),Comedy|Drama|Musical|Romance +118324,Game of Werewolves (2011),Comedy|Horror +118326,By the Gun (2014),Crime|Drama|Thriller +118328,The Protector 2 (2013),Action +118330,Blood (2012),Crime|Drama|Thriller +118332,Exit Humanity (2011),Drama|Horror +118334,Omen IV: The Awakening (1991),Horror|Mystery|Thriller +118338,Hard to Be a God (2013),Sci-Fi +118340,In Order Not to Be Here (2002),(no genres listed) +118342,Mortuary (2005),Horror|Mystery|Thriller +118344,Spontaneous Combustion (1990),Horror|Sci-Fi|Thriller +118346,Night Terrors (1993),Horror +118348,Trance (2001),Mystery|Thriller +118350,Tell (2014),Action|Crime|Drama +118352,In the Shadow of the Machine (1928),Documentary +118354,Kill the Messenger (2014),Crime|Drama|Mystery|Thriller +118380,Dead Souls (2012),Horror +118388,Village People (2013),Comedy +118390,A Gorgeous Girl Like Me (1972),Comedy|Crime|Drama +118392,Street Fighter: Assassin's Fist (2014),Action|Adventure|Drama|Thriller +118426,Touch the Top of the World (2006),Drama +118446,Journey Beyond Three Seas (1957),Adventure +118448,The Hearts of Age (1934),(no genres listed) +118450,Adam and Evalyn (1949),Comedy|Romance +118452,Adam's Woman (1970),Drama +118454,Blood Beast from Outer Space (1965),Horror|Sci-Fi +118456,Bloodmatch (1991),Action +118458,H6: Diario de un asesino (2005),Horror|Thriller +118460,Sallah (1964),Comedy +118462,Grant Morrison: Talking with Gods (2010),Documentary +118464,The Universe of Keith Haring (2008),Documentary +118466,"Kingdom of Dreams and Madness, The (2013)",Animation|Documentary +118470,War Devils (1969),Drama|War +118472,"Texas, Adios (1966)",Action|Western +118476,"Today We Kill, Tomorrow We Die! (1968)",Thriller|Western +118478,The Soldier On Great Maneuvers (1978),Comedy +118484,Colt 38 Special Squad (1976),Action|Crime|Drama|Thriller +118486,Ricky & Barabba (1992),Comedy +118490,The Shock (1982),Action|Crime|Romance|Thriller +118492,High Test Girls (1980),Comedy|Fantasy +118494,The Police Can't Move (1975),Crime +118496,A Cinderella Story: Once Upon a Song (2011),Children|Comedy|Romance +118498,"Baba Yaga, Devil Witch (1973)",Horror|Thriller +118504,The Mad Dog Killer (1977),Action|Crime|Thriller +118510,The Great Kidnapping (1973),Action|Crime|Thriller +118512,Bring It On: In It To Win It (2007),Comedy +118514,Independents (2007),Documentary +118516,How to Seduce Your Teacher (1979),Comedy +118520,Between Miracles (1972),Comedy +118522,The Rebel (1980),Action|Crime|Drama|Thriller +118524,The Night Evelyn Came Out of the Grave (1971),Horror|Mystery +118528,Stunt Squad (1977),Action|Crime|Thriller +118530,Fans (1999),Comedy +118532,The Cyclone (1996),Comedy|Romance +118536,"The Fan, the Referee and the Player (1984)",Comedy +118538,Death Steps in the Dark (1977),Horror|Romance|Thriller +118540,War Fever (1969),Drama|War +118542,Emanuelle in Egypt (Velluto nero) (1976),Drama +118544,The... Beautiful Country (1977),Comedy|Drama +118546,Savage Three (1975),Drama +118552,Evil Eye (1975),Crime|Horror +118556,The Gun (1978),Crime|Drama +118558,A Man Called Magnum (1977),Action|Crime +118560,The Seventh Floor (1967),Comedy +118562,Dismissed on His Wedding Night (1968),Comedy +118568,The Flower in His Mouth (1975),Drama|Mystery +118570,Jarhead 2: Field of Fire (2014),Action|Drama|War +118572,The Mule (2014),Comedy|Crime|Drama +118574,Chantilly Lace (1993),Drama +118576,Shy People (1987),Drama +118584,Shadows in an Empty Room (1976),Crime|Drama|Mystery|Thriller +118608,Hen Hop (1942),Animation +118684,Jingle All the Way 2 (2014),Children|Comedy +118686,The Face of Love (2013),Drama|Romance +118688,Every Girl Should Be Married (1948),Comedy|Romance +118690,Eight Iron Men (1952),Drama|War +118692,A True Mob Story (1998),(no genres listed) +118694,In the Folds of the Flesh (1970),Drama|Horror|Thriller +118696,The Hobbit: The Battle of the Five Armies (2014),Adventure|Fantasy +118698,The Viking Queen (1967),Adventure +118700,Selma (2014),Drama +118702,Unbroken (2014),Drama|War +118704,Jimi Hendrix (1973),Documentary +118706,Black Sea (2015),Adventure|Mystery|Thriller +118708,Three Wise Fools (1946),Comedy|Drama +118710,The Frame (2014),Crime|Drama|Fantasy|Romance|Thriller +118712,The Vatican Affair (1968),Thriller +118716,The Lady in Red Kills Seven Times (1972),Horror|Mystery|Thriller +118720,Nam's Angels (1970),Action|Drama|War +118726,Tex and the Lord of the Deep (1985),Adventure|Fantasy|Western +118728,Un centesimo di secondo (1981),(no genres listed) +118730,Safari Express (1976),Action|Comedy +118734,Zorro (1975),Action|Adventure|Comedy|Western +118736,Puzzle (1974),Mystery|Thriller +118738,Tough Guys (1974),Action|Crime +118740,Winged Devils (1972),Action|Comedy +118742,The Bloodstained Butterfly (1971),Mystery|Thriller +118744,Alive or Preferably Dead (1969),Comedy|Western +118746,Death Occurred Last Night (1970),Crime|Drama +118748,The Bastard (1968),Crime|Drama +118752,The Return of Ringo (1965),Action|Drama|Romance|Western +118754,A Pistol For Ringo (1965),Action|Drama|Western +118756,The Scapegoat (1963),Drama +118758,Kiss Kiss - Bang Bang (1966),Adventure|Comedy +118760,The Good Lie (2014),Drama +118762,Action Jackson (2014),Action|Drama|Romance +118764,The Improv: 50 Years Behind the Brick Wall (2013),Comedy|Documentary +118766,I Am Santa Claus (2014),Comedy|Documentary|Drama +118768,"The Missing Piece: Mona Lisa, Her Thief, the True Story (2012)",Crime|Documentary|Mystery +118770,Wild Heritage (1958),Western +118774,The Widow From Chicago (1930),Crime|Drama|Romance +118776,Lap Dance (2014),Drama +118778,The Baby Maker (1970),Drama +118780,Africa Erotica (1970),Adventure|Drama +118782,Fat Pizza (2003),Action|Adventure|Comedy|Crime|Thriller +118784,Good Copy Bad Copy (2007),Documentary +118786,Comin' at Ya! (1981),Western +118788,When the Road Bends: Tales of a Gypsy Caravan (2006),Documentary +118790,Holy Flying Circus (2011),Comedy|Drama +118792,House of the Dead 2 (2005),Action|Horror|Sci-Fi|Thriller +118794,Lenny Bruce: Without Tears (1972),Documentary +118796,Prey (2010),Adventure|Drama|Horror|Mystery|Thriller +118798,SS Girls (1977),Drama|Thriller +118800,Silent Madness (1984),Horror|Thriller +118804,"The Wild, Wild World of Jayne Mansfield (1968)",Comedy|Documentary +118806,Wodehouse In Exile (2013),Drama +118808,Zombie Reanimation (2009),Action|Comedy|Horror +118810,Zombie Women of Satan (2009),Comedy|Horror +118812,Made in Jamaica (2006),Documentary +118814,Playing It Cool (2014),Comedy|Romance +118816,Public Sex (2009),Comedy|Drama +118818,Frozen (2010),Fantasy|Romance +118820,Don't Wake the Dead (2008),Horror +118822,Andy Warhol (1987),Documentary +118824,Blood Dolls (1999),Comedy|Horror +118826,Cheerleader Massacre (2003),Horror|Thriller +118828,Flower and Snake 5: Rope Magic (1987),Crime|Drama +118830,The Last Request (2006),Comedy|Romance +118832,McLibel (2005),Documentary +118834,National Lampoon's Bag Boy (2007),Comedy +118838,School of the Holy Beast (1974),Drama|Thriller +118840,Sinthia: The Devil's Doll (1970),Horror +118842,The Appointments of Dennis Jennings (1988),Comedy +118844,The Atrocity Exhibition (2000),Drama|Horror +118846,The Beales of Grey Gardens (2006),Documentary +118848,The Touch of Her Flesh (1967),Horror|Thriller +118850,Virgin Witch (1972),Horror +118854,The Dust Bowl (2012),Documentary +118856,Paris by Night (2012),Crime|Drama +118858,Honor Among Lovers (1931),Drama +118860,A Smoky Mountain Christmas (1986),Fantasy +118862,Closer to the Moon (2013),Comedy|Drama +118864,A Husband of Round Trip (1957),Comedy|Fantasy +118866,Marvellous (2014),Drama +118868,Somewhere in the Night (1946),Crime|Drama|Film-Noir +118870,Love Camp 7 (1969),Drama|Thriller|War +118872,Free the Nipple (2014),Comedy|Drama +118874,Bachelor Night (2014),Comedy +118876,Khumba (2013),Adventure|Animation|Children +118878,Sekirei (2008),(no genres listed) +118880,"Girl Walks Home Alone at Night, A (2014)",Horror|Romance|Thriller +118882,1981 (2009),Comedy|Drama|Romance +118884,1987 (2014),Comedy|Drama|Romance +118886,Crimi Clowns: De Movie (2013),Comedy|Crime|Drama +118888,Dave Chappelle: For What it's Worth (2004),Comedy +118892,Ellen DeGeneres: The Beginning (2000),Comedy +118894,Scooby-Doo! Abracadabra-Doo (2010),Animation|Children|Mystery +118896,Mommy (2014),Drama +118898,A Most Violent Year (2014),Action|Crime|Drama|Thriller +118900,Wild (2014),Drama +118902,Zebra Lounge (2001),Thriller +118904,Rapid Fire (2006),Action|Crime|Thriller +118906,Turbulence 3: Heavy Metal (2001),Action|Thriller +118908,Jack the Ripper (1988),Crime|Drama|Mystery|Thriller +118910,Brutal (2007),Crime|Horror|Mystery|Thriller +118914,The Curse of King Tut's Tomb (2006),Adventure|Fantasy|Horror +118916,Titanic (1996),Action|Drama|Romance +118920,Butterfly Girl (2014),Documentary +118922,Mr. Jones (2013),Drama|Horror|Thriller +118924,Top Five (2014),Comedy +118926,Straight Into Darkness (2004),Action|Drama|War +118930,Bill Burr: I'm Sorry You Feel That Way (2014),Comedy +118944,A Chairy Tale (1957),Animation|Comedy|Fantasy +118946,The Aggression Scale (2012),Action|Crime|Thriller +118948,Blackbird (1959),Animation +118958,Mosaic (1966),Animation +118964,And Then There Was You (2013),Drama +118966,Straight on Till Morning (1972),Mystery|Thriller +118968,Wild Love (2014),Drama +118970,Redirected (2014),Action|Comedy|Crime +118972,Don't Blink (2014),Horror|Mystery|Sci-Fi +118974,Raiders From Beneath the Sea (1964),Crime|Drama +118983,The Wild Bunch: An Album in Montage (1996),Documentary +118985,Big Eyes (2014),Drama +118995,The Two Firefighters (1968),Comedy +118997,Into the Woods (2014),Children|Comedy|Fantasy|Musical +118999,"Shoot, Gringo... Shoot! (1968)",Western +119005,"Isabella, Duchess of the Devils (1969)",Adventure +119013,Roaring Wheels (1970),Action|Drama +119017,When Men Carried Clubs and Women Played Ding-Dong (1971),Comedy +119025,The Schemer (1974),Comedy +119027,The Cop in Blue Jeans (1976),Action|Crime|Drama +119029,Hit Squad (1976),Action|Comedy +119031,The Son of the Sheik (1977),Action|Comedy +119033,"Messalina, Empress of Rome (1977)",Adventure|Comedy +119035,Swindle (1977),Action|Comedy +119037,Little Italy (1978),Action|Comedy +119039,The Gang That Sold America (1979),Action|Comedy +119041,The Finzi Detective Agency (1979),Comedy|Crime +119043,Assassination on the Tiber (1979),Action|Comedy +119045,"Against One Another, Virtually Friends (1981)",Comedy +119047,The Nosy (1980),Comedy +119049,Crime at Porta Romana (1980),Comedy|Crime +119051,Crime at the Chinese Restaurant (1981),Comedy|Mystery|Thriller +119053,The Haunted House (1982),Comedy +119055,Crime on the Highway (1982),Comedy|Crime +119057,Cat and Dog (1983),Comedy|Crime +119059,Cop in Drag (1984),Comedy|Crime|Drama +119061,Aladdin (1986),Adventure|Fantasy +119065,Scooby-Doo! and the Witch's Ghost (1999),Animation|Comedy|Mystery +119068,"Men, Women & Children (2014)",Comedy|Drama +119080,Loins of Punjab Presents (2007),Comedy +119084,Narcissus (1983),Musical +119126,Killers (2014),Action|Crime|Drama|Thriller +119135,Momo (2001),Animation|Children|Fantasy +119139,Ascension (2014),Drama|Sci-Fi +119141,The Interview (2014),Action|Comedy +119143,Flap (1970),Comedy|Drama +119145,Kingsman: The Secret Service (2015),Action|Adventure|Comedy|Crime +119147,Holidaze (2013),Children|Drama|Romance +119149,Madonna's Pig (2011),Fantasy|Romance|Sci-Fi +119151,Night Watch (1973),Horror|Mystery|Thriller +119153,Bill Burr: You People Are All the Same (2012),Comedy +119155,Night at the Museum: Secret of the Tomb (2014),Adventure|Children|Comedy|Fantasy +119157,The Nativity (1978),Children|Drama +119159,Teenage (2013),Documentary +119163,Fire in Castilla (Tactilvision from the Moor of the Fright) (1961),Documentary +119165,Lunch Break (2008),Documentary +119167,Paradox (2010),Sci-Fi|Thriller +119169,Special ID (2013),Action|Crime|Drama +119171,Katt Williams: The Pimp Chronicles Pt. 1 (2006),Comedy|Documentary +119180,Summer in February (2013),Drama|Romance +119182,Sorority Wars (2009),Comedy|Drama +119186,Fear Island (2009),Horror|Mystery|Thriller +119190,Walking on Sunshine (2014),Musical|Romance +119196,Heartbeat (1938),Comedy +119200,Wheelmen (2005),Comedy +119208,Big Brown Eyes (1936),Comedy|Mystery +119212,King of Germany (2013),Comedy +119214,Food Stamped (2010),Documentary +119216,Goodbye to All That (2014),Comedy|Drama +119218,The Punisher: Dirty Laundry (2012),Action|Crime|Drama +119220,Presidentintekijät (2014),Documentary +119222,Behaving Badly (2014),Comedy +119224,Tyler Perry's A Madea Christmas (2013),Comedy|Drama +119226,Nicholas on Holiday (2014),Comedy +119303,The Walking Stick (1970),Crime|Drama|Romance +119305,The Nutcracker Prince (1990),Adventure|Animation|Children|Fantasy +119308,Bullets Don't Argue (1964),Western +119310,Days and Nights (2014),Comedy|Drama +119312,Don't Go In the Woods (1981),Horror +119314,Pigs (2007),Comedy +119316,Professor Beware (1938),Comedy +119318,Listen Darling (1938),Children|Comedy|Drama|Musical|Romance +119350,Deathmaster (1972),Horror +119424,A Viking Saga: The Darkest Day (2013),Action|Adventure|Thriller +119426,Thérèse (2012),Drama +119428,With Love... from the Age of Reason (2010),Comedy|Romance +119430,Yonkers Joe (2008),Drama +119432,A Thousand Times Goodnight (2014),Drama +119434,Poldark (1996),Drama +119436,Second Skin (2000),Thriller +119438,The Love Machine (1971),Drama +119440,The Lost Prince (2003),Drama +119442,Never Say Die (1994),Action|Drama|Thriller +119444,Operation Delta Force 2: Mayday (1997),Action|Thriller +119450,Total Western (2000),Action|Crime|Drama|Thriller +119454,Tyler Perry's Madea's Big Happy Family (2011),Comedy|Drama +119456,Bugs Bunny's Looney Christmas Tales (1979),Animation|Children +119563,12 Dates of Christmas (2011),Children|Comedy|Fantasy|Romance +119565,The Missing (2014),Crime|Drama|Mystery +119567,"Kennedys, The (2011)",Drama +119569,Quatsch und die Nasenbärbande (2014),Children +119571,Teenage Dirtbag (2009),Drama +119573,12 Wishes of Christmas (2011),Comedy|Fantasy +119577,"Another Man, Another Chance (1977)",Western +119579,Blast (1997),Action +119583,Carry On Teacher (1959),Comedy +119585,"Carry On, Constable (1960)",Comedy +119587,Christina's House (2000),Drama|Mystery|Thriller +119589,The Arrival of Joachim Stiller (1976),Drama|Fantasy +119591,Dangerously Close (1986),Action|Crime|Thriller +119593,Daughters Courageous (1939),Drama|Romance +119595,Deceit (1992),Sci-Fi +119597,Demon Hunter (2005),Horror +119599,Demon Hunter (2012),Horror +119601,Destination Gobi (1953),Adventure|Drama|War +119603,Down Twisted (1987),Action|Adventure|Crime|Drama|Thriller +119605,Encore (1951),Comedy|Drama +119607,Escape from Crime (1942),Crime|Drama +119609,Escape in the Fog (1945),Crime|Drama|Film-Noir +119611,Esther and the King (1960),Drama|Romance +119615,Even Angels Eat Beans (1973),Action|Comedy|Crime +119617,Every Day's a Holiday (1937),Comedy +119619,Everybody Has a Plan (2012),Crime|Drama +119621,Everyday Sunshine: The Story of Fishbone (2010),Documentary +119623,Everything I Have is Yours (1952),Musical +119625,Ex-Lady (1933),Comedy|Drama +119627,Exit to Hell (2013),Action|Horror|Thriller +119629,Exorcismus (2010),Horror +119631,Expensive Husbands (1937),Comedy|Musical|Romance +119633,Experiment Alcatraz (1950),Crime|Mystery +119635,Eye of the Hurricane (2012),Drama +119637,Eyeball (1975),Crime|Horror|Mystery|Thriller +119639,F.T.W. (1994),Drama|Romance +119641,Face of Fire (1959),Drama +119645,Falling Awake (2009),Romance|Thriller +119649,Nick Offerman: American Ham (2014),Comedy +119653,Stormheart (2008),Children|Drama +119655,Seventh Son (2014),Adventure|Children|Fantasy +119657,Gloss (2007),Comedy|Drama +119659,A Nest of Gentry (1969),Romance +119663,Out of the Ashes (2003),Drama +119665,The Amazing Howard Hughes (1977),Drama +119667,The Prophecy: Forsaken (2005),Fantasy|Horror|Thriller +119670,National Gallery (2014),Documentary +119672,7th Floor (2013),Mystery|Thriller +119675,Kiss Me in the Rain (1999),Drama|Thriller +119677,Heatstroke (2013),Thriller +119679,The Wait (2013),Drama|Thriller +119681,Munger Road (2011),Horror|Mystery|Thriller +119683,Myn Bala: Warriors of the Steppe (2012),Action|Adventure|Drama +119685,Alyce Kills (2011),Horror|Thriller +119687,Little Witches (1996),Horror|Thriller +119689,The Haunting of Helena (2012),Horror|Thriller +119693,Elfie Hopkins: Cannibal Hunter (2012),Horror|Thriller +119695,The Evictors (1979),Crime|Drama|Horror|Mystery|Thriller +119697,On the Ice (2011),Drama|Thriller +119699,The Case of the Scorpion's Tail (1971),Mystery|Thriller +119701,Let It Snow (2013),Children|Drama|Romance +119703,Chasing Christmas (2005),Comedy|Fantasy +119705,Piranhaconda (2012),Horror|Sci-Fi +119714,Corner Gas: The Movie (2014),Comedy +119752,Charleston (1974),Comedy|Crime +119754,Common (2014),Crime|Drama +119756,Corrupt (1999),Action|Crime|Drama|Thriller +119758,Woman of Antwerp (1948),Drama +119760,Love Without Pity (1989),Comedy|Romance +119762,Ethel (2012),Documentary +119764,Evil Eyes (2004),Horror +119766,Exit Smiling (1926),Comedy|Romance +119768,Exposure (2001),Romance|Thriller +119770,Fanny (2013),Drama +119772,Fast and Loose (1939),Comedy|Crime|Drama|Mystery +119774,Fast Company (1938),Comedy|Drama|Mystery|Romance +119776,Father is a Bachelor (1950),Children|Comedy +119778,Fearless Fagan (1952),Comedy +119780,Fearless Frank (1967),Comedy|Fantasy +119782,FernGully 2: The Magical Rescue (1998),Adventure|Animation|Children|Fantasy +119788,Fiesta (1947),Musical +119790,Fight for your Life (1977),Crime|Drama|Thriller +119792,Fighter Squadron (1948),Action|War +119794,Fighting Mad (1976),Action|Drama +119796,Filthy Gorgeous: The Bob Guccione Story (2013),Documentary +119798,Final (2001),Drama|Sci-Fi|Thriller +119800,Family Way (2012),Comedy|Romance +119802,Miss Minoes (2001),Children|Comedy|Fantasy +119804,Crazy for Christmas (2005),Children +119808,Arizona Colt Returns (1970),Western +119810,Giovannona Long-Thigh (1973),Comedy +119812,The Violent Professionals (1973),Crime|Drama +119814,High School Girl (1974),Comedy +119816,Summer to Remember (1974),Drama +119818,Gambling City (1975),Crime|Drama +119820,Silent Action (1975),Action|Crime|Drama +119822,The Suspicious Death of a Minor (1975),Comedy|Crime|Thriller +119826,Sex with a Smile (1976),Comedy +119828,A Man Called Blade (1977),Action|Drama|Thriller|Western +119830,The Mountain of the Cannibal God (1978),Adventure|Horror +119832,Screamers (1979),Action|Horror +119834,"Saturday, Sunday and Friday (1979)",Comedy +119836,The Great Alligator (1979),Horror +119838,"Wife on Vacation, Lover in Town (1980)",Comedy +119840,"Sugar, Honey and Pepper (1980)",Comedy +119842,Cream Horn (1981),Comedy +119844,Don't Play with Tigers (1982),Comedy +119846,The Scorpion with Two Tails (1982),Horror +119850,"Acapulco, First Beach... To the Left (1983)",Comedy +119856,Hands of Steel (1986),Action|Sci-Fi +119858,Casablanca Express (1989),Action|War +119860,The Opponent (1988),Comedy|Drama +119866,The Smile of the Fox (1992),Thriller +119868,Craving Desire (1993),Drama|Thriller +119870,The Fishmen and Their Queen (1995),Adventure|Horror|Sci-Fi +119874,Trainer on the Beach 2 (2008),Comedy +119878,Solomon Northup's Odyssey (1984),(no genres listed) +119896,The Plot to Kill Hitler (1990),Drama|War +119898,Class of '61 (1993),Action|Adventure|Drama +119901,Sharpe's Gold (1995),Action|Adventure|War +119904,Sharpe's Battle (1995),Action|Adventure|War +119907,Sharpe's Sword (1995),Action|Adventure|War +119909,Sharpe's Eagle (1993),Action|Adventure|War +119929,Back to School with Franklin (2003),Animation|Children +119946,The New Babylon (1929),Drama +119948,Let's Kill Ward's Wife (2014),Comedy +119950,The Magnificent Trio (1966),Action|Drama|Romance +119954,Force of Execution (2013),Action|Crime +119956,The Alternate (2000),Action|Drama +119958,Operation Delta Force (1997),Action|Thriller +119960,Kaksparsh (2012),Drama +119962,Detonator (2003),Action|Drama|Thriller +119964,A Merry Friggin' Christmas (2014),Comedy +119966,Ask Me Anything (2014),Drama|Mystery|Thriller +119973,Three the Hard Way (1974),Action|Thriller +119975,"Silent Night, Deadly Night 5: The Toy Maker (1991)",Horror|Sci-Fi +119977,Santa Claus (1959),Children|Fantasy +120074,Autobus (1991),Drama|Thriller +120076,Fame High (2012),Documentary +120080,Fatal Error (1999),Action|Mystery|Sci-Fi|Thriller +120082,Final Chapter: Walking Tall (1977),Action|Crime|Drama +120084,Final Justice (1998),Drama +120088,Finders Keepers (1984),Comedy +120090,Fire with Fire (1986),Drama|Romance +120092,Fireball (2009),Action|Drama +120094,Fires Within (1991),Drama|Thriller +120096,First a Girl (1935),Comedy|Musical +120098,First Dog (2010),Children +120100,First Yank Into Tokyo (1945),Drama|War +120102,Fishtales (2008),Children|Fantasy +120104,Fitzwilly (1967),Comedy|Romance +120106,Five Guns West (1955),Western +120108,Hotel Noir (2012),Crime|Drama +120110,Jauja (2014),Drama|Western +120112,The Grump (2014),Comedy +120114,Summertime (2014),Comedy +120116,Boy Upside Down (2014),Drama +120118,The Forest (2012),Drama|Fantasy +120120,The Swedish Moment (2014),Comedy +120122,Raspberry Boat Refugee (2014),Comedy +120124,"Girl, Positive (2007)",Drama +120126,Beauty Day (2011),Documentary +120128,Everything I Can See From Here (2013),Adventure|Animation|Drama|Sci-Fi +120130,Into the Forest of Fireflies' Light (2011),Animation|Drama|Fantasy +120132,Annie (2014),Children|Comedy|Drama|Musical +120134,Doggiewoggiez! Poochiewoochiez! (2012),Comedy +120136,Castle of Blood (1964),Horror +120138,PK (2014),Comedy|Drama|Fantasy|Mystery|Romance +120140,The Devil's Widow (1970),Horror +120142,Mirage Men (2013),Documentary +120146,Boats (2013),Comedy +120198,A Yakuza's Daughter Never Cries (2010),Comedy +120200,Final: The Rapture (2013),Thriller +120202,Finders Keepers (2014),Horror|Thriller +120204,Fitzgerald (2002),Drama +120206,Five Weeks in a Balloon (1962),Action|Adventure|Comedy|Romance +120208,Flesh and Blood (1922),Drama +120210,Flesh Wounds (2011),Action|Sci-Fi|Thriller +120212,Flipper's New Adventure (1964),Adventure|Children|Drama +120214,Flirtation Walk (1934),Musical|Romance +120216,Sansa (2003),Drama +120218,Flying By (2009),Children|Drama +120220,Follow the Boys (1963),Comedy|Musical|Romance +120222,Foodfight! (2012),Action|Animation|Children|Comedy +120224,Fools for Scandal (1938),Comedy|Romance +120226,For Heaven's Sake (1950),Comedy|Drama|Fantasy +120230,For the Defense (1930),Drama +120232,For the First Time (1959),Musical +120234,Forbidden (1949),Drama|Thriller +120236,Forbidden (1953),Crime|Drama|Romance +120238,Force of Arms (1951),Drama|Romance|War +120240,Forever Lulu (2000),Comedy|Romance +120242,Forever Yours (1936),Drama|Romance +120246,Forget Me Not (2010),Romance +120248,Fort Dobbs (1958),Western +120250,Fort Massacre (1958),Western +120252,Fort Vengeance (1953),Western +120254,Fort Worth (1951),Western +120256,Fortunes of Captain Blood (1950),Action|Adventure|Romance +120258,Shaka Zulu: The Citadel (2001),Drama +120260,Four Jills in a Jeep (1944),Romance|War +120262,Four Wives (1939),Drama|Romance +120266,Framed (1947),Crime|Drama|Film-Noir +120268,Francis of Assisi (1961),Drama +120270,Frank & Jesse (1995),Western +120272,Get Crazy (1983),Comedy +120274,America: Imagine the World Without Her (2014),Documentary +120276,Symphony of the Soil (2012),Adventure|Documentary +120278,Another Me (2013),Mystery|Thriller +120280,Bang Bang (1971),Comedy +120282,Now You Know (2002),Comedy|Romance +120284,Rocks in my Pockets (2014),Animation|Comedy|Drama +120286,Daughters of Dolma (2013),Documentary +120288,Johnny Firecloud (1975),Crime|Drama|Thriller +120290,My Rainy Days (2009),Drama|Romance +120292,Bird People (2014),Drama|Fantasy|Romance +120294,It Felt Like Love (2013),Drama +120301,Miss Granny (2014),Comedy|Fantasy +120303,Girls' Club (1936),Comedy|Crime|Drama|Romance +120305,Next Time We Love (1936),Drama|Romance +120307,Intermezzo (1936),Drama|Romance +120309,Joy of Living (1938),Comedy|Musical|Romance +120311,Drishyam (2013),Children|Drama|Thriller +120313,Otakus in Love (2004),Comedy|Drama|Romance +120315,Gloriously Wasted (2012),Comedy +120317,Thunderpants (2002),Children|Comedy|Sci-Fi +120319,That Man Bolt (1973),Action|Drama +120321,Island of Terror (1966),Horror|Sci-Fi +120323,Moon Man (2012),Animation|Sci-Fi +120378,Five on the Black Hand Side (1973),Comedy +120380,The Fountain (1989),Comedy +120382,Foreign Exchange (2008),Comedy +120384,FrackNation (2013),Documentary +120386,Frankenstein (1992),Drama|Horror|Sci-Fi +120388,Louis Cyr: The Strongest Man in the World (2013),Drama +120390,Natural Selection (2011),Comedy|Drama +120392,Comet (2014),Comedy|Drama|Romance|Sci-Fi +120396,Frayed (2007),Horror|Thriller +120398,Free and Easy (1930),Comedy|Musical +120400,Free Ride (2013),Action|Drama|Thriller +120404,Freestyle (2010),Drama|Romance +120408,Friday Foster (1975),Action|Crime|Drama|Romance|Thriller +120410,From Above (2013),Drama|Romance +120412,From Time to Time (2009),Adventure|Drama|Fantasy +120414,Front Page Woman (1935),Comedy|Romance +120416,Fuchsia the Mini-Witch (2010),Children +120418,Full Clip (2006),Action|Thriller +120420,Futuresport (1998),Action|Sci-Fi|Thriller +120422,"Gaily, Gaily (1969)",Comedy +120424,Gallant Sons (1940),Mystery +120428,Gambling Lady (1934),Drama +120430,Gang in Blue (1996),Action|Crime|Drama|Thriller +120434,Gangland (2001),Action|Sci-Fi +120436,Garbo Talks (1984),Comedy|Drama +120438,Garfield Gets Real (2007),Animation|Children|Comedy +120440,Garfield's Fun Fest (2008),Animation|Children|Comedy|Fantasy +120442,George Lopez: America's Mexican (2007),Comedy +120444,"George Lopez: It's Not Me, It's You (2012)",Comedy +120446,"George Lopez: Tall, Dark & Chicano (2009)",Comedy +120448,Geronimo (1962),Action|Western +120452,Get Yourself a College Girl (1964),Comedy +120454,Ghost Son (2007),Drama|Horror|Mystery|Thriller +120458,Ghost Team One (2013),Comedy|Horror +120460,Ghosts of Goldfield (2007),Horror +120462,The Invisible Boy (2014),Fantasy|Sci-Fi +120464,The 11 Commandments (2004),Comedy +120466,Chappie (2015),Action|Thriller +120468,Toy Story Toons: Partysaurus Rex (2012),Animation|Children|Comedy +120470,The Legend of Mor'du (2012),Animation|Children +120474,Toy Story That Time Forgot (2014),Animation|Children +120476,Implanted (2013),Drama|Mystery|Sci-Fi|Thriller +120478,The Salt of the Earth (2014),Documentary +120480,"No Retreat, No Surrender 2: Raging Thunder (1987)",Action|Adventure +120482,Vincent: A Life in Color (2008),Documentary +120484,Lille Fridolf and I (1956),Comedy +120486,Daar (1993),Drama|Horror|Mystery|Romance|Thriller +120488,The Call of the Wild (1972),Adventure|Children +120490,Hotel Sahara (1951),Comedy|Romance|War +120492,Double Confession (1950),Crime|Drama +120502,Holiday Camp (1947),Adventure|Comedy|Crime|Drama +120504,Outpost in Malaya (1952),Adventure|Drama +120508,Land of Fury (1954),Adventure|Drama|Romance +120510,Value for Money (1955),Comedy|Romance +120512,Loser Takes All (1956),Comedy +120514,Three Men in a Boat (1956),Animation|Comedy|Romance +120516,Across the Bridge (1957),Crime|Drama|Thriller +120518,The Hellions (1961),Adventure|Drama|Western +120520,Underworld Informers (1963),Crime|Drama +120524,The Biggest Bundle of Them All (1968),Comedy|Crime +120534,A Master Builder (2013),Drama +120536,The Snow White Murder Case (2014),Drama|Mystery +120568,Full Grown Men (2006),Comedy|Drama +120570,Gable and Lombard (1976),Drama|Romance +120572,Gang of Roses (2003),Action|Drama|Western +120574,Gimme Shelter (2013),Drama +120576,Girl Happy (1965),Comedy|Musical|Romance +120578,Big Shot: Confessions of a Campus Bookie (2002),Drama +120580,Girls Gone Dead (2012),Comedy|Horror +120582,Girls on Probation (1938),Crime|Drama +120584,Give Me a Sailor (1938),Comedy|Romance +120586,Go for It! (2011),Drama|Musical +120588,Going Hollywood (1933),Musical|Romance +120590,Gold Diggers in Paris (1938),Comedy|Musical|Romance +120592,Gold of the Seven Saints (1961),Adventure|Western +120594,Good Day for a Hanging (1959),Western +120596,Hostile Guns (1967),Western +120598,Harvest (2010),Drama +120600,Gypsy Colt (1954),Children|Drama|Western +120602,Happiness Ahead (1934),Comedy|Musical|Romance +120604,Her Man Gilbey (1944),Comedy|Romance|War +120606,Zenobia (1939),Comedy +120608,Zebra in the Kitchen (1965),Children|Comedy +120610,Jim Breuer: And Laughter for All (2013),Comedy +120612,If I'm Lucky (1946),(no genres listed) +120614,How to Eat Your Watermelon in White Company (and Enjoy It) (2005),Documentary +120616,Hot Summer Night (1957),Crime|Drama +120618,In Vogue: The Editor?s Eye (2012),Documentary +120621,Savannah (2013),Drama|Romance +120623,3 Simoa (2012),Comedy +120625,The Fool (2014),Drama +120627,The Disappeared (2008),Documentary +120629,The Dark Matter of Love (2012),Documentary +120631,Out of the Clear Blue Sky (2012),Documentary +120633,The Call of the Wild (1976),Adventure +120635,Taken 3 (2015),Action|Crime|Thriller +120637,Blackhat (2015),Action|Crime|Drama|Mystery|Thriller +120639,Tiger Eyes (2012),Drama +120641,Santa Fe (1951),Action|Romance|Western +120729,Mexican Spitfire's Elephant (1942),Comedy|Romance +120731,Revolt of the Slaves (1960),Adventure +120733,Mexican Spitfire Sees a Ghost (1942),Comedy +120735,Love Chronicles (2003),Drama|Romance +120737,Last of the Buccaneers (1950),Action|Adventure|War +120739,The Mexican Spitfire's Baby (1941),Comedy +120741,Memed My Hawk (1984),Drama +120743,Mexican Spitfire at Sea (1942),Comedy +120747,Let Freedom Ring (1939),Drama|Musical|Romance +120749,Mexican Spitfire Out West (1940),Comedy +120751,Home of the Brave (2004),Documentary +120753,City Cops (1989),Action|Thriller +120755,Miami Exposé (1956),Crime|Drama +120759,Odd Girl Out (2005),Drama +120761,By the Law (1926),Drama +120763,Queen Sized (2008),Comedy|Drama +120765,Tru Confessions (2002),Children|Comedy|Drama +120767,All the Fine Young Cannibals (1960),Drama|Romance +120769,Headfirst (2014),Drama +120771,"Eila, Rampe and Likka (2014)",Comedy +120773,Lady Liberty (1971),Comedy +120775,Night Train (1959),Drama|Mystery|Thriller +120777,Somersault (1965),Drama +120779,Korso (2014),Drama +120781,Nocturna (2007),Adventure|Animation|Children|Fantasy|Mystery +120783,Son of a Gun (2014),Action|Crime|Drama +120785,The Land (1942),Documentary +120787,Grass: A Nation's Battle for Life (1925),Documentary +120789,City in the Sea (1965),Adventure|Fantasy|Sci-Fi +120791,Naughty Girl (1956),Comedy|Musical|Romance +120793,The Vixen (1969),Comedy +120795,The Big Shave (1968),Drama|Horror +120799,Terminator Genisys (2015),Action|Adventure|Sci-Fi|Thriller +120801,Bad Day on the Block (1997),Drama|Thriller +120803,Those Awful Hats (1909),Comedy +120805,Robin Williams: Weapons of Self Destruction (2009),Comedy +120807,John Mulaney: New In Town (2012),Comedy +120809,Come Dance with Me! (1959),Crime|Drama|Mystery +120811,Patton Oswalt: Finest Hour (2011),Comedy +120813,Patton Oswalt: My Weakness Is Strong (2009),Comedy +120815,Patton Oswalt: Werewolves and Lollipops (2007),Comedy +120817,Kevin Nealon: Now Hear Me Out! (2009),Comedy +120819,"Kevin Nealon: Whelmed, But Not Overly (2012)",Comedy +120821,The War at Home (1979),Documentary|War +120823,One Bright Shining Moment (2005),Documentary +120825,The Woman in Black 2: Angel of Death (2015),Drama|Horror|Thriller +120827,The Hound of the Baskervilles (1988),Crime|Drama|Horror|Mystery +120829,Scattered Clouds (Midaregumo) (1967),Drama +120831,Dealin' with Idiots (2013),Comedy +120833,Super Capers (2009),Action|Adventure|Comedy|Fantasy|Sci-Fi +120835,Fight for Your Right Revisited (2011),Comedy +120837,Busting (1974),Crime|Drama +120839,Comes a Bright Day (2012),Romance +120841,Frankenstein (2004),Drama|Horror|Sci-Fi|Thriller +120843,"North and South, Book II (1986)",Drama|Romance|War +120845,Penthouse North (2013),Drama|Mystery|Thriller +120847,Johan Falk: GSI (2009),Action|Crime|Thriller +120849,Johan Falk: Brothers in Arms (2009),Action|Crime|Thriller +120851,Cheeky Girls (2008),Comedy +120853,Fresh Guacamole (2012),Animation +120855,Adam and Dog (2012),Animation +120857,Bloodsuckers (2005),Action|Horror|Sci-Fi +120861,Animal (1977),Action|Comedy|Romance +120865,Jean-Luc Cinema Godard (2009),Documentary +120867,Tropico (2013),Drama|Fantasy|Romance +120869,Employees Leaving the Lumière Factory (1895),Documentary +120871,A Night at the Movies: The Horrors of Stephen King (2011),Documentary|Horror +120873,A Night at the Movies: The Suspenseful World of Thrillers (2009),Documentary +120875,"White, Red and Verdone (1981)",Comedy +120877,Talcum Powder (1982),Comedy +120879,Soap and Water (1983),Comedy +120881,The Two Policemen (1984),Comedy +120883,Great! (1986),Comedy +120885,Me and My Sister (1987),Comedy +120887,Classmates (1988),Comedy|Drama +120889,The Child and the Policeman (1989),Comedy +120891,Damned the Day I Met You (1992),Comedy +120895,Let's Not Keep in Touch! (1994),Comedy +120897,Honeymoons (1995),Comedy +120901,I'm Crazy About Iris Blond (1996),Comedy|Romance +120903,Grouse (1998),Comedy +120905,A Chinese in a Coma (2000),Comedy +120907,Love is Eternal While It Lasts (2004),Comedy|Romance +120909,What Fault Is It of Ours? (2003),Comedy +120911,My Best Enemy (2006),Comedy +120913,"Big, Large and Verdone (2008)",Comedy +120917,A Flat for Three (2012),Comedy|Drama +120919,Man on High Heels (2014),Action|Comedy +120921,Miss Zombie (2013),Horror +120925,Shinbone Alley (1970),Animation|Comedy|Fantasy|Musical|Romance +120928,Lullaby (2014),Drama +120930,Over Your Dead Body (2014),Horror +120934,Korengal (2014),Documentary|War +120936,The Hire: Powder Keg (2001),Action +120938,The Hire: Chosen (2001),Action +120940,The Hire: Ambush (2001),Action +120942,The Hire: Ticker (2002),Action|Adventure +120944,The Hire: Beat the Devil (2002),Action|Adventure|Comedy +120946,The Hire: Hostage (2002),Action|Adventure|Crime|Thriller +120948,"Pancho, the Millionaire Dog (2014)",Children|Comedy +120950,The Reef 2: High Tide (2012),Animation|Children|Musical +120952,Filly Brown (2012),Drama +121003,Winter of Discontent (2012),Drama +121005,The Nautical Chart (2007),Adventure +121007,Space Buddies (2009),Adventure|Children|Fantasy|Sci-Fi +121009,All Relative (2014),Comedy|Drama|Romance +121011,Imagine I'm Beautiful (2014),Drama +121013,The Body of My Enemy (1976),Crime|Drama|Mystery|Thriller +121015,Pasha (1968),Crime|Drama +121017,The Gentleman from Epsom (1962),Comedy|Crime +121019,The Great Spy Chase (1964),Action|Comedy|Thriller +121021,Taxi for Tobruk (1961),Drama|War +121023,Viy (2014),Adventure|Fantasy|Mystery|Thriller +121025,"Excuse Me Darling, But Lucas Loved Me (1997)",Comedy +121027,Stay (2013),Drama +121029,No Distance Left to Run (2010),Documentary +121031,Santos (2008),Adventure|Comedy|Fantasy|Romance +121033,A Patriotic Man (2013),Comedy|Drama +121035,Houdini (2014),Drama +121037,Is There Sex After Death? (1971),Comedy +121039,A Night for Dying Tigers (2010),Drama +121041,June Night (1940),Drama +121043,"We, the Women (1953)",Comedy +121045,Fear (1954),Drama +121047,Hedda Gabler (1963),Drama +121049,A Walk in the Spring Rain (1970),Drama|Romance +121051,A Matter of Time (1976),Drama|Fantasy|Romance +121053,Angele (1934),Drama +121055,Harvest (1937),Drama +121057,The Well-Digger's Daughter (1940),Comedy|Drama|Romance +121059,Topaze (1951),Comedy +121061,Manon of the Spring (1952),Drama +121063,The House on 56th Street (1933),Drama +121065,The Woman in Red (1935),Drama +121067,The Florentine Dagger (1935),Crime|Drama|Film-Noir|Mystery|Romance +121069,Go Into Your Dance (1935),Crime|Drama|Musical|Romance +121071,Don't Bet On Blondes (1935),Comedy|Romance +121073,Daughter of Shanghai (1937),Crime|Drama|Romance +121075,Dangerous to Know (1938),Crime|Drama +121077,Meet Boston Blackie (1941),Crime|Drama +121079,Dangerously They Live (1941),Drama|Romance|Thriller|War +121081,Lady Gangster (1942),Crime|Drama +121083,God is My Co-Pilot (1945),Action|Adventure|War +121085,Danger Signal (1945),Crime|Drama|Film-Noir +121087,Tarzan and the Mermaids (1948),Action|Adventure|Romance +121089,Rogues' Regiment (1948),Action|Adventure|Film-Noir|Thriller|War +121091,Outpost in Morocco (1949),Action|Adventure +121093,The Crooked Way (1949),Crime|Drama|Film-Noir +121095,The Color of Rain (2014),Drama +121097,To Grandmother's House We Go (1992),Adventure|Children|Comedy +121099,101 Dalmatians II: Patch's London Adventure (2003),Animation|Children +121101,Riptide (1949),Drama +121103,Justin Bieber: Never Say Never (2011),Documentary +121109,Van Wilder: Freshman Year (2009),Comedy +121111,V (1983),Drama|Sci-Fi +121113,Shriek If You Know What I Did Last Friday the Thirteenth (2000),Comedy|Horror +121115,Tarzan (2013),Adventure|Animation|Children|Drama +121117,Highlander: The Source (2007),Action|Adventure|Fantasy|Sci-Fi +121119,"North and South, Book I (1985)",Drama|Romance|War +121122,Seed (2006),Horror +121124,StreetDance 2 (2012),Drama|Romance +121126,The Car (1977),Horror|Mystery|Thriller +121129,The Hungover Games (2014),Comedy +121133,Ishq (1997),Action|Comedy|Drama|Musical|Romance +121135,Nurse 3D (2013),Horror|Thriller +121137,Wrong Turn 5: Bloodlines (2012),Horror|Thriller +121139,How the West Was Fun (1994),Children|Western +121141,A Cry in the Wild (1990),Action|Adventure|Thriller +121143,Flu (2013),Action|Drama|Sci-Fi +121145,McCullin (2012),Documentary +121148,The Fox & the Child (2007),Adventure|Children|Drama +121150,Lili's Apron (2004),Comedy +121152,The White Haired Witch of Lunar Kingdom (2014),Action|Fantasy +121155,Kevin Hart: Let Me Explain (2013),Comedy|Documentary +121157,"Tad, the Lost Explorer (2012)",Adventure|Animation|Children|Comedy +121159,V: The Final Battle (1984),Action|Sci-Fi +121161,Tactical Force (2011),Action|Comedy|Crime|Thriller +121165,Shark Attack 3: Megalodon (2002),Horror +121167,Prowl (2010),Horror +121169,The Duke of Burgundy (2014),Drama +121171,Red Army (2014),Documentary +121173,Must Have Been Love (2012),Drama|Romance +121178,Java Heat (2013),Action|Crime|Drama|Thriller +121180,The Sasquatch Gang (2006),Comedy +121182,Peeples (2013),Comedy|Romance +121184,Save the Last Dance 2 (2006),Drama|Romance +121186,The Skeptic (2009),Horror|Thriller +121188,Room 6 (2006),Horror|Mystery|Thriller +121190,When in Rome (2002),Children|Comedy +121192,The Expelled (2010),Horror|Thriller +121194,Tyler Perry's The Single Moms Club (2014),Comedy|Drama +121196,Nothing Left to Fear (2013),Horror +121198,Lake Dead (2007),Horror|Thriller +121202,Hansel & Gretel (2007),Drama|Fantasy|Horror|Mystery|Thriller +121205,Nine Lives (2002),Horror|Thriller +121207,The Power of Few (2013),Action|Crime|Drama|Mystery|Thriller +121209,Unearthed (2007),Horror|Mystery|Sci-Fi|Thriller +121211,Major Movie Star (2008),Adventure|Comedy|Drama|War +121217,Gun (2010),Action|Crime|Thriller +121219,Rest Stop: Don't Look Back (2008),Horror|Thriller +121221,Sabata (1969),Action|Western +121223,The Reunion (2011),Action|Drama +121225,I Am Ali (2014),Documentary +121227,Supermensch: The Legend of Shep Gordon (2013),Documentary +121229,Lady Cocoa (1975),Crime|Drama +121231,It Follows (2014),Horror +121233,Take a Girl Like You (1970),Comedy|Drama|Romance +121235,The Anomaly (2014),Action|Sci-Fi|Thriller +121237,Sinbad: The Fifth Voyage (2014),Action|Adventure|Fantasy +121239,A Life in Dirty Movies (2013),Documentary +121241,Sweeney Todd: The Demon Barber of Fleet Street (1982),Drama|Horror|Musical|Thriller +121243,Touchback (2011),Children|Drama|Fantasy +121245,Unit 7 (2012),Action|Drama|Thriller +121247,Wishmaster 3: Beyond the Gates of Hell (2001),Fantasy|Horror +121249,The Magical Legend of the Leprechauns (1999),Adventure|Children|Comedy|Fantasy|Romance +121251,Thunderstruck (2012),Children|Comedy +121253,The Town that Dreaded Sundown (2014),Horror|Thriller +121255,White Elephant (2012),Drama +121257,The Alternate (2012),Action|Sci-Fi|Thriller +121259,The Tattooist (2007),Horror|Thriller +121261,Leprechaun: Back 2 Tha Hood (2003),Comedy|Fantasy|Horror +121263,Summer's Moon (2009),Horror|Thriller +121265,The Stranger (2010),Action|Thriller +121267,No Man's Land: The Rise of Reeker (2008),Horror|Thriller +121269,The Shortcut (2009),Horror|Mystery|Thriller +121271,Sometimes They Come Back... Again (1996),Horror +121273,The Dentist 2 (1998),Crime|Horror|Mystery|Thriller +121275,Highway to Hell (1991),Action|Comedy|Fantasy|Horror +121277,U.F.O. (2012),Action|Sci-Fi +121279,Little Lord Fauntleroy (1980),Children|Drama|Romance +121282,Horror on Snape Island (1972),Horror +121284,The Six Wives of Henry Lefay (2009),Comedy +121286,Swinging with the Finkels (2011),Comedy|Romance +121288,The Power and the Glory (1961),Drama +121290,The Girl from Nagasaki (2013),Drama|Romance +121292,San Diego I Love You (1944),Comedy +121294,Man Exposed (2006),Comedy|Drama +121296,All Fall Down (1962),Drama +121298,Over My Dead Body (1995),Comedy|Fantasy|Romance +121300,Run If You Can (2010),Drama +121302,Someone's Gaze (2013),Animation +121304,Time Freak (2011),Comedy|Sci-Fi +121306,Above Us Only Sky (2011),Drama +121308,Goodbye to Language 3D (2014),Drama +121310,The Perfect World of Kai (2007),Animation|Drama +121312,Planet of Dinosaurs (1977),Drama|Sci-Fi +121314,The Berlin File (2013),Action|Drama|Thriller +121316,The Attorney (2013),Drama +121318,The Hatchet Man (1932),Crime|Drama +121320,Twelve Angry Men (1963),Drama +121324,Dot and the Whale (1986),Animation|Children +121326,The Blood of Fu Manchu (1968),Adventure|Crime|Horror +121328,All Things Fall Apart (2011),Drama +121330,Altitude (2010),Horror|Mystery|Thriller +121332,Big City (1937),Drama +121336,Big City (2007),Adventure|Children|Western +121338,Carry on Cabby (1963),Adventure|Comedy|Romance +121340,Carry on Behind (1975),Comedy +121342,Carry on Cruising (1962),Comedy|Romance +121344,Che! (1969),Drama +121346,China Girl (1987),Crime|Drama|Romance +121348,China Girl (1942),Drama +121350,Cops and Robbers (1973),Comedy|Crime +121352,Never a Dull Moment (1968),Children|Comedy|Crime +121354,Cyrus: Mind of a Serial Killer (2010),Crime|Horror|Mystery|Thriller +121356,Deep Winter (2008),Action|Adventure +121358,Blind Alley (2011),Action|Horror|Thriller +121360,Evel Knievel (1971),Action|Drama +121362,Oviri (1986),Drama +121364,Memories of My Melancholy Whores (2011),Comedy|Drama|Romance +121366,Get a Horse! (2013),Animation|Children|Comedy +121368,Gidget Goes to Rome (1963),Comedy|Romance +121370,Happy New Year (2014),Action|Comedy|Crime|Drama|Musical|Romance +121372,Bill Burr: Let It Go (2010),Comedy +121374,Bill Burr: Why Do I Do This? (2008),Comedy +121376,Pride of the Bowery (1940),Comedy|Drama +121378,His Way (2011),Documentary +121380,Into the Sun (1992),Action|Comedy +121382,Jack the Giant Killer (2013),Action|Fantasy +121384,Jungle Moon Men (1955),Action|Adventure|Fantasy +121386,Lady of the Tropics (1939),Drama|Romance +121388,His Brother's Wife (1936),Drama|Romance +121390,Lost Boundaries (1949),Drama +121395,Mother is a Freshman (1949),Comedy +121397,Ash Wednesday (1973),Drama|Mystery +121399,The Bell Jar (1979),Drama +121401,Love Child (1982),Crime|Drama|Romance +121403,Elvis and Me (1988),Drama|Romance +121405,Wired (1989),Comedy|Drama|Fantasy +121407,Child of Rage (1992),Drama|Mystery +121409,Christmas Every Day (1996),Children|Comedy|Fantasy +121413,Picture This (2008),Comedy|Drama|Romance +121415,Going Straight (1916),Crime|Drama +121417,Scorned (1994),Drama|Thriller +121419,Mardi Gras: Spring Break (2011),Comedy +121421,Teenage Rebel (1956),Drama +121423,That's Right - You're Wrong (1939),Comedy +121426,The Face of Marble (1946),Horror +121430,The Horsemen (1971),Action|Adventure|Drama +121432,The Man Who Shook the Hand of Vicente Fernandez (2012),Comedy|Drama|Western +121434,The Night Fighters (1960),Action|Drama|Romance|War +121436,The Squeeze (1987),Action|Comedy|Crime|Romance|Thriller +121438,The Squeeze (1978),Comedy|Crime|Drama +121440,Young Billy Young (1969),Romance|Western +121442,Whispering Smith (1948),Western +121444,Journey to the End of the Night (2006),Drama|Thriller +121447,The Bride (1985),Horror|Romance|Sci-Fi|Thriller +121449,Wishmaster 4: The Prophecy Fulfilled (2002),Fantasy|Horror|Romance +121451,Will (2012),Children|Drama +121453,Lizzie Borden Took an Ax (2014),Crime|Drama|Mystery|Thriller +121455,Tim (1979),Drama|Romance +121457,Switching Goals (1999),Children|Comedy +121459,Wrong Side of Town (2010),Action|Crime +121461,Snowboard Academy (1996),Comedy +121463,The End (2012),Drama|Sci-Fi|Thriller +121465,The White Buffalo (1977),Western +121467,Shark Attack (1999),Action|Horror +121469,Killer Movie (2008),Comedy|Horror|Mystery|Thriller +121471,Operation Delta Force 3: Clear Target (1999),Action|Crime +121473,Sex and the Single Girl (1964),Comedy|Romance +121475,The Wizard of Gore (2007),Horror|Mystery +121477,Python (2000),Comedy|Horror|Sci-Fi|Thriller +121479,No Thank You (2014),Comedy +121481,Grave Halloween (2013),Horror +121483,At the Devil's Door (2014),Horror +121485,Reaching for the Moon (2013),Drama|Romance +121487,Beneath the Harvest Sky (2013),Drama +121489,Hotel Very Welcome (2007),Comedy|Drama +121491,Off Beat (2004),Drama|Romance +121493,"Love, Money, Love (2000)",Drama|Romance +121495,Garbage Prince (2011),Comedy|Drama|Romance +121501,Cross Mission (1988),Action +121503,Ator the Iron Warrior (1987),Action|Adventure|Drama|Fantasy|Romance +121511,The Mafia Triangle (1981),Crime|Drama +121515,Beast in Space (1980),Sci-Fi +121517,Star Odyssey (1979),Sci-Fi +121519,The New Godfathers (1979),Crime +121527,Battle of the Stars (1978),Action|Sci-Fi +121533,War of the Planets (1977),Adventure|Sci-Fi +121537,The Weight of Elephants (2013),Drama +121545,Lisztomania (1975),Comedy|Fantasy|Musical +121549,Super Stooges vs the Wonder Women (1974),Action|Adventure|Comedy|Fantasy|Sci-Fi +121551,Battle of the Amazons (1973),Action|Fantasy +121553,Naked Girl Killed in the Park (1972),Horror|Thriller +121557,A Suitcase for a Corpse (1970),Horror|Thriller +121561,Cry of Death (1968),Western +121563,Hell in Normandy (1968),Drama|War +121565,If One is Born a Swine (1967),Western +121567,Killer Caliber .32 (1967),Action|Romance|Western +121573,The Conqueror of Atlantis (1965),Action|Adventure|Drama|Fantasy +121577,Revolt of the Praetorians (1964),Action|Adventure|Drama +121579,Rattlers (1976),Horror +121581,Blablablá (1975),(no genres listed) +121583,The Uninvited Guest (2004),Drama|Horror|Mystery|Thriller +121586,Paradise (2013),Romance +121588,The (Dead Mothers) Club (2014),Documentary +121592,The Studio Murder Mystery (1932),Mystery +121594,Midnight Mary (1933),Crime|Drama|Romance +121596,Born to Fight (2011),Action|Children|Drama +121598,Goofy Movies Number One (1933),Comedy +121600,Bosko's Parlor Pranks (1934),Animation +121602,Wyoming Mail (1950),Western +121604,Tapia (2013),Documentary +121606,White Woman (1933),Drama +121608,Wintertime (1943),Comedy|Musical|Romance +121612,Trapped in the Closet: Chapters 23-33 (2012),Comedy|Crime|Drama|Musical +121614,Three Brave Men (1956),Drama +121618,The Great Gatsby (1926),Drama +121620,Thieves Fall Out (1941),Comedy +121622,Sing Your Worries Away (1942),Comedy|Musical +121624,One Sunday Afternoon (1948),Musical|Romance +121626,Twenty Plus Two (1961),Mystery +121628,Road to Paradise (1930),Crime|Drama +121630,The Circus Clown (1934),Comedy +121632,Merlusse (1938),Comedy|Drama +121634,Open Heart (2013),Documentary +121636,Unashamed (1932),Drama +121638,The Phoenix Rises (2012),Sci-Fi|Thriller +121640,Night in Paradise (1946),Comedy|Drama +121642,Sons O' Guns (1936),Comedy +121644,The Gift of Love (1978),Drama|Romance +121646,The Life of the Party (1930),Comedy +121648,O'Shaughnessy's Boy (1935),Drama +121650,The Loyal 47 Ronin (1958),Drama +121652,The Black Dakotas (1954),Romance|Western +121654,Week-End With Father (1951),Comedy|Romance +121656,Smart Woman (1948),Drama|Romance +121659,This Side of the Law (1950),Drama|Film-Noir|Mystery +121677,The Spiritual Boxer (1975),Action|Comedy|Drama +121679,Whiskers (1997),Children|Comedy|Fantasy +121681,Women in the Wind (1939),Adventure +121683,The Island Inside (2009),Drama +121685,Tough Guy (1936),Action|Crime|Drama +121687,Hullabaloo (1940),Comedy|Musical|Romance +121689,Roseanne Barr: Blonde and Bitchin' (2006),Comedy +121691,Out-of-Sync (1995),Crime|Drama +121693,The Lone Ranger (1938),Western +121695,Panama Lady (1939),Drama|Romance +121697,Lily Dale (1996),Drama +121699,Katt Williams: Priceless: Afterlife (2014),Comedy +121701,Tish (1942),Comedy|Drama +121703,Take a Giant Step (1959),Drama +121705,Rat Race (1980),Comedy +121707,Pets (1974),Drama +121709,That Girl from Paris (1936),Comedy|Musical|Romance +121711,Spaceflight IC-1: An Adventure in Space (1965),Sci-Fi +121713,Swedenhielms Family (1935),Comedy|Drama +121715,Sebastian Maniscalco: What's Wrong with People? (2012),Comedy +121719,The Unholy Garden (1931),Drama|Romance +121721,"Tarzan, the Ape Man (1959)",Action|Adventure +121723,My Six Convicts (1952),Comedy|Drama +121725,Wings for the Eagle (1942),Drama +121727,Samurai Vendetta (1959),Action|Drama +121729,The Challenge (1970),Drama|War +121731,The Shanghai Chest (1948),Comedy|Crime|Mystery|Thriller +121733,Newcastle (2008),Drama +121735,Mr. Denning Drives North (1952),Crime|Drama|Mystery +121737,Something for the Boys (1944),Comedy|Musical +121739,The Long Haul (1957),Drama +121741,The Cheat (1950),Drama +121743,Postmark for Danger (1955),Crime|Drama +121745,Memorial Day (1998),Action|Thriller +121749,War Drums (1957),Action|Drama|Romance|Western +121751,Twist of Fate (1954),Drama|Mystery +121753,Triplecross (1995),Action|Crime|Romance|Thriller +121755,The Eddie Cantor Story (1953),Drama +121757,Twelve Thirty (2010),Drama +121759,Roseanna McCoy (1949),Drama +121761,Up Goes Maisie (1946),Comedy +121767,"See You Tomorrow, Everyone (2013)",Drama +121769,Vice Raid (1960),Crime|Drama +121771,The Thirteenth Chair (1937),Drama +121773,They Learned About Women (1930),Drama|Musical +121775,Kim (1984),Adventure|Children|Drama +121777,Rebirth (2011),Documentary +121779,Skateland (2010),Drama +121781,Stuart Little 3: Call of the Wild (2005),Animation|Children|Comedy|Fantasy +121783,The Depraved (2011),Horror|Thriller +121785,The Substitute 2: School's Out (1998),Action|Thriller +121787,Shadow People (2013),Horror|Thriller +121790,Seventh Moon (2008),Horror|Thriller +121792,Snow Queen (2002),Adventure|Children|Fantasy +121794,Sacrifice (2011),Action|Crime|Thriller +121797,The Old Maid (1939),Drama +121799,Maniac Cop 3: Badge of Silence (1993),Action|Horror +121801,Step by Step (1946),Crime|Drama|Mystery|Thriller +121803,The Return of Mr. Moto (1965),Crime|Drama|Mystery|Thriller +121805,The Old Corral (1936),Crime|Musical|Western +121807,The Getaway (1941),Crime|Drama|Mystery|Romance +121809,Hate Thy Neighbor (1968),Action|Drama|Western +121811,Pimp Bullies (2011),Action|Crime|Thriller +121813,"Rich Man, Poor Girl (1938)",Comedy|Drama|Romance +121815,Pink Saris (2010),Documentary|Drama +121817,Richness of Internal Space (2012),Drama +121819,The Last Posse (1953),Western +121821,The Dancer (2011),Drama|Romance +121823,Montana Amazon (2012),Adventure|Comedy|Drama +121825,Witch's Night Out (1978),Animation|Children +121827,The Devil's Mask (1946),Action|Adventure|Crime|Mystery|Thriller +121829,Kings Point (2012),Comedy|Documentary|Drama +121831,The Seventh Sin (1957),Drama +121837,State's Attorney (1932),Drama +121839,Shadow of Doubt (1935),Comedy|Mystery +121841,Mantle (2005),Documentary +121843,The House Across the Street (1949),Comedy|Crime|Drama|Romance +121845,Onibi: The Fire Within (1997),Drama|Thriller +121847,Pickup Alley (1957),Action|Crime|Drama|Thriller +121849,Long Day's Journey Into Night (1987),Drama +121851,The Golden Hawk (1952),Action|Adventure|Romance|War +121853,The Return of Joe Rich (2011),Comedy|Drama +121855,Season of Passion (1959),Comedy|Drama|Romance +121857,Too Tough to Die: A Tribute to Johnny Ramone (2006),Documentary +121859,The Formula (2014),Comedy|Romance +121861,The Member of the Wedding (1997),Drama|Romance +121863,Without Pity (1948),Crime|Drama +121867,Where Do We Go from Here? (1945),(no genres listed) +121869,Most Dangerous Man Alive (1961),Sci-Fi +121873,The Man in Possession (1931),Comedy +121875,Submarine (1928),Action|Drama +121877,Two Loves (1961),Drama +121879,Method to the Madness of Jerry Lewis (2011),Documentary +121881,Son of a Gunfighter (1965),Western +121883,The Housekeeper's Daughter (1939),Comedy +121885,Silver Dollar (1932),Drama +121887,The Innocents (1987),Drama +121889,The Four Feathers (1929),Adventure|Drama|Romance|War +121891,The Jackals (1967),Adventure|Western +121895,Next Time I Marry (1938),Comedy|Romance +121897,Tip on a Dead Jockey (1957),Crime|Drama +121899,The Girl in White (1952),Drama +121901,The Debt (2003),Crime|Thriller +121903,Land Raiders (1969),Action|Western +121907,Lady Scarface (1941),Comedy|Crime|Drama|Romance +121909,The Hidden Eye (1945),Mystery +121911,Mine Own Executioner (1947),Drama|Thriller +121913,Mexican Spitfire (1940),Comedy +121917,The Green Years (1963),Drama +121919,The Good Mother (2013),Drama|Mystery|Thriller +121921,The Arnelo Affair (1947),Crime|Drama|Film-Noir|Romance +121923,Rising Stars (2010),Children|Drama +121925,The Secret of Madame Blanche (1933),Drama|Romance +121927,The Kansan (1943),Romance|Western +121929,Looking Forward (1933),Drama +121931,Passion Flower (1930),Drama +121933,The Beat Generation (1959),Crime|Drama|Thriller +121935,Take Care of My Little Girl (1951),Drama +121937,San Quentin (1946),Crime +121941,The Birdmen (1971),Drama|War +121943,Pretty Baby (1950),Comedy +121945,Made in Romania (2010),Comedy +121947,The Doctor and the Girl (1949),Drama|Romance +121949,Johnny Allegro (1949),Crime|Drama|Film-Noir +121951,Walk a Crooked Mile (1948),Crime|Drama|Film-Noir +121953,Prey of the Jaguar (1996),Action|Thriller +121955,Lord Jeff (1938),Crime|Drama +121957,Thunder in the Sun (1959),Western +121959,Haunting of the Innocent (2014),Horror|Thriller +121963,"Live, Love and Learn (1937)",Comedy +121965,The Boys (1962),Crime|Drama +121967,Tender Scoundrel (1966),Comedy|Crime +121969,Once Before I Die (1966),Drama|War +121973,Jungle Man-Eaters (1954),Adventure +121975,My Life with Caroline (1941),Comedy +121977,Pilot #5 (1943),Drama|Romance|War +121981,The Kill Hole (2012),Action|Thriller|War +121983,This Man is Mine (1934),Drama|Romance +121985,Princess and the Pony (2011),Children|Drama +121987,"Guns, Girls, and Gangsters (1959)",Crime|Drama +121989,Judge Hardy's Children (1938),Comedy|Romance +121991,Wicked as They Come (1956),Crime|Drama|Mystery +121993,Night Court (1932),Crime|Film-Noir|Thriller +121997,The People vs. Dr. Kildare (1941),Drama +121999,Valley of Head Hunters (1953),Adventure +122001,Sally (1929),(no genres listed) +122003,The Horror of It All (1964),Comedy|Horror +122005,White T (2013),Comedy +122007,The King and the Chorus Girl (1937),Comedy|Romance +122009,Loose Ankles (1930),Comedy|Romance +122011,Voodoo Tiger (1952),Adventure +122013,The White Sister (1933),Drama|Romance +122015,Sergio (2009),Documentary +122017,The Hardys Ride High (1939),Comedy +122019,Two is a Happy Number (1972),Drama +122021,Lady with a Past (1932),Comedy|Romance +122023,Sacred Planet (2004),Documentary +122025,Somewhere Tonight (2011),Comedy|Drama|Romance +122027,Roman Polanski: Odd Man Out (2012),Documentary +122029,The Hound of the Baskervilles (2002),Adventure|Drama|Horror|Mystery +122031,Psych:9 (2010),Horror|Mystery|Thriller +122033,Her Best Move (2007),Children|Comedy|Romance +122035,Tarzan and the Amazons (1945),Action|Adventure|Romance +122037,The Bone Snatcher (2003),Horror|Sci-Fi +122039,Snow Buddies (2008),Adventure|Children +122041,Trust Me (2013),Comedy|Drama +122043,The Haunting Hour: Don't Think About It (2007),Children|Fantasy|Horror|Thriller +122045,The Time of Their Lives (1946),Comedy|Fantasy|Romance|Thriller +122048,The Message (2009),Crime|Drama|Thriller|War +122050,The Gene Generation (2007),Action|Sci-Fi +122054,The Old Maid (1972),Comedy +122056,The Garden Murder Case (1936),Drama|Mystery +122058,Spring is Here (1930),Comedy|Musical|Romance +122060,School for All (2006),Comedy +122062,The Elephant Man (1982),Drama +122064,No Questions Asked (1951),Drama|Film-Noir +122066,Night of the Warrior (1991),Action +122068,Last Sunset (2006),Romance|Thriller +122070,Maisie Gets Her Man (1942),Comedy|Romance +122072,The Navy Comes Through (1942),Drama|War +122074,Riffraff (1947),Adventure|Comedy|Drama|Thriller +122076,The Condemned (2012),Drama|Mystery +122078,The Toy Wife (1938),Drama +122082,On the Inside (2011),Drama|Thriller +122084,Solomon and Sheba (1959),Drama|Romance|War +122086,The Heavy (2010),Action|Thriller +122088,Water (1985),Adventure|Comedy|Drama +122090,Ground Control (1998),Action|Adventure|Drama|Thriller +122092,Guy X (2005),Comedy|War +122094,Perkins' 14 (2009),Horror|Thriller +122096,Tell Them Willie Boy is Here (1969),Drama|Western +122098,The Hunters (2011),Crime|Horror|Thriller +122100,The Sea Chase (1955),Action|Drama|War +122102,Incubus (2006),Horror|Mystery|Thriller +122104,Kevin Hart: Seriously Funny (2010),Comedy +122106,Shark Attack 2 (2000),Horror|Thriller +122108,The Reptile (1966),Horror +122110,Winnetou: The Red Gentleman (1964),Adventure|Western +122127,One Husband Too Many (2010),Comedy|Romance +122129,Scooby-Doo! Camp Scare (2010),Adventure|Animation|Children|Comedy|Mystery +122131,Half of a Yellow Sun (2013),Drama|Romance +122133,"Hey There, It's Yogi Bear (1964)",Adventure|Animation|Children|Comedy|Romance +122135,Top Sensation (1969),Thriller +122137,The Sweet Body of Deborah (1968),Drama|Horror|Mystery|Thriller +122141,So Sweet... So Perverse (1969),Mystery|Thriller +122143,Men to Kiss (2012),Comedy|Romance +122145,Little Fridolf Becomes a Grandfather (1957),Comedy +122149,Bummer (1973),Action|Comedy|Drama|Horror|Thriller +122151,The Stranger's Return (1933),Comedy|Drama +122153,Mr. Soft Touch (1949),Crime|Drama|Romance +122155,Weary River (1929),Drama|Romance +122157,Koran by Heart (2011),Documentary +122159,The Affairs of Martha (1942),Comedy|Romance +122161,Night and Day (1991),Drama +122163,Three Night Stand (2013),Comedy|Drama +122165,These Glamour Girls (1939),Comedy|Drama +122167,Slander (1957),Crime|Drama|Film-Noir +122173,Scarlet Dawn (1932),Drama|Romance +122186,Sleepers West (1941),Crime|Drama +122189,The Sun Comes Up (1949),Children|Drama +122191,The Hangman (1959),Action|Western +122193,Kit Carson (1940),Romance|Western +122197,Paradise for Three (1938),Comedy|Romance +122199,The Feathered Serpent (1948),Comedy|Crime|Horror|Mystery|Thriller +122201,You're Only Young Once (1937),Comedy|Romance +122203,Mask of the Avenger (1951),Adventure|Romance +122205,In His Father's Shoes (1997),Children|Drama +122210,Jim Norton: Please Be Offended (2012),Comedy +122212,We Were Dancing (1942),Comedy|Romance +122214,The Age of Consent (1932),Drama|Romance +122216,The Secret of Dr. Kildare (1939),Drama +122218,The Sky Dragon (1949),Adventure|Comedy|Crime|Mystery|Thriller +122220,The Man Without a Map (1968),Mystery +122222,The Bride Goes Wild (1948),Comedy|Romance +122224,Stamboul Quest (1934),Drama|Romance|Thriller +122226,Two Guys from Milwaukee (1946),Comedy +122228,PT 109 (1963),Drama|War +122230,Noah's Ark (1999),Adventure|Drama|Romance +122232,Pumpkinhead: Ashes to Ashes (2006),Horror +122234,The Lookout (2012),Action|Crime|Thriller +122238,When a Stranger Calls Back (1993),Horror|Thriller +122240,Mister Magoo's Christmas Carol (1962),Animation|Children|Comedy|Drama|Fantasy|Musical +122242,Ritual (2012),Horror|Thriller +122244,Master of the World (1961),Adventure|Fantasy|Sci-Fi +122246,Tooth Fairy 2 (2012),Children|Comedy +122248,Tarzan and the Huntress (1947),Action|Adventure|Romance +122250,In Name Only (1939),Drama|Romance +122254,Love's Kitchen (2011),Comedy|Drama|Romance +122256,"Stay Away, Joe (1968)",Comedy|Musical|Western +122258,They Call Me Renegade (1987),Action|Adventure|Comedy|Western +122260,The Diary of Anne Frank (2009),Drama|War +122262,Wishcraft (2002),Horror +122264,Knights (1993),Action|Adventure|Sci-Fi +122266,The Chatterley Affair (2006),Drama|Romance +122268,Fanny Hill (2007),Drama +122270,The Suspicions of Mr. Whicher: The Murder at Road Hill House (2011),Drama|Mystery +122272,The Last Wagon (1956),Action|Adventure|Drama|Western +122274,Pumpkinhead IV: Blood Feud (2007),Horror +122276,The Philly Kid (2012),Action|Drama +122278,Ping Pong Summer (2014),Comedy +122280,Sabretooth (2002),Action|Adventure|Horror|Sci-Fi|Thriller +122282,Pride and Prejudice (1980),Comedy|Drama|Romance +122284,Sometimes They Come Back... for More (1998),Horror +122286,Kid Galahad (1962),Drama|Musical +122288,The Captains (2011),Documentary|Sci-Fi +122290,Homeboy (1988),Drama|Romance +122292,Merlin's Apprentice (2006),Adventure|Fantasy +122294,The Siege of Firebase Gloria (1989),Action|Drama|War +122296,The Bumblebee Flies Anyway (1999),Drama|Romance +122298,The Treasure of the Living Dead (1982),Horror +122300,The Land Before Time VII: The Stone of Cold Fire (2000),Adventure|Animation|Children|Fantasy +122302,The Amazing Dr. Clitterhouse (1938),Crime|Drama|Film-Noir +122304,The Freebie (2010),Comedy|Drama +122306,The Violent Kind (2010),Horror +122308,Ricky Gervais: Out of England - The Stand-Up Special (2008),Comedy +122310,Man of the East (1972),Action|Comedy|Western +122312,Oliver Twist (1997),Children|Crime|Drama +122315,Winnetou: The Last Shot (1965),Action|Adventure|Western +122317,Soccer Dog: The Movie (1999),Children|Comedy +122319,Ice Soldiers (2013),Action|Sci-Fi +122321,Maniac (1934),Horror +122323,Wild Cherry (2009),Comedy +122325,The Key (1983),Drama +122327,The Roost (2005),Horror|Thriller +122329,Sonny Boy (2011),Drama|Romance|War +122331,Vampires: The Turning (2005),Action|Horror|Thriller +122333,Siren (2010),Action|Horror|Thriller +122335,The Land Before Time IX: Journey to the Big Water (2002),Adventure|Animation|Children +122337,Love N' Dancing (2009),Drama|Romance +122339,Walking Tall: The Payback (2007),Action|Adventure|Crime|Drama|Thriller +122341,The Way West (1967),Action|Adventure|Western +122343,Shock (1946),Film-Noir|Thriller +122347,Thorne: Sleepyhead (2010),Crime|Drama|Mystery|Thriller +122349,La Mission (2009),Drama +122351,Stir of Echoes: The Homecoming (2007),Horror|Thriller +122353,Woman Undone (1996),Drama|Thriller +122355,"Outrage, The (1964)",Action|Crime|Drama|Western +122357,The Canterville Ghost (1996),Children|Drama|Fantasy +122359,Lost in the Desert (1969),Adventure|Drama|Thriller +122361,Primates of the Caribbean (2012),Animation|Children|Comedy +122363,Somewhere in Sonora (1933),Action|Comedy|Drama|Romance|Western +122365,Merton of the Movies (1947),Comedy|Romance +122367,The Sellout (1952),Crime|Drama +122369,The Gift of Love (1958),Drama|Romance +122371,Let the Good Times Roll (1973),Documentary|Musical +122373,The Vanishing American (1925),Western +122375,Gun for a Coward (1957),Western +122379,Mandela (1996),Documentary +122381,TekWar: TekJustice (1994),Sci-Fi +122383,The Legend of Gator Face (1996),Adventure|Comedy|Horror +122385,Thunder Birds (1942),Drama|Romance|War +122387,Know Thy Enemy (2009),Drama +122389,The Fastest Guitar Alive (1967),Comedy|Western +122391,Murder is My Beat (1955),Film-Noir|Mystery +122393,Sam Peckinpah's West: Legacy of a Hollywood Renegade (2004),Documentary +122395,Scorpion Spring (1996),Crime|Thriller +122397,The White Sister (1923),Drama|Romance +122399,The Naughty Flirt (1931),Comedy|Drama|Romance +122401,One Way to Valhalla (2009),Drama +122403,The Law and Jake Wade (1958),Action|Western +122406,Without Men (2011),Comedy|Romance +122409,Two Times Lotte (1950),Children|Comedy +122411,The Strange Countess (1961),Adventure|Crime +122413,The Land Before Time VIII: The Big Freeze (2001),Adventure|Animation|Children +122415,War of the Colossal Beast (1958),Horror|Sci-Fi +122417,Who's Minding the Store? (1963),Comedy +122419,Switch (2013),Action|Crime|Romance|Thriller +122421,The Six Million Dollar Man (1973),Adventure|Sci-Fi +122423,The Love Letter (1998),Fantasy|Romance +122425,The Land Before Time X: The Great Longneck Migration (2003),Adventure|Animation|Children +122427,The Brain (1962),Crime|Drama|Horror|Sci-Fi +122431,Hysteria (1965),Mystery|Thriller +122433,The Deadly Bees (1967),Horror|Mystery|Thriller +122435,They Came from Beyond Space (1967),Sci-Fi +122437,"Mumsy, Nanny, Sonny & Girly (1970)",Comedy|Horror +122439,The Vampire Happening (1971),Comedy|Horror +122441,Tales That Witness Madness (1973),Comedy|Horror|Mystery|Sci-Fi +122443,Son of Dracula (1974),Comedy|Horror +122445,Craze (1974),Crime|Horror +122447,The Ghoul (1975),Horror|Thriller +122451,Dark Tower (1989),Horror|Thriller +122453,Lost Voyage (2001),Horror|Sci-Fi|Thriller +122455,Holy Water (2009),Comedy +122458,Supernova (2005),Action|Drama|Sci-Fi +122462,Kissin' Cousins (1964),Comedy|Romance +122464,Student Services (2010),Drama|Romance +122466,JLA Adventures: Trapped in Time (2014),Action|Animation|Sci-Fi +122468,Joy Ride 3 (2014),Thriller +122470,Inside Out (2011),Crime|Drama +122472,The Karate Dog (2004),Action|Adventure|Children|Comedy|Crime +122474,Since You've Been Gone (1998),Comedy|Romance +122476,Her Minor Thing (2005),Comedy|Romance +122478,Peter and Vandy (2009),Comedy|Drama|Romance +122480,Hercules and the Amazon Women (1994),Action|Adventure|Fantasy|Sci-Fi +122482,Howling VI: The Freaks (1991),(no genres listed) +122484,The Comedians (1967),Drama +122486,Vi hade i alla fall tur med vädret (1980),Comedy +122488,Tomorrow You're Gone (2013),Thriller +122490,Wicked Blood (2014),Action|Drama|Thriller +122493,Madame X (1966),Drama +122495,Killer Pad (2008),Comedy|Horror +122497,"What Did You Do in the War, Daddy? (1966)",Comedy|War +122499,Rachel and the Stranger (1948),Western +122501,The Indian Fighter (1955),Action|Adventure|Drama|Western +122503,"Little Fish, Strange Pond (2009)",Comedy|Crime|Drama +122505,Trading Mom (1994),Children|Comedy +122509,MVP: Most Vertical Primate (2001),Comedy|Drama +122511,Air Bud: Seventh Inning Fetch (2002),Children|Comedy|Drama +122513,Chestnut: Hero of Central Park (2004),Children +122515,Spymate (2006),Adventure|Comedy +122517,Air Buddies (2006),Children|Comedy|Sci-Fi +122519,The Search for Santa Paws (2010),Adventure|Children +122521,Spooky Buddies (2011),Children|Comedy +122523,Treasure Buddies (2012),Children|Comedy +122525,Santa Paws 2: The Santa Pups (2012),Children +122527,Super Buddies (2013),Children +122529,Double Cross (1994),Crime|Drama|Romance|Thriller +122531,Malicious (1995),Drama|Thriller +122533,Breach of Trust (1995),Action|Drama|Thriller +122535,White Tiger (1996),Action +122539,Hoods (1998),Comedy|Drama +122541,The Duke (1999),Children +122543,Warlock III: The End of Innocence (1999),Fantasy|Horror +122547,Jim Thorpe -- All-American (1951),Drama +122550,Guns for San Sebastian (1968),Action|Adventure|Drama|Western +122553,Assault of the Party Nerds (1989),Comedy +122555,Assault of the Party Nerds 2 (1995),Comedy|Thriller +122557,American Black Beauty (2005),(no genres listed) +122559,Popstar (2005),Children|Comedy|Romance +122561,Miracle Dogs Too (2006),Children|Drama +122563,InSight (2011),Mystery|Thriller +122565,Imaginary Friend (2012),Thriller +122567,In The Dark (2013),Horror +122569,Non-Stop (2013),Drama|Mystery|Thriller +122571,The Wrong Woman (2013),(no genres listed) +122573,Expecting Amish (2014),(no genres listed) +122575,Rough Riders (1997),Drama +122577,The Devil's Brother (1933),Comedy +122579,TekWar: TekLab (1994),Sci-Fi +122581,Night Vision (1997),Action +122583,TekWar: TekLords (1994),Sci-Fi +122585,Madame X (1929),Drama +122587,Musical Chairs (2012),Drama|Romance +122589,Night Song (1947),(no genres listed) +122591,John Loves Mary (1949),Comedy +122593,The Underneath (2013),Horror|Sci-Fi|Thriller +122595,The Deep Six (1958),Drama|War +122597,The Greengage Summer (1961),Comedy|Drama|Romance +122599,The Delay (2012),Drama +122601,The Telegraph Trail (1933),Action|Western +122603,No Orchids for Miss Blandish (1948),Crime +122605,Two Tickets to Broadway (1951),(no genres listed) +122607,The Moonlighter (1953),Western +122609,Sex Kittens Go to College (1960),Comedy +122611,Snake Eater III: His Law (1992),Action +122613,"Mrs. Brown, You've Got a Lovely Daughter (1968)",Comedy +122615,Navy Blue and Gold (1937),Drama +122619,Nervous Ticks (1992),Comedy|Romance +122621,Man of the Moment (1955),Comedy +122623,Oliver Twist (1982),Crime|Drama +122625,Pretty Devils (2000),Comedy|Drama +122627,Oblivion 2: Backlash (1996),Sci-Fi +122629,The Underworld Story (1950),Drama +122633,Raising Genius (2004),Comedy|Drama +122635,Music for Millions (1944),Comedy|Drama +122637,The First Traveling Saleslady (1956),(no genres listed) +122639,My Gal Sal (1942),Comedy +122641,Nature Unleashed: Avalanche (2004),Action|Adventure|Thriller +122643,Wild Orchids (1929),Drama|Romance +122647,Movers & Shakers (1985),Comedy +122649,The Bates Haunting (2013),Thriller +122651,The Rainbow Tribe (2011),Children|Drama +122653,Nancy Drew... Trouble Shooter (1939),Comedy|Mystery +122655,The Karate Killers (1967),Action|Adventure|Comedy|Crime|Thriller +122657,Mosquita y Mari (2012),Drama +122659,The Defector (1966),Action +122661,No More Ladies (1935),Comedy|Romance +122663,Graveyard Shift (2005),Comedy +122665,Jabberwock Dragon Siege (2011),Action|Adventure|Fantasy +122667,Sunday Too Far Away (1975),Drama +122671,The Moon and Sixpence (1942),Drama +122673,The Basket (2000),Drama +122675,Nana (1926),(no genres listed) +122677,Heaven with a Gun (1969),Western +122679,"John Goldfarb, Please Come Home! (1965)",(no genres listed) +122681,Murder in Mind (1998),Crime|Drama|Thriller +122683,Nancy Drew and the Hidden Staircase (1939),Comedy|Crime|Mystery +122685,Palm Springs Weekend (1963),Comedy|Romance +122687,Black Horizon (2002),(no genres listed) +122689,"No Retreat, No Surrender 3: Blood Brothers (1990)",Action +122691,Moscow Chill (2007),Action|Thriller +122693,Nancy Drew: Detective (1938),Comedy|Mystery +122695,True Adolescents (2009),Comedy +122697,The Captain Hates the Sea (1934),Comedy +122699,The Little Rascals Save the Day (2014),Children|Comedy +122701,"Love, Cheat & Steal (1993)",Thriller +122703,Ticket out (2012),Thriller +122705,Mr. Billion (1977),Action|Comedy +122707,Love Nest (1951),Comedy|Drama|Romance +122709,Jigsaw (1949),Drama|Mystery|Thriller +122711,Oliver Twist (1999),(no genres listed) +122713,S*P*Y*S (1974),Action|Comedy +122715,Older Than America (2008),Drama|Thriller +122717,Murders in the Rue Morgue (1971),Crime|Drama|Horror|Thriller +122719,The Piano Player (2003),Action|Crime|Thriller +122721,Miracle in the Rain (1956),Drama|Romance +122723,The Man Who Came Back (2008),Action|Adventure|Documentary|Drama|Thriller|Western +122725,More Than a Miracle (1967),Comedy|Fantasy|Romance +122727,Waterborne (2005),Action|Drama|Thriller +122729,Oblivion (1994),Action|Documentary|Sci-Fi +122731,National Lampoon's Movie Madness (1983),Comedy +122733,Mosquito Squadron (1969),Action +122735,Night of Dark Shadows (1971),Drama|Horror|Mystery|Romance|Thriller +122737,The Thirst (2007),Horror +122739,Mostly Ghostly (2008),Children +122741,Muscle Beach Party (1964),Comedy +122743,The Old Dark House (1963),Comedy|Horror|Mystery +122745,Necrosis (2009),Horror|Thriller +122747,Hot Water (1924),Comedy +122749,The Thirteen Assassins (1963),Action|Adventure +122752,Nemesis 4: Death Angel (1996),Action|Sci-Fi|Thriller +122754,Nemesis 3: Time Lapse (1996),Action|Sci-Fi|Thriller +122756,None But the Brave (1965),Drama|War +122758,The 7 Adventures of Sinbad (2010),Action|Adventure +122760,My 5 Wives (2000),Comedy +122762,My Brother the Pig (1999),Children|Comedy|Fantasy|Sci-Fi +122764,Napoleon (1995),Adventure|Children +122766,No Tell Motel (2013),Horror +122768,The Last Resort (2009),Horror|Thriller +122770,Jack Frost (1979),Children +122772,Love Birds (2011),Comedy|Romance +122774,Monster (2008),Action|Horror|Sci-Fi +122777,The Substitute 3: Winner Takes All (1999),(no genres listed) +122779,The Road Killers (1994),Action|Crime|Drama|Thriller +122781,The Curse of the Mummy's Tomb (1964),Horror +122783,Stick (1985),Action|Adventure|Crime|Drama +122785,Tic Tac (1997),Drama|Thriller +122787,The 39 Steps (1959),Action|Adventure|Comedy|Crime|Drama|Thriller +122789,Kandahar (2010),Action|Drama +122791,Duchess and the Dirtwater Fox (1976),Comedy|Western +122793,Skyjacked (1972),Action|Thriller +122795,The Millionairess (1960),Comedy|Romance +122797,Legacy (2010),Drama|Thriller +122799,The New Centurions (1972),Action|Crime|Drama +122801,Sands Of Oblivion (2007),Action|Adventure|Drama|Horror|Sci-Fi +122803,Tempted (2001),Mystery|Romance|Thriller +122805,Piranha (1995),Horror +122807,Just 4 Kicks (2003),Children +122809,Intermedio (2005),Horror|Thriller +122811,The Last Flight (1931),(no genres listed) +122813,Space Chimps 2: Zartog Strikes Back (2010),Animation|Children +122815,Pack Up Your Troubles (1932),Comedy|War +122817,The Tooth Fairy (2006),Horror +122819,"If It's Tuesday, This Must Be Belgium (1969)",Comedy|Drama +122821,The Bad Mother's Handbook (2007),Children|Comedy|Drama|Romance +122823,Tokyo The Last Megalopolis (1988),Animation|Fantasy|Horror|Thriller +122825,Starlift (1951),(no genres listed) +122827,Keep Your Powder Dry (1945),Drama|War +122829,The Night the World Exploded (1957),Sci-Fi +122831,Latin Lovers (1953),Romance +122833,Too Young To Kiss (1951),Comedy|Romance +122835,The Finger Points (1931),Crime|Drama|Thriller +122837,Reaching for the Moon (1930),Comedy|Romance +122839,Meet the People (1944),Comedy|Romance +122841,The Firefly (1937),Drama +122843,Red Riding Hood (1989),Adventure|Children|Fantasy +122845,Seven Miles from Alcatraz (1942),Drama +122847,"Hi, Nellie! (1934)",Comedy|Crime|Drama +122849,Naked Violence (1969),Crime|Drama +122851,The Italian Connection (1972),Crime|Drama +122853,Seduction (1973),Drama +122855,Colpo in canna (1975),Action +122857,Kidnap Syndicate (1975),Crime +122859,Rulers of the City (1976),Action|Comedy|Crime +122861,To Be Twenty (1978),Comedy|Drama|Horror +122863,Madness (1980),Horror|Thriller +122865,The Violent Breed (1984),Action +122867,Maisie Goes to Reno (1944),Comedy|Romance +122869,The Hound of the Baskervilles (1972),Crime|Mystery +122876,Torrente 4: Lethal Crisis (2011),Action|Comedy|Crime +122878,Torrente 5: Operación Eurovegas (2014),Action|Comedy +122880,I Want You (2012),Drama|Romance +122882,Mad Max: Fury Road (2015),Action|Adventure|Sci-Fi|Thriller +122884,Insidious: Chapter 3 (2015),Fantasy|Horror|Thriller +122886,Star Wars: Episode VII - The Force Awakens (2015),Action|Adventure|Fantasy|Sci-Fi|IMAX +122888,Ben-hur (2016),(no genres listed) +122890,Warcraft (2016),Action|Adventure|Fantasy +122892,Avengers: Age of Ultron (2015),Action|Adventure|Sci-Fi +122896,Pirates of the Caribbean: Dead Men Tell No Tales (2017),(no genres listed) +122898,Justice League (2017),Action|Adventure|Sci-Fi +122900,Ant-Man (2015),Action|Adventure|Sci-Fi +122902,Fantastic Four (2015),Action|Adventure|Fantasy|Sci-Fi +122904,Deadpool (2016),Action|Adventure|Comedy|Sci-Fi +122906,Black Panther (2017),Action|Adventure|Sci-Fi +122908,Inhumans (2018),Action|Adventure|Sci-Fi +122910,Captain Marvel (2018),Action|Adventure|Sci-Fi +122912,Avengers: Infinity War - Part I (2018),Action|Adventure|Sci-Fi +122914,Avengers: Infinity War - Part II (2019),Action|Adventure|Sci-Fi +122916,Thor: Ragnarok (2017),Action|Adventure|Sci-Fi +122918,Guardians of the Galaxy 2 (2017),Action|Adventure|Sci-Fi +122920,Captain America: Civil War (2016),Action|Sci-Fi|Thriller +122922,Doctor Strange (2016),Action|Adventure|Sci-Fi +122924,X-Men: Apocalypse (2016),Action|Adventure|Fantasy|Sci-Fi +122926,Untitled Spider-Man Reboot (2017),Action|Adventure|Fantasy +122928,Manolito Four Eyes (1999),Comedy +122930,El Robobo De La Jojoya (1991),Comedy +122932,Elsa & Fred (2014),Children|Comedy|Romance +122934,Soccer Days (2003),Comedy +122936,Too Late Blues (1961),Drama +122938,Melbourne (2014),Drama +122940,Clear History (2013),Comedy +122942,The Identical (2014),Drama +122944,The Trans-Atlantic Mystery (1932),(no genres listed) +122946,The Gamers: Hands of Fate (2013),Comedy|Fantasy|Romance +122948,Love at First Fight (2014),Comedy|Romance +122950,Mare Nostrum (1926),War +122952,Ring Of The Musketeers (1992),Action|Adventure|Comedy +122954,Skylark (1941),Comedy|Romance +122956,The Pagan (1929),Drama +122958,Scorpio One (1998),Sci-Fi +122960,The Chinese Ring (1947),Comedy|Crime|Drama +122962,The Power and the Prize (1956),Drama +122964,The Gambler Returns: The Luck Of The Draw (1991),Western +122966,Smart Blonde (1937),Crime|Drama|Mystery +122968,The Affairs of Annabel (1938),Comedy +122970,Montana Belle (1952),Western +122972,The Clown (1953),Drama +122974,In the Blood (2006),Horror|Thriller +122976,Pound of Flesh (2010),Comedy|Drama|Thriller +122978,The Chicken Chronicles (1977),Comedy +122980,Lizzie (1957),Drama +122982,Magic Boy (1961),Adventure|Animation|Children +122986,Shadow Zone: The Undead Express (1996),Drama|Fantasy|Horror|Sci-Fi +122988,Someone To Love (1988),(no genres listed) +122990,I Found Stella Parish (1935),Drama|Romance +122992,The Savage Seven (1968),Action|Crime +122994,The Decks Ran Red (1958),Adventure|Drama +122996,Man on Fire (1957),Drama +122998,Life Begins (1932),Drama +123000,The Last of Mrs. Cheyney (1929),Comedy|Drama +123002,One More Time (1970),Action|Comedy +123004,I Don't Buy Kisses Anymore (1992),Comedy|Romance +123006,Night Unto Night (1949),Drama|Romance +123008,Heidi (1952),Children|Drama +123010,Hammersmith Is Out (1972),(no genres listed) +123012,The Daughter of Rosie O'Grady (1950),Comedy +123014,Sidewalks of New York (1931),Comedy|Crime +123016,Mary Stevens M.D. (1933),Drama +123018,The Prize (2011),Drama +123020,Secrets of an Actress (1938),Drama|Romance +123024,Man Made Monster (1941),Drama|Horror|Sci-Fi|Thriller +123026,Horror Island (1941),Horror +123028,Sealed Lips (1942),Crime +123030,Tangier (1946),Adventure|Drama +123034,Aces Go Places V: The Terracotta Hit (1989),Action +123036,Pagan Love Song (1950),Drama|Romance +123038,The Racers (1955),(no genres listed) +123040,The Oklahoman (1957),Western +123042,The Golden Age of Comedy (1957),Comedy +123044,Stalingrad (1989),(no genres listed) +123046,The Tsunami and the Cherry Blossom (2011),Documentary +123048,The Power Within (1995),Action|Fantasy|Sci-Fi +123052,No Greater Glory (1934),(no genres listed) +123061,"Goodbye, Mr. President (1987)",(no genres listed) +123063,Sankofa (1993),Drama +123065,Teza (2008),Drama|Thriller +123067,The Mystery of Mr. X (1934),Comedy|Crime|Mystery +123069,Midnight Heat (1996),Action|Drama|Thriller +123071,Red Dust (1990),(no genres listed) +123073,In the Presence of Mine Enemies (1997),Drama|War +123077,Talk About a Stranger (1952),Drama|Mystery +123079,The Newcomers (2000),Children|Drama +123081,Right Cross (1950),Drama +123083,Heidi (1993),Children +123085,The Miracle Worker (2000),Drama +123087,The Return of Sabata (1971),Action|Western +123089,The McKenzie Break (1970),Action|War +123091,Mercy (2010),Drama|Romance +123093,Happily N'Ever After 2 (2009),Animation|Children +123095,Left for Dead (2007),(no genres listed) +123097,Hotel (2004),Drama|Thriller +123099,The Hearse (1980),Drama|Horror|Mystery +123101,Infection (2005),Horror +123103,Voyage of the Unicorn (2001),Adventure|Fantasy +123105,The Geisha Boy (1959),Comedy +123107,The Phantom of the Opera (1990),Drama|Mystery|Romance|Thriller +123109,P.U.N.K.S (1999),Children|Comedy|Sci-Fi +123111,When a Man Falls (2007),Drama|Thriller +123113,Springfield Rifle (1952),Action|War|Western +123115,Why Be Good? (1929),Comedy|Drama|Romance +123117,The American Success Company (1980),(no genres listed) +123119,The Expedition to the End of the World (2014),Documentary +123121,Jealousy (2013),Drama +123123,Magic Kid II (1994),Action|Children|Comedy +123125,The Radio Burglary (1951),Comedy|Crime|Thriller +123127,A Dangerous Place (1995),Action|Thriller +123129,Magic Kid (1993),Action|Children|Comedy +123131,Sin Takes a Holiday (1930),Comedy|Romance +123133,Hoodlum Priest (1961),Drama +123135,Street Girl (1929),(no genres listed) +123137,The Fleet's In (1942),Romance +123139,The Divine Woman (1928),(no genres listed) +123141,The Sundowners (1950),Action|Western +123143,The Real Howard Spitz (1998),Comedy +123145,Mrs. O'Malley and Mr. Malone (1950),Comedy|Mystery +123147,Sierra (1950),Western +123149,The Gangster (1947),Crime +123151,Metamorphosis (2007),Drama|Horror +123155,Russkies (1987),Children|Drama +123157,Julius Caesar (1971),Drama +123159,Hercules and the Lost Kingdom (1994),Action|Adventure|Fantasy|Sci-Fi +123161,Rites of Passage (2012),Thriller +123163,The Suspect (2013),Thriller +123165,Mongolian Death Worm (2010),Horror|Sci-Fi +123172,Winter Break (2003),Comedy|Drama +123174,The Facility (2012),Horror|Sci-Fi +123176,Shredderman Rules (2007),Action|Adventure|Children|Comedy +123178,Man on Fire (1987),Action|Drama|Thriller +123180,Piranha Hunt (2006),Action|Crime|Thriller +123182,Trouble Along the Way (1953),Comedy|Drama +123184,The Secret Agent Club (1996),Action|Children|Comedy +123186,I'm in Love with a Church Girl (2013),Drama|Romance +123188,Ironclad 2: Battle for Blood (2014),Action|Adventure +123190,Voices (2007),Horror|Thriller +123192,The Land Before Time XI: Invasion of the Tinysauruses (2005),Animation|Children|Fantasy|Sci-Fi +123194,See Girl Run (2013),Romance +123196,Ritual (2002),Horror +123198,Head Office (1985),Comedy +123200,Jim Jefferies: I Swear to God (2009),Comedy +123202,Social Nightmare (2013),Drama|Mystery +123210,Once Fallen (2010),Action|Crime|Drama +123213,Lease of Life (1954),(no genres listed) +123215,The Magic Box (1951),Drama +123217,Captain Boycott (1947),Drama +123219,The Adventures of Tartu (1943),Drama|Romance|Thriller|War +123221,Knight Without Armor (1937),Adventure|Drama|Romance|Thriller +123223,Suddenly (2006),Drama +123225,Winning Streak (2012),Drama +123227,The Slaughter (2006),Horror +123229,The Flesh and the Fiends (1961),Horror +123233,The Lion Has Wings (1939),War +123235,Sanders of the River (1935),Adventure|Drama +123238,Counter-Attack (1945),Drama|War +123240,The Macomber Affair (1947),Adventure +123242,A Woman's Vengeance (1948),Drama|Mystery +123244,"Cry, the Beloved Country (1952)",Drama +123246,Address Unknown (1944),Drama +123248,Drums in the Deep South (1951),Action|Drama +123250,The Great Man (1956),(no genres listed) +123252,I Accuse! (1958),Drama +123254,State Fair (1962),(no genres listed) +123256,Kill Katie Malone (2010),Horror|Thriller +123258,The First of the Few (1942),War +123260,The Sacketts (1979),Western +123262,Rio Conchos (1964),Action|Western +123264,Hercules and the Circle of Fire (1994),Action|Adventure|Fantasy +123266,Clawed: The Legend of Sasquatch (2005),Action|Horror|Thriller +123268,June Bride (1948),Comedy +123270,Without Reservations (1946),Comedy|Romance +123274,Katherine (1975),(no genres listed) +123278,Conspiracy: The Trial of the Chicago 8 (1987),(no genres listed) +123280,Descending Angel (1990),Drama|Thriller +123282,Roswell (1994),Drama|Mystery +123284,The Ballad of Lucy Whipple (2001),Children|Drama|Western +123288,Taken (2002),Sci-Fi +123290,Crown Heights (2004),(no genres listed) +123292,Marianne (1929),Drama +123294,They Fought for Their Motherland (1975),Drama|War +123296,Welcome to Hard Times (1967),Western +123298,The Lost Continent (1968),Adventure|Fantasy +123300,The Incredible 2-Headed Transplant (1971),Horror|Sci-Fi +123302,Scared to Death (1947),Horror|Mystery|Thriller +123304,Scrooge (1935),Action|Children|Comedy|Drama|Fantasy +123306,Knife Fight (2013),Drama +123308,Suddenly (2013),Thriller +123310,Tornado! (1996),Action +123312,The Opposite Sex (1956),Comedy|Drama|Romance +123314,Mischief Night (2013),Drama|Horror|Thriller +123316,Saratoga (1937),Comedy|Drama|Romance +123318,Legendary: Tomb of the Dragon (2013),Action|Adventure +123320,Red Riding Hood (2006),Children|Horror +123322,Sea Beast (2008),Horror|Sci-Fi|Thriller +123324,Hitler: The Last Ten Days (1973),Drama|War +123326,The Man From The Alamo (1953),Western +123328,Hard Ride to Hell (2010),Horror +123331,End of the World (1931),Sci-Fi +123333,Lucrèce Borgia (1935),(no genres listed) +123335,Un grand amour de Beethoven (1936),Drama +123337,I Accuse (1938),Drama|Horror|Sci-Fi|War +123339,Tower of Nesle (1955),(no genres listed) +123341,The Battle of Austerlitz (1960),Drama +123343,Cyrano et D'Artagnan (1964),(no genres listed) +123345,Heatseeker (1995),(no genres listed) +123347,Call Me Savage (1975),Adventure|Comedy|Drama|Romance +123349,The Unholy (1988),Horror +123351,Invitation to a Gunfighter (1964),Action|Western +123353,The Hornet's Nest (2014),Documentary|War +123355,Jimmy the Gent (1934),Comedy|Crime|Drama|Romance +123357,Rain Fall (2009),Action|Adventure|Thriller +123359,My Way (2012),Drama +123361,Sisters (2006),Horror|Mystery|Thriller +123363,Cat's Play (1974),Drama|Romance +123365,The House Under the Rocks (1959),Drama +123367,Mara Maru (1952),Adventure|Drama +123369,To Paris with Love (1955),Comedy|Drama|Romance +123371,Struggle in the Valley (1954),(no genres listed) +123373,Two Smart People (1946),Crime|Drama|Romance +123375,Haunted Honeymoon (1940),Comedy|Crime +123377,Unholy Partners (1941),Crime|Drama|Romance +123379,Three Loves Has Nancy (1938),Comedy|Romance +123381,"Command, The (1954)",Western +123383,Mockery (1927),Drama|Romance|War +123385,The Inspector (1962),Drama|Romance +123387,Holiday in Mexico (1946),Comedy +123389,Strike Me Pink (1936),Comedy +123391,Hotel California (2008),Action|Thriller +123393,Project Shadowchaser II (1994),Action|Sci-Fi +123395,Nine Hours to Rama (1963),Drama +123397,Lotte from Gadgetville (2006),(no genres listed) +123399,"Thou Shalt Not: Sex, Sin and Censorship in Pre-Code Hollywood (2008)",Documentary +123401,Man-Proof (1938),Comedy|Drama|Romance +123403,Our Italian Husband (2006),Comedy +123405,Tales from Muppetland: The Frog Prince (1971),Children|Fantasy +123407,Man Of The Moment (1935),Comedy +123409,Orion's Key (1996),Sci-Fi +123411,Nowhere to Go (1958),Crime|Thriller +123415,Poster Girl (2010),(no genres listed) +123417,New Frontier (1939),Western +123419,Private Detective 62 (1933),Comedy|Crime|Drama +123421,Newlyweeds (2013),(no genres listed) +123423,Return to Nim's Island (2013),Adventure|Children +123425,The Last Gangster (1937),Crime|Drama|Thriller +123427,Meskada (2010),Crime|Drama|Mystery|Thriller +123429,Curtain Call (1998),Romance|Sci-Fi +123431,Three Guys Named Mike (1951),Comedy|Romance +123433,Go Naked In The World (1961),Drama +123435,Wreckage (2010),Horror|Thriller +123437,Monster Island (2004),Adventure|Comedy|Horror +123439,Wuthering Heights (2003),(no genres listed) +123441,Certain Fury (1985),(no genres listed) +123443,Family of Spies (1990),(no genres listed) +123445,A Killing in a Small Town (1990),Drama +123449,Talking to Heaven (2002),Crime|Drama|Mystery|Sci-Fi|Thriller +123451,Time Bomb (2006),Action|Drama|Thriller +123453,Girl Fight (2011),Drama +123455,Knights of the South Bronx (2005),Drama +123457,Roma (2004),Drama +123459,The Last House in the Woods (2007),Horror +123463,Out of Bounds (1986),Action|Crime|Thriller +123465,The Derby Stallion (2005),Children|Drama +123467,Jewtopia (2012),Comedy|Romance +123469,The Man from Colorado (1948),Action|Drama|Western +123471,His and Hers (2001),Comedy +123473,Light in the Piazza (1962),Drama|Romance +123475,Malta Story (1953),Drama|War +123477,The Land Before Time XII: The Great Day of the Flyers (2006),Animation|Children|Sci-Fi +123479,Payment on Demand (1951),Drama +123481,Storm Warning (1951),Crime|Drama +123483,The Zero Hour (2010),Action +123485,The Poet (2007),Drama|Romance +123487,The Substitute 4: Failure Is Not an Option (2001),Action|Drama +123489,Judgment Day (1999),Action|Drama|Sci-Fi|Thriller +123491,The Beacon (2009),Horror|Thriller +123493,Nas: Time Is Illmatic (2014),Documentary +123495,Small Town Saturday Night (2010),Drama +123497,Ricky Gervais: Out of England 2 - The Stand-Up Special (2010),Comedy +123499,The Hunters (2013),Adventure +123504,Desire Me (1947),Drama|Romance|War +123506,High Barbaree (1947),Action|Drama +123508,Assignment in Brittany (1943),Drama|War +123510,Honky Tonk (1941),Comedy|Crime|Drama|Romance|Western +123512,A Yank at Oxford (1938),Drama|Romance +123514,The Gay Bride (1934),Comedy|Crime +123516,The Girl From Missouri (1934),Comedy|Romance +123518,Hell Below (1933),(no genres listed) +123520,But the Flesh is Weak (1932),Comedy +123522,The Easiest Way (1931),Drama|Romance +123524,Untamed (1929),Drama +123526,While the City Sleeps (1928),(no genres listed) +123528,Manpower (1941),Crime|Drama +123530,The Christmas Party (2009),Comedy +123532,"Poor Little Rich Girl, The (1917)",Comedy|Drama|Fantasy|Romance +123534,Hercules in the Maze of the Minotaur (1994),Action|Adventure|Fantasy +123537,The Great St. Trinian's Train Robbery (1966),Action|Comedy +123541,Geordie (1955),Drama|Romance +123543,Folly to be Wise (1953),Comedy +123545,The Blue Lagoon (1949),Drama|Romance +123547,Two Thousand Women (1944),Comedy|Drama +123549,Millions Like Us (1943),Drama|Romance +123553,In the Name of the King III (2014),Action|Adventure|Drama|Fantasy +123555,Invasion (1997),Drama|Sci-Fi|Thriller +123559,Spitfire (1995),(no genres listed) +123561,Saddle The Wind (1958),Action +123563,48 Weeks Later (2006),Action|Adventure|Horror|Sci-Fi +123565,Hercules in the Underworld (1994),Action|Adventure|Fantasy|Sci-Fi +123567,IMAX - Roving Mars (2006),Documentary +123569,Tempo (2003),Crime|Romance|Thriller +123571,Jim Jefferies: Alcoholocaust (2010),Comedy +123573,Thorne: Scaredy Cat (2010),Crime|Drama|Mystery|Thriller +123575,Shoot Out (1971),Western +123577,Terror Trap (2010),Horror|Thriller +123579,That Certain Woman (1937),Drama|Romance +123581,Hold Your Man (1933),Drama|Romance +123585,Love (2012),Drama|Romance +123587,"Twilight of the Golds, The (1997)",Drama +123589,The Major (2013),Action|Crime|Drama +123591,The Ghost Train (1941),Comedy|Horror|Thriller +123596,One Spy Too Many (1966),Adventure|Crime +123598,The Spy in the Green Hat (1967),Action|Adventure|Comedy|Crime|Thriller +123600,Tribes (1970),Drama +123602,Maybe I'll Come Home in the Spring (1971),(no genres listed) +123605,Hustling (1975),Drama +123607,The Night That Panicked America (1975),(no genres listed) +123609,Goldengirl (1979),(no genres listed) +123613,Playing for Time (1980),Drama +123617,Memorial Day (1983),(no genres listed) +123619,Terrible Joe Moran,(no genres listed) +123621,Space (1985),Drama +123625,The Karen Carpenter Story (1989),(no genres listed) +123627,The Incident (1990),Drama +123629,Caroline? (1990),(no genres listed) +123631,Ivory Hunters (1990),Adventure +123633,A Green Journey (1990),Drama|Romance +123635,Never Forget (1991),Drama|War +123637,Miss Rose White (1992),Drama +123639,Skylark (1993),Children|Drama +123643,Mandela and de Klerk (1997),Drama +123645,A Lesson Before Dying (1999),Drama +123647,The Jade Mask (1945),Comedy|Crime|Drama +123653,Salem Witch Trials (2002),Drama +123655,Sybil (2008),Drama +123657,Sweet Nothing in My Ear (2008),Drama +123659,The Mouthpiece (1932),Drama +123661,Romanoff and Juliet (1961),Comedy +123663,The Passionate Plumber (1932),Comedy +123665,Hope & Redemption: The Lena Baker Story (2008),Drama +123667,Safari (1956),Adventure +123669,"See Here, Private Hargrove (1944)",Comedy|Romance|War +123671,Let Us Be Gay (1930),Comedy|Drama +123673,The Rose Garden (1990),Drama +123675,License to Live (1998),Drama +123677,Shock Treatment (1964),Comedy +123679,Secret People (1952),Crime|Drama +123681,Wanda Sykes: I'ma Be Me (2009),Comedy +123683,Mariachi Gringo (2012),Comedy|Romance +123687,Raiders of the Seven Seas (1953),Adventure +123689,The Gun Runners (1958),Action|Crime|Drama|Thriller +123691,The Miracle (1959),Drama +123693,The Brigand of Kandahar (1965),(no genres listed) +123695,The Story on Page One (1959),Drama +123697,Just This Once (1952),Comedy +123699,The Affairs of Dobie Gillis (1953),Comedy +123701,Remains to Be Seen (1953),Comedy|Crime|Horror|Mystery +123703,I Love Melvin (1953),Comedy|Romance +123707,The Gene Krupa Story (1959),Drama +123709,Looking For Love (1964),(no genres listed) +123711,The Ghost in the Invisible Bikini (1966),Comedy|Horror +123713,The Longest Hundred Miles (1967),Drama|War +123715,The Munsters' Revenge (1981),(no genres listed) +123717,Strange Bargain (1949),Mystery|Thriller +123719,Stingaree (1934),Comedy|Drama|Romance +123721,Love Is Better Than Ever (1952),(no genres listed) +123723,Hayride (2012),Horror|Thriller +123725,Scandal at Scourie (1953),Drama +123727,Immigration Tango (2011),Comedy|Romance +123729,Lily Boy (1954),(no genres listed) +123731,Mad About Men (1954),Comedy|Drama|Fantasy|Romance|Sci-Fi +123733,The Unguarded Hour (1936),Crime +123735,Vito (2011),Documentary +123737,The Big Land (1957),Western +123739,Scared To Death (1981),Drama|Horror|Sci-Fi +123743,Jim Norton: Monster Rain (2007),Comedy +123745,The Revolt of Mamie Stover (1956),Drama +123747,My Own Country (1998),Drama +123749,The Rawhide Years (1955),Western +123751,Voodoo Woman (1957),Horror +123755,Stranded (1935),(no genres listed) +123757,The Ugly Ones (1967),Action|Western +123761,The Golden Eye (1948),Crime|Mystery|Thriller +123763,The Battle of the Sexes (1928),Comedy|Drama +123765,Twilight of Honor (1963),Drama +123767,The Doctor's Dilemma (1958),Comedy|Drama +123769,The Man with Two Faces (1934),Crime|Drama +123771,The Cariboo Trail (1950),Western +123773,Sh! The Octopus (1937),Comedy|Mystery +123775,High Pressure (1932),(no genres listed) +123777,Lucy Gallant (1955),Action|Drama|Romance +123779,The Devil Is a Sissy (1936),Comedy|Drama +123781,Nothing Too Good for a Cowboy (1998),Action|Drama|Romance|Western +123783,The Courage to Love (2000),Drama|Romance +123785,Riverworld (2003),Fantasy|Sci-Fi|Thriller +123787,Banshee (2006),Action|Crime|Drama|Thriller +123790,A Step Out of Line (1971),Crime +123792,The Brotherhood of Satan (1971),Horror +123794,Killer by Night (1972),Crime|Thriller +123796,The Bears and I (1974),Adventure|Drama +123798,The Quest: The Longest Drive (1976),(no genres listed) +123800,Long Pants (1927),(no genres listed) +123802,Kid Blue (1973),Comedy|Western +123804,The Kid from Left Field (1953),Comedy +123806,Juke Girl (1942),Crime|Drama|Mystery +123808,The Conquering Power (1921),(no genres listed) +123810,The Great Sioux Massacre (1965),(no genres listed) +123812,The Red Lily (1924),Drama +123814,The Unknown Man (1951),Crime|Drama +123816,Highly Dangerous (1950),Action|Thriller +123818,Quiet Flows The Don (2006),Drama +123820,Slim (1937),Drama|Romance +123822,The Librarians (Strike Force) (2004),Action|Thriller +123824,The Casino Murder Case (1935),Action|Drama|Mystery +123826,In the Cool of the Day (1963),Drama|Romance +123828,Noose (1948),Crime|Drama +123830,Le port du désir (1955),(no genres listed) +123832,Beat Girl (1961),Drama +123834,The Hands of Orlac (1960),Crime|Horror|Thriller +123838,The Black Klansman (1966),(no genres listed) +123840,Girl in Gold Boots (1968),Crime|Drama|Romance +123842,The Corpse Grinders (1971),Horror +123844,Blood Orgy of the She-Devils (1973),Horror +123846,The Corpse Grinders II (2000),Horror|Sci-Fi +123848,Mark of the Astro-Zombies (2002),Horror|Sci-Fi +123850,Astro-Zombies M3: Cloned (2010),(no genres listed) +123852,Kid Vengeance (1977),Western +123854,Mystery of Edwin Drood (1935),Drama|Horror|Mystery|Romance +123856,The Barbarian (1933),Adventure|Drama|Romance +123860,Red Skies of Montana (1952),(no genres listed) +123864,Two Bits & Pepper (1995),Adventure|Children|Comedy +123866,I'd Climb the Highest Mountain (1951),(no genres listed) +123868,The Jayhawkers (1959),Action|Western +123870,Operation Delta Force 4: Deep Fault (1999),(no genres listed) +123872,The Bowery (1933),Comedy|Drama +123874,Touched By Love (1980),(no genres listed) +123876,The Happy Elf (2005),Animation|Children|Comedy +123878,Ring of Fire: The Emile Griffith Story (2005),Documentary +123880,The Black Godfather (1974),Action|Crime|Thriller +123882,Snow in August (2001),Children|Drama +123884,The McConnell Story (1955),Drama +123888,The Seven Deadly Sins (1952),Drama +123890,"Oh No, Mam'zelle (1954)",Comedy +123892,When a Woman Meddles (1957),(no genres listed) +123894,Fairy Tales (1978),Comedy|Romance +123896,Auditions (1978),Comedy|Documentary +123898,Nocturna (1979),Comedy|Horror +123902,The Rosebud Beach Hotel (1984),(no genres listed) +123904,Le blanc et le noir (1931),(no genres listed) +123911,Zouzou (1934),Comedy +123913,Gribouille (1937),(no genres listed) +123915,Entrée des artistes (1938),(no genres listed) +123919,Blanche Fury (1948),Drama|Thriller +123921,Julietta (1953),Comedy|Romance +123923,School for Love (1955),Comedy|Drama +123925,Lady Chatterley's Lover (1955),(no genres listed) +123927,Plucking the Daisy (1956),Comedy|Drama|Romance +123929,Be Beautiful But Shut Up (1958),Comedy|Documentary +123931,Sunday Encounter (1958),Drama +123935,St. Giuseppe Moscati: Doctor to the Poor (2007),(no genres listed) +123937,Five Loose Women (1974),Action|Adventure|Crime|Drama +123939,Women Aren't Funny (2014),(no genres listed) +123941,The Last Outpost (1951),Western +123943,Shun Li and the Poet (2011),Drama +123945,Basara: Princess Goh (1992),Drama +123947,Cake (2014),Drama +123949,The Escape (2013),Drama +123951,Power Play (1978),Drama|Thriller +123953,Teresa's Tattoo (1994),Action|Comedy|Crime +123957,The Human Shield (1992),Action|Drama|War +123959,Groupie (2010),Horror|Thriller +123961,Professional Sweetheart (1933),Comedy|Romance +123963,Jungle Manhunt (1951),Adventure|Sci-Fi +123965,The Dragon Murder Case (1934),Mystery +123967,LiebesLuder (2000),Comedy +123969,Sunset Heat (1992),Thriller +123971,Public Hero Number 1 (1935),Crime|Drama +123973,Number One with a Bullet (1987),Action|Comedy +123975,Erotikon (1929),(no genres listed) +123977,Remember? (1939),Comedy|Romance +123979,The Case of the Black Cat (1936),Crime|Drama|Mystery +123981,The Admirable Crichton (1957),Comedy +123983,Spook Busters (1946),Comedy +123985,HazMat (2013),Horror +123987,Winner Take All (1932),Drama +123989,Spike of Bensonhurst (1988),(no genres listed) +123993,"Parlor, Bedroom and Bath (1931)",Comedy +123995,Maker of Men (1931),(no genres listed) +123997,Speak Easily (1932),Comedy +123999,Murder in the Fleet (1935),(no genres listed) +124001,Pick a Star (1937),Comedy +124003,Easy to Wed (1946),Comedy|Romance +124005,Ma and Pa Kettle Back on the Farm (1951),Comedy +124007,I Love Lucy: The Movie (1953),(no genres listed) +124009,So Well Remembered (1947),Drama|Mystery|Romance +124013,Thoroughbreds Don't Cry (1937),Comedy|Drama +124015,He Was Her Man (1934),Drama|Romance +124017,Sea Devils (1953),(no genres listed) +124021,The Beginning or the End (1947),Drama +124023,The Grind (2009),Action|Romance|Thriller +124025,The Sins of Rachel Cade (1961),Drama +124027,The Courtship of Andy Hardy (1942),Comedy +124029,House of Cards (1968),Thriller +124031,Rosalie (1937),Drama +124033,In Our Time (1944),Drama|Romance +124035,The Romance of Rosy Ridge (1947),Comedy|Drama|Romance +124039,The Green Hornet (1940),(no genres listed) +124041,Something Like A Business (2010),Comedy +124043,Martial Club (1981),Action +124048,Alice in Wonderland (1966),Children|Fantasy|Sci-Fi +124050,Pleasure at Her Majesty's (1976),Comedy|Documentary +124052,King Lear (1982),Drama +124055,Lethal Ninja (1993),Action|Thriller +124059,Octopus 2: River of Fear (2001),Horror +124061,Rapture (1965),Drama +124063,Lone Rider (2008),Action|Western +124065,So Dark the Night (1946),Drama|Mystery +124067,Serenade (1956),Drama +124071,These Thousand Hills (1959),Action +124073,The Falcon in Mexico (1944),Crime|Mystery +124075,Three Wise Girls (1932),Comedy|Drama|Romance +124077,The Trip to Bountiful (2014),Drama +124079,Once Upon A Texas Train (1988),Action|Western +124081,Return of the Gunfighter (1967),Western +124083,Honolulu (1939),Comedy|Romance +124085,Project Shadowchaser III (1995),Horror|Sci-Fi|Thriller +124087,Junction (2012),Thriller +124091,The Miracle Worker (1979),Drama +124093,Little Nellie Kelly (1940),Children|Comedy +124095,Never a Dull Moment (1950),(no genres listed) +124099,Smart Girls Don't Talk (1948),Crime|Mystery +124101,Flaxy Martin (1949),Crime|Drama|Film-Noir|Mystery +124103,Return of the Frontiersman (1950),(no genres listed) +124107,Black Rebels (1960),Drama +124109,The Shadow of the Cat (1961),Horror|Mystery|Thriller +124111,Wish You Were Dead (2002),Action|Comedy|Romance|Thriller +124113,The Kissing Bandit (1948),Comedy|Musical|Western +124117,The Company She Keeps (1952),Drama +124119,Love is a Ball (1963),Comedy|Romance +124121,Let's Dance (1950),Comedy|Romance +124123,Son of Sinbad (1955),Adventure|Fantasy +124125,Way Back Home (2013),Drama +124127,The Single Standard (1929),Drama|Romance +124129,Menno's Mind (1997),Sci-Fi|Thriller +124131,Lewis Black: Stark Raving Black (2009),Comedy +124133,For One Night (2006),Drama +124135,The Red Danube (1949),Drama|Romance|War +124137,Man Bait (1952),Crime|Drama +124139,Mayor Cupcake (2011),Children|Comedy|Drama +124141,It's a Date (1940),Comedy +124143,Madame X (1937),Drama +124145,Katt Williams: Kattpacalypse (2012),Comedy +124147,Trail Street (1947),Western +124149,Switch (2007),(no genres listed) +124151,Vampire Dog (2012),Children +124153,Python 2 (2002),Horror +124155,Rose-Marie (1936),Adventure|Drama|Romance|Western +124157,Man in the Attic (1953),Crime|Drama|Mystery|Thriller +124160,Whoever Slew Auntie Roo? (1971),Horror|Thriller +124162,The Wonderful Country (1959),Western +124164,You're Never Too Young (1955),Comedy +124166,No Man's Land (2013),Crime|Drama|Western +124168,Paper Soldiers (2002),Action|Comedy +124170,Southie (1999),Action|Drama|Thriller +124172,Vicious Lips (1986),Comedy|Horror|Sci-Fi +124174,Until They Sail (1957),Drama|Romance|War +124176,Matching Jack (2010),Drama +124178,The King and Four Queens (1956),Adventure|Comedy|Mystery|Western +124180,High Wall (1947),Crime|Drama +124182,The Gallant Hours (1960),(no genres listed) +124184,Journey Together (1945),Drama|War +124188,Seagulls Over Sorrento (1954),Drama|War +124190,Private's Progress (1956),Comedy|War +124192,Lucky Jim (1957),Comedy +124194,The Risk (1960),Drama|Thriller +124196,Heavens Above! (1963),Comedy +124198,Rotten to the Core (1965),Comedy|Crime +124200,Spring Madness (1938),(no genres listed) +124202,Four Girls in White (1939),Comedy|Drama +124204,The Kid From Texas (1939),Comedy|Romance|Western +124207,Dancing Co-Ed (1939),Comedy|Romance +124209,Two Girls on Broadway (1940),Romance +124211,Dulcy (1940),Comedy +124213,Whistling in the Dark (1941),Comedy|Mystery +124215,The Bugle Sounds (1942),(no genres listed) +124217,Grand Central Murder (1942),Crime|Mystery +124220,Whistling in Dixie (1942),Comedy|Crime|Mystery +124222,Salute to the Marines (1943),Comedy|Drama|War +124224,Whistling in Brooklyn (1943),Comedy|Crime|Mystery|Romance +124226,Song of the Open Road (1944),(no genres listed) +124228,Her Husband's Affairs (1947),Comedy|Sci-Fi +124230,I Love Trouble (1948),Crime|Drama +124232,The Fuller Brush Man (1948),Adventure|Comedy +124235,Precious Find (1996),Action|Sci-Fi +124239,Pterodactyl Woman from Beverly Hills (1997),Comedy +124243,Burning Down the House (2001),(no genres listed) +124247,Desert Victory (1943),Documentary +124251,High Treason (1951),Action|Crime|Thriller +124253,Sailor of the King (1953),Action|Drama +124255,Josephine And Men (1955),(no genres listed) +124257,Run for the Sun (1956),Action|Drama|Thriller +124259,Brothers in Law (1957),Comedy +124263,Carlton-Browne of the F.O. (1959),Comedy +124265,The Family Way (1966),Comedy +124267,"Soft Beds, Hard Battles (1974)",Comedy +124269,The Moving Finger (1985),(no genres listed) +124271,Textuality (2011),Comedy|Romance +124273,Kevin Smith: Too Fat For 40 (2010),Comedy +124275,Last Rites (1988),Action|Crime|Romance|Thriller +124277,The Hellbenders (1967),Action|Adventure|Drama|Western +124279,SeaFood (2012),Adventure|Animation|Children|Comedy +124281,The Prophet's Game (2000),Thriller +124285,Johnny O'Clock (1947),Crime|Drama +124287,The Woman In White (1998),Thriller +124290,Reign of Terror (1949),Drama +124292,The Jackie Robinson Story (1950),Children|Drama +124294,The Shanghai Cobra (1945),Mystery|Thriller +124296,"Invasion, U.S.A. (1952)",Sci-Fi +124298,Hider in the House (1989),Horror|Thriller +124300,White: The Melody of the Curse (2011),Horror +124302,Kermit's Swamp Years (2002),Children|Comedy|Fantasy +124304,Harry in Your Pocket (1973),Comedy|Crime|Drama +124306,New World Disorder (1999),Action|Thriller +124308,The Honeymoon Machine (1961),Comedy +124310,Fair is Fair (2010),Comedy +124312,World for Ransom (1954),Action|Drama|Thriller +124314,The Angry Hills (1959),Drama|Thriller|War +124318,The Grissom Gang (1971),Action|Crime|Drama|Thriller +124320,Once a Thief (1965),Crime|Drama|Thriller +124322,House Party 4: Down to the Last Minute (2001),Comedy +124324,Race to Space (2002),Children|Drama +124326,White Line Fever (1975),Action +124328,The Night We Called It a Day (2003),Comedy|Drama +124330,Local Boys (2002),Drama +124332,Snow Queen (2012),Animation|Fantasy +124334,Mimesis (2011),Horror +124336,In the Shadows (2001),Drama|Thriller +124338,Sadie McKee (1934),Drama|Romance +124340,Shoot the Hero (2010),Action|Adventure|Comedy|Thriller +124342,Trapped in the Closet: Chapters 13-22 (2007),Comedy|Crime +124344,Safari (2009),Adventure|Comedy +124346,Stealth Fighter (1999),Action|Thriller +124348,The Land Before Time XIII: The Wisdom of Friends (2007),Animation|Children +124350,Solar Attack (2006),Action|Thriller +124352,I Was Monty's Double (1958),Drama|War +124354,Hanzo the Razor: The Snare (1973),Action|Drama +124356,The Missing Lynx (2008),Animation|Children +124358,The Lone Wolf Spy Hunt (1939),Adventure|Comedy|Crime|Drama|Mystery +124360,Unexpected Uncle (1941),Comedy|Drama +124362,Make Your Own Bed (1944),Comedy +124364,Hotel Berlin (1945),(no genres listed) +124366,One More Tomorrow (1946),(no genres listed) +124368,Escape Me Never (1947),Drama +124372,Barricade (1950),Western +124374,The Great Jewel Robber (1950),Crime|Drama +124376,He's a Cockeyed Wonder (1950),Comedy|Romance +124378,One Big Affair (1952),Comedy|Romance +124380,Please Murder Me (1956),Crime|Drama +124382,Limelight (2011),Documentary +124384,The Glass Wall (1953),Crime|Thriller +124386,Hard Contract (1969),(no genres listed) +124388,Lady by Choice (1934),(no genres listed) +124390,The Pit and the Pendulum (2009),Horror|Thriller +124392,She's Working Her Way Through College (1952),(no genres listed) +124394,If Winter Comes (1947),Drama +124396,I Dood It (1943),Comedy|Romance|Thriller +124398,Men Are Such Fools (1938),Drama|Romance +124400,Skeleton Key 2: 667 Neighbor of the Beast (2008),(no genres listed) +124402,Hell Divers (1932),Adventure|Romance +124404,"Snowflake, the White Gorilla (2011)",Adventure|Animation|Children|Comedy +124406,Man Wanted (1932),Comedy|Drama|Romance +124408,Last of the Comanches (1953),(no genres listed) +124410,The Scarlet Blade (1963),Action|Adventure +124412,Ski Party (1965),Comedy +124414,The Secret of Convict Lake (1951),Western +124416,"I, a Man (1967)",Drama +124418,Lonesome Cowboys (1968),Western +124420,Women in Revolt (1971),Drama +124422,Forty Deuce (1982),(no genres listed) +124425,"Don't Raise the Bridge, Lower the River (1968)",Comedy +124428,How Sweet It Is! (1968),Comedy +124430,Viva Max! (1969),(no genres listed) +124432,The Grasshopper (1970),Drama|Romance +124434,What's a Nice Girl Like You...? (1971),Comedy|Crime|Drama +124438,Only with Married Men (1974),Comedy +124440,The Last Big Thing (1998),Comedy|Documentary|Drama +124442,"No God, No Master (2014)",Crime|Drama|Thriller +124444,Invitation (1952),Drama +124446,The Very Thought of You (1944),Drama|Romance +124448,Rain (2008),Drama +124450,Lady Killer (1937),Drama|Romance|War +124452,Tension at Table Rock (1956),Western +124454,The Guardsman (1931),Comedy|Drama +124456,Simple Things (2007),Children|Drama +124458,Hansel and Gretel (1982),Children +124460,White Witch Doctor (1953),Adventure +124462,Sitting Bull (1954),Western +124464,Iceberg Slim: Portrait of a Pimp (2013),(no genres listed) +124466,Lost Angel (1943),Drama +124468,Green Flash (2008),Comedy|Drama +124470,One Sunday Afternoon (1933),Comedy|Romance +124472,Red Light (1949),Mystery|Thriller +124474,Rose of Washington Square (1939),Drama +124476,The Mask (1961),Horror|Thriller +124480,Outward Bound (1930),(no genres listed) +124482,The Heartbreak Kid (1993),Drama|Romance +124484,Kenny & Company (1976),Comedy|Drama +124486,The Life of Jimmy Dolan (1933),(no genres listed) +124488,Santiago (2007),Documentary +124490,"Sea Hawk, The (1924)",Adventure|Drama|Romance +124492,This is My Affair (1937),Crime|Drama +124494,The Fabulous Dorseys (1947),Drama +124496,Our Town (2007),(no genres listed) +124498,They Call It Sin (1932),Drama +124500,The Secret Heart (1946),Drama +124502,Have I the Right To Kill (1964),Crime|Drama +124504,Ring of Fire II: Blood and Steel (1993),Action|Drama|Thriller +124507,Journey to the Center of the Earth (1989),Action|Children|Fantasy|Sci-Fi +124509,The Job (2009),Comedy|Drama|Thriller +124511,Rome Adventure (1962),Drama|Romance +124513,Talihina Sky: The Story of Kings of Leon (2011),Documentary +124515,Lady L (1965),Comedy +124517,That's Dancing! (1985),Documentary +124519,Snow White and the Three Stooges (1961),Adventure|Children|Comedy|Drama|Fantasy +124521,Squatters (2014),Drama +124523,Road to Hell (2012),Action|Drama|Thriller +124525,The Hoodlum (1919),(no genres listed) +124527,Words and Music (1948),Drama +124529,Hillside Cannibals (2006),Comedy|Crime|Horror +124531,The Last of the Finest (1990),(no genres listed) +124533,Tarzan's Greatest Adventure (1959),Adventure +124535,The Last Flight (2009),Adventure|Drama|Romance +124537,Lifeguard (1976),Comedy|Drama +124539,Gunshy (1998),Action|Crime|Thriller +124544,Perfume (2001),Comedy|Drama +124546,Cops and Robbers (1951),Comedy|Drama +124548,Rock Around the Clock (1956),(no genres listed) +124550,Monday Night Mayhem (2002),Drama +124552,The New Protocol (2008),Drama|Mystery +124554,Holocaust 2000 (1977),Drama|Horror|Sci-Fi +124556,The Virgin of Nuremberg (1963),Horror|War +124558,Lizzie (2013),Thriller +124560,The Crying Dead (2013),Adventure|Horror|Thriller +124562,Illegal (2011),Drama +124564,Stranded (2010),Action|Horror|War +124566,My Reputation (1946),Romance +124568,Silver River (1948),Drama|Romance|Western +124571,Scarred City (1999),Action|Thriller +124573,Sam Whiskey (1969),Action|Comedy|Western +124575,The Wind in the Willows (1983),Adventure|Animation|Children|Fantasy +124577,A Boy and His Samurai (2010),Comedy|Drama|Romance +124579,Three Daring Daughters (1948),Romance +124581,Slow Burn (2000),Action|Drama|Mystery|Thriller +124583,Riptide (1934),Drama|Romance +124585,That Midnight Kiss (1949),Romance +124587,Square Grouper (2011),Documentary +124589,The Half Naked Truth (1932),Comedy|Romance +124591,Untamed (1955),Action|Adventure|Drama +124593,I lagens namn (1986),Crime|Thriller +124595,Their Own Desire (1929),Drama|Romance +124599,Home Sweet Home (2001),Drama +124601,I'm Losing You (1998),Drama +124605,The Conspirators (1969),Comedy|Drama +124607,One Night of Love (1934),Romance +124609,Our Betters (1933),Comedy|Drama|Romance +124611,Great Day in the Morning (1956),Western +124613,Posse from Hell (1961),Western +124615,On Approval (1944),Comedy|Romance +124617,Guns of Diablo (1965),Western +124619,Night and Fog (2009),Drama +124621,Shaolin Mantis (1978),Action +124623,Evel Knievel (2004),Drama +124625,The Lion (1962),Drama +124627,The Smiling Ghost (1941),Comedy|Mystery +124629,Sånt är livet (1996),(no genres listed) +124631,Le joli mai (1966),(no genres listed) +124633,The Taming of the Shrew (1929),Comedy +124635,The Juggler (1953),Drama|War +124639,Onionhead (1958),(no genres listed) +124641,Mandalay (1934),Drama +124643,The Hunters (1977),Drama|Romance +124645,The Midnight Game (2013),(no genres listed) +124647,Spark: A Burning Man Story (2013),Action|Documentary|Drama +124649,Anything You Want (2010),Drama +124651,Stalker (2010),Horror +124653,She Couldn't Say No (1954),Comedy|Drama +124655,The Scarlet Coat (1955),Adventure|Drama +124657,There's Always A Woman (1938),Comedy|Mystery +124659,The Law (1990),(no genres listed) +124663,One Minute to Zero (1952),Drama|War +124665,Tugboat Annie (1933),Comedy|Drama +124667,Sally Hemings: An American Scandal (2000),(no genres listed) +124669,Two Flags West (1950),War|Western +124671,The Avenging Angel (1995),Western +124673,Tenth Avenue Angel (1948),Drama +124675,She Married Her Boss (1935),Comedy +124679,Haunted Gold (1932),Mystery|Western +124681,Raffles (1939),Adventure|Comedy|Crime|Drama|Romance|Thriller +124683,one eyed king (2001),Action|Crime|Drama|Thriller +124685,Hidden in America (1996),Drama +124687,The Case of the Howling Dog (1934),Crime|Drama|Mystery +124689,The Delinquents (1957),Drama +124691,Hollidaysburg (2014),Comedy +124693,Hell's Highway (1932),Crime|Drama +124695,The Angel Wore Red (1960),Action|Drama|Romance|War +124697,Slightly Dangerous (1943),Comedy|Romance +124699,London Voodoo (2004),Horror|Thriller +124701,The Girl Who Had Everything (1953),Drama|Romance +124703,The Outriders (1950),Western +124705,Marathon Boy (2010),Documentary +124709,Heat Lightning (1934),Action|Crime|Thriller +124711,The Model and the Marriage Broker (1951),Comedy +124713,Sea Wife (1957),Drama|Romance +124717,Path to Paradise: The Untold Story of the World Trade Center Bombing (1997),Drama +124721,The Front (2010),Crime|Drama|Mystery +124723,Tomahawk (1951),Western +124725,The Big Cube (1969),Mystery|Thriller +124727,Just for Kicks (2005),Documentary +124729,Houdini (1998),Drama +124731,Just My Luck (1957),Comedy +124733,The Day Mars Invaded Earth (1963),(no genres listed) +124735,Love Bites (1993),Comedy|Romance +124737,The Irish in Us (1935),(no genres listed) +124739,When Michael Calls (1972),Horror|Thriller +124743,I Take This Woman (1940),Drama +124745,The Girl in Black Stockings (1957),Crime|Drama +124749,Rônin-gai (1990),Action|Drama +124751,The Mysterious Island (1973),Adventure|Sci-Fi +124753,Salt and Pepper (1968),Action|Comedy|Thriller +124755,Limbo (2010),Drama +124757,Hostage (2005),Crime|Drama|Thriller +124759,Laughing Sinners (1931),Drama|Romance +124761,Operation Cobra (1997),Action +124763,Hills of Home (1948),Action|Adventure|Children|Drama +124765,"Mysterious Island, The (1929)",(no genres listed) +124767,The Threat (1949),Crime|Thriller +124769,Stolen Face (1952),Thriller +124771,I Will Follow (2011),Drama|Romance +124773,Bienvenido a casa (2006),Comedy|Romance +124775,The Lost Squadron (1932),(no genres listed) +124777,Love Laughs at Andy Hardy (1947),Comedy|Romance +124779,Home of the Brave (1949),Drama +124781,Marianne (2011),Drama|Fantasy|Horror|Mystery|Thriller +124783,Uncle Kent (2011),Comedy|Drama|Romance +124785,South Sea Woman (1953),Adventure|Comedy|Romance|War +124787,Hit the Deck (1955),Comedy|Romance +124789,Song Without End (1960),Drama|Romance +124791,Three Godfathers (1936),Drama|Western +124793,The Crowded Sky (1960),Action|Adventure|Drama +124795,The Divine Lady (1929),(no genres listed) +124797,Voodoo Possession (2014),Drama|Horror|Mystery +124799,Ring of Fire (2013),Drama +124801,Lydia (1941),Drama|Romance +124803,Hard to Handle (1933),Comedy|Romance +124805,Venus & Vegas (2010),Action|Comedy +124807,Jay-Z: Made in America (2013),Documentary +124809,The Man in the Net (1959),Drama|Mystery|Thriller +124811,The Power and the Glory (1933),Drama +124813,House of Usher (2008),Horror|Thriller +124817,It Started With A Kiss (1959),Comedy|Romance +124819,Midnight Crossing (1988),Mystery|Thriller +124823,Summer's End (2000),Children|Drama +124825,Snake and Mongoose (2013),Drama +124827,Ruby (1977),Action|Drama|Horror +124829,The Hypnotic Eye (1960),Horror +124831,They All Kissed the Bride (1942),Comedy|Romance +124833,Men of the Fighting Lady (1954),(no genres listed) +124835,The Wild North (1952),Western +124837,Voyna i mir IV. - Pierre Bezukhov (2014),Drama +124839,The Lightkeepers (2009),Comedy|Drama|Romance +124841,Special Mission Lady Chaplin (1966),Action|Adventure +124843,From the Orient with Fury (1965),Action|Adventure|Comedy +124845,Good Sam (1948),Comedy|Drama|Romance +124847,"Piranha, Piranha (1972)",Action|Horror|Thriller +124849,Long Distance Revolutionary: A Journey with Mumia Abu-Jamal (2013),Documentary +124851,Delirium (2014),Adventure|Romance|Sci-Fi +124853,Why Man Creates (1968),Animation|Documentary +124855,Moon Zero Two (1969),Sci-Fi +124857,Deception (2013),Action +124859,The Gambler (2014),Crime|Drama|Thriller +124861,Dinosaur 13 (2014),Adventure|Documentary|Drama|Thriller +124863,Chosen Survivors (1974),Horror|Sci-Fi +124865,Loitering with Intent (2014),Comedy|Drama +124867,Justice League: Throne of Atlantis (2015),Action|Animation +124869,Jay And Silent Bob's Super Groovy Cartoon Movie (2013),(no genres listed) +124871,Love and Other Troubles (2012),Comedy|Romance +124873,The Turning Point (1952),Action|Drama +124875,Jumpin' at the Boneyard (1991),Drama +124877,Thunder Over the Plains (1953),Action +124879,The Glory Guys (1965),Action|Drama|Romance|Western +124881,The Night Heaven Fell (1958),Crime|Drama|Thriller +124883,Riders to the Stars (1954),Drama|Sci-Fi +124885,The Great O'Malley (1937),Drama +124887,The Invisible Eye (2011),Drama +124889,The Adventures of Tom Thumb & Thumbelina (2002),Animation +124891,The Ambassador's Daughter (1956),Comedy|Romance +124893,Witness for the Prosecution (1982),Drama|Mystery|Thriller +124895,The Millennium Bug (2011),Horror +124897,Way Back Home (1931),Drama +124899,Term of Trial (1963),Drama +124901,The Ouija Experiment (2011),Horror +124903,Styx (2001),Action|Crime|Thriller +124905,"Goodbye, My Fancy (1951)",Comedy|Romance +124907,The Outlaws Is Coming (1965),Comedy|Western +124909,Hollywood Hotel (1937),Comedy|Romance +124913,Union Depot (1932),Comedy|Drama|Romance +124915,The Hills Run Red (1966),Action|Western +124917,Ten Cents a Dance (1931),Drama +124919,The Wind in the Willows (1995),Adventure|Animation|Children|Comedy +124921,Melody for a Street Organ (2009),(no genres listed) +124923,The Dolphin: Story of a Dreamer (2009),Animation +124925,"Swing High, Swing Low (1937)",Drama|Romance +124927,Toys in the Attic (2009),Animation|Children|Fantasy|Thriller +124931,Return from the Ashes (1965),Drama +124933,Project: Shadowchaser (1992),Action|Sci-Fi|Thriller +124937,Willow and Wind (2000),(no genres listed) +124939,The Perfect Furlough (1958),Comedy +124941,Virus (1996),Action|Thriller +124943,Murder on a Honeymoon (1935),Comedy|Mystery +124945,Stage Struck (1958),Drama|Romance +124951,Heidi (1968),Children|Drama +124953,Gun Glory (1957),Western +124955,Ritual (2013),Horror +124957,"The Foreign Duck, the Native Duck and God in a Coin Locker (2007)",Drama +124959,The Iron Curtain (1948),Documentary|Thriller +124961,Voyna i mir II. - Natasha Rostova (1966),Drama +124963,House Party: Tonight's the Night (2013),(no genres listed) +124965,Miracles (1986),Comedy +124969,"Ride Him, Cowboy (1932)",Action|Romance|Western +124971,This Woman Is Dangerous (1952),Crime|Drama +124973,Special Agent (1935),Crime|Drama +124975,The Fine Art of Love: Mine Ha-Ha (2005),(no genres listed) +124977,Spanish Judges (2000),Crime|Drama +124979,The Helen Morgan Story (1957),Drama|Romance +124981,Trooper Hook (1957),Western +124983,Impy's Island (2006),Animation|Children|Fantasy +124985,Roughly Speaking (1945),Comedy|Drama +124987,Snow White (1987),Children +124989,Never Let Me Go (1953),Drama|Romance +124991,Romance (2008),Romance +124993,The Window (2008),Drama +124995,The Newest City in the World (1974),Children|Drama +124997,King Richard And The Crusaders (1954),Adventure|Drama +124999,Jeanne Eagels (1957),Drama +125001,No Down Payment (1957),Drama +125003,The White Tower (1950),Adventure +125005,This Could Be The Night (1957),Comedy +125007,The Hoodlum (1951),Crime|Drama|Thriller +125009,Underwater! (1955),Adventure|Drama +125011,That Night in Rio (1941),Comedy|Romance +125013,The Only Thrill (1997),Drama|Romance +125015,Somewhere I'll Find You (1942),Drama|Romance|War +125017,Return of the Bad Men (1948),Action|Drama|Western +125019,The Dry Land (2010),Drama +125021,Kidco (1984),Comedy +125023,"Third Finger, Left Hand (1940)",Comedy +125025,The Taqwacores (2010),Action|Comedy|Drama +125027,The Extraordinary Seaman (1969),Adventure|Comedy|War +125029,Splendor (1989),(no genres listed) +125031,Never Say Goodbye (1946),Comedy +125033,It Happened in Brooklyn (1947),Comedy|Romance +125035,"Taza, Son of Cochise (1954)",Action|Drama|Western +125037,The Gay Sisters (1942),Drama|Romance +125039,Vigil in the Night (1940),Drama +125041,Life Begins for Andy Hardy (1941),Comedy|Romance +125043,The Ice Follies of 1939 (1939),Drama +125045,The Matchmaker (2010),Drama +125047,Kenny Rogers as The Gambler (1980),Western +125049,Virtue (1932),Drama +125051,The Cup (2012),Drama +125053,The Iron Mistress (1952),Action|Drama +125055,Welcome Danger (1929),Comedy +125057,The Little Minister (1934),Drama|Romance +125059,The Web (1947),Drama|Thriller +125061,The Big Store (1973),Comedy +125063,Neuf mois (1994),Comedy +125065,The Fuller Brush Girl (1950),Comedy +125067,Waltz of the Toreadors (1962),Comedy +125069,Miss Grant Takes Richmond (1949),Comedy +125071,Last Man Standing (2011),Action|Drama|Thriller +125073,White Cargo (1942),Adventure|Drama +125077,Eddie Izzard: Force Majeure Live (2013),Comedy +125079,Sittin' on a Backyard Fence (1933),(no genres listed) +125081,Mars (1968),Documentary|Sci-Fi +125083,Ride Clear of Diablo (1954),Western +125085,Killer Holiday (2013),Horror|Thriller +125087,Snow White (2005),Drama +125089,The Rising of the Moon (1957),Comedy|Drama +125091,The Feminine Touch (1941),(no genres listed) +125093,Playing House (2010),Thriller +125095,Topaze (1933),Comedy|Drama +125097,Kiss Toledo Goodbye (2000),Action|Comedy|Thriller +125099,Susan Slade (1961),Drama|Romance +125101,The Big Heat (1988),Action|Crime|Thriller +125103,Homecoming (1948),Drama|Romance|War +125105,Scene of the Crime (1986),Drama +125107,The Hessen Affair (2009),Action|Drama|Thriller +125109,Torrent (1926),Drama|Romance +125111,The Three Stooges Go Around the World in a Daze (1963),Comedy +125113,Scene of the Crime (1949),Crime +125115,Riding Shotgun (1954),Western +125117,I'll Take Sweden (1965),Comedy|Romance +125119,Johnny Cool (1963),Action|Thriller +125121,The Red Dragon (1945),Mystery +125123,Welcome to Death Row (2001),Documentary +125125,Pure Country 2: The Gift (2010),Drama|Romance +125127,Voyna i mir III. - Borogyino (1967),(no genres listed) +125129,Witchboard III: The Possession (1995),Horror +125131,The Miracle (1991),Drama|Romance +125133,Prairie Fever (2008),Action|Western +125135,Unstable Fables: Tortoise vs. Hare (2008),Animation|Children|Drama +125137,Perfect Understanding (1933),Comedy|Drama|Romance +125139,Pleasure or Pain (2012),Drama|Thriller +125141,"Y/N: You Lie, You Die (2012)",Thriller +125143,"Cossacks, The (1928)",Action|Drama|Romance|War +125145,BlackJacks (2014),Action|Sci-Fi|Thriller +125147,The Black Knight (1954),Action|Adventure +125149,The Big Shakedown (1934),Crime +125151,Home Movies (1980),Comedy +125153,Mother Riley Meets the Vampire (1952),Comedy|Horror +125155,The Pee-Wee Herman Show on Broadway (2011),Comedy +125157,The Spanish Gardener (1956),Drama +125159,Safety Patrol (1998),(no genres listed) +125163,The Velvet Touch (1948),Drama|Thriller +125165,Two Weeks with Love (1950),Comedy|Romance +125169,Shadows Over Chinatown (1946),Comedy|Crime|Mystery|Thriller +125171,Voodoo Island (1957),Horror +125173,Tom Sawyer (2011),Adventure +125175,Rio Rita (1929),Romance|Western +125177,Small Town Girl (1936),Comedy|Romance +125179,The Bounty Hunter (1954),Action|Comedy|Romance|Western +125181,Me and My Gal (1932),Comedy|Drama|Romance +125183,Venus and Serena (2012),Documentary +125185,Nine Days of One Year (1961),Drama|Romance +125187,Jump Out Boys (2008),Action|Thriller +125189,I Died a Thousand Times (1955),Crime|Drama|Thriller +125191,The Gay Falcon (1941),Crime|Drama|Mystery|Romance +125193,Yellowstone Kelly (1950),Action|Western +125195,The Last Challenge (1967),Western +125197,That’s What She Said (2012),Comedy +125199,Weapons (2007),Crime|Drama +125201,OP Center (1995),Action|Thriller +125203,Two Seconds (1932),Drama +125205,TekWar (1994),Sci-Fi +125207,The Prisoner (1955),Drama +125209,Son of Morning (2011),Comedy|Drama +125211,War and Peace (1965),(no genres listed) +125213,Red Heat (1985),Thriller +125215,Percentage (2013),Crime +125217,Parachute Jumper (1933),Drama +125219,The Way Back (1957),Western +125221,The Beast of Hollow Mountain (1956),Horror|Sci-Fi|Western +125223,The Woman on Pier 13 (1949),Drama|Thriller +125225,Midnight (1934),Crime|Drama +125227,Hanzo the Razor: Who's Got the Gold? (1974),Action|Drama +125229,The Good Die Young (1954),Crime +125231,Real (2013),Drama|Sci-Fi +125233,Playdate (2012),(no genres listed) +125235,Charlie Valentine (2009),Crime|Drama|Thriller +125237,The Learning Tree (1969),Drama +125239,Spider's Web (2002),Drama|Mystery|Romance|Thriller +125241,The Next Voice You Hear.... (1950),Drama +125245,The Great Rupert (1950),Children|Comedy +125247,Too Many Crooks (1959),Comedy +125249,The Legend of Hell's Gate: An American Conspiracy (2011),Action|Adventure|Western +125251,The Wagons Roll at Night (1941),Drama +125253,The Cure (2014),Action|Sci-Fi|Thriller +125255,Multiple Sarcasms (2010),Drama|Romance +125257,A Woman Called Golda (1982),Drama +125259,These Wilder Years (1956),Drama +125261,Mysterious Island (2010),Adventure|Horror|Sci-Fi +125263,The Burglar (1957),Crime|Drama +125265,The Cyclops (1957),Horror|Sci-Fi +125267,The Bride Wore Red (1937),Comedy|Drama|Romance +125269,Touching Home (2008),Drama +125271,The Roots of Heaven (1958),Adventure|Drama +125273,Tenchu! (1969),(no genres listed) +125275,Richard Pryor: Omit the Logic (2013),(no genres listed) +125277,Station West (1948),Action|Mystery|Romance|Western +125279,The Student Prince (1954),(no genres listed) +125281,Vicki (1953),Crime|Drama|Mystery|Romance|Thriller +125283,Way Out West (1930),Comedy|Drama|Western +125285,Never Let Go (1960),Crime|Drama +125287,Heidi (2005),Children|Drama +125289,Unstable Fables: 3 Pigs & a Baby (2008),Animation|Children +125291,Richard: The Lionheart (2013),Action|Adventure +125293,Sweeney! (1977),Action|Crime|Drama +125295,Hellcats of the Navy (1957),Action|Thriller|War +125297,New World Order (2009),Documentary +125299,Marriage on the Rocks (1965),Comedy|Romance +125301,The Little Hut (1957),Comedy|Romance +125303,The Adventures of Barry McKenzie (1972),Comedy +125305,Opposing Force (1986),(no genres listed) +125307,Kettle of Fish (2006),Comedy|Romance +125309,Winnie Mandela (2013),Drama +125311,My Mom's a Werewolf (1989),Comedy|Horror +125313,Superstar (2012),Comedy +125315,The Conspirators (1944),Drama|Thriller +125321,The Lickerish Quartet (1970),Drama|Romance +125323,Shock Treatment (1973),Crime|Drama|Horror +125325,Margie (1946),(no genres listed) +125327,Rocky Mountain (1950),Action|Adventure|Western +125329,Midnight (1982),Comedy|Horror|Romance +125331,To Please a Lady (1950),Action +125333,The Night of the Grizzly (1966),Adventure|Western +125335,I Accidentally Domed Your Son (2004),Action|Comedy +125337,The Lovers (1994),Children|Drama|Fantasy|Romance +125339,Skinwalkers (2002),Crime|Drama|Mystery|Thriller +125341,Tough Enough (1983),Drama +125345,Un Piede in paradiso (1991),Comedy +125347,Mandrake (2010),Horror|Sci-Fi|Thriller +125349,Homecoming (1996),Drama +125351,Greetings to the Devil (2011),Thriller +125353,In the Line of Duty: The F.B.I. Murders (1988),Action|Crime|Drama +125355,The Van (1977),Comedy +125357,It's My Turn (1980),Comedy|Romance +125359,Lovesick (1983),Comedy|Fantasy|Romance +125361,The Shining Hour (1938),Drama|Romance +125363,Take a Hard Ride (1975),Action|Western +125365,The Paranoids (2010),Comedy|Drama|Romance +125367,Mission Park (2013),Crime +125369,Snow White: A Deadly Summer (2012),Horror|Thriller +125371,Medium Raw (2010),Fantasy|Horror|Thriller +125373,Love on the Side (2004),Comedy|Romance +125375,Three Violent People (1957),Drama|Western +125377,The Sheriff of Fractured Jaw (1959),(no genres listed) +125379,Let's Make It Legal (1951),Comedy|Romance +125381,Silent Partner (2005),Action|Mystery|Thriller +125383,Woman Wanted (1999),Drama|Romance +125385,Trust Me (2010),(no genres listed) +125387,Hail Caesar (1994),Comedy +125389,The Gong Show Movie (1980),Comedy +125393,"Ride, Vaquero! (1953)",Western +125395,Lullaby of Broadway (1951),Romance +125397,The Virginian (1946),Romance|Western +125399,The Story of Alexander Graham Bell (1939),Drama +125401,Hansel and Gretel (1987),Children|Fantasy +125403,Phantom Punch (2009),Drama +125405,Hot Saturday (1932),Drama +125407,Only The Brave (2006),Action|Drama +125409,Robin of Locksley (1996),Adventure|Drama +125411,The Men's Club (1986),Drama +125413,Soul Power (2008),Documentary +125415,The Waiting City (2010),Drama|Romance +125417,Stars and Stripes Forever (1952),Drama +125419,Three Can Play That Game (2007),Comedy|Romance +125421,The Gundown (2011),Action|Western +125423,Gunslinger's Revenge (1998),(no genres listed) +125425,Lone Hero (2002),Action|Adventure|Drama +125427,The Girl from 10th Avenue (1935),(no genres listed) +125429,Johnny Skidmarks (1998),Crime|Drama|Mystery|Thriller +125431,The Black Pimpernel (2007),Drama|Romance|Thriller +125433,Lionheart: The Children's Crusade (1987),Adventure|Drama +125435,The Mark (2012),Action|Thriller +125437,Rhapsody (1954),Drama|Romance +125439,The Last Rites of Ransom Pride (2010),Action|Drama|Western +125441,The Big Mouth (1967),Action|Comedy|Crime +125443,Parrish (1961),Drama|Romance +125445,The People Against O'Hara (1951),Crime|Drama +125447,Make Mine Mink (1960),Comedy +125449,Jack the Reaper (2011),Horror +125451,Heatstroke (2008),(no genres listed) +125453,Space Warriors (2013),Adventure|Children|Sci-Fi +125455,Something of Value (1957),Drama +125457,King of the Underworld (1939),Crime +125461,Stage Struck (1925),(no genres listed) +125465,I Ought to Be in Pictures (1982),Comedy|Drama +125467,The Ghost of Yotsuya (1959),(no genres listed) +125469,Till the End of Time (1946),Drama|Romance +125471,Way... Way Out (1966),Comedy|Sci-Fi +125473,Velocity Trap (1997),Sci-Fi +125475,The Painted Hills (1951),Action|Adventure|Children|Drama +125477,The Black Dahlia Haunting (2012),Crime|Drama|Horror|Mystery +125479,The Unknown (1965),Drama|Thriller +125481,In Cold Blood (1996),Crime +125483,Week-End at the Waldorf (1945),Comedy|Drama|Romance +125485,We Were Strangers (1949),Action|Drama|Romance +125489,The River Rat (1984),Adventure|Children|Crime|Drama +125493,Le petit poucet (2001),Adventure|Children|Fantasy +125495,The Hound of the Baskervilles (1983),Crime|Horror|Mystery +125497,The Inheritance (2011),Drama|Horror|Thriller +125499,The Trap (1946),Crime|Mystery|Thriller +125501,Voodoo Moon (2006),Drama|Fantasy|Horror +125503,Today We Live (1933),Action|Drama|Romance|War +125505,Restitution (2011),Action|Crime|Mystery|Romance|Thriller +125507,The Tunnel of Love (1958),Comedy|Romance +125509,Razortooth (2007),Action|Horror|Sci-Fi|Thriller +125511,The Legend of Bloody Mary (2008),Horror|Mystery|Thriller +125513,Middle of the Night (1959),Drama +125515,The Adventures of Marco Polo (1938),Adventure|Romance +125517,The D.I. (1957),Drama +125519,Who Was That Lady? (1960),Comedy +125521,Walking Tall Part II (1975),Action|Crime|Drama|Thriller +125523,Time Limit (1957),Drama|Mystery|War +125525,Lost Signal (2007),Horror|Thriller +125527,Slap Shot 3: The Junior League (2008),Action|Adventure|Comedy +125529,Laughter In Paradise (1951),Comedy +125531,Fun on a Weekend (1947),(no genres listed) +125533,Almost 18 (2012),Comedy|Drama +125535,Fist of Jesus (2012),(no genres listed) +125537,Print the Legend (2014),Documentary +125539,He Who Dares (2014),Action +125541,Anina (2013),Adventure|Animation|Children +125543,Against The Sun (2015),Adventure +125545,The Divine Move (2014),Action|Crime|Drama +125547,Nine Guests for a Crime (1977),Mystery|Thriller +125549,"A Reason to Live, a Reason to Die (1972)",Western +125551,A Yank at Eton (1942),(no genres listed) +125553,Apache Trail (1942),Romance|Western +125555,Bowery at Midnight (1942),Action|Comedy|Horror +125557,"Devils Hand, The (La main du diable) (1943)",Fantasy|Horror +125559,Lucky Country (2009),Adventure|Drama|Thriller +125561,Duffy (1968),(no genres listed) +125563,Tasting Menu (2014),Comedy +125565,Night Will Fall (2014),Documentary +125567,Pony Soldier (1952),Western +125569,The Amazing Catfish (2013),Comedy|Drama +125571,The Court-Martial of Jackie Robinson,(no genres listed) +125574,The Perils of Pauline (1967),(no genres listed) +125576,The Secret Partner (1961),Crime|Drama +125583,Black Magic (1949),Drama|Mystery|Romance +125585,Three Cases of Murder (1955),Mystery +125587,The Fountain of Youth (1958),(no genres listed) +125589,David and Goliath (1960),Action|Drama +125591,The Southern Star (1969),Adventure|Comedy +125593,Filming 'The Trial' (1981),(no genres listed) +125596,Parade (1974),Children|Comedy +125599,Always for Pleasure (1978),Documentary +125601,Port of Flowers (1943),(no genres listed) +125603,The Living Magoroku (1943),(no genres listed) +125605,Jubilation Street (1943),(no genres listed) +125607,The Army (1944),Drama +125609,Morning for the Osone Family (1946),(no genres listed) +125611,A Japanese Tragedy (1953),(no genres listed) +125613,She Was Like a Wild Chrysanthemum (1955),Drama|Romance +125615,The River Fuefuki (1960),(no genres listed) +125617,Immortal Love (1961),(no genres listed) +125619,Legend of a Duel to the Death (1963),Action|Drama +125621,These Children Survive Me (1983),Drama +125623,That Night's Wife (1930),Drama +125628,Citizen Koch (2013),Documentary +125630,We Still Kill the Old Way (2014),Crime +125632,In Our Garden,(no genres listed) +125634,Giuseppe Makes a Movie (2014),Documentary +125636,Youth of the Son (1952),Drama +125638,The Arrival of Wang (2012),Mystery|Sci-Fi|Thriller +125640,Walker (2012),(no genres listed) +125642,One Step Ahead of My Shadow (1933),(no genres listed) +125644,Amuck! (1972),Drama|Horror|Mystery +125646,Lad: A Dog (1962),(no genres listed) +125648,Horror of the Blood Monsters (1970),Action|Comedy|Horror|Sci-Fi +125650,Corruzione al palazzo di giustizia (1975),(no genres listed) +125652,Season For Assassins (1975),(no genres listed) +125654,Low Down (2014),Drama +125656,"Another Day, Another Time: Celebrating the Music of Inside Llewyn Davis (2013)",Documentary +125658,Margaret (2009),Comedy|Drama|Romance +125661,Paper Planes (2014),Children +125698,Drive (2002),Crime +125700,Hard Luck Hero (2003),(no genres listed) +125704,Bunny Drop (2011),Comedy +125768,I Know You Know (2009),Drama +125770,Awaydays (2009),Drama +125774,Double Game (1977),Action|Thriller +125776,Mafia Connection (1970),Crime +125780,A Long Ride from Hell (1970),Action|Western +125782,Body Fat Index of Love (2012),Comedy +125786,Burning Blue (2013),Drama|Romance|War +125795,Björk: Biophilia Live (2014),Documentary +125833,The Missouri Traveler (1958),(no genres listed) +125836,Those Calloways (1965),Children|Drama +125840,The Deserter (1970),(no genres listed) +125842,Wild in the Sky (1972),Comedy +125852,Torch Singer (1933),Drama|Musical|Romance +125854,The Diary of Anne Frank (1980),Drama +125856,El Compadre Mendoza (1934),Drama|War +125858,Fashions of 1934 (1934),Comedy|Drama|Romance +125860,Le Grand Jeu (1934),(no genres listed) +125862,Bad Seed (1934),Comedy +125864,Red Ensign (1934),(no genres listed) +125866,Love and Distrust (2010),Drama|Romance +125868,"Aquí llega Condemor, el pecador de la pradera (1996)",Comedy|Western +125870,Brácula (Condemor II) (1997),Comedy|Horror +125872,El asombroso mundo de Borjamari y Pocholo (2004),(no genres listed) +125874,2012: Ice Age (2011),Action|Adventure|Sci-Fi +125876,FBI: Frikis buscan incordiar (2004),(no genres listed) +125878,Isi & Disi: Amor a lo bestia (2004),(no genres listed) +125880,Playmates (1941),Comedy +125882,Red Salute (1935),Comedy|Romance +125884,The Case of the Curious Bride (1935),Comedy|Crime|Drama|Mystery +125886,The Case of the Lucky Legs (1935),Comedy|Crime|Mystery +125888,La bandera (1935),Drama|Romance +125890,Achtung! The Desert Tigers (1977),(no genres listed) +125892,The Beast in Heat (1977),Horror|Thriller|War +125894,Doubting Thomas (1935),Comedy +125896,A Blade in the Dark (1983),Horror|Thriller +125898,The Phantom Light (1935),Mystery|Thriller +125900,Sidecar Racers (1975),Drama +125902,Seven Alone (1974),Children|Drama +125904,Pretty Cool (2001),Action|Comedy|Thriller +125906,Ned Rifle (2014),Drama +125908,Time in the Minors (2010),(no genres listed) +125910,Stars Above (2012),(no genres listed) +125912,Not Another Happy Ending (2013),Comedy|Drama|Romance +125914,Mortdecai (2015),Adventure|Comedy|Mystery|Romance +125916,Fifty Shades of Grey (2015),Drama|Romance +125918,Expelled (2014),Comedy +125920,Buffalo Girls (2012),Action +125922,Gregory Go Boom (2013),Comedy +125924,The Periwig-Maker (1999),Animation +125926,Kiwi! (2006),Action|Animation +125928,Santa's Pocket Watch (1980),(no genres listed) +125930,Björk at the Royal Opera House (2002),(no genres listed) +125932,The Fox and the Hare (1973),Animation|Children +125934,Christmas Comes but Once a Year (1936),(no genres listed) +125936,Crac (1981),Animation +125938,Reggie Watts: Why Shit So Crazy? (2010),Comedy +125940,Syrinx (1966),Animation +125942,Curb Dance (2010),(no genres listed) +125944,Desire: The Vampire (1982),Crime|Horror|Thriller +125946,Manson (1973),Documentary +125948,Fright to the Finish (1954),(no genres listed) +125950,Guyana Tragedy: The Story of Jim Jones (1980),Drama +125952,"I Want a Dog for Christmas, Charlie Brown (2003)",Animation|Children|Comedy +125954,Impure Thoughts (1986),Comedy +125956,It's a Bird (1930),(no genres listed) +125958,Stephen Fry In America - New World,(no genres listed) +125960,The Trip to Squash Land (1967),Animation +125962,Charlie Brown's Christmas Tales (2002),Animation|Children|Comedy +125964,Eat (2011),Drama +125966,Garfield's Halloween Adventure (1985),Animation|Children +125968,"It's Christmastime Again, Charlie Brown (1992)",Animation +125970,Halloweentown (1998),Adventure|Children|Comedy|Fantasy +125972,Halloweentown II: Kalabar's Revenge (2001),Adventure|Children|Comedy|Drama|Fantasy +125974,Halloweentown High (2004),Adventure|Children|Comedy|Fantasy +125976,Nocturna Artificialia (1979),Animation +125978,Santa Claus (1898),Sci-Fi +125980,Surprise (1996),(no genres listed) +125982,Trick or Treat (1952),Animation +125984,Vengeance: The Story of Tony Cimo (1986),(no genres listed) +125986,Within the Woods (1978),Horror +125988,100 Years at the Movies (1994),Documentary +125990,Apple Jack (2003),Comedy|Drama +125992,The Butter Battle Book (1989),Animation|Children +125994,Corn on the Cop (1965),(no genres listed) +125996,The Black Devil (1905),Comedy|Fantasy +125998,Halloween is Grinch Night (1977),Animation|Children +126000,Marilyn in Manhattan (1998),(no genres listed) +126002,Rage of Angels (1983),Action|Adventure|Drama|Romance +126004,Rage of Angels: The Story Continues (1986),Drama +126006,Rudolph the Red-Nosed Reindeer (1948),Animation|Children|Fantasy +126008,Signs (2008),Romance +126010,Queen - Rock Montreal (2007),(no genres listed) +126012,The Fat Albert Halloween Special (1977),Animation +126014,Season's Greetings (1996),Comedy +126016,The Dot and the Line : A Romance in Lower Mathematics (1965),Animation|Children|Comedy +126018,Nantucket Film Festival's Comedy Roundtable (2012),Comedy|Documentary +126020,Rubber Johnny (2005),Animation|Horror +126022,Act Da Fool (2010),(no genres listed) +126024,En rachâchant (1982),(no genres listed) +126026,The Flower (1971),(no genres listed) +126028,Boo to You Too! Winnie the Pooh (1996),(no genres listed) +126030,Isabelle au bois dormant (2007),Animation|Comedy +126032,Betty Boop's Hallowe'en Party (1933),Animation|Comedy|Horror +126034,Halloween (1931),(no genres listed) +126036,Barbie: A Fashion Fairytale (2010),Animation|Children +126038,The Halloween That Almost Wasn't (1979),Children|Comedy +126040,The Mystery of the Leaping Fish (1916),Comedy +126042,The 3 Rs (2011),(no genres listed) +126044,Brutal Relax (2010),Action|Comedy +126046,Franz Kafka's a Country Doctor (2007),Animation|Drama +126048,Pluto's Christmas Tree (1952),Animation|Comedy +126050,Stille Nacht I: Dramolet (1988),Animation +126052,Holiday for Drumsticks (1949),(no genres listed) +126054,The Horseplayer (1990),Drama +126056,Coven (2000),Horror +126058,Rehearsals for Extinct Anatomies (1987),Animation +126060,Suur Tõll (1980),(no genres listed) +126062,We Can Be Heroes (2005),(no genres listed) +126064,Bob's Birthday (1994),(no genres listed) +126066,Broom-Stick Bunny (1956),Animation|Children|Comedy +126068,Summer Heights High (2007),(no genres listed) +126070,Chainsaw Maid (2007),Animation +126072,The Little Matchgirl (2006),Animation +126074,Haunted House (1929),(no genres listed) +126076,How They Get There (1997),(no genres listed) +126078,Istanbul (1985),(no genres listed) +126080,"Hen, his wife (1990)",(no genres listed) +126082,Inside The X-files (1998),Documentary +126084,The Horribly Slow Murderer with the Extremely Inefficient Weapon (2008),Comedy|Horror +126086,Norm MacDonald: Me Doing Standup (2011),Comedy +126088,A Flintstones Christmas Carol (1994),Animation|Children|Comedy +126090,Hedgehog in the Fog (1975),Animation +126092,The Cat's Out (1931),Animation +126094,Claymation Comedy of Horrors (1991),Animation +126096,The Last Farm (2004),Drama +126098,Snowballs (2011),(no genres listed) +126100,"Danger! 50,000 Zombies (2004)",Comedy|Horror +126102,Bouncing Babies (1929),Comedy +126104,Stella: Live in Boston (2009),Comedy +126106,Beastie Boys: Sabotage (1994),(no genres listed) +126108,Diario de un skin (2005),Documentary +126110,The Black Cat (1941),Mystery|Thriller +126112,The Great Bear (2011),Adventure|Animation|Children|Fantasy +126114,Rockabye (1986),Drama +126116,Dolls and Angels (2008),Drama +126120,All About Anna (2005),Comedy|Drama|Romance +126122,Let's Get Those English Girls (1976),Comedy +126124,Archie To Riverdale and Back Again (1990),Comedy +126126,Babette Goes to War (1959),Comedy|War +126128,Belle comme la femme d'un autre (2014),Comedy +126130,Special Delivery (2002),(no genres listed) +126132,Mr. Average (2007),Comedy|Romance +126134,Cutie Honey (2004),Action +126136,"Delphine 1, Yvan 0 (1996)",Comedy +126138,Doomsday Prophecy (2011),Action|Sci-Fi|Thriller +126140,Love Can Seriously Damage Your Health (1997),Comedy|Romance +126142,The Cave of the Golden Rose (1991),Adventure|Children|Fantasy +126144,Human Touch (2005),Drama +126146,King Kelly (2012),Drama +126148,La Bande du drugstore (2002),Drama|Romance +126150,The Slap (1974),Comedy|Drama|Romance +126152,Lahore (2010),Action +126154,La Putain du roi (1990),Drama|Romance +126156,Latitudes (2014),Drama|Romance +126158,Frenchmen 2 (2007),Comedy|Romance +126160,The Last Diamond (2014),Drama +126162,"Le printemps, l'automne et l'amour (1955)",Comedy|Drama +126164,1001 Nights (1990),Adventure|Comedy|Fantasy +126166,Lightspeed (2006),Action|Fantasy|Sci-Fi +126168,Meilleur espoir féminin (2000),(no genres listed) +126170,"Mercredi, folle journée! (2001)",Comedy|Drama +126172,Mr Reliable (1997),(no genres listed) +126174,Ninette (2005),Comedy +126176,Nom de code : Rose (2012),(no genres listed) +126178,Opposite Day (2009),Children|Comedy +126180,Powder Room (2013),Comedy +126182,Shirin in Love (2014),Comedy|Romance +126184,The Christmas Wish (1998),Children|Drama|Romance +126186,The Sex and Violence Family Hour (1983),(no genres listed) +126188,All That... for This?! (1993),Comedy +126190,Who Do I Gotta Kill? (1994),Comedy +126194,"Minotaur, the Wild Beast of Crete (1961)",(no genres listed) +126198,Il segreto del vestito rosso (1964),Thriller +126202,L'isola delle svedesi (1969),(no genres listed) +126204,Smile Before Death (1972),Crime|Mystery|Thriller +126206,Chains (1974),(no genres listed) +126208,The Underage Girl (1974),Comedy|Romance +126210,That Malicious Age (1975),Comedy +126212,"So Young, So Lovely, So Vicious... (1975)",Comedy|Drama +126214,Il medico... la studentessa (1976),Comedy +126217,Delivery: The Beast Within (2013),Horror|Thriller +126219,Marihuana (1936),Documentary|Drama +126221,La bravata (1977),(no genres listed) +126223,Eye of the Spider (1971),Crime +126225,"So Sweet, So Dead (1972)",Thriller +126227,Imputazione di omicidio per uno studente (1972),Drama +126229,The Shadow Men (1997),Horror|Sci-Fi|Thriller +126231,The Killer With a Thousand Eyes (1974),Crime|Thriller +126233,Seventh Heaven (1993),Comedy|Romance +126235,They Were Five (1936),Drama +126237,Stop Train 349 (1963),Drama +126239,Fährmann Maria (1936),(no genres listed) +126241,Screaming Eagles (1956),War +126243,"Thank You, Jeeves! (1936)",(no genres listed) +126245,Homework (1989),(no genres listed) +126247,Internes Can't Take Money (1937),Crime|Drama|Romance +126249,Green Light (1937),Drama|Romance +126251,Black Belly of the Tarantula (1971),Horror|Mystery|Thriller +126283,Maid of Salem (1937),Drama +126286,Double Or Nothing (1937),(no genres listed) +126290,Second Honeymoon (1937),Comedy|Romance +126296,I Met Him in Paris (1937),Comedy|Romance +126300,Dance Program (1937),Drama +126305,Les disparus de Saint-Agil (1938),Drama|Mystery +126309,Vessel of Wrath (1938),Drama +126322,Idiot's Delight (1939),Comedy|Drama|Musical|Romance +126325,Invitation to Happiness (1939),Drama|Romance +126329,Fire From Below (2009),Action|Adventure|Sci-Fi|Thriller +126331,Subliminal Seduction (1996),(no genres listed) +126333,Virtual Combat (1995),(no genres listed) +126335,The Skateboard Kid II (1995),Children|Fantasy +126337,Illicit Dreams (1994),Action|Documentary|Drama|Thriller +126339,Night Eyes Three (1993),(no genres listed) +126341,The Terror Within II (1991),Action|Horror|Sci-Fi +126385,Beyond the Fear (2014),Documentary +126387,Modris (2014),Drama +126389,Deliverance Creek (2014),Drama +126393,Wolves (2014),Action|Horror +126395,The Woodcarver (2012),Drama +126397,The Encounter (2010),Children|Drama +126399,Big Sur (2013),Drama +126401,The Unexpected Love (2014),Comedy +126403,Apostle Peter and The Last Supper (2012),Drama +126405,The Adventures of André and Wally B. (1984),Animation +126407,Face of Terror (2005),Action|Drama|Thriller +126409,The Harmony Game (2011),Documentary +126412,Kamikaze (2014),Action|Comedy|Drama +126414,Planet Ocean (2012),Documentary +126416,Stalag Luft (1993),Comedy|Drama|War +126418,We'll Never Have Paris (2014),Comedy|Romance +126420,American Heist (2015),Action +126422,The Good Son (2011),Thriller +126424,Miraculum (2014),Drama +126426,Solyaris (1968),Drama|Sci-Fi +126428,Ama lur (Tierra Madre) (1968),Documentary +126430,The Pacific (2010),Action|Adventure|Drama|War +126432,Visitor to a Museum (Posetitel muzeya) (1989),Sci-Fi +126434,The Hyperboloid of Engineer Garin (Giperboloid inzhenera Garina) (1965),Sci-Fi +126436,Cosmic Journey (1935),Sci-Fi +126438,Two: The Story of Roman & Nyro,Documentary|Drama +126482,Strange Magic (2015),Animation|Children|Fantasy|Musical +126510,Paris-Manhattan (2012),Comedy|Romance +126544,The Flying Machine (2011),Adventure|Animation|Children +126546,7 Days in Havana (2012),Drama +126548,The DUFF (2015),Comedy +126550,Tower Block (2012),Thriller +126552,Fort McCoy (2011),Drama|War +126554,Age of Ice (2014),Adventure|Sci-Fi +126558,The Girl with a Pistol (1968),Comedy +126560,Love Steaks (2013),(no genres listed) +126562,The Remaining (2014),Horror|Thriller +126571,Prairie Love (2011),Comedy|Drama +126573,Heathcliff: The Movie (1986),Animation|Comedy +126575,Everly (2014),Action|Thriller +126577,"Daddy, I'm A Zombie (2012)",Animation|Comedy|Fantasy +126579,Zodiac (2014),Sci-Fi +126582,Camarón: When Flamenco Became Legend (2005),Drama +126584,Beyond Outrage (2012),Action +126586,The Mark of Cain (2000),Documentary|Drama +126588,From Zero to Hero (2014),Comedy|Drama|Romance +126591,The Humanoid (1979),Fantasy|Sci-Fi +126593,Kocken (2005),(no genres listed) +126595,Aurora (2012),Romance|Sci-Fi +126597,The Little Drummer Girl (1984),Thriller +126599,The Little Death (2014),Comedy +126652,Raven the Little Rascal (2012),Animation|Children +126693,Pinocchio (2012),Animation|Children +126711,Nazi Love Camp 27 (1977),War +126713,Exterminator 2 (1984),Action +126717,Highpoint (1982),Action|Comedy|Thriller +126719,High-Ballin' (1978),Action|Drama +126721,The Blue Knight (1973),(no genres listed) +126723,Kenny Begins (2009),Action|Comedy|Sci-Fi +126725,Bitter Sweetheart (2007),Comedy|Drama +126727,Sandor slash Ida (2005),Drama|Romance +126729,Blood and Lace (1971),Horror +126731,Bit by Bit (2002),(no genres listed) +126733,Help! I'm A Fish (2001),Adventure|Animation|Comedy +126735,"Tsatsiki, Morsan och Polisen (1999)",Drama +126737,Dark Dungeons (2014),Drama|Fantasy +126739,Bert - Den siste oskulden (1995),(no genres listed) +126741,En på miljonen (1995),(no genres listed) +126743,Sunes sommar (1993),Comedy +126745,Lotta 2: Lotta flyttar hemifrån (1993),Children +126747,Lotta på Bråkmakargatan (1992),Children +126749,Babar The Movie (1989),Adventure|Animation|Children|Fantasy +126751,Karlsson on the Roof (1974),Children +126753,The Girls (1968),Comedy +126755,Per un dollaro a Tucson si muore (1964),Comedy|Western +126759,The Nude Princess (1976),(no genres listed) +126761,Kill Him! (1970),Western +126763,"A Man for Emmanuelle (Io, Emmanuelle) (1969)",Drama +126765,A Hyena in the Bank Vault (1968),Crime +126767,The Case of the Bloody Iris (1972),Thriller +126769,Darker Than Night (2014),Horror|Thriller +126771,Uprise (2008),Drama +126773,Story of My Death (2013),Drama +126775,The Blue Room (2014),Crime +126777,Vic+Flo Saw a Bear (2013),Crime|Drama|Thriller +126779,Grandmother (2010),Drama +126781,Our Sunhi (2013),Drama +126783,Two Years at Sea (2011),Documentary +126785,A Spell to Ward Off the Darkness (2013),Documentary +126787,The Last Time I Saw Macao (2012),Documentary|Thriller +126789,When Evening Falls on Bucharest or Metabolism (2013),(no genres listed) +126791,Septien (2011),Comedy|Drama|Mystery +126793,Two Shots Fired (2014),(no genres listed) +126795,Finisterrae (2010),(no genres listed) +126797,The Distance (2014),(no genres listed) +126799,A Gun in Each Hand (2012),Comedy|Romance +126801,Borsalino (1970),Crime|Drama +126803,Finsterworld (2013),Drama +126805,Gangsters (2002),Crime|Drama +126807,Weekender (2011),Drama +126809,Plot of Fear (1976),Crime|Mystery|Thriller +126811,Bank Shot (1974),Comedy|Crime +126813,Reflections in Black (1975),Horror +126815,Anotherworld (2008),Drama|Romance +126917,Ten Minutes Older (1978),(no genres listed) +126919,Of Horses and Men (2013),Comedy|Drama|Romance +126921,The Fox and the Hound 2 (2006),Adventure|Animation|Children|Comedy +126923,Monsterman (Monsterimies) (2014),Documentary|Drama +126925,Long Hello and Short Goodbye (1999),Comedy|Thriller +126927,The Heart of the World (2000),Drama|Fantasy +126929,Li'l Quinquin (2014),Comedy|Crime|Mystery +126931,Girl with Hyacinths (1950),Drama|Mystery +126933,These Amazing Shadows (2011),Documentary +126935,Garlic Is As Good As Ten Mothers (1980),Documentary +126937,Journey to the Beginning of Time (1955),Adventure|Children|Fantasy +126939,Spend It All (1972),Documentary +126941,Joni's Promise (2005),Comedy +126943,The Man Who Could Cheat Death (1959),Horror|Sci-Fi +126945,Small Roads (2011),(no genres listed) +126947,Carriage to Vienna (1966),Drama|War +126949,Strange Voyage (1964),(no genres listed) +126951,Ivory Tower (2014),Documentary +126953,The Fabulous Baron Munchausen (1962),Adventure|Animation|Fantasy +126955,Light Is Calling (2004),(no genres listed) +126957,The Open Road (1926),Documentary +126959,The Epic of Everest (1924),Documentary +126961,All In This Tea (2007),Documentary +126963,The Private Life of a Cat (1944),(no genres listed) +126965,Land (2010),Documentary +126967,Letter from Siberia (1957),(no genres listed) +126969,Babylon XX (1979),Drama +126971,Carts of Darkness (2008),Documentary +126973,Soundtracker (2010),(no genres listed) +126975,Kamome Diner (2006),(no genres listed) +126977,Gerhard Richter Painting (2012),Documentary +126979,Dream Land (2004),(no genres listed) +126981,The Wayward Girl (1959),Drama +126983,City Zero (1989),Comedy|Drama|Sci-Fi +126985,Remonstrance (1972),(no genres listed) +126987,Bells from the Deep (1993),Documentary +126989,The Gardener (1912),(no genres listed) +126991,The Sea Vultures (1915),Drama +126993,The Girl from the Marsh Croft (1917),(no genres listed) +126995,Karin Daughter of Ingmar (1920),(no genres listed) +126997,The Monastery of Sendomir (1920),Drama +126999,1000 Journals (2007),(no genres listed) +127001,Pan (1995),Drama +127003,Documentarian (2013),(no genres listed) +127005,A Year Along the Abandoned Road,(no genres listed) +127007,The Shoe (1998),(no genres listed) +127009,Night Editor (1946),Drama +127011,Under the Flag of the Rising Sun (1972),Drama|Mystery|War +127013,The Devil Thumbs a Ride (1947),Drama|Film-Noir +127015,The Man Who Lived Again (1936),Horror|Sci-Fi +127017,The Man They Could Not Hang (1939),Crime|Horror|Sci-Fi +127019,Line of Sight (2012),Documentary +127021,Rewind This! (2013),Documentary +127025,Josephine (2013),Comedy|Romance +127027,The Land Unknown (1957),Adventure|Fantasy|Sci-Fi +127029,Crazy Thunder Road (1980),Action|Sci-Fi +127031,Pizzas (2012),Drama +127033,"Mother, I Love You (2013)",Drama +127035,Dream Team 1935 (2012),Comedy|Drama +127038,Matthew's Days (1968),Drama +127040,Fantomas (Fantômas) (1964),Adventure|Comedy|Crime|Fantasy +127042,Fantomas Unleashed (Fantômas se déchaîne) (1965),Adventure|Comedy|Crime|Fantasy +127044,Fantomas vs. Scotland Yard (Fantômas contre Scotland Yard) (1967),Adventure|Comedy|Crime|Fantasy +127046,Pursuit to Algiers (1945),Adventure|Crime|Mystery|Romance +127048,The Radio Pirates (2007),Children|Comedy +127050,Megacities (1998),Documentary +127052,Operation 'Y' & Other Shurik's Adventures (1965),Comedy|Crime|Romance +127054,Gertie the Dinosaur (1914),Animation|Children|Comedy +127060,"Blood, Sweat + Vinyl: DIY in the 21st Century (2011)",Documentary +127062,The Lumière Brothers' First Films (1996),Documentary +127064,Amador (2010),Drama +127066,Art and Craft (2014),Documentary +127068,The Castle of Fu Manchu (1969),Action|Crime|Horror +127070,The Vengeance of Fu Manchu (1967),Action|Crime|Drama|Horror +127072,Lightning Bolt: The Power of Salad (2002),Documentary +127074,Fuck Up (2012),Comedy|Crime|Drama +127076,Defenders of Riga (2007),Action|Drama|War +127078,Gulf Stream Under the Iceberg (2012),Drama|Fantasy +127080,The Diary of Preston Plummer (2012),Drama|Romance +127082,Oxygen (2009),Drama|Musical +127084,Suicide Room (2011),Drama|Thriller +127088,Suburban Gothic (2014),Comedy|Horror +127090,The Killing Jar (2010),Drama|Thriller +127092,The Kiss of Her Flesh (1968),Horror|Thriller +127094,Kolka Cool (2011),Comedy|Drama +127096,Project Almanac (2015),Sci-Fi|Thriller +127098,Louis C.K.: Live at The Comedy Store (2015),Comedy +127100,Heavy Weather (1995),Comedy +127102,The First Men in the Moon (2010),Sci-Fi +127108,Brooklyn (2015),Drama|Romance +127110,Digging for Fire (2015),Drama +127112,Don Verdean (2015),Comedy +127114,The End of the Tour (2015),Drama +127116,Experimenter (2015),Drama +127118,I Am Michael (2015),Drama +127120,Lila & Eve (2015),Drama|Thriller +127122,Last Days in the Desert (2015),Adventure|Drama +127124,I'll See You in My Dreams (2015),Comedy|Drama +127126,Seoul Searching (2015),Comedy|Drama +127128,Mississippi Grind (2015),Drama +127130,Mistress America (2015),Comedy +127132,Zipper (2015),Drama|Thriller +127134,A Walk in the Woods (2015),Adventure|Comedy|Drama +127136,True Story (2015),Drama|Mystery|Thriller +127138,Ten Thousand Saints (2015),Comedy|Drama +127140,Sleeping with Other People (2015),Comedy|Drama|Romance +127142,Beaver Trilogy Part IV (2015),Documentary +127144,Drunk Stoned Brilliant Dead: The Story of the National Lampoon (2015),Comedy|Documentary +127146,Kurt Cobain: Montage of Heck (2015),Documentary +127148,The Hunting Ground (2015),Documentary +127150,Fresh Dressed (2015),Documentary +127152,Going Clear: Scientology and the Prison of Belief (2015),Documentary +127154,The Mask You Live In (2015),Documentary +127156,Prophet's Prey (2015),Crime|Documentary +127158,Tig (2015),Documentary +127160,In Football We Trust (2015),Documentary +127162,Most Likely to Succeed (2015),Documentary|Drama +127164,"What Happened, Miss Simone? (2015)",Documentary +127168,Life May Be (2014),Documentary +127170,Here be Dragons (2013),Documentary +127172,A Story of Children and Film (2013),Documentary +127174,What is This Film Called Love? (2012),Documentary +127176,The First Movie (2009),Documentary +127178,99 Homes (2014),Drama +127180,"Story of Film: An Odyssey, The (2011)",Documentary +127182,Aloft (2014),Drama +127184,Eden (2014),Drama +127186,Girlhood (2014),Drama +127188,Advantageous (2015),Children|Drama|Sci-Fi +127192,The Bronze (2015),Comedy|Drama +127194,The D Train (2015),Comedy +127196,The Diary of a Teenage Girl (2015),Drama +127198,Dope (2015),Comedy|Drama +127200,I Smile Back (2015),Drama +127202,Me and Earl and the Dying Girl (2015),Drama +127204,The Overnight (2015),Comedy +127206,"People, Places, Things (2015)",Comedy +127208,Results (2015),Comedy|Romance +127210,Songs My Brothers Taught Me (2015),Drama +127212,The Stanford Prison Experiment (2015),Drama|Thriller +127214,"Stockholm, Pennsylvania (2015)",Drama|Thriller +127216,Unexpected (2015),Comedy|Drama +127218,Z for Zachariah (2015),Sci-Fi +127220,The Student (1988),Comedy|Romance +127222,Nothing's All Bad (2010),Drama +127224,Northwest (2013),Action|Crime|Drama +127226,Stations of the Cross (2014),Drama +127228,The Referees (2009),Documentary +127230,The World Forgotten (2011),Adventure|Documentary +127232,The Referee (2013),Comedy +127234,Reality (2012),Comedy|Drama +127236,Amnèsia (2002),Comedy|Crime|Drama +127238,Three-Step Dance (2003),Drama +127240,Pretty Butterflies (2012),Drama +127242,Dangerous Liaisons (2003),Drama|Romance +127244,My Sweet Pepper Land (2013),Drama +127246,Act of Aggression (1975),Crime|Drama +127248,The Auction (2013),Drama +127252,The Veil of Twilight (2014),Crime|Fantasy|Mystery +127254,Inbetween Worlds (2014),Drama +127256,The Old Gun (1975),Drama|Thriller|War +127258,The Passerby (1982),Drama +127260,The Things of Life (1970),Drama|Romance +127262,The Count of Monte Cristo (1954),Adventure|Drama|Romance +127264,The Hunchback of Paris (1959),Action|Adventure +127266,In the Basement (2014),Documentary +127268,Project Wild Thing (2013),Adventure|Children|Documentary|Drama +127270,Trojan Eddie (1996),Crime|Drama|Romance +127272,Nobody Knows Anything! (2003),Comedy +127274,Ice Men (2004),Drama +127276,The Invitation (2003),Drama|Horror|Thriller +127278,When the Bough Breaks (1994),Drama|Thriller +127280,Innocent Lies (1995),Drama|Mystery|Thriller +127282,Suppose They Gave a War and Nobody Came? (1970),Comedy|Drama +127286,Mentor (2006),Drama +127288,Neverwhere (1996),Drama|Fantasy +127292,Zenith (2010),Sci-Fi|Thriller +127294,Estomago: A Gastronomic Story (2007),Drama +127296,Suing the Devil (2011),Comedy|Drama|Thriller +127298,A Pigeon Sat on a Branch Reflecting on Existence (2014),Comedy|Drama +127302,Nine Miles Down (2009),Horror|Mystery|Thriller +127305,Miss Julie (2014),Drama +127307,All Together (2011),Comedy|Drama +127309,Teen Spirit (2011),Comedy|Drama|Fantasy +127311,The Forbidden Room (2015),Comedy|Drama|Mystery|Romance +127313,Evilenko (2004),Crime|Horror|Thriller +127315,Alien Outpost (2014),Action|Sci-Fi|Thriller +127317,Foreign Body (2014),Drama +127319,The Loft (2014),Thriller +127321,[REC] 4: Apocalypse (2014),Horror|Thriller +127323,Vice (2015),Action|Adventure|Sci-Fi|Thriller +127325,The Guard from the Underground (1992),Crime|Drama|Horror|Thriller +127327,Khan Kluay (2006),Adventure|Animation|Children +127329,A House is Not a Home (1964),Drama +127331,The Well (1951),Drama|Film-Noir|Thriller +127333,Wicked Woman (1953),Drama|Film-Noir +127335,House of Numbers (1957),Crime|Drama|Film-Noir +127337,The Caper of the Golden Bulls (1967),Action|Comedy +127339,Coward of the County (1981),Drama +127341,Longshot (2001),Action|Comedy|Crime|Drama|Romance|Thriller +127343,New Morals For Old (1932),Drama|Romance +127345,Rio Diablo (1993),Western +127347,Sporting Blood (1931),Drama|Romance +127371,Masai: The Rain Warriors (2004),Adventure|Drama +127390,Family Guy Presents: Blue Harvest (2007),Animation|Comedy +127419,Sanatorium (2013),Thriller +127433,High School Hellcats (1958),Crime|Drama +127441,Last Days in Vietnam (2014),Documentary|War +127443,Manakamana (2013),Documentary +127445,Saturday Night (2010),Documentary +127447,Delinquent School Girls (1975),Comedy|Drama +127449,Hippie Masala - Forever in India (2006),Documentary +127451,A Grain of Truth (2015),Thriller +127453,The Photographer (2014),Drama +127455,Down to Earth (1994),Drama +127484,Karen Cries on the Bus (2011),Drama +127494,Sofie (1992),Drama +127496,Kristin Lavransdatter (1995),Drama|Romance +127498,Private Confessions (1996),Drama +127565,Lost River (2014),Fantasy|Thriller +127567,Landscape Suicide (1987),Crime|Drama +127573,13 Lakes (2004),Documentary +127575,Ruhr (2009),Documentary +127577,Natural History (2014),Documentary +127579,Black Venus (2010),Drama +127581,Poetical Refugee (2000),Drama +127583,Chuck Norris vs Communism (2015),Documentary +127585,Fear Clinic (2014),Horror +127587,The Seven Males (1951),Comedy|Western +127590,The Devil with Seven Faces (1971),Mystery|Thriller +127592,Naked Angels (1969),Drama|Thriller +127594,The Ski Bum (1971),Drama +127600,Battletruck (1982),Action|Adventure|Sci-Fi +127606,The Questor Tapes (1974),Sci-Fi +127608,The UFO Incident (1975),Drama|Romance|Sci-Fi +127610,Average Italian (2015),Comedy +127614,Lure of the Sila (1949),Drama +127620,Torpedo Zone (1955),Action|Drama|Romance|War +127622,The House of Intrigue (1956),Drama|War +127626,Under Ten Flags (1960),Drama|War +127628,Chino (1973),Action|Drama|Western +127630,The Legend of Awesomest Maximus (2011),Action|Comedy +127632,The Shuttered Room (1967),Horror +127634,Sebastian (1968),Drama|Romance +127636,The Strange Affair (1968),Crime|Drama +127638,The People Next Door (1970),Drama +127640,I Start Counting (1970),Thriller +127642,Madame Sin (1972),Thriller +127644,The Trial of Lee Harvey Oswald (1977),Drama +127646,World War III (1982),Drama|Thriller +127650,Party Girl (2014),Drama +127652,We Are Young. We Are Strong. (2014),Drama +127654,Relationship Status: It's Complicated (2014),Comedy|Romance +127656,Mr. Kinky (1968),Comedy +127658,Calculator (2014),Sci-Fi +127660,The Bandit (1946),Crime|Drama +127665,Love in the City (1953),Drama|Romance +127667,Riviera (1954),Comedy|Drama +127669,Guendalina (1957),Comedy +127671,Tempest (1958),Adventure +127673,Sweet Deceptions (1960),Drama|Romance +127675,Letters of a Novice (1960),Drama +127677,Matchless (1967),Comedy|Sci-Fi|Thriller +127679,Fraulein Doktor (1969),Drama|Romance|War +127681,Come Have Coffee with Us (1970),Comedy +127685,Bambina (1974),Comedy|Drama|Romance +127688,The Cricket (1980),Drama +127690,The Bronte Sisters (1979),Drama +127692,Hotel America (1981),Drama|Romance +127695,I Don't Kiss (1991),Drama +127699,Unforgivable (2011),Drama +127701,In the Name of My Daughter (2014),Drama +127703,"Kiss Kiss, Kill Kill (1966)",Mystery +127705,"Death is Nimble, Death is Quick (1966)",Action|Adventure +127707,"So Darling, So Deadly (1966)",Adventure +127709,The Three Fantastic Supermen (1967),Action|Adventure|Fantasy|Sci-Fi +127713,Kill Panther Kill (1968),Action|Crime +127715,If You Meet Sartana Pray for Your Death (1968),Western +127717,Five for Hell (1969),Action|Drama|War +127721,Yeti: The Giant of the 20th Century (1977),Adventure|Fantasy +127724,The Retrieval (2013),Drama|Western +127726,Daughters of Satan (1972),Horror +127728,Back Soon (2007),Drama|Romance +127831,Tintin and I (2003),Documentary +127833,Reach Me (2014),Drama +127835,The Midnight Man (1974),Mystery +127837,Paz! (2002),Comedy +127839,Kiss of the Tarantula (1976),Horror +127841,The Christian Licorice Store (1971),Comedy|Drama +127843,Antarctica (1983),Adventure|Drama +127845,"Back to the Garden, Flower Power Comes Full Circle (2009)",Documentary +127847,In Search of Noah's Ark (1976),Children|Documentary +127849,The Lincoln Conspiracy (1977),Drama +127851,Incredible Rocky Mountain Race (1977),Drama +127857,What the Day Owes the Night (2012),Drama|Romance +127859,Scourge (2008),Horror|Mystery|Sci-Fi +127861,The Last Gladiators (2011),Documentary +127863,Project Viper (2002),Action|Horror|Sci-Fi|Thriller +127865,Gargoyle (2004),Action|Fantasy|Horror|Sci-Fi +127867,Hardwired (2009),Action|Sci-Fi +127869,Groom Lake (2002),Horror|Sci-Fi +127873,Jay Mohr: Funny for a Girl (2012),Comedy +127875,The Gold Spinners (2013),Documentary +127877,Kawa (2010),Drama +127879,Adjust Your Tracking (2013),Documentary +127881,Addicted to Plastic (2008),Documentary +127957,Min så kallade pappa (2014),(no genres listed) +127974,100 Bloody Acres (2012),Comedy|Horror +127987,The Father of a Soldier (1964),Drama|War +127989,Street Days (2010),Drama +127991,"Blue Mountains, or Unbelievable Story (1984)",(no genres listed) +127993,Evenings on a Farm near Dikanka (1961),Comedy|Fantasy|Romance +127995,The Dead Season (1968),Thriller|War +127997,Dauria (1972),Drama +127999,Letuchaya Mysh (1979),Comedy +128001,The Green Van (1983),Adventure|Comedy|Drama +128003,Fantômas: Juve Against Fantômas (1913),Crime|Drama +128005,Fantômas: The Dead Man Who Killed (1913),Crime|Drama +128007,Fantômas: Fantômas Against Fantômas (1914),Crime|Drama +128009,Fantômas: The False Magistrate (1914),Crime|Drama +128011,Symphony of Six Million (1932),Drama +128013,The Affairs Of Cellini (1934),Comedy|Drama +128015,Private Worlds (1935),(no genres listed) +128017,Unfinished Business (1941),Comedy|Romance +128019,Lady in a Jam (1942),Comedy|Romance +128021,Living in a Big Way (1947),Comedy +128023,Last of the Wild Horses (1948),Western +128025,Naked Gun (1956),Western +128027,"Go, Johnny, Go! (1959)",(no genres listed) +128029,Screwballs (1983),Comedy +128031,Loose Screws (1985),Comedy +128033,Recruits (1986),Action|Thriller +128035,Valet Girls (1987),Comedy +128037,State Park (1988),Comedy +128039,Screwball Hotel (1988),Comedy +128041,Spellcaster (1992),Horror|Mystery +128045,Reality Check (2002),Horror|Thriller +128047,Downtown: A Street Tale (2004),(no genres listed) +128049,The Glory Brigade (1953),War +128051,White Feather (1955),Action|Western +128053,Seven Cities Of Gold (1955),Adventure +128057,The Proud Ones (1956),Action|Western +128059,Guns of the Timberland (1960),Western +128065,The Cape Town Affair (1967),Action|Thriller +128067,"$1,000 on the Black (1966)",Western +128069,Sartana Does Not Forgive (1968),(no genres listed) +128071,Sartana the Gravedigger (1969),Mystery|Western +128075,One Damned Day at Dawn... Django Meets Sartana! (1970),Western +128077,"I Am Sartana, Trade Your Guns for a Coffin (1970)",(no genres listed) +128079,Sartana in the Valley of Death (1970),(no genres listed) +128081,"Have a Good Funeral, My Friend... Sartana Will Pay (1970)",Western +128083,Django and Sartana Are Coming... It's the End (1970),Western +128085,Light the Fuse... Sartana Is Coming (1970),Western +128087,Trinity and Sartana Are Coming (1972),Comedy|Western +128089,Kevin Hart: I'm a Grown Little Man (2009),Comedy +128091,Craig Ferguson: A Wee Bit o' Revolution (2009),Comedy +128093,"Bo Burnham: Words, Words, Words (2010)",Comedy +128095,Kathleen Madigan: Gone Madigan (2010),Comedy +128097,Jim Norton: American Degenerate (2013),Comedy +128099,Jim Jefferies: BARE (2014),Comedy +128101,Little Malcolm (1974),Comedy|Drama +128103,"Jim, the World's Greatest (1976)",Drama +128105,The Killer Must Kill Again (1975),Horror|Thriller +128107,Take All of Me (1978),Drama|Romance +128109,"Dr. Black, Mr. Hyde (1976)",Horror +128113,Finders Killers (1971),Western +128115,My Name is Texas Bill (1972),(no genres listed) +128119,Seven Savage Men (1975),Western +128127,Commandos (1968),Action|War +128129,The Dead Are Alive (1972),Horror|Mystery|Thriller +128131,The Castro's Abbess (1974),(no genres listed) +128133,Frankenstein all'italiana (1975),Comedy|Horror +128137,"You're Jinxed, Friend, You've Met Sacramento (1972)",(no genres listed) +128139,Four Gunmen of the Holy Trinity (1971),Western +128141,The New Kids (1985),Horror +128143,When Good Ghouls Go Bad (2001),Children|Comedy|Fantasy +128149,Not Safe for Work (2014),Thriller +128151,Il piccolo diavolo (1988),Comedy|Fantasy|Romance +128153,Killing Kennedy (2013),Drama +128155,The Last Days of Lehman Brothers (2009),Documentary|Drama +128157,People in Places (2013),Comedy|Drama +128159,A Little Sex (1982),Comedy|Romance +128161,Alacrán enamorado (2013),Drama|Thriller +128163,Anita (2009),Drama|Romance|Thriller +128165,Scooby-Doo in Arabian Nights (1994),Animation|Children +128167,Beer for My Horses (2008),Action|Comedy +128169,Beethoven's 3rd (2000),Children|Comedy +128171,Beethoven's 5th (2003),Adventure|Children|Comedy +128173,Beethoven's Big Break (2008),Children|Comedy +128175,Beethoven's Treasure Tail (2014),Action|Adventure|Children +128177,Beethoven's Christmas Adventure (2011),Children|Comedy +128179,City That Never Sleeps (1953),Crime|Drama +128181,Cody the Robosapien (2013),Adventure|Children|Drama|Sci-Fi +128183,Contest (2013),Children|Drama +128185,Far North (1988),Drama +128187,Freedom Song (2000),Drama +128189,Ricco (1973),Action|Crime|Drama|Thriller +128193,Greetings from Tim Buckley (2013),(no genres listed) +128195,Griffin and Phoenix (1976),Drama +128197,Hard Promises (1991),Comedy|Romance +128199,Harry & Son (1984),Drama +128201,Hercules (2005),Action|Adventure|Fantasy +128203,"Lightning, the White Stallion (1986)",Adventure|Children +128205,Little Monsters (2012),Children +128209,Madison Avenue (1962),Drama +128211,Pete's Meteor (2002),Drama +128213,One Man's Justice (1996),Action|Thriller +128215,Pulse (1988),Horror|Sci-Fi|Thriller +128219,Return to Macon County (1975),(no genres listed) +128221,Ride 'Em Cowboy (1942),Comedy|Western +128223,Roadhouse 66 (1985),Action|Comedy +128225,Angels Hard as They Come (1971),Action +128227,Shadow (2010),Horror|Thriller +128229,Shadow (1956),Action|Drama +128231,Shadow (1971),Comedy|Drama|Fantasy|Romance +128233,St. Louis Blues (1958),Drama +128235,Stormy Weather (1943),Comedy|Documentary|Drama +128237,Stormy Weather (2003),(no genres listed) +128239,The Adventures of Hercules (1985),Comedy|Fantasy +128241,The Borrowers (1973),Children|Fantasy +128243,Brothers Karamazov (1969),(no genres listed) +128245,Murder by Phone (1982),Horror|Mystery|Thriller +128247,The Corsican Brothers (1941),Adventure +128249,The Great Scout & Cathouse Thursday (1976),Action|Comedy|Western +128251,The Heavenly Kid (1985),Comedy|Fantasy|Romance +128253,The Maddening (1996),(no genres listed) +128255,The Plague (2006),Documentary|Horror|Thriller +128257,The Plague (1992),Action|Drama +128259,The Plague (2013),Documentary +128263,The Rosary Murders (1987),Crime|Drama|Mystery|Thriller +128265,The Stranger Wore a Gun (1953),Action|Western +128267,Three Many Weddings (2013),Comedy +128269,Tyler Perry's A Madea Christmas (2011),Comedy +128273,Inseparable (2011),Comedy|Drama|Mystery|Thriller +128275,Windrider (1986),Drama|Romance +128277,Break-in (1939),Comedy +128279,Sylvia and the Ghost (1946),Comedy|Fantasy|Romance +128281,Keep an Eye on Amelia (1949),Comedy +128283,The Red Inn (1951),Comedy|Crime +128287,The Red and the Black (1954),Drama +128289,Marguerite of the Night (1955),Drama|Fantasy +128291,Love is My Profession (1958),Crime|Drama|Romance +128293,The Green Mare (1959),Comedy +128295,The Count of Monte Cristo (1961),(no genres listed) +128297,The Oldest Profession (1967),Comedy|Drama +128299,Backroads (1977),Crime|Drama +128301,Jungle Fighters (1961),Drama|War +128303,Austin High (2011),Comedy +128305,They All Lie (2009),Drama +128308,The Princess of Egypt (2013),Drama +128316,"The Tree, the Mayor and the Mediatheque (1993)",Comedy +128318,Charlie Victor Romeo (2013),Documentary|Drama|Thriller +128320,Monty Python: Almost the Truth - Lawyers Cut (2009),Comedy|Documentary +128322,Super Duper Alice Cooper (2014),Documentary +128327,The Mayor of Casterbridge (2003),Drama +128356,Beck - Öga för öga (1998),(no genres listed) +128358,Uuno in Spain (1985),Comedy +128360,The Hateful Eight (2015),Western +128362,Burn Paris Burn (2009),Animation|Fantasy|Mystery +128364,Cover Me Babe (1970),Drama +128366,Patton Oswalt: Tragedy Plus Comedy Equals Time (2014),Comedy +128369,The Anderssons in Greece: All Inclusive (2012),Children|Comedy +128371,Pororo: The Racing Adventure (2013),Animation +128373,Halleluja to Vera Cruz (1973),(no genres listed) +128377,Five Women for the Killer (1974),Thriller +128379,Emergency Squad (1974),Action|Thriller +128381,Mark of the Cop (1975),Crime|Drama|Romance +128383,Mark Shoots First (1975),(no genres listed) +128385,La Legge Violenta Della Squadra Anticrimine (1976),Crime +128387,The Last Round (1976),Action|Thriller +128389,The .44 Specialist (1976),Action +128391,Destruction Force (1977),Crime +128393,Highway Racer (1977),(no genres listed) +128395,The Iron Commissioner (1978),(no genres listed) +128397,Magnum Cop (Poliziotto senza paura) (1978),Action|Crime|Thriller +128399,Un Poliziotto Scomodo (1978),Action|Crime|Thriller +128401,Hunted City (1979),(no genres listed) +128403,Speed Cross (1980),Action +128405,Speed Driver (1980),(no genres listed) +128407,Mondo Cane Oggi (1985),Documentary +128413,The Black Cobra (1987),Action|Crime +128417,Arabella: Black Angel (1989),Crime +128421,Balkan Runner (1994),(no genres listed) +128423,No One Would Tell (1996),Crime|Drama +128425,Stray Dogs (2014),Drama +128427,Super Bitch (1973),Action +128429,What Have You Done to Solange? (1972),Crime +128431,Blood Story (1972),(no genres listed) +128433,Goodbye and Amen (1978),(no genres listed) +128435,A Man on His Knees (1979),Thriller +128437,L'avvertimento (1980),Crime +128439,Point and Shoot (2014),Documentary +128441,Sea Fog (2014),Drama +128443,La petite reine (2014),Drama +128445,"Legend of Lizzie Borden, The (1975)",Drama +128447,Little Accidents (2014),Drama +128468,The Red Nights of the Gestapo (1977),Drama|Thriller|War +128470,Processo per direttissima (1976),Crime|Drama +128476,Counselor at Crime (1973),Crime +128478,A Christmas Kiss (2011),Romance +128480,Eurocrime! The Italian Cop and Gangster Films That Ruled the '70s (2012),(no genres listed) +128482,7 Hours of Violence (1973),Action +128484,Requiem per un agente segreto (1966),Action|Crime|Mystery|Thriller +128488,Wild Card (2015),Action|Crime|Drama|Thriller +128490,Flow (2014),Drama +128492,Agent 3S3: Passport to Hell (1965),(no genres listed) +128494,L'amore Difficile (1962),Comedy +128496,"Agent 3S3, Massacre in the Sun (1966)",Crime +128498,Devil in the Brain (1972),(no genres listed) +128500,La tigre è ancora viva: Sandokan alla riscossa! (1977),(no genres listed) +128504,Lasa y Zabala (2014),(no genres listed) +128506,Rent-a-Cat (2012),Comedy|Drama +128508,Valley Of Flowers (2006),Adventure|Drama|Romance +128510,Attila Marcel (2013),Comedy|Drama +128512,Paper Towns (2015),Drama|Mystery|Romance +128514,We Cause Scenes (2014),(no genres listed) +128516,Sacred Heart (2005),(no genres listed) +128518,The Wonders (2014),Drama +128520,The Wedding Ringer (2015),Comedy +128522,Absence of the Good (1999),Thriller +128526,Nails (1992),Thriller +128528,Scam (1993),Crime|Drama +128530,Marilyn: The Untold Story (1980),Documentary +128534,Naan Kadavul (2009),Action|Drama|Mystery +128536,Üvegtigris (2001),Comedy +128538,My Mistress (2014),Drama|Romance +128540,The Gruffalo's Child (2011),Adventure|Animation|Children|Fantasy +128542,Wyrmwood (2015),Action|Horror|Sci-Fi +128544,Hits (2014),(no genres listed) +128546,Brothers: The Return (2006),Crime|Drama|Thriller +128548,Sällskapsresan II - Snowroller (1985),Comedy +128550,SOS - en segelsällskapsresa (1988),Comedy +128552,Jönssonligan - Den perfekta stöten (2015),Action|Adventure|Comedy +128554,Ego (2013),Drama +128556,Jönssonligan får guldfeber (1984),Comedy +128558,Jönssonligan dyker upp igen (1986),Comedy +128560,Jönssonligan på Mallorca (1989),Comedy +128562,Jönssonligan & den svarta diamanten (1992),Comedy +128564,Jönssonligans största kupp (1995),Comedy|Crime +128566,Jönssonligan spelar högt (2000),Comedy +128568,Summer House (2013),Drama +128570,Alla älskar Alice (2002),(no genres listed) +128572,Nils Karlsson Pyssling (1990),Children +128574,Studentfesten (2013),Comedy +128576,Kvarteret Skatan reser till Laholm (2012),Comedy +128578,Once in a Lifetime (2000),Comedy +128580,Rånarna (2003),Action|Crime|Thriller +128582,Kommissarie Späck (2010),Comedy +128586,10 000 timmar (2014),Comedy +128588,Lilla Jönssonligan och Cornflakeskuppen (1996),Children|Comedy +128590,Lilla Jönssonligan på styva linan (1997),(no genres listed) +128592,The Boy Next Door (2015),Mystery|Thriller +128594,Boy Meets Girl (2015),Comedy|Drama|Romance +128596,Let My Puppets Come (1976),Comedy +128598,The Adventure of Faustus Bidgood (1986),Comedy +128600,John Doe: Vigilante (2014),Crime|Thriller +128601,Hearty Paws (2006),Adventure|Drama +128604,Knight of Cups (2015),Drama +128606,45 Years (2015),Drama +128608,Diary of a Chambermaid (2015),Drama +128610,Ixcanul Volcano (2015),(no genres listed) +128612,Body/Cialo,Comedy|Drama|Mystery +128614,Nobody Wants the Night (2015),Drama +128616,As We Were Dreaming (2015),(no genres listed) +128618,Cloud 9 (2008),Drama|Romance +128620,Victoria (2015),Crime|Drama|Romance +128622,Heavenly Forest (2006),Drama|Romance +128624,Petting Zoo (2015),(no genres listed) +128626,The Golden Dream (2013),Drama +128628,Ainoat Oikeat (2013),Comedy +128630,Welcome Home Brother Charles (1975),Action|Thriller +128632,Home Sweet Hell (2015),Comedy|Drama +128634,Invisible Ghost (1941),Action|Horror|Mystery|Thriller +128636,Bar 20 (1943),Western +128642,Everybody Wins (1990),Drama|Mystery|Thriller +128644,General Spanky (1936),(no genres listed) +128648,Jamie Marks Is Dead (2014),Drama|Thriller +128650,Night Train to Paris (1964),Drama|Thriller +128654,Saddle Tramp (1950),Western +128656,Slam Dance (1987),Thriller +128658,The Lost Tribe (1949),Adventure +128661,The Man Who Wouldn't Die (1994),Crime|Drama|Thriller +128663,The Man Who Wouldn't Die (1942),Mystery +128665,Shepherd (1999),Sci-Fi +128667,Wiseguy (1996),(no genres listed) +128669,Wild Geese II (1985),Action +128671,Timbuktu (2014),Drama +128673,Casting Couch (2013),(no genres listed) +128675,Hollow Point (1996),Action|Comedy|Thriller +128677,Zeder (1983),Horror +128679,The Year Without a Santa Claus (1974),Animation|Children +128681,From Morn to Midnight (Von morgens bis Mitternacht) (1922),Crime|Drama +128684,Artifact (2012),Documentary +128686,Sputnik (2013),(no genres listed) +128688,Kolmistaan (2008),Drama|Romance +128690,Adult Camp (2015),Comedy +128693,Expecting a Miracle (2009),Drama +128695,The Dark Valley (2014),Western +128697,The Maids (1975),Drama +128699,The Virgin and the Gypsy (1970),Drama|Romance +128701,Priest of Love (1981),Drama +128703,Standing Ovation (2010),Children|Comedy +128705,Grizzly Falls (1999),(no genres listed) +128709,The Tender Warrior (1971),Adventure +128711,Green Ice (1981),Adventure|Romance +128713,Waltz Across Texas (1982),Romance +128715,Eloise at the Plaza (2003),Children|Comedy|Mystery +128717,One Last Hug (2014),Documentary +128719,Two Men in Town (2014),Crime|Drama +128721,Vesna va veloce (1996),Drama +128723,James Dean (2001),Drama +128725,Eloise at Christmastime (2003),Children|Comedy|Drama +128727,Bizarre (2015),(no genres listed) +128732,The Cop (1970),Crime|Thriller +128734,Polskie gówno,Comedy|Musical +128736,I'm Here (2010),Drama +128738,Rigoletto (1993),Drama +128740,Closure (2013),Documentary +128742,La Tribu (1991),(no genres listed) +128748,Blue Hell (1986),(no genres listed) +128750,"Spy, Stand Up (1982)",Thriller +128752,The Boy Soldier (1981),(no genres listed) +128754,La clé sur la porte (1978),(no genres listed) +128756,The Purple Taxi (1977),Drama +128758,Judge Fayard Called the Sheriff (1977),Crime|Drama +128760,Mad Enough to Kill (1975),(no genres listed) +128762,Rape of Innocence (1975),Drama|Thriller +128764,Nothing to Report (1973),War +128766,The Assassination (1972),(no genres listed) +128768,Angel's Leap (1971),Crime +128770,Cran d'arrêt (1970),Crime|Mystery|Thriller +128774,La baby sitter (1975),Crime|Thriller +128776,And Hope to Die (1972),Crime|Drama +128778,Schneller als das Auge (1990),(no genres listed) +128780,Tennessee Nights (1991),(no genres listed) +128782,Twelve Plus One (1969),Comedy +128784,The Blonde from Peking (1967),Comedy|Crime|Drama|Thriller +128786,Un milliard dans un billard (1965),Crime +128788,Joy House (1964),Drama|Romance +128790,The Day and the Hour (1964),(no genres listed) +128792,The Joy of Living (1961),Comedy +128794,This Angry Age (1957),(no genres listed) +128796,Monsieur Ripois (1954),(no genres listed) +128798,The Glass Castle (1950),Comedy|Drama +128800,The Walls of Malapaga (1949),(no genres listed) +128802,Mr. Orchid (1946),Drama|War +128804,Reformat the Planet (2008),Documentary +128806,Dixie Dynamite (1976),Action|Thriller +128810,Scandali nudi (1968),(no genres listed) +128812,Drew: The Man Behind the Poster (2013),Documentary +128816,Blood and Diamonds (1977),(no genres listed) +128818,Sesso in testa (1974),(no genres listed) +128820,Amarsi male (1969),(no genres listed) +128826,Nick the Sting (1976),Action|Crime|Thriller +128830,Plastic Bag (2009),Drama +128832,The Last Five Years (2014),Comedy|Drama|Musical|Romance +128834,Naked (2000),Comedy +128836,The Ghosts in Our Machine (2013),Documentary +128838,Crimson Peak (2015),Horror +128840,As Dreamers Do (2014),Children|Drama +128842,Dragonheart 3: The Sorcerer's Curse (2015),Action|Adventure|Fantasy +128848,The Big One: The Great Los Angeles Earthquake (1990),Drama +128850,Bride of Boogedy (1987),Adventure|Children|Drama|Western +128852,Chris Rock: Bigger & Blacker (1999),Comedy +128854,Chris Rock: Bring the Pain (1996),Comedy +128858,Wasteland (1960),Drama +128860,Beau Brummell: This Charming Man (2006),Drama +128862,Casanova (2005),Comedy|Drama|Romance +128864,Four Sahibjade (2014),Animation +128866,Queen of the Mountains (2014),Action|Drama +128868,The Chaos Class Failed the Class (1976),Comedy +128870,Yesterday (1988),Drama +128872,Love is God (2003),Adventure|Comedy|Drama +128874,The Moromete Family (1987),Drama +128876,"Saban, Son of Saban (1977)",Comedy|Crime|Mystery +128878,1 (2014),Action|Mystery|Romance +128880,Bey Yaar (2014),Children|Comedy|Drama +128882,The Outsider (1983),Action|Crime|Drama|Thriller +128884,Butterfly on the Shoulder (1978),Drama|Thriller +128886,Love at the Top (1974),Comedy|Drama +128888,Deported Women of the SS Special Section (1976),Drama|Thriller|War +128890,The Erotic Dreams of Cleopatra (1985),Romance +128892,Hanna D.: The Girl from Vondel Park (1984),Drama +128896,Women in Cell Block 7 (1973),Crime|Drama +128898,Life's a Breeze (2013),Comedy|Drama +128900,The Natural Love (1996),Documentary +128902,The Forgotten Space (2010),Documentary +128904,"Runner from Ravenshead, The (2010)",Children +128906,Plato's Academy (2009),Comedy|Drama +128908,Cloudburst (2011),Adventure|Comedy|Drama +128910,"One-Way Trip to Antibes, A (2011)",Drama +128912,Mike Birbiglia: My Girlfriend's Boyfriend (2013),Comedy +128914,Tom Segura: Completely Normal (2014),Comedy +128918,Mike Birbiglia: What I Should Have Said Was Nothing (2008),Comedy +128920,Heads (1994),Comedy|Crime +128922,Heckler (2007),Comedy|Documentary +128924,The 'High Sign' (1921),Comedy +128926,Shadow of the Hawk (1976),Adventure|Horror +128928,Wild Honey (1972),Drama +128930,"Ilsa, Harem Keeper of the Oil Sheiks (1976)",Action|Thriller +128936,Bare Knuckles (1977),Action|Adventure +128938,Signpost to Murder (1964),Crime|Thriller +128940,Snow Job (1972),Crime|Drama +128942,Hollywood Between Paranoia and Sci-Fi. The Power of Myth (2011),Documentary +128944,"Honey, We Shrunk Ourselves (1997)",Action|Adventure|Children|Comedy|Sci-Fi +128946,Hotel Hell Vacation (2010),Comedy +128948,"Standing Aside, Watching (2013)",Drama +128950,Kinetta (2005),Drama +128952,House IV (1992),Fantasy|Horror|Thriller +128954,I Love Sarah Jane (2008),Horror|Romance +128956,Last Five Days (1982),Drama +128958,Céleste (1980),Drama +128960,Sugarbaby (1985),Comedy +128962,Younger and Younger (1993),Comedy|Drama|Fantasy|Romance +128964,Mahler on the Couch (2010),Drama +128966,Gamera vs. Zigra (1971),Action|Adventure|Sci-Fi +128968,Stitch! The Movie (2003),Animation|Children|Comedy +128971,Phantom Pain (2009),Drama +128973,The Invisible Frame (2009),Documentary +128975,Hot Tub Time Machine 2 (2015),Comedy|Sci-Fi +128977,"She No Longer Talks, She Shoots (1972)",Comedy +128979,Spaghetti House (1982),Comedy +128981,Music for One Apartment and Six Drummers (2001),Comedy +128983,Woman (1948),Drama|Romance +128985,The Stone Council (2006),Adventure|Crime|Drama|Fantasy|Mystery|Thriller +128987,Lascars (2009),Animation|Comedy +128989,The French Kissers (2009),Comedy +128991,Johnny Express (2014),Animation|Comedy|Sci-Fi +128995,Calcutta (1947),Action|Crime|Drama|Film-Noir|Mystery|Romance|Thriller +128997,Night of the Devils (1972),Horror +128999,Mafia Killer (1973),Crime|Drama +129003,Up in the Wind (2013),Comedy +129005,Lovestruck: The Musical (2013),Comedy|Fantasy|Musical|Romance +129007,Organ (1996),Action|Drama|Horror|Thriller +129009,"Getting Go, the Go Doc Project (2013)",Drama +129013,Eddie Izzard: Circle (2002),Comedy +129015,Secrets of Eden (2012),Drama|Mystery|Thriller +129017,The Man in the Orange Jacket (2014),Horror|Mystery|Thriller +129019,Very Close Encounters of the Fourth Kind (1978),Comedy|Sci-Fi +129021,Perez. (2014),Crime|Drama|Thriller +129030,The Coven (2015),Fantasy|Horror +129032,Sense & Sensibility (2008),Drama|Romance +129034,Serving Life (2011),Documentary +129036,People of the Wind (1976),Documentary +129038,In the Eye of the Hurricane (1971),Action|Romance +129040,Superchick (1973),Action|Thriller +129042,A Reflection of Fear (1973),Horror +129044,"Ilsa, the Wicked Warden (1977)",Drama|Horror +129046,Love Letters of a Portuguese Nun (1977),Adventure|Drama|Horror +129048,Blue Rita (1977),Action|Thriller +129050,Doriana Gray (1976),Drama|Horror +129052,Women in Cellblock 9 (1978),(no genres listed) +129054,Love Camp (1977),Adventure|Drama|Thriller +129056,Lost and Found (1979),(no genres listed) +129058,Tragic Ceremony (1972),Horror +129060,The Iguana With The Tongue of Fire (1971),Drama|Horror|Mystery +129062,Delirium (1981),Horror|Mystery +129064,Joanna (2013),Documentary +129066,Our Curse (2014),Documentary +129068,Banklady (2013),Action|Crime|Drama|Romance +129070,Cover Girl Models (1975),Action|Drama +129072,L'unica legge in cui credo (1976),Thriller +129074,Diamonds (1975),Crime|Drama +129076,What Other Couples Do (2013),(no genres listed) +129078,Tokyo Fiancée (2015),(no genres listed) +129080,La montaña rusa (2012),Comedy|Romance +129183,The Song (2014),Drama|Romance +129185,The Testimony (1946),(no genres listed) +129187,Lost Youth (1948),(no genres listed) +129189,The Sea That Thinks (2000),(no genres listed) +129191,The Clowns (1970),Comedy|Drama|Fantasy|Sci-Fi +129193,Memphis (2013),(no genres listed) +129195,Cinderella (2011),Drama|Romance +129199,How to Fall in Love (2012),Comedy|Romance +129201,The Time Being (2012),Mystery +129203,Universal Soldier (1972),Action|Drama +129205,Sands of the Kalahari (1965),Action|Adventure +129207,De Sade (1969),Drama|Thriller +129211,Jet Storm (1959),(no genres listed) +129213,Sea Fury (1958),Adventure +129217,The Secret (1955),Crime|Drama +129219,The Limping Man (1953),Thriller +129221,Impulse (1954),Crime|Drama +129223,Tarzan's Savage Fury (1952),Action|Adventure +129225,The Argyle Secrets (1948),(no genres listed) +129227,Out of Nature (2014),Comedy|Drama +129229,Northmen - A Viking Saga (2014),Action|Adventure +129231,Reflections (2008),Crime|Thriller +129233,Believe Me (2014),Comedy|Drama +129235,Les Invisibles (2012),Documentary +129237,J.D.'s Revenge (1976),Action|Thriller +129239,The Monkey Hustle (1976),Action +129241,Tis kakomoiras (1963),Comedy +129243,Afstiros katallilo (2008),Comedy +129245,Loaf and Camouflage (1984),Comedy +129248,Exhibition (2013),Drama +129250,Superfast! (2015),(no genres listed) +129252,Les Mots bleus (2005),Drama|Romance +129256,Le cousin (1998),Crime +129262,Lest We Forget (1991),Documentary|Drama +129264,Nocturne Indien (1989),Drama +129268,Fort Saganne (1984),Drama|War +129270,Choice of Arms (1981),Crime|Drama +129272,The Threat (1977),Action|Crime|Thriller +129274,Police Python 357 (1976),Thriller +129276,France Inc. (1974),Crime|Drama|Sci-Fi|Thriller +129285,"Do-Deca-Pentathlon, The (2012)",Comedy +129289,Adios Carmen (2013),Drama +129291,Zero (2012),Drama +129293,Bandaged (2009),Thriller +129295,A Gun for Jennifer (1997),Crime|Drama|Thriller +129297,Vampire Killer Barbys (1996),Horror +129299,Effie Gray (2014),Drama +129301,Grigris (2013),Drama +129303,Camp (2013),Drama +129305,Pretty Things (2001),Drama +129307,Wu yen (2001),Comedy|Fantasy +129309,Sexual Predator (2001),Thriller +129311,Broken Bridges (2006),Drama +129313,Reality (2014),Comedy +129315,Purple Hearts (1984),Drama|Romance|War +129317,One on Top of the Other (1969),Mystery|Thriller +129321,Hell Behind the Bars (1984),Action +129323,Killer's Gold (1979),Thriller +129325,The Dove Must Not Fly (1970),Action|War +129333,Julia (2014),Horror|Thriller +129335,A Summer in La Goulette (1996),Comedy|Drama +129337,Schtonk! (1992),Comedy +129340,"Norte, the End of History (2013)",Drama +129342,Han Gong-ju (2013),Drama +129344,Hysteria: The Def Leppard Story (2001),Drama +129346,"Package, The (2012)",Action +129348,A Short History of Decay (2014),Comedy +129350,Hansel & Gretel Get Baked (2013),Comedy|Horror +129352,Freeheld (2007),Documentary +129354,Focus (2015),Comedy|Crime|Drama|Romance +129356,Scorchy (1976),Crime|Drama +129358,The Gamers (2002),Adventure|Comedy|Fantasy +129360,Garage Sale Mystery (2013),Drama +129362,Merchants of Doubt (2014),Documentary +129364,Every Thing Will Be Fine (2015),Drama +129366,The Adopted (2011),Drama +129368,History of Fear (2014),Drama|Mystery|Thriller +129370,"SpongeBob Movie: Sponge Out of Water, The (2015)",Adventure|Animation|Children|Comedy +129372,Demonic (2015),Horror|Thriller +129374,Annie (1976),Drama +129376,The Night Child (1975),Horror +129378,What Have They Done to Your Daughters? (1974),Mystery|Romance|Thriller +129380,Innocence and Desire (1974),Comedy|Romance +129382,Devil in the Flesh (1969),Drama +129384,A Black Veil for Lisa (1968),Thriller +129386,You Die... But I Live (1967),Action|Western +129389,Heavy Petting (1989),Documentary +129391,If You Don't Stop It... You'll Go Blind!!! (1975),Comedy +129395,Into the Deep (1994),Documentary|IMAX +129397,Marvel One-Shot: Item 47 (2012),Action|Fantasy|Sci-Fi +129401,Kevin Smith: Sold Out - A Threevening with Kevin Smith (2008),Comedy|Documentary +129403,Lady Dragon (1992),Action|Drama +129405,Tomie: Unlimited (2011),Horror +129407,Male Domination (2009),Documentary +129409,Foon (2005),Comedy +129411,The Confessions of Bernhard Goetz (1987),Crime|Documentary +129413,In the Name of the Law (1949),Drama +129415,The Magic Flute (2006),Drama|Musical|Romance +129417,Four Ways Out (1951),Crime|Drama +129419,The Facts of Murder (1959),Crime|Drama +129421,Jealousy (1953),Drama +129423,Pigs (1972),Horror +129425,"Throw Away Your Books, Rally in the Streets (1971)",Drama +129428,The Second Best Exotic Marigold Hotel (2015),Comedy|Drama +129430,Murder on Monday (1952),Crime|Drama|Mystery +129432,Love and Bullets (1979),Crime|Drama +129435,Piggy (2012),Thriller +129437,Ugly (2013),Mystery|Thriller +129441,Hank and Asha (2013),Comedy|Romance +129443,Thank You a Lot (2014),Drama +129445,The Party (1990),Drama +129447,Legalese (1998),Crime|Drama|Romance +129449,Little Sister (1992),Comedy +129451,Ingenious (2009),Comedy|Drama|Romance +129454,JFK: The Smoking Gun (2013),Documentary +129456,The Legend of Bloody Jack (2007),Horror +129458,The Unholy Four (1970),Western +129460,Charleston (1977),Comedy +129464,Trinity & Bambino: The Legend Lives On (1995),Western +129466,The Immortal Bachelor (1975),Comedy|Drama|Mystery +129470,"Certain, Very Certain, As a Matter of Fact... Probable (1969)",Comedy +129472,The Protagonists (1968),Drama +129474,Bachelor Party Vegas (2006),Adventure|Comedy +129476,A Fugitive from the Past (1965),Crime|Drama|Mystery +129478,A Blank on the Map (1971),Documentary +129480,Cool Breeze (1972),Action|Crime +129482,This is a Hijack (1973),Crime|Drama|Thriller +129484,Arabian Adventure (1979),Children|Fantasy|Sci-Fi +129486,Trial by Combat (1976),Action|Adventure|Comedy +129488,Fear in the Night (1972),Mystery|Thriller +129490,Twins of Evil (1971),Horror +129492,Incense for the Damned (1970),Horror +129500,The Hellfire Club (1961),Adventure +129502,Sword of Sherwood Forest (1960),Adventure|Fantasy +129504,Cone of Silence (1960),Drama +129506,Sherlock Holmes and the Masks of Death (1984),Mystery +129508,Violent Playground (1958),Drama +129510,Vuonna 85 (2013),Comedy +129512,Teen Spirit (2007),Comedy +129514,George Carlin: It's Bad for Ya! (2008),Comedy +129516,Poison (1951),Comedy +129518,Forgive Me (2006),Comedy +129520,Papa (2005),Comedy|Drama +129522,Letters from a Killer (1998),Crime|Drama|Mystery|Thriller +129524,Je m'appelle Elisabeth (2006),(no genres listed) +129526,The Color of Milk (2004),Comedy|Drama +129528,Repatriation (2006),Documentary +129530,Slingshot Hip Hop (2008),(no genres listed) +129532,Island (2011),Drama|Mystery|Thriller +129534,Parked (2010),Drama +129536,Code Name Coq Rouge (1989),(no genres listed) +129555,So Ends Our Night (1941),Drama|War +129640,66 Scenes From America (1982),Documentary +129642,Emma Mae (1976),Comedy|Drama|Romance +129644,Jimi Hendrix: Hear My Train A Comin' (2013),Documentary +129646,Kill a Rat (1977),Crime|Drama|Mystery +129651,The Third Reich: The Rise & Fall,(no genres listed) +129653,Ismael (2013),Drama +129655,A Nightingale Sang In Berkeley Square (1979),Action +129657,Tracers (2015),Action +129659,"McFarland, USA (2015)",Drama +129661,A Black Ribbon for Deborah (1974),(no genres listed) +129663,Scandalo in Famiglia (1976),(no genres listed) +129667,We Always Lie to Strangers (2013),(no genres listed) +129669,Kids for Cash (2014),Documentary|Thriller +129671,Bomber (2009),Comedy|Drama +129673,Missionary (2013),Drama|Thriller +129675,Wolf Totem (2015),Adventure +129679,Sister Emanuelle (Suor Emanuelle) (1977),Drama +129681,Legend of the Sea Wolf (1975),Adventure +129683,Lady Dynamite (1973),(no genres listed) +129685,"Love, Passion and Pleasure (1972)",Comedy +129687,Pray to Kill and Return Alive (1971),Action|Western +129689,Who Killed the Prosecutor and Why? (1972),(no genres listed) +129691,Hole in the Forehead (1968),Western +129695,Rome Against Rome (1964),Adventure|Fantasy|Horror +129697,La vendetta dei barbari,Action|Drama +129699,Arnold (1973),Comedy|Horror +129701,The Aztec Mummy Against the Humanoid Robot (1958),Adventure|Horror|Sci-Fi +129703,The Forgotten Woman (2008),Documentary +129705,My Own Man,(no genres listed) +129707,The Lazarus Effect (2015),Horror|Thriller +129709,The Walking Hills (1949),Western +129711,Too Many Ways to Be No. 1 (1997),Action|Comedy|Crime +129713,Assa (1987),Crime|Drama +129715,Los Flamencos (2013),Comedy +129717,My Best Friend's Wife (1998),Comedy +129719,Così è la vita (1998),Adventure|Comedy +129721,Chiedimi se sono felice (2000),Comedy|Drama +129723,Cose da pazzi (2005),(no genres listed) +129725,A Gunfight (1971),Western +129727,Vendetta (1971),Adventure|Comedy|Western +129729,Bad Man's River (1971),Comedy|Western +129731,The Fourth Victim (1971),Horror +129735,Golden Goddess of Rio Beni (1964),Adventure +129737,Unfinished Business (2015),Comedy +129739,Bogowie (2014),Drama +129741,Mutantes (2009),Documentary +129743,The Last Grenade (1970),Action|Drama|War +129745,Five to One (1963),Crime +129749,The Connection (2014),Action|Crime|Thriller +129751,The Beehive (1982),Drama +129753,Drango (1957),Drama|Western +129755,Unchained (1955),(no genres listed) +129759,The Children of Sanchez (1978),(no genres listed) +129763,Street People (1976),Action|Thriller +129765,Violence for Kicks (1979),(no genres listed) +129767,The Police Serve the Citizens? (1973),Action|Crime +129769,Covert Action (1978),(no genres listed) +129771,Jacky in the Kingdom of Women (Jacky au royaume des filles) (2014),Comedy +129773,Soulless (2012),Comedy|Drama +129775,Arc (2006),Drama|Mystery|Thriller +129777,Chronic Town (2010),Action|Drama|Thriller +129779,Ghost in the Shell Arise - Border 1: Ghost Pain (2013),Action|Animation|Sci-Fi +129781,About Alex (2014),Drama +129784,Xuxa in Crystal Moon (1990),Children|Comedy|Romance +129786,Dhobi Ghat (2011),Drama +129788,Raanjhanaa (2013),Drama|Romance +129790,Miss Susie Slagle's (1946),Drama +129792,Casbah (1948),Crime|Drama|Romance +129802,Tamango (1958),(no genres listed) +129812,New Scenes from America (2002),Documentary +129814,The Adventurers (1970),Action|Adventure|Drama +129816,The Voice of the Moon (1990),Adventure|Comedy|Drama +129818,Whitey: United States of America v. James J. Bulger (2014),Crime|Documentary +129820,Spare Parts (2015),Drama +129822,Bikes vs Cars (2015),Documentary +129824,Buffalo Rider (1978),Adventure|Western +129826,LEGO DC Comics Super Heroes: Justice League vs. Bizarro League (2015),Action|Adventure|Animation|Children +129828,Lotte and the Moonstone Secret (2011),Animation|Children +129830,Animals United (2011),Animation|Children|Comedy +129834,Tom and Jerry: The Lost Dragon (2014),Animation|Children|Comedy +129836,The Voyage Across the Impossible (1904),Adventure|Fantasy|Sci-Fi +129838,Capturing Mary (2007),(no genres listed) +129841,Floating Skyscrapers (2014),Drama|Romance +129843,Plastic Paradise: The Great Pacific Garbage Patch (2013),Documentary +129845,Falcon Rising (2014),Action|Adventure +129847,Somewhere Under the Broad Sky (1954),(no genres listed) +129849,Old Man Drinking a Glass of Beer (1898),(no genres listed) +129851,Dickson Greeting (1891),(no genres listed) +129853,To Write Love on Her Arms (2015),Drama +129855,Lights Out (2010),Drama|Mystery|Thriller +129857,Bright Days Ahead (2013),Drama|Romance +129859,Mardock Scramble: The Second Combustion (2011),Animation|Sci-Fi +129865,Hallucination Strip (1975),(no genres listed) +129867,Like Rabid Dogs (1976),(no genres listed) +129869,Snapshot of a Crime (1975),(no genres listed) +129871,"My Wife, A Body to Love (1973)",(no genres listed) +129873,Gardenia (1979),Crime +129875,Pigs with a P.38 (1978),(no genres listed) +129877,"Clap, You're Dead (1974)",(no genres listed) +129879,Orders Signed in White (1974),(no genres listed) +129881,Il cappotto di legno (1981),(no genres listed) +129883,Il fiore dai petali d'acciaio (1973),Thriller +129885,Le ultime ore di una vergine (1972),(no genres listed) +129887,Moving Alan,(no genres listed) +129889,Papusza (2013),Drama +129891,"The Weapon, The Hour, The Motive (1972)",Horror|Mystery|Thriller +129895,Sex of the Witch (1973),(no genres listed) +129897,The Return of the Exorcist (1975),Horror +129899,The Killers Are Our Guests (1974),Crime|Thriller +129903,Polk County Pot Plane (1977),Action +129905,The Floating Castle (2012),Comedy|Drama +129907,Familiar Ground (2011),Comedy +129909,Club Sandwich (2013),Comedy +129911,Playing (2007),Documentary +129913,Rings (2005),Horror|Thriller +129915,Butterflies Have No Memories (2009),(no genres listed) +129917,The Dependent (1969),(no genres listed) +129919,Nazareno Cruz and the Wolf (1975),(no genres listed) +129921,Bestiaire (2012),Documentary +129923,Carcasses (2009),Documentary +129925,El Escarabajo de Oro (2014),(no genres listed) +129927,Independencia (2009),Drama +129929,Autohystoria (2007),(no genres listed) +129931,La Morte Rouge (2006),(no genres listed) +129933,Sacro GRA (2013),Documentary +129935,Gimme the Loot (2013),Drama +129937,Run All Night (2015),Action|Crime|Drama|Thriller +129939,Event 15 (2013),Mystery|Thriller +129941,The Killers (1956),Crime +129943,Asthma (2014),(no genres listed) +129945,Refuge (2012),Comedy|Drama|Romance +129947,Melody (1971),Drama|Romance +129949,Assassin (2015),Crime|Thriller +129951,Rich Hill (2014),Documentary +129953,Crazy Joe (1974),Crime|Drama +129958,Our Vinyl Weighs a Ton: This Is Stones Throw Records (2013),Documentary +129970,The Huns (1960),Action|Adventure +129972,Giulio Cesare contro i pirati (1962),Adventure +129978,Mission Bloody Mary (1965),Adventure +129980,Password: Uccidete agente Gordon (1966),(no genres listed) +129984,"Fuller Report, Base Stockholm (1968)",Thriller +129986,The incredible Paris Incident (1967),(no genres listed) +129988,Tiffany Memorandum (1967),Action|Romance +129990,Sergeant Klems (1971),Adventure +129992,All the Brothers of the West Support Their Father (1972),Western +129994,The Sinful Nuns of Saint Valentine (1974),Horror +129996,One Man Against the Organization (1975),(no genres listed) +130000,Broken Blossoms (1936),Drama|Romance +130002,Counsel for Crime (1937),Crime|Drama|Romance +130004,Girls' School (1938),Comedy +130006,Let Us Live (1939),Crime|Drama +130008,Rio (1939),Crime +130010,Escape to Glory (1940),Drama +130014,Tonight We Raid Calais (1943),Drama +130016,"Lodger, The (1944)",Crime|Horror|Mystery|Thriller +130018,Guest in the House (1944),Drama|Film-Noir +130020,Three Little Girls in Blue (1946),Musical +130022,Singapore (1947),Action|Adventure|Crime|Film-Noir|Romance +130024,Siren of Atlantis (1949),Adventure +130026,Face to Face (1952),Drama|Western +130028,The Diamond Queen (1953),Adventure|Romance +130034,Stand by Me Doraemon (2014),Animation|Children|Drama|Fantasy +130036,Saints and Soldiers: The Void (2014),Action|Drama|War +130038,Little Deaths (2011),Horror +130040,Mo (1983),Horror +130042,Found (2012),Drama|Horror|Thriller +130044,Late Phases (2014),Drama|Horror +130046,Thanatomorphose (2012),Horror +130048,Dracula in Pakistan (1967),Crime|Drama|Horror +130050,Digging Up the Marrow (2014),Drama|Fantasy|Horror|Mystery|Thriller +130052,Clown (2014),Drama|Horror +130054,Pauline détective (2012),Comedy +130056,Kingdom of Shadows (2015),Documentary +130058,Des roses en hiver (2014),Drama +130060,Des fleurs pour Algernon (2006),(no genres listed) +130062,Darling (2007),Drama +130064,Memory Lane (2010),Drama +130066,Camille Rewinds (2012),Comedy|Romance +130069,Road Hard (2015),Comedy +130071,Nymph (2014),Fantasy|Horror +130073,Cinderella (2015),Children|Drama|Fantasy|Romance +130075,Frozen Fever (2015),Adventure|Animation +130077,Lost for Life (2013),Crime|Documentary +130079,Enquiring Minds: The Untold Story of the Man Behind the National Enquirer (2014),Documentary +130081,Our Summer in Provence (2014),Comedy|Drama +130083,Kidnapping Mr. Heineken (2015),Action|Crime|Drama|Thriller +130085,The Drop Box (2014),Documentary +130087,The Cobbler (2015),Comedy|Drama|Fantasy +130089,Crazy Beautiful You (2015),(no genres listed) +130091,California Dreaming (1979),Comedy|Drama|Romance +130093,"A Girl, A Guy, And A Gob (1941)",(no genres listed) +130095,Andy Hardy Gets Spring Fever (1939),Comedy|Romance +130097,The Angels Wash Their Faces (1939),Drama|Romance +130099,Babe Ruth (1998),(no genres listed) +130101,Beloved Enemy (1936),Drama|Romance +130103,Blue Collar Comedy Tour: One for the Road (2006),Comedy +130105,Blue Collar Comedy: The Next Generation (2007),Comedy +130107,Carry On Cowboy (1966),Comedy|Western +130109,Chubasco (1968),Drama +130111,Chuka (1967),Action|Drama|Western +130114,Do Me a Favor (1997),Crime|Drama +130116,Dead End (2012),Thriller +130118,A Little Thing Called Murder (2006),Comedy|Drama +130120,Mr. Ricco (1975),Action|Comedy|Thriller +130128,Dead on Course (1952),Crime|Drama|Thriller +130130,Not So Dumb (1930),Comedy +130132,Eddie Macon's Run (1983),Action|Adventure|Crime|Drama|Thriller +130138,Frankenhood (2009),Comedy|Horror +130140,Gidget Goes Hawaiian (1961),Comedy|Romance +130142,Half Angel (1951),Comedy +130144,Les grandes chaleurs (2009),(no genres listed) +130146,Heat Wave (2011),Drama +130148,Heatwave (1982),Drama +130150,Heat Wave (1990),Drama +130152,The House Across the Lake (1954),Drama|Thriller +130154,Heat Wave (1991),Drama +130156,Heaven Is a Playground (1991),Drama +130163,Angel's Fall (2005),Drama +130165,Hooray for Love (1935),(no genres listed) +130170,Illegally Yours (1988),Comedy|Romance +130173,Jailbait! (2000),Comedy|Drama +130176,Jailbait (2004),Drama +130178,Juggernaut (1936),(no genres listed) +130180,Just Off Broadway (1942),Mystery +130182,Рицар без броня (1966),Children|Drama +130185,Lady from Louisiana (1941),Drama +130192,"Morgan, the Pirate (1960)",Adventure +130194,My Teacher's Wife (1999),Comedy +130196,The Neighbors (2012),Thriller +130198,Oliver's Story (1978),Drama +130200,Operation Bikini (1963),Drama|War +130202,Five Days (1954),Crime|Thriller +130204,Patty Hearst (1988),(no genres listed) +130206,Picture Mommy Dead (1966),Horror +130208,Platoon Leader (1988),Drama|War +130210,Push (2006),Drama +130213,Scandalous (1984),Comedy +130217,Shadow on the Wall (1950),Crime|Drama|Thriller +130219,The Dark Knight (2011),Action|Crime|Drama|Thriller +130229,Spring Reunion (1957),Drama +130231,Standoff (1998),(no genres listed) +130233,Take Care (2014),Comedy|Drama|Romance +130235,With or Without You (1999),(no genres listed) +130237,Wild Thing (1987),(no genres listed) +130239,Warriors Five (1962),(no genres listed) +130241,Walking on Air (1936),Comedy +130243,The Texas Rangers (1936),Adventure|Western +130247,That Gal... Who Was in That Thing: That Guy 2 (2015),Documentary +130250,The Case of the Stuttering Bishop (1937),Crime|Drama +130252,The Case of the Velvet Claws (1936),(no genres listed) +130254,Monte Cristo (1922),Drama|Romance +130259,The Discoverers (2014),(no genres listed) +130261,The Gambler and the Lady (1952),Thriller +130263,The Green Promise (1949),Drama +130265,The Half-Breed (1952),Western +130267,"Half-Breed, The (1916)",Drama|Western +130269,The Hollow (2004),Horror +130271,Don't Let Him In (2011),Horror|Thriller +130273,The Lawless Nineties (1936),Western +130275,The Life and Mind of Mark DeFriest (2014),Animation|Crime|Documentary|Drama +130277,They Rode West (1954),Action +130280,Thunder Alley (1967),(no genres listed) +130284,Big and Little Wong Tin Bar (1962),Action +130288,Two of a Kind (1951),Crime +130290,Hotel (2013),Drama +130292,Alphabet (2013),Documentary +130294,Drevo (2014),Drama +130296,A Fight For (2014),(no genres listed) +130298,Pot v raj (2014),(no genres listed) +130320,Dyke Hard (2014),Comedy +130322,Zone 261,Horror +130324,The Strength of Water (2009),(no genres listed) +130326,Other Girls (2015),Drama +130328,A Bright Shining Lie (1998),Drama|War +130330,The Gypsy (1975),Crime|Drama +130332,Grizzly (1976),Horror +130334,Quand la ville s'éveille (1975),Crime +130336,Angels' Wild Women (1972),Action|Horror +130338,Silent Sonata (2011),Drama|Fantasy|War +130340,Wolfsburg (2003),Drama +130342,Ice Poison (2014),(no genres listed) +130344,Coast of Death (2013),Children|Documentary|Drama +130347,Bill Hicks: Sane Man (1989),Comedy +130349,The Harry Hill Movie (2013),Comedy +130351,The Wrecking Crew (2008),Documentary +130356,Tribulation (2000),Drama|Sci-Fi|Thriller +130364,Born Winner (1976),Crime +130366,The Cousin (1974),Comedy|Drama +130368,Woman Buried Alive (1973),Drama|Romance +130372,Who Saw Her Die? (1972),Horror|Mystery|Thriller +130374,India's Daughter (2015),Documentary +130376,Kill Speed (2010),Action|Crime|Thriller +130378,8 Minutes Idle (2014),Comedy +130380,Absolute Aggression (2004),Action|Sci-Fi|Thriller +130382,Mr. Pip (2012),Drama|War +130384,Mega Piranha (2010),Action|Adventure|Horror|Sci-Fi +130386,Men in White (1998),(no genres listed) +130388,Black Field (2009),Drama|Romance +130390,Contract Killers (2009),Action|Adventure|Thriller +130392,A Magnificent Haunting (2012),Drama +130394,The Mascot (1934),Animation +130396,The Suspended Step of the Stork (1991),Drama|Romance +130398,Transmorphers (2007),Action|Adventure|Sci-Fi +130400,Through the Forest (2005),Drama +130402,Cardcaptor Sakura: The Sealed Card (2000),Adventure|Animation|Comedy|Fantasy|Romance +130404,The Linguists (2008),Documentary +130406,Watch Me When I Kill (1977),Horror|Mystery|Thriller +130408,A Rumor of War (1980),Drama|War +130410,Foolin' Around (1980),(no genres listed) +130412,Trackdown (1976),Action|Drama +130414,Death Scream (1975),Crime|Drama +130416,Newman's Law (1974),Action|Crime +130418,The California Kid (1974),Action|Thriller +130420,Outrage (1973),Crime|Drama|Thriller +130422,Hell Is a City (1960),Crime|Thriller +130424,The Crown Jewels (2011),Drama|Fantasy|Romance +130426,Perfect Friday (1970),Comedy|Crime +130430,Three into Two Won't Go (1969),(no genres listed) +130432,Akenfield (1974),(no genres listed) +130434,Pieces Of Dreams (1970),Drama|Romance +130436,Devil's Angels (1967),Action +130440,The Time Guardian (1987),Sci-Fi +130442,Patrick (2013),Horror|Sci-Fi|Thriller +130444,Ruby Red (2013),Adventure|Children|Fantasy|Sci-Fi +130446,The Coconut Revolution (2000),(no genres listed) +130448,Poltergeist (2015),Horror|Thriller +130450,Pan (2015),Adventure|Children|Fantasy +130452,While We're Young (2014),Comedy|Drama +130454,Michael Laudrup - en Fodboldspiller,(no genres listed) +130456,Among the Living (1941),(no genres listed) +130458,The Pentagon Papers (2003),Drama|Thriller +130460,Summertime Killer (1973),Action|Crime +130462,The Boy (2015),Drama|Horror|Thriller +130464,Filip & Fredrik presenterar Trevligt folk (2015),Documentary +130468,The Circle (2015),Fantasy|Horror|Mystery +130472,Baby Snakes (1979),(no genres listed) +130474,Suite Française (2015),Drama|Romance|War +130476,The Concert for Bangladesh (1972),Documentary +130478,Kitchen in Paris (2014),Comedy +130480,I Walk Alone (1948),Action|Drama|Thriller +130482,Too Late for Tears (1949),Crime|Drama|Film-Noir|Mystery|Thriller +130484,Sitting Target (1972),Action|Crime +130488,The Infinite Man (2014),Comedy +130490,Insurgent (2015),Action|Sci-Fi|Thriller +130492,Dum Laga Ke Haisha (2015),Children|Comedy|Romance +130494,Simon & the Oaks (2011),Drama +130496,Big Game (2014),Action|Adventure +130498,La vérité si je mens ! (1997),Comedy +130500,Laissons Lucie faire ! (2000),(no genres listed) +130502,Venus & Fleur (2004),(no genres listed) +130504,Fear Over the City (1975),Action|Crime|Drama +130506,Berserk: The Golden Age Arc 2 - The Battle for Doldrey (2012),Action|Animation|Fantasy +130508,Berserk: The Golden Age Arc - The Egg of the King (2012),Action|Adventure|Animation|Fantasy|Horror +130510,Berserk: The Golden Age Arc 3 - Descent (2013),Action|Animation|Fantasy +130512,Hippocrates (2014),Comedy|Drama +130514,The Tenant of Wildfell Hall (1997),Drama +130516,Glowing Stars (2009),Drama +130518,The Amazing Screw-On Head (2006),Action|Adventure|Animation|Comedy|Sci-Fi +130520,Home (2015),Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi +130522,The Brave Little Toaster Goes to Mars (1998),Animation|Children +130524,Flying Home (2014),Romance +130526,The Detective 2 (2011),Action +130528,Henry VIII and His Six Wives (1972),Drama +130530,Thank You All Very Much (1969),Drama +130532,I giorni contati (1963),(no genres listed) +130534,And I Alone Survived (1978),Adventure +130536,The Intruders (1970),Western +130538,"Congratulations, It's a Boy! (1971)",Comedy +130540,Thief (1971),Crime|Drama +130542,Honky,Drama +130544,The Hunt for the Unicorn Killer (1999),Drama|Thriller +130548,Birds of Prey (1973),Action|Thriller +130552,Get Christie Love! (1974),(no genres listed) +130554,Where the Lilies Bloom (1974),Children|Drama|Romance +130556,Together Brothers (1974),Drama|Thriller +130558,Shark Kill (1976),(no genres listed) +130560,21 Hours at Munich (1976),Drama +130562,One in a Million: The Ron LeFlore Story (1978),Drama +130564,"Harry Tracy, Desperado (1982)",Action|Drama|Western +130566,Deadly Encounter (1982),Action|Drama|Thriller +130572,Secrets of a Married Man (1984),Drama +130574,Something Wicked (2014),Mystery|Thriller +130576,Midnight Special (2015),Drama|Sci-Fi +130578,"Gunman, The (2015)",Action|Thriller +130580,The Disappearance of Eleanor Rigby: Her (2013),Drama +130582,The Disappearance of Eleanor Rigby: Him (2013),Drama|Romance +130584,The Color of Time (2012),Drama|Romance +130586,Itinerary of a Spoiled Child (1988),Adventure|Drama +130588,Escobar: Paradise Lost (2014),Romance|Thriller +130590,The Love Rebellion (1967),Crime|Drama +130594,"To Ingrid, My Love, Lisa (1968)",Drama +130596,Joe Hill (1971),Drama +130600,Guess What We Learned in School Today? (1971),Comedy +130602,Cauldron of Blood (1970),Horror +130604,Maid in Sweden (1971),Drama +130608,The Corpse (1970),Horror|Thriller +130610,Crucible of Terror (1971),Drama|Horror +130612,Winter Comes Early (1971),Drama +130614,Goodbye Uncle Tom (1971),Drama +130618,Baby (2015),Action|Crime|Mystery|Thriller +130620,"Daddy, Darling (1970)",(no genres listed) +130622,The Circle (2014),Documentary|Drama +130624,Southern Baptist Sissies (2013),Drama +130626,Vengeance Can Wait (2010),Comedy|Drama|Romance +130628,Boys (2014),Drama +130630,Futuro Beach (2014),Drama +130632,Sal (2011),Documentary +130634,Furious 7 (2015),Action|Crime|Thriller +130636,Unfriended (2014),Horror|Mystery|Thriller +130638,Master of the Universe (2013),Documentary +130640,貞子3D (2012),Horror +130642,Backcountry (2014),Drama|Horror|Thriller +130644,The Garden of Sinners - Chapter 5: Paradox Paradigm (2008),Animation +130646,The No Mercy Man (1973),Action|Drama +130648,Au Pair Girls (1972),Comedy +130652,The Thunder Kick (1974),(no genres listed) +130654,The Blockhouse (1973),Drama|War +130656,The 21 Carat Snatch (1971),Crime +130660,The Happy Hooker (1975),Comedy|Drama|Romance +130664,Northville Cemetery Massacre (1976),Action|Crime|Drama +130666,"Little Girl, Big Tease (1976)",(no genres listed) +130668,Mako: The Jaws of Death (1976),Horror|Thriller +130670,Delta Force 3: The Killing Game (1991),Action|Adventure +130672,Slumber Party '57 (1976),(no genres listed) +130674,Schizoid (1980),Horror|Mystery +130676,The Ups and Downs of a Handyman (1976),Comedy +130678,Cherry Hill High (1977),Comedy +130680,Operation Thunderbolt (1977),Action|Drama|Thriller +130682,Muck (2015),Horror +130684,We Are Still Here (2015),Horror +130686,The Final Girls (2015),Comedy|Horror +130688,The Happy Hooker Goes To Washington (1977),Comedy +130690,Cheerleaders Beach Party (1978),(no genres listed) +130692,Sam's Song (1969),Drama +130694,Gas Pump Girls (1979),Comedy +130698,The Swap (1979),Crime|Drama +130702,The Godsend (1980),Horror|Thriller +130704,Hot T-Shirts (1980),Action +130706,Last Rites (1980),Horror +130708,The Happy Hooker Goes Hollywood (1980),Comedy +130716,Lunar Cop (1995),(no genres listed) +130720,Dutch Treat (1987),(no genres listed) +130722,Private Popsicle (1983),Comedy|Drama +130724,Hospital Massacre (1982),Horror|Thriller +130726,Hot Bubblegum (1981),Comedy|Drama|Romance +130728,Going Steady (1979),Comedy|Drama|Romance +130730,Lemon Popsicle (1978),Comedy|Drama|Romance +130732,Shablul (1971),(no genres listed) +130734,New Year's Evil (1980),Horror +130736,Body and Soul (1981),Drama +130738,A Man Called Sarge (1990),Comedy +130740,Keaton's Cop (1990),Crime +130744,"Nana, the True Key of Pleasure (1983)",Comedy|Drama +130746,Bolero (1984),Drama|Romance +130748,Ghosts Can't Do It (1989),Action|Comedy|Fantasy|Romance|Sci-Fi +130750,Fantasies (1981),Drama +130754,Nightmare in the Sun (1965),Crime|Drama +130756,Mercenary Fighters (1988),Action|Adventure|Drama +130758,Puss in Boots (1988),Children|Fantasy +130762,Robotech: The Untold Story (1986),Animation +130766,Roots of Evil (1992),Crime|Drama +130768,Chain of Command (2000),Action|Thriller +130770,Love Lies Bleeding (1999),(no genres listed) +130772,WindRunner (1994),Children|Drama|Fantasy +130776,Deadly Illusion (1987),(no genres listed) +130778,The Fruit Machine (1988),Drama +130780,The Ambassador (1985),Drama +130784,The Whisperer in Darkness (2011),Horror|Mystery|Sci-Fi|Thriller +130786,Rappin' (1985),Children|Drama +130788,Mata Hari (1985),Action|Drama|Romance|Thriller +130792,Terminal Bliss (1992),Drama +130794,Beauty and the Beast (1987),Children|Romance +130796,Rumpelstiltskin (1987),Children|Fantasy|Sci-Fi +130800,Sleeping Beauty (1987),Children|Fantasy +130802,Crack House (1989),Action|Drama +130804,The Fourth War (1990),Drama|Thriller +130808,River of Death (1989),Adventure +130810,Wild 90 (1968),(no genres listed) +130812,Maidstone (1970),(no genres listed) +130814,Midnight Ride (1990),(no genres listed) +130816,Duet for One (1987),Drama +130818,Manifesto (1988),(no genres listed) +130820,Street Knight (1993),(no genres listed) +130822,The Stud (1979),Drama +130824,The Naked Cage (1986),Action|Drama +130826,Rockula (1990),Comedy|Horror|Romance +130828,No Place to Hide (1970),Thriller +130830,No Place To Hide (1992),Thriller +130832,Rescue Me (1993),Action|Comedy +130834,Dancers (1987),(no genres listed) +130836,Fifty/Fifty (1992),Action|Comedy|Thriller +130838,When the Whales Came (1989),Drama +130840,Spring (2015),Horror|Romance|Sci-Fi +130842,Power/Rangers (2015),Action|Adventure|Sci-Fi +130846,The Birthday Party (1968),(no genres listed) +130848,Not My Type (2014),Comedy|Romance +130850,Mall (2014),Drama +130852,Brothers on the Line (2012),(no genres listed) +130854,Beat the Drum (2003),Drama +130856,Severe Clear (2010),Comedy|Documentary +130858,"Guru, The Mad Monk (1970)",Horror +130860,Monaco Forever (1984),(no genres listed) +130862,Cymbeline (2014),Drama +130864,Catch the Heat (1987),Action|Crime|Drama|Thriller +130866,Gorilla Bathes at Noon (1993),(no genres listed) +130870,Trapped in Space (1994),Sci-Fi|Thriller +130872,The Caller (1987),Horror|Mystery|Sci-Fi|Thriller +130874,Echoes (1983),Horror +130876,Children of Rage (1975),(no genres listed) +130878,Doppelgänger Paul (2012),(no genres listed) +130880,Spiders II: Breeding Ground (2001),Horror|Sci-Fi +130882,McCinsey's Island (1998),(no genres listed) +130892,The Last Chase (1981),Action|Adventure|Sci-Fi +130894,Petals on the Wind (2014),Drama|Romance|Thriller +130896,Politics of Love (2011),Comedy|Romance +130898,Midnight Stallion (2013),Children|Drama +130900,Mr. Troop Mom (2009),Children|Comedy +130902,The Foursome (2007),Comedy +130904,Balloon Farm (1999),Children|Drama +130906,Journey to the Center of the Earth (1993),Adventure|Fantasy +130908,Blue Tornado (1991),Action|Sci-Fi|Thriller +130912,In the Shadow (2012),Crime|Drama +130914,Savage Weekend (1979),Horror +130916,Max & Jeremie (1992),Comedy|Crime|Drama|Thriller +130918,Gospel According to Harry (1994),(no genres listed) +130920,Home Before Midnight (1979),Drama +130922,The Comeback (1978),Horror|Mystery|Thriller +130924,Schizo (1976),Horror +130926,House of Mortal Sin (1976),Horror +130928,Frightmare (1974),Horror|Thriller +130930,House of Whipcord (1974),Horror +130932,Tiffany Jones (1973),(no genres listed) +130934,The Flesh and Blood Show (1972),Horror|Thriller +130936,The Four Dimensions of Greta (1972),(no genres listed) +130938,"Die Screaming, Marianne (1971)",Horror|Thriller +130940,Man of Violence (1971),Action|Drama|Thriller +130942,Cool it Carol (1972),Comedy +130946,School for Sex (1969),(no genres listed) +130948,The Big Switch (1968),Crime +130950,Hot Girls for Men Only (1968),Comedy +130952,Songs She Wrote About People She Knows (2014),Comedy +130954,Guter Junge (2008),Drama +130956,Child 44 (2015),Crime|Thriller +130958,Killer Crocodile (1989),Horror +130960,The Conrad Boys (2006),Drama +130962,Musikanten (2006),(no genres listed) +130964,The Day I Saw Your Heart (2011),Comedy|Drama +130966,Promises in the Dark (1979),Drama +130968,Champions (1984),(no genres listed) +130970,George Carlin: Life Is Worth Losing (2005),Comedy +130972,Sune på bilsemester (2013),Children|Comedy +130976,Legend No. 17 (2013),Drama +130978,Love and Pigeons (1985),Comedy|Romance +130980,The Day That Lasted 21 Years (2012),Documentary +130982,Widows (2011),Drama +130984,Santo vs. las lobas (1976),Action|Fantasy|Horror +130986,Light Gradient (2009),Drama|Mystery|Romance +130988,A Little Chaos (2014),Drama|Romance +130990,In the Name of the Son (2013),Drama +130992,Innocence (1997),Drama +130994,Bill W. (2012),Documentary +130996,The Beautiful Story (1992),Adventure|Drama|Fantasy +130998,"The Yakuza Papers, Vol. 2: Deadly Fight in Hiroshima (1973)",Action|Crime|Drama +131000,"The Yakuza Papers, Vol. 3: Proxy War (1973)",Action|Crime|Drama +131002,"The Yakuza Papers, Vol. 5: Final Episode (1974)",Action|Crime|Drama +131004,"The Yakuza Papers, Vol. 4: Police Tactics (1974)",Crime|Drama +131009,Ballermann 6 (1997),Comedy +131011,Execution Squad (1972),Crime|Drama +131013,Get Hard (2015),Comedy|Crime +131015,Hellgate (2011),Horror|Thriller +131017,Aziz Ansari: Live at Madison Square Garden (2015),Comedy +131019,The Intruders (2015),Thriller +131021,Filmistaan (2014),(no genres listed) +131023,That Sugar Film (2014),Documentary +131025,The Brass Legend (1956),Action +131027,But Forever in My Mind (1999),Comedy|Drama +131029,Mara und der Feuerbringer (2015),(no genres listed) +131031,La liga no es cosa de hombres (1972),(no genres listed) +131050,Stargate SG-1 Children of the Gods - Final Cut (2009),Adventure|Sci-Fi|Thriller +131052,Die Weihnachtsklempner (1986),Comedy +131054,Dinotopia: Quest for the Ruby Sunstone (2005),Children|Fantasy|Sci-Fi +131056,The Vexxer (2007),Comedy|Crime +131058,Santa's Apprentice (2010),Animation|Children +131060,Vollidiot (2007),Comedy|Drama +131062,20 Years After (2008),Drama|Fantasy|Sci-Fi +131064,Growing Up and Other Lies (2014),Comedy +131066,Ronal the Barbarian (2011),Adventure|Animation|Fantasy +131068,Sex Up Your Life! (2005),Comedy +131070,Forgotten (2012),Drama|Mystery|Thriller +131072,Jesus liebt mich (2012),Comedy +131074,Mount St. Elias (2009),Documentary +131076,Süperseks (2004),Comedy +131078,Benjamin Blümchen - Seine schönsten Abenteuer (2006),(no genres listed) +131080,Cinderella III: A Twist in Time (2007),Animation|Children|Fantasy|Musical|Romance +131082,Playground (2009),Documentary +131084,Hui Buh: The Castle Ghost (2006),Adventure|Comedy|Fantasy +131086,The Little Polar Bear: Lars and the Little Tiger (2002),Animation|Children +131088,Girls on Top 2 (2004),Comedy +131090,Jonas (2012),Comedy +131092,"Mickey, Donald, Goofy: The Three Musketeers (2004)",Adventure|Animation|Children|Comedy +131094,Rudolph the Red-Nosed Reindeer: The Movie (1998),Animation|Children +131096,Russendisko (2012),Comedy +131098,Saving Santa (2013),Animation|Children|Comedy +131100,Forget me not (2013),Documentary +131102,Lucky Luke: The Ballad of the Daltons (1978),Animation|Children|Comedy|Western +131104,The Brain (1969),Comedy|Crime +131106,Casper's Haunted Christmas (2000),Animation|Children +131108,The Fearless Four (1997),(no genres listed) +131110,A House of Secrets: Exploring 'Dragonwyck' (2008),Documentary +131112,Night of the Living Dorks (2004),Comedy|Horror +131114,La Planque (2011),Comedy +131116,La Première étoile (2009),Comedy +131118,Siegfried (2005),Comedy +131120,Superstar Goofy (1991),Animation|Children|Comedy +131122,Love Exposure (2007),Action|Comedy|Drama|Romance +131124,Erkan & Stefan 2 (2002),Comedy +131126,Erkan & Stefan 3 (2005),Comedy +131128,Flodder 3 (1995),Comedy +131130,Tom and Jerry: A Nutcracker Tale (2007),Animation|Comedy +131132,Kleines Arschloch - Der Film (1997),Animation|Comedy +131134,Manta - Der Film (1991),Comedy +131136,Girls on Top (2001),Comedy +131138,My Führer (2007),Comedy|Drama|War +131140,Stopped on Track (2011),Drama +131142,Voll Normaaal (1994),Comedy +131144,Werner - Das muss kesseln!!! (1996),Animation|Comedy +131146,Werner - Volles Rooäää (1999),Animation|Comedy +131148,What A Man (2011),Comedy|Romance +131150,7 Dwarves: The Forest Is Not Enough (2006),Comedy +131152,The Fat Spy (1966),Comedy +131154,"Die Bademeister – Weiber, saufen, Leben retten (1999)",Comedy +131156,Ants in the Pants 2 (2002),Comedy +131158,"Manta, Manta (1991)",Comedy +131160,Oscar and the Lady in Pink (2009),Drama +131162,Por un puñado de besos (2014),Drama|Romance +131164,Vietnam in HD (2011),War +131166,WWII IN HD (2009),Documentary|War +131168,Phoenix (2014),Drama +131170,Parallels (2015),Sci-Fi|Thriller +131172,Closed Curtain (2013),(no genres listed) +131174,Gentlemen (2014),Drama|Romance|Thriller +131176,A Second Chance (2014),Drama +131178,The Mystery of Happiness (2014),Comedy|Drama|Romance +131180,Dead Rising: Watchtower (2015),Action|Horror|Thriller +131182,The Living Corpse (1929),(no genres listed) +131184,A Distant Trumpet (1964),Western +131186,A Dream of Kings (1969),(no genres listed) +131188,A Man To Remember (1938),Drama|Romance +131190,Alienator (1990),Action|Sci-Fi|Thriller +131192,App (2013),Thriller +131194,Apache Uprising (1965),Western +131196,Arrow In The Dust (1954),Western +131198,Blueberry Hill,(no genres listed) +131200,Bodyguard: A New Beginning (2008),Action|Adventure|Drama|Thriller +131202,Born Killers (2005),Action|Thriller +131204,Born to Race (1988),Action|Thriller +131206,Calling Dr. Kildare (1939),Crime|Drama +131209,Compound Fracture (2013),(no genres listed) +131211,Copper Canyon (1950),Action|Western +131213,Crazy in Love (1992),Comedy|Drama|Romance +131215,Cristo Rey (2014),Drama|Romance +131221,Alien Warrior (1986),Action|Crime|Sci-Fi +131223,Plague (1979),(no genres listed) +131225,Pleasure Palace,(no genres listed) +131229,Diary of a Sinner (1974),Drama +131231,Standby (2014),Comedy|Romance +131233,New Year's Day (1990),Comedy +131237,What Men Talk About (2010),Comedy +131239,Three Quarter Moon (2011),Comedy|Drama +131241,Ants in the Pants (2000),Comedy|Romance +131243,Werner - Gekotzt wird später (2003),Animation|Comedy +131246,Across the Moon (1995),Comedy|Drama|Romance +131248,Brother Bear 2 (2006),Adventure|Animation|Children|Comedy|Fantasy +131250,No More School (2000),Comedy +131252,Forklift Driver Klaus: The First Day on the Job (2001),Comedy|Horror +131254,Kein Bund für's Leben (2007),Comedy +131256,"Feuer, Eis & Dosenbier (2002)",Comedy +131258,The Pirates (2014),Adventure +131260,Rentun Ruusu (2001),(no genres listed) +131262,Innocence (2014),Adventure|Fantasy|Horror +131264,Women of Valor (1986),War +131266,Southside 1-1000 (1950),Crime +131268,The Judge Steps Out (1949),Comedy|Drama +131270,Kung Fu Jungle (2014),Action|Crime|Thriller +131272,Last Flight Out (2004),Action +131274,Heat (1986),Action|Drama|Thriller +131276,Hotline (1982),(no genres listed) +131278,Superdome (1978),Crime|Drama +131280,Terror on the 40th Floor,(no genres listed) +131282,Hurricane (1974),Drama +131284,The Elevator (1974),Drama|Thriller +131286,Heatwave! (1974),Drama +131290,Brute Corps (1972),Action|Drama +131292,"Private Vices, Public Virtues (1976)",Drama|War +131294,The Odd Angry Shot (1979),(no genres listed) +131296,The Removalists (1975),Drama +131300,Breaking Point - Pornografisk Thriller (1975),(no genres listed) +131305,Deep Space (1988),Horror|Sci-Fi +131308,Dollar for the Dead (1998),Western +131310,Echoes of a Summer (1976),Drama +131316,Five Miles to Midnight (1962),Crime|Drama|Thriller +131318,Fort Bowie (1958),Western +131320,Fort Yuma (1955),(no genres listed) +131322,Full Confession (1939),Crime|Drama +131324,"Go West, Young Lady (1941)",Comedy|Musical|Western +131326,Granny Get Your Gun (1940),Comedy|Western +131328,Gunfighters of Abilene (1960),Western +131339,I Was an American Spy (1951),Drama|War +131341,In God We Tru$t (1980),Comedy +131343,Palooka (1934),Action|Comedy +131345,Law and Order (1932),Western +131347,Law and Order (1969),Documentary +131353,Cattle Annie and Little Britches (1981),Western +131357,Off the Minnesota Strip (1980),Drama +131359,Lost in a Harem (1944),Comedy +131361,Somebody Killed Her Husband (1978),(no genres listed) +131363,Fear on Trial (1975),Drama +131365,You'll Like My Mother (1972),(no genres listed) +131369,My Sweet Charlie (1970),Drama +131371,A Covenant with Death (1967),(no genres listed) +131373,My Blood Runs Cold (1965),Thriller +131375,Six Days in Roswell (1998),Documentary +131378,Patrick (1978),Horror|Sci-Fi|Thriller +131380,Pursuit (1972),Action|Thriller +131382,Apache Blood (1975),Western +131384,Pursuit (1935),Action|Comedy|Romance +131386,Rhubarb (1951),Comedy +131389,Sabrina the Teenage Witch (1996),Children|Comedy|Fantasy|Sci-Fi +131391,Safe at Home! (1962),(no genres listed) +131393,Shadowheart (2009),Action|Adventure|Drama|Romance|Western +131396,Sol Madrid (1968),Action|Crime +131398,Sorority House (1939),Drama|Romance +131400,Sorority Girl (1957),Drama +131402,Storm at Daybreak (1933),Drama|Romance|War +131404,Sweepstakes Winner (1939),Comedy +131406,Buckskin (1968),Western +131409,The Good Old Boys (1995),Adventure|Western +131411,The Great Man Votes (1939),Drama +131415,The Honkers (1972),(no genres listed) +131417,The Kid from Texas (1950),Action|Western +131419,The Rig (2010),Action|Horror|Sci-Fi|Thriller +131421,The Unknown Cyclist (1998),Drama +131425,The Way (2009),Action|Adventure +131427,The young Rajah (1922),(no genres listed) +131429,Thunderhead - Son of Flicka (1945),Children|Drama +131431,Dear Murderer (1948),Thriller +131433,Confession of Murder (2012),Action|Thriller +131437,Moby Dick (2011),Action|Horror|Thriller +131439,Kill Me Three Times (2014),Thriller +131442,Underwater Dreams (2014),Documentary +131444,Rurouni Kenshin: The Legend Ends (2014),Action|Adventure|Drama +131446,Rurouni Kenshin: Kyoto Inferno (2014),Action|Adventure|Animation|Drama +131448,Walter (2015),Comedy|Drama +131451,The Atticus Institute (2015),Horror +131453,The Last Will and Testament of Rosalind Leigh (2012),Horror|Thriller +131455,A Man Betrayed (1941),Mystery +131457,Rise of the Legend (2014),Action|Drama +131460,Wild on the Beach (1965),Comedy +131462,Thunder at the Border (1966),Adventure|Western +131464,Kristy (2014),Horror|Thriller +131466,Gangster Payday (2014),Crime|Drama|Romance|Thriller +131468,Wyoming Outlaw (1939),(no genres listed) +131470,The Houses October Built (2014),Horror +131472,In Darkness We Fall (2014),Horror +131474,Preservation (2014),Horror|Thriller +131476,Christmas at Cartwright's (2014),Children|Romance +131478,Altar (2014),Horror|Mystery +131480,Poker Night (2014),Action|Crime|Thriller +131482,Marine Boy (2009),Action|Thriller +131484,House of Bones (2010),Horror +131486,That Burning Feeling (2014),Comedy|Drama +131496,Uzumasa Limelight (2014),Action|Drama +131498,Lawrence & Holloman (2014),Comedy +131500,The Hagstone Demon (2011),Horror +131502,A Wolf at the Door (2013),Drama|Thriller +131504,Jellyfish Eyes (2013),Comedy|Fantasy +131506,The Ugly Swans (2006),Drama|Mystery|Sci-Fi +131508,Moscow (2000),Drama +131510,Hollywood Zap (1986),Comedy +131512,Treasure (1990),Action|Adventure|Children +131514,Ginger Ale Afternoon (1989),Comedy +131516,"A Man, a Woman and a Bank (1979)",Action|Comedy|Romance +131518,Jennifer on My Mind (1971),Comedy|Drama +131522,Atlántida (2014),Drama +131524,Natural Sciences (2014),(no genres listed) +131526,Doin' Time (1985),Comedy +131528,Stone Cold Dead (1979),Crime|Thriller +131530,Lions (2012),Drama +131532,The Wild Ones (2013),Crime|Drama +131534,Profit Motive and the Whispering Wind (2007),Documentary +131536,The Face (2013),(no genres listed) +131538,Balnearios (2002),(no genres listed) +131540,Paganini Horror (1989),Horror +131542,The Black Cat (1989),(no genres listed) +131544,Tunnel Under the World (1969),(no genres listed) +131546,Hardbodies 2 (1986),Comedy +131548,Hardbodies (1984),Comedy +131550,My Only Sunshine (2009),Drama +131552,Stitches (1985),Comedy +131554,Somersault in a Coffin (1996),Children|Drama +131556,Inside (2012),(no genres listed) +131558,Majority (2010),Drama +131560,Vavien (2009),(no genres listed) +131562,Time to Love (1965),Drama|Romance +131564,The Angel of Vengeance - The Female Hamlet (1977),Drama +131566,Suçlular aramizda (1964),Crime|Drama +131568,Room 514 (2012),(no genres listed) +131570,The Humbling (2015),Comedy|Drama +131572,"Isoroku Yamamoto, the Commander-in-Chief of the Combined Fleet (2011)",War +131574,Tomboy (1985),Comedy|Romance +131578,Reckless Kelly (1994),Comedy +131582,It Takes Two (1988),Comedy|Romance +131584,Regarding Susan Sontag (2014),Documentary +131586,Terror at the Mall (2014),Documentary +131588,Malibu Beach (1978),Comedy +131590,Hamburger: The Motion Picture (1986),Comedy +131592,Jocks (1986),Comedy +131594,Last Resort (1986),Comedy +131596,The Maker (1997),Crime|Drama|Thriller +131602,14 Going on 30 (1988),(no genres listed) +131604,Can of Worms (1999),Children|Comedy|Sci-Fi +131606,My Boyfriend's Back,(no genres listed) +131610,Willy/Milly (1986),Comedy|Fantasy +131612,An American Summer (1991),Comedy|Drama +131614,Desperate Characters (1971),Drama +131616,"For Richer, for Poorer (1992)",Comedy +131618,London Suite (1996),Comedy +131620,Little White Lie (2014),Documentary +131622,Beauty and the Beast (1979),Drama|Fantasy|Horror|Romance +131624,Apartment Troubles (2014),Comedy|Drama +131626,Lily & Kat (2015),Comedy|Drama +131628,Loaded (2014),Comedy|Drama +131630,Running Hot (1984),Crime|Drama +131632,California Hot Wax (1992),(no genres listed) +131634,Camp Cucamonga (1990),Children|Comedy|Drama +131636,Young Love (1987),Comedy|Drama +131638,My American Cousin (1985),Drama +131640,Quarterback Princess (1983),Drama +131642,Wimps (1986),(no genres listed) +131644,The Great American Girl Robbery (1979),Comedy|Crime +131646,Casomai (2002),Comedy|Romance +131648,Stud Life (2012),(no genres listed) +131650,Sherlock Holmes in New York (1976),Thriller +131652,Garden of Love (2003),Horror +131654,The Village (2010),(no genres listed) +131656,Shaun the Sheep Movie (2015),Adventure|Animation|Children|Comedy +131658,Infinitely Polar Bear (2014),Comedy|Drama|Romance +131660,Bastards (2006),Action|Drama|War +131662,3:15 (1985),Action|Crime|Thriller +131664,Hot Times at Montclair High (1989),Comedy +131670,Puberty Blues (1981),Comedy|Drama +131672,Computer Beach Party (1987),(no genres listed) +131674,The Check Is in the Mail... (1986),Comedy +131678,Summer Job (1989),(no genres listed) +131682,P.R.O.F.S (1985),Comedy +131684,Poison Ivy (1985),Comedy|Romance +131686,An Insignificant Harvey (2011),Drama +131688,Girlfriend From Hell (1989),Comedy|Horror +131690,The Big Steal (1990),Comedy +131694,Homework (1982),Comedy|Drama +131696,The Whoopee Boys (1986),Comedy|Romance +131698,Up Your Anchor (1985),Comedy +131700,Preppies (1984),Comedy +131702,Crash Course (1988),(no genres listed) +131704,The Beach Girls (1982),Comedy +131706,Tell Me a Riddle (1980),Drama +131708,Goin' All the Way! (1982),(no genres listed) +131710,The Bermuda Triangle (1996),Thriller +131712,Ages of Love (2011),Comedy|Romance +131714,Last Knights (2015),Action|Adventure +131716,The Viral Factor (2012),Action|Drama +131718,Baciami Ancora (2010),Comedy +131720,Penny Pinchers (2011),Comedy|Romance +131722,Boobs: An American Obsession (2010),Documentary +131724,The Jinx: The Life and Deaths of Robert Durst (2015),Documentary +131726,Matt Shepard Is a Friend of Mine (2015),Documentary +131728,Cavegirl (1985),Comedy +131730,Streetwalkin' (1985),Drama|Thriller +131732,Swim Team (1979),Comedy +131736,Screen Test (1985),Comedy +131739,Batman vs. Robin (2015),Action|Adventure|Animation +131741,American Drive-In (1985),Comedy +131743,Liar's Moon (1982),Drama +131745,Baby Love (1984),Comedy|Drama +131749,Libre et assoupi (2014),Comedy +131751,Cheatin' (2013),Animation +131753,Cannibal Girls (1973),Comedy|Horror +131755,Dream Trap (1990),(no genres listed) +131757,Student Confidential (1987),Comedy +131759,High School U.S.A. (1983),Comedy|Romance +131761,Virgin High (1991),Comedy +131763,Hot Resort (1985),(no genres listed) +131765,O Que Há De Novo No Amor? (2012),Drama|Romance +131767,Boxers and Ballerinas (2005),(no genres listed) +131769,Seven Minutes in Heaven (1985),Comedy|Drama|Romance +131771,Senior Week (1988),(no genres listed) +131775,Mr. Civil Rights: Thurgood Marshall and the NAACP (2014),(no genres listed) +131777,Malibu Hot Summer (1981),(no genres listed) +131779,Hot Splash (1988),(no genres listed) +131781,Freeze Frame (1992),Children|Thriller +131786,The Invisible Kid (1988),Comedy|Sci-Fi +131788,Stewardess School (1986),Action|Comedy +131790,Pretty Smart (1987),Comedy|Drama +131792,The Big Bet (1985),(no genres listed) +131794,Monster High (1989),Comedy|Horror|Sci-Fi +131796,Woman in Gold (2015),Drama +131798,Sole Survivor (1983),Horror +131802,Jimmy the Kid (1982),Comedy +131806,The Far Side of Jericho (2006),Action|Drama|Western +131808,The Postman's White Nights (2014),(no genres listed) +131810,"Ryaba, My Chicken (1994)",(no genres listed) +131812,The Seat Filler (2004),Comedy|Romance +131816,Crisis Hotline: Veterans Press 1 (2013),Documentary +131818,Done The Impossible (2006),Documentary +131820,Echoes (2015),Horror +131822,Stadtgespräch (1995),Comedy +131824,Men... (1985),Comedy +131826,Iliza Shlesinger: Freezing Hot (2015),Comedy +131828,Doug Benson: Doug Dynasty (2014),Comedy +131830,Samba (2014),Comedy|Drama +131832,Once Upon A Mattress (2005),Comedy +131834,The Sound of Music Live (2013),Children|Drama +131836,Bill Bailey: Part Troll (2004),Comedy +131838,An Afghan Love Story (2013),(no genres listed) +131840,Rafferty and the Gold Dust Twins (1975),Comedy +131842,Cut Bank (2014),Thriller +131844,Les mauvaises têtes (2013),(no genres listed) +131846,Toutes les Filles sont Folles (2003),(no genres listed) +131848,Seven Dwarfs (2004),Comedy +131850,Killing Jesus (2015),Drama +131852,The Mad Genius (1931),Drama|Horror|Romance +131854,Water's Edge (2004),Thriller +131856,Outing Riley (2004),Comedy +131858,Macho Callahan (1970),Western +131860,Good-bye Cruel World (1983),Comedy +131862,Hollywood Boulevard II (1989),Comedy +131864,Hollywood Hot Tubs 2: Educating Crystal (1990),(no genres listed) +131866,Hollywood Hot Tubs (1984),Comedy +131868,Hot Moves (1984),Comedy +131870,Nightmare Weekend (1986),Horror|Sci-Fi +131872,Dance 'Til Dawn (1988),Children|Comedy +131874,Delta Pi (1984),Comedy +131876,Rebel High (1987),(no genres listed) +131878,Party Plane (1991),(no genres listed) +131880,Slaughter High (1986),Horror +131882,Just The Way You Are (1984),Comedy|Romance +131884,Old Enough (1984),Drama +131888,They're Playing with Fire (1984),Crime|Thriller +131890,Senior Trip (1981),Comedy +131892,Beach Balls (1988),Comedy +131894,Second Time Lucky (1984),Comedy +131896,Getting Lucky (1989),Children|Comedy +131900,Party Camp (1987),(no genres listed) +131902,Summertime Blues (1988),Comedy +131904,Surf II (1984),Comedy +131906,Student Exchange (1987),Children|Comedy|Romance +131908,Summer Camp (1979),Comedy +131910,Nobody's Perfect (1990),Comedy +131912,Gorp (1980),Comedy +131914,Dangerous Curves (1989),Comedy +131916,Can It Be Love (1992),(no genres listed) +131920,The Road Within (2014),Comedy|Drama +131922,Private Duty Nurses (1971),(no genres listed) +131924,Hog Wild (1980),Comedy +131926,A Matter of Degrees (1990),Comedy +131928,Lovelines (1984),Comedy +131930,Oddballs (1984),Comedy +131932,Modern Girls (1986),Comedy|Romance +131934,The Malibu Bikini Shop (1986),Comedy +131936,Space Dogs (2010),Animation|Children +131938,French Postcards (1979),Comedy +131940,Body Waves (1992),Comedy +131942,Higher Education (1988),Comedy|Drama|Romance +131944,The First Turn-On! (1983),Comedy +131946,Virgin Queen of St. Francis High (1987),Comedy|Romance +131948,Rush Week (1989),Horror +131950,Beach House (1977),Comedy +131952,Let's Do It! (1982),(no genres listed) +131954,Gregory's Two Girls (1999),Comedy +131956,Longshot (1981),Comedy|Drama +131960,Body Rock (1984),Drama +131962,De feu et de glace (2008),(no genres listed) +131964,Cash McCall (1960),Drama|Romance +131966,La 317ème section (1965),War +131968,Breaking All the Rules (1985),(no genres listed) +131970,Gimme an 'F' (1984),Comedy +131972,Cemetery High (1989),Action|Horror|Thriller +131974,Welcome to 18 (1986),Comedy|Drama +131980,"Guten Tag, Ramón (2013)",Drama +131982,Off the Wall (1983),Comedy +131984,Off the Mark (1987),(no genres listed) +131986,Getting It On (1983),Comedy +131988,California Girls (1985),Comedy|Drama|Romance +131990,A nous les Garçons (1985),(no genres listed) +131994,Teen Vamp (1988),Comedy|Horror +131996,Princess Academy (1987),(no genres listed) +131998,Night School (1981),Horror|Mystery|Thriller +132000,One Night Only,Comedy +132002,One Dark Night (1983),Horror +132004,Rich Girl (1991),Drama +132006,Rock and Roll Fantasy (1992),Comedy|Romance +132008,"Sarah, Plain and Tall - Winter's End (1999)",Children|Drama +132010,Anna and the Wolves (1973),Drama +132012,Lemonade Mouth (2011),Children +132014,Sex Appeal (1986),Comedy +132016,Teen Lust (1979),(no genres listed) +132018,School Spirit (1985),Comedy +132022,Ellie (1984),Comedy +132024,Ghost Chase (1987),Children|Fantasy|Sci-Fi +132028,Under the Boardwalk (1989),Comedy|Romance +132030,The First Time (1983),Comedy +132032,The First Time (1982),Drama +132034,The Vals (1982),(no genres listed) +132036,Copperhead (2013),Drama +132038,The Border (1980),Action +132040,Borderline (1980),Action|Crime|Drama +132044,The Clown at Midnight (1999),Horror|Thriller +132046,Tomorrowland (2015),Action|Adventure|Children|Mystery|Sci-Fi +132048,Dead Girls (2014),Horror +132050,Sleeping Dogs (1977),Action|Thriller +132052,Crooks and Coronets (1969),Comedy +132054,Soap (2006),Comedy|Romance +132056,The Forger (2014),Crime|Drama|Thriller +132058,Viva la libertà (2013),Drama +132060,Electricity (2014),Drama +132062,Ballerina (2006),(no genres listed) +132064,Monsoon Baby (2014),Drama +132066,Luton (2013),Drama +132068,Far from Men (2014),Drama +132070,And the Oscar Goes To... (2014),(no genres listed) +132072,Armi Alive! (Armi elää) (2015),Drama +132074,No No: A Dockumentary (2014),Documentary +132076,The Naked Ape (1973),Animation|Comedy|War +132078,Hiver rouge (2011),Thriller +132080,Bleu catacombes (2014),Thriller +132082,Bob le magnifique (1998),(no genres listed) +132084,Let It Be Me (1995),(no genres listed) +132086,Pas d'inquiétude (2014),Drama +132088,Ramon the Mexican (1966),(no genres listed) +132090,28 Minutes for 3 Million Dollars (1967),Crime +132092,Churchill's Leopards (1970),War +132094,Death Carries a Cane (1973),Horror|Mystery|Thriller +132098,Sentence of God (1972),(no genres listed) +132100,Graffiti Wars (2011),Documentary +132102,And Then Came Love (2007),Comedy|Romance +132106,Weather Girl (2009),Action|Comedy|Mystery|Romance|Thriller +132110,Dudes (1987),Comedy +132112,Good Kill (2014),Drama|Thriller +132114,Premutos - Der gefallene Engel (1997),Horror +132116,Kamikaze Taxi (1995),(no genres listed) +132118,Alex of Venice (2014),Drama +132120,A House In The Hills (1993),Romance|Thriller +132122,Hungry Hearts (2014),Drama +132124,Say Nothing (2001),Action|Drama|Mystery|Romance|Sci-Fi|Thriller +132126,The Rubber Gun (1977),(no genres listed) +132128,Faults (2015),Drama|Thriller +132130,Cub (2014),Adventure|Horror +132132,Swearnet: The Movie (2014),Comedy +132134,15 Years and One Day (2013),Drama +132136,The Barber (2015),Thriller +132138,The Woman with the 5 Elephants (2010),Documentary +132140,Good Deeds (2012),Comedy|Drama|Romance +132142,In Search of Memory (2008),Documentary +132144,Black Souls (2014),Crime|Drama +132146,The Harvest (2013),Drama|Thriller +132148,PMMP – Life is Right Here (2015),Documentary +132150,The 7 Grandmasters (1977),Action +132153,Buzzard (2015),Comedy|Drama|Horror +132155,Ape (2012),(no genres listed) +132157,Paul Blart: Mall Cop 2 (2015),Action|Comedy|Crime +132159,The Reconstruction of William Zero (2015),Drama|Sci-Fi|Thriller +132161,Mine (2009),Documentary +132163,Toxin (2014),Action|Horror|Sci-Fi +132165,The Elevator: Three Minutes Can Change Your Life (2013),Drama|Thriller +132167,El Infierno (2010),Comedy|Crime|Drama +132169,Time Traveller: The Girl Who Leapt Through Time (2010),Adventure +132171,The Bitter Buddha (2013),(no genres listed) +132173,Adult Beginners (2015),Comedy +132175,The Invisible Men (2012),Documentary|Drama +132178,At World's End (2009),Action|Adventure|Comedy|Thriller +132180,Parts Per Billion (2014),Sci-Fi +132182,Alléluia (2014),Drama|Thriller +132184,Tizoc (1956),Drama|Romance +132186,"It's Me, Hilary: The Man Who Drew Eloise (2015)",Documentary +132188,The Revengers (1972),Action|Crime|Western +132190,The Surrealist and His Naughty Hand (2013),Comedy|Drama +132192,Anna Karénina (2013),Drama|Romance +132194,Sylvia (1965),Drama|Romance|Thriller +132196,Voices of the Andes (2009),Documentary +132198,"Exhausted: John C. Holmes, the Real Story (1981)",Documentary +132202,Lucrezia Giovane (1974),Drama +132206,Troppo rischio per un uomo solo (1973),(no genres listed) +132208,Forbidden Photos of a Lady Above Suspicion (1970),Mystery +132210,Death Walks on High Heels (1971),Horror|Mystery|Thriller +132212,Death Walks at Midnight (1972),Horror|Mystery +132214,Badge 373 (1973),Crime|Drama|Thriller +132216,The Last Mile (1959),Crime|Drama|Thriller +132218,Andy Hardy Comes Home (1958),Comedy +132220,Born Reckless (1958),Drama|Romance|Western +132222,Frankenstein 1970 (1958),Horror|Sci-Fi +132224,Violent Road (1958),Adventure|Drama +132226,Bop Girl Goes Calypso (1957),(no genres listed) +132230,Big House U.S.A. (1955),Action|Crime|Thriller +132232,Shield for Murder (1954),Crime|Drama|Film-Noir +132234,"September 30, 1955 (1978)",Drama +132236,"Number, Please? (1920)",Comedy +132238,Amelia Earhart: The Final Flight (1994),Drama +132240,Andy Hardy's Private Secretary (1941),Comedy|Romance +132242,"Inju, The Beast in the Shadow (2008)",Thriller +132247,Final Voyage (2000),(no genres listed) +132249,First to Fight (1967),Drama|War +132251,Halls of Anger (1970),Drama +132253,Heathens and Thieves (2012),Action|Western +132255,Honeymoon for Three (1941),Comedy +132259,King Lear (1983),Drama +132261,King Lear (1971),Drama +132264,Man from Del Rio (1956),(no genres listed) +132266,The Visual Bible: Matthew (1993),(no genres listed) +132268,Miranda (1985),Comedy|Romance +132270,Muffin Top: A Love Story (2014),Comedy|Romance +132272,Mutant Hunt (1987),Action|Horror|Sci-Fi|Thriller +132275,Born in Absurdistan (1999),Comedy +132278,Nightmares (1980),Horror +132280,"Rico, Oskar und die Tieferschatten (2014)",Adventure|Children|Comedy +132282,The Brave Bulls (1951),(no genres listed) +132284,The Duke Is Tops (1938),(no genres listed) +132286,About a Girl (2014),Comedy +132288,The Maltese Bippy (1969),(no genres listed) +132290,The Outsider (1961),Drama|War +132292,The Outsider (1980),Drama +132294,Watchers II (1990),Horror|Sci-Fi +132296,The Outsider (1981),Drama +132298,The Outsider (2005),(no genres listed) +132300,The Strangler (1972),Drama +132302,The System (1953),Crime +132305,Three Hours to Kill (1954),(no genres listed) +132307,Vagabond Lady (1935),(no genres listed) +132309,Without a Trace (1983),Drama|Mystery +132311,Yellow Jack (1938),(no genres listed) +132313,Zip & Zap and the Marble Gang (2013),Adventure|Children|Comedy +132315,The Prince & Me 3: A Royal Honeymoon (2008),Comedy|Romance +132317,Way Beyond Weight (2012),Documentary +132319,チェブラーシカ (2010),Animation|Children +132321,Black Oak Conspiracy (1977),Action|Drama +132323,Act of Vengeance (1974),Crime|Drama|Horror +132325,The Return of Count Yorga (1971),Horror +132327,"Like Father, Like Son (1965)",Drama +132331,Edge of Sanity (1989),Horror|Thriller +132333,Seve (2014),Documentary|Drama +132335,Breathe (2014),Drama +132338,I Am Soldier (2014),Action|Thriller|War +132340,The Dead 2: India (2013),Horror +132342,Lorelei: The Witch of the Pacific Ocean (2005),Drama|War +132344,Holiday in the Sun (2001),Action|Adventure|Children|Comedy +132346,Postmortem (1998),Thriller +132348,The Last Templar (2009),Adventure|Drama|Fantasy|Thriller +132350,Emotional Arithmetic (2007),Drama +132352,Spiders (2013),Horror|Sci-Fi|Thriller +132354,Syncopation (1942),Comedy|Musical|Romance +132356,Survivor (2014),Action|Fantasy|Sci-Fi +132358,N.H 10 (2015),Crime|Drama|Mystery +132360,Book of Blood (2009),Drama|Horror|Mystery|Thriller +132362,Patlabor 2: The Movie (1993),Action|Animation|Sci-Fi +132364,Belka and Strelka: Moon Adventures (2013),Adventure|Animation|Comedy +132366,The Eternal Zero (2013),Drama|War +132368,Exaella (2011),Action|Animation|Drama|Sci-Fi +132370,From Inside (2008),(no genres listed) +132372,Rommel (2012),Action|Drama|War +132374,Le Président (1961),Drama|Mystery|Thriller +132377,Outcast (2014),Action +132379,Aging Out (2004),(no genres listed) +132381,The Admiral: Roaring Currents (2014),Action|Drama|War +132384,The Domino Principle (1977),Crime|Drama +132386,Zandy's Bride (1974),Western +132388,Cisco Pike (1972),Drama +132390,Riot (1969),Action +132392,Banning (1967),(no genres listed) +132394,To Find a Man (1972),(no genres listed) +132398,Operation C.I.A. (1965),Drama|Thriller +132402,Tazza: The Hidden Card (2014),Crime|Drama +132404,Vita frun (1962),Mystery|Thriller +132406,Hotel Colonial (1987),(no genres listed) +132408,The Lightship (1986),Thriller +132410,The Stone Boy (1984),Drama +132412,Threshold (1981),Drama|Sci-Fi +132414,Géraldine (2000),Animation +132416,Laura's Star (2004),Animation|Children +132418,The Marine 4: Moving Target (2015),Action|Thriller +132420,Babar: King of the Elephants (1999),Animation|Children +132422,Da Sweet Blood of Jesus (2014),Comedy|Romance|Thriller +132424,The Longest Ride (2015),Drama|Romance +132430,Man from Reno (2014),Crime|Mystery|Thriller +132432,Five Dances (2013),Drama|Romance +132434,Astral City: A Spiritual Journey (2010),Drama +132436,Sweet Sugar (1972),Action|Drama +132438,Table For Five (1983),(no genres listed) +132440,Cannabis (1970),Action|Crime|Drama +132442,Beyond the Reach (2014),Thriller +132444,Nuntius (2014),Sci-Fi +132446,Atari: Game Over (2014),Documentary +132448,Einstein (2015),(no genres listed) +132450,Broken Glass Park (2013),Drama +132452,Mörderische Erpressung (2006),Crime +132454,Girltrash: All Night Long (2014),Comedy|Crime|Drama +132456,Lage Raho Munna Bhai (2006),Comedy|Drama|Romance +132458,Monkey Kingdom (2015),Documentary +132460,Beck - Sjukhusmorden (2015),Crime|Mystery|Thriller +132462,Sword of Vengeance (2014),Action|Adventure|Drama +132464,Jersey Shore Shark Attack (2012),Action|Sci-Fi +132468,Ship of Theseus (2013),Drama +132470,Obsession (1949),Crime +132472,Antarctica: A Year On Ice (2013),Adventure|Documentary +132474,The Dog Who Saved Christmas (2009),Children|Comedy +132476,Indebted (2013),Drama|Thriller +132478,Darkness in Tallinn (1993),Action|Comedy|Thriller +132480,The Age of Adaline (2015),Drama|Fantasy|Romance +132482,Gutshot Straight (2014),Thriller +132484,Lambert & Stamp (2014),Documentary +132486,The Liberator (2013),Drama +132488,Lovesick (2014),Comedy|Romance +132490,Return to Source: The Philosophy of The Matrix (2004),Documentary +132492,Sinatra: All or Nothing at All (2015),Documentary +132494,The Sheik (2014),Documentary +132496,Danny Collins (2015),Comedy|Drama +132502,Diamond Head (1963),Drama +132506,Sea of Sand (1958),War +132508,The Snorkel (1958),Thriller +132510,Triple Deception (1956),Crime|Drama +132512,Lost (1956),Crime|Mystery|Thriller +132514,River Beat (1954),Crime|Drama +132516,I'm Afraid (1982),(no genres listed) +132518,Confessions of a Sociopathic Social Climber (2005),Comedy|Romance +132520,Bad Hurt (2015),Drama +132522,"Hey, Boo: Harper Lee and 'To Kill a Mockingbird' (2011)",Documentary +132524,Halo: Nightfall (2014),Action|Adventure|Sci-Fi|Thriller +132526,I'm Not Jesus Mommy (2011),Drama|Sci-Fi|Thriller +132528,Downstream (2010),Action|Sci-Fi +132530,Eugenie (1970),Drama|Horror +132532,First Love (1970),Drama|Romance +132534,Finding Gaston (2014),Documentary +132537,Night Call Nurses (1972),Comedy +132539,The Black Cat (1981),Horror +132541,The House of Clocks (1989),Horror +132543,The Sweet House of Horrors (1989),Horror +132545,Flicka 2 (2010),Children|Drama +132547,A Girl Like Her (2015),Drama +132549,Grandma (2015),(no genres listed) +132551,Mea Culpa (2014),Action|Thriller +132553,"Struggle, The (1931)",Drama +132555,Winning Time: Reggie Miller vs. The New York Knicks (2010),Documentary +132557,Straight Outta LA (2010),Documentary +132559,Silly Little Game (2010),Documentary +132561,Bad Boys (2014),Documentary +132563,October November (2013),Drama +132565,The Unseeable (2006),Drama|Horror|Mystery +132567,Scarfies (1999),Comedy|Thriller +132569,Comedy Central Roast of Justin Bieber (2015),Comedy +132571,The Butterfly Tattoo (2009),Drama|Thriller +132575,50 to 1 (2014),Drama +132577,Mardock Scramble: The First Compression (2010),Action|Animation|Drama|Thriller +132579,Mardock Scramble: The Third Exhaust (2012),Animation|Sci-Fi +132584,The Even Stevens Movie (2003),Children|Comedy +132586,The Four Year Plan (2011),Documentary +132588,In the Crosswind (2014),War +132590,Happy Valley (2014),Documentary +132592,GMO OMG (2013),Children|Documentary +132594,A Royal Night Out (2015),Drama|Romance|Thriller +132596,The Chain Reaction (1980),Action|Sci-Fi|Thriller +132600,Absolution (1978),Drama|Mystery|Thriller +132602,Nevada (1997),Drama +132604,キサラギ (2007),Comedy|Mystery +132606,I prosseneti (1976),(no genres listed) +132608,Barbecue (2014),Comedy +132610,Malice@Doll (2004),Animation +132612,Portraits in a Sea of Lies (2010),Drama +132614,Dior and I (2014),Documentary +132616,The Walking Deceased (2015),Comedy|Sci-Fi +132618,Kite (2014),Action|Crime|Drama|Mystery|Thriller +132622,Magic Beyond Words: The JK Rowling Story (2011),(no genres listed) +132624,The Hacker Wars (2014),Documentary +132626,Peter Pan Live (2014),Adventure|Children +132628,Pilot Error (2014),Drama|Mystery +132630,Tinker Bell and the Legend of the NeverBeast (2014),Adventure|Animation|Children +132632,The Pirate Fairy (2014),Animation|Children|Fantasy +132634,Radiostars (2012),Comedy +132636,Our Brief Eternity (2009),Drama|Fantasy|Romance +132638,Le Pari (1997),Comedy +132640,UFO: Target Earth (1974),Sci-Fi +132642,Target Earth (1954),Sci-Fi +132644,An Act of War (2015),Drama|Mystery +132646,The Velveteen Rabbit (2009),Animation|Children|Drama|Sci-Fi +132648,Honig im Kopf (2014),Comedy|Drama +132650,Pokémon: Mewtwo Returns (2000),Animation|Children +132652,Mother's Day (2010),Crime|Drama|Horror|Thriller +132654,Su Excelencia (1967),Comedy|Drama +132656,Batman Unlimited: Animal Instincts (2015),Animation +132658,When I Live My Life Over Again (2015),Drama +132660,Man Up (2015),Comedy|Romance +132662,Devil's Bible (2008),Documentary|Mystery +132664,Weirdo (1983),Children|Drama +132666,21 Years: Richard Linklater (2014),(no genres listed) +132668,All I Want for Christmas (2007),Children|Drama +132670,Betrayal of the Dove (1993),Crime|Thriller +132672,"Bomba, the Jungle Boy (1949)",Adventure +132674,Bright Angel (1991),Drama|Thriller +132678,Crossplot (1969),Action|Thriller +132682,Driving Me Crazy 1991 (1991),Comedy +132684,Driving Me Crazy (1988),Comedy +132686,Ever Since Eve (1937),Comedy|Romance +132688,Falling From Grace (1992),Drama|Romance +132690,5 Steps to Danger (1957),Action|Thriller +132692,Frontier Rangers (1959),Adventure|War|Western +132694,Full Circle (1996),Drama|Romance +132699,Johnny Doesn't Live Here Anymore (1944),(no genres listed) +132703,Kidnapped (1971),Action|Adventure +132705,Kidnapped (1938),Adventure|Drama +132707,Kidnapped (1948),(no genres listed) +132711,Life Support (2007),Drama +132713,Public Enemy's Wife (1936),(no genres listed) +132715,Registered Nurse (1934),Drama +132717,Atlantic Ferry (1942),Drama|Romance +132719,Superstition (1982),Horror +132723,Ten Thousand Bedrooms (1957),Comedy|Romance +132725,The Castilian (1963),Adventure|Drama +132727,The Ceremony (1963),Crime|Drama +132729,The Cisco Kid (1994),(no genres listed) +132731,The Cisco Kid (1931),(no genres listed) +132733,The Crowd Roars (1938),(no genres listed) +132735,The Culling (2015),Horror|Thriller +132737,The Hidden Hand (1942),Comedy|Drama|Mystery|Romance +132739,The Hunt for Eagle One (2006),Action|Adventure|Drama|Thriller +132741,The Hunt for Eagle One: Crash Point (2006),Action|Adventure|Thriller +132743,The Lost Volcano (1950),Adventure +132745,The Naked Street (1955),Drama|Thriller +132747,The Vagrant (1992),Comedy|Horror|Thriller +132749,The Wild Party (1929),Comedy|Drama +132751,The Wild Party (1956),Crime|Drama +132753,Two on a Guillotine (1965),Horror|Mystery +132756,You Know My Name (1999),Action|Drama|Western +132758,"Seduction of Mimi, The (Mimì metallurgico ferito nell'onore) (1972)",Comedy +132760,All Screwed Up (1974),(no genres listed) +132762,A Night Full of Rain (1978),Drama +132764,Blood Feud (1978),(no genres listed) +132766,"Summer Night, with Greek Profile, Almond Eyes and Scent of Basil (1986)",(no genres listed) +132768,On a Moonlit Night (1989),(no genres listed) +132770,Sabato domenica e lunedì (1990),Comedy +132772,The Blue Collar Worker and the Hairdresser in a Whirl of Sex and Politics (1998),Comedy +132774,Francesca e Nunziata (2002),(no genres listed) +132776,Too Much Romance... It's Time for Stuffed Peppers (2006),(no genres listed) +132778,Mannaggia alla miseria! (2009),Comedy|Romance +132780,Vanishing Pearls: The Oystermen of Pointe à la Hache (2014),Documentary +132782,The Doberman Gang (1972),Action|Comedy|Crime +132784,The Daring Dobermans (1973),(no genres listed) +132788,Funeral Kings (2012),Comedy +132790,The Least of These (2011),Documentary|Drama|Thriller +132792,The Great Invisible (2014),Documentary +132794,Sweet Home (2015),Horror +132796,San Andreas (2015),Action|Drama|Thriller +132798,Regression (2015),Thriller +132800,Welcome to Me (2014),Comedy|Drama +132802,Nest of Vipers (1978),Drama|Romance +132804,Secrets (1971),Drama +132806,Escape by Night (1937),(no genres listed) +132808,Gang Bullets (1938),Action|Thriller +132810,Gangster's Boy (1938),(no genres listed) +132812,The Racketeer (1929),Crime|Drama +132814,Baby Face Morgan (1942),Comedy +132816,The Sinner (1972),(no genres listed) +132818,The Boss of Big Town (1942),Action|Thriller +132820,Paper Bullets (1941),Crime|Drama|Thriller +132822,Primitive Love (1964),Comedy +132824,Two Marines and a General (1966),Comedy +132826,Sweden: Heaven and Hell (1968),Documentary +132828,Mondo Cane 2000 (1971),Documentary +132830,Witchcraft '70 (1970),Documentary +132832,The Chase (1946),Crime +132834,La ragazza fuoristrada (1973),(no genres listed) +132836,The Body (1974),(no genres listed) +132838,"Crime, Inc. (1945)",Drama|Thriller +132840,Shoot to Kill (1947),Crime +132844,Mr. Robinson (1976),Comedy +132846,Woman on the Run (1950),Crime|Drama|Film-Noir +132852,Neapolitan Mystery (1979),(no genres listed) +132854,Johnny One-Eye (1950),Crime|Drama +132856,Control (1987),Drama|Thriller +132858,Kid Monk Baroni (1952),Drama +132860,Amore libero - Free Love (1974),(no genres listed) +132862,Port of New York (1949),Crime|Drama|Film-Noir +132864,Gang Busters (1955),Crime +132866,Guns Don't Argue (1957),(no genres listed) +132868,I Am A Criminal (1938),(no genres listed) +132870,Hearts and Armour (1983),Action|Adventure|Fantasy +132872,Gangster Story (1959),Crime|Drama|Thriller +132874,Rose (2011),Drama|War +132877,The Impossible Hour (1974),Documentary +132879,The Stars and the Water Carriers (1974),(no genres listed) +132883,Testament of Youth (2014),Drama|War +132886,Springtime in the Rockies (1942),(no genres listed) +132888,Comedy Central Roast of James Franco (2013),Comedy +132890,Toto and his Sisters (2014),(no genres listed) +132892,Made in Argentina (1987),(no genres listed) +132894,Cenizas del Paraiso (1997),Crime|Drama|Mystery|Thriller +132896,Pelota (1983),(no genres listed) +132898,Terror Express (1979),Drama +132900,Half the Sky: Turning Oppression Into Opportunity for Women Worldwide (2012),Documentary +132902,Girl Rising (2013),Documentary +132904,"OC87: The Obsessive Compulsive, Major Depression, Bipolar, Asperger's Movie (2012)",Documentary +132906,The Man with the Iron Fists 2 (2015),Action +132908,Emmanuelle 3 (1977),Drama +132910,Emmanuelle 4 (1984),Drama +132912,Emmanuelle 5 (1987),Action|Drama +132914,Emmanuelle 6 (1992),Drama|Romance +132916,Black Emanuelle (1975),Drama +132918,Emanuelle in Bangkok (1976),Drama|Romance +132920,The New Black Emanuelle (1976),Drama +132922,Emanuelle in America (1977),Adventure|Drama|Romance +132924,Emanuelle and the Last Cannibals (1977),Adventure|Horror +132926,Confessions of Emanuelle (1977),Drama|Horror|Romance +132928,Emanuelle and the Girls of Madame Claude (La via della prostituzione) (1978),Drama +132930,Demon Rage (Emanuelle e Françoise) (1975),Horror +132932,Néa (1976),(no genres listed) +132934,Emanuelle and the Erotic Nights (1978),Documentary +132936,Caged Women (1982),Thriller +132938,Provincia violenta (1978),Action|Crime|Drama +132940,Crimebusters (1976),Action|Crime|Thriller +132942,Captive Wild Woman (1943),Horror|Sci-Fi +132944,Night Monster (1942),Children|Drama|Horror +132946,Valerie Inside Outside (1972),Drama +132948,Doli Saja Ke Rakhna,(no genres listed) +132950,Vaastav: The Reality (1999),Crime|Drama|Thriller +132952,Sarfarosh (1999),(no genres listed) +132954,Awake: The Life of Yogananda (2014),Documentary +132958,The Kill Team (2013),Documentary|War +132961,Far from the Madding Crowd (2015),Drama +132963,Mr. Superinvisible (1970),Action|Comedy +132965,Appropriate Behaviour (2014),Comedy|Drama|Romance +132967,Thursday Till Sunday (2012),Drama +132969,L (2012),Drama|Thriller +132971,Magical Girl (2014),Drama +132973,Vikingo (2009),(no genres listed) +132975,Garrison Keillor: The Man on the Radio in the Red Shoes (2009),Documentary +132977,The House of Magic (2014),Adventure|Animation|Children|Fantasy +132979,A Company Man (2012),Action|Drama +132981,Crowsnest (2012),(no genres listed) +132983,Overnight (2012),Comedy|Romance +132987,Kill 'em All (2012),Action|Crime|Thriller +132989,Frontera (2014),Drama|Western +132991,No Tears for the Dead (2014),Action|Thriller +132993,Love Is the Perfect Crime (2013),Drama|Thriller +132995,Dear Lemon Lima (2009),Drama +132997,Wrong Turn 6: Last Resort (2014),Horror +132999,Kriminal (1966),Action|Crime|Mystery +133001,The Spy Who Loved Flowers (1966),Adventure +133003,Superseven chiama Cairo (1965),Action|Drama +133005,008: Operation Exterminate (1966),Action|Comedy +133007,Temple of a Thousand Lights (1965),Adventure +133009,"Sandoken, Pirate of Malaysia (1964)",Action +133011,The Last Gladiator (1964),Adventure|Drama +133013,Temple of the White Elephant (1964),Action|Adventure|Drama +133015,Sandokan the Great (1963),Adventure +133017,Samson and the Slave Queen (1963),Action|Adventure|Drama +133019,Catherine of Russia (1963),Drama|Romance +133021,Il trionfo di Robin Hood (1962),Adventure +133025,Queen of the Seas (1961),Drama +133029,Black Demons (1991),Horror +133037,Nightmare Beach (1989),Horror +133045,Hitcher in the Dark (1989),Horror +133047,Ghosthouse (1988),Horror +133049,Wartime (1986),Adventure|War +133051,Bridge to Hell (1986),(no genres listed) +133053,Wild Team (1985),(no genres listed) +133055,Ironmaster (1983),(no genres listed) +133057,Cicciabomba (1982),(no genres listed) +133059,Daughter of the Jungle (1982),Adventure|Comedy +133063,From Corleone to Brooklyn (1979),Crime +133065,From Hell to Victory (1979),Action|War +133067,Brothers Till We Die (1977),(no genres listed) +133069,The Biggest Battle; Battle Force (1978),Drama|War +133071,"The Cynic, the Rat & the Fist (1977)",Action|Crime|Thriller +133073,Free Hand for a Tough Cop (1976),(no genres listed) +133075,Violent Naples (1976),(no genres listed) +133077,"Rome, Armed to the Teeth (1976)",Action +133079,Syndicate Sadists (1975),Action|Crime|Thriller +133081,Manhunt in the City (1975),(no genres listed) +133083,Gang War in Milan (1973),Action|Crime|Thriller +133085,Knife of Ice (1972),Horror|Mystery +133087,Man from Deep River (1972),Adventure|Horror +133089,Seven Blood-Stained Orchids (1972),Crime|Horror|Thriller +133091,An Ideal Place to Kill (1971),Crime|Thriller +133093,A Quiet Place to Kill (1970),Drama|Thriller +133095,La legione dei dannati (1969),Action|War +133097,Orgasmo (1969),(no genres listed) +133099,A Gun for One Hundred Graves (1968),Western +133101,Desert Commandos (1966),Adventure|Drama|War +133105,"Ringo, It's Massacre Time (1970)",(no genres listed) +133107,Let's Go And Kill Sartana (1971),Western +133109,Due Magnum .38 per una città di carogne (1975),Action|Crime +133111,Mandinga (1976),Adventure|Drama +133115,We Could Be King (2014),Documentary +133117,Canopy (2013),Adventure|Drama|War +133119,Raised by Wolves (2014),Horror +133121,Rites of Spring (2011),Horror|Thriller +133123,Barbie as The Princess & the Pauper (2004),Animation|Children|Comedy +133125,Barbie: Fairytopia (2005),Animation|Children +133127,Barbie of Swan Lake (2003),Animation|Children +133129,Barbie in Princess Power (2015),Animation|Children +133131,Barbie Diaries (2005),Animation|Children +133133,Barbie: Princess Charm School (2011),Animation|Children|Fantasy +133135,Barbie and the Secret Door (2014),Adventure|Animation|Children|Fantasy +133137,Barbie: A Fairy Secret (2011),Animation|Children|Fantasy +133139,Barbie in the 12 Dancing Princesses (2006),Animation|Children +133141,Barbie: The Princess & The Popstar (2012),Animation|Children +133143,Barbie and the Diamond Castle (2008),Animation|Children +133145,Barbie in A Mermaid Tale (2010),Animation|Children|Fantasy +133147,Barbie as the Island Princess (2007),Animation|Children +133149,Barbie in A Mermaid Tale 2 (2012),Animation|Children +133151,Barbie and the Three Musketeers (2009),Animation|Children +133153,Barbie in the Pink Shoes (2013),Animation|Children +133155,Barbie in 'A Christmas Carol' (2008),Animation|Children +133157,Barbie: The Pearl Princess (2014),Animation|Children +133159,Barbie: Mariposa and The Fairy Princess (2013),Animation|Children|Fantasy +133161,Barbie Presents: Thumbelina (2009),Animation|Children +133163,Barbie Fairytopia: Magic of the Rainbow (2007),Animation|Children|Fantasy|Romance +133165,Barbie Fairytopia: Mermaidia (2006),Adventure|Animation|Children|Fantasy +133167,Barbie as Rapunzel (2002),Animation|Children +133169,Barbie and the Magic of Pegasus 3-D (2005),Animation|Children|Romance +133171,Barbie & Her Sisters in A Pony Tale (2013),Animation|Children +133173,Barbie Mariposa and Her Butterfly Fairy Friends (2008),Animation|Children|Fantasy +133175,Barbie and the Rockers: Out Of This World (1987),Animation +133177,Der var engang (1966),Children|Comedy +133179,Nøglen til Paradis (1970),Comedy +133181,Sommer i Tyrol (1964),Children|Comedy +133183,The Casual Vacancy (2015),(no genres listed) +133185,The Bélier Family (2014),Comedy +133187,Green Sails (2000),Action|Thriller +133189,To Kill A Clown (1972),Drama|Thriller +133191,Nothing Personal (1980),Romance +133195,Hitman: Agent 47 (2015),Action|Crime|Thriller +133197,How Sherlock Changed the World (2013),(no genres listed) +133199,Working Girls (1986),Drama +133201,Doug Stanhope: Before Turning the Gun on Himself (2012),(no genres listed) +133203,Doug Stanhope: Oslo - Burning the Bridge to Nowhere (2011),Comedy +133205,Doug Stanhope: Beer Hall Putsch (2013),Comedy +133207,Chelsea Peretti: One of the Greats (2014),Comedy +133209,Listening to You: The Who Live at the Isle of Wight (1998),Documentary +133211,The Who: The Who at Kilburn 1977 (2009),(no genres listed) +133213,Cocaine Blues (1983),(no genres listed) +133215,The Comedians of Comedy: Live at The Troubadour (2007),Comedy|Documentary +133217,B/W (2015),Comedy|Crime|Sci-Fi +133219,Tinker Bell and the Great Fairy Rescue (2010),Adventure|Animation|Children|Fantasy +133221,The Man Who Skied Down Everest (1975),Documentary +133223,One Eyed Girl (2015),Drama|Thriller +133225,Island of Lemurs: Madagascar (2014),Documentary +133227,Billy the Kid (1930),Drama|Romance|Western +133229,Court (2014),(no genres listed) +133231,The Secret Lives of Dorks (2013),Comedy +133233,Run & Jump (2014),Drama +133235,A Fighting Man (2014),Drama +133237,The Last Sentence (2012),Drama +133239,When Comedy Went to School (2013),Comedy|Documentary|Drama +133241,Jimmy P.: Psychotherapy of a Plains Indian (2013),Drama +133243,Call + Response (2008),(no genres listed) +133255,Regret (2013),Drama +133259,Yasmin (2004),Drama +133262,Bluebird (2014),Drama +133264,Charlie Bubbles (1967),(no genres listed) +133266,Man About the House (1974),Comedy +133268,George & Mildred (1980),Comedy +133270,One Little Pill (2014),Documentary|Drama +133272,The Killing Kind (1973),Horror +133274,Bukowski: The Last Straw (1980),Documentary +133276,The Dead Lands,Action +133279,Two Raging Grannies (2013),Documentary +133281,Ricki and the Flash (2015),Comedy|Drama +133283,Lignes de Front (2010),Drama +133285,Back Issues: The Hustler Magazine Story (2014),Documentary|Drama +133287,Kissinger (2011),Documentary +133289,100 Degrees Below Zero (2013),Action|Sci-Fi +133291,Pump (2014),Documentary +133293,Variety (1983),Drama +133295,Cocaine Cowboys: Reloaded (2014),Documentary +133297,Genius on Hold (2013),(no genres listed) +133299,Tar Creek (2009),(no genres listed) +133301,The Water Front (2007),Documentary +133303,Jedi Junkies (2010),Documentary +133305,Breeders (1997),Horror|Sci-Fi +133307,Time Zero: The Last Year of Polaroid Film (2012),Documentary +133309,Warriors Two (1978),Action|Drama +133311,The 'Socalled' Movie (2010),Documentary +133313,Hank: 5 Years from the Brink (2013),Documentary +133315,We’re Not Broke (2012),Documentary +133317,Sushi: The Global Catch (2012),Documentary +133319,Resistance (2015),Documentary +133321,Exile Nation: The Plastic People (2014),(no genres listed) +133323,The Fruit Hunters (2012),Documentary +133325,Ethos (2011),Documentary +133327,Linda and Abilene (1969),Drama|Western +133329,Radio Unnameable (2012),Documentary +133331,Germ (2013),Horror +133333,DamNation (2014),Documentary +133335,Lifted (2010),Children|Drama +133337,Backdoor (2000),Drama +133339,1915 (2015),Drama +133341,The Young Nurses (1973),(no genres listed) +133343,The Workshop (2007),Documentary +133345,The Mad Monster (1942),Drama|Horror|Romance +133347,Ride (2015),Comedy +133349,The Eichmann Show (2015),Drama +133351,A Trick of Light (1995),Drama +133353,Lightning Over Water (1980),Documentary +133355,Notebooks on Cities and Clothes (1989),Documentary +133357,The Seven Five (2014),Documentary +133359,The Ocean of Helena Lee (2015),Drama +133361,The Golden Calf (1968),Comedy|Drama +133365,Partisan (2015),Drama|Thriller +133367,LFO (2013),Drama|Sci-Fi +133369,Sincere Heart (1953),Drama|Romance +133371,Christopher and His Kind (2011),Drama|Romance +133373,The Sicilian Connection (1972),Crime|Thriller +133375,Hush (2012),Thriller +133377,Infini (2015),Horror|Sci-Fi|Thriller +133379,Off World (2013),Sci-Fi +133381,Harry Dean Stanton: Partly Fiction (2012),Documentary +133383,Shrew's Nest (2014),Drama|Horror|Thriller +133385,Shuffle (2012),Mystery|Romance|Thriller +133387,August Winds (2014),Documentary|Mystery +133389,Piku (2015),Comedy|Drama +133391,Babysitter's Black Book (2015),Drama|Thriller +133393,"Tommy Cooper: Not Like That, Like This (2014)",Comedy +133395,Macondo (2014),(no genres listed) +133397,Down and Dangerous (2014),Crime|Thriller +133399,German Angst (2015),Action|Fantasy|Horror|Mystery +133401,Sune i fjällen (2014),Comedy +133404,Black Angel (1980),Drama|Fantasy +133407,Dirty Business (2009),Documentary +133409,Barnum! (1986),(no genres listed) +133411,Open Season (1974),Action|Drama|Thriller +133413,High Road (2012),Comedy +133415,Alexia (2013),Horror|Thriller +133417,Luokkakokous (2015),Comedy +133419,Pitch Perfect 2 (2015),Comedy +133421,The Gospel According to Philip K. Dick (2001),Documentary +133423,Le viager (1972),Thriller +133425,Los corsarios (1971),Action|Adventure|Comedy +133427,Long Lasting Days (1973),(no genres listed) +133429,Get Mean (1976),Western +133431,Carambola's Philosophy: In the Right Pocket (1975),Comedy|Western +133433,Carambola (1974),(no genres listed) +133435,La Compagna di Viaggio (1980),Comedy +133437,Class Enemy (2013),Drama +133439,Farmland (2014),Documentary +133441,Tricked: The Documentary (2013),Documentary +133443,Mutant World (2014),Sci-Fi +133445,The Tartars (1961),Action|Adventure|Drama +133447,Duel of Champions (1961),Adventure +133453,In the shadow of the eagles (1966),Adventure +133455,Crazy Westerners (1967),Western +133457,"Django, Prepare a Coffin (1968)",Action|Western +133461,Massacre in the Black Forest (1977),Action|Adventure|Drama|War +133463,Forgotten Pistolero (1969),Western +133465,"Geometra Prinetti, selvaggiamente Osvaldo (1976)",Comedy +133467,Warbus (1986),Action|War +133469,Ten Zan - Ultimate Mission (1988),Action +133471,Just A Damned Soldier (1988),Action +133473,The Prince and the Pauper (2000),(no genres listed) +133477,Che casino... con Pierino! (1982),Comedy +133479,Escape from Galaxy 3 (1981),Sci-Fi +133481,Yellow Emmanuelle (1977),Drama +133483,Supermen Against the Orient (1973),(no genres listed) +133485,Return of Shanghai Joe (1975),Action|Western +133489,Human Cobras (1971),Crime|Thriller +133493,Three Supermen in the Jungle (1970),(no genres listed) +133497,Goldface il fantastico Superman (1967),Adventure|Crime +133499,The Ten Million Dollar Grab (1967),Crime|Thriller +133501,I guappi non si toccano (1979),(no genres listed) +133503,September Vacation (1979),Drama +133505,Everything for Sale (1969),Drama +133507,Echo Planet (2012),Animation +133509,Love Hotel (2014),(no genres listed) +133511,"I Will, I Will...For Now (1976)",Comedy +133515,How to Commit Marriage (1969),Comedy +133517,The Trap (1959),Crime +133519,That Certain Feeling (1956),(no genres listed) +133521,Strictly Dishonorable (1951),Comedy|Romance +133523,Tomorrow Never Comes (1978),Action|Thriller +133525,Target of an Assassin (1977),(no genres listed) +133527,The Spiral Staircase (1975),Horror|Mystery|Thriller +133529,The Man Called Noon (1973),Western +133531,Innocent Bystanders (1973),Action|Thriller +133533,The Long Day's Dying (1968),Drama +133535,Up The Junction (1968),Drama +133537,The Penthouse (1967),Drama|Thriller +133539,A Buddha (2005),Drama +133541,Two Hundred Thousand Dirty (2014),Comedy +133543,Manos sucias (2014),Drama|Thriller +133545,Just Before I Go (2014),Comedy|Drama +133547,El bosque de Karadima (2015),Drama +133549,Dead Girl (1996),Comedy +133551,"Skatetown, U.S.A. (1979)",Comedy +133555,Winter People (1989),Drama|Romance +133557,Joshua Then and Now (1985),(no genres listed) +133559,Split Image (1982),Drama +133561,Two Gentlemen Sharing (1969),Drama|Romance +133563,Life at the Top (1965),Drama +133565,Tiara Tahiti (1962),(no genres listed) +133567,Macbeth (2006),Action|Drama|Thriller +133569,Metal Skin (1994),Action|Drama +133571,Specters (1987),Horror +133573,Der Schatz (1923),Drama|Romance +133575,Do Detectives Think? (1927),Comedy +133577,You're Darn Tootin' (1928),Comedy +133579,Addicted (2002),Drama|Mystery|Romance|Thriller +133581,Bad Hair (2013),Drama +133583,Bessie (2015),Drama +133585,The Little Chaos (1966),(no genres listed) +133587,Devil's Island (1996),Comedy|Drama +133589,Devil's Island (1926),Drama|Romance +133591,Here Is Your Life (1966),Drama +133593,Iverson (2014),Documentary +133596,Milosc (2012),Drama|Romance +133598,Miss Pacific Fleet (1935),(no genres listed) +133600,The Murder Man (1935),Crime|Drama|Romance|Thriller +133602,Nightingale (2015),Drama|Mystery|Thriller +133604,"Pimps Up, Ho's Down (2000)",Documentary +133606,Rembrandt (1999),(no genres listed) +133608,Saskatchewan (1954),Western +133610,The City Tramp (1966),Drama +133612,Seven Sweethearts (1942),Romance +133614,Smilin' Through (1941),Romance +133616,Tank Force (1958),(no genres listed) +133618,That Wonderful Urge (1948),Romance +133620,The Accused (1949),Crime +133622,The Blue Angel (1959),Drama|Romance +133624,"Coward, The (1915)",Drama|War +133626,The Good Lie (2013),Thriller +133628,The Iron Sheriff (1957),(no genres listed) +133630,The Life of Vergie Winters (1934),(no genres listed) +133632,The Lion Hunters (1951),Action|Adventure|Drama +133636,The Texas Rangers (1951),Western +133638,Tunisian Victory (1944),Documentary|War +133640,Two-Fisted Law (1932),(no genres listed) +133643,The Stone Roses: Made of Stone (2013),Documentary +133645,Carol (2015),Drama|Romance +133647,Thought Crimes (2015),Documentary +133649,Three Inches (2011),Action|Drama|Sci-Fi +133651,El Medico: The Cubaton Story (2012),Documentary +133653,Roald Dahl's Esio Trot (2015),Comedy +133655,"Montevideo, God Bless You! (2010)",Adventure|Drama|Romance +133657,Pédale douce (1996),Comedy +133659,Ravagers (1979),Fantasy|Sci-Fi +133661,Angels Die Hard (1970),Action|Drama +133663,"Welcome Home, Soldier Boys (1972)",Drama +133665,The Ransom (1977),Crime|Thriller +133667,Dear America: Letters Home from Vietnam (1987),Documentary|War +133671,Code Black (2014),Documentary +133673,The King of Arcades (2014),Documentary +133675,Anonymous Rex (2004),Action|Fantasy|Sci-Fi +133677,"Usain Bolt, La Légende (2012)",(no genres listed) +133679,The American Scream (2012),Documentary +133681,Number One (1969),Drama +133683,Mustang! (1959),Western +133689,Pound of Flesh (2015),Action +133691,Stripped (2014),Documentary +133693,Accused (2014),Drama|Thriller +133695,Ankhon Dekhi (2014),Comedy|Drama +133697,Gulaal (2009),Crime|Drama +133699,Black Friday (2004),Crime|Drama|Thriller +133701,Anthrax (2001),(no genres listed) +133703,Rough Cut (2008),Action|Drama +133706,The Buttercream Gang (1992),Children|Drama +133708,For Love or Money (2014),Romance +133710,Strangerland (2015),Drama|Thriller +133712,Office Romance (1977),Comedy|Romance +133714,The Backwater Gospel (2011),(no genres listed) +133716,Bootleggers (1961),Comedy|Crime +133718,Garpastum (2005),(no genres listed) +133720,You Don't Choose Your Family (2011),Adventure|Comedy +133722,Persecuted (2014),Action|Adventure|Drama|Thriller +133724,The Dorm (2014),Horror|Thriller +133727,Susie's Hope (2013),(no genres listed) +133729,Sleepaway Camp III: Teenage Wasteland (1989),Comedy|Horror +133731,After (2012),Mystery|Thriller +133733,The hands (2006),Drama +133735,Betty Blowtorch: And Her Amazing True Life Adventures (2003),Documentary +133737,Design Is One (2012),Documentary +133739,Lenin's Guard (1965),Drama +133741,The Cold Summer of 1953 (1988),Action|Crime|Drama +133743,Kokoko (2012),(no genres listed) +133745,The Ransom of Red Chief (1998),Action|Children|Comedy|Drama +133747,Monsters: Dark Continent (2014),Drama|Sci-Fi|Thriller +133749,Reminiscence (2014),Horror|Thriller +133751,Shatter (1974),Action|Thriller +133753,Teacher of the Year (2015),Comedy +133755,Nightmare Honeymoon (1974),Crime|Horror +133757,The Happening (1967),Comedy +133759,Eyeborgs (2009),Action|Adventure|Sci-Fi|Thriller +133761,The Mountain Road (1960),Drama|War +133763,Away and Back (2015),Drama +133765,Solo para dos (2013),(no genres listed) +133767,Andaz Apna Apna (1994),Comedy|Drama|Romance +133769,Hera Pheri (2000),Comedy +133771,The Lobster (2015),Comedy|Romance|Sci-Fi +133773,Beautiful and Twisted (2015),Crime|Drama|Thriller +133775,"Abar, the First Black Superman (1977)",Action|Drama|Sci-Fi +133778,The Farewell Party (2014),Drama +133780,Güeros (2014),Comedy|Drama +133782,Maggie (2015),Drama|Horror|Thriller +133784,"Ilsa, the Tigress of Siberia (1977)",Horror|Thriller +133786,Special Killers (1973),Crime +133788,The Bamboo House of Dolls (1973),Action|Drama|Horror|War +133790,Stateline Motel (1973),Crime|Drama +133792,The Designated Victim (1971),Thriller +133794,Two Of Us (2000),Drama +133796,Thunderstruck (2004),Comedy +133798,Hot Pursuit (2015),Action|Comedy +133800,Permissive (1970),Drama +133802,Slow West (2015),Action|Thriller|Western +133804,Offline (2012),Drama +133806,The Hybrid (2014),Action|Sci-Fi +133808,Meet the Mormons (2014),Documentary +133810,The Mad (2007),Comedy|Horror|Thriller +133812,Malarek (1988),Action +133814,The Mars Underground (2007),Documentary +133816,Martial Law (1991),Action +133818,Me and the Kid (1993),Children|Comedy|Crime|Drama +133820,Midgets Vs. Mascots (2009),Comedy|Documentary +133822,The Midnight Hour (1985),Comedy|Horror|Romance +133824,The Human Centipede III (Final Sequence) (2015),Horror +133826,Mikey (1992),Horror +133828,Mistrial (1996),(no genres listed) +133830,Model by Day (1994),Action|Adventure +133832,The Green Inferno (2014),Horror|Thriller +133835,Just About Famous (2015),(no genres listed) +133837,Alien Origin (2012),Fantasy|Sci-Fi|Thriller +133841,The Bear (1984),Children|Drama +133845,Lolly-Madonna XXX (1973),Drama +133849,Rita da Cascia (2004),(no genres listed) +133851,In the Shadow of the Sun (2012),Documentary +133853,Chappaqua (1967),Drama +133855,The Sicilian Checkmate (1972),Crime +133857,The Boxer (1972),Drama|Thriller +133859,Deli Man (2015),Documentary +133861,Sparkle (1976),Drama +133863,Rags and Tatters (2013),Drama +133865,Southern Rites (2015),Documentary +133867,Barely Lethal (2015),Action|Adventure|Comedy +133869,MI-5 (2015),Action|Drama|Thriller +133871,Woman Times Seven (1967),Comedy|Drama|Romance +133873,The Fencer (2015),Drama +133875,The Salt of Life (2011),Comedy +133877,Hurricane (1979),Action|Drama|Romance +133879,Carry On Don't Lose Your Head (1966),Comedy +133881,The Stationmaster Meets His Match (1980),Comedy +133883,Suzanne (2013),Drama +133885,"The Other One: The Long, Strange Trip of Bob Weir (2014)",Documentary +133887,Ballet 422 (2014),Documentary +133889,20th Century Oz (1976),(no genres listed) +133891,J.A.C.E. (2011),Drama +133893,Brave Story (2008),Animation|Fantasy|Sci-Fi +133895,Restless Virgins (2013),Drama +133897,Leopardi (2014),Drama +133900,A Fish in the Bathtub (1999),(no genres listed) +133902,A Lost Lady (1934),Drama +133904,Balalaika (1939),(no genres listed) +133907,The Tattoo Connection (1978),Action +133909,Bulldog Drummond's Peril (1938),Adventure|Crime|Mystery|Romance|Thriller +133911,Bulldog Drummond's Bride (1939),Action|Thriller +133913,Bulldog Jack (1935),Comedy|Crime|Mystery|Thriller +133915,Bulldog Drummond at Bay (1937),Action|Thriller +133917,Arrest Bulldog Drummond (1939),Action|Mystery|Thriller +133919,Bulldog Drummond's Secret Police (1939),Mystery|Thriller +133921,Bulldog Drummond in Africa (1938),Action +133923,Bulldog Drummond Comes Back (1937),Action|Crime|Mystery|Thriller +133925,Bulldog Drummond's Revenge (1937),Adventure|Mystery +133927,Bulldog Drummond Strikes Back (1934),Action|Adventure|Mystery +133929,The Return of Bulldog Drummond (1934),Crime +133931,Bulldog Drummond Strikes Back (1947),Action|Crime|Drama +133933,Deadlier Than the Male (1967),Action|Comedy|Thriller +133935,Some Girls Do (1969),Action|Adventure|Comedy +133939,Day-time Wife (1939),Comedy|Romance +133941,2047 - Sights of Death (2014),Action|Sci-Fi|Thriller +133943,Mankillers (1987),(no genres listed) +133945,Deep Web (2015),Documentary +133947,Every Breath (1994),Thriller +133949,Fugly (2014),Comedy|Drama|Thriller +133951,Ginza Cosmetics (1951),Drama +133953,Henry Goes Arizona (1939),(no genres listed) +133955,He's My Girl (1987),Comedy +133957,Homo eroticus (1971),Comedy +133959,Man of the Year (2002),Action|Comedy|Drama|Romance +133961,Mee-Shee: The Water Giant (2005),Adventure|Children|Fantasy +133964,"On Any Sunday, The Next Chapter (2014)",Documentary +133966,Piccadilly Jim (2004),(no genres listed) +133968,Piccadilly Jim (1936),Comedy|Romance +133970,Pony Express (1953),Action|Western +133974,Just a Gigolo (1979),Drama +133976,The Survivor (1981),Horror|Mystery|Thriller +133980,Dark Horse (1992),Children +133982,Shakedown (2002),Action|Drama|Thriller +133984,Shakedown (1950),(no genres listed) +133986,Success At Any Price (1934),Drama +133988,Seventeen Again (2000),Children|Comedy|Drama|Fantasy +133990,Sweet Sixteen (1983),Horror|Thriller +133992,The Disappearance of Garcia Lorca (1996),(no genres listed) +133994,The Dramatics: A Comedy (2015),Comedy|Romance +133998,The Reward (1965),Drama|Western +134000,Trouble for Two (1936),Drama +134002,Up the Creek (1959),(no genres listed) +134004,What Love Is (2007),Comedy|Romance +134006,Wife (1953),Drama +134009,You Can't Run Away from It (1956),(no genres listed) +134011,The Girl with the Hat Box (1927),(no genres listed) +134013,Static (2012),Drama|Horror|Mystery|Thriller +134015,"Flapper, The (1920)",Comedy +134017,You Are My Sunshine (2015),Drama|Romance +134019,The Monkey King (1964),Animation +134021,5 to 7 (2014),Comedy|Drama|Romance +134023,Seymour: An Introduction (2014),Documentary +134025,Open Secret (2013),(no genres listed) +134027,Puffball (2007),Drama|Fantasy|Horror +134029,Into Thin Air: Death on Everest (1997),Action|Adventure|Drama +134031,Arctic Blue (1993),Action|Thriller +134033,Parole de flic (1985),Thriller +134035,Fear in the Night (1947),Drama|Thriller +134037,War-Time Romance (1983),(no genres listed) +134039,Vesna (1947),Comedy|Romance +134041,Afonya (1975),Comedy|Drama|Romance +134043,The Flight (1970),Drama|War +134045,Byelorussian Station (1971),Drama +134053,Perché non facciamo l' amore (1981),(no genres listed) +134057,"Due cuori, una cappella (1975)",(no genres listed) +134059,"It Can Be Done, Amigo (1972)",Comedy|Western +134061,Possibility Zero (1969),Action|Drama|War +134063,Halleluja for Django (1967),(no genres listed) +134065,My Name Is Pecos (1966),(no genres listed) +134067,Hercules the Avenger (1965),Action|Adventure|Drama|Fantasy +134069,Starship Rising (2014),Action|Sci-Fi +134071,No Path Through Fire (1968),Drama|War +134073,We'll Live Till Monday (1968),Drama|Romance +134075,Uncle Vanya (1971),(no genres listed) +134077,The Red Snowball Tree (1974),Drama +134079,The Beginning (1970),Comedy|Romance +134081,Monologue (1972),Drama +134083,Walking the Streets of Moscow (1963),Comedy|Romance +134085,Don't Grieve! (1969),Comedy|Drama|Romance +134087,Oblomov (1980),Comedy|Drama|Romance +134089,Triumph Over Violence (1965),Documentary|War +134091,The Duel (1973),Drama +134093,Short Stories (2012),Comedy|Drama|Mystery +134095,My Love (2006),Animation|Drama +134097,Gardens in Autumn (2006),(no genres listed) +134099,The Cow (1990),Animation|Drama +134101,A Driver for Vera (2004),Drama +134103,Blackbird (2007),Drama +134105,Plus one (2008),Comedy|Drama +134107,The Stroll (2003),(no genres listed) +134109,Radio Day (2008),Comedy +134111,Dura (2005),Drama +134115,Waiting for Godot (2001),Drama +134117,San Andreas Quake (2015),Action|Sci-Fi +134120,"Unman, Wittering and Zigo (1971)",Mystery|Thriller +134122,Voyage to the Planet of Prehistoric Women (1968),Sci-Fi +134124,Lady Frankenstein (1973),Horror|Sci-Fi +134126,The Lookalike (2014),Crime|Drama|Thriller +134128,The Anonymous People (2013),Documentary +134130,The Martian (2015),Adventure|Drama|Sci-Fi +134132,Massacre (1989),Horror +134134,Angel of Death (1987),Action|Thriller +134142,Malabimba (1979),(no genres listed) +134146,My Father's Wife (1976),Drama +134150,Cry of a Prostitute (1974),Crime|Drama +134152,Treasure Island (1972),Adventure|Children +134154,What the Peeper Saw (1971),Drama|Horror|Thriller +134156,Road (2014),Documentary +134158,Return to Sender (2015),Thriller +134160,Vazhakku Enn 18/9 (2012),Drama +134162,I Am Omega (2007),Action|Horror|Sci-Fi|Thriller +134164,The Alien Factor (1978),Horror|Sci-Fi +134166,Magical Universe (2014),Documentary +134168,Concerning Violence (2014),Documentary +134170,Kung Fury (2015),Action|Comedy|Fantasy|Sci-Fi +134172,Morgan (2012),Drama +134174,Follow Me: The Yoni Netanyahu Story (2012),Documentary|War +134176,The Light Thief (2011),Drama +134178,Detective Byomkesh Bakshy (2015),Crime|Thriller +134180,Badlapur (2015),Action|Drama +134182,Holiday (2014),Action|Romance|Thriller +134184,Elections Day (2007),Comedy +134186,Hecate (1982),Drama|Romance +134188,Day of Violence (1977),Action|Crime|Thriller +134192,White Pop Jesus (1980),(no genres listed) +134194,The Last Desperate Hours (1974),Action|Crime|Thriller +134196,Il sole nella pelle (1972),Drama|Romance +134198,Agente Logan - missione Ypotron (1966),Action|Adventure|Crime|Sci-Fi|Thriller +134202,Nobody's Perfect (2008),Documentary +134204,A Hard Day (2014),Action|Crime|Thriller +134206,Child's Play (1972),Thriller +134208,Woman in a Dressing Gown (1957),Drama|Romance +134210,Shinsengumi: Assassins of Honor (1970),Action|Drama +134212,Tiger Bay (1959),Drama|Thriller +134214,Youth (2015),Drama +134216,Crash Landing (1958),(no genres listed) +134218,Escape from San Quentin (1957),Crime +134220,Don't Knock The Rock (1956),(no genres listed) +134222,Yield to the Night (1956),Drama +134224,The Yellow Balloon (1953),(no genres listed) +134226,No Trees in the Street (1959),Drama +134228,A Man Could Get Killed (1966),Comedy +134230,Wake Up Sid (2009),Comedy|Drama|Romance +134232,Mission Kashmir (2000),Action|Drama +134234,Lakshya (2004),Action|Drama +134236,Iqbal (2005),Drama +134238,Ghulam (1998),Crime|Drama|Romance +134240,Rangeela (1995),(no genres listed) +134242,The Annunciation (Angyali üdvözlet) (1984),Drama +134244,Streetwise (1984),Documentary +134246,Survivor (2015),Action|Thriller +134248,Hot Girls Wanted (2015),Documentary +134250,Striped Trip (1961),Comedy +134252,That Munchhausen (1979),Comedy|Drama|Fantasy +134254,"C'mon, Let's Live a Little",(no genres listed) +134256,Poliisin Poika (1998),(no genres listed) +134260,Ten Little Indians (1989),Crime|Mystery|Thriller +134262,The Commander (1988),Action|War +134264,Phantom of Death (1988),Horror +134266,To Kill a Stranger (1987),(no genres listed) +134268,Ground Zero (1987),Thriller +134274,Cobra Mission (1986),Action|Adventure +134276,Nothing Underneath (1985),Thriller +134278,The Treasure of the Amazon (1985),Action|Thriller +134280,Where Is Parsifal? (1985),(no genres listed) +134282,Jaguar Lives! (1979),Action|Comedy +134284,"Good Luck, Miss Wyckoff (1979)",(no genres listed) +134286,L'Homme en colère (1978),Drama +134290,The Uncanny (1977),Horror +134292,Land of the Minotaur (1976),Drama|Horror +134294,Journey Into Fear (1975),(no genres listed) +134296,Barry McKenzie Holds His Own (1974),(no genres listed) +134298,The Mutations (1974),Horror +134302,Wedding in White (1972),Drama +134304,The Madwoman of Chaillot (1969),Comedy|Drama +134306,What a Carve Up! (1961),Comedy|Horror|Mystery|Thriller +134308,Spare the Rod (1961),Drama +134310,The Wind of Change (1961),Drama +134312,No Love for Johnnie (1961),(no genres listed) +134320,The Wind Cannot Read (1958),Drama +134322,The Man in the Sky (1957),Drama +134326,The Taming of the Scoundrel (1980),Comedy +134328,La maquina de bailar (2006),(no genres listed) +134330,Bombay Talkies (2013),(no genres listed) +134332,Bhool Bhulaiyaa (2007),Comedy|Horror|Thriller +134334,Phir Hera Pheri (2006),Comedy +134336,Mohra (1994),Action|Drama|Thriller +134338,Sarkar Raj (2008),Action|Adventure|Drama +134340,Ek Ajnabee (2005),(no genres listed) +134342,Sarkar (2005),Action|Drama +134344,Hulchul (2004),Comedy|Drama|Romance +134346,Samay: When Time Strikes (2003),(no genres listed) +134348,Border (1997),Action +134350,The Red House (1947),Mystery|Thriller +134352,1942: A Love Story (1994),Action|Drama|Romance +134354,Nayak: The Real Hero (2001),Action|Drama +134356,Virasat (1997),(no genres listed) +134358,The Redwood Massacre (2014),Fantasy|Horror +134360,A Gift of Miracles (2015),Drama +134362,Curse of the Witching Tree (2015),Horror +134366,The Last Days of the World (Sekai saigo no hibi) (2011),Comedy|Drama|Fantasy +134368,Spy (2015),Action|Comedy|Crime +134370,Still the Water (2014),Romance +134372,"Strange Affair of Uncle Harry, The (1945)",Drama|Thriller +134374,Tinker Bell (2008),Adventure|Animation|Children|Fantasy +134376,Dazzle (1999),Children|Fantasy +134378,Living Is Easy With Eyes Closed (2013),Comedy|Drama +134381,Melody (2014),Drama +134383,Power Trip (2003),Documentary +134385,Pingpong (2006),Drama +134387,At Ellen’s Age (2011),Comedy|Drama +134389,Dögkeselyű (1982),Crime|Drama|Thriller +134391,Domino Kid (1957),Western +134393,Trainwreck (2015),Comedy|Romance +134395,The Busy Body (1967),Comedy|Drama +134398,The Ministers (2009),Crime|Thriller +134402,Zephyr Springs (2013),Thriller +134405,È arrivato mio fratello (1985),(no genres listed) +134407,7 Kilos in 7 Days (1986),(no genres listed) +134409,Department Store (1986),Comedy +134411,Noi uomini duri (1987),(no genres listed) +134413,Roba da ricchi (1987),(no genres listed) +134415,Da grande (1987),(no genres listed) +134423,Le comiche (1990),Comedy +134425,Piedipiatti (1990),(no genres listed) +134427,The Comics 2 (1991),Comedy +134429,Infelici e contenti (1992),(no genres listed) +134433,Le nuove comiche (1994),(no genres listed) +134437,Mollo Tutto (1995),Comedy +134443,Oggi sposi (2009),Comedy +134445,Ma che bella sorpresa (2015),Comedy +134447,He's Worse than Me (1985),Comedy +134449,Il Ragazzo di Campagna (1984),Comedy +134451,Questo e quello (1983),Comedy +134453,Rich and Poor (1983),Comedy|Romance +134455,Mani di fata (1983),Comedy +134459,"Heads I Win, Tails You Lose (1982)",Comedy +134463,Nessuno è perfetto (1981),Children|Drama +134465,Mia moglie è una strega (1981),Comedy +134467,Fico d'India (1980),Comedy +134469,I'm Photogenic (1980),Comedy +134471,Hot Potato (1979),Comedy +134473,Saxofone (1979),Comedy +134475,Io tigro tu tigri egli tigra (1978),(no genres listed) +134479,Here We for Example... (1977),Comedy +134485,Sturmtruppen (1976),(no genres listed) +134487,"Oh, Serafina! (1976)",Comedy|Drama +134491,Luna di miele in tre (1976),(no genres listed) +134495,"Paolo Barca, maestro elementare, praticamente nudista (1975)",(no genres listed) +134497,La poliziotta (1974),(no genres listed) +134499,Night Train to Terror (1985),Horror +134501,The Bonesetter (2004),(no genres listed) +134503,The Offspring (1987),(no genres listed) +134505,Si le vent soulève les sables (2007),Drama|War +134507,The Alley Tramp (1968),(no genres listed) +134509,A Virgin Among the Living Dead (1973),Horror +134511,Flesh Eating Mothers (1988),Comedy|Horror +134513,Matilda (1978),Children|Comedy|Crime +134515,BMX Bandits (1983),Adventure|Crime|Drama +134517,Forbidden World (1982),Horror|Sci-Fi +134519,Suspicious Truth (2015),Comedy +134521,Casa Grande (2014),Drama +134524,Turtle Power: The Definitive History of the Teenage Mutant Ninja Turtles (2014),Documentary +134526,Zodiac: The Race Begins... (2012),Adventure|Animation +134528,Aloha (2015),Comedy|Drama|Romance +134530,Mars (2010),Animation|Comedy|Romance|Sci-Fi +134532,Wonderwall (1968),Drama|Romance +134534,Chatterbox! (1977),Comedy|Fantasy +134536,Cannibal Vegetarian (2012),Drama|Thriller +134538,The Battle of Neretva (1969),Drama|War +134540,Tempest (1928),Drama|Romance +134542,The Cheating Pact (2013),(no genres listed) +134549,Piazza Fontana: The Italian Conspiracy (2012),Drama +134551,Steel (2012),Drama +134553,Tutto tutto niente niente (2012),Comedy +134555,Tutta colpa di Freud (2014),Comedy +134557,Amiche da morire (2013),Comedy|Crime|Romance +134559,See You Tomorrow (2013),Comedy +134563,Sole a catinelle (2013),Comedy +134565,What a Beautiful Day (2011),Comedy +134567,With This Ring (2015),Comedy|Romance +134569,She's Funny That Way (2015),Comedy +134571,Pudhupettai (2006),(no genres listed) +134573,The Special Need (2013),Comedy|Documentary +134575,The Mafia Only Kills in Summer (2013),Comedy|Crime|Romance +134577,The Muthers (1976),Action|Drama +134579,After Lucia (2012),Drama +134581,A Fierce Green Fire (2013),Documentary +134583,Misery Loves Comedy (2015),Comedy|Documentary +134585,Six Acts (2012),Drama +134587,Song One (2014),Drama +134589,Vessel (2014),Documentary +134591,The Lion’s Mouth Opens (2014),(no genres listed) +134593,Maqbool (2003),Action +134595,Man of the Story (1996),(no genres listed) +134597,Convict (2014),Action|Crime|Drama +134599,"The Rolling Stones: Ladies & Gentlemen, the Rolling Stones (1973)",Documentary +134601,Lost Soul: The Doomed Journey of Richard Stanley's Island of Dr. Moreau (2014),Documentary +134603,The Nun (2013),Drama +134605,Men Don't Cry (1968),Comedy +134607,Autumn (1990),Comedy +134609,Kilplased (1974),Animation +134611,Spring (1969),Comedy|Drama +134613,Summer (1976),Comedy|Drama +134615,The Last Relic (1969),Adventure|Romance +134617,Tommy Tucker's Tooth (1922),Animation|Comedy|Documentary +134619,Alice's Wonderland (1923),Animation|Comedy +134621,A Flying Ship (1979),Animation|Children +134623,Dragon Hill (2002),Animation +134625,The Last Outlaw (1993),Action|Western +134627,"Arabella, the pirate's daughter (1983)",(no genres listed) +134629,Flight World War II (2015),Action|Sci-Fi|War +134631,Living Images (2013),Comedy|Drama|Romance +134633,Tony 10 (2012),Children +134635,Magnus (2007),Drama +134637,Orps: The Movie (2009),Children|Comedy +134639,My Sister's Kids in Africa (2013),Adventure|Children|Comedy +134641,Cherry Tobacco (2014),Drama|Romance +134643,Dungeons & Dragons: Wrath of the Dragon God (2005),Action|Adventure|Fantasy +134645,Ruudi (2006),Children|Comedy|Fantasy +134647,The Rain Fairy (2010),Children|Fantasy +134649,Bad Hair Friday (2012),Thriller +134651,Freerunner (2011),Action +134653,Hier kommt Lola (2010),Children|Comedy|Drama +134655,Blind Rage (1978),(no genres listed) +134657,Cupcakes (2013),Comedy +134659,Hibernatus (1969),Comedy|Sci-Fi +134661,The Cry of the Owl (1987),Drama|Romance +134664,Enter the Dangerous Mind (2013),Thriller +134666,The Amazing Mr Blunden (1972),Children|Fantasy +134668,A Dog of Flanders (1959),Children|Drama +134671,Ace of Aces (1933),Drama|War +134673,African Treasure (1952),Adventure +134676,Bomba and the Jungle Girl (1952),Action|Adventure|Drama +134678,The Games Maker (2014),Adventure|Children +134680,Taxi (2015),Comedy|Drama +134682,Cannon for Cordoba (1970),Action +134684,Conagher (1991),Action|Romance|Western +134687,Don't Tell the Wife (1937),Comedy +134689,Getting Gertie's Garter (1945),Comedy +134691,Getting Gertie's Garter (1927),Comedy|Romance +134693,Greencard Warriors (2014),Action|Drama|Romance +134695,It's a Dog's Life (1955),Comedy|Drama +134700,Sadilishteto (2014),Drama +134702,Wir waren Könige (2014),Crime|Thriller +134704,Comedy Central Roast of Charlie Sheen (2011),Comedy +134706,Comedy Central Roast of William Shatner (2006),Comedy +134708,Comedy Central Roast of Donald Trump (2011),Comedy +134710,I Am Road Comic (2014),Documentary +134712,Magician: The Astonishing Life and Work of Orson Welles (2014),Documentary +134714,Brush with Danger (2014),Action|Drama|Thriller +134720,Ordeal by Innocence (1985),Crime|Mystery|Thriller +134722,Robbery (1967),Crime|Thriller +134724,Satellite in the Sky (1956),Sci-Fi +134726,Secret Mission (1942),Drama|War +134728,Slightly French (1949),Comedy|Romance +134730,So Goes My Love (1946),Comedy|Drama|Romance +134732,Souls at Sea (1937),Adventure +134740,The Bride Walks Out (1936),Comedy|Romance +134743,The Demon (1978),Thriller +134745,Zero Focus (1961),Crime|Drama|Mystery|Thriller +134747,The Deadly Affair (1966),Crime|Drama|Mystery|Romance|Thriller +134749,The Double Man (1967),Mystery|Thriller +134751,The Fantastic Flying Books of Mr. Morris Lessmore (2011),Adventure|Animation|Children|Drama +134753,The Gangster (2012),Action|Drama +134755,The Impossible Years (1968),Comedy|Drama +134757,The Last Hunt (1956),Western +134759,Passenger (1963),Drama|War +134761,The Passenger (2005),(no genres listed) +134763,To Trap A Spy (1964),Adventure +134765,Tomorrow Is Another Day (1951),Crime +134767,Warpath (1951),Western +134769,Way Down South (1939),Crime +134771,Whiplash (1948),Drama +134773,The Fiend of Dope Island (1961),Adventure|Crime|Drama +134775,Dragon Blade (2015),Action|Adventure|Drama +134777,Jab Tak Hai Jaan (2012),Drama|Romance +134779,Mere Brother Ki Dulhan (2011),Comedy|Drama|Romance +134781,I Hate Luv Storys (2010),Comedy|Drama|Romance +134783,Entourage (2015),Comedy +134785,London Road (2015),Adventure|Mystery|Thriller +134787,Follow Me (1969),Documentary +134789,If You Were Young: Rage (1970),Drama +134791,Erotikon (1920),Comedy|Drama|Romance +134794,Backyard Dogs (2001),Action|Comedy +134796,Bitter Lake (2015),Documentary +134798,How to Save a Marriage and Ruin Your Life (1968),Comedy|Romance +134800,Ventoux (2015),Drama +134802,Murder of a Cat (2014),Comedy|Thriller +134804,Das Ende der Geduld (2014),Drama +134806,Demons of the Mind (1972),Horror|Thriller +134808,No Way Jose (2015),Comedy +134810,Time Of My Life (2012),(no genres listed) +134812,Der Samurai (2014),Fantasy|Horror|Thriller +134815,Happy Ending (2014),Comedy +134817,Heaven and Earth Magic (1962),(no genres listed) +134819,Comedy Central Roast of Flavor Flav (2007),Comedy +134821,Tu dors Nicole (2014),Comedy|Drama +134823,Freedom (2014),Children|Drama +134827,Our Grand Despair (2011),Drama +134829,Ashens and the Quest for the Gamechild (2013),Adventure|Comedy +134831,Paranormal Whacktivity (2013),Comedy|Horror +134833,Comedy Central Roast of Pamela Anderson (2005),Comedy +134835,The Golden Bat (1966),(no genres listed) +134838,Festival (1967),Documentary|Musical +134840,The Prospects (2011),(no genres listed) +134843,Die Farbe (2010),Horror|Sci-Fi +134845,Foxtrot (1976),Adventure|Drama|Thriller +134847,Ghost Graduation (2012),Comedy +134849,Duck Amuck (1953),Animation|Children|Comedy +134851,5 Flights Up (2014),Drama +134853,Inside Out (2015),Adventure|Animation|Children|Comedy|Drama|Fantasy +134855,The World Made Straight (2015),Drama +134857,Love in the Time of Civil War (2014),(no genres listed) +134859,The Wolfpack (2015),Documentary +134861,Trevor Noah: African American (2013),(no genres listed) +134863,"Big Love Story, A (2012)",Comedy|Romance +134865,Blackie the Pirate (1971),Action|Adventure|Comedy +134867,Tanu Weds Manu (2011),Comedy|Drama|Romance +134869,Documented (2014),Documentary +134871,The Sisterhood of Night (2015),Drama +134873,Ginger (1971),Action|Crime|Drama +134875,The Abductors (1972),Action|Drama|Thriller +134879,Soaked in Bleach (2015),Crime|Documentary +134881,Love & Mercy (2014),Drama +134883,Technotise: Edit & I (2009),Animation|Sci-Fi|Thriller +134886,Yessongs (1975),Documentary +134888,Glastonbury Fayre (1972),Documentary +134892,Reflections of Light (1988),Drama +134894,The Murder Secret (1988),Horror +134896,Fair of the Dove (1935),(no genres listed) +134898,Satan's Baby Doll (1982),(no genres listed) +134900,Snow White and 7 Wise Men (1982),Comedy +134902,Emmanuelle in the Country (1978),Comedy +134904,La banda Vallanzasca (1977),Crime +134906,Fasthand (1973),(no genres listed) +134908,For a Book of Dollars,(no genres listed) +134910,Kill the Poker Player (1972),(no genres listed) +134912,The Masked Thief (1975),Western +134915,Amusement (2008),Horror|Thriller +134917,The Better Angels (2014),Drama +134919,Leonie (2010),Drama +134921,A Year in Burgundy (2013),Documentary +134923,The Seven Minutes (1971),Drama +134929,To Forget Venice (1979),(no genres listed) +134931,Tulips of Haarlem (1970),(no genres listed) +134933,Tenderly (1968),Comedy +134935,Paul Goodman Changed My Life (2011),Documentary|Drama +134937,Throw Down Your Heart (2009),Documentary +134939,The Garden (2008),Documentary +134941,All My Friends Are Funeral Singers (2010),Comedy|Drama +134943,Spork (2011),Comedy +134945,Police Story 2013 (2013),Action|Crime|Drama|Thriller +134947,Dirt! The Movie (2009),Documentary +134949,Just Like Home (2007),Comedy|Drama +134951,Remote Area Medical (2013),Documentary +134953,The Listening Project (2008),Documentary +134955,New Muslim Cool (2009),Documentary +134957,Ada Apa Dengan Cinta? (2002),Drama +134959,Without You I'm Nothing (1990),Comedy +134963,Café Express (1981),Comedy +134965,Gros câlin (1979),(no genres listed) +134967,Il giocattolo (1979),(no genres listed) +134969,Nudo di donna (1981),(no genres listed) +134971,In nome del papa re (1977),Drama +134973,Quelle strane occasioni (1976),(no genres listed) +134977,Basta Che Non Si Sappia In Giro! (1976),Comedy +134979,"Goodnight, Ladies and Gentlemen (1976)",Comedy +134981,Attenti al buffone (1975),(no genres listed) +134985,"Girolimoni, il mostro di Roma (1972)",Comedy|Drama +134987,"In Love, Every Pleasure Has Its Pain (1971)",Comedy +134989,Trastevere (1971),Comedy +134991,Roma bene (1971),Comedy +135001,Operation Snafu (1970),Action|Comedy|Drama|War +135003,The American Ruling Class (2005),Documentary +135005,Vedo nudo (1969),(no genres listed) +135007,Will Our Heroes Be Able to Find Their Friend Who Has Mysteriously Disappeared in Africa? (1968),Adventure|Comedy|Fantasy +135009,"Straziami, ma di baci saziami (1968)",(no genres listed) +135013,The Head Of The Family (1967),Comedy +135015,The Treasure of San Gennaro (1966),Comedy +135017,"Me, Me, Me... and the Others (1966)",(no genres listed) +135019,Adultery Italian Style (1966),Comedy +135021,Made in italy (1965),Comedy +135023,I Knew Her Well (1965),Drama +135025,The Topp Twins: Untouchable Girls (2011),Comedy|Documentary +135031,"Toto, Peppino, and the Hussy (1956)",Comedy +135033,Strigoi (2009),Comedy|Drama|Fantasy|Horror +135035,"Guardia, Guardia Scelta, Brigadiere e Maresciallo (1956)",Comedy +135037,The Bachelor (1955),(no genres listed) +135039,Gli innamorati (1955),(no genres listed) +135041,Eames: The Architect & The Painter (2011),Documentary +135049,Herbie Hancock: Possibilities (2006),(no genres listed) +135055,The End of a Mystery (2003),Drama +135057,De Vliegende Hollander (1995),(no genres listed) +135061,In nome del popolo sovrano (1990),(no genres listed) +135065,Complexes (1965),(no genres listed) +135069,Questa volta parliamo di uomini (1965),Comedy +135071,The Dolls (1965),Comedy|Romance +135073,High Infidelity (1964),(no genres listed) +135077,La Parmigiana (1963),(no genres listed) +135079,I Motorizzati (1962),(no genres listed) +135081,Circo (2011),Documentary +135083,Anni ruggenti (1962),(no genres listed) +135087,The Last Judgment (1961),(no genres listed) +135095,"Totò, Fabrizi e i giovani d'oggi (1960)",Comedy +135097,L'Impiegato (1960),Comedy +135099,Fiasco in Milan (1959),Comedy +135103,"Venice, the Moon and You (1958)",Comedy +135105,Adorabili e bugiarde (1958),(no genres listed) +135113,Edie & Thea: A Very Long Engagement (2009),Children|Documentary|Drama|Romance +135115,Men Who Swim (2010),Documentary +135117,Before Stonewall (1984),Documentary +135119,Iphigenia (1977),Action|Drama +135121,Big Time (1989),Documentary|Drama|Romance +135123,Jess + Moss (2011),Drama|Romance +135125,Box Elder (2008),(no genres listed) +135127,Metro (2013),Action|Thriller +135129,The Drunk (2014),(no genres listed) +135131,Mercenaries (2014),Action|Adventure +135133,The Hunger Games: Mockingjay - Part 2 (2015),Adventure|Sci-Fi +135135,Max (2015),Adventure|Children|Drama +135137,Pixels (2015),Action|Comedy|Sci-Fi +135141,Allegiant: Part 1 (2016),Adventure|Sci-Fi +135143,Fantastic Beasts and Where to Find Them (2016),Fantasy +135147,Elle l'adore (2014),Comedy +135149,"Westward Ho, The Wagons! (1956)",Western +135151,Forever (2014),Drama +135153,Slightly Scarlet (1956),Action|Crime|Documentary|Thriller +135155,Letter to Brezhnev (1985),Comedy|Romance +135157,Entertaining Mr. Sloane (1970),Comedy +135159,The Gruesome Twosome (1967),Comedy|Horror +135161,The Bonnie Parker Story (1958),Adventure|Crime +135164,Alvin Purple (1973),Comedy +135166,Curfew (2012),Drama +135168,Smithereens (1982),Drama +135170,Pink Narcissus (1971),Drama|Romance +135172,The Brain from Planet Arous (1957),Sci-Fi +135174,Got the Facts on Milk? (2011),Documentary|Drama +135176,Lioness (2008),Documentary +135178,Dawg Fight (2015),Documentary +135180,K2: Siren of the Himalayas (2012),Adventure|Documentary +135182,The Men Who Built America (2012),Documentary +135184,Gunnm (1993),Action|Animation|Crime +135186,Daddy and the Muscle Academy (1991),Documentary +135188,Sebbe (2010),Drama +135190,Mission Blue (2014),Documentary +135192,E-Team (2014),Documentary +135194,"The Man Nobody Knew: In Search of My Father, CIA Spymaster William Colby (2011)",Documentary|Drama +135196,Forced Entry (1975),(no genres listed) +135198,The Hairdresser (2010),Comedy|Drama +135200,Chocolate City (2015),Drama +135202,Prime Suspect: Scent of Darkness (1995),(no genres listed) +135204,Madras Cafe (2013),Thriller +135206,Millionaires Express (1986),Action|Comedy +135208,Drool (2009),Comedy|Drama +135210,Binta and the Great Idea (2004),Children|Drama +135212,West Bank Story (2005),Comedy +135214,Skills Like This (2007),Comedy +135216,The Star Wars Holiday Special (1978),Adventure|Children|Comedy|Sci-Fi +135218,Chanthaly (2013),Drama|Horror +135220,Camp Takota (2014),Comedy +135222,Blue Summer (1973),Comedy|Drama +135224,Hamari Adhuri Kahaani (2015),(no genres listed) +135226,Such Good People (2014),Comedy|Mystery +135228,The Possibilities Are Endless (2014),Documentary +135230,Mostly Ghostly: Have You Met My Ghoulfriend? (2014),Children|Fantasy +135232,Jailbait Babysitter (1977),Comedy +135234,Pocket Ninjas (1997),Action|Children +135236,Occupy Love (2013),Documentary|Drama +135238,The Sky Above Us (2015),Drama|War +135240,Prime Suspect 5: Errors of Judgement (1996),Crime|Drama +135242,On the Way to School (2013),Documentary +135244,Frankenstein (2005),Drama|Horror|Mystery|Sci-Fi +135246,3: The Dale Earnhardt Story (2004),Drama +135248,Johnny Tsunami (1999),Children|Drama +135250,Johnny Kapahala - Back on Board (2007),Children|Comedy|Drama +135252,'Twas the Night (2001),Children +135254,Johnny Appleweed (2008),(no genres listed) +135256,The Ultimate Christmas Present (2000),Children|Comedy +135258,"Merry Christmas, Drake and Josh (2008)",Comedy +135260,Problem Child 3 (1995),Comedy|Fantasy +135262,The Paper Brigade (1997),Adventure|Children|Comedy +135264,Zenon: Girl of the 21st Century (1999),Adventure|Children|Comedy +135266,Zenon: The Zequel (2001),Adventure|Children|Comedy|Sci-Fi +135268,Zenon: Z3 (2004),Adventure|Children|Comedy +135270,"Up, Up, and Away (2000)",Action|Children +135272,Don't Look Under the Bed (1999),Children|Drama +135274,The Luck of the Irish (2001),Adventure|Children|Comedy +135276,Eddie's Million Dollar Cook Off (2003),(no genres listed) +135278,Wendy Wu: Homecoming Warrior (2006),Action|Adventure|Children +135280,18 Year Old Virgin (2009),Comedy +135282,Web Junkie (2014),Documentary +135286,The Curse of Inferno (1997),Comedy|Crime|Drama +135288,Mr. Holmes (2015),Drama|Mystery +135290,Aachi and Ssipak (2006),Action|Animation|Horror +135292,Bite Size (2014),Documentary +135294,Sniper: Weapons of Retaliation (2009),Action|Drama|War +135296,The Twin (1984),Comedy +135298,Les Coquillettes (2013),Comedy|Drama +135300,Chicks (2010),(no genres listed) +135304,Toto in Color (1953),Comedy +135310,The Unfaithfuls (1953),(no genres listed) +135312,Toto and the King of Rome (1951),Comedy +135314,A Day in Court (1953),Comedy|Drama +135316,An American in Rome (1954),Comedy +135334,The Overtaxed (1959),Comedy +135336,Hard Times For Vampires (1959),(no genres listed) +135338,Letto a Tre Piazze (1961),Comedy +135340,Totò Diabolicus (1963),Comedy +135342,Psycosissimo (1962),Comedy +135344,Copacabana Palace (1962),Comedy +135348,I Due Colonnelli (1962),Comedy +135350,Toto vs the Four (1963),Comedy +135352,Heroes of the West (1965),(no genres listed) +135354,Twins from Texas,(no genres listed) +135362,La feldmarescialla (1967),(no genres listed) +135364,Caprice Italian Style (1968),Comedy +135370,Il vichingo venuto dal sud (1971),(no genres listed) +135374,L'uccello migratore (1972),Comedy +135376,Anastasia mio fratello ovvero il presunto capo dell'Anonima Assassini (1973),Comedy|Crime +135378,The Knock Out Cop (1973),Action|Comedy|Crime|Drama +135380,Flatfoot in Hong Kong (1975),Action|Comedy|Drama|Thriller +135382,L'Italia s'è Rotta (1976),Comedy +135384,Febbre da Cavallo (1976),Comedy +135388,Flatfoot in Africa (1978),Action|Comedy|Crime|Drama +135392,Dottor Jekyll e gentile signora (1979),(no genres listed) +135398,Bonnie e Clyde all'italiana (1982),Comedy +135400,"Sballato, gasato, completamente fuso (1982)",(no genres listed) +135404,Gogol Bordello Non-Stop (2009),Documentary +135406,The Antics Roadshow (2011),Documentary +135408,Intangible Asset Number 82 (2008),Documentary +135410,Jig (2011),Documentary +135412,Eco-Pirate: The Story of Paul Watson (2011),Documentary +135414,The Last White Knight (2012),(no genres listed) +135416,Spies of Mississippi (2014),(no genres listed) +135420,"The Farm: Angola, USA (1998)",Documentary +135422,The Jewish Cardinal (2013),Drama +135424,Bitter Dream (2004),Comedy|Drama +135426,Fantastic Beasts and Where to Find Them 2 (2018),(no genres listed) +135430,Impact (2009),Action|Adventure|Drama +135432,Mercenaries (2011),Action|Drama +135434,Nanny Cam (2014),Drama|Mystery|Thriller +135436,The Secret Life of Pets (2016),Animation|Comedy +135438,Underground (1976),Documentary +135440,Edifício Master (2002),Documentary +135442,The Skeleton Dance (1929),Animation +135444,A.C.A.B.: All Cops Are Bastards (2012),Action|Crime|Drama +135452,Frankenstein vs. The Mummy (2015),Horror +135454,Alien vs. Ninja (2010),Action|Horror|Sci-Fi|Thriller +135456,Ghost in the Shell: Stand Alone Complex - The Laughing Man (2005),Action|Animation|Crime|Sci-Fi +135460,Pablo (2012),(no genres listed) +135462,All the Wilderness (2014),Drama +135464,Walking the Camino: Six Ways to Santiago (2013),Documentary +135466,Evil Behind You (2006),Action|Thriller +135468,Senior Project (2015),Comedy|Drama +135470,Without Fail (2014),Comedy +135472,Les gazelles (2014),Comedy +135474,Mariage chez les Bodin's (2008),Comedy +135476,Amélie au pays des Bodin's (2010),Comedy +135478,Obsessed (2002),Drama|Thriller +135480,The Emperor's New Clothes (2015),Documentary +135484,White Tiger (2012),Action|Adventure|Fantasy|War +135486,Guardian (2001),Action|Drama|Horror|Sci-Fi +135488,Mom's Got a Date With a Vampire (2000),(no genres listed) +135490,Love Lies Bleeding (2008),Action|Crime|Thriller +135492,Kaaka Muttai (2015),(no genres listed) +135494,B.A. Pass (2013),Drama +135498,Once Upon a Time in High School (2004),Action|Drama|Romance +135500,Gabbar Is Back (2015),Action|Drama +135502,The Boy and the World (2013),Animation +135504,Little Boy (2015),Comedy|Drama|War +135506,Do You Believe? (2015),Drama +135508,A Deadly Adoption (2015),Comedy|Thriller +135510,Buster and Billie (1974),Crime|Drama +135512,Three Wishes for Cinderella (1973),Adventure|Children|Drama|Fantasy|Romance +135514,Rhythm is it! (2004),Documentary +135516,Video Violence (1987),Horror +135518,Self/less (2015),Action|Mystery|Sci-Fi|Thriller +135520,Mythica: A Quest for Heroes (2015),Fantasy +135524,Alex Is Lovesick (1986),Comedy|Drama|Romance +135526,Behind the Camera: The Unauthorized Story of 'Mork & Mindy' (2005),Comedy|Drama +135528,Escape from Sobibor (1987),Drama|Thriller|War +135530,Criminal (2016),Action|Crime|Drama|Sci-Fi +135532,The Last Witch Hunter (2015),Action|Adventure|Fantasy +135534,Krampus (2015),Comedy|Fantasy|Horror +135536,Suicide Squad (2016),Action|Crime|Sci-Fi +135539,Aurora (2015),(no genres listed) +135541,Noodle (2007),Drama +135543,What a Woman! (1943),Comedy|Romance +135545,Ardennes Fury (2014),Action|War +135547,The Misfit Brigade (1987),Action|Adventure|Drama +135549,Battle of Westerplatte (2013),Drama|War +135551,Childish Games (2012),Drama|Horror|Thriller +135553,The Crazy Life (La vida loca) (2008),Documentary +135555,Bluffmaster! (2005),Comedy|Drama|Romance +135557,The Treatment (2014),Thriller +135559,Civilization (1916),Drama|War +135561,The Loretta Claiborne Story (2000),(no genres listed) +135565,Shocking Asia (1976),Documentary +135567,Independence Day: Resurgence (2016),Action|Adventure|Sci-Fi +135569,Star Trek Beyond (2016),Action|Adventure|Sci-Fi +135571,The American Film Institute Salute to Frank Capra (1982),Documentary +135573,Frank Capra's American Dream (1997),(no genres listed) +135575,Fultah Fisher's Boarding House (1922),(no genres listed) +135577,Tunnel Vision (1976),Comedy +135579,Dreadnaught (1981),Action +135581,Cabin by the Lake (2000),(no genres listed) +135583,Bhoot (2003),(no genres listed) +135585,Pizza (2012),Comedy|Horror|Romance|Thriller +135587,Raat (1992),Crime|Horror|Thriller +135589,1920 (2008),Drama|Horror|Thriller +135591,You Must Be Scared (2006),Thriller +135593,Darna Mana Hai (2003),Horror +135595,Encounters of the Spooky Kind (1980),Action|Comedy|Fantasy|Horror +135597,High Lane (2009),Action|Horror|Thriller +135599,The Echo (2008),Drama|Horror|Mystery|Thriller +135601,Rockstar (2011),Drama|Romance +135603,Rock On!! (2008),Drama +135605,Time Share (2000),Comedy|Romance +135607,The Policeman (1971),Comedy|Drama +135609,Sidekick (2005),Action|Comedy|Fantasy +135611,Raising Waylon (2004),(no genres listed) +135613,Rabies (2010),Horror +135615,All in (2006),Comedy|Drama +135617,Vig (1998),Drama +135619,Easy Money 3 (2013),Crime|Drama|Thriller +135621,Deepsea Challenge 3D (2014),Documentary +135623,The Fluffy Movie (2014),Comedy +135625,Final Girl (2015),Action|Drama|Thriller +135627,Debug (2014),Horror|Sci-Fi +135629,This is Sodom (2010),Comedy +135631,Three Wise Guys (2005),Comedy +135633,Run (2013),Action|Drama +135635,Le Cactus (2005),Comedy +135637,The Widows of Thursdays (2009),Crime|Drama +135639,Come Dance at My Wedding (2009),Drama +135641,Peeping Toms (1973),(no genres listed) +135643,The Disappointments Room (2015),(no genres listed) +135645,Tipping Point (2007),(no genres listed) +135647,Tommy Tricker and the Stamp Traveller (1988),Children|Fantasy +135649,American Translation (2011),Drama +135651,Actress (2014),Documentary +135653,We Shall Overcome (2006),Drama +135655,Lick the Star (1998),Drama +135657,Iberia (2005),Musical +135659,Nirvana: Live! Tonight! Sold Out!! (1994),Documentary +135663,The Voyage of Captain Fracassa (1990),(no genres listed) +135667,People of Rome (2003),(no genres listed) +135669,How Strange to be Named Federico: Scola Narrates Fellini (2013),Documentary +135671,What Time Is It? (1989),Comedy|Drama +135673,Macaroni (1985),Comedy|Drama +135677,The New Monsters (1977),Comedy +135679,The Most Wonderful Evening of My Life (1972),Comedy|Drama|Mystery +135681,Drama of Jealousy (1970),Comedy|Drama +135683,L'Arcidiavolo (1966),Comedy +135687,Se permettete parliamo di donne (1964),Comedy +135691,Señorita Justice,(no genres listed) +135693,Iliza Shlesinger: War Paint (2013),Comedy +135695,Jen Kirkman: I'm Gonna Die Alone (And I Feel Fine) (2015),Comedy +135697,Morgan Murphy: Irish Goodbye (2014),Comedy +135699,Grace Stirs Up Success (2015),Children +135701,The Mirror (2014),Horror +135703,Meet the Fokkens (2011),Documentary +135706,Traffic in Souls (1913),Drama +135709,Hells Angels Forever (1983),Documentary +135711,Solo (1980),Drama|War +135713,Letters To Sofija (2013),Drama +135715,Archie's Final Project (2011),Comedy|Drama +135717,Dancing Arabs (2014),Drama +135719,Jackson County Jail (1976),Crime|Drama +135721,Outside Chance (1978),(no genres listed) +135723,Street Girls (1975),Drama +135725,Shiva (1989),Action|Drama +135727,Aarya (2004),Comedy|Drama|Romance +135729,Main Khiladi Tu Anari (1994),Action|Thriller +135731,Jungle (2000),(no genres listed) +135733,Prahaar: The Final Attack (1991),(no genres listed) +135735,Sehar (2005),Action|Thriller +135737,Zakhm (1998),(no genres listed) +135739,The Master (1980),Action|Comedy +135741,Pedicab Driver (1989),Action|Comedy|Drama +135743,Not the Messiah (He's a Very Naughty Boy) (2010),Comedy +135745,Labyrinth (2012),Adventure|Fantasy +135747,The Sinking of the Laconia (2011),Drama|War +135749,The Shadow in the North (2008),Adventure|Mystery|Thriller +135751,Carry On Doctor (1967),Comedy +135753,The Dawns Here are Quiet (1972),Drama|War +135755,Shaolin Intruders (1983),Action|Drama +135757,Don't Give a Damn (1995),Action|Comedy +135759,A Frozen Flower (2008),Drama +135761,Kaminey (2009),Action|Crime|Drama +135763,Company (2002),Action|Drama +135765,Vishwaroopam (2013),Action|Crime|Thriller +135767,Omkara (2006),Crime|Drama +135769,Baadshah (1999),Action|Comedy +135771,Koyla (1997),(no genres listed) +135773,Shool (1999),(no genres listed) +135775,Ghayal (1990),(no genres listed) +135777,Golmaal (2006),Children|Comedy +135779,Royal Tramp (1992),Action|Comedy +135781,Saheb Biwi Aur Gangster (2011),Action|Crime|Drama|Romance|Thriller +135783,Gadar: Ek Prem Katha (2001),(no genres listed) +135785,Knockabout (1979),Action|Adventure|Comedy +135787,Bruce Lee: A Warrior's Journey (2000),Documentary +135789,Shaitan (2011),Action|Crime|Drama|Thriller +135791,Awara Paagal Deewana (2002),Action|Comedy|Crime +135793,The Incredible Kung Fu Master (1979),Action +135795,Mardaani (2014),Action|Drama|Thriller +135797,Shootout at Lokhandwala (2007),Action|Crime|Drama +135799,Josh (2000),(no genres listed) +135801,Righting Wrongs (1986),Action +135803,Five Element Ninjas (1982),Action +135805,Virumandi (2004),Drama +135807,The Invincible Armour (1977),Action|Thriller +135809,Born Invincible (1978),Action +135811,Drunken Master Part II: Dance of the Drunk Mantis (1979),Action|Comedy +135813,The Victim (1980),Action|Drama +135815,The Magnificent Ruffians (1979),Action|Drama +135817,Clan of the White Lotus (1980),Action|Drama +135819,Raakh (1989),(no genres listed) +135821,Shaolin Vs Lama (1983),(no genres listed) +135823,Dhoom 3 (2013),Action|Crime|Thriller +135825,Dragon Ball: Yo! Son Goku and Friends Return!! (2008),Action|Adventure|Animation +135827,The Mystery of Chess Boxing (1979),Action +135829,Dhoom 2 (2006),Action|Crime|Drama|Thriller +135831,Never Back Down 2: The Beatdown (2011),Action|Drama +135833,One-Armed Boxer (1972),Action|Adventure +135835,Summer Killer (2002),Action|Comedy +135837,Ram Gopal Varma Ki Aag (2007),Action|Comedy +135839,Shahid (2013),Drama +135841,Siddharth (2013),Drama +135844,Blank: A Vinylmation Love Story (2014),Animation +135846,Trava: Fist Planet (2003),Animation|Sci-Fi +135848,Kite (1998),Action|Animation|Crime|Thriller +135850,Like a Dragon (2007),Action|Crime|Drama +135852,Boychoir (2014),Drama +135854,Eddie Izzard: Sexie (2003),Comedy +135856,Beyond Gay: The Politics of Pride (2010),Documentary +135859,Rewind (2013),Sci-Fi +135861,Ted 2 (2015),Comedy +135863,Fortress (2012),Action|War +135865,Mothman (2010),Horror|Sci-Fi +135867,Rabbit Fire (1951),Animation|Children|Comedy +135869,The Valley Below (2014),(no genres listed) +135871,The Invisible Front (2014),Documentary|Drama +135873,Elizabeth Ekadashi (2014),Comedy|Drama +135875,Queen (2014),Comedy +135877,Indigenous (2014),Horror +135881,Sex Is Zero (2002),Comedy|Drama +135885,Absolutely Anything (2015),Comedy|Sci-Fi +135887,Minions (2015),Adventure|Animation|Children|Comedy +135889,The House at the End of Time (2013),Horror +135891,Candy Stripe Nurses (1974),(no genres listed) +135893,Rough Cut (1980),Action|Adventure|Comedy|Crime|Mystery|Romance +135895,Hound-Dog Man (1959),(no genres listed) +135897,An Annapolis Story (1955),Drama +135899,China Venture (1953),War +135901,Count the Hours (1953),Crime +135905,Baby Face Nelson (1957),Crime|Drama +135907,The Nickel Ride (1975),Crime +135909,The Stalking Moon (1968),Action|Western +135911,The Spiral Road (1962),(no genres listed) +135913,The Great Impostor (1961),Comedy +135915,Afterparty (2013),Horror +135917,"A la legión le gustan las mujeres... y a las mujeres, les gusta la legión (1976)",(no genres listed) +135919,Bhoothnath Returns (2014),Comedy|Drama|Fantasy|Horror +135921,Dance Me to My Song (1998),(no genres listed) +135923,Horst Schlämmer - Isch kandidiere! (2009),Comedy +135925,The Royal Tailor (2014),Drama +135927,Posthumous (2014),Comedy|Drama|Romance +135929,Pardners (1956),Comedy|Western +135931,It Waits (2005),Horror +135933,Milf (2010),Comedy|Drama|Romance +135935,Herman U.S.A. (2001),(no genres listed) +135937,The Silence of the Hams (1994),Comedy|Thriller +135939,Firestarter 2: Rekindled (2002),Horror|Sci-Fi|Thriller +135941,The Secret of the Sword (1985),Animation|Children +135943,Stripper Academy (2007),Comedy +135945,Bottoms Up (2006),Comedy +135947,Killer Tomatoes Eat France! (1992),Comedy|Horror|Sci-Fi +135949,Hallettsville (2009),Thriller +135951,Rumpelstiltskin (1995),Horror +135953,Leroy & Stitch (2006),Animation|Children|Comedy +135955,Ramrod (1947),Western +135957,Dracula II: Ascension (2003),Horror +135959,Universal Soldier III: Unfinished Business (1999),Action|Sci-Fi +135961,Bachelor Party 2: The Last Temptation (2008),Comedy +135963,Double Wedding (2010),Comedy|Drama|Romance +135965,Alice Through the Looking Glass (1998),Children|Fantasy +135967,Pulse 2: Afterlife (2008),Horror|Sci-Fi|Thriller +135969,Lower Learning (2008),Comedy +135971,Return to Sleepaway Camp (2008),Horror +135974,Alpha House (2014),Comedy +135977,Ace Ventura Jr: Pet Detective (2009),Children|Comedy +135979,Next Avengers: Heroes of Tomorrow (2008),Action|Animation|Children|Sci-Fi +135981,Universal Soldier II: Brothers in Arms (1998),Action|Sci-Fi +135983,Boogeyman 3 (2008),Horror +135987,Ryan and Sean's Not So Excellent Adventure (2008),Comedy +135989,The Complex (2013),Horror +135991,Premonition (2004),Horror +135993,The Craving (2008),Horror +135995,American High School (2009),Comedy|Romance +135997,Every Jack has a Jill (2009),Children|Comedy|Romance +136000,Journey to the Center of the Earth (1999),Action|Adventure|Children|Fantasy|Sci-Fi +136002,My Big Fat Independent Movie (2005),Comedy +136006,The Cook (2008),Comedy|Horror +136010,12 Days of Christmas Eve (2004),Children|Comedy|Drama|Fantasy +136012,Bloodsport III (1996),Action|Thriller +136014,The Startup Kids (2012),Documentary +136016,The Good Dinosaur (2015),Adventure|Animation|Children|Comedy|Fantasy +136018,Black Mass (2015),Crime|Drama +136020,Spectre (2015),Action|Adventure|Crime +136022,Killer Tomatoes Strike Back! (1991),Action|Comedy|Horror|Sci-Fi +136024,The Professional: Golgo 13 (1983),Action|Animation|Crime +136026,The Grand Duel (1972),Western +136028,Flash and Firecat,(no genres listed) +136030,The Hottie & The Nottie (2008),Comedy|Romance +136032,Senior Skip Day (2008),Comedy +136038,Christmas Vacation '91 (1991),Comedy +136040,Taste of Life (1988),Comedy +136046,The Marquis of Grillo (1981),Comedy +136048,L'Ingorgo : Una storia impossibile (1979),Drama +136050,The Witness (1978),Crime +136054,The Scientific Cardplayer (1972),Comedy +136056,The Couples (1970),(no genres listed) +136058,Why (1971),Comedy|Drama +136060,Il medico della mutua (1968),Comedy +136062,"Il prof. Dott. Guido Tersilli, primario della clinica Villa Celeste convenzionata con le mutue (1969)",Comedy|Drama +136068,The Queens (1966),Drama +136070,A Girl in Australia (1971),Comedy +136072,The Three Faces (1965),Comedy|Drama +136074,The Flying Saucer (1964),(no genres listed) +136078,The Boom (1963),Comedy +136080,To Bed or Not to Bed (1963),Comedy +136082,Il maestro di Vigevano (1963),(no genres listed) +136086,A Difficult Life (1961),Drama +136088,The Best of Enemies (1961),Adventure|Comedy|War +136090,Il vigile (1960),(no genres listed) +136092,Everybody Go Home (1960),Drama|War +136096,Vacations in Majorca (1960),Comedy|Romance +136098,The Magliari (1959),Drama +136102,Costa Azzurra (1959),(no genres listed) +136104,Nella città l'inferno (1959),(no genres listed) +136106,"Policarpo, ufficiale di scrittura (1961)",(no genres listed) +136108,Vacanze d'inverno (1959),(no genres listed) +136110,Love on the Riviera (1958),Comedy|Romance +136112,The Widower (1959),Comedy +136126,Il delitto di Giovanni Episcopo (1947),Drama +136128,Under the Sun of Rome (1948),(no genres listed) +136136,Ci troviamo in galleria (1957),Comedy +136142,Two Nights with Cleopatra (1953),Comedy|Romance +136144,Mid-Century Loves (1954),Drama +136148,The Sign of Venus (1955),(no genres listed) +136154,Bravissimo (1955),Comedy +136158,The Virtuous Bigamist (1956),Comedy|Drama +136162,Souvenir d'Italie (1957),Romance +136164,A Hero of Our Times (1955),Comedy +136166,Il conte Max (1957),Comedy +136174,Le septième ciel (La vedova elettrica) (1958),Comedy|Mystery +136180,The Art of Getting Along (1954),Comedy +136186,The Anatomy of Love (1954),(no genres listed) +136188,Hooking Up (2009),Comedy|Drama +136190,Rover Dangerfield (1991),Animation|Children|Comedy +136192,Night of the Demon (1980),Horror +136194,Dracula III: Legacy (2005),Horror +136196,Chanbara Striptease (2008),Action|Comedy|Fantasy +136198,Cross (2011),Action|Adventure|Fantasy|Sci-Fi +136200,The Terminators (2009),Action|Horror|Sci-Fi +136202,Pinocchio's Revenge (1996),Horror +136204,The Second Mother (2015),Drama +136208,Noobz (2013),Adventure|Comedy +136210,American Animal (2012),Comedy|Drama +136212,The Howling: Reborn (2011),Horror +136217,Boogeyman 2 (2007),Horror|Thriller +136219,Bad Kids Go to Hell (2012),Comedy|Mystery|Thriller +136221,Hansel & Gretel: Warriors of Witchcraft (2013),Horror|Thriller +136223,18 Meals (2011),Comedy|Drama +136225,Last Train to Freo (2006),Drama|Thriller +136227,The Wicked (2013),Fantasy|Horror|Thriller +136229,Sanitarium (2013),Horror|Thriller +136231,Achmed Saves America (2014),Animation|Comedy +136233,Android Cop (2014),Action|Sci-Fi +136235,Hercules Reborn (2014),Action|Adventure +136237,Freshman Orientation (2004),Comedy +136239,Smart House (1999),Children|Drama|Fantasy|Sci-Fi +136241,The Brass Bottle (1964),(no genres listed) +136245,Scooby-Doo! and the Reluctant Werewolf (1988),Animation|Children|Comedy|Mystery +136247,Scooby-Doo on Zombie Island (1998),Animation|Children|Comedy|Mystery +136249,Scooby-Doo! and the Monster of Mexico (2003),Animation|Children|Comedy|Mystery +136251,Scooby-Doo! Stage Fright (2013),Adventure|Animation|Children +136253,Superman: Brainiac Attacks (2006),Action|Animation|Children +136255,Sex and the Teenage Mind (2002),Comedy +136257,Avengers Grimm (2015),Action|Adventure|Fantasy +136259,Glass House: The Good Mother (2006),Drama|Thriller +136261,Sottozero (1987),Comedy +136265,Satyricon (1969),Comedy +136275,Il tassinaro (1983),(no genres listed) +136277,Io so che tu sai che io so (1982),(no genres listed) +136279,Journey with Papa (1982),Comedy +136281,Catherine and I (1980),Comedy +136283,Dove vai in vacanza? (1979),(no genres listed) +136291,Amore mio aiutami (1969),Comedy +136295,"Scusi, lei è favorevole o contrario? (1966)",Comedy +136297,Mortal Kombat: The Journey Begins (1995),Action|Animation +136299,Red Victoria,Comedy|Horror +136301,Mega Man (2010),Action|Drama|Sci-Fi +136303,Street Fighter: Round One - FIGHT! (2009),Animation|Fantasy|Horror|Sci-Fi +136305,Sharknado 3: Oh Hell No! (2015),Horror|Sci-Fi +136307,The Scorpion King 4: Quest for Power (2015),Action|Adventure|Fantasy +136309,Scooby-Doo! Moon Monster Madness (2015),Adventure|Animation|Children +136311,My Date with the President's Daughter (1998),(no genres listed) +136313,Born as a Warrior (1994),Action +136315,Bersaglio altezza uomo (1979),Action +136317,Queen of Sex (1977),Thriller +136319,The Mad Butcher (1971),Horror +136323,A Man Called Amen (1968),Western +136325,Psychopath (1968),Comedy|Crime +136329,Thompson 1880 (1966),Western +136331,"Chill Out, Scooby-Doo! (2007)",Action|Adventure|Animation|Children|Mystery +136333,Scooby-Doo and the Ghoul School (1988),Animation|Children +136335,Scooby-Doo and the Alien Invaders (2000),Animation|Children +136337,Scooby-Doo and the Cyber Chase (2001),Animation|Children +136339,Scooby-Doo! in Where's My Mummy? (2005),Animation|Children|Thriller +136341,Scooby-Doo! and the Samurai Sword (2009),Animation|Children|Comedy +136343,Scooby-Doo! And the Legend of the Vampire (2003),Animation|Children|Comedy +136345,Aloha Scooby-Doo! (2005),Animation|Children +136347,Scooby-Doo Meets the Boo Brothers (1987),Adventure|Animation|Children|Comedy +136349,Scooby-Doo! Pirates Ahoy! (2006),Animation|Children|Comedy|Mystery +136351,Scooby-Doo! and the Goblin King (2008),Animation|Children|Comedy|Thriller +136353,Scooby-Doo! and the Loch Ness Monster (2004),Animation|Children|Comedy +136355,Big Top Scooby-Doo! (2012),Animation|Children|Comedy +136357,Scooby-Doo! Legend of the Phantosaur (2011),Animation|Children|Mystery +136359,Scooby-Doo Goes Hollywood (1979),Animation|Children|Comedy +136361,Scooby-Doo! Mask of the Blue Falcon (2012),Adventure|Animation|Children|Comedy|Fantasy +136363,Scooby-Doo! Music of the Vampire (2011),Animation|Children|Mystery +136365,Scooby-Doo! Adventures: The Mystery Map (2013),Children +136367,The Flintstones & WWE: Stone Age Smackdown (2015),Animation|Children|Comedy +136369,The Jetsons Meet the Flintstones (1987),Animation|Children +136371,Quints (2000),(no genres listed) +136373,Drake And Josh Go Hollywood (2006),Adventure|Children|Comedy|Crime +136375,Slap the Monster on Page One (1972),(no genres listed) +136377,Tigers in Lipstick (1979),Comedy +136379,The Fiend (1977),Thriller +136381,"Bisturi, la mafia bianca (1973)",(no genres listed) +136383,Anyone Can Play (1968),Comedy|Drama|Romance +136385,Una questione d'onore (1966),(no genres listed) +136395,Woman of Rome (1954),(no genres listed) +136401,Processo alla città (1952),(no genres listed) +136405,È più facile che un cammello... (1950),Drama|Fantasy +136411,Anni difficili (1948),(no genres listed) +136413,L'onorevole Angelina (1947),Drama +136415,Vivere in pace (1947),(no genres listed) +136419,The Executioner's Song (1982),Crime|Drama +136421,I Am Afraid (1977),(no genres listed) +136423,Confessions of a Police Captain (1971),Crime|Drama +136425,"The Case Is Closed, Forget It (1971)",Crime|Thriller +136427,High Crime (1973),Crime|Drama|Thriller +136429,Samurai Wolf (1966),Action|Adventure|Drama +136431,Pappa ante Portas (1991),Comedy +136433,Bill Maher: I'm Swiss (2005),Comedy +136435,Bill Maher: Live From DC (2014),Comedy +136437,Clash of Egos (2006),Comedy +136439,Dinotasia (2012),Animation|Documentary +136441,Ferdinand the Bull (1938),Animation|Children|Comedy +136443,Gabriel Iglesias: Hot and Fluffy (2007),Comedy +136445,George Carlin: Back in Town (1996),Comedy +136447,George Carlin: You Are All Diseased (1999),Comedy +136449,Ghost in the Shell 2.0 (2008),Action|Animation|Sci-Fi +136451,Hellboy Animated: Sword of Storms (2006),Action|Animation|Fantasy|Sci-Fi|Thriller +136453,How to Play Football (1944),(no genres listed) +136455,Iron Man & Captain America: Heroes United (2014),Action|Adventure|Animation +136457,Jeff Dunham: Arguing with Myself (2006),Comedy +136459,Jeff Dunham: Spark of Insanity (2007),Comedy +136461,Jeff Ross Roasts America (2012),Comedy +136463,Jim Gaffigan: Beyond the Pale (2006),Comedy +136465,John Oliver: Terrifying Times (2008),Comedy +136467,Kim Possible: A Sitch in Time (2003),Action|Adventure|Animation|Children +136469,Larry David: Curb Your Enthusiasm (1999),Comedy +136471,Kevin Hart: Laugh at My Pain (2011),Comedy|Documentary +136473,Love at First Hiccough (1999),Comedy +136475,Oktapodi (2007),Animation +136477,One Froggy Evening (1955),Animation|Children|Comedy +136479,Pablo Francisco: Bits and Pieces (2004),Comedy +136481,Pluto's Blue Note (1947),(no genres listed) +136483,Prep & Landing (2009),Animation|Children|Fantasy +136485,Robot Chicken: Star Wars (2007),Animation|Comedy|Sci-Fi +136487,Sexaholix... A Love Story (2002),Comedy +136489,Terror on the Midway (1942),Animation|Fantasy +136491,Ishqiya (2010),Thriller +136493,Chandni Bar (2001),Drama +136495,Dev.D (2009),Drama|Romance +136497,Khosla Ka Ghosla! (2006),Comedy +136499,Pablo Francisco: They Put it Out There (2011),Comedy +136501,Three Little Pigs (1933),Animation|Children|Comedy|Musical +136503,Tom and Jerry: Shiver Me Whiskers (2006),Animation|Children|Comedy +136505,True North (2006),Drama +136507,One Kine Day (2011),Drama +136509,Little Big Master (2015),Drama +136511,Jeff Dunham: All Over the Map (2014),Comedy +136513,Jeff Dunham: Minding the Monsters (2012),Comedy +136515,Jeff Dunham: Controlled Chaos (2011),Comedy +136517,Jeff Dunham: Jeff Dunham's Very Special Christmas Special (2008),Comedy +136519,Protégé (2007),Drama|Thriller +136521,Stop the Pounding Heart (2013),Documentary|Drama +136524,The Amityville Playhouse (2015),(no genres listed) +136526,Thunder In Paradise (1993),(no genres listed) +136528,Miracle In Lane 2 (2000),Children|Drama +136530,Pokémon: Jirachi Wish Maker (2003),Action|Adventure|Animation|Children +136532,Ator IV: The Hobgoblin (1990),Adventure|Fantasy +136534,Grandma Got Run Over by a Reindeer (2000),Animation|Children +136536,Cassadaga (2011),Horror|Thriller +136538,Teen Titans: Trouble in Tokyo (2007),Action|Adventure|Animation|Children|Sci-Fi +136540,The FP (2012),Comedy +136542,Mickey's Christmas Carol (1983),Animation|Children +136544,My Pet Monster (1986),Comedy +136546,Puppet Master X: Axis Rising (2012),Fantasy|Horror|Sci-Fi +136548,Gingerdead Man 2: Passion of the Crust (2008),Comedy|Horror +136550,Gingerdead Man 3: Saturday Night Cleaver (2011),Comedy|Horror|Sci-Fi +136552,Gingerdead Man vs. Evil Bong (2013),Comedy|Horror +136554,Sirius (2013),Documentary +136556,Kung Fu Panda: Secrets of the Masters (2011),Animation|Children +136558,Bulletproof (1988),Action|Thriller +136560,Shelter Island (2011),(no genres listed) +136562,Steve Jobs (2015),Drama +136564,Macbeth (2015),Drama +136566,I viaggiatori della sera (1979),(no genres listed) +136568,Evil Thoughts (1976),Comedy +136572,Cyanide (2013),Drama +136574,Fracture (2010),Drama +136576,Green Street Hooligans: Underground (2013),Action|Drama +136578,Les Petits princes (2013),Comedy|Drama +136580,The Prodigies (2011),Animation|Sci-Fi +136582,Je vous aime tres beaucoup (2010),Children|Comedy +136584,Nos Amis Les Terriens (2007),Comedy|Drama|Fantasy +136586,Buttoners (1997),Comedy +136588,Santa Claus is Comin' to Town (1970),Animation|Children|Fantasy +136590,The Thirteenth Year (1999),(no genres listed) +136592,Freaky Friday (1995),(no genres listed) +136594,Dear Dumb Diary (2013),Children +136596,Mickey's Trailer (1938),Animation +136598,Vacation (2015),Adventure|Comedy +136600,The Concubine (2012),Drama +136602,Creep (2014),Horror|Thriller +136604,#1 Cheerleader Camp (2010),Comedy|Drama +136606,Le chant du Styrène (1958),(no genres listed) +136608,L'amour existe (1960),Documentary +136610,Charlotte and Her Boyfriend (1960),(no genres listed) +136612,The Great Madcap (1949),Comedy +136614,The Office (1966),Documentary +136616,Tramway (1966),Drama +136618,Pokémon the Movie: Genesect and the Legend Awakened (2013),Action|Adventure|Animation|Children|Fantasy|Sci-Fi +136620,Pokémon: Arceus and the Jewel of Life (2009),Animation|Children +136622,Pokémon: The Rise of Darkrai (2007),Adventure|Animation|Children|Fantasy +136624,Pokémon: Lucario and the Mystery of Mew (2005),Adventure|Animation|Fantasy +136626,See No Evil 2 (2014),Horror +136628,Clerks - The Flying Car (2002),Comedy +136630,Clerks: The Lost Scene (2004),(no genres listed) +136632,Jurassic City (2015),Action|Sci-Fi +136634,Dinosaur Island (2014),Children|Fantasy|Sci-Fi +136636,The Pact II (2014),Horror|Mystery|Thriller +136638,The Ouija Experiment 2: Theatre of Death (2015),Horror +136640,Back to the Jurassic (2015),Adventure|Animation|Children +136642,Madame Bovary (2014),Drama +136644,Awakened (2014),Drama|Thriller +136646,Turkey Shoot (2014),Action +136648,Bound (2015),Drama|Thriller +136650,Balls Out (2014),Comedy +136652,Phantom Halo (2015),Crime|Drama|Thriller +136654,The Face of an Angel (2015),Drama +136656,Manglehorn (2014),Drama +136658,Old Fashioned (2014),Drama|Romance +136660,Larry Gaye: Renegade Male Flight Attendant (2015),Comedy +136662,Hoovey (2015),Children|Drama +136664,Wild Horses (2015),Crime|Drama +136666,Search Party (2014),Comedy +136668,RZ-9 (2015),Action|Sci-Fi +136670,Blood First (2014),Action|Crime|Drama +136672,The Living (2014),Thriller +136674,Maya the Bee Movie (2014),Animation|Children +136676,Extinction (2014),Adventure|Thriller +136678,Tooken (2015),Action|Comedy +136680,Battle For SkyArk (2015),Action|Adventure|Children|Sci-Fi +136682,The Scopia Effect (2014),Horror|Sci-Fi|Thriller +136684,Party 7 (2000),Action|Comedy +136686,After the Ball (2015),Comedy +136688,Private Number (2015),Horror|Mystery|Thriller +136690,Wild in Blue (2014),Drama|Thriller +136692,Helicopter Mom (2014),Comedy +136694,See You In Valhalla (2015),Comedy|Drama +136696,Absolution (2015),Action|Adventure|Crime|Thriller +136698,Skin Trade (2014),Action|Drama|Thriller +136704,Prova a volare (2007),Comedy|Drama +136706,Cinema of Vengeance (1994),(no genres listed) +136708,La Notte del mio primo amore (2006),Horror|Thriller +136710,Parole sante (2007),(no genres listed) +136712,Moebius (1996),Sci-Fi +136714,Disciples (2014),Horror +136718,The Devil's Hand (2014),Horror|Thriller +136720,The Dead Inside (2013),Action|Horror|Sci-Fi +136722,The Mummy Resurrected (2014),Horror +136724,Dial a Prayer (2015),Comedy|Drama +136726,The Last Time You Had Fun (2015),Comedy|Drama +136728,Flutter (2014),Drama +136730,Armed Response (2013),Action|Comedy +136732,Axe Giant - The Wrath of Paul Bunyan (2013),Fantasy|Horror|Sci-Fi +136734,What Now (2015),Comedy +136736,Faith of Our Fathers (2015),(no genres listed) +136738,The Towrope (2012),Drama +136740,Bedtime for Bonzo (1951),Comedy +136742,Un'estate al mare (2008),(no genres listed) +136744,Uncut - Member only (2003),Comedy|Mystery +136746,Sweet Dreams (1981),(no genres listed) +136748,The Brooke Ellison Story (2004),Drama +136750,The Dive from Clausen's Pier (2005),Drama|Romance +136752,A Ticket to Space (Un ticket pour l'espace) (2006),Comedy|Sci-Fi +136754,Champs (2015),Documentary +136756,The Listening (2006),Thriller +136758,Pasolini prossimo nostro (2006),Documentary +136760,Sherman's Way (2008),Comedy|Documentary +136762,Animals in Love (2007),Documentary +136764,Postman Pat: The Movie (2014),Adventure|Animation|Children +136766,Random Quest (2006),Romance|Sci-Fi +136768,Love in the Buff (2012),Comedy|Romance +136770,Transatlantic Coffee (2012),(no genres listed) +136772,My Mother the Mermaid (2003),(no genres listed) +136774,Christian Mingle (2014),(no genres listed) +136776,Fishing Naked (2015),Comedy +136778,The Squeeze (2015),Comedy|Drama +136780,Fractured (2015),Drama|Horror|Thriller +136782,The Girl is in Trouble (2015),Thriller +136784,From the Dark (2015),Horror +136786,Careful What You Wish For (2015),Thriller +136788,Any Day (2015),Drama|Romance|Thriller +136790,3 Nights in the Desert (2015),Drama +136792,Nailbiter (2013),Horror +136794,Eat (2014),Drama|Horror|Thriller +136796,Zombie Resurrection (2014),Horror +136798,Let Us Prey (2014),Horror +136800,Robot Overlords (2014),Action|Adventure|Sci-Fi +136802,The Historian (2014),Drama +136804,Russell Madness (2015),Comedy +136806,Along the Roadside (2013),Comedy|Romance +136808,The Butchers (2014),Horror +136810,Attack of the Sabretooth (2005),Horror +136812,The Millennials (2015),Comedy|Drama|Romance +136814,X/Y (2014),Drama +136816,Bad Asses on the Bayou (2015),Action|Comedy +136818,Silent Retreat (2016),Horror|Mystery|Thriller +136820,Grace (2014),Drama +136822,The Man in the Iron Mask (1977),Adventure +136824,L'erba proibita (2002),(no genres listed) +136826,The Defiant Ones (1986),Drama +136828,Invitation to Hell (1984),Horror|Mystery|Sci-Fi|Thriller +136830,Killdozer (1974),Sci-Fi|Thriller +136832,Punishment Room (1956),(no genres listed) +136834,The Eye: Infinity (2005),Horror +136836,Ray of Sunshine (1933),(no genres listed) +136838,Kiss me Kismet (2006),Comedy|Romance +136840,Da geht noch was! (2013),Comedy|Drama|Romance +136842,The Price of Life (1987),(no genres listed) +136844,Who Killed Captain Alex? (2010),(no genres listed) +136846,The Phantom Planet (1961),Sci-Fi +136848,Shabd (2005),Drama|Romance +136850,Villain (1971),Crime|Drama|Thriller +136853,Laugh Killer Laugh (2015),Crime|Drama +136855,Crazy Bitches (2015),Comedy|Horror +136857,Girl House (2014),Horror|Thriller +136859,The Lovers (2015),Action|Adventure|Romance|Sci-Fi +136861,The Mark: Redemption (2013),Action|Fantasy|Sci-Fi +136864,Batman v Superman: Dawn of Justice (2016),Action|Adventure|Fantasy|Sci-Fi +136866,The Temple (2011),(no genres listed) +136868,Mumbai Pune Mumbai (2010),Romance +136870,Pune 52 (2013),Crime|Drama|Thriller +136872,Zapatlela (1993),(no genres listed) +136874,Natarang (2010),(no genres listed) +136876,The Village Had No Walls (1995),(no genres listed) +136878,Paradh (2010),(no genres listed) +136880,Vaastupurush,(no genres listed) +136882,Me Shivajiraje Bhosale Boltoy (2009),Drama +136884,Time Pass (2014),Comedy|Romance +136886,Taryanche Bait (2011),(no genres listed) +136888,Dragonslayer (2011),Documentary +136890,Eastern Boys (2014),Drama +136892,Dreams with Sharp Teeth (2008),Documentary +136894,All This Mayhem (2014),Documentary +136896,The Flying Doctors of East Africa (1969),Documentary +136898,The Elusive Corporal (1962),Comedy|Drama|War +136900,Experiment in Evil (1959),Drama|Horror +136902,Strange Powers: Stephin Merritt and the Magnetic Fields (2011),Documentary +136904,The Railrodder (1965),Comedy +136906,Les Héritiers (2014),Comedy|Drama +136908,The Last Match (2013),Drama|Romance +136910,Quarter to Two Before Jesus Christ (Deux heures moins le quart avant Jésus-Christ) (1982),Comedy +136912,God Loves Caviar (2012),Adventure +136914,RISE (2014),Crime|Drama|Thriller +136916,Vendetta (2015),Action +136918,Age Of Kill (2015),Action +136920,Horsehead (2014),Fantasy|Horror +136922,Bordering on Bad Behavior (2015),Action|Comedy +136924,Tekken: Kazuya's Revenge (2014),Action +136926,Gemma Bovery (2014),Comedy|Drama|Romance +136928,Viktor (2014),Action|Drama|Thriller +136930,95ers: Time Runners (2013),Sci-Fi|Thriller +136932,Out of the Dark (2014),Horror|Thriller +136934,Morning Star (2014),Action|Adventure|Fantasy +136936,88 (2015),Action|Thriller +136938,Repli-Kate (2002),Comedy|Sci-Fi +136940,Goddess (2013),Comedy|Musical|Romance +136942,The Art of Love (2011),Comedy|Romance +136944,Pray for the Wildcats (1974),Drama +136946,Modern Vampires (1998),Action|Comedy|Horror|Romance|Thriller +136948,Soof (2013),Comedy|Romance +136950,Mom (1991),Comedy|Horror +136952,Monster Brawl (2011),Comedy|Horror +136954,More Brains! A Return to the Living Dead (2011),Documentary +136956,R.O.D - Read or Die (2001),Animation +136958,Mortuary (1983),Horror +136960,Mosquito (1995),Horror|Sci-Fi +136962,Mother's Boys (1994),Drama|Thriller +136964,Murder in New Hampshire: The Pamela Wojas Smart Story (1999),Crime|Drama +136966,Murder Without Motive: The Edmund Perry Story (1992),(no genres listed) +136968,Mutator (1989),Sci-Fi +136970,My Life's in Turnaround (1994),(no genres listed) +136972,Ödipussi (1988),Comedy +136974,Jinn (2014),Thriller +136976,Cam2Cam (2014),Horror|Thriller +136978,Yes Nurse! No Nurse! (2002),Comedy +136980,Ed Gein: The Butcher of Plainfield (2007),Crime|Drama|Horror|Mystery +136982,Universal Remote (2007),Children|Comedy +136986,Dil (1990),Comedy|Drama|Romance +136988,The Good Mistress (2014),Drama +136990,The Perfect Student (2011),Crime|Mystery|Thriller +136992,When He Didn't Come Home (1998),(no genres listed) +136994,Best Friends (2005),(no genres listed) +136996,The Wrong Girl (1999),Drama|Thriller +136998,The Wrong Girl (2015),Drama +137000,The Perfect Teacher (2010),Drama|Thriller +137002,The Sitter (2007),Horror|Thriller +137006,Poison (2000),Mystery|Thriller +137008,A Mother's Nightmare (2012),Crime|Mystery|Thriller +137010,The Nightmare Nanny (2013),Drama|Thriller +137012,Deadly Daycare (2014),Action|Drama +137014,A Sister's Nightmare (2013),Thriller +137016,A Daughter's Nightmare (2014),Drama|Mystery|Thriller +137018,A Sister's Revenge (2013),Drama|Mystery|Thriller +137020,A Sister's Secret (2009),Drama|Mystery|Thriller +137022,A Nanny's Revenge (2012),Drama|Thriller +137024,The Perfect Nanny (2000),Thriller +137026,Tainted Blood (1993),Mystery|Thriller +137028,"Augusta, Gone (2006)",Drama +137030,Dangerous Child (2001),(no genres listed) +137032,The Perfect Neighbor (2005),Drama|Thriller +137034,Perfect High (2015),(no genres listed) +137036,The Surrogate (2013),Drama|Mystery|Thriller +137038,The Perfect Wife (2001),Drama|Thriller +137040,Hunger Point (2003),Drama +137042,When Friendship Kills (1996),Drama +137044,A Killer Among Friends (1992),Drama|Mystery +137046,The Perfect Assistant (2008),Crime|Mystery|Thriller +137048,Perfect Child (2007),Drama +137050,The Rival (2006),Thriller +137052,A Job to Kill For (2006),Drama|Thriller +137054,Daniels Daughter (2008),Drama|Romance +137056,The Secretary (1995),(no genres listed) +137060,The Tenth Circle (2008),Drama|Mystery|Thriller +137062,Naruto Shippuden the Movie: Road to Ninja (2012),Action|Adventure|Animation|Fantasy +137064,Twisted Desire (1996),Crime|Drama +137066,Accused at 17 (2009),Drama|Thriller +137068,The Preacher's Daughter (2012),Drama +137070,The Killing Game (2011),Mystery|Thriller +137072,Born Bad (2011),Drama|Thriller +137074,The Guy From Harlem (1977),Action +137076,The Square Peg (1958),Comedy +137078,Stranger in My House (1999),Thriller +137082,...And the Earth Did Not Swallow Him (1995),(no genres listed) +137084,La nuit la plus longue (1965),(no genres listed) +137088,Treasure Island (1999),Adventure|Children +137090,The Initiation of Sarah (1978),Horror +137092,The Last Word (1995),Crime|Drama|Thriller +137096,Trigger Man (2007),Action|Drama|Horror|Thriller +137098,Sacred Flesh (2000),Drama|Horror +137100,Good Chemistry (2008),Drama|Thriller +137102,Haunted Highway (2006),Horror|Thriller +137104,The Virginian (2000),(no genres listed) +137108,Seal Team Six: The Raid on Osama Bin Laden (2012),Action|Crime|Drama|Thriller +137110,My Zinc Bed (2008),Drama +137112,Once Upon a Time in Mumbaai (2010),Crime|Drama|Thriller +137114,Love in a Puff (2010),Comedy|Drama|Romance +137118,The Ryan White Story (1989),Drama +137120,"Grow Up, Tony Phillips (2013)",(no genres listed) +137122,Thousand Pieces of Gold (1991),Drama|Romance +137124,The Boat Is Full (1981),Drama|War +137126,Lucky Miles (2007),Action|Comedy +137128,Kept and Dreamless (2005),Drama +137130,Being Us (2014),(no genres listed) +137132,HottieBoombaLottie (2008),Comedy|Romance +137134,The Fish Fall in Love (2006),Drama +137136,Beach Pillows (2013),Drama +137138,Ryna (2005),Drama +137140,Blue Ridge (2012),(no genres listed) +137142,The Lost Moment (1947),Drama|Romance|Thriller +137144,1000 To 1 (2014),Drama +137146,As It Is in Heaven (2014),Drama +137148,Shoot the Messenger (2006),(no genres listed) +137150,Caterpillar (2010),Drama|War +137152,Jaffa (2009),Drama +137154,Let the Women Wait! (1998),Comedy +137156,Sudie and Simpson (1990),Drama +137158,The Climb (1998),(no genres listed) +137160,This Is Ours (2012),Drama +137162,Beside Still Waters (2013),(no genres listed) +137164,Three Days in Havana (2014),Comedy|Crime +137166,Justice Is Mind (2013),(no genres listed) +137168,Dummy (2008),Drama +137170,Paper Mask (1990),Drama|Thriller +137172,Down Three Dark Streets (1954),Thriller +137174,The Deserted Station (2002),Drama +137176,Berlin Tunnel 21 (1981),Action|Comedy|Documentary|Drama|Romance|Thriller +137178,Missing Pieces (2012),Drama +137180,Hiding Victoria (2007),(no genres listed) +137182,Paju (2009),Drama|Romance +137184,The Garden of Earthly Delights (2004),Drama|Romance +137186,A Simple Curve (2005),Drama +137188,No Place Like Home (1989),(no genres listed) +137190,The Exonerated (2006),Drama +137192,Thirst (2012),Drama +137194,Meeting Spencer (2010),Comedy +137196,Rhymes for Young Ghouls (2013),Drama +137198,Zero Dark Dirty (2013),Comedy +137202,White Lion (2010),Children|Drama +137206,Ultrasonic (2012),Drama|Thriller +137210,Salt of This Sea (2008),Drama|Romance +137212,Blowing Wild (1953),Western +137214,Blumenthal (2013),Comedy +137218,April Morning (1988),Drama +137222,Boppin' at the Glue Factory (2009),(no genres listed) +137224,China Gate (1957),Action|Thriller|War +137226,Ocean of Pearls (2008),Drama +137228,Stand Clear of the Closing Doors (2014),Drama +137230,Summerhood (2008),Comedy|Drama|Romance +137232,Flat Top (1952),Action|Drama|War +137236,Whistle and I'll Come to You (2010),Horror +137238,Submarine Command (1952),Drama|War +137240,The Last Movie (2012),(no genres listed) +137242,Spilt Milk (2010),(no genres listed) +137244,Chain Link (2008),(no genres listed) +137246,Among Ravens (2014),Comedy|Drama +137248,The Winds of Kitty Hawk (1978),Drama +137250,It’s Only Make Believe (2013),Drama +137254,La France (2007),Drama +137256,Missing (2009),Thriller +137260,She Wants Me (2012),Adventure|Comedy|Drama|Romance +137262,U Want Me 2 Kill Him? (2014),Drama|Thriller +137268,Druid Peak (2014),Adventure|Drama +137270,Gemini (2005),(no genres listed) +137274,Wedding Palace (2013),Comedy|Romance +137276,The Lawyer (1970),(no genres listed) +137278,Cyberbully (2015),Drama +137280,Los Enchiladas! (1999),Comedy +137282,The Genius of Marian (2013),Documentary +137284,Sierra Leone's Refugee All Stars,(no genres listed) +137286,Speciesism: The Movie (2013),Documentary +137288,Gräfin Mariza (1958),Comedy +137290,Rock Slyde (2010),Comedy|Mystery|Thriller +137292,L'uomo della carità,(no genres listed) +137294,The Life Coach (2005),Comedy +137296,Heaven Knows What (2014),(no genres listed) +137299,The Fort (2014),Comedy|Drama +137301,Blue Seduction (2009),Romance|Thriller +137303,An Optical Poem (1937),(no genres listed) +137305,Bridge to Silence (1989),Drama|Romance +137307,Antarctic Journal (2005),Horror|Mystery|Thriller +137309,Malevil (1981),Drama|Sci-Fi +137311,Love and the City (2009),Comedy|Romance +137313,37 (2014),(no genres listed) +137315,Hyena (2014),Crime|Drama +137317,"Don't Cry, Mommy (2012)",Action|Drama +137319,The Rainbow (1989),Action|Drama|Romance +137323,A Picture of You (2014),Drama +137325,Chloé (1996),Drama|Romance +137327,The Space Between (2010),Drama +137329,3 of a Kind (2012),(no genres listed) +137331,The Impossible Spy (1987),Drama|Thriller +137333,Double Parked (2000),(no genres listed) +137335,Clutter (2013),(no genres listed) +137337,Amy (2015),Documentary +137339,Basil (1998),Drama|Romance +137343,The Keeper (1995),Crime|Drama|Thriller +137345,That Demon Within (2014),Crime|Thriller +137347,Dasepo Naughty Girls (2006),Comedy +137349,1918 (1985),Drama +137351,Fiona (1998),Drama +137353,In Lieu of Flowers (2013),Comedy|Drama|Romance +137355,"Yes, We're Open (2012)",Comedy|Romance +137359,Detroit Unleaded (2013),Comedy +137361,Lowlife (2012),(no genres listed) +137363,The Mother Of Invention (2010),Comedy +137365,Fascination (1979),Drama|Horror +137367,Supremacy (2014),Crime|Drama +137369,Success Is the Best Revenge (1984),(no genres listed) +137373,Post Coitum (1997),Drama|Romance +137375,The Killing Mind (1991),(no genres listed) +137377,Dear Prudence (2010),Drama +137379,Midsummer Madness (2007),Comedy|Drama|Romance +137381,The George McKenna Story (1986),Drama +137383,Tom and Jerry: Spy Quest (2015),Animation +137385,Tom and Jerry & The Wizard of Oz (2011),Animation|Children +137387,Tom and Jerry: The Magic Ring (2002),Animation|Children|Comedy +137389,Tom and Jerry: The Fast and the Furry (2005),Animation|Children|Comedy +137391,Tom and Jerry Meet Sherlock Holmes (2010),Animation|Children +137393,Tom and Jerry's Giant Adventure (2013),Animation|Children +137395,FBI Frog Butthead Investigators (Mais qui a re-tué Pamela Rose ?) (2012),Comedy +137397,The Creature Walks Among Us (1956),Horror|Sci-Fi +137399,Heart Street (2014),Comedy|Romance +137401,The Stream (2013),Adventure|Children|Comedy +137403,Swimming Upstream (2002),Drama +137405,The Chaos Factor (2000),Action|Drama|Thriller +137409,Phantom of the Mall: Eric's Revenge (1989),Horror +137411,The Big Fall,Action +137415,Acceptable Risk (2001),Drama|Sci-Fi|Thriller +137417,Buried Secrets (1996),Drama|Mystery +137419,No Greater Love (1996),(no genres listed) +137421,"Inara, the Jungle Girl (2012)",Adventure +137423,La stratégie de l'échec (2000),Comedy +137425,TalhotBlond (2012),Drama +137427,EM (2008),Drama|Romance +137431,Leaving Barstow (2008),Drama|Romance +137433,Don't Pass Me By (2013),Drama +137435,"Lenexa, 1 Mile (2006)",Drama +137437,Son of a Lion (2007),(no genres listed) +137439,Ultimate Betrayal (1994),Drama +137441,The Wee Man (2013),Drama +137443,Wolves In The Snow,Action|Crime|Drama|Thriller +137445,The Riverman (2004),Crime|Drama|Thriller +137447,Albert Schweitzer (2009),Comedy|Drama|Romance +137451,Through Naked Eyes (1983),(no genres listed) +137453,All Together Now (2013),(no genres listed) +137455,The Last Push (2012),Sci-Fi +137457,Blue Lagoon: The Awakening (2012),Romance +137459,Change of Heart (1998),Drama +137463,16-love (2012),Children|Comedy|Drama|Romance +137465,Profile Of A Killer (2013),Thriller +137467,Once Upon a Summer (2009),(no genres listed) +137469,Some Velvet Morning (2013),Drama +137471,Tracks (1977),Drama +137473,The Hunt for the Hidden Relic (2002),Adventure +137475,Sonic The Hedgehog: The Movie (1996),Action|Adventure|Animation +137478,Hyenas (2010),Drama|Horror +137482,Le coup du berger (1956),(no genres listed) +137484,A Story of Water (1961),Romance +137486,El truco del manco (2008),Drama +137488,Le laboratoire de l'angoisse (1971),(no genres listed) +137490,Three Daughters (Teen Kanya) (1961),Comedy|Drama|Fantasy +137494,Who Killed Pasolini? (1995),Drama +137496,Vingt-quatre heures de la vie d'un clown (1945),(no genres listed) +137503,Blazing Stewardesses (1975),Comedy +137505,Black Heat (1976),Action|Crime|Drama +137507,Cinderella 2000 (1977),Fantasy|Sci-Fi +137511,Sunset Cove (1978),Comedy +137513,Death Dimension (1978),Action|Adventure|Sci-Fi|Thriller +137515,Nurse Sherri (1978),Horror +137517,Carnival Magic (1981),Drama|Fantasy +137519,The Naughty Stewardesses (1975),Comedy +137521,Girls for Rent (1974),Crime|Drama +137523,Mean Mother (1974),Action|Drama +137525,Dynamite Brothers (1974),Action|Comedy +137527,Dracula vs. Frankenstein (1971),Horror|Sci-Fi +137529,The Female Bunch (1971),Action|Crime|Drama|Western +137531,Brain of Blood (1971),Horror|Sci-Fi +137533,Hell's Bloody Devils (1970),Action|Crime|Drama +137535,Five Bloody Graves (1969),Thriller|Western +137541,Blood of Dracula's Castle (1969),Horror +137543,Satan's Sadists (1969),Action|Drama|Thriller +137547,Black Snake (1973),Adventure +137549,"Cherry, Harry & Raquel! (1970)",Crime|Drama|Thriller +137551,"Finders Keepers, Lovers Weepers (1968)",Crime|Drama +137553,Common Law Cabin (1967),Comedy|Drama +137555,Fanny Hill (1964),Comedy +137557,The Immoral Mr. Teas (1959),Comedy +137559,Good Morning... and Goodbye! (1967),Crime|Drama +137561,Saturn in Opposition (2007),Drama +137563,Stung (2015),Comedy|Horror +137565,The Last Survivors (2014),Action|Thriller +137570,Beloved Sisters (2014),Drama|Romance +137572,Syksyllä kaikki on toisin (1978),(no genres listed) +137574,"Helsinki, Forever (2008)",(no genres listed) +137576,Klunkerz (2006),(no genres listed) +137579,Dog Star Man: Prelude (1961),(no genres listed) +137581,Dog Star Man: Part I (1962),Documentary +137583,Dog Star Man: Part II (1963),(no genres listed) +137585,Dog Star Man: Part III (1964),(no genres listed) +137587,Dog Star Man: Part IV (1964),(no genres listed) +137589,Alien Express (2005),(no genres listed) +137591,Mystery Woman (2003),(no genres listed) +137593,Hooligan (1998),Action|Comedy|Crime +137595,Magic Mike XXL (2015),Comedy|Drama +137597,The Whistle-Blower (2001),Crime|Drama|Thriller +137601,Duel of Hearts (1992),Drama|Mystery|Romance +137608,Beyond the Frontiers of Hate (1972),Western +137610,Casa dell'amore... la polizia interviene (1978),Thriller +137612,Babai (2015),Drama +137614,Jackie & Ryan (2015),Drama +137616,7 Minutes (2014),Crime|Drama|Thriller +137618,The Flesh (1991),Drama|Romance +137620,Diary of a Maniac (1993),Drama +137622,Nitrate Base (1997),(no genres listed) +137624,The House of Smiles (1991),(no genres listed) +137626,How Good the Whites Are (1988),Comedy|Drama +137628,I Love You (1986),Drama|Fantasy|Romance +137630,The Future Is Woman (1984),Drama +137632,The Story of Piera (1983),Drama +137634,Seeking Asylum (1979),Comedy|Drama +137636,The Last Woman (1976),Drama +137638,Liza (1972),Drama|Romance +137640,The Audience (1972),Comedy|Drama +137642,The Seed of Man (1969),Drama|Fantasy|Romance|Sci-Fi +137644,Her Harem (1967),(no genres listed) +137646,"Oggi, domani, dopodomani (1965)",Comedy +137648,The Man with the Balloons (1965),(no genres listed) +137650,The Wedding March (1965),Comedy +137652,The Ape Woman (1964),Comedy|Drama +137654,The Conjugal Bed (1963),Comedy|Drama +137656,Le Italiane E l'amore (1961),Comedy|Drama|Romance +137658,The Wheelchair (1960),Comedy|Drama +137660,El Pisito (1959),(no genres listed) +137662,Los Chicos (1959),(no genres listed) +137664,Esmeralda Bay (1989),Action|Drama|War +137666,The Black Kung Fu Experience (2012),(no genres listed) +137668,The New Year (2010),Comedy|Drama|Romance +137670,Loves Her Gun (2014),Drama +137672,Vacation! (2010),Comedy|Crime +137674,Fatal Memories (1992),Drama +137678,A Matter of Sex (1984),(no genres listed) +137682,Good Night (2013),Comedy|Drama +137684,How Awful About Allan (1970),Drama +137688,Escape Clause (1996),Thriller +137690,A Little Pond (2010),Action|Drama|Thriller +137692,Nightmare in Columbia County (1991),Drama +137694,Woman in the Dark (1934),Crime|Drama +137696,Grave Secrets: The Legacy of Hilltop Drive (1992),Horror|Thriller +137701,The Spell (1977),Horror +137703,The Confession (2013),Drama +137705,Fifteen and Pregnant (1998),Drama +137707,Fading of the Cries (2011),Action|Fantasy|Horror|Mystery +137709,Hidden Away (2013),Drama|Thriller +137711,Wild Hearts (2006),Drama +137715,Rey Gitano (2015),Comedy +137717,Tag (2015),Drama +137721,The Pigeon That Took Rome (1962),Comedy|War +137723,Babysitter Massacre (2013),Horror +137727,A Real American Hero (1978),Crime|Drama +137731,The Worst Year of My Life (2015),(no genres listed) +137733,Lost Time (2014),Horror|Sci-Fi|Thriller +137737,Darkness Falls (1999),Drama|Horror|Romance|Thriller +137739,A New Life (1988),Comedy|Romance +137741,The Nostradamus Kid (1993),(no genres listed) +137743,Delivered (2011),Action|Comedy|Crime +137745,The Simian Line (2001),Drama +137747,The Secret Pact (2001),Thriller +137749,The Butterfly Room (2012),Horror|Thriller +137751,Mrs. Ashboro's Cat (2003),Children|Thriller +137755,An American Terror (2013),Drama|Horror +137757,Model Behavior (2000),Children|Comedy|Drama +137759,Susie Q (1996),Children|Comedy|Drama|Mystery +137761,The Search for General Tso (2014),Documentary +137763,The Immortalists (2014),Documentary +137765,Love Comes Lately (2008),Comedy|Drama|Romance +137767,Dimensions (2011),Drama|Sci-Fi +137769,Ink & Steel (2014),(no genres listed) +137771,Il cielo è sempre più blu (1997),(no genres listed) +137773,Helen (2008),Drama +137781,Screwed (2011),Action|Crime +137783,Prophet of Evil: The Ervil LeBaron Story (1993),Drama +137785,Forever's End (2013),Drama|Thriller +137787,Bitter / Sweet (2009),Comedy|Drama|Romance +137789,Order of Death (1983),Crime|Thriller +137791,Virgil Bliss (2001),(no genres listed) +137793,Tale of a Vampire (1992),Horror +137797,The Lady and the Highwayman (1989),Action|Drama|Romance +137799,Strange Girls (2007),Thriller +137801,Flatbed Annie & Sweetie Pie: Lady Truckers (1979),Comedy|Drama +137803,Five Seconds to Spare (2000),(no genres listed) +137805,5 Hour Friends (2014),(no genres listed) +137807,Jimmy Zip (1999),Drama +137809,After (2009),Drama +137813,Fuel (2009),Documentary|Drama +137815,Ultimate Heist (2009),Action|Adventure|Thriller +137817,Battle of the Brave (2004),Drama|Romance|War +137819,Gross Misconduct (1993),Drama|Thriller +137821,Moving Target (1988),Crime|Drama|Romance|Thriller +137823,Devoured (2012),Drama|Horror|Thriller +137825,Neverlake (2013),Drama|Horror|Mystery +137827,Stripped (2013),Comedy|Horror|Thriller +137829,Exile (2011),(no genres listed) +137833,To Jennifer (2013),(no genres listed) +137835,Callie & Son (1981),Drama +137841,Harlow (1965),Drama +137843,The Indestructible Jimmy Brown (2011),Comedy +137845,Amazon Falls,(no genres listed) +137847,Drifters (2011),Comedy +137849,9 Full Moons (2013),Romance +137851,F. Scott Fitzgerald and 'The Last of the Belles' (1974),(no genres listed) +137853,El camino (2008),Drama +137855,Terraces (1977),(no genres listed) +137857,The Jungle Book (2016),Adventure|Drama|Fantasy +137859,Dragon Ball Z Gaiden: The Plot to Destroy the Saiyans (1993),Action|Adventure|Animation +137863,Dragon Ball Z: Resurrection of F (2015),Action|Adventure|Animation|Fantasy +137865,A Hero Ain't Nothin But a Sandwich (1978),Drama +137867,Embryo (1976),Action|Horror|Sci-Fi|Thriller +137869,Flight of the Doves (1971),Children|Drama +137871,Counterpoint (1967),Action|Adventure|War +137873,Stonemouth (2015),(no genres listed) +137875,"Rag. Arturo De Fanti, Bancario Precario (1980)",(no genres listed) +137879,Vieni avanti cretino (1982),Comedy +137885,Duck in Orange Sauce (1975),Comedy +137887,Alla mia cara mamma nel giorno del suo compleanno (1974),(no genres listed) +137889,Il sindacalista (1972),Comedy +137893,Basta guardarla (1970),(no genres listed) +137895,Snow Job (1965),Comedy|Thriller +137898,Señor Droopy (1949),Animation +137900,Accidental Love (2015),Comedy|Romance +137904,"I, Claudius (1976)",Drama +137906,The Apocalypse Code (2007),Action|Adventure +137908,Mammoth (2006),Action|Comedy|Horror|Sci-Fi +137910,The Restless (2006),Action|Drama|Romance +137912,Mayday (2005),Thriller +137914,Love Thy Neighbor (2006),Drama|Thriller +137918,Defending Our Kids: The Julie Posey Story (2003),Drama +137920,Bombay Velvet (2015),(no genres listed) +137922,Ambush at Cimarron Pass (1958),Action|War|Western +137924,Dark Souls (2011),Horror|Thriller +137926,Sugar (2013),Drama +137930,Cave of the Sharks (1978),Action|Adventure|Horror +137932,"Colpo grosso, grossissimo...anzi probabile (1972)",Comedy +137934,Cross Current (1971),(no genres listed) +137936,There Goes the Neighborhood (1992),Comedy|Crime|Romance +137938,Serial Killing 4 Dummys (2004),Comedy|Horror +137940,Sistemo l'America e torno (1974),(no genres listed) +137942,What Am I Doing in the Middle of the Revolution? (1972),Adventure|Comedy +137944,Barking Water (2010),Drama +137950,A Perfect Life (2011),Thriller +137952,Monk Dawson (1998),Drama +137954,The Unspoken Truth (1995),(no genres listed) +137956,Keeping Track (1987),(no genres listed) +137958,Love & Air Sex (2013),Comedy +137960,Citizen Jane (2009),Action|Crime|Mystery|Thriller +137962,Strange Fruit (2004),(no genres listed) +137964,Casualties (1997),Drama|Thriller +137966,Jack Brown: Genius (1996),(no genres listed) +137968,There's Always Woodstock (2014),Comedy|Romance +137970,Moola (2007),Comedy +137972,Suicide Dolls (2012),(no genres listed) +137974,Death Sentence (1974),Crime|Drama|Mystery|Thriller +137976,Sweet Revenge (1990),Comedy|Romance +137980,The Fall of '55 (2006),Documentary +137982,Maladies (2014),Drama +137984,Mambo Café (2000),(no genres listed) +137986,The Initiation of Sarah (2006),Drama|Horror|Thriller +137990,Dark Tides,(no genres listed) +137992,I Am I (2013),Drama +137994,Muirhouse (2013),(no genres listed) +137996,Silent Tongue (1993),Drama|Horror|Western +137998,Liberated Zone (2003),Comedy|Drama|Romance +138000,Believe (2000),Horror +138002,Let The Devil Wear Black (1999),Drama|Mystery|Thriller +138006,Funkytown (2011),Drama +138008,New Year (2011),(no genres listed) +138010,The Other Me (2000),Children|Comedy|Fantasy +138012,Turn the Beat Around (2010),Drama +138016,Silent Witness (2011),Crime|Drama +138018,Victoria Day (2009),Drama +138020,Big Muddy (2014),Crime|Western +138022,Man in the Mirror: The Michael Jackson Story (2004),Documentary|Drama +138024,"Michael Jackson: Dangerous Tour (Bucharest, 1992) (1992)",(no genres listed) +138026,Michael Jackson: Number Ones (2003),(no genres listed) +138028,Tsumugi (2004),Drama|Romance +138030,The Chinese Mayor (2015),Documentary|Drama +138032,Hunger (1974),Animation +138034,The Border (2007),Drama +138036,The Man from U.N.C.L.E. (2015),Action|Adventure|Comedy +138038,The Widowmaker (2015),Documentary +138042,The Ritual,(no genres listed) +138044,Reuniting the Rubins (2012),Children|Comedy|Drama +138048,The Demon's Rook (2013),Horror +138050,Death of a Prophet (1981),Documentary +138054,Van Nuys Blvd. (1979),Comedy|Drama +138056,Expecting (2013),Comedy|Drama +138058,Lovespell (1981),(no genres listed) +138060,Tropical Snow (1988),Drama +138062,Servants of Twilight (1991),Horror|Thriller +138066,Last Day of Summer (2009),Comedy|Drama +138070,Deserter (2002),Drama|War +138072,Live at the Foxes Den (2013),Drama +138074,Pulsar (2011),Drama|Mystery|Romance|Thriller +138076,Diary of a Tired Black Man (2009),Comedy|Drama|Romance +138078,Away From Here (2014),Drama +138084,The Opponent (2001),Action|Drama +138086,The Kitchen (2012),Comedy|Drama +138088,Probable Cause (1994),Action|Crime|Drama +138090,House of the Sleeping Beauties (2006),Drama|Thriller +138094,Children of the Grave (2007),Documentary +138096,Random Encounters (2013),Comedy +138098,River's End (2005),(no genres listed) +138100,Home Town Story (1951),Comedy|Drama|Romance +138102,Pinprick (2009),Drama|Thriller +138104,Justice League: Gods and Monsters (2015),Action|Animation +138106,Savage Sisters (1974),Action|Crime +138108,Her Fatal Flaw (2006),Crime|Drama|Mystery|Thriller +138110,186 Dollars to Freedom (2012),Action|Drama +138112,Angel and the Badman (2009),Action|Western +138114,Stephanie's Image (2009),(no genres listed) +138118,Call Me (1988),Drama|Thriller +138120,The Expedition,(no genres listed) +138122,Cinemanovels (2013),Comedy|Drama|Romance +138124,Till the End of the Night (1994),Thriller +138128,Enigma (2009),Sci-Fi +138130,The Sister-in-Law (1974),Drama +138132,Kill Cruise (1990),Adventure|Drama|Thriller +138136,Dominique (1979),Drama|Mystery|Thriller +138138,Loveless in Los Angeles (2007),Comedy|Romance +138140,Fetish (2008),(no genres listed) +138142,Friended to Death (2014),Comedy +138146,Wicked Ways (1999),Drama|Thriller +138148,The Haunting of Lisa (1996),Drama|Thriller +138150,The Insurgents (2007),Drama|Thriller +138152,Carver (2008),Horror +138154,Stalled (2013),Comedy|Horror +138156,Black Circle Boys (1997),Horror +138160,Crackie (2009),Drama +138162,The Teacher (1974),Crime|Thriller +138166,Invader (1997),Romance|Sci-Fi +138168,The Chateau Meroux (2011),Comedy|Drama|Romance +138170,The Big Ask (2014),Comedy|Drama +138172,Baseline (2010),Action|Crime|Drama +138174,The Creepy Doll (2011),Horror|Thriller +138180,All Eyes And Ears (2015),(no genres listed) +138184,Treehouse (2014),Horror|Mystery|Thriller +138186,Sorrow (2015),Crime|Drama|Horror +138188,Roxie (2014),(no genres listed) +138190,The Shift (2013),Drama +138192,The Livingston Gardener (2015),(no genres listed) +138196,Pretty Rosebud (2014),(no genres listed) +138198,Greg Fitzsimmons: Life on Stage (2013),(no genres listed) +138200,Nothing Bad Can Happen (2013),Drama +138202,Burying the Ex (2015),Comedy|Horror +138204,7 Days in Hell (2015),Comedy +138206,Echoes of War (2015),Drama|Thriller|Western +138208,The Walk (2015),Adventure|Drama|Thriller +138210,13 Hours (2016),Drama +138212,Spectral (2016),(no genres listed) +138214,French Women (2014),Comedy +138216,Mondo Candido (1975),Adventure|Comedy +138218,Meet Him And Die (1976),(no genres listed) +138220,Hired Killer (1966),Crime|Thriller +138222,Station to Station (2014),Drama +138224,East Wind (Vent d'Est) (1993),Drama +138226,Monk With a Camera (2014),Documentary +138228,The Town That Was (2007),(no genres listed) +138230,Staten Island Summer (2015),Comedy +138232,Aalavandhan (2001),Thriller +138234,Augustine (2012),Drama +138236,Battle of the Coral Sea (1959),War +138240,Haunts (1977),Horror +138242,Out of Bounds (2003),Romance|Thriller +138246,Deathwork (1971),Action +138248,Calendar Girl Murders (1984),Crime +138250,Mysteries (1978),Drama|Mystery +138254,Cold Feet (1989),Action|Comedy +138256,X's & O's (2007),Comedy|Drama|Romance +138258,Nasty Baby (2015),Drama +138260,Bad Night (2015),Adventure +138262,Maria My Love (2012),Drama +138264,The Disturbance at Dinner (1998),Comedy|Romance +138266,The Perfect Getaway (1998),(no genres listed) +138268,Breaking the Silence (1992),Drama +138270,Born to Be Sold (1981),Thriller +138272,The Killing of Jacob Marr (2010),Horror +138274,Love/Loss (2010),Children|Drama|Romance +138280,Plato's Reality Machine (2013),Comedy|Drama|Sci-Fi +138286,This Is Not an Exit: The Fictional World of Bret Easton Ellis (1998),Documentary +138288,Double Edge (1992),Drama|Thriller +138290,Paparazzi (1998),Comedy +138292,Bonds of Love (1993),Drama|Romance +138294,"Thelma, Louise et Chantal (2010)",(no genres listed) +138298,Bar Sport (2011),Children|Comedy +138300,Welcome to the North (2012),Comedy +138304,Come Dio comanda (2008),Drama +138308,Giulia Doesn't Date at Night (2009),Drama|Thriller +138310,Unlikely Revolutionaries (2010),(no genres listed) +138312,Flowerman (2014),Drama|Romance|Thriller +138314,The Commander and the Stork (2012),(no genres listed) +138318,The Worst Christmas of My Life (2012),Comedy +138320,Il primo incarico (2011),Drama +138322,Il rosso e il blu (2012),(no genres listed) +138326,Italians (2009),Comedy +138328,The Last Man on Earth (2011),Drama|Sci-Fi +138334,La peggior settimana della mia vita (2011),Comedy +138338,Lezioni di cioccolato (2007),Comedy +138340,The White Space (2009),(no genres listed) +138342,What Girls Learn (2001),Drama +138344,Men Vs Women (2010),Comedy +138346,Escort in love (2011),Comedy|Drama +138350,Tous les soleils (2011),Comedy +138352,Locke & Key (2011),Adventure|Drama|Horror|Thriller +138356,A Matter of Heart (2009),Comedy|Drama +138358,Saimir's decision (2004),(no genres listed) +138360,Sorelle Mai (2011),Drama +138362,A Special Day (2012),Drama +138366,A Quiet Life (2010),Drama +138368,The Landlords (2012),Drama +138370,Every Blessed Day (2012),Comedy +138376,Gli equilibristi (2012),Drama +138380,The Santa Claus Gang (2010),Comedy +138388,Crazy Me (2013),Comedy +138396,There Will Come a Day (2013),Comedy|Drama +138398,Tutto parla di te (2012),(no genres listed) +138400,Ammutta muddica al cinema (2013),Comedy +138402,Welcome Mr. President! (2013),Comedy +138404,The Possessed (2009),Documentary|Horror|Thriller +138408,"Bianca come il latte, rossa come il sangue (2013)",Comedy|Drama +138412,Cha cha cha (2013),Crime|Drama +138414,Love & Slaps (2010),Comedy +138416,I Can Quit Whenever I Want (2014),Comedy +138420,La gente che sta bene (2014),Comedy +138422,The Devil's Violinist (2013),Drama +138424,The Future (2013),Drama +138428,As Melhores Coisas do Mundo (2010),Comedy +138430,Un boss in salotto (2014),Comedy +138432,"Zoran, il mio nipote scemo (2013)",Comedy +138434,A Castle in Italy (2013),Comedy|Drama +138438,Aspirante vedovo (2013),Comedy +138442,Noi credevamo (2010),(no genres listed) +138444,Una piccola impresa meridionale (2013),Comedy +138446,Come il vento (2013),Drama +138448,Midnight Sun (2014),Adventure +138450,Andiamo a quel paese (2014),Comedy +138454,Roanoke: The Lost Colony (2007),Drama +138456,Che ne sarà di noi (2004),(no genres listed) +138458,Tu la conosci Claudia? (2004),Comedy +138460,The Man Who Will Come (2010),Drama +138462,La scuola (1995),Comedy|Drama +138464,Il portaborse (1991),(no genres listed) +138470,Break Free (2003),(no genres listed) +138474,La seconda notte di nozze (2005),(no genres listed) +138476,A Whole Life Ahead (2008),Comedy +138478,Bianco e nero (2008),Comedy +138480,We Can Do That (2008),Comedy +138484,Just a Father (2008),(no genres listed) +138486,Ex (2009),Comedy +138488,La Matassa (2009),Comedy +138490,Terror in the Shadows (1995),Drama|Thriller +138492,Qualunquemente (2011),Comedy +138494,Cado dalle Nubi (2009),Comedy +138496,The Jewel (2011),Drama +138498,Scialla! (2011),Comedy +138500,Bingo Bongo (1982),Comedy +138504,Provocateur (1998),Action|Drama|Thriller +138506,American Bully (2009),Crime|Drama|Thriller +138508,Wildfire (1988),Drama +138514,Drifter (2008),Fantasy|Mystery|Romance|Thriller +138518,Chinese Boxes,(no genres listed) +138520,Bad vs Worse (2012),Drama|Horror|Thriller +138522,Bail Out (1990),Action|Adventure|Comedy|Drama|Thriller +138524,Too Scared to Scream (1985),Horror|Thriller +138526,Death of a Ghost Hunter (2007),Horror|Thriller +138528,Dark Mountain (2013),Horror|Sci-Fi|Thriller +138532,Ghost of Goodnight Lane (2014),Comedy|Horror +138534,Daddy's Girl (1996),Thriller +138538,The Set Up (1995),Action|Mystery|Thriller +138540,Black Day Blue Night (1996),Crime|Drama|Romance|Thriller +138542,BitterSweet (1999),(no genres listed) +138544,After Death (2012),Comedy|Drama|Mystery|Sci-Fi +138546,The Opposite Sex (2014),Comedy +138548,Dead Cold (1996),Comedy|Drama +138550,Suspicious Minds (1997),Thriller +138552,The Way I See Things (2008),Drama +138554,The Human Trace (2008),Thriller +138556,The Seniors (1978),Comedy +138558,Skew (2011),Horror|Mystery|Thriller +138560,Modus Operandi (2010),Action|Crime|Thriller +138562,Bipolar (2014),Mystery|Thriller +138564,Rudyland (2001),Documentary +138566,The Employer (2013),Thriller +138568,Top of the World (1998),Action|Drama|Thriller +138570,Find Me (2014),Horror +138576,Brutal (2012),Crime +138580,I Can See You (2008),Horror|Thriller +138582,Criminal Passion (1994),Crime|Mystery|Thriller +138584,The Ex (1997),Drama +138586,Shark Week (2012),Horror +138588,The Hit List (1993),Action|Thriller +138592,Ravager (1997),Horror|Sci-Fi +138596,Doomsday Man (2000),Drama +138598,The Treat (1998),Comedy|Romance +138600,Annie's Garden (1997),Drama|Thriller +138602,Lake Placid vs. Anaconda (2015),Action|Horror|Sci-Fi +138604,Vote and Die: Liszt for President (2008),Comedy +138606,The Rise and Rise of Bitcoin (2014),Documentary +138608,President (2006),Thriller +138610,The Gallows (2015),Horror|Thriller +138612,Memory Lane (2011),Crime|Sci-Fi|Thriller +138616,Tangled (2001),Drama|Mystery|Thriller +138618,The Wedding Chest (2005),Comedy|Drama +138620,Christian Finnegan: The Fun Part (2014),Comedy +138622,Coons! Night of the Bandits of the Night (2005),Comedy|Horror +138624,Elon Gold: Chosen and Taken (2014),Comedy +138626,Giordano Bruno (1973),Drama +138630,In My Dreams (2014),Drama|Fantasy|Romance +138632,Tokyo Tribe (2014),Action|Crime|Drama|Sci-Fi +138634,The Baroness and the Butler (1938),Comedy|Drama|Romance +138636,Young Dragons: Kung Fu Kids (1986),Comedy +138638,Embrace of the Vampire (2013),Horror +138640,Treasure of Matecumbe (1976),Action|Adventure +138642,"Back to Back, Face to Face (1994)",Drama +138644,Spectropia (2006),Sci-Fi +138648,Number One Fan (1997),Drama +138650,The Midnight Swim (2014),Drama|Mystery +138652,Dormant Beauty (2012),Drama +138656,Black Field (2009),(no genres listed) +138658,I Put a Hit On You (2014),Comedy|Romance|Thriller +138660,Eadweard (2015),Drama +138662,Taken in Broad Daylight (2009),Mystery|Thriller +138664,The Hunt for the I-5 Killer (2011),Action|Thriller +138666,Hannah's Law (2012),Western +138668,Black Rain (2009),Thriller +138670,Paparazzi Princess: The Paris Hilton Story (2008),Comedy +138672,Brooklyn Boheme (2012),Documentary +138674,Spiders (2000),Horror|Sci-Fi +138676,One Last Ride (2006),Drama +138680,Basilicata Coast to Coast (2010),Comedy|Drama +138682,Smash Cut (2009),Comedy|Horror +138684,Waar (2013),Action|Drama|Thriller +138686,In the Name of God (2008),Drama +138688,Control Alt Delete (2008),Comedy|Drama +138690,Almost Blue (2000),Thriller +138692,Neshoba (2010),Documentary +138694,Gettin' It (2006),Comedy +138696,Hands in the Air (2010),Comedy|Drama|Romance +138698,El vals de los inútiles (2014),Documentary +138702,Feast (2014),Animation|Children|Comedy|Drama|Romance +138704,A Rage To Live (1965),Drama|Romance +138706,Adventure (1945),Comedy|Drama|Romance +138708,Alias Jesse James (1959),Action|Comedy +138713,Bombers B-52 (1957),Drama|Romance +138719,Dennis Rodman's Big Bang in PyongYang (2015),(no genres listed) +138721,Flight From Destiny (1941),Crime|Drama +138724,Give a Girl A Break (1953),Comedy|Drama|Romance +138726,Greased Lightning (1977),Action|Comedy|Drama +138728,Hard Time (1998),Action|Crime|Drama +138730,Heart of the North (1938),(no genres listed) +138732,Four Rode Out (1970),Western +138734,Blind Man (2007),(no genres listed) +138738,What Comes Around (1985),(no genres listed) +138740,Haunting of Cellblock 11 (2014),(no genres listed) +138742,Horror in the Wind (2008),Comedy|Sci-Fi +138744,Uptown (2009),Drama +138746,Creature (1985),Horror|Sci-Fi|Thriller +138748,The Mutilation Man (2011),Horror +138750,Crawl or Die (2014),Horror|Sci-Fi|Thriller +138752,Cloned: The Recreator Chronicles (2012),Drama|Sci-Fi|Thriller +138754,The Rift (1990),Action|Horror|Sci-Fi +138758,Jacob (2011),Horror +138760,Get Lucky (2013),Action +138762,The Collective (2008),Mystery|Thriller +138766,Never Ever (1997),Drama +138770,No One Will Know (2012),Thriller +138772,As Night Comes (2014),Crime|Drama +138774,Raising Jeffrey Dahmer (2006),Drama|Horror +138776,Cupid (1997),(no genres listed) +138778,Dark Spirits (2008),Thriller +138782,Marked for Murder (1989),(no genres listed) +138784,This Is Not a Movie (2011),Comedy|Drama|Sci-Fi +138786,The Deadly Recruits (1986),Thriller +138788,Fear Lives Here (2013),Horror|Thriller +138790,Complicity (2013),Drama|Thriller +138792,Broken Fences (2008),Drama|Western +138794,Shank (2010),Action|Drama|Thriller +138796,Tom Sawyer & Huckleberry Finn (2014),Action|Adventure|Children|Drama +138798,Joe Dirt 2: Beautiful Loser (2015),Comedy +138800,Loophole (1954),Crime +138802,The Ninja Immovable Heart (2014),(no genres listed) +138804,Finding Fanny (2014),Comedy|Drama|Romance +138806,The Blue Lamp (1950),Action|Comedy|Crime|Romance|Thriller +138808,"The Death of ""Superman Lives"": What Happened? (2015)",Documentary +138812,Impasse (1969),Action|Adventure|Thriller +138814,Dead Innocent (1997),Horror|Thriller +138816,In Heaven There Is No Beer? (1984),Documentary +138818,Killer Leopard (1954),Adventure +138820,Lord of the Jungle (1955),Adventure +138822,Made In Paris (1966),Comedy|Romance +138824,Made in Paris (2006),Comedy +138833,Return to Treasure Island (1954),Adventure +138835,Return to Treasure Island (1988),Adventure|Animation|Comedy +138837,Roadblock (1951),Crime +138839,Detour (1998),Action|Crime|Drama|Thriller +138842,National Lampoon Presents: Surf Party (2013),Comedy +138844,Surf Party (1964),Comedy +138846,Svengali (2013),Comedy +138848,Svengali (1983),(no genres listed) +138850,Svengali (1954),Drama|Romance|Thriller +138852,The Revengers' Comedies (1998),Comedy|Crime|Romance +138854,Sweet Revenge (1976),Comedy|Crime +138856,Sweet Revenge (1987),Action|Adventure|Drama|Thriller +138858,Sweet Revenge (1984),Drama +138863,The Big Broadcast of 1936 (1935),(no genres listed) +138868,The Dream Team (2012),Comedy|Drama|Romance +138870,The Dream Team (2012),Documentary +138874,The Escape (1998),Action|Adventure +138876,The Escape (2009),Drama|Thriller +138878,La Fuga (2001),Crime|Drama|Thriller +138881,Deadlands 2: Trapped (2008),Horror|Sci-Fi|Thriller +138885,The Great Van Robbery (1959),(no genres listed) +138890,The Magician (1926),Drama|Romance +138892,The Magician (2005),Comedy|Drama +138894,El Mago (1949),(no genres listed) +138896,Tarot (1973),Thriller +138898,Hokkabaz (2006),Comedy|Drama +138904,The Phantom of Paris (1931),Drama|Mystery +138906,Pure (2005),Drama +138908,The Pirates of Penzance (1980),Adventure|Comedy +138910,The Pirates Of Penzance (1982),Comedy|Romance +138912,The Pirates of Penzance (1985),Children|Comedy +138914,The Sorcerers (1967),Horror +138916,Ticks (1993),Horror|Sci-Fi +138921,Trapped (1949),Crime|Drama|Mystery|Thriller +138923,Trapped (2013),Drama|Thriller +138925,Dark Asylum (2001),Horror|Thriller +138927,Piégé (2014),Thriller|War +138929,Trapped (1982),Thriller +138933,Trapped (1973),Action|Drama +138935,Two O'Clock Courage (1945),Crime|Drama|Mystery +138940,Duska (2007),Drama +138942,Little Hope Was Arson (2013),Documentary +138944,Dragon Ball: Episode of Bardock (2011),Action|Adventure|Animation +138946,Kevin (2011),Documentary +138948,Aladdin and the Death Lamp (2012),Adventure|Fantasy|Horror +138950,The Sci-Fi Boys (2006),Documentary +138952,Scooby-Doo! And Kiss: Rock and Roll Mystery (2015),Animation|Children +138954,Alice Cooper: Welcome to my Nightmare (1975),(no genres listed) +138958,Wuthering High (2015),Drama|Thriller +138960,Punk Vacation (1987),Action|Crime|Thriller +138962,Electra (1962),Action +138964,Pale Blood (1991),Action|Horror|Thriller +138966,Nasu: Summer in Andalusia (2003),Animation +138968,The Kreutzer Sonata (2008),Drama|Romance +138972,MoniKa (2012),Drama|Romance +138974,A Love Affair of Sorts (2011),Drama|Romance +138976,Room 314 (2006),Drama|Romance +138978,Stealing Candy (2003),Thriller +138980,Liars All (2013),Thriller +138982,Mysteria (2011),Action|Mystery +138984,The Deported (2010),Children|Comedy +138988,Devil In The Flesh 2 (2000),(no genres listed) +138990,Killing Car (1993),(no genres listed) +138992,Eve of Understanding (2006),Drama +138994,Drifter: Henry Lee Lucas (2009),Drama|Horror|Thriller +138996,Biohazardous (2001),Action|Horror|Mystery|Sci-Fi +139000,Rabid Love (2013),(no genres listed) +139002,Atrocity (2014),(no genres listed) +139008,Beauty and the Least (2012),Drama|Romance +139010,"One, Two, Many (2008)",Comedy +139012,Empty (2011),Action|Drama|Horror|Sci-Fi|Thriller +139014,7 Nights Of Darkness (2011),Horror +139016,The Void (2001),Action|Sci-Fi|Thriller +139018,Sub Zero (2005),Thriller +139020,Werewolf: The Beast Among Us (2012),Drama|Horror +139022,Inside Out (2005),Drama|Mystery|Thriller +139026,Mirror Mirror (1990),Horror +139028,Saviour Square (2006),Drama +139030,Wyjazd Integracyjny (2011),Comedy|Drama|Romance +139032,"Och, Karol 2 (2011)",Comedy|Romance +139034,The Closed Circuit (2013),Crime|Drama +139036,World Gone Wild (1988),Action|Sci-Fi +139040,Fantasma d'amore (1981),Drama|Horror|Mystery|Romance +139042,That Night (1993),Drama|Romance +139044,Triptych (1979),(no genres listed) +139046,My Golden Days (2015),Drama +139048,Germany in Autumn (1978),Documentary|Drama +139050,In No Great Hurry: 13 Lessons in Life with Saul Leiter (2014),(no genres listed) +139052,Dark Places (2015),Drama|Mystery|Thriller +139054,Deep Gold (2011),Action|Thriller +139056,I'll Always Know What You Did Last Summer (2006),Horror +139058,Mademoiselle (2001),Drama|Romance +139060,Don Giovanni (1979),Drama +139062,The False Servant (2000),Comedy|Drama +139064,Gang of Four (1989),Adventure|Drama|Mystery +139066,Spin the Bottle (2000),Comedy|Drama|Romance +139068,In Another Country (2012),Drama +139072,Bump in the Night (1991),Drama|Thriller +139076,Jeanne la Pucelle I - Les batailles (1994),(no genres listed) +139078,Jeanne la Pucelle II - Les prisons (1994),(no genres listed) +139080,"Up, Down, Fragile (1995)",Comedy|Mystery|Romance +139082,The Vengeance of the Winged Serpent (1984),Adventure|Comedy +139084,Boulevard (2014),Drama +139086,Small Potatoes - Who Killed the USFL? (2009),Documentary +139088,The Legend of Jimmy the Greek (2009),Documentary +139090,The U (2009),Documentary +139092,"Run, Ricky Run (2010)",Documentary +139096,Unmatched (2010),Documentary +139098,Four Days in October (2010),Documentary +139100,Once Brothers (2010),Documentary +139102,Pony Excess (2010),Documentary +139104,9.79* (2012),(no genres listed) +139106,You Don't Know Bo (2012),Documentary +139108,Elway To Marino (2013),Documentary +139110,Hawaiian: The Legend of Eddie Aikau (2013),Documentary +139112,This Is What They Want (2013),(no genres listed) +139114,The Price of Gold (2014),Documentary +139116,Requiem For The Big East (2014),Documentary +139118,Nearlyweds (2013),Romance +139120,Mustang (2015),Drama +139122,The Tender Game (1958),(no genres listed) +139124,Microbe et Gasoil (2015),Comedy +139126,The Third Lover (1962),(no genres listed) +139128,Genius Party Beyond (2008),Animation +139130,Afro Samurai (2007),Action|Adventure|Animation|Drama|Fantasy +139132,Plastic Little: The Adventures of Captain Tita (1994),Animation|Sci-Fi +139134,Soodhu Kavvum (2013),Comedy|Thriller +139136,Veyyil (2006),Drama +139138,Paruthiveeran (2007),Action|Drama +139140,ONEDREAMRUSH (2010),Fantasy +139142,Cowboy in Sweden (1970),(no genres listed) +139144,Hardflip (2012),Action|Drama +139146,The Steagle (1971),Comedy +139148,Bajrangi Bhaijaan (2015),(no genres listed) +139150,Subramaniapuram (2008),Action|Comedy|Drama|Romance +139153,Eli (2015),Comedy +139157,Massu Engira Maasilamani (2015),Comedy|Horror|Thriller +139159,Aadhavan (2009),Action|Children|Comedy|Drama|Thriller +139175,Madonna che silenzio c'è stasera (1982),(no genres listed) +139177,"Io, Chiara e lo scuro (1982)",(no genres listed) +139181,Taste of Killing (1966),Western +139183,The Price of Power (1969),Western +139185,A Girl Called Jules (1970),Drama +139187,My Dear Killer (1972),Drama|Thriller +139189,The Hired Gun (1975),(no genres listed) +139191,Sahara Cross (1978),(no genres listed) +139195,Jim Henson's The Storyteller (1989),Fantasy +139197,I Remember You (1985),(no genres listed) +139199,The Seventh Bullet (1974),(no genres listed) +139201,The Bodyguard (1979),Action|Western +139203,"White, White Storks (1966)",(no genres listed) +139205,Tanu Weds Manu Returns (2015),Comedy|Romance +139207,Intruder (1989),Horror|Thriller +139209,Bo Ba Bu (1998),Comedy|Drama +139211,The Universal Clock: The Resistance of Peter Watkins (2001),Documentary +139213,If I Had Wings (2013),Drama +139215,Fountainhead (1956),Drama +139217,Misbegotten (1998),Thriller +139219,Trucks (1997),Drama|Horror|Sci-Fi|Thriller +139223,Walkout (2006),Drama +139225,Dead Man's Bounty (2006),Action|Thriller|Western +139229,Summer City (1977),Drama|Thriller +139233,Sons of Liberty (2013),Action|Sci-Fi +139235,Anatomy of a Psycho (1961),Crime|Horror|Mystery|Thriller +139237,Canal Zone (1977),Documentary +139239,The Guest House (2012),Romance +139241,Stripperland (2011),Comedy|Horror +139243,Strike Force (1975),Crime|Drama|Thriller +139245,Metamorphosis (1990),Horror|Sci-Fi +139249,Last Will (2011),Drama|Thriller +139251,Sweet Lorraine (2015),(no genres listed) +139253,Identical (2011),Thriller +139257,Timebomb (1991),Action|Sci-Fi|Thriller +139259,A Crack in the Floor (2000),Horror +139263,Toy Soldiers (1984),Action|Drama|Thriller +139269,The Strange Case of Dr. Jekyll and Mr. Hyde (2006),Horror|Thriller +139273,Craig (2008),(no genres listed) +139275,Dumbbells (2014),Comedy +139277,The Last Light (2014),Drama|Thriller +139279,Slow Jam King (2004),Comedy +139281,Poker Run (2009),Action|Thriller +139283,The Hanged Man (2007),Mystery|Thriller +139285,Dracula's Widow (1988),Horror|Thriller +139287,Ghost Fever (1987),Comedy|Horror +139289,The Shattering (2015),Horror +139291,Demon Possessed (1993),(no genres listed) +139293,Off the Ledge (2009),Comedy +139295,The Movie Out Here (2012),Comedy +139299,The Untold (2002),Horror +139301,Hollows Grove (2014),(no genres listed) +139303,Outrage: Born in Terror (2009),Action|Documentary|Drama|Thriller +139305,5 Souls (2013),Thriller +139307,Felipe Esparza: They're Not Gonna Laugh At You (2012),Comedy +139309,The Drownsman (2014),Fantasy|Horror|Thriller +139311,Road Wars (2015),Action|Sci-Fi +139313,Awaken (2015),Action|Horror|Thriller +139315,LA Apocalypse (2014),Action|Sci-Fi|Thriller +139317,Pressure (2015),Thriller +139321,Unknown Caller (2014),Thriller +139323,Hope Lost (2015),Drama|Thriller +139325,Eat with Me (2014),Comedy|Romance +139327,Heaven Adores You (2014),Documentary +139329,Can't Stand Losing You: Surviving The Police (2015),Documentary +139331,Leviathan: The Story of Hellraiser and Hellbound: Hellraiser II (2015),Documentary|Horror +139333,Ironheart (1992),Action|Crime +139335,Merry Ex-Mas (2014),(no genres listed) +139341,Devil in the Flesh (1998),Horror|Thriller +139347,Fear House (2008),Horror +139349,The Violent Kind (2008),(no genres listed) +139351,Interstate (2008),Action|Adventure|Thriller +139353,Black Magic Woman (1991),Horror +139355,Boggy Creek (2011),Horror +139361,Autumn (2009),Drama|Horror +139363,Chavez Cage of Glory (2013),Action|Drama +139365,Tomcat:: Dangerous Desires (1983),Horror|Thriller +139367,My Trip Back to the Dark Side (2014),Crime|Thriller +139369,America's Most Haunted (2013),Comedy|Horror +139371,The Dead and the Damned (2011),Horror|Western +139373,The Bucks County Massacre (2010),Horror +139377,Palimpsest (2006),Thriller +139379,A Woman Alone (1981),Drama +139383,Legacy (2015),Comedy|Drama +139385,The Revenant (2015),Adventure|Drama +139387,Salome (1953),Drama +139389,Angel Unchained (1970),Action|Thriller +139391,The Manhandlers (1974),Action|Crime|Drama +139393,Hell's Angels '69 (1969),Action|Adventure|Crime|Thriller +139395,The Night God Screamed (1971),Horror|Thriller +139397,Peace After Marriage (2013),Comedy|Drama|Romance +139399,The Show (1927),Drama +139401,Giovanna's Father (2008),(no genres listed) +139403,The Right Distance (2007),Drama +139405,The Wind Blows Round (2006),Drama +139407,Draquila - L'Italia che trema (2010),(no genres listed) +139409,Il cosmo sul comò (2008),Comedy +139411,It Begins with the End (2010),Drama|Romance +139413,Rebound: The Legend of Earl 'The Goat' Manigault (1996),Drama +139415,Irrational Man (2015),Crime|Drama +139417,Tale of Tales (2015),Fantasy +139419,One Minute Time Machine (2014),Comedy|Mystery|Romance +139421,Looney Tunes: Rabbits Run (2015),Animation|Comedy +139423,Cleveland Abduction (2015),(no genres listed) +139425,The Man Who Wasn't There (1983),Action|Comedy|Fantasy|Sci-Fi +139429,Ominous (2009),Drama|Horror|Thriller +139433,Back from Hell (2012),Horror|Thriller +139435,The Legend of the Sorrow Creek (2007),Drama|Horror|Thriller +139439,Secrets of the Clown (2007),Horror +139441,ReVamped (2007),Action|Horror|Thriller +139443,Alucard (2008),Drama|Horror +139445,Satanic (2006),Horror +139447,The Lazarus Papers (2010),Action|Drama|Sci-Fi|Thriller +139451,Black Ribbon (2007),Horror|Mystery|Thriller +139453,Hide (2011),Horror +139455,The Cloth (2013),Action|Fantasy|Horror +139457,Vampire Boys (2011),Horror +139459,Back to the Beyond (2011),(no genres listed) +139461,Carry On Columbus (1992),Comedy +139463,Deadly Renovations (2010),Horror|Thriller +139467,Mutants (2008),Action|Horror|Sci-Fi +139469,Mr. Hush (2010),Horror +139471,The Slaughterhouse Massacre (2005),Horror +139473,Lost Woods (2012),Action|Horror|Sci-Fi|Thriller +139475,Psychophony (2013),Mystery|Thriller +139477,Dark Fields (2006),(no genres listed) +139483,The Alumni Chapter (2011),Comedy|Drama +139485,Dead End Road (2004),Action|Horror +139487,Mummy Maniac (2007),Horror +139489,Jinnah (1998),Drama|War +139491,Sweet Kill (1972),Horror|Thriller +139493,L'arte della felicità (2013),Animation|Drama|Fantasy +139495,Going By The Book (2007),Action|Comedy|Crime +139497,Art Of The Devil (2004),Horror|Mystery +139499,Camp Belvidere (2014),(no genres listed) +139501,Carte Blanche (2015),Drama +139503,Women's Day (2012),Drama +139505,Love My Life (2006),Drama|Romance +139507,Lissi and the Wild Emperor (2007),Animation|Comedy +139509,3faltig (2010),Comedy +139511,Exte: Hair Extensions (2007),Horror +139513,"I Love You, I Don't (1976)",Drama +139515,Slogan (1969),Comedy|Drama|Romance +139517,One Missed Call 2 (2005),Horror|Thriller +139519,One Missed Call 3: Final (2006),Horror +139521,The Boy in the Plastic Bubble (1976),Drama +139523,Allies (2014),Action|War +139525,Cartel Land (2015),Action|Documentary|Drama +139529,The Attic (2008),Horror|Thriller +139531,The Dynamiter (2011),Drama +139533,The Secret Village (2013),Mystery|Thriller +139537,Arcadia (2012),Children|Drama +139539,Brightest Star (2014),Comedy|Drama|Romance +139541,First Winter (2012),Drama +139545,Gut (2012),(no genres listed) +139547,Placebo: Soulmates Never Die: Live in Paris 2003 (2004),(no genres listed) +139549,Helena from the Wedding (2010),Comedy|Drama|Romance +139551,Hitting the Cycle (2012),Drama +139553,Always (2011),Drama +139555,Kiss the Abyss (2010),Horror +139557,Long Arm of the Law (1984),Action|Crime +139559,Mantervention (2014),Comedy|Romance +139561,Pilgrim Song (2012),Drama +139563,Primary Motive (1992),(no genres listed) +139565,Santorini Blue (2013),(no genres listed) +139567,Sensation (2011),Comedy|Drama|Romance +139569,Shock Value (2014),(no genres listed) +139571,"Small, Beautifully Moving Parts (2012)",Comedy +139573,Stag (2013),Comedy +139575,Baahubali: The Beginning (2015),Action|Drama +139578,La Fleur de l'âge (2013),Comedy +139580,Den of Lions (2003),Action|Thriller +139584,Pokémon Ranger and the Temple of the Sea (2006),Animation|Children +139586,Heart of the Country (2013),Drama|Romance +139588,Neon Maniacs (1986),Horror +139590,Hunt for the Labyrinth Killer (2013),Drama|Mystery|Thriller +139592,Heaven's Door (2013),(no genres listed) +139596,Danielův svět,(no genres listed) +139598,Yellowbird (2014),Animation|Children|Comedy +139600,Snow in Paradise (2015),Thriller +139602,I Am Steve McQueen (2014),Documentary +139604,Electrical Girl (2001),Comedy +139606,Pantani: The Accidental Death of a Cyclist (2014),Documentary +139608,Learning to Drive (2014),Comedy|Drama|Romance +139612,Kattradhu Thamizh (2007),Drama +139614,Julio Begins in July (1979),Drama +139616,The 27th Day (1957),Sci-Fi +139618,The Star Making Machine (2012),(no genres listed) +139620,Everything's Gonna Be Great (1998),Adventure|Children|Comedy|Drama +139622,Gothic & Lolita Psycho (2010),Action|Horror +139624,Law of the Border (1966),Crime|Drama +139626,The Human Experiment (2015),Documentary +139628,"Return to the Philippines, the Leon Cooper Story (2015)",Documentary +139632,The Sleepwalker (2014),Drama +139634,The True Cost (2015),Documentary +139636,The Blue Elephant (2014),Drama|Horror|Mystery|Thriller +139640,Ooops! Noah is Gone... (2015),Animation +139642,Southpaw (2015),Action|Drama +139644,Sicario (2015),Crime|Drama|Mystery +139647,Lee Rock (1991),Action|Crime|Drama +139649,UMMAH - Unter Freunden (2013),Comedy +139651,The Bride He Bought Online (2015),(no genres listed) +139653,Winston Churchill: Walking with Destiny (2010),Documentary +139655,Goodnight Mommy (Ich seh ich seh) (2014),Drama|Fantasy|Horror|Thriller +139657,Crimes of the Past (2009),Action|Drama|Mystery|Thriller +139659,Ghost Image (2007),Thriller +139661,Chlorine (2014),Comedy|Drama +139663,Aftermath (2013),Crime|Thriller +139665,Out of Reach (2013),(no genres listed) +139667,Nowhere to Hide (2009),Thriller +139669,Low Fidelity (2011),(no genres listed) +139675,The Year That Trembled (2002),Drama +139677,Black Crescent Moon (2008),(no genres listed) +139681,Norville and Trudy (1997),Children|Comedy|Sci-Fi +139683,Bad Behavior (2013),(no genres listed) +139685,Manna from Heaven (2002),Comedy +139687,What the Deaf Man Heard (1997),Drama +139689,My Sister's Keeper (2002),Drama +139693,Saint Maybe (1998),(no genres listed) +139695,Taking Back Our Town (2001),Drama +139697,Insane (2010),Horror +139699,The Visitant (2012),(no genres listed) +139701,Spirit Stalkers (2012),Horror +139703,Mona (2012),Drama|Fantasy|Mystery +139705,Biology 101 (2011),Thriller +139707,Down Here (2014),Crime|Drama|Mystery +139709,Desert Son (2010),Drama|Thriller +139711,Honor Thy Father (1973),Crime|Drama +139713,Un moment d'égarement (2015),Comedy|Drama +139715,War Pigs (2015),Action|War +139717,10 Cent Pistol (2015),Crime|Thriller +139719,Todd Barry: The Crowd Work Tour (2014),Comedy +139721,X+Y (2014),Comedy|Drama +139723,Dark Was the Night (2014),Horror|Thriller +139725,Scalawag (1973),Adventure|Western +139727,The Substitute (1961),Animation|Comedy +139729,Every Home Should Have One (1970),Comedy +139731,Djinn (2013),Horror +139733,The Crisis of Civilization (2012),Animation|Documentary +139735,White Cop (2014),(no genres listed) +139737,Resurrected (1989),(no genres listed) +139739,Forever Young (1983),Drama +139741,Fatal Contact: Bird Flu in America (2006),Action|Drama|Thriller +139743,The Murder of Mary Phagan (1988),Crime|Drama +139745,Wheels (2014),Drama +139747,Before We Go (2014),Romance +139749,Pickup on 101 (1972),Drama +139751,Jitters (2010),Drama +139753,"Bruc, the Manhunt (2010)",Adventure +139755,Venetian Bird (1953),Mystery|Thriller +139757,Best of Enemies (2015),Documentary +139759,Lavalantula (2015),Horror|Sci-Fi +139761,Sharktopus vs. Whalewolf (2015),Adventure|Sci-Fi +139763,The Deceased (1965),(no genres listed) +139765,For Here or to Go? (2015),(no genres listed) +139769,Erotic Ghost Story (1987),Drama +139771,Chloe and Theo (2015),Drama +139773,The Burning Dead (2015),Horror +139775,I Am Big Bird: The Caroll Spinney Story (2014),Documentary +139777,Forks Over Knives Presents: The Engine 2 Kitchen Rescue (2011),Documentary +139779,The Phoenix Project (2015),Drama|Sci-Fi +139781,Cocaine Unwrapped (2012),Documentary +139783,Eugene Mirman: Vegan on His Way to the Complain Store (2015),Comedy +139785,The Last Lullaby (2008),Mystery|Thriller +139789,Filomena Marturano (1951),Comedy +139791,Book of Numbers (1973),Crime|Drama +139793,Walk Cheerfully (1930),(no genres listed) +139795,Hard Luck (1921),Comedy +139797,Smosh: The Movie (2015),Action|Adventure|Comedy +139799,The Skulls II (2002),Action|Comedy|Romance|Thriller +139801,The Skulls III (2004),Thriller +139803,Marina (2013),Drama|Romance +139805,Bad Turn Worse (2014),Crime|Drama|Thriller +139807,Firequake (2014),Action|Sci-Fi|Thriller +139811,Dog Eat Dog (2009),Action|Drama|Romance|Thriller +139813,Sand Castles (2014),Crime|Drama|Thriller +139815,Skeeter (1993),Horror|Sci-Fi|Thriller +139817,Doors Open (2012),Crime|Drama +139819,Hollywoo (2011),Comedy +139821,Vanaprastham (1999),Drama +139823,Honeymoon in Bali (1939),Comedy|Romance +139825,Chrysalis (2007),Action|Crime|Sci-Fi|Thriller +139827,The Challenge (2005),Action|Drama +139829,The Scapegoat (2013),Drama +139831,Messi (2014),Documentary +139835,Charlie's Farm (2014),Horror +139837,Robotrix (1991),Action|Comedy|Sci-Fi +139839,The Fruit is Swelling (1997),Romance +139841,Viva Erotica (1996),Comedy|Drama +139843,R20 (2004),Comedy +139845,Fit (1994),(no genres listed) +139847,Chevalier (2015),(no genres listed) +139849,The Capsule (2012),(no genres listed) +139851,The Slow Business Of Going (2000),(no genres listed) +139853,Wasted Youth (2011),(no genres listed) +139855,Anomalisa (2015),Animation|Comedy|Fantasy +139857,Colonia (2016),Thriller +139859,Ghost in the Shell Arise - Border 2: Ghost Whispers (2013),Action|Animation|Sci-Fi|Thriller +139861,Ghost in the Shell Arise - Border 3: Ghost Tears (2014),Action|Animation|Sci-Fi +139863,Ghost in the Shell Arise - Border 4: Ghost Stands Alone (2014),Action|Animation|Sci-Fi +139865,Qissa: The Tale of a Lonely Ghost (2013),Drama +139867,Saving Grace (2010),(no genres listed) +139869,Up to His Ears (1965),Adventure|Comedy +139871,A Year in Champagne (2014),Documentary +139873,Sherlock Holmes (1922),Drama|Mystery|Thriller +139875,The Trail Of Tears: Cherokee Legacy (2006),Documentary +139877,Fire! (1968),(no genres listed) +139879,Stephen Fry: The Secret Life of the Manic Depressive (2006),Documentary +139881,Dr. Ketel (2011),Thriller +139883,FTA (1972),Comedy|Documentary +139885,2 Young (2005),Drama|Romance +139887,But Always (2014),Drama|Romance +139889,Tiny Times (2013),Comedy|Drama|Romance +139891,Tiny Times 2 (2013),Comedy|Drama|Romance +139893,Tiny Times 3 (2014),Drama|Romance +139895,"English, August (1994)",Comedy|Drama +139897,Somewhere Only We Know (2015),Drama|Romance +139899,The Continent (2014),Drama +139901,Triumph in the Skies (2015),Comedy|Drama|Romance +139903,The Eleventh Victim (2012),Thriller +139905,Terror Out of the Sky (1978),Drama|Horror +139907,"Bees, The (1978)",Horror|Sci-Fi +139909,Russian Terminator (1989),Action +139911,Black Indians: An American Story (2004),Documentary +139913,Une heure de tranquillité (2014),Comedy +139915,How to Make Love Like an Englishman (2014),Comedy|Romance +139918,The Ghost Army (2013),Documentary|War +139920,Women of the Prehistoric Planet (1966),Action|Adventure|Sci-Fi +139922,Something good (2013),Drama|Thriller +139928,La nottata (1974),(no genres listed) +139934,Beati i ricchi (1972),Comedy +139936,"Senza famiglia, nullatenenti cercano affetto (1972)",Comedy|Drama +139938,Brancaleone alle crociate (1970),Comedy +139940,Antonio Gramsci: The Days of Prison (1977),(no genres listed) +139942,In the Name of the Father (1969),Comedy|Western +139948,The secret of the Old Woods (1993),Children|Fantasy +139950,Generazione 1000 euro (2009),Comedy +139952,Torno a vivere da solo (2008),Comedy +139958,Teeth (2000),(no genres listed) +139960,Fantozzi 2000 - La clonazione (1999),Comedy +139966,Fantozzi Il Ritorno (1996),Drama|Romance +139970,I Don't Speak English (1995),Comedy +139974,Cari fottutissimi amici (1994),Comedy +139976,Fantozzi in Heaven (1993),Comedy +139978,Fantozzi alla riscossa (1990),(no genres listed) +139980,I Won the New Year's Lottery (1989),Comedy +139982,Fantozzi va in pensione (1988),Comedy +139986,Scuola di ladri 2 (1987),(no genres listed) +139988,"Rimini, Rimini (1987)",Comedy +139992,School of Thieves (1986),(no genres listed) +139994,Fracchia contro Dracula (1985),Comedy|Horror +139996,Firefighters (1985),Comedy +139998,A tu per tu (1984),Comedy +140000,Fantozzi subisce ancora (1983),Comedy +140004,Sogni mostruosamente proibiti (1982),(no genres listed) +140006,Fracchia la belva umana (1981),(no genres listed) +140012,I-Lived (2015),Horror|Mystery|Thriller +140014,Brother's Keeper (2013),Drama +140016,Always Watching: A Marble Hornets Story (2015),Horror +140018,A che punto é la notte (1994),(no genres listed) +140024,My Friends Act III (1985),Comedy +140026,Mi manda Picone (1984),(no genres listed) +140032,The Twelve-Handed Men of Mars (1964),(no genres listed) +140034,Velvet Hands (1979),Comedy|Romance +140036,Ace (1981),Comedy +140038,Madly in Love (1981),Comedy +140040,Grand Hotel Excelsior (1982),Comedy +140042,Special Features: Handsome (1983),Comedy +140046,Saint Tropez - Saint Tropez (1992),(no genres listed) +140048,Ci hai rotto papà (1993),(no genres listed) +140054,The Grumpy (1986),Comedy +140056,Four Lovers (2010),Romance +140058,Soul Hustler (1973),Drama +140060,War Is Hell (1963),War +140062,The Devil's Eight (1969),Crime|Drama|Thriller +140064,The Hard Ride (1971),Action|Drama +140068,Army of Frankensteins (2013),Adventure|Comedy|Horror|Sci-Fi +140070,The Party at Kitty and Stud's (1970),(no genres listed) +140072,Language of Love (1969),Documentary +140074,The Vatican Tapes (2015),Horror|Thriller +140076,Les barons (2009),Comedy +140078,"Video Nasties: Moral Panic, Censorship & Videotape (2010)",Documentary +140080,Hour of the Star (1985),Drama +140082,Best Kept Secret (2013),Documentary +140084,Kaiji: The Ultimate Gambler (2009),Drama|Thriller +140086,Kaiji 2: The Ultimate Gambler (2011),Drama|Thriller +140088,Remembrance (2011),Drama +140090,Ultrà (1992),Documentary +140092,Meet Me There (2014),Drama|Horror|Thriller +140094,Corbo (2015),Crime|Drama +140096,3 Hearts (2014),Drama +140098,Runoff (2015),Drama +140100,Brothers of War (2015),Drama|War +140102,Diet of Sex (2014),Comedy|Drama|Romance +140104,"If You Don't, I Will (2014)",Comedy +140106,Our Little Sister (2015),Comedy +140108,Yakuza Apocalypse (2015),Action|Horror +140110,The Intern (2015),Comedy +140112,"Blue Water, White Death (1971)",Documentary +140115,Batman Unlimited: Monster Mayhem (2015),Action|Animation +140119,Venial (2014),Thriller +140121,Sam Steele and the Junior Detective Agency (2011),(no genres listed) +140123,One's Own Choice (1972),Drama +140125,St. Nick (2009),Drama +140127,Little Jerusalem (2006),Drama +140129,The Near Room,(no genres listed) +140131,Extinction (2015),Drama|Horror|Sci-Fi +140133,Hollywood Chainsaw Hookers (1988),Comedy|Horror +140135,Intrepido: A Lonely Hero (2013),Comedy +140137,I Will Walk Like a Crazy Horse (1973),Drama +140140,Bad Boy Street (2012),Drama|Romance +140142,Bhuvan Shome (1969),(no genres listed) +140144,The Story of O Part 2 (1984),(no genres listed) +140146,The Suicide Theory (2015),Drama|Thriller +140148,A Bottle in the Gaza Sea (2012),Drama +140150,Chelsea Handler Uganda Be Kidding Me Live (2014),Comedy +140152,Dreamcatcher (2015),Children|Crime|Documentary +140154,The Paw Project (2013),Documentary +140156,The Truth About Webcam Girls (2014),Documentary +140158,American Courtesans (2013),Documentary +140160,Descendants (2015),Action|Adventure|Comedy +140162,Love (2015),Drama|Romance +140164,Questions for Crazy Horse (2010),(no genres listed) +140166,Lambchops (1929),(no genres listed) +140168,The Invoking (2013),Horror|Thriller +140170,Midway to Heaven (2011),Comedy|Romance +140172,Curse of the Headless Horseman (1972),Horror +140174,Room (2015),Drama +140176,Le Monde doit m'arriver (2013),(no genres listed) +140178,K.O. Miguel (1957),Comedy +140182,Gone with the Pope (2010),Drama|Romance +140184,Kingdom Come (2014),Horror +140186,The Traffickers (2012),Action|Drama +140188,To Kill a Man (2014),Drama +140190,Dear Santa (2011),Comedy|Drama|Romance +140192,Targeting (2015),(no genres listed) +140194,Inside Hana's Suitcase (2012),Documentary +140196,Monster High: Scaris City of Frights (2013),Animation|Fantasy +140198,Chameleon Street (1989),Comedy +140202,Baker's Hawk (1976),Action|Children|Drama|Western +140204,Backmask (2015),Horror|Thriller +140206,"Jack, Jules, Esther, & Me (2013)",(no genres listed) +140208,The World is Big and Salvation Lurks Around the Corner (2008),Drama +140210,In the Courtyard (2014),Comedy|Drama +140212,Tarzan II (2005),Adventure|Animation|Children +140214,Triple Dog (2010),Drama|Thriller +140216,Removal (2010),Thriller +140218,P-51 Dragon Fighter (2014),Action|Fantasy|Sci-Fi +140220,Guest Wife (1945),Comedy|Romance +140222,A Killer Among Us (2012),Crime|Thriller +140224,Filmage: The Story of Descendents/All,Documentary +140226,An Almost Perfect Affair (1979),Comedy|Romance +140228,Giratina and the Sky Warrior (2008),Adventure|Animation|Children +140231,Zeitoun (2015),Animation|Drama +140233,Ernie Biscuit (2015),(no genres listed) +140235,The Redeemer: Son of Satan! (1978),Horror +140237,The Runner (2015),Drama +140239,Helter Skelter (2012),Drama|Fantasy|Horror +140241,Bandage (2010),Drama|Romance +140243,Tokyo Tower (2005),Drama|Romance +140245,Twenty (2015),Comedy|Drama +140247,The Gift (2015),Drama|Horror +140249,Babine (2008),Drama|Fantasy +140253,Unter Umständen verliebt (2012),Comedy +140255,Journey to Planet X (2012),Documentary +140257,L'Art de séduire (2011),Comedy|Romance +140259,Heart of Stone (2001),Thriller +140261,Set Fire to the Stars (2015),Drama +140263,Milk? (2012),Documentary +140265,George Carlin: Jammin' in New York (1992),Comedy +140267,The Witch (2015),Horror +140269,Homeless to Harvard: The Liz Murray Story (2003),Drama +140271,"Mary Is Happy, Mary Is Happy (2013)",Drama +140273,The Scarlet Worm (2011),Western +140275,Tales of the Night (2011),Animation|Fantasy +140279,Eldorado (2008),Comedy|Drama +140281,The Pack (2010),Horror +140283,13 Eerie (2013),Horror|Sci-Fi +140287,Rosebud (1975),Action|Thriller +140289,Men & Chicken (2015),Comedy|Drama +140291,About Ray (2015),Comedy|Drama +140293,Mobile Suit Gundam II: Soldiers of Sorrow (1981),Action|Adventure|Animation|Drama|Sci-Fi|War +140295,Mobile Suit Gundam III: Encounters in Space (1982),Action|Adventure|Animation|Drama|Sci-Fi|War +140297,The Man Who Saved the World (2013),Documentary +140299,B-Movie: Lust & Sound in West-Berlin (2015),Documentary|Musical +140301,The Escort (2015),Comedy|Romance +140303,Zaytoun (2012),Adventure|Drama|Thriller|War +140305,Crossfire: Hate Is Like a Gun (2005),Documentary +140307,A Town Has Turned to Dust (1958),Drama +140309,Uncle John (2015),Crime|Drama|Mystery +140311,Pervert Park (2014),Crime|Documentary +140313,No One's Child (2014),Drama +140315,Last Cab to Darwin (2015),Drama +140317,A Tiger Walks (1964),Children|Drama +140319,Kung Fu Killer (2008),Action|Drama|Thriller +140321,Chris Tucker: Live (2015),Comedy +140323,Memories (2013),Crime|Thriller +140325,Mumbai Police (2013),Crime|Mystery|Thriller +140327,The Orator (2011),(no genres listed) +140329,Hairbrained (2013),Comedy +140331,Romantic Prelude (2009),Romance +140333,Maundy Thursday (2006),Drama +140335,Yuma (2012),(no genres listed) +140339,Admiral (2015),Action|Adventure +140341,Lava (2015),Animation|Children +140343,Assault at West Point: The Court-Martial of Johnson Whittaker (1994),Drama|Thriller +140345,The Man Called Flintstone (1966),Adventure|Animation|Children|Mystery|Romance +140347,The Hunley (1999),Action|Drama|War +140349,Gabriel Iglesias: I'm Not Fat... I'm Fluffy (2009),Comedy +140351,Richard Jeni: A Big Steaming Pile of Me (2005),Comedy +140353,Mind Meld: Secrets Behind the Voyage of a Lifetime (2001),Documentary +140355,Bill Cosby: Far From Finished (2013),Comedy +140357,Au Pair II (2001),Comedy +140361,Scabbard Samurai (2011),Action|Comedy +140363,"The Good, the Bad, and Huckleberry Hound (1988)",(no genres listed) +140365,Short Peace (2013),Animation +140367,Rikki-Tikki-Tavi (1975),Animation +140369,War Arrow (1954),Adventure|Drama|Romance|War|Western +140371,The Crucifer of Blood (1991),Comedy|Crime|Drama|Mystery|Thriller +140373,The Chosen One: Legend of the Raven (1998),Action|Thriller +140375,A Volar Joven (1947),(no genres listed) +140377,About Sarah,Drama +140379,The Face on the Milk Carton (1995),(no genres listed) +140381,The Three Stooges (2000),Comedy|Documentary|Drama +140383,Van Helsing: The London Assignment (2004),Action|Animation|Fantasy|Horror +140385,A Horse for Danny (1995),Children|Drama +140387,Missing Pieces (2000),(no genres listed) +140389,Rose Hill (1997),(no genres listed) +140391,Pistol: The Birth of a Legend (1991),Children|Drama +140393,The Christmas Box (1995),Drama|Fantasy +140395,Where The Red Fern Grows II: The Classic Continues (1992),Children +140397,Animal Farm (1999),Animation|Drama +140399,Hellboy Animated: Iron Shoes (2007),(no genres listed) +140401,The Black Shield Of Falworth (1954),Adventure +140403,Jonny Quest Vs. The Cyber Insects (1995),Action|Adventure|Animation +140405,Scared Stiff (1953),Comedy +140407,Cas & Dylan (2013),Comedy|Drama +140411,Gladiators 7 (1962),Action +140413,Charley and the Angel (1973),Children|Comedy|Fantasy +140415,Atom Man vs Superman (1950),Action|Sci-Fi +140417,Superman (1948),Action|Crime|Sci-Fi +140419,The Invisible Boy (1957),Adventure|Children|Comedy|Sci-Fi +140421,Tired of Kissing Frogs (2006),Comedy|Drama|Romance +140423,Night Of The Twisters (1996),Action|Drama +140425,The 4th Tenor (2002),Comedy|Romance +140427,The Collection (1976),(no genres listed) +140429,One Wild Oat (1951),Comedy +140431,The Biscuit Eater (1940),(no genres listed) +140433,The Deerslayer (1957),Western +140435,Captain America (1944),Action|Adventure|Sci-Fi +140437,Joni (1979),Drama +140439,"It's A Bird, It's A Plane, It's Superman! (1975)",Comedy +140441,Anne Of Green Gables: The Continuing Story (2000),Children|Drama +140443,Return to Mayberry (1986),(no genres listed) +140445,CHiPs 99 (1998),Action|Crime +140447,Au Pair (1994),Comedy|Romance +140449,Sting of the Black Scorpion (2002),Action|Sci-Fi +140451,Black Scorpion (1995),Action|Sci-Fi +140453,Black Scorpion II: Aftershock (1997),Action|Adventure|Sci-Fi +140455,Grace Kelly (1983),(no genres listed) +140457,The Audrey Hepburn Story (2000),Drama +140459,The Dukes of Hazzard: Reunion! (1997),Action|Adventure +140461,Right on Track (2003),(no genres listed) +140463,I Spy Returns (1994),Action|Adventure|Comedy +140465,The Pretender 2001 (2001),(no genres listed) +140467,The Facts of Life Reunion (2001),(no genres listed) +140469,The Harlem Globetrotters on Gilligan's Island (1981),Adventure|Comedy +140471,The Pretender: Island of the Haunted (2001),(no genres listed) +140473,Rescue From Gilligan's Island (1978),Comedy +140475,Death Train (1993),Action|Thriller +140477,The Parent Trap II (1986),Children +140479,A Season on the Brink (2002),(no genres listed) +140481,"Family Guy Presents: Something, Something, Something, Dark Side (2009)",Animation|Comedy|Sci-Fi +140483,Mary and Rhoda (2000),Comedy|Drama|Romance +140485,Michael Jordan: An American Hero (1999),Drama +140487,"Come On, Get Happy: The Partridge Family Story (1999)",(no genres listed) +140489,Daydream Believers: The Monkees Story (2000),Documentary|Drama +140491,Puff the Magic Dragon (1978),Animation|Children +140493,Planet Outlaws (1953),Sci-Fi +140495,The Shadow Strikes (1937),Mystery +140497,Walk the Proud Land (1956),Western +140499,Sailor Beware (1952),Comedy +140501,Island of the Blue Dolphins (1964),Children|Drama +140503,The Biscuit Eater (1972),Children|Drama +140505,Fatal Bond (1991),Drama|Thriller +140507,Dan Aykroyd - Unplugged On UFO's (2006),Documentary +140509,Operation Dalmatian: The Big Adventure (1997),(no genres listed) +140511,Hellboy Animated: Blood and Iron (2007),Action|Animation|Fantasy|Horror|Sci-Fi|Thriller +140513,Divina Confusión (2008),Comedy|Drama|Romance +140515,Nancy Drew... Reporter (1939),Comedy|Crime|Mystery +140517,Charro! (1969),Action|Drama|Western +140519,Hidden Secrets (2006),Comedy|Drama +140521,The First Snow of Winter (1998),Children +140523,"Visit, The (2015)",Comedy|Horror +140525,Secret in Their Eyes (2015),Crime|Drama|Mystery +140527,Princess Iron Fan (1941),Animation|Drama +140529,Sinister 2 (2015),Horror|Mystery|Thriller +140531,Coo of The Far Seas (1993),(no genres listed) +140533,"Gwen, the Book of Sand (1985)",Adventure|Animation|Fantasy|Sci-Fi +140535,Nesting (2012),Comedy|Horror|Romance +140537,Redeemer (2014),Action|Crime +140539,Pauvre Pierrot (1892),Animation +140541,The Electric Hotel (1908),Animation|Comedy|Sci-Fi +140543,Birth of a Flower (1910),Documentary +140545,Fantasmagorie (1908),(no genres listed) +140547,The Merry Skeleton (1898),Comedy +140549,Serpentine Dance: Loïe Fuller (1897),(no genres listed) +140551,The Melomaniac (1903),Comedy +140553,"Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics (1911)",Animation|Comedy +140555,The Dinosaur and the Missing Link: A Prehistoric Tragedy (1915),Animation|Comedy +140557,A Is for Autism (1992),Animation|Documentary +140559,7G Rainbow Colony (2004),Drama|Romance +140561,Jeff Ross Roasts Criminals: Live at Brazos County Jail (2015),Comedy|Documentary +140563,Pittsburgh (2006),Comedy|Documentary +140565,Let It Shine (2012),Children +140567,Sinful Davey (1969),Adventure|Comedy|Crime +140569,The Further Adventures of the Wilderness Family (1978),Adventure|Children +140571,Spud 2: The Madness Continues (2013),Comedy|Drama +140573,How to Sell a Banksy (2012),Documentary +140575,Spawn of the Slithis (1978),Horror|Sci-Fi|Thriller +140577,The Battle of Gettysburg (1955),(no genres listed) +140579,My Sweet Little Village (1985),Comedy +140581,I Am Chris Farley (2015),Documentary +140583,The Secret Ways (1961),Adventure +140585,The Wild and the Innocent (1959),Romance|Western +140587,Apache Rifles (1964),(no genres listed) +140589,Drums Across the River (1954),Western +140591,Beyond Right & Wrong: Stories of Justice and Forgiveness (2012),Documentary +140593,Dog's Heart (1976),(no genres listed) +140597,Il mulino del Po (1949),(no genres listed) +140605,La steppa,(no genres listed) +140607,La mandragola (1965),Comedy +140615,12 registi per 12 città (1989),(no genres listed) +140617,Get Smart's Bruce and Lloyd Out of Control (2008),Action|Comedy +140619,"Chronic-Con, Episode 420: A New Dope (2015)",Comedy|Documentary +140621,Russell Brand - From Addiction to Recovery (2012),Documentary +140623,Russell Brand: End the Drugs War (2014),(no genres listed) +140627,Battle For Sevastopol (2015),Drama|Romance|War +140629,Snails in the Rain (2013),Drama +140631,Under the Bed (2012),Horror +140633,Another World (2014),Documentary +140635,Almost Mercy (2015),Horror +140637,I've Been Waiting for You (1998),Horror +140639,Nancy Drew (2002),(no genres listed) +140641,Revenge of the Middle-Aged Woman (2004),Drama +140645,Moonrunners (1975),Action|Comedy +140647,"Csocsó, avagy éljen május elseje! (2001)",Comedy +140649,Csinibaba (1997),Comedy +140651,Made in Hungaria (2009),Comedy|Romance +140653,Spirit of the Marathon (2008),Documentary +140655,Painted Skin: The Resurrection (2012),Drama|Fantasy +140657,Sakura Killers (1987),Action +140659,The Rise and Rise of Michael Rimmer (1970),Comedy|Drama +140661,I Saw What You Did (1988),Drama|Horror|Thriller +140663,Blood Brothers (1973),Crime|Drama +140665,84 Charlie Mopic (1989),Adventure|Drama +140667,Deadly Chase (1978),(no genres listed) +140669,L'onorata famiglia (1976),Crime|Drama +140671,The Black Hand (1973),Crime +140679,Bloody Friday (1972),Action|Crime|Drama|Thriller +140681,Ghadi (2013),Children|Comedy|Drama +140683,West (2013),Drama +140685,Your Honor (1973),(no genres listed) +140687,Dog Tags (1985),Drama +140689,Nightmare (1981),Horror +140693,Spirits of Death (1972),Horror|Thriller +140695,The Dress Rehearsal (1968),(no genres listed) +140697,The Blind Fly (1966),(no genres listed) +140699,Dragon Nest: Warriors' Dawn (2014),Adventure|Animation|Children|Fantasy +140701,Harbinger Down (2015),Horror|Sci-Fi +140703,The Bunker of the Last Gunshots (1981),(no genres listed) +140705,Hollywood Vice Squad (1986),Action|Comedy +140707,Curious George 2: Follow That Monkey! (2009),Animation|Children +140709,Death Comes to Pemberley (2013),Drama|Mystery|Romance +140711,American Ultra (2015),Action|Comedy|Sci-Fi|Thriller +140713,No Escape (2015),Thriller +140715,Straight Outta Compton (2015),Drama +140717,Viva Algeria (2004),Drama +140719,Ruined Heart: Another Love Story Between A Criminal & A Whore (2014),Action|Adventure|Drama +140721,Dungeons & Dragons: The Book of Vile Darkness (2012),Fantasy +140723,Twelve in a Box (2007),Thriller +140725,Cop Car (2015),Crime|Thriller +140729,The Keeper - The Legend of Omar Khayyam (2005),Children|Drama +140731,Company Limited (1971),(no genres listed) +140733,Lassiter (1984),Crime|Drama|Mystery|Thriller +140735,The Washington Affair (1977),Drama +140737,The Lost Room (2006),Action|Fantasy|Mystery +140739,Eighteen (2005),Drama +140741,Get Your Stuff (2000),Drama|Romance +140743,The Man I Love (1997),Drama +140745,10 Attitudes (2001),Comedy|Drama|Romance +140747,16 Wishes (2010),Children|Drama|Fantasy +140749,29th and Gay (2005),Comedy +140751,Almost Normal (2005),Comedy|Drama|Sci-Fi +140753,The Men Next Door (2012),(no genres listed) +140755,Long-Term Relationship (2006),Comedy|Romance +140757,3-Day Weekend (2008),Drama +140759,The Big Gay Musical (2009),Comedy|Drama|Romance +140761,The Biggest Fan (2002),Comedy|Romance +140763,Boy Crazy (2009),(no genres listed) +140765,Carl Panzram: The Spirit of Hatred and Revenge (2012),(no genres listed) +140767,Conversations with Mother (2004),Comedy|Drama +140769,Puella Magi Madoka Magica the Movie Part I: Beginnings (2012),Action|Animation|Horror|Mystery +140771,Pardon My Past (1945),Comedy +140773,A LEGO Brickumentary (2015),Documentary +140775,Houston (2013),(no genres listed) +140777,Pasolini (2015),Drama +140779,Happiness Runs (2010),Drama +140783,"Helga, She Wolf of Spilberg (1977)",Drama|Thriller +140785,How to Follow Strangers (2013),Drama|Romance +140787,Smart Ass (2014),Comedy|Drama +140789,Telets (2001),Drama +140791,Bermuda Tentacles (2014),Sci-Fi +140793,Sir Henry at Rawlinson End (1980),Comedy +140795,Midori (1992),Animation|Drama|Horror +140797,Always - Sunset on Third Street (2005),Comedy|Drama +140799,Truck Turner (1974),Action|Crime|Drama +140801,Kano (2014),Drama +140803,Beyond Beauty: Taiwan from Above (2013),Documentary +140805,Attack on Titan (2015),Drama|Horror +140807,Sailor Moon S the Movie: Hearts in Ice (1994),Action|Animation|Comedy +140809,Sailor Moon R: The Movie (1993),Animation|Comedy|Drama|Romance +140811,Sailor Moon Super S: The Movie (1995),Action|Animation|Comedy +140814,Marco Polo (2007),Adventure|Drama +140816,Tangerine (2015),Comedy|Drama +140818,Merlin and the War of the Dragons (2008),Fantasy +140820,Air (2015),Sci-Fi|Thriller +140822,Just Peck (2009),Children|Comedy +140824,Götz von Berlichingen (2014),Adventure +140826,Schoßgebete (2014),Drama +140828,009-1: The End of the Beginning (2013),Action|Sci-Fi +140830,The Legend Of Secret Pass (2010),Animation|Children|Fantasy +140832,Witchville (2010),Action|Fantasy|Sci-Fi|Thriller +140834,Der Haustyrann (1959),Comedy +140836,The Littlest Horse Thieves (1977),Children|Drama +140838,Dead Before Dawn 3D (2012),Adventure|Comedy|Horror +140840,Avenged (2013),Action|Fantasy|Horror|Thriller +140842,Modern Life (2008),Documentary +140844,13 Minutes (2015),Drama +140846,Toute première fois (2015),Comedy +140848,Dead Europe (2012),Drama +140850,Every Secret Thing (2014),Crime|Drama|Mystery|Thriller +140852,964 Pinocchio (1991),Horror|Sci-Fi +140854,"Dagmar's Hot Pants, Inc. (1971)",Comedy|Drama|Romance +140856,Inner Demons (2014),Horror|Thriller +140858,Women Who Flirt (2014),Comedy|Romance +140860,Hacker (2002),Comedy +140862,Khottabych (2006),Comedy|Fantasy +140864,Butterfly (2015),Comedy|Drama|Romance +140866,Scusate se esisto! (2014),Comedy|Romance +140868,Match (2014),Comedy|Drama +140870,Clandestinos (2008),Drama +140872,The Past is a Grotesque Animal (2014),Documentary +140874,Swallows and Amazons,(no genres listed) +140876,Do Lado de Fora (2014),Comedy +140878,4 Moons (2014),Drama +140880,Fashion Victims (2007),Comedy +140882,I Am Happiness on Earth (2014),Drama +140884,The Road To Love (2001),Drama +140886,The Affair (2010),Drama +140888,Summer Nights (2014),Comedy +140890,Holiday (2014),Drama +140894,The Corruption (1986),Drama|Romance +140896,The Dark Side of Love (1984),Drama +140902,Casta e pura (1981),(no genres listed) +140904,Love in First Class (1980),Comedy +140908,Ernesto (1979),Drama|Romance +140910,Nene (1977),Drama +140912,Submission (1976),Drama +140914,Lovers and Other Relatives (1974),Comedy +140916,Malicious (1973),Comedy|Fantasy +140918,Million Dollar Eel (1971),Comedy +140920,Kill the Fatted Calf (1970),(no genres listed) +140922,Mother's Heart (1969),Drama +140924,"Grazie, zia (1968)",Drama +140926,Treasure Guards (2011),Adventure +140928,Joy (2015),Comedy|Drama +140930,Speedtrap (1978),Action|Crime|Drama +140932,Shut Up Little Man! An Audio Misadventure (2011),Comedy|Documentary +140934,Tracks (2005),Drama +140936,Blindside (1986),Action|Romance|Thriller +140938,Vettaiyaadu Vilaiyaadu (2006),Action|Thriller +140940,Azazel (2002),Action|Adventure|Drama|Mystery +140942,The Turkish Gambit (2005),Action|Adventure|Drama|Mystery +140944,Taras Bulba (2009),Action|Drama|War +140946,The PyraMMMid (2011),Crime|Drama +140948,Google Me (2008),Documentary +140954,Daisy Town (1971),Animation|Comedy|Western +140956,Ready Player One,Action|Sci-Fi|Thriller +140958,Next Goal Wins (2014),Documentary +140960,Bad Faith (2007),Comedy +140962,Amnesiac (2015),Drama|Horror|Mystery +140964,I Am the Law (1977),(no genres listed) +140968,"Mala, amore e morte (1975)",Crime +140972,The Climber (1975),Thriller +140974,Star Spangled Girl (1971),Comedy +140976,Supersonic Man (1979),Adventure|Comedy|Fantasy +140978,"No, The Case Is Happily Resolved (1973)",Crime +140982,The Lonely Violent Beach (1971),Crime|Thriller +140984,Final Accord (1936),Drama +140986,Pillars of Society (1935),Drama +140988,The Girl from the Marsh Croft (1935),(no genres listed) +140990,"Habanera, La (1937)",Drama +140992,Deck the Halls (2011),Drama|Mystery +140994,One. Two. One (2011),(no genres listed) +140996,Cure: The Life of Another (2014),Mystery|Thriller|War +141000,Library Wars (2013),Action|Drama|Fantasy +141002,Ditto (2000),Drama|Fantasy|Romance|Sci-Fi +141004,Victor Frankenstein (2015),Drama|Horror|Sci-Fi +141006,Rembetiko (1982),Drama +141008,Sholem Aleichem: Laughing In The Darkness (2012),Documentary +141010,Broadway Musicals: A Jewish Legacy (2013),Documentary +141012,The Fall of the Essex Boys (2012),Crime +141014,Every Little Thing (1997),(no genres listed) +141016,Three Miles North of Molkom (2008),Documentary +141018,Animalympics (1980),Animation|Comedy +141020,Attention les yeux ! (1976),(no genres listed) +141022,Sfrattato cerca casa equo canone (1983),Comedy +141026,The Nurse in the Military Madhouse (1979),Comedy +141028,L'infermiera di notte (1979),Comedy +141030,My Father's Nurse (1976),Comedy +141032,The Sensuous Nurse (1975),Comedy +141034,Black Maid (1976),Comedy|Romance +141036,4 Minute Mile (2014),Drama +141038,Get a Clue (2002),Children|Comedy|Mystery +141040,Questi fantasmi (1962),Comedy +141042,Sogno di una notte di mezza sbornia (1959),(no genres listed) +141044,Industrial Soundtrack for the Urban Decay (2015),Documentary +141046,The Last House on the Beach (1978),Crime|Drama|Horror|Thriller +141048,Banzai Runner (1987),(no genres listed) +141050,Theeb (2014),Adventure|Drama|Thriller +141052,California City (2014),Documentary +141054,Journey To Space (2015),Documentary +141056,La veuve Couderc (1971),Drama|Romance +141058,Manjhi The Mountain Man (2015),Drama +141060,Fly Away Solo (2015),Drama +141062,Homies (2015),Comedy +141064,Uomo e galantuomo (1975),Comedy +141066,A Scream in the Streets (1973),Action|Crime +141068,Cry Uncle! (1971),(no genres listed) +141070,Venom (1966),Drama +141072,The Divine Weapon (2008),Action|Adventure|Drama +141074,Floradas na Serra (1954),Drama +141078,The Fascist (1961),Comedy +141084,La voglia matta (1962),Comedy|Drama|Romance +141086,The Little Nuns (1963),Comedy +141088,La pecora nera (1968),Comedy +141090,Ti ho sposato per allegria (1967),(no genres listed) +141092,Come imparai ad amare le donne (1966),Comedy +141094,El Greco (1966),Drama +141096,Carmen & Geoffrey (2005),(no genres listed) +141098,Being Evel (2015),Documentary +141100,Sujata (1960),Drama|Romance +141102,Devdas (1955),Drama|Romance +141104,The Courageous Heart of Irena Sendler (2009),Drama|War +141106,Losers Take All (2013),Comedy +141108,Minotaur (2006),Adventure|Fantasy|Horror +141110,The One That Got Away (1957),Drama|War +141112,Salem Falls (2011),Crime|Drama +141114,Sharpe's Challenge (2006),Action|Adventure|War +141116,Ferat Vampire (1982),Horror|Mystery|Sci-Fi +141118,Go Away Mr. Tumor (2015),(no genres listed) +141120,Brothers (2015),Action|Children|Drama +141122,Demented Death Farm Massacre (1971),Comedy|Horror|Thriller +141124,FAQs (2005),Drama +141126,The Iceman Interviews (2004),Documentary +141129,Dave Attell: Road Work (2014),Comedy +141131,Guardians (2016),(no genres listed) +141133,Green Snake (1993),Action|Fantasy|Romance|Sci-Fi +141135,Nuts in May (1976),Comedy +141137,The Short & Curlies (1987),Comedy +141139,The Terror Live (2013),Action|Crime|Thriller +141145,A Ticket to Tomahawk (1950),Comedy|Western +141149,The Angrez (2006),Comedy +141152,After the Wizard (2012),Children|Fantasy +141154,Against the Wild (2014),Adventure|Children +141156,Alibi Ike (1935),Comedy +141158,"So Far, Fifty-Six (2004)",Crime|Drama +141162,Taxi No. 9 2 11: Nau Do Gyarah (2006),(no genres listed) +141166,Arthur 3: The War of the Two Worlds (2010),Adventure|Animation|Children|Fantasy +141168,Beau Geste (1966),Action|Drama|War +141170,Beau Geste (1926),(no genres listed) +141172,Beyond the Last Frontier (1943),Western +141175,Bloodwork (2012),Horror|Thriller +141177,Body Slam (1987),Comedy +141179,Captive (2012),Drama|Thriller +141181,Cheyenne (1947),Western +141185,Close to My Heart (1951),Drama +141189,"Get Smart, Again! (1989)",Action|Children|Comedy +141191,OPA! (2005),Comedy|Romance +141193,Thumb Tripping (1972),Drama +141195,The Harrad Experiment (1973),Drama|Romance +141197,Corleone (1978),Crime|Thriller +141199,The Last House on Dead End Street (1973),Horror +141201,Death of a Doctor (1991),Drama +141203,Aakrosh (1980),Drama +141205,The Wistful Widow of Wagon Gap (1947),Children|Comedy|Western +141207,The Greatest Ears in Town: The Arif Mardin Story (2010),(no genres listed) +141214,Petunia (2013),Comedy|Drama +141216,Pregnancy Pact (2010),Drama +141219,Dark Corners (2006),Horror|Thriller +141226,Night Ride Home (1999),Drama +141242,Animals (2008),Horror|Thriller +141245,Stuntmen (2009),Comedy +141251,Demetri Martin: Live (At The Time) (2015),Comedy +141254,Escapade In Japan (1957),Adventure|Children +141256,Escort West (1959),Action|Western +141260,Flashback - Mörderische Ferien (2000),Horror +141262,Flashback (1969),Drama|War +141264,Flight Angels (1940),Drama +141267,Four Guns to the Border (1954),Western +141269,Government Girl (1943),Comedy +141271,Having Wonderful Time (1938),Comedy|Romance +141273,A Hill in Korea (1956),Drama|War +141275,Hendrix (2000),Drama +141277,Her Cardboard Lover (1942),Comedy|Romance +141279,The Cardboard Lover (1928),Comedy|Romance +141281,Hero's Island (1962),Action|Adventure|Drama +141283,Holy Matrimony (1943),Comedy|Drama +141286,Hard Time: Hostage Hotel (2000),Action|Thriller +141288,In the Arms of a Killer (1992),Thriller +141290,It's Tough to Be Famous (1932),Comedy|Drama +141292,Moving Target (1996),(no genres listed) +141294,Mr. Imperium (1951),Drama|Romance +141297,Out on a Limb (1987),(no genres listed) +141299,Peter Pan (2000),Children|Fantasy +141301,Peter Pan (1924),(no genres listed) +141303,"Rock, Paper, Scissors (2012)",Drama +141305,Round Trip to Heaven (1992),(no genres listed) +141307,Society Lawyer (1939),Drama +141309,Street Kings 2: Motor City (2011),Crime|Drama|Thriller +141311,Tapped Out (2014),Action|Drama +141313,Tarzan's Hidden Jungle (1955),Action|Adventure|Drama|Romance +141315,The 25th Hour (1967),Drama|War +141317,The Cabining (2013),Horror|Thriller +141319,The Marseille Contract (1974),Thriller +141321,The Gazebo (1971),Comedy +141323,The Great Garrick (1937),(no genres listed) +141325,The Great Lover (1949),Comedy +141327,The Naked and the Dead (1958),War +141329,The Narrow Corner (1933),Drama +141333,The Premonition (1976),Horror|Sci-Fi +141335,Siege at Red River (1954),Action|War|Western +141341,The Three Investigators and the Secret of Terror Castle (2009),Adventure|Children|Mystery +141343,Times Square Lady (1935),(no genres listed) +141345,Tio Papi (2013),Children|Comedy|Drama +141347,Watusi (1959),Action|Adventure +141349,Breaking at the Edge (2013),Horror|Thriller +141353,Who's Minding The Mint? (1967),Comedy|Romance +141355,The Spiderwebhouse (2015),(no genres listed) +141357,Cyber Wars (2004),Action|Drama|Sci-Fi|Thriller +141359,Spoiler (1998),Horror|Sci-Fi|Thriller +141361,Meatball Machine (2005),Horror|Sci-Fi +141363,Chop (2011),Comedy|Horror|Thriller +141365,Deathline (1997),Action|Drama|Sci-Fi|Thriller +141367,Cyber City Oedo 808 (1990),Action|Animation|Crime|Horror|Sci-Fi +141369,"Hard Revenge, Milly: Bloody Battle (2009)",Action|Drama|Sci-Fi +141371,"Hard Revenge, Milly (2008)",Action|Horror|Thriller +141373,The Battle of Chernobyl (2006),Documentary +141375,Sugarhouse (2007),Drama|Thriller +141377,Water Damage (1999),(no genres listed) +141379,True Skin (2012),(no genres listed) +141381,One Man Force (1989),(no genres listed) +141383,Terminal Justice (1996),Action|Sci-Fi|Thriller +141385,Humanity's End (2009),Action|Adventure|Drama|Sci-Fi|Thriller +141387,Everything Goes Wrong (1960),(no genres listed) +141389,My 20th Century (1989),(no genres listed) +141391,Time Stands Still (1982),Drama +141393,Kill Your Friends (2015),Comedy|Crime|Thriller +141395,Nina Forever (2015),Comedy|Horror|Romance +141397,Equals (2015),Drama|Sci-Fi +141400,Invincible Shaolin (1978),Action +141402,Star Trek: Renegades (2015),Action|Adventure|Sci-Fi +141404,Savage Island (1985),Action|Drama +141406,Dead Sleep (1992),(no genres listed) +141408,Scouts Guide to the Zombie Apocalypse (2015),Action|Comedy|Horror +141410,Racquet (1979),Comedy +141412,We Come as Friends (2014),Documentary +141414,Portrait of Jason (1967),Documentary +141416,Muhammad (2015),Drama +141418,Sexy Evil Genius (2013),Comedy|Drama|Mystery|Thriller +141420,Paranormal Activity 2: Tokyo Night (2010),Horror|Thriller +141422,Suffragette (2015),Drama +141424,Eskimo (1933),Drama +141426,Joker Game (2015),Thriller +141428,Guidance (2014),Comedy +141430,The 7th Day (2004),Drama +141432,Sweet Red Bean Paste (2015),Drama +141434,My Friend Victoria (2014),Drama +141436,Dégradé (2015),(no genres listed) +141438,War (2014),Drama +141440,Flowers (2014),Drama +141442,Los tontos y los estúpidos,(no genres listed) +141444,Stand (2014),(no genres listed) +141446,The Marquis (2011),Comedy +141448,Hate Crime (2006),Drama|Thriller +141450,Thief (2006),Crime|Drama|Thriller +141452,Clannad: The Motion Picture (2007),Animation|Drama +141454,Interviews with My Lai Veterans (1971),Documentary|War +141456,Vanishing of the Bees (2009),Documentary +141458,Rising from Ashes (2013),(no genres listed) +141460,Carnival of Blood (1970),Horror +141462,Extinction: The G.M.O. Chronicles (2011),Drama|Horror +141464,The New Black (2014),Documentary +141466,Oscenità (1980),(no genres listed) +141468,Keep On Keepin’ On (2014),Documentary +141470,"Andrew Jenks, Room 335 (2008)",(no genres listed) +141472,The 50 Year Argument (2014),(no genres listed) +141474,Peppermint Frappé (1967),Drama +141476,Sweet Talk (2013),Adventure|Drama +141478,From a Place of Darkness (2008),Drama|Horror|Thriller +141480,In the Dust of the Stars (1976),Sci-Fi +141483,Lost Rivers (2013),Documentary +141485,The High Sun (2015),Drama +141487,Blades of Blood (2010),Action|Drama +141489,Memory Vague (2009),(no genres listed) +141491,Young Girls in Black (2010),Drama +141493,The Hunchback of Notre Dame II (2002),Adventure|Animation|Children|Romance +141495,HK: Forbidden Super Hero (2013),Action|Comedy +141497,Lollipop Monster (2011),Drama +141501,Starve (2014),Horror|Thriller +141505,Moscow-Cassiopeia (1973),Adventure|Children|Comedy|Sci-Fi +141507,Ride in a Pink Car,(no genres listed) +141509,Mythica: The Darkspore (2015),Fantasy +141511,Assassins Tale (2013),Action|Crime|Thriller +141513,Fort Tilden (2014),Comedy +141515,Some Voices (2000),Comedy|Drama +141517,Slimtime (2010),Animation|Comedy +141520,Moss (2010),Crime|Drama|Mystery|Thriller +141522,Wanderlust (2006),Comedy|Documentary|Drama|Romance +141524,The Price of Sex (2011),Documentary +141526,Lúdas Matyi (1977),Animation +141528,Move (1970),Comedy|Fantasy +141530,As One (2012),Drama +141532,Retrieval (2006),(no genres listed) +141534,Gun-shy (2003),Drama|Thriller +141536,Veteran (2015),Crime|Thriller +141538,Assassination (2015),Action|Drama|Thriller +141540,Nocturnal Uproar (1979),Drama +141542,Race to Nowhere (2009),Documentary +141544,Turbo Kid (2015),Action|Adventure|Sci-Fi +141546,Oh How It Hurts 66 (1966),Children|Comedy +141550,Wasted on the Young (2010),Drama|Romance|Thriller +141552,Dadnapped (2009),Action|Adventure|Children|Comedy +141554,Disappearing Acts (2000),Drama|Romance +141556,¿Quién mató a Bambi? (2013),Comedy +141558,Bergman Island (2006),(no genres listed) +141560,Billy Wilder Speaks (2006),Documentary +141564,Body and Soul (1925),Drama|Romance +141566,Body and Soul (1931),Drama +141568,Bogie (1980),Drama|Romance +141570,Central Park (1932),Comedy|Drama|Romance +141573,Evergreen (1934),Comedy|Romance +141575,Everyday Black Man (2011),Drama +141578,Gang War (1958),Crime +141580,Hakuchi: The Innocent (1999),(no genres listed) +141583,One Love (2011),Drama|Romance +141588,Let There Be Light (1946),Documentary +141590,Paulina (2015),Thriller +141592,Report from the Aleutians (1943),Documentary +141594,The Princess of Nebraska (2008),Drama +141598,The Absent (2014),(no genres listed) +141602,Mademoiselle Fifi (1944),Drama|War +141606,Miracle on Ice (1981),Children|Drama +141608,One on One (2014),Drama +141610,Rocky Marciano (1999),Drama +141612,So This Is College (1929),(no genres listed) +141614,The Beautiful Blonde from Bashful Bend (1949),Action|Comedy|Romance|Western +141616,The Gay Deception (1935),Comedy +141618,The Glory Stompers (1967),Action|Drama +141620,The Case of the Hillside Stranglers (1989),Crime|Drama|Thriller +141622,The Last Keepers (2013),Fantasy +141624,Angel Of Fury (1992),Action|Thriller +141628,The Naked Truth (1957) (Your Past Is Showing),Comedy +141630,Bridgend (2015),Drama|Mystery +141632,Zurich (2015),Drama +141634,You and the Night (2013),Comedy|Drama|Romance +141636,Papanasam (2015),Children|Crime|Drama|Thriller +141638,Napoletani a Milano (1953),(no genres listed) +141640,Tom and Lola (1990),Drama +141642,The Bad Education Movie (2015),Comedy +141644,Santa Baby (2006),Children|Comedy +141646,The Unauthorized Saved by the Bell Story (2014),Comedy|Drama +141648,We Are Your Friends (2015),Drama|Romance +141650,Soul Boys of the Western World (2014),Documentary +141652,2033 (2010),Adventure|Sci-Fi +141654,Scalpel (1977),(no genres listed) +141656,Wild Combination: A Portrait of Arthur Russell (2008),Documentary +141658,For the Love of Money (2012),Action|Crime|Drama|Thriller +141660,SoulBoy (2010),Comedy|Drama +141662,Hawks (1988),Comedy|Drama +141664,Marine Battleground (1963),(no genres listed) +141666,Ga-ga: Glory to the Heroes (1986),Horror|Sci-Fi +141668,War Room (2015),Drama +141670,Shield of Straw (2013),Thriller +141672,Return to Ithaca (2014),Comedy|Drama +141674,Summertime (2015),(no genres listed) +141676,Joseph: King of Dreams (2000),Animation +141678,Screen Directors Playhouse: Meet the Governor (1955),Comedy +141680,Tom and Jerry (1955),Comedy|Drama|Romance +141682,The Seine Meets Paris (1957),(no genres listed) +141684,Hurricane of Fun: The Making of Wet Hot (2015),Documentary +141686,Knife in the Dark (1954),Drama +141688,Legend (2015),Crime|Thriller +141690,Anesthesia (2015),Drama|Thriller +141692,The Outskirts (2015),Comedy +141694,The Dion Brothers (1974),Action|Comedy|Drama +141696,Women's Camp 119 (1977),(no genres listed) +141698,Elephant Song (2014),Drama +141700,Side Street Story (1950),Comedy +141702,Drishyam (2015),Drama|Mystery|Thriller +141704,Phantom (2015),Action|Thriller +141706,Assassin (1969),Drama|Thriller +141708,Disaster Playground,Documentary +141710,Animals (2014),Drama +141712,Addicted to Fresno (2015),Comedy +141714,Queen of Earth (2015),Drama +141716,Blind Man (2012),Action|Thriller +141718,Deathgasm (2015),Comedy|Horror +141720,Coldblooded (2014),Action|Adventure|Drama|Romance +141722,I Am Evel Knievel (2014),Documentary +141725,All the Boys Are Called Patrick (Charlotte et Veronique ou tous les garcons s'appellent Patrick) (1959),Comedy +141727,Therapy for a Vampire (2015),Comedy +141729,Silent Heart (2014),Drama +141731,Mr. & Mrs. Incredible (2011),Action|Comedy|Romance +141733,Daughter of the Lake (2015),Documentary +141735,Dresden (2006),Drama +141737,Grantham and Rose (2014),Comedy|Drama +141739,Days of Hope (1975),Drama +141741,Shoot First And Pray You Live (2010),Action|Western +141743,"Italian, The (1915)",Drama +141745,Nice Guy,(no genres listed) +141747,Childless (2015),(no genres listed) +141749,The Danish Girl (2015),Drama +141751,The Man Whose Mind Exploded (2014),Documentary +141755,Underdog (2015),Drama +141757,Stag Night of the Dead (2010),Comedy|Horror +141761,Area 51 (2015),Horror|Sci-Fi|Thriller +141763,Forbidden Area (1956),Drama +141765,The Comedian (1957),(no genres listed) +141767,Hit & Miss (2012),Drama +141769,Prototype (1992),Drama|Fantasy|Sci-Fi +141771,Latin Lover (2015),Comedy +141773,The Night Of The White Pants (2006),Comedy +141777,White Creek (2014),Drama|Horror|Thriller +141779,La locandiera (1980),(no genres listed) +141785,Deaf Smith & Johnny Ears (1973),Western +141791,Malamondo (1964),Documentary +141795,L♡DK (2014),Drama|Romance +141797,Street Fighter Alpha - The Movie (1999),Action|Animation +141799,Cooties (2015),Comedy|Horror +141801,The Kung Fu Instructor (1979),Action +141804,Forgotten Tune for the Flute (1987),Comedy|Drama|Romance +141806,Station for Two (1982),Comedy|Drama|Romance +141808,A Summer to Remember (1960),Children|Comedy|Drama +141810,Autumn Marathon (1979),Comedy|Drama +141812,The Most Charming and Attractive (1985),Comedy|Romance +141814,The Captivating Star of Happiness (1975),Drama|Romance +141816,12 Chairs (1976),Adventure|Comedy +141818,Ordinary Miracle (1978),Comedy|Drama|Fantasy|Romance +141820,Old Men: Robbers (1971),Comedy +141822,Carnival Night (1956),Comedy +141824,Old Hags (2000),Comedy|Drama +141826,The Garage (1979),Comedy|Drama +141828,A Key to the Bedroom (2003),Comedy|Romance +141830,Unbelievable Adventures of Italians in Russia (1974),Adventure|Comedy +141832,Girl without an Address (1957),Comedy|Romance +141834,For the Matches (1980),Comedy +141836,It Can't Be! (1975),Comedy +141838,Incognito from St.Petersburg (1977),Comedy +141840,Sportloto-82 (1982),Comedy +141842,Running the Sahara (2009),Documentary +141844,12 Chairs (1971),Adventure|Comedy +141846,Steve Jobs: The Man in the Machine (2015),Documentary +141848,The Forbidden Girl (2013),Mystery +141850,Inkubus (2011),Horror +141852,Wasting Away (2007),Comedy|Horror +141854,Among Friends (2012),Comedy|Horror +141856,Ejecta (2014),Sci-Fi +141858,"OMG, I'm a Robot!",(no genres listed) +141860,Broken Horses (2015),Action|Crime|Drama|Mystery|Thriller +141862,N'importe Qui (2014),Comedy +141864,Burning (2014),Action|Comedy +141866,Green Room (2015),(no genres listed) +141868,Last Embrace (1979),Mystery|Romance|Thriller +141870,"One-Two, Soldiers Were Going... (1976)",Drama|War +141872,The Overcoat (1959),(no genres listed) +141874,The Adventures of Buratino (1975),Adventure|Children|Fantasy +141878,The Runner Stumbles (1979),Drama +141880,Freeway: Crack in the System (2014),Documentary +141882,A Bunny's Tale (1985),(no genres listed) +141884,A Diva's Christmas Carol (2000),Children|Comedy +141886,The Dress (1996),Comedy|Drama +141888,Man Follows Birds (1975),Drama +141890,Beasts of No Nation (2015),Drama|War +141894,The Magic of Heineken (2014),(no genres listed) +141896,Psychopathia Sexualis (2006),Drama|Romance +141898,Limited Partnership (2014),Documentary +141900,Hell and Mr Fudge (2012),(no genres listed) +141902,Gabriel (2014),Drama +141904,The Reader (1988),Comedy|Drama +141906,Gone Doggy Gone (2014),Adventure|Comedy +141908,Pernicious (2015),Horror +141910,Red Knot (2014),Drama +141912,Dirty Weekend (2015),Comedy|Drama +141916,The Rise of the Krays (2015),Crime +141918,Dude Bro Party Massacre III (2015),Comedy|Horror +141920,Underdog Kids (2015),Action|Children +141922,Glass Chin (2015),Drama|Thriller +141924,The Lady in the Van (2015),Drama +141926,He Named Me Malala (2015),Documentary +141928,Bloodsucking Bastards (2015),Comedy|Horror +141930,KillerSaurus,Horror|Sci-Fi +141932,Blood Moon (2014),Horror|Western +141934,Hamtaro: The Captive Princess (2002),Adventure|Animation|Children|Fantasy +141936,Preston Castle (2012),(no genres listed) +141938,Hot Wheels Acceleracers Ignition (2005),Animation|Children +141940,Pokémon the Movie: Kyurem vs. the Sword of Justice (2012),(no genres listed) +141942,Pokémon: Zoroark: Master of Illusions (2010),Adventure|Animation|Children +141944,...ing (2003),Drama|Romance +141946,Meru (2015),Action|Adventure|Documentary +141948,Lost in the Stars (1974),(no genres listed) +141950,6 Years (2015),Drama|Romance +141952,To Save A Life (2010),Drama +141954,Pod (2015),Horror|Mystery|Thriller +141956,Contracted: Phase II (2015),Drama|Horror|Thriller +141958,A Little Thing Called Love (2010),Comedy|Romance +141960,Lost After Dark (2014),Horror +141962,For Elise (2013),Horror|Mystery +141964,White Settlers (2014),Horror|Mystery|Thriller +141966,The Dragon Chronicles: The Maidens of Heavenly Mountain (1994),Action +141968,Xenia (2014),Drama +141970,Pokémon the Movie: Diancie and the Cocoon of Destruction (2014),Animation +141972,Pokémon the Movie: Hoopa and the Clash of Ages (2015),Action|Adventure|Animation +141974,Felicidades (2000),Comedy +141976,Snowglobe (2007),Children|Fantasy|Sci-Fi +141978,Varsity Blood (2014),Horror +141980,Doomed (2007),Horror +141982,Mrs. Miracle (2009),Children|Comedy|Fantasy +141984,A Little Bit Zombie (2012),Comedy|Horror|Sci-Fi +141986,Santa Baby 2 (2009),Children|Comedy +141988,The Coed and the Zombie Stoner (2014),Comedy +141990,Wildeye (2015),(no genres listed) +141992,Lasting (2013),Drama|Romance +141994,Saving Christmas (2014),Children|Comedy +141996,The Possessed (1965),Crime|Drama|Mystery +141998,Pride and Vengeance (1967),Action|Drama|Romance|Western +142000,Blu Gang e vissero per sempre felici e ammazzati (1973),(no genres listed) +142002,"Young, Violent, Dangerous (1976)",(no genres listed) +142004,City Under Seige (1974),Crime|Thriller +142008,La gorilla (1982),Comedy +142010,The Last Warrior (1984),Action|Sci-Fi +142012,The Double (1971),Mystery|Thriller +142016,Ring of Death (1969),Crime|Drama +142018,"10,000 Dollars for a Massacre (1967)",Western +142020,Oscar (1967),Comedy +142022,Johnny Yuma (1966),Action|Drama|Western +142024,Seven Guns for Timothy (1966),Western +142028,La sedia della felicità (2013),Comedy +142030,Zid (2014),Romance|Thriller +142032,The Transporter Refuelled (2015),Action|Crime|Thriller +142034,Stan (2006),(no genres listed) +142036,Liste noire (1995),Drama|Thriller +142038,Redemption (2013),(no genres listed) +142040,Artists Under the Big Top: Perplexed (1968),Drama +142042,The Inextinguishable Fire (1969),(no genres listed) +142044,Adrienn Pál (2011),Drama +142046,The Fossil (1975),(no genres listed) +142048,The Left Hand of the Law (1975),Crime +142050,Too Much Johnson (1938),Comedy +142052,The Key to Reserva (2007),Crime|Thriller +142054,Picasso and Braque Go to the Movies (2010),Documentary +142056,Iron Man & Hulk: Heroes United (2013),Action|Adventure|Animation +142058,The Lorax (1972),Animation|Children +142060,The Grinch Grinches the Cat in the Hat (1982),Animation|Children +142062,The Infernal Cakewalk (1903),Comedy|Fantasy +142064,La Vérité si je Mens ! 3 (2012),Comedy +142066,La Vérité si je Mens ! 2 (2001),Comedy +142068,Tiger Orange (2014),Drama +142070,Jenny's Wedding (2015),Comedy|Drama +142072,Bound to Vengeance (2015),Horror|Thriller +142074,Knock Knock (2015),Crime|Horror|Thriller +142076,Perfect Proposal (2015),Crime|Romance|Thriller +142078,The Surface (2014),Drama|Thriller +142080,The Conquest of Everest (1953),Documentary|Drama +142082,The Nightmare (2015),Documentary +142084,Welcome to Leith (2015),Documentary|Thriller +142086,Fallen: The Beginning (2006),Action|Adventure|Children|Drama|Fantasy +142088,The Crossing (2014),Drama +142090,Noite Escura (2004),Crime|Drama +142092,Blood Thirst (1971),Horror +142094,Alice in Wonderland (1915),Children|Fantasy +142096,Krampus: The Christmas Devil (2013),Horror +142098,Unabomber: The True Story (1996),(no genres listed) +142100,Parasite Dolls (2003),Action|Animation|Sci-Fi|Thriller +142104,"Rabbit, Run (1970)",Drama +142106,Age of Cannibals (2014),Drama +142108,"Aballay, the Man without Fear (2010)",Drama|Western +142110,Man Down (2015),Thriller +142113,Kahlil Gibran's The Prophet (2015),Animation +142115,The Blue Planet (2001),Documentary +142117,Banksy Does New York (2014),Documentary +142119,Convict's Code (1939),Crime|Drama +142122,Dreamland: Area 51 (1996),Documentary +142124,Dreaming of Space (2005),Drama +142126,"Something, Anything (2015)",Drama|Romance +142128,The Missing Corpse (1945),(no genres listed) +142130,This Is My Love (1954),Drama +142132,Saturday Island (1952),Adventure|Romance|War +142136,The Burning Hills (1956),Romance|Western +142138,Hitler (1962),War +142142,The Negro Soldier (1944),(no genres listed) +142144,The Remarkable Andrew (1942),(no genres listed) +142146,The Monster and The Girl (1941),Horror|Thriller +142148,Christmas Cupid (2010),Children|Comedy|Fantasy|Romance +142150,Vamp U (2013),Action|Comedy|Horror +142152,Mischief Night (2014),Horror +142154,Unlucky Charms (2013),Fantasy|Horror +142156,The Lottery (1996),Drama +142158,Return to Halloweentown (2006),Adventure|Children|Comedy|Fantasy +142160,Carlos Spills the Beans (2014),Children|Comedy|Drama +142162,The Payoff (1942),Action|Crime|Mystery|Thriller +142164,Wish You Well (2013),Children|Drama +142166,Web of the Spider (1971),Horror|Thriller +142168,All That I Am (2013),Drama +142170,Sukeban Deka (1987),Action +142172,"Knock Knock, It's Tig Notaro (2015)",Comedy|Documentary +142174,Not My Life (2006),Thriller +142176,The Bridge (1999),Drama|Romance +142178,Flash (1997),Children|Drama +142180,"What Next, Corporal Hargrove? (1945)",Comedy|War +142182,Wolfy (2009),Drama +142184,Silenced (2011),Drama +142186,Small Town Folk (2007),Horror +142188,Snow 2: Brain Freeze (2008),Children|Comedy +142190,Devil's Den (2006),Action|Horror|Thriller +142192,Female on the Beach (1955),Crime|Drama|Mystery|Romance|Thriller +142194,The Pumpkin Karver (2006),Comedy|Horror +142196,Cornered! (2009),Comedy|Horror +142198,Killer Party (1986),Comedy|Horror +142200,Jersey Shore Massacre (2014),Comedy|Horror +142202,Rise of the Animals (2012),Adventure|Comedy|Horror +142204,Twitches Too (2007),Children|Drama|Fantasy +142206,The House of Usher (2007),Drama|Horror|Thriller +142210,The Beauty Inside (2015),Fantasy|Romance +142212,Life (2015),Drama +142214,Children of God: Lost and Found (2007),(no genres listed) +142216,Pourquoi Israel (1973),Documentary +142218,Daddy or Mommy (2015),Comedy +142222,Demolition (2016),Drama +142224,Club Life (2015),Drama +142226,Listening (2015),Sci-Fi +142228,12 Rounds 3: Lockdown (2015),Action +142230,Beyond Darkness (1990),Horror|Thriller +142232,Eden Lodge (2015),Horror|Thriller +142234,Our Man in Tehran (2015),Documentary +142236,Robert the Doll (2015),Horror +142238,Frau Müller muss weg (2015),Comedy +142240,Romeos (2011),Drama +142242,Gun Hill Road (2011),Drama +142244,Middle Sexes: Redefining He and She (2005),Documentary +142246,American Poltergeist (2015),Thriller +142248,The Cutting Room (2015),Horror +142250,Asylum of Satan (1972),Horror +142252,Project: Kill (1976),Action|Drama +142254,Three on a Meathook (1973),Horror +142256,The Zebra Killer (1974),Action|Crime +142258,Listen to Me Marlon (2015),Documentary +142260,Crab Trap (2010),Drama +142262,Naked You Die (1968),Mystery +142264,Proteus (1995),Horror|Sci-Fi +142266,Maléfique (2003),Fantasy|Horror|Mystery +142268,Stars 80 (2012),Comedy +142270,Act of Violence (2008),Drama|Thriller +142272,"Beaumarchais, l'insolent (1996)",Adventure|Romance +142274,The Snow Devils (1967),Sci-Fi +142276,War Between the Planets (1966),Sci-Fi +142278,The War of the Planets (1966),Sci-Fi +142280,Lightning Bolt (1967),Action|Thriller +142284,Killers Are Challenged (1966),Adventure +142286,The Long Hair of Death (1964),Horror +142288,Giants of Rome (1964),Action|Adventure|Drama +142290,"Hercules, Prisoner of Evil (1964)",Adventure|Fantasy +142292,Il pelo nel mondo (1964),Documentary +142294,Devil of the Desert Against the Son of Hercules (1964),Action|Adventure|Fantasy +142296,The Fall of Rome (1963),Action|Drama +142298,The Golden Arrow (1962),Adventure|Fantasy +142300,Battle of the Worlds (1961),Sci-Fi|Thriller +142302,Assignment: Outer Space (1960),Sci-Fi +142308,Virtual Weapon (1997),(no genres listed) +142310,Indio 2 - The Revolt (1991),Action|Adventure|War +142314,Alien from the Deep (1989),Horror|Sci-Fi +142316,House of 1000 Pleasures (1972),Comedy +142318,Code Name : Wild Geese (1984),Action +142322,The Ark of the Sun God (1984),Action|Adventure +142324,The Last Blood (1983),Action|War +142326,Commando Leopard (1985),Action|War +142328,Escape From the Cursed Arcipelago (1982),Action|War +142330,Hunters of the Golden Cobra (1982),Action|Adventure|War +142332,Car Crash (1981),Action +142334,The Last Hunter (1980),Thriller|War +142336,Invasion of the Flesh Hunters (1980),Horror|Thriller +142338,Killer Fish (1979),Adventure +142340,Whisky and Ghosts (1976),Action|Comedy|Western +142342,Death Rage (1976),Action|Crime|Thriller +142344,The Stranger and the Gunfighter (1975),Action|Western +142346,Seven Deaths in the Cat's Eye (1973),Crime|Horror|Mystery +142348,And God Said to Cain (1970),Horror|Mystery|Western +142350,The Unnaturals (1969),Crime +142352,Vengeance (1968),Western +142354,Pelican Dreams (2014),Documentary +142356,Haru (2013),Animation|Romance|Sci-Fi +142358,Snowden’s Great Escape (2015),Documentary +142360,Fool Circle (2014),Comedy|Drama +142362,Magallanes (2014),Drama +142364,The Keeping Room (2015),Drama +142366,Cigarette Burns (2005),Horror|Thriller +142370,We Are the Freaks (2014),Comedy +142372,Our Brand Is Crisis (2015),Comedy|Drama +142374,Attack on Titan: End of the World (2015),Action|Fantasy +142376,Big Sky (2015),Drama|Thriller +142378,L'odore della notte (1998),(no genres listed) +142380,White Snow (2010),Thriller +142382,Agneepath (2012),Action|Crime|Drama +142384,Cocktail (2012),Comedy|Drama|Romance +142386,The Assassin (2015),Drama +142388,The Gamechangers (2015),Drama +142390,Throne of Fire (1983),Action|Adventure|Fantasy +142392,Vigili e vigilesse (1982),Comedy +142394,"Gunan, King of the Barbarians (1982)",(no genres listed) +142396,The Cannibals (1980),Horror +142400,The Conjugal Debt (1970),(no genres listed) +142402,Io non scappo... fuggo (1970),Comedy +142406,Dick Smart 2007 (1967),Action|Comedy +142408,Hercules in the Haunted World (1961),Action|Fantasy|Horror +142410,Captive Women 4 (1977),Thriller +142412,American Hot Wax (1978),Drama +142414,Dusty and Sweets McGee (1971),Crime|Drama +142416,Aloha Bobby and Rose (1975),Drama|Romance +142418,Joseph Andrews (1977),Action|Adventure|Comedy|Drama|Romance|Thriller +142420,High Rise (2015),Action|Drama|Sci-Fi +142422,The Night Before (2015),Comedy +142424,Into the Forest (2015),Drama|Sci-Fi +142426,Time Out of Mind (2015),Drama +142428,Winter Meeting (1948),Drama|Romance +142430,Perfect Strangers (1950),Drama|Romance +142432,The Princess of France (2014),(no genres listed) +142434,Villegas (2012),(no genres listed) +142436,First Spaceship on Venus (1960),Drama|Mystery|Sci-Fi +142438,Lake Fear (2014),Comedy|Horror +142440,Chain of Command (2015),Adventure +142442,An Ideal Man (2015),Thriller +142444,The Editor (2015),Comedy|Horror|Mystery +142446,On Broadway (2007),Drama +142448,Everest (2015),Adventure|Drama|Thriller +142450,Puella Magi Madoka Magica the Movie Part III: Rebellion (2013),Animation|Fantasy|Mystery|Thriller +142452,Puella Magi Madoka Magica the Movie Part II: Eternal (2012),Action|Animation|Horror|Mystery +142454,Sukeban Deka: Counter Attack from the Kazama Sisters (1988),Action +142456,The Brand New Testament (2015),(no genres listed) +142458,You Carry Me (2015),Drama +142460,Cut Snake (2015),(no genres listed) +142462,The First Olympics: Athens 1896 (1984),Drama +142464,Last House in Istanbul (1974),(no genres listed) +142466,Mean Frank and Crazy Tony (1973),Comedy|Crime +142468,Red Amnesia (2014),Thriller +142470,City Beneath the Sea (1971),Action|Sci-Fi +142472,Kebab Connection (2004),Action|Comedy|Romance +142474,Buddenbrooks: The Decline of a Family (2008),Drama +142476,Keine Lieder über Liebe (2005),Drama|Romance +142478,Hilde (2009),Drama +142482,Monster Hunt (2015),Action|Comedy|Fantasy +142484,Wild City (2015),Action|Crime|Thriller +142486,Cocksucker Blues (1972),Documentary +142488,Spotlight (2015),Thriller +142490,Viva,(no genres listed) +142492,Son of Saul (2015),Drama +142494,Diane (1975),(no genres listed) +142496,Funny Farm (1975),(no genres listed) +142498,Burden of Evil (2012),Thriller +142503,Shut In (2015),Drama|Horror|Thriller +142505,Rabid Dogs (2015),Action|Thriller +142507,Pawn Sacrifice (2015),Drama +142509,Hardcore Henry (2015),Action|Adventure|Sci-Fi +142511,Mega Snake (2007),Horror +142513,Hunter × Hunter: Phantom Rouge (2013),Adventure|Animation +142515,"Remake, Remix, Rip-Off: About Copy Culture & Turkish Pop Cinema (2014)",Documentary +142517,Il castello (2011),(no genres listed) +142519,Hunter × Hunter: The Last Mission (2013),Action|Animation +142521,08/15 (1954),Drama|War +142523,Carmen (1915),Drama +142525,Hannas Reise (2014),Comedy|Romance +142527,Bon appétit (2010),Romance +142529,"Killing Is My Business, Honey (2009)",Comedy|Crime +142532,Call Girl of Cthulhu (2014),Comedy|Horror +142534,Roger Waters the Wall (2015),Documentary +142536,Burnt (2015),Drama +142538,Queen of the Desert (2015),Drama +142540,Visions (2015),Horror|Thriller +142542,Nobody from Nowhere (2014),Drama|Thriller +142544,Swap Meet (1979),(no genres listed) +142546,General Luna (2015),Drama|War +142548,Vem älskar Yngve Frej? (1973),(no genres listed) +142550,Ryuzo and the Seven Henchmen (2015),Action|Comedy +142552,The Saint of Gamblers (1995),Action|Comedy +142554,Der Clown - Tag der Vergeltung (2005),Action +142556,Mary of Nazareth (1995),(no genres listed) +142558,If I Were a Rich Man (2002),Comedy +142560,Fair Play (2006),Thriller +142562,The Ceremony (2014),Documentary +142564,A Stranger of Mine (2005),Comedy|Crime|Drama|Horror +142566,Sarusuberi: Miss Hokusai (2015),Animation +142568,Being Canadian (2015),Comedy|Documentary +142570,Dor (2006),Drama +142572,Life Is Ruff (2005),(no genres listed) +142574,Cow Belles (2006),Children|Comedy|Romance +142576,Genius (1999),Children|Comedy|Drama +142578,Teen Lust (2014),Comedy +142580,Deadly Stranger (1988),Thriller +142582,The Last Fight (1983),Drama +142584,Scanner Cop (1994),Horror|Sci-Fi +142586,The Timber (2015),Adventure|Drama|Western +142588,Sriracha (2013),Documentary +142590,The Willies (1990),Comedy|Horror +142592,Seduction: Three Tales from the 'Inner Sanctum' (1992),Thriller +142594,Project Alien (1990),Action|Sci-Fi +142596,Evil Things (2009),Horror +142598,Last Shift (2014),Horror +142600,The Immortal Voyage of Captain Drake (2009),Adventure|Fantasy +142602,"F*ck You, Goethe 2 (2015)",Comedy +142604,Pay the Ghost (2015),Horror|Thriller +142606,A Million (2009),Thriller +142608,A Song of Lisbon (1933),Comedy +142610,Un mundo cuadrado (2012),(no genres listed) +142612,"Give 'em Hell, Harry! (1975)",(no genres listed) +142614,Catch Me Daddy (2015),(no genres listed) +142616,The Furthest End Awaits (2014),(no genres listed) +142618,Flying Colors (2015),Comedy|Drama +142620,Solomon's Perjury 1: Suspicion (2015),(no genres listed) +142622,King of Mahjong (2015),Comedy +142624,"Davy Crockett, Indian Scout (1950)",Adventure|Western +142626,Infinite (2012),Drama|Sci-Fi +142628,The Brave Little Toaster to the Rescue (1997),Animation|Children|Comedy +142630,Macropolis (2012),Animation +142632,Oh Willy... (2013),Adventure|Animation|Drama +142634,The Legend of Seven Cutter (2006),Action|Comedy +142636,Angry Harvest (1986),Drama|Romance +142638,Naked Under the Moon (1999),Drama|Romance +142640,Going Home (1971),Drama +142642,Going Home (1993),Drama|War +142644,Thunderbolt (1929),Drama +142648,A Date with the Falcon (1942),Crime|Mystery +142650,A Glimpse of Hell (2001),Drama +142652,Acolytes (2008),Horror|Mystery|Thriller +142654,Alien Opponent (2011),Action|Comedy|Sci-Fi +142656,Any And Every Which Way (2010),Comedy|Romance +142659,Armed Response (1986),Action|Thriller +142663,Babes in Toyland (1997),Animation|Children +142665,Back Street (1932),Drama +142667,Black River (2001),Sci-Fi|Thriller +142669,Varg Veum - Black Sheep (2011),Action|Crime|Thriller +142671,Black Sheep (1935),Drama|Romance +142673,Bunny O'Hare (1971),Action|Comedy +142675,Seashore (2015),Drama +142677,Lootera (2013),Drama|Romance +142679,Fire in Babylon (2011),Documentary +142681,Consolation Marriage (1931),Drama|Romance +142683,Dear Mr. Gacy (2010),Comedy|Crime|Drama|Horror|Thriller +142685,Death Machines (1976),Action +142687,Don't Knock the Twist (1962),(no genres listed) +142689,Drunk Wedding (2015),Comedy +142691,Evidence (2011),Horror +142695,Ghoul (2015),Horror|Thriller +142697,Ghoul (2012),Thriller +142699,Hazard Jack (2014),Horror +142701,Headspace (2005),Horror|Sci-Fi|Thriller +142703,Island of Love (1963),Comedy +142705,Legion (1998),Action +142707,Let Go (2011),Comedy +142709,Little Lord Fauntleroy (1921),Drama +142711,Lucky Devils (1933),Action|Drama +142714,Meet The Baron (1933),(no genres listed) +142717,Resurrection County (2008),Horror|Thriller +142721,The Rite (1969),Drama +142723,Rock Rock Rock! (1956),(no genres listed) +142727,Remains (2011),Action|Drama|Horror|Thriller +142731,Stolen Identity (1953),Action|Crime|Drama|Mystery|Thriller +142733,Tango (1993),Comedy|Drama +142740,Devil Seed (2012),Horror +142742,The Dark (1979),Horror|Sci-Fi +142744,Horror House (1969),Horror +142746,The Dark Hour (2007),Horror|Mystery|Sci-Fi|Thriller +142748,The Dark (1994),(no genres listed) +142751,The Fighting Lady (1944),Documentary|War +142754,The Lost (2006),Crime|Drama|Thriller +142756,The Love Light (1921),Drama +142758,Arizona Colt (1966),Western +142761,The Miniver Story (1950),Drama +142763,The Phantom of Crestwood (1932),Crime|Mystery +142765,The Program (2015),Drama +142767,The Red Kimona (1925),Drama +142770,The Selling (2012),Comedy +142775,The Warrior Empress (1960),Adventure +142778,Trade Winds (1938),Drama +142780,True Women (1997),Drama|Romance|War|Western +142782,Vanessa: Her Love Story (1935),Drama +142788,Witchboard 2: The Devil's Doorway (1993),Horror|Mystery +142791,My Little Bride (2004),Comedy|Drama|Romance +142793,Young Bride (1932),Drama +142795,Love Is in the Air (2011),(no genres listed) +142797,White Rabbit (2013),Drama +142799,The Silenced (2015),Drama|Mystery|Thriller +142801,Alice in Earnestland (2015),(no genres listed) +142803,The Classified File (2015),Crime|Drama +142805,Helios (2015),Action|Crime +142807,Hollywood Adventures (2015),Action|Comedy +142809,Hush Little Baby (2007),Drama|Mystery|Thriller +142811,Carnival of Souls (1998),Horror|Thriller +142813,Full Out (2015),Children|Drama +142815,The Boys Club (1997),Drama +142817,Apaharan (2005),Action|Crime|Drama +142819,Bangalore Days (2014),Comedy|Drama|Romance +142821,Ohm Shanthi Oshaana (2014),Comedy|Romance +142823,Baazigar (1993),Crime|Thriller +142825,Sparsh (1980),(no genres listed) +142827,Waves (2000),Drama|Romance +142829,The Dirty Picture (2011),Comedy|Drama +142831,Garam Masala (2005),Comedy +142833,Chup Chup Ke (2006),Comedy +142835,Dulhe Raja (1998),Comedy|Drama|Romance +142837,Mr. & Mrs. Khiladi (1997),(no genres listed) +142839,Vaaranam Aayiram (2008),Comedy|Drama|Romance|Thriller +142841,Vedam (2010),Drama|Romance +142843,Little Witch Academia (2013),Action|Animation|Comedy|Fantasy +142845,A Small Act (2010),Documentary +142847,Cat Shit One (2010),Animation|War +142849,Rabbit and Deer (2013),Animation|Comedy +142851,"Arab Cortege, Geneva (1896)",Documentary +142853,The Mole at the Sea (2012),Adventure|Animation|Comedy +142855,Paul Taylor Creative Domain (2014),Documentary +142857,1001 Grams (2014),Drama +142859,Factory Girl (2013),Drama|Romance +142861,Cemetery of Splendour (2015),Drama|Fantasy +142863,Crumbs (2015),Adventure|Drama|Sci-Fi +142865,Much Loved (2015),Drama +142867,Tiger House (2015),Action|Crime|Drama +142869,The Tyrannical Father (1941),Comedy +142871,O Pátio das Cantigas (1942),Comedy +142873,O Costa d'África (1954),Comedy +142875,Star (2014),Comedy|Drama|Romance +142877,The Quiet Hour (2015),Drama|Sci-Fi|Thriller +142879,Everything Before Us (2015),Drama|Romance +142881,Candlestick (2014),Mystery|Thriller +142883,The Idealist (2015),Drama|Thriller +142885,"You're a Good Sport, Charlie Brown (1975)",Animation|Children|Comedy +142887,I Am Here (2014),Drama|Thriller +142889,A Brokedown Melody (2004),Action|Adventure|Documentary|Drama +142891,The Legend of Paul and Paula (1973),Drama|Romance +142893,Desolation Canyon (2006),Western +142895,Nana (1934),Drama +142897,Cemetery Without Crosses (1969),Western +142899,L'Oranais (2014),Drama +142901,Un Français (2015),(no genres listed) +142903,Ricochet (2011),Crime|Drama|Mystery|Thriller +142905,Arthur & Merlin (2015),Fantasy +142907,Breaking Dawn (2004),Horror|Mystery|Thriller +142909,La Dame dans l'auto avec des lunettes et un fusil (2015),Thriller +142911,The 10 Year Plan (2014),(no genres listed) +142913,Ollaan vapaita,(no genres listed) +142915,The Slurb (2001),Comedy +142917,Distractions (2015),Comedy +142919,Snow-White and Rose-Red (1979),Children|Fantasy +142921,Essex Boys: Law of Survival (2015),Action|Adventure|Crime|Drama +142923,Blastfighter (1984),Action|Crime|Drama +142925,A Christmas Horror Story (2015),Horror +142927,Sissi: The Fateful Years of an Empress (1957),Drama|Romance +142929,Sissi (1955),Comedy|Drama|Romance +142931,Sting of Death (1966),Horror +142933,Godmonster of Indian Flats (1973),Horror|Sci-Fi +142935,Evil Ed (1997),Horror +142937,RangiTaranga (2015),(no genres listed) +142939,Robot Wars (1993),Sci-Fi|Thriller +142941,Robo Warriors (1996),Action|Adventure|Sci-Fi +142943,Laserblast (1978),Action|Sci-Fi|Thriller +142945,The Phantom Creeps (1939),Sci-Fi +142947,Spookies (1986),Horror +142949,Nightbeast (1982),Horror|Sci-Fi +142951,Vaya con Dios (2002),Comedy +142953,The Thread (2015),Documentary +142955,Certain Prey (2011),Action|Crime|Drama|Mystery|Thriller +142959,Spicy Love Soup (1997),(no genres listed) +142961,Life Eternal (2015),Comedy|Crime|Thriller +142963,7 Chinese Brothers (2015),Comedy +142965,Beautiful Days (1955),Drama +142967,To New Shores (1937),Drama +142969,Virgin Mountain (2015),Comedy|Drama +142971,From The Depths of My Heart (2015),Drama|Horror +142973,Ice and the Sky (2015),Documentary +142975,Navy Seals vs. Zombies (2015),Action|Horror +142977,The Rosenwald Schools (2015),(no genres listed) +142979,The Laundryman (2015),(no genres listed) +142981,"Bell for Ursli, A (Schellen-Ursli) (2015)",Children +142983,Delirium (1972),Mystery|Thriller +142985,Bringing Ashley Home (2011),Drama +142987,Stavitel chrámu (1920),(no genres listed) +142989,Sleepless In New York (2014),Documentary|Drama|Romance +142991,Mediterranea (2015),Drama +142993,The Club (2015),Drama +142995,Alias Maria (2015),(no genres listed) +142997,Hotel Transylvania 2 (2015),Animation|Comedy +142999,Hidden (2015),Horror|Thriller +143001,Anti-Social (2015),Crime +143003,The Goob (2015),Drama|Romance +143005,The Beat Beneath My Feet (2014),Comedy|Drama +143007,A Horse for Summer (2015),(no genres listed) +143009,Pure (2009),Drama +143011,I nostri ragazzi (2014),Drama +143013,The Seven Deadly Sins (1962),(no genres listed) +143015,From the Head (2011),Drama +143017,Solitary (2009),Mystery|Thriller +143019,Triple Dare (2006),Drama +143021,"Life, Love & Celluloid (1998)",Documentary +143023,Don't Think I've Forgotten: Cambodia's Lost Rock and Roll (2014),Documentary +143025,Tim Maia (2014),Drama +143027,Now You See It... (2005),Comedy|Mystery +143029,Stuck in the Suburbs (2004),Children|Comedy +143031,Jump In! (2007),Comedy|Drama|Romance +143033,Winning London (2001),Children|Comedy +143035,Minutemen (2008),Adventure|Children|Comedy|Sci-Fi +143037,30 Days Until I'm Famous (2004),Comedy|Drama|Romance +143039,2gether (2000),Comedy|Drama +143041,Too Young to Marry (2007),Comedy|Drama|Romance +143043,Fish & Cat (2013),(no genres listed) +143045,When Day Breaks (2012),Drama +143047,Dark Blood (2012),Thriller +143049,Not Waving But Drowning (2012),Drama +143053,Oddball (2015),Children +143055,Jett Jackson: The Movie (2001),Action|Adventure|Children|Comedy|Sci-Fi +143057,Snapphanar (2006),Action|Drama +143059,RUSH: Time Machine (2011),(no genres listed) +143061,Don't Look Down (2008),Drama|Romance +143063,Sheila Levine is Dead and Living in New York (1975),Comedy +143065,Orson Welles: The One-Man Band (1995),Documentary +143067,Dream Deceivers: The Story Behind James Vance vs. Judas Priest (1992),(no genres listed) +143069,Daft Punk Unchained (2015),Documentary +143071,Chilling Visions: 5 Senses of Fear (2013),Horror +143076,Aftermath (2004),Drama +143078,Crash: The Mystery of Flight 1501 (1990),Drama|Mystery +143082,Airborne (2012),Horror|Thriller +143086,An American Girl: Saige Paints the Sky (2013),Children +143089,Beverly Hills Madam (1986),Drama +143091,The Gauntlet (2013),Action|Adventure|Horror +143096,La corruzione (1963),(no genres listed) +143098,Crawl (2011),Crime|Thriller +143101,A Feather in Her Hat (1935),(no genres listed) +143103,First Love (1974),(no genres listed) +143105,First Love (1978),Drama|Romance +143108,First Love (2000),(no genres listed) +143111,First Love (2006),Crime|Drama +143113,GodFather (1991),Comedy|Drama|Romance +143115,Varalaru (2006),Drama +143117,Hands of a Stranger (1962),Horror|Thriller +143119,Mansion of the Doomed (1976),Horror +143126,Mischief Night (2006),Drama +143128,Mrs. Santa Claus (1996),Children|Fantasy +143130,Murder in the Private Car (1934),Mystery|Romance +143133,Poker Alice (1987),(no genres listed) +143137,Sabotage (1996),Action|Thriller +143141,Necessary Evil (2008),Thriller +143150,Small Sacrifices (1989),(no genres listed) +143152,Something to Shout About (1943),(no genres listed) +143154,Sparrows Can't Sing (1963),Comedy|Drama +143156,There's Always Vanilla (1971),(no genres listed) +143158,The Affair (1967),(no genres listed) +143160,Sunrise (2014),Drama +143162,The Affair (1995),(no genres listed) +143164,Silsila (1981),Drama|Romance +143166,The Affair (1973),Drama|Romance +143168,Wild Life (2014),Drama +143170,The Silk Express (1933),Drama|Mystery|Thriller +143174,Tiger Cage (1988),Action +143178,"To Sir, with Love II (1996)",Drama +143180,Victim (2011),Action|Drama|Thriller +143183,Slaughter (1972),Action|Crime|Drama +143185,The Child (1977),Horror +143187,Black Eye (1974),Action|Crime +143192,Blow for Blow (1972),Drama +143194,Rings of Fear (1978),Horror +143197,The Horror of Frankenstein (1970),Horror|Sci-Fi +143199,Immoral Tales (1974),Drama|Romance +143201,One of Us (1989),(no genres listed) +143203,Inside (2002),Drama +143205,I Didn't Come Here to Die (2010),(no genres listed) +143207,Jack and the Beanstalk (2010),Adventure|Children|Comedy|Fantasy +143209,Tremors 5: Bloodline (2015),Action|Horror|Sci-Fi +143211,"Once More, My Darling (1949)",(no genres listed) +143215,Sunday in the Country (1974),Crime|Drama|Thriller +143217,Middle Age Crazy (1980),(no genres listed) +143219,Crossbar (1979),Drama +143221,Find the Lady (1976),(no genres listed) +143223,It Seemed Like a Good Idea at the Time (1975),(no genres listed) +143225,The Man Who Wanted to Live Forever (1970),Thriller +143231,Double Teamed (2002),Children|Drama +143233,Horse Sense (1999),Drama +143235,Going to the Mat (2004),(no genres listed) +143237,Freeheld (2015),Drama|Romance +143239,By the Sea (2015),Drama|Romance +143243,An Open Heart (2012),Drama +143245,The Little Prince (2015),Animation|Fantasy +143247,If You Build It (2014),Documentary +143249,Dark Star: HR Giger’s World (2014),Documentary +143251,Red Passport (2003),Crime|Drama +143253,Food Chains (2014),Documentary +143255,Narcopolis (2014),Mystery|Sci-Fi|Thriller +143257,Ashby (2015),Comedy|Drama +143259,4Got10 (2015),(no genres listed) +143261,Battle of the Godfathers (1973),Action|Drama +143263,Lucky Luciano (1973),Crime|Drama +143265,Phil the Alien (2004),Action|Comedy|Sci-Fi +143267,Beyond Atlantis (1973),Fantasy|Horror|Sci-Fi +143269,Moro Witch Doctor (1964),(no genres listed) +143271,Dheepan (2015),Drama +143273,"Forecaster, The (2014)",Documentary +143275,Ronaldo (2015),Documentary +143277,Svend (2011),Documentary +143279,Trick Baby (1973),Action|Crime|Drama +143281,Revolution (1968),Documentary +143283,The Flight of the Eagle (1982),(no genres listed) +143285,Bang! (1977),(no genres listed) +143287,Land of Dreams (1988),Documentary +143291,Seven from Thebes (1964),Adventure +143295,A Dollar Between the Teeth (1967),Western +143297,"A Man, a Horse, a Gun (1967)",Western +143299,Marlene (1984),Documentary +143301,The Pedestrian (1973),(no genres listed) +143303,Tales from the Vienna Woods (1979),(no genres listed) +143305,Between the Lines (1977),(no genres listed) +143307,I Escaped from Devil's Island (1973),Action|Adventure +143309,"Liza, the Fox-Fairy (2015)",Comedy|Fantasy|Romance +143311,Get Santa (2014),Children|Comedy +143315,Il nome del figlio (2015),Comedy +143317,The Cut (2014),Drama +143319,The Jackpot (1950),Comedy +143321,A Teacher's Crime (2008),Crime|Drama|Mystery +143323,Street Warrior (2008),Action +143327,Gambling House (1950),Crime +143329,City Across the River (1949),(no genres listed) +143331,Nightmare (1956),Crime +143333,The Work of Director Jonathan Glazer (2005),(no genres listed) +143335,"Deprisa, Deprisa (1981)",Crime|Drama +143337,Alice Cooper: Prime Cuts (1991),Documentary +143339,Dario Argento: An Eye for Horror (2000),Documentary +143341,Beyond the Mask (2015),Action|Drama +143345,Shazam! (2019),Action|Adventure|Fantasy|Sci-Fi +143347,Aquaman (2018),Action|Fantasy|Sci-Fi +143355,Wonder Woman (2017),Action|Adventure|Fantasy +143361,Iron Sky the Coming Race (2016),Action|Comedy|Fantasy|Sci-Fi +143363,Salt and Fire (2016),Thriller +143365,The Circle (2016),Drama|Sci-Fi|Thriller +143367,Silence (2016),Drama|Thriller +143369,The Clan (2015),Crime|Drama +143371,Messner (2012),Adventure|Documentary +143373,Bikini Girls on Ice (2009),Horror +143377,Glen Campbell: I'll Be Me (2014),Documentary|Drama +143379,The Victim (2006),Horror|Mystery|Thriller +143381,Killer Darts (1968),Action|Adventure +143383,Nanga Parbat (2010),Adventure|Drama +143385,Bridge of Spies (2015),Drama|Thriller +143387,Pitch Perfect 3 (2017),(no genres listed) +143389,Les Misérables in Concert - The 25th Anniversary (2010),(no genres listed) +143391,The Lost Medallion: The Adventures of Billy Stone (2013),Adventure|Children +143393,Undercover (1984),Comedy +143395,The Clinic (1983),(no genres listed) +143397,If I Die Before I Wake (2001),Crime|Horror|Thriller +143401,Deadly Game (1977),Drama +143404,A Tale of Love and Darkness (2015),Drama +143406,Blood of My Blood (2011),Drama +143408,Return to Reason (1923),(no genres listed) +143410,Hyena Road,(no genres listed) +143412,My Internship in Canada (2015),Comedy +143414,"Gone, But Not Forgotten (2003)",Drama|Romance|Thriller +143416,Honey and the Pig (2005),Comedy +143418,Amnesia: The James Brighton Enigma (2005),Drama|Mystery|Thriller +143420,Tsiou (2005),(no genres listed) +143422,2 (2007),Drama +143424,Radical Grace (2015),Documentary +143426,A Ring of Endless Light (2002),(no genres listed) +143428,Attack of the 60 Foot Centerfolds (1995),Comedy|Sci-Fi +143430,Jodi Arias: Dirty Little Secret (2013),Drama|Romance +143432,Moscow Heat (2004),Action|Drama|Thriller +143434,The Italian Key (2011),(no genres listed) +143436,Manam (2014),Children|Comedy|Drama|Fantasy +143438,Coming Home (2003),Drama|Romance +143440,"Mune, le gardien de la lune (2015)",Animation|Children|Fantasy +143442,Directed by Sidney Lumet: How the Devil Was Made (2008),Documentary +143444,"Bigger Splash, A (2015)",Comedy|Crime|Drama|Mystery +143446,The Sun's Burial (1960),Drama +143448,Good-for-Nothing (1960),Action +143450,Morlang (2001),Drama|Romance|Thriller +143452,El pico 2 (1984),Drama +143454,Youth in Fury (1960),(no genres listed) +143456,Argo 2 (2015),Action|Comedy|Crime +143458,The Great Hypnotist (2014),Drama|Mystery|Thriller +143460,I Just Want to Kiss You (1998),(no genres listed) +143462,Iris (2014),Documentary +143464,Where Hope Grows (2014),Drama +143466,Ghost Writer (2007),Comedy|Horror +143468,Numbered (2012),Documentary +143470,6 Ways to Die (2015),Action|Crime|Thriller +143472,Into the Grizzly Maze (2015),Action|Horror|Thriller +143474,Secrets of War (2014),Children|Drama|War +143476,Where To Invade Next (2015),Documentary +143478,"Air: Eating, Sleeping, Waiting and Playing (1999)",Documentary +143480,Pitbullterje (2005),(no genres listed) +143482,Jerry Cotton (2010),Comedy|Crime +143486,The Last Day of Summer (2007),Children|Sci-Fi +143492,Runt Page (1932),(no genres listed) +143494,The Pie-Covered Wagon (1932),(no genres listed) +143496,Cell 213 (2011),Horror +143500,The Hunt for the BTK Killer (2005),Crime|Drama|Thriller +143502,Roots: The Gift (1988),Drama +143506,Sword Art Online Extra Edition (2013),Action|Adventure|Animation|Drama|Fantasy +143508,The Pleasure Is All Mine (2004),Comedy|Drama|Romance +143511,Human (2015),Documentary +143513,A ciel ouvert (2014),Documentary +143515,Eisenstein in Guanajuato (2015),Comedy|Romance +143517,The Summer of Sangaile (2015),Drama|Romance +143519,The Pearl Button (2015),Documentary +143521,Pennies from Heaven (1978),(no genres listed) +143523,Sleeping Giant (2015),Adventure|Drama +143525,Chasuke's Journey (2015),Comedy|Drama +143527,Lulu in the Nude (2013),Comedy|Drama +143529,Roukli (2015),Drama +143531,Mountains May Depart (2015),Drama +143533,Outlaw Riders (1971),Action +143535,"Tent City, U.S.A (2012)",Documentary +143537,Toy Masters (2014),Documentary +143539,Titanic at 100: Mystery Solved (2012),(no genres listed) +143541,Sleeping on Dark Waters (2008),(no genres listed) +143543,Rainbow Bridge (1972),Documentary +143545,A Tale of Two Cities (1980),Animation|Drama|Romance +143547,The Phantom of the Opera at the Royal Albert Hall (2011),Drama|Romance +143549,The Indian (2007),Drama +143551,Nina (1978),(no genres listed) +143553,The Hoarder (2015),Horror|Thriller +143555,American Beach House (2015),Comedy +143559,L.A. Slasher (2015),Comedy|Crime|Fantasy +143561,Swat: Unit 887 (2015),Action|Thriller +143563,Zombie Killers: Elephant's Graveyard (2015),Horror +143565,A Prayer for Rain (2013),(no genres listed) +143567,Mining for Ruby (2014),(no genres listed) +143571,Private Practices: The Story of a Sex Surrogate (1986),Documentary +143575,Fuga de cerebros 2 (2011),Action|Sci-Fi|Thriller +143577,Say Uncle (2005),Comedy|Drama +143579,Violet's Visit (1997),Comedy|Romance +143581,Coffee Date (2006),Comedy|Romance +143583,Nous York (2012),Comedy +143585,Nobel's Last Will (2012),Drama|Thriller +143587,Carny (2009),Horror|Sci-Fi|Thriller +143589,Blonde Savage (1947),Action|Adventure +143595,Born Innocent (1974),Drama +143599,Coin Locker Girl (2015),Drama +143601,Two People (1973),Drama|Romance +143603,I'll Get By (1950),Comedy|Romance +143611,The Reunion (1963),(no genres listed) +143613,The Empty Canvas (1963),Drama +143615,Pizza Connection (1985),Action|Crime|Drama +143617,Assassini dei giorni di festa (2002),Comedy +143619,The Inquiry (1986),(no genres listed) +143621,How to Kill a Judge (1975),Action|Thriller +143623,Lenin: The Train (1988),Drama +143625,Alex L'ariete (2000),Action|Adventure|Crime +143627,A Rather Complicated Girl (1969),Comedy|Romance +143629,Mafia (1968),Crime|Drama +143631,The Most Beautiful Wife (1970),Crime|Drama +143633,The Witch (1966),Horror +143635,Playing Dead (2013),Comedy +143637,Road to Paloma (2014),Drama|Thriller +143639,The True Meaning of Pictures: Shelby Lee Adams' Appalachia (2002),Documentary +143641,South (1919),Documentary +143643,Porridge (1979),Comedy|Crime +143645,Carry On Jack (1963),Comedy +143647,An Inspector Calls (2015),Drama|Thriller +143649,Freedom (2001),Drama +143651,Rossini (1997),Comedy +143653,Kokowaah 2 (2013),Comedy +143655,Simshar (2014),Drama +143657,The Invitation (2015),Horror|Thriller +143659,Total Reality (1997),Action|Sci-Fi +143661,Rage (2010),Drama|Horror|Sci-Fi +143663,Maidens in Uniform (1958),Drama +143666,The Adventures of Mickey Matson and the Copperhead Conspiracy (2012),Children +143668,The Taste of Money (2012),Drama +143679,"Ocean Waif, The (1916)",Drama +143681,'49-'17 (1917),Comedy|Western +143683,Laura Lansing Slept Here (1988),Comedy +143685,Mark of the Witch (1970),Horror +143687,Schoolgirls in Chains (1973),Horror +143689,Criminally Insane (1975),Horror +143691,Criminally Insane 2 (1987),Horror +143693,The Student Body (1976),Comedy|Drama +143695,The Falls (2012),Drama +143697,Winnie the Pooh Discovers the Seasons (1981),(no genres listed) +143699,Buttwhistle (2014),Comedy|Crime|Drama|Romance +143701,Under the Radar (2004),(no genres listed) +143703,Eden (2014),Drama|Thriller +143705,The Secret Lives of Second Wives (2008),Drama|Romance +143707,Cruel World (2005),Comedy|Horror|Thriller +143709,The Take (2009),(no genres listed) +143711,By Our Selves (2015),(no genres listed) +143713,My Mother (2015),Drama +143715,The Parole Officer (2001),Comedy|Crime +143717,Meet Market (2008),Comedy|Romance +143719,Mr. Write (1994),Comedy +143721,Speaking of Bunuel (2000),Documentary +143723,La storia vera della signora dalle camelie (1981),Drama|Romance +143725,Marisa la civetta (1957),Comedy +143727,Giovani mariti (1958),(no genres listed) +143729,Arrangiatevi! (1959),Comedy +143731,The Venetian Woman (1986),Drama|Romance +143733,Mosca addio (1987),Drama +143735,Gli Indifferenti (1988),Drama +143739,Per le antiche scale (1975),(no genres listed) +143741,The Inheritance (1976),Drama +143745,Fatti di gente perbene (1974),Drama +143747,Metello (1970),(no genres listed) +143749,Un bellissimo novembre (1969),Comedy|Drama +143751,He and She (1969),Drama +143753,Bubu (1971),Drama +143755,The Big Night (1959),Drama +143757,Il bell'Antonio (1960),Drama +143759,From a Roman Balcony (1960),Drama|Romance +143761,La viaccia (1961),(no genres listed) +143763,Agostino (1962),Drama +143767,Woman Is a Wonderful Thing (1964),Comedy +143769,Le chevalier de Maupin (1966),Adventure +143773,La villa del venerdì (1991),Drama +143775,L'Ombrellone (1965),Comedy +143777,Dirty Weekend (1973),Comedy|Crime|Drama|Thriller +143779,The Forbidden Room (1977),Drama|Mystery +143781,The Bishop's Bedroom (1977),Comedy|Crime|Drama +143783,Caro papà (1979),(no genres listed) +143785,Sesso E Volentieri (1982),Comedy +143787,Good King Dagobert (1984),Comedy +143789,Madman at War (1985),Comedy +143791,Il commissario Lo Gatto (1987),(no genres listed) +143795,Tolgo Il Disturbo (1990),Comedy +143797,Il Giovane Normale (1969),Comedy +143799,The Priest's Wife (1970),Comedy +143801,Noi donne siamo fatte così (1971),Comedy +143803,In nome del popolo italiano (1971),(no genres listed) +143805,Sessomatto (1973),Comedy +143807,The Tiger and the Pussycat (1967),Comedy|Drama +143809,Il viale della speranza (1953),(no genres listed) +143811,Vacation with a Gangster (1952),(no genres listed) +143813,Scandal in Sorrento (1955),Comedy|Romance +143815,Poor But Beautiful (1957),(no genres listed) +143819,La nonna Sabella (1957),(no genres listed) +143821,Poor Millionaires (1959),Comedy +143823,Love and Larceny (1960),Comedy +143825,Love in Rome (1960),(no genres listed) +143827,La Marcia Su Roma (1962),Comedy +143829,Il Successo (1963),Comedy +143831,The Monsters (1963),Comedy +143833,The Thursday (1964),Comedy|Drama +143835,A Daughter Of Destiny (1928),Drama|Fantasy|Horror|Sci-Fi +143845,Arrivano i bersaglieri (1980),Comedy|Drama +143849,Scipione detto anche l'africano (1971),Comedy +143851,Faustina (1968),(no genres listed) +143853,Two Heads Are Better Than None (2000),Children|Comedy +143855,I bambini sanno (2015),(no genres listed) +143857,The Good Father (1985),Drama +143859,"Hail, Caesar! (2016)",Comedy +143861,2103: The Deadly Wake (1997),Sci-Fi +143863,Spartacus (2004),Action|Drama +143866,Miss Conception (2008),Comedy|Romance +143868,Beauty & the Briefcase (2010),Comedy|Drama|Romance +143870,The Perfect Date (2010),Comedy|Romance +143872,Cayman Went (2009),Drama|Romance +143874,Nightmare Detective (2006),Crime|Fantasy|Horror|Thriller +143876,Treading Water (2001),Drama +143878,The Victim (2011),Action|Horror|Thriller +143880,Hunt to Kill (2010),Action|Adventure|Thriller +143882,Operator (2015),Action|Drama|Thriller +143884,Noble (2015),Drama +143886,Break Point (2014),Comedy +143888,Gallows Road (2015),Drama +143890,LEGO DC Super Heroes: Justice League - Attack of the Legion of Doom! (2015),Animation|Children +143892,Salad Days (2015),Documentary +143894,Mavis! (2015),Documentary +143896,How To Change The World (2015),Documentary +143898,Saint Young Men (2013),Animation|Comedy +143900,Blade (1973),Mystery|Thriller +143902,Dynamite Chicken (1971),Comedy +143904,The Loners (1972),Action|Drama +143906,Bonnie's Kids (1973),Action|Crime|Drama +143910,Animals (2012),Drama|Fantasy +143912,Pusinky (2007),(no genres listed) +143914,Kiss (1963),Documentary +143919,iNumber Number (2013),Action|Crime|Drama +143921,Deadbeat (1977),Crime|Drama|Thriller +143923,Black Horse Canyon (1954),(no genres listed) +143925,Broadway Hostess (1935),Drama|Romance +143930,Cookie (2013),Comedy|Drama +143932,Dark Hazard (1934),Drama +143935,Dead Before Dawn (1993),Drama|Thriller +143937,Death of a Salesman (2000),Drama +143942,"Namu, the Killer Whale (1966)",Adventure|Children|Drama +143944,Malaga (1960),Crime +143946,Affair in Havana (1957),Crime|Drama +143948,"Children, Mother, and the General (1955)",Drama +143957,Don't Be Afraid of the Dark (1973),Horror +143959,Don't Look Up (2009),Horror|Thriller +143961,Don't Look Up (1996),Horror +143963,"Elmer, The Great (1933)",Comedy +143965,Ghostquake (Haunted High) (2012),Horror +143967,"Good Morning, Killer (2011)",Thriller +143969,Er ist wieder da (2015),Comedy +143972,Home (2013),(no genres listed) +143974,Home (2011),Drama +143976,Home (2014),Drama|Romance +143978,Home (2008),Drama +143980,Home for the Holidays (1972),Horror|Thriller +143982,Home for the Holidays (2005),Comedy|Romance +143984,Jet Attack (1958),Drama|War +143986,Just Another Girl on the I.R.T. (1992),Drama +143988,L.A. Bounty (1989),Drama|Thriller +143990,Little Dorrit (2008),Drama +143992,Marvin & Tige (1985),Drama +143994,McHale's Navy Joins the Air Force (1965),Comedy +143996,Melvin Purvis G-Man (1974),(no genres listed) +143998,Gone (2006),Crime|Drama|Horror|Mystery|Thriller +144003,Memorial Valley Massacre (1988),Horror|Thriller +144005,Sleepaway Camp IV: The Survivor (1992),Horror +144008,Sutures (2009),Horror|Thriller +144013,Storm in a Teacup (1937),Comedy|Romance +144015,Strangers May Kiss (1931),Drama|Romance +144017,Meet Prince Charming (2002),(no genres listed) +144020,The Boy Next Door (2008),Crime|Mystery|Thriller +144022,The Decline of Western Civilization Part III (1998),Documentary +144025,The Goose and the Gander (1935),(no genres listed) +144027,The Grim Game (1919),(no genres listed) +144029,The Hitcher II: I've Been Waiting (2003),Action|Thriller +144031,The Life and Times of Rosie the Riveter (1980),Documentary|War +144033,The Marriage Chronicles (2012),Comedy|Romance +144035,The Other (1999),Drama|Romance +144037,The Other (2007),Drama +144042,Gong Tau (2007),Horror +144046,Western Heritage (1948),Action|Drama|Western +144048,Something About Amelia (1984),Drama +144050,Attack on Titan: Crimson Bow and Arrow (2014),Action|Animation +144052,Secrets of a Psychopath (2014),Horror|Thriller +144054,Asphalt Angels,(no genres listed) +144056,"Connasse, Princesse des cœurs (2015)",Comedy +144058,Territory (2015),Adventure|Drama +144060,Live From New York! (2015),Comedy|Documentary +144062,Junun (2015),Documentary +144064,Call Me Lucky (2015),Documentary +144066,Blood Punch (2013),Horror|Thriller +144068,Eaters (2015),Horror|Thriller +144070,June (2015),Horror|Sci-Fi +144072,The Stranger (2015),Drama|Horror|Mystery|Thriller +144074,Code Rush (2000),Documentary +144078,Kleinhoff Hotel (1977),(no genres listed) +144080,Torino nera (1972),(no genres listed) +144082,Mamma Ebe (1985),Drama +144084,The House of the Yellow Carpet (1983),Horror|Thriller +144088,Love and Anger (1969),Drama +144092,The Violent Four (1968),Crime|Drama +144094,Kill and Pray (1967),Western +144096,Too Soon to Die (1966),Crime|Drama +144098,The Dirty Game (1965),Drama|Thriller +144100,Amori pericolosi (1964),Drama|Thriller +144102,La vita agra (1964),(no genres listed) +144108,Esterina (1959),Drama +144110,Hotel Meina (2007),(no genres listed) +144112,Roberto Rossellini: Frammenti e Battute (2000),(no genres listed) +144118,Caro Gorbaciov (1988),(no genres listed) +144124,Chronicle of Poor Lovers (1954),(no genres listed) +144128,Attention! Bandits! (1951),Drama|War +144132,Darkness by Day (2013),Horror +144134,The Hive (2015),Sci-Fi|Thriller +144136,Framed (1975),Action|Adventure|Crime|Thriller +144138,Billy Elliot: The Musical (2014),Comedy|Drama +144140,Ready? OK! (2008),Children|Comedy +144142,The Eternal Rainbow (1958),(no genres listed) +144144,Times of Joy and Sorrow (1957),(no genres listed) +144146,Honeyspider (2014),Horror|Thriller +144148,TimeScapes (2012),Documentary +144150,Peace Officer (2015),Documentary +144152,All About Them (2015),Comedy|Romance +144154,Difret (2014),Drama +144158,Deep Dark (2015),(no genres listed) +144160,"Honeybaby, Honeybaby (1974)",Action +144162,Dirty O'Neil (1974),Comedy|Drama|Thriller +144164,Fighting Back (1982),Action|Crime|Thriller +144166,No Man's Land (1978),(no genres listed) +144168,The Party Never Stops: Diary of a Binge Drinker (2007),Drama +144170,Teenage Bank Heist (2012),Thriller +144172,February (2015),Horror +144174,"Just, Melvin: Just Evil (2000)",Documentary +144176,Hacker's game (2015),Drama|Romance|Thriller +144178,Reboot (2012),(no genres listed) +144180,Mad As Hell (2014),(no genres listed) +144182,SPL 2: A Time for Consequences (2015),Action|Crime|Drama +144184,Fury: The Tales of Ronan Pierce (2014),Thriller +144186,The Inhabitants (2015),Horror +144188,The Cost of Love (2011),Comedy|Drama +144190,2084 (1984),Documentary +144192,¡Cuba Sí! (1961),Documentary +144194,The Narrows (2008),Crime|Drama|Thriller +144196,Re-Kill (2015),Horror|Sci-Fi +144198,Keith Richards: Under the Influence (2015),Documentary +144200,Lonely Boy (2013),Comedy|Drama +144202,Catch That Girl (2002),Action|Children +144204,L'étudiante et Monsieur Henri (2015),(no genres listed) +144206,Standing Tall (2015),Comedy|Drama +144208,Bicycle Dreams (2009),Adventure|Documentary +144210,Just Eat It: A Food Waste Story (2014),Documentary +144212,Running Wild (2006),Action|Crime|Thriller +144214,Asylum: the Lost Footage (2013),Horror +144216,Invisible Sister (2015),Adventure|Comedy|Fantasy +144218,Chez Nous (2013),Comedy|Drama +144220,The Seminarian (2010),Drama +144222,Bros Before Hos (2013),Comedy +144224,Baskin (2015),Horror +144226,Patch Town (2014),Adventure|Comedy|Fantasy|Sci-Fi +144228,ABE (2013),Sci-Fi|Thriller +144230,Abiogenesis (2011),Sci-Fi +144234,Scarlet Eye (1963),Adventure|Crime +144236,Brainwashed (1960),(no genres listed) +144238,"Am Tag, als der Regen kam (1959)",Crime|Drama +144240,Screaming Mimi (1958),Thriller +144242,Paris Holiday (1958),Comedy +144244,Valerie (1957),Western +144246,Fury at Showdown (1957),Western +144248,Girl with a Suitcase (1961),Drama|Romance +144250,Mediastan (2013),Documentary +144254,Bad Day to Go Fishing (2009),Comedy|Drama|Thriller +144256,Running Turtle (2009),(no genres listed) +144258,Tazza: The High Rollers (2006),(no genres listed) +144260,Big Match (2014),Action|Comedy|Thriller +144262,Slow Learners (2015),Comedy|Romance +144264,The Con Artists (2014),Action|Crime|Thriller +144266,Nightlight (2015),Horror|Thriller +144268,Mockingbird (2014),Horror +144270,Preggoland (2015),Comedy|Drama +144272,Blackwood (2014),Thriller +144274,The Target (2014),Action|Thriller +144276,Brotherhood of Blades (2014),Action|Drama|Romance +144278,2000 AD (2000),Action|Thriller +144280,4bia (2008),Drama|Horror +144282,"Better Tomorrow, A (Moo-jeok-ja) (2010)",Action|Drama|Thriller +144284,5150 Elm's Way (2009),(no genres listed) +144286,A Good Man (2014),Action +144288,Carved: The Slit-Mouthed Woman (2007),Horror +144290,Another Public Enemy (2005),Action|Drama|Thriller +144292,APT. (2006),Horror +144294,Alone (2007),Drama|Horror|Thriller +144296,Animal (2014),Horror|Thriller +144298,Avalon High (2010),Children|Drama|Fantasy +144300,As the Light Goes Out (2014),Action|Drama +144302,Commitment (2013),Action|Drama|Thriller +144304,Lethal Hostage (2012),Crime|Drama +144306,Battlefield Heroes (2011),Comedy|Drama +144308,Black House (2007),Horror|Thriller +144310,The Beast Stalker (2008),Action +144312,Fallen City (2011),Action|Drama +144314,Never to Lose (2005),(no genres listed) +144316,Explosive City (2004),Action +144318,Colour of the Loyalty (2005),Crime|Drama +144320,The Apprehenders (2011),Action|Comedy +144322,Mr. Socrates (2005),Action|Crime +144324,Once Upon a Time (2008),Action|Adventure|Comedy|Crime|Drama|Romance|Thriller +144326,Hanbando (2006),Drama|Mystery|Thriller +144328,MW (2009),Drama|Sci-Fi|Thriller +144330,Poker King (2009),Comedy +144332,Fate (2008),Mystery|Thriller +144334,Once a Gangster (2010),Action|Comedy|Crime +144336,Kotsutsubo (2012),Horror +144338,Holiday (2006),Action|Children|Comedy|Crime|Drama|Romance +144340,Countdown (2011),Action|Thriller +144342,Troubleshooter (2010),Action|Thriller +144344,Righteous Ties (2006),Action|Adventure|Crime|Drama +144346,Wu Dang (2012),Action +144348,The Tower (2012),Action|Drama +144350,Under the Mountain (2009),Action|Adventure|Children|Drama|Fantasy|Sci-Fi +144352,Unforgiven (2013),Action|Crime|Drama +144354,The Wrath Of Vajra (2013),Action|Fantasy|Horror +144356,The Lost Bladesman (2011),Action|Drama|War +144358,The Millionaire Tour (2012),Drama|Romance +144360,The Midnight After (2014),Comedy|Sci-Fi|Thriller +144362,The Unjust (2010),Crime|Thriller +144364,Triad Wars (2008),Action|Crime +144366,The Twins Effect II (2004),Action|Adventure|Comedy|Sci-Fi +144368,Triple Tap (2010),Action|Mystery|Thriller +144370,The White Storm (2013),Action|Crime|Drama|Mystery +144372,The Sword with No Name (2009),Action|Drama +144374,Psychometry (2013),Mystery +144376,11:00 AM (2013),Fantasy|Sci-Fi +144378,Voice of a Murderer (2007),Drama|Thriller +144380,The Fatal Encounter (2014),Action|Drama +144382,Jim Jefferies: Contraband (2008),Comedy +144384,The Robbers (2009),Action|Drama|Thriller +144386,The Underdog Knight (2008),Action|Comedy +144388,When Night Falls (2007),Horror|Thriller +144390,Turning Point (2009),Action|Children|Crime|Drama|Thriller +144392,Underdog Knight 2 (2011),Action +144394,Tung Moon (2009),Action|Crime|Thriller +144396,Undercover (2007),Action|Crime|Thriller +144398,Hwayi: A Monster Boy (2013),Action|Thriller +144400,Dragon Squad (2005),Action|Crime +144402,For the Emperor (2014),Action|Crime|Thriller +144404,Fists of Legend (2013),Action|Drama +144406,The Daisy Chain (2008),Thriller +144408,Firestorm (2013),Action|Crime +144410,Lucky Luke (1991),Comedy|Western +144412,Hidden (2009),Horror|Thriller +144414,Seven Days (2007),Crime +144416,Solstice (2008),Drama|Horror|Thriller +144418,Table for Three (2009),Comedy|Romance +144420,Headhunter (2009),Thriller +144422,Kundo: Age of the Rampant (2014),Action|Drama +144424,Straight A's (2013),Comedy|Drama +144426,Clockstoppers (2002),Adventure|Children|Sci-Fi|Thriller +144428,Secret (2009),Crime|Thriller +144430,Crying Fist (2005),Drama +144432,Hindsight (2011),Action|Crime|Romance +144434,Bunshinsaba: Ouija Board (2004),Horror +144436,House of Fury (2005),Action|Comedy +144438,The Bullet Vanishes (2012),Action|Mystery +144440,Deranged (2012),Thriller +144442,Private Eye (2009),(no genres listed) +144444,Midnight FM (2010),Crime|Mystery|Thriller +144450,An Inspector Calls (2015),Action|Comedy +144452,Golden Chickensss (2014),Comedy|Drama +144456,"All's Well, Ends Well 2012 (2012)",Comedy|Romance +144458,"All's Well, Ends Well 2011 (2011)",Comedy +144460,The Founding of a Republic (2009),Drama +144464,Paradise Found (2003),Drama +144466,Deadly Virtues: Love.Honour.Obey. (2014),Drama|Horror|Thriller +144468,Faith of My Fathers (2005),Documentary|Drama +144470,The Devil's Path (2013),Thriller +144472,Crows Explode (2014),Action|Drama +144474,Control (2013),Thriller +144476,Amarilly of Clothes-Line Alley (1918),Drama|Romance +144478,"Sex, Drugs & Taxation (2013)",Comedy|Drama +144480,Santa Claws (2014),Children|Fantasy +144482,Circle (2015),Drama|Horror|Sci-Fi +144484,No. 2 (2006),Comedy|Drama +144486,Operation 'Happy New Year'! (1996),Comedy +144488,Yoga (2009),Horror +144490,The Cat (2011),Mystery +144492,R2B: Return to Base (2012),Action|Drama|Romance +144494,Mourning Grave (2014),Comedy|Horror|Romance|Thriller +144496,Cruel Winter Blues (2006),Crime|Drama +144498,Coming Soon (2008),Horror|Thriller +144500,Haunters (2010),Sci-Fi|Thriller +144502,Death Bell (2008),Horror|Thriller +144504,The Client (2011),Drama|Thriller +144506,Kamui (2009),Action|Drama +144508,Legendary Assassin (2008),Action|Adventure +144510,Broken (2014),Drama|Mystery|Thriller +144512,The Ghost (2004),Horror|Thriller +144514,Quick (2011),Action|Comedy|Thriller +144516,The Brain Man (2013),Mystery +144518,Runaway (2005),Drama|Thriller +144520,Nightfall (2012),Action|Crime|Thriller +144522,Sky High (2003),Action|Horror|Thriller +144524,Montage (2013),Crime|Mystery|Thriller +144526,The Doll Master (2004),Horror +144528,Fakta Ladh Mhana,(no genres listed) +144530,Overheard (2009),Drama|Thriller +144532,Cold Eyes (2013),Action|Crime +144534,Blood Rain (2005),Thriller +144536,Guns & Talks (2001),Action|Comedy +144538,Cold War (2012),Action|Thriller +144540,The Dead Zone (2002),Drama|Sci-Fi|Thriller +144542,Life Without Principle (2011),Action|Crime|Thriller +144544,Platinum Data (2013),Drama|Mystery +144546,Run-ning-maen (2013),Action|Comedy|Thriller +144548,Comeback Season (2006),Children|Comedy|Romance +144550,Howling (2012),Mystery|Thriller +144552,Punished (2011),Action|Crime|Thriller +144554,Bloody Tie (2006),Action|Crime|Drama|Thriller +144556,Helpless (2012),Horror|Mystery +144558,"The Butcher, the Chef, and the Swordsman (2010)",Action|Comedy +144560,Familiar Strangers (2008),Comedy|Drama +144562,Open City (2008),Action|Drama|Thriller +144564,King of Triads (2010),Action|Thriller +144566,Man Of Vendetta (2010),Crime|Drama|Thriller +144568,Killer Toon (2013),Horror|Thriller +144570,Kung Fu Chefs (2009),Action|Comedy +144572,Don't Click (2012),Crime|Horror|Mystery +144574,Gallants (2010),Action|Comedy +144576,Seoul Raiders (2005),Action|Comedy|Drama|Thriller +144578,Motorway (2012),Action|Crime +144580,"Secretly, Greatly (2013)",Action|Comedy|Drama +144582,Divergence (2005),Action|Thriller +144584,Murderer (2009),Crime|Drama|Mystery|Thriller +144586,Parallel Life (2010),Action|Drama|Mystery|Thriller +144588,Days of Wrath (2013),Drama|Thriller +144590,Overheard 2 (2011),Action|Drama|Thriller +144592,Overheard 3 (2014),Action|Crime|Mystery|Thriller +144594,Silver Medalist (2009),Action|Adventure|Comedy|Drama +144596,Eye For An Eye (2008),Action|Drama|Thriller +144598,Black Ransom (2010),Action|Thriller +144600,Brave Hearts: Umizaru (2012),Action|Drama +144602,Heaven's Soldiers (2005),(no genres listed) +144604,Running Out of Time 2 (2001),Action|Crime|Thriller +144606,Confessions of a Dangerous Mind (2002),Comedy|Crime|Drama|Romance|Thriller +144608,Double Tap (2000),Action|Crime|Thriller +144610,Spy girl (2004),Action|Comedy|Romance +144612,Blind Detective (2013),Comedy|Crime|Drama +144614,Meadowland (2015),Drama +144616,Watchers of the Sky (2014),Documentary +144618,All Things Must Pass: The Rise and Fall of Tower Records (2015),Documentary +144620,Goosebumps (2015),Adventure|Comedy|Horror +144622,"Ballerina's Tale, A (2015)",Documentary +144624,Truth (2015),Horror|Sci-Fi|Thriller +144626,Northern Limit Line (2015),Drama|War +144628,Seeds of Time (2015),Documentary +144630,Sunset Edge (2015),(no genres listed) +144632,Back In Time (2015),Documentary +144634,"Girl King, The (2015)",Drama +144636,Creative Control (2015),Drama|Sci-Fi +144640,Genome Hazard (2014),Drama|Thriller +144642,Gangster High (2006),Action|Crime +144644,The Deal (2015),Crime|Thriller +144646,Zombie Ninjas vs Black Ops (2015),Action|Horror +144648,The Strongest Man (2015),Comedy +144650,The Wicked Within (2015),Horror +144652,Hi-De-Ho (1947),(no genres listed) +144654,The Christmas Candle (2013),Drama +144656,The Measure of a Man (2015),Drama +144658,A Month of Sundays (2015),Comedy +144660,Gloria (2014),Drama +144662,Marius (2013),Drama +144664,Ostwind (2013),Adventure|Children +144666,Blondie Has Servant Trouble (1940),Comedy +144668,Algorithm (2014),Crime|Drama|Thriller +144670,Freedom Riders (2010),Documentary +144672,Lifepod (1993),Mystery|Sci-Fi|Thriller +144674,My Grandpa the Bankrobber (2011),(no genres listed) +144676,Wither (2013),Horror +144678,No Place on Earth (2012),Documentary|War +144680,Rita's Last Fairy Tale (2012),(no genres listed) +144682,The Floorwalker (1916),Comedy +144684,Dharam Sankat Mein (2015),(no genres listed) +144686,Chupke Chupke (1975),Comedy +144688,I (2015),Action|Fantasy|Romance|Thriller +144690,The Vagabond (1916),Comedy +144692,Gunhed (1989),Action|Sci-Fi +144694,The Count (1916),Comedy +144696,The Pawnshop (1916),Comedy +144698,Miss You Already (2015),Comedy|Drama|Romance +144700,The Cokeville Miracle (2015),Children|Drama|Mystery|Thriller +144702,Tales From the Dark 2 (2013),Horror +144704,Now & Later (2009),Drama +144706,The Witches of Oz (2011),Action|Drama|Fantasy +144708,Dark Summer (2015),Horror|Thriller +144710,The Shift (2009),Documentary|Drama +144712,Unity (2015),Documentary +144714,The Perfect Guy (2015),Drama|Thriller +144716,Rock the Kasbah (2015),Comedy +144718,The Mafu Cage (1978),Horror|Thriller +144720,Whiskey School (2005),(no genres listed) +144722,Lost Junction (2003),Drama|Romance|Thriller +144724,Night Game (1989),Crime|Drama|Thriller +144726,Man Crazy,(no genres listed) +144728,Edge of Fury (1958),Thriller +144730,Cry of Battle (1963),Action|Adventure|Drama|War +144732,The Birthday (2004),(no genres listed) +144734,Freaks of Nature (2015),Comedy|Horror|Sci-Fi +144736,unINDIAN (2015),Comedy|Romance +144738,The Treasure (2015),Comedy +144740,Sighs of Spain (1939),(no genres listed) +144742,Milton Glaser: To Inform & Delight (2008),(no genres listed) +144744,Housekeeping (2015),Thriller +144746,Gravy (2015),Comedy|Horror +144748,Inside (2012),Horror +144750,The Professor and His Beloved Equation (2006),Children|Drama|Romance +144752,Bikini Model Academy (2015),Comedy +144754,Badge of Honor (2015),Crime|Drama|Thriller +144756,The Curse of Downers Grove (2015),Drama|Horror|Mystery|Thriller +144758,Freetown (2015),Action|Drama|Thriller +144760,Momentum (2015),Action|Thriller +144762,Tales of Halloween (2015),Horror +144764,Death Valley (2015),Crime|Drama|Mystery +144766,Cyclone (1978),Horror +144768,Midnight Blue (1979),Drama|Thriller +144770,Summer Time Machine Blues (2005),Comedy +144772,The Ball at the Anjo House (1947),(no genres listed) +144774,The Day the '60s Died (2015),Documentary +144776,"Alfie, the Little Werewolf (2011)",Children +144778,Wolf Lake (1980),Thriller +144780,Close-Up (1948),Drama|Thriller +144782,The Diabolical (2015),Horror|Sci-Fi|Thriller +144784,Aferim! (2015),Drama +144786,House of Boys (2009),Drama|Romance +144788,The Soldier and the Lady (1937),Adventure|Romance|War +144790,A Time For Dying (1969),Western +144792,The Magnificent Matador (1955),Drama|Romance +144796,Wings of the Hawk (1953),Western +144798,Seminole (1953),Action +144800,City Beneath the Sea (1953),Action|Adventure +144802,Horizons West (1952),Western +144804,Red Ball Express (1952),(no genres listed) +144806,Bronco Buster (1952),Western +144808,Killer Shark (1950),Adventure +144810,Black Midnight (1949),Drama|Western +144812,Behind Locked Doors (1948),Crime|Drama|Horror +144814,Assigned to Danger (1948),Crime|Drama +144816,The Missing Juror (1944),Mystery +144818,Submarine Raider (1942),Drama|War +144820,My Love Came Back (1940),(no genres listed) +144822,The Woman Men Yearn For (1929),Drama +144826,Der Rebell (1933),(no genres listed) +144828,The Tunnel (1933),Sci-Fi +144830,The Tunnel (1933),(no genres listed) +144832,The Beloved Vagabond (1936),(no genres listed) +144834,Carrefour (1938),Drama +144836,Lady with Red Hair (1940),Drama +144838,Million Dollar Baby (1941),Comedy|Romance +144842,The Blue Veil (1951),Drama +144844,Gaby (1956),Drama +144846,Damon and Pythias (1962),(no genres listed) +144848,War Story (2014),Drama +144850,Immorality (1978),Drama|Thriller +144852,Could It Happen Here? (1977),Crime +144858,God's Angry Man (1980),Documentary +144860,Fred Rogers: America's Favorite Neighbor (2004),Children|Documentary +144862,Behind The Rising Sun (1943),Drama|War +144864,Underground (1941),Adventure|Drama|Romance|War +144866,Pillow to Post (1945),Comedy +144868,Janie Gets Married (1946),Comedy +144870,Lone Star (1952),Action|Adventure|Western +144874,Ice Palace (1960),Adventure|Drama +144876,Cervantes (1967),Adventure +144880,Taste of Vengeance (1969),Western +144882,I 7 di Marsa Matruh (1970),(no genres listed) +144884,Alleluja & Sartana Are Sons... Sons of God (1972),(no genres listed) +144886,A Virgin in the Family (1975),Drama +144888,Skin 'em Alive (1978),(no genres listed) +144890,Rolf (1984),Action +144894,They Found Hell (2015),Horror +144896,"Anna: the Pleasure, the Torment (1973)",Drama +144898,Glamour Boy (1941),Comedy|Drama +144902,Under the Gun (1951),Crime|Drama|Film-Noir|Thriller +144906,The Young Land (1959),Action|Drama +144910,1944 (2015),Drama|War +144912,Double Bang (2001),(no genres listed) +144914,Zombie Massacre 2: Reich of the Dead (2015),Horror|War +144916,Taking Chances (2011),(no genres listed) +144918,Pope John Paul II (2005),Drama +144920,Hide Away (2012),Drama|Romance +144922,Massacre in Rome (1973),Drama|War +144924,Nymph (2009),Drama|Sci-Fi +144926,Sex Pot (2009),Comedy +144928,El Analfabeto (1961),Comedy +144930,El Bolero de Raquel (1957),Comedy +144932,Official Rejection (2009),Comedy|Documentary +144934,Go Goa Gone (2013),Comedy|Horror +144936,The Wannabes (2003),Comedy +144938,Money for Nothing: Inside the Federal Reserve (2013),Documentary +144940,The Vultures (1984),Action|Comedy|Drama|Thriller +144942,Forest of the Damned (2005),Horror +144950,Aanmodderfakker (2014),Comedy +144952,The Collectors (1999),(no genres listed) +144956,9/11: The Falling Man (2006),Documentary +144958,Škola princů (2010),Children +144960,Pünktchen und Anton (1953),Drama +144962,Phantom Boy (2015),Adventure|Animation|Children +144964,Les Cowboys (2015),Drama +144966,Alive (2006),Drama|Fantasy|Mystery +144968,Master and Tatyana (2015),Documentary|Drama +144970,The Best of Men (2012),Drama +144972,The Sixth Side of the Pentagon (1968),Documentary +144974,Eclipse (1999),Documentary +144976,Bone Tomahawk (2015),Horror|Western +144978,Paul and Michelle (1974),Drama|Romance +144980,Friends (1971),Drama|Romance +144982,Paranormal Activity: The Ghost Dimension (2015),Horror|Thriller +144984,Pyaar Ka Punchnama 2 (2015),Comedy|Drama|Romance +144986,A Chinese Ghost Story (2011),Fantasy|Sci-Fi +144988,Imagination (2008),Drama|Fantasy|Sci-Fi +144990,The Edge of Dreaming (2010),(no genres listed) +144992,The Chinese Botanist's Daughters (2006),Drama +144994,The Secret Life of Plants (1979),Documentary +144998,Rebels in Canada (1965),(no genres listed) +145004,When the Screaming Stops (1974),Horror +145006,Demon Witch Child (1975),(no genres listed) +145008,Night of the Sorcerers (1974),Horror +145010,Night of the Seagulls (1975),Horror +145012,The Sea Serpent (1984),Horror|Sci-Fi +145014,The House That Screamed (1969),Horror|Thriller +145016,Hunchback of the Morgue (1973),Horror +145020,Tiki Tiki (1971),Adventure|Animation|Comedy +145022,Blinky Bill the Movie (2015),Animation +145024,N: The Madness Of Reason (2014),Documentary +145026,A Nightingale Falling (2014),Drama|War +145028,Jem and the Holograms (2015),Adventure|Comedy|Drama|Fantasy +145030,The 33 (2015),Drama +145032,Blood of My Blood (2015),Drama +145034,Journey to the Shore (2015),Drama|Fantasy|Romance +145036,Patrick's Day (2014),(no genres listed) +145038,Devotion (2003),Drama +145040,Self Made (2014),(no genres listed) +145042,The Genius Club (2006),Thriller +145044,Peak: The Rescuers (2011),Drama +145046,Railways (2010),Drama +145048,The Watermen (2011),Horror|Thriller +145050,SuckSeed (2011),Comedy +145052,"Ao, The Last Neanderthal (2010)",Adventure +145054,Homeland (2014),Drama +145056,Ghost Shark (2013),Horror|Sci-Fi +145058,Pee Mak Phrakanong (2013),Comedy|Romance +145060,Tales From the Dark 1 (2013),Horror +145062,Le Rossignol (2005),Fantasy +145064,Suburra (2015),Crime|Drama +145066,Amy Schumer: Live at the Apollo (2015),Comedy +145070,They Look Like People (2015),Horror|Mystery|Thriller +145072,The Christmas Card (2006),Drama|Romance +145074,Big Bird in China (1983),(no genres listed) +145076,'68 (1988),(no genres listed) +145078,Revelation (2002),Fantasy|Horror|Sci-Fi +145080,Extraordinary Tales (2015),Animation|Horror|Mystery +145082,The Snow Queen 2: Refreeze (2014),Adventure|Animation|Children|Fantasy +145084,Colt 45 (2014),Action|Crime|Drama|Thriller +145086,Just the Vampire Hunter (2012),Action|Horror +145088,SuperBob (2015),Action|Comedy|Romance +145090,David (1997),Children +145092,Word of Honor (2003),Drama|Thriller +145094,Howl (2015),Horror +145096,Barbie & Her Sisters in the Great Puppy Adventure (2015),Animation +145098,Varian's War (2001),Drama +145100,If Tomorrow Comes (1986),Crime|Drama|Mystery +145102,From Mexico With Love (2009),Action|Drama +145104,Cenizas Eternas (2011),Drama +145106,Liz en Septiembre (2014),(no genres listed) +145108,Losing Ground (1982),(no genres listed) +145110,Looking for Langston (1989),Drama +145112,Fireworks (1947),Drama +145114,Pedro (2008),Drama +145116,Hard (1998),Thriller +145118,Sugar Coated (2015),(no genres listed) +145120,Monopol (1996),Comedy +145122,Silsile (2014),(no genres listed) +145124,Bir Avuç Deniz (2011),(no genres listed) +145126,Gecenin Kanatları (2009),Crime|Drama|Romance +145130,Benim Dünyam (2013),Drama +145132,The Butterfly's Dream (2013),Drama +145136,Danger Beneath the Sea (2001),Action|Thriller +145138,Rough Air: Danger on Flight 534 (2001),Drama +145140,Fathers and Daughters (2015),Drama +145142,Curve (2015),Horror|Thriller +145144,Night At The Golden Eagle (2002),Action|Adventure|Crime|Drama +145146,K-9: P.I. (2002),Action|Adventure|Comedy|Crime +145148,K-9000 (1991),(no genres listed) +145150,The Dressmaker (2015),Comedy|Drama|Thriller +145152,Framed for Murder (2007),Mystery|Thriller +145154,Stranger at the Door (2004),(no genres listed) +145156,The Perfect Husband (2004),(no genres listed) +145158,Sharpshooter (2008),Action|Thriller +145160,Half Past Dead 2 (2007),Action|Crime +145162,Ripper: Letter from Hell (2001),Horror +145164,Ants (1977),Drama|Horror|Thriller +145168,Lonesome Ghosts (1937),Animation|Comedy +145170,The Big Bad Wolf (1934),Animation +145172,Gulliver Mickey (1934),Animation|Children|Fantasy +145174,Ye Olden Days (1933),Animation +145176,Mickey's Good Deed (1932),Animation|Children +145178,Babes in the Woods (1932),Animation +145180,Flowers and Trees (1932),Animation +145182,Mickey's Orphans (1931),Animation +145184,Three Little Wolves (1936),Animation +145186,Little Hiawatha (1937),Animation +145188,Magician Mickey (1937),Animation +145190,Three Blind Mouseketeers (1936),Animation|Children +145192,Alpine Climbers (1936),Animation +145194,Thru the Mirror (1936),Animation +145196,Mickey's Polo Team (1936),Animation +145198,Three Orphan Kittens (1935),Animation +145200,Pluto's Judgement Day (1935),Animation +145202,Who Killed Cock Robin? (1935),Animation +145204,The Flying Mouse (1934),Animation +145206,The Mad Doctor (1933),Animation +145208,Building a Building (1933),Animation +145212,The Forgotten Ones (2008),Drama|Horror +145216,Arena (1953),Drama +145218,Balto III: Wings of Change (2004),Adventure|Animation|Children +145220,Bear (2010),Action|Horror|Thriller +145222,Bedlam (2015),Thriller +145224,Bigfoot (2008),Children +145226,Bigfoot (1970),Children|Horror|Sci-Fi|Thriller +145228,Bigfoot (2006),Horror +145230,Crescendo (1970),Horror|Thriller +145232,Million Dollar Crocodile (2012),Crime|Drama|Horror|Thriller +145235,Deep in the Darkness (2014),Horror|Thriller +145237,Dracula versus Frankenstein (1970),Horror|Sci-Fi +145240,Dysfunctional Friends (2012),Comedy|Romance +145242,Films of Fury: The Kung Fu Movie Movie (2011),Documentary +145244,Fist of Fury 2 (1977),Action +145246,Fist of Fury 1991 (1991),Action|Comedy +145250,Fist of Fury 3 (1979),Action|Drama +145252,The Big Boss Part II (1976),Action +145255,Shaolin Martial Arts (1974),Action +145260,Gingerclown (2013),Comedy|Horror +145262,Girl Rush (1944),Comedy|Western +145264,Give Us This Day (1949),Drama +145269,Holiday for Sinners (1952),Drama +145275,Live Wires (1946),Action|Thriller +145277,Mommy (1995),Horror +145279,Monster Dog (1984),Horror +145281,Needle (2010),Horror|Mystery|Thriller +145283,Nowitzki: The Perfect Shot (2014),Documentary +145285,Octopus (2000),Action|Horror|Thriller +145290,Over the Edge (2012),Mystery|Thriller +145296,Robin Hood of El Dorado (1936),Action|Romance +145299,Safelight (2015),Drama +145301,Scar Tissue (2014),Thriller +145303,Sci-fighters (1996),Action|Sci-Fi|Thriller +145307,Strictly Business (1991),Comedy|Romance +145309,The Battle at Apache Pass (1952),Action|Western +145312,The Chinese Boxer (1970),Action +145315,False Witness (2009),Action|Crime|Drama|Mystery|Thriller +145317,The Family Secret (1951),Crime|Drama +145320,The Sound and the Fury (2014),(no genres listed) +145322,The Trail of '98 (1928),(no genres listed) +145324,Twice Upon a Time (2006),Comedy +145326,Uncertain Glory (1944),Drama +145330,Unidentified (2006),Sci-Fi +145333,Where the Spies Are (1966),Action|Thriller +145335,Why Horror? (2014),Documentary +145340,Now Add Honey (2014),Comedy +145342,Yearning (1964),Drama +145344,Balibo (2009),Drama|Mystery|Thriller +145346,Joshua (1976),Drama|Thriller +145348,Phenomenal and the Treasure of Tutankamen (1968),Sci-Fi +145350,Dial: Help (1988),Horror +145352,"Gungala, The Black Panther Girl (1968)",Adventure +145356,Vacation on the Esmeralda Coast (1968),Comedy +145358,Zenabel (1969),Adventure|Comedy +145360,Body Count (1987),Horror +145362,Waves of Lust (1975),Drama +145364,The Concorde Affair (1979),Action|Crime|Thriller +145366,The Lone Runner (1986),(no genres listed) +145370,The Crow's Nest (2014),(no genres listed) +145372,Berkshire County (2014),Horror|Thriller +145374,Johan Falk: De 107 patrioterna (2012),Action|Crime|Thriller +145376,Inugami (2001),Horror|Romance|Thriller +145378,Sightings: Heartland Ghost (2002),Horror|Thriller +145380,Tides of War (2005),Action|Adventure|Drama +145382,The Triangle (2001),Thriller +145384,The Absent One (2014),Crime|Thriller +145386,Scarewaves (2014),Horror +145388,Forever (2015),Drama|Romance|Thriller +145390,Artificial Paradises (2012),Drama +145392,"Secrets, Objects (2011)",(no genres listed) +145394,I vampiri (1957),Horror +145396,Erik the Conqueror (1961),Action|Adventure +145398,Four Times That Night (1972),Comedy +145400,The House of Exorcism (1975),Horror +145402,Knives of the Avenger (1966),Action|Adventure +145404,Gunman Called Nebraska (1966),Western +145406,The Road to Fort Alamo (1964),Western +145408,Identikit (1974),Drama +145410,The Trap (1985),Drama +145412,Tis Pity She's a Whore (1971),Drama|Romance +145414,One Night at Dinner (1969),Drama +145416,The Divine Nymph (1979),(no genres listed) +145418,Trumbo (2015),Drama +145420,An Angel for Satan (1966),Horror|Mystery +145422,Crypt of the Vampire (1964),Horror +145424,Panic Button (1964),(no genres listed) +145426,Two Sons of Ringo (1967),Comedy +145428,The Moment to Kill (1968),Western +145430,Find a Place to Die (1968),Action +145432,Deep West (1971),Western +145434,A Bullet for a Stranger (1971),Western +145436,His Name Was Holy Ghost (1972),(no genres listed) +145438,The Return of Halleluja (1972),(no genres listed) +145440,"Holy God, Here Comes the Passatore! (1973)",(no genres listed) +145442,In the West There Was a Man Named Invincible (1973),Comedy|Western +145444,The Crazy Bunch (1974),Comedy|Western +145446,Poker In Bed (1974),Comedy +145448,Simone e Matteo: un gioco da ragazzi (1975),Comedy +145450,Il vangelo secondo Simone e Matteo (1976),(no genres listed) +145452,L'Insegnante Balla… Con Tutta La Classe (1979),Comedy +145454,Prestami tua moglie (1980),Comedy +145456,Rat Man (1988),Horror +145462,My Wife Goes Back to School (1981),Comedy +145464,Pierino medico della SAUB (1981),Comedy +145466,Exterminators of the Year 3000 (1983),Action|Sci-Fi +145468,All Hallows' Eve (2013),Horror +145470,Great Transport (1983),War +145472,Nightkill (1980),(no genres listed) +145474,City on Fire (1979),Action|Drama +145476,The Greek Tycoon (1978),Drama +145478,Three Dangerous Ladies (1977),Fantasy|Horror +145482,The Comedy Man (1964),Drama +145484,Hell Boats (1970),Drama|War +145487,Haze (2005),Horror +145489,Billboard Dad (1998),Children|Comedy|Romance +145491,Our Lips Are Sealed (2000),Children|Comedy|Drama +145493,The Challenge (2003),Action|Adventure|Children|Comedy|Sci-Fi +145496,Delhi Safari (2012),Animation|Children|Comedy +145498,Matrubhoomi (2003),Drama +145500,Yolngu Boy (2001),Drama +145502,The Land of Smiles (2015),Documentary +145504,Foodies (2014),Documentary +145506,24 Days (2014),Drama|Thriller +145508,Ghosts of Ole Miss (2012),Documentary +145510,Nature's Grave (2009),Drama|Horror|Thriller +145512,Hollywood Hong Kong (2001),Drama +145514,Marguerite (2015),Drama +145518,Rubberneck (2013),Thriller +145520,Lake Placid 2 (2007),Horror|Sci-Fi +145522,Lake Placid 3 (2010),Action|Horror|Sci-Fi|Thriller +145524,Lake Placid: The Final Chapter (2012),Action|Horror|Sci-Fi|Thriller +145532,Getting Away with It the Italian Way (1962),Comedy +145534,I due della legione (1962),Comedy +145538,The Strange Type (1963),Comedy +145546,Oh! Those Most Secret Agents (1964),Comedy +145548,Two Public Enemies (1964),(no genres listed) +145554,The Two Parachutists (1965),Comedy +145556,Come svaligiammo la banca d'Italia (1966),Comedy|Crime +145558,Massacre Time (1966),Western +145562,"The Tall, the Short, the Cat (1967)",(no genres listed) +145564,Operation St. Peter's (1967),Comedy|Crime +145566,The Eroticist (1972),Comedy +145568,Challenge to White Fang (1974),Adventure|Western +145570,The Devil's Honey (1986),Thriller +145572,Aenigma (1987),Horror +145574,Sodoma's Ghost (1988),Horror +145576,Murder-Rock: Dancing Death (1984),Thriller +145578,Touch of Death (1988),Comedy|Horror +145580,"The Demonic Womanizer Costante Nicosia, or: Dracula in Brianza (1975)",Comedy +145582,My Sister in Law (1976),Comedy +145584,The Psychic (1977),Horror|Thriller +145586,They Died with Their Boots On (1978),Action|Western +145590,Demonia (1990),Horror +145592,Voices from Beyond (1991),Drama|Horror|Mystery +145596,Kabukicho Love Hotel (2015),Comedy|Drama +145598,My Man (2014),Crime|Drama|Romance +145600,Night Slaves (1970),Horror|Sci-Fi +145602,La buca (2014),Comedy +145604,Soldier of God (2005),Drama +145606,Lovemilla (2015),Comedy|Romance|Sci-Fi +145610,"Teodora, Slave Empress (1954)",Adventure|Drama|Romance +145612,Castle of the Banned Lovers (1956),(no genres listed) +145614,Agi Murad il diavolo bianco (1959),Action|Adventure +145616,The Giants of Thessaly (1960),Adventure +145620,Samson and the Seven Miracles of the World (1961),(no genres listed) +145624,The Witch's Curse (1962),Adventure|Fantasy +145626,Gold for the Caesars (1963),Action|Adventure +145636,Double Face (1969),Crime +145638,Les Misérables (1948),(no genres listed) +145640,Aquila Nera (1946),(no genres listed) +145648,Il cavaliere misterioso (1948),(no genres listed) +145650,Roger la Honte,(no genres listed) +145656,Ring of Darkness (1979),Horror +145660,Crazy Desires of a Murderer (1977),Horror +145664,Operation White Shark (1966),Action|Adventure|Crime|Thriller +145666,Pensione Paura (1977),Drama|Horror|Mystery +145668,Django Kills Softly (1967),Western +145670,Lady Morgan's Vengeance (1965),Horror +145672,Terror-Creatures from the Grave (1965),Horror|Mystery +145674,Seven Vengeful Women (1966),Western +145676,3 Avengers (1964),(no genres listed) +145680,Left Handed Johnny West (1965),Western +145682,This Time I'll Make You Rich (1974),Action|Adventure|Crime +145686,The Bloodstained Lawn (1973),(no genres listed) +145690,Libido (1965),Crime|Drama|Thriller +145694,Love and Death in the Garden of the Gods (1972),Drama|Mystery +145696,Lust (1979),Horror|Sci-Fi +145698,Baby Love (1979),(no genres listed) +145700,The Day the Sky Exploded (1958),Action|Sci-Fi +145702,Werewolf in a Girl's Dormitory (1961),Horror|Mystery +145704,Una vita violenta (1962),(no genres listed) +145706,Che fine ha fatto Totò Baby? (1964),Comedy +145712,Bali (1970),Drama|Romance +145714,Bloody Che Contra (1968),(no genres listed) +145718,Giallo in Venice (1979),(no genres listed) +145720,Batton Story (1976),(no genres listed) +145722,Cold & Dark (2005),Action|Crime|Horror|Thriller +145724,Idaho Transfer (1973),Sci-Fi +145726,Death Game (1977),Drama|Thriller +145728,Divorce Corp. (2014),Documentary +145731,War of the Buttons (2011),Adventure|Children +145733,(The New) War of the Buttons (2011),Adventure|Children +145735,Killer Crush (2015),(no genres listed) +145737,Reluctant Witness (2015),Drama +145739,I Believe in Unicorns (2014),Drama +145741,Letters from the Big Man (2011),Drama +145743,Paul McCartney Really Is Dead: The Last Testament of George Harrison (2010),Documentary +145745,Witch Hunt (1999),Crime|Drama +145747,Five Thirteen (2013),Crime|Drama +145749,The Grief of Others (2015),(no genres listed) +145751,Huie's Sermon (1983),Documentary +145753,Wodaabe: Herdsmen of the Sun (1989),Documentary +145755,The Dark Glow of the Mountain (1985),Documentary +145759,American Warships (2012),Action|Sci-Fi|Thriller +145761,Cruel & Unusual (2014),Sci-Fi|Thriller +145763,"Il ricco, il povero e il maggiordomo (2014)",Comedy +145765,Elephant (1989),Crime +145769,Halloween with the New Addams Family (1977),Comedy|Horror +145771,Treevenge (2008),Comedy|Horror +145773,Wolf Warrior (2015),Action|Adventure|War +145775,Rubble Kings (2015),Documentary +145779,White Apache (1987),(no genres listed) +145781,"Scalps, Venganza India (1987)",Action|Drama|Western +145783,The Seven Magnificent Gladiators (1983),Adventure|Drama|Fantasy +145785,Women's Prison Massacre (1983),Drama|Thriller +145787,Rats: Night of Terror (1984),Horror|Sci-Fi +145789,Strike Commando (1987),Action +145793,Robowar (1988),Action|Sci-Fi +145797,Strike Commando 2 (1988),Action +145799,Shocking Dark (1990),Action|Sci-Fi +145805,Madness (1994),(no genres listed) +145809,Cruel Jaws (1995),(no genres listed) +145811,Privè (2002),(no genres listed) +145813,Capriccio veneziano (2002),(no genres listed) +145815,Belle da morire (2002),(no genres listed) +145817,Zombies: The Beginning (2007),(no genres listed) +145823,Land of Death (2004),Action|Horror|Thriller +145825,Caligula Reincarnated As Nero (1982),(no genres listed) +145827,Libidomania (1979),(no genres listed) +145829,The True Story of the Nun of Monza (1980),(no genres listed) +145831,The Other Hell (1981),Horror|Mystery +145835,Cousin ... my love! (1976),(no genres listed) +145837,Caligula and Messalina (1981),Romance +145839,Concussion (2015),Drama +145841,The Vampire and the Ballerina (1960),Horror +145843,The Monster of the Opera (1964),Horror +145849,The Sheriff Won't Shoot (1965),Western +145851,Mondo pazzo... gente matta! (1966),(no genres listed) +145855,Mania (1974),(no genres listed) +145857,The Phoenix Incident (2015),Horror|Sci-Fi|Thriller +145859,Wam Bam Thank You Spaceman (1975),Comedy|Sci-Fi +145861,Committed (1991),(no genres listed) +145863,Montana Trap (1976),(no genres listed) +145865,Paper Tiger (1975),Adventure|Drama +145869,Le franciscain de Bourges (1968),Comedy|Drama +145871,The Grasshopper (1967),Comedy|Romance +145873,Der Rest ist Schweigen (1959),(no genres listed) +145875,Bachelor of Hearts (1958),(no genres listed) +145881,Blind Date (1959),Crime|Drama|Mystery|Thriller +145885,Les quatre vérités (1962),(no genres listed) +145889,The Unhibited (1965),(no genres listed) +145893,Special Section (1975),Drama|War +145895,The Dominici Affair (1973),Crime|Drama +145897,Otley (1968),Action +145899,A Severed Head (1970),Comedy +145901,Bullshot (1983),Adventure|Comedy +145903,To Catch a Spy (1971),(no genres listed) +145905,To Russia... With Elton (1979),Documentary +145909,Hilda Crane (1956),(no genres listed) +145911,The View from Pompey's Head (1955),Drama +145913,Prince of Players (1955),Drama +145915,The Exorcism of Molly Hartley (2015),Horror +145917,Seven Days Somewhere Else (1969),Drama +145919,Camarades (1970),Drama +145921,United Passions (2015),Drama +145923,Terror (1981),Horror +145925,Detective K: Secret of the Virtuous Widow (2011),Action|Comedy|Crime|Mystery +145927,Bronco Bullfrog (1969),Drama +145929,Killer Tattoo (2001),Action|Comedy +145931,Yaji and Kita: The Midnight Pilgrims (2005),Action|Comedy +145933,Young Policemen in Love (1995),(no genres listed) +145935,"Peanuts Movie, The (2015)",Adventure|Animation|Children|Comedy +145937,Varsham (2014),Drama +145939,Sandesham (1991),Children|Comedy +145941,Making a Living (1914),Comedy +145943,The Lies of the Victors (2015),Thriller +145947,An Autumn's Tale (1987),Drama|Romance +145949,Just Once More (1962),Drama +145951,Bloodsport: The Dark Kumite (1999),Action|Thriller +145953,King of the Gypsies (1978),Drama +145955,The Haunting of Whaley House (2012),Horror +145958,Am I Beautiful? (1998),Comedy +145960,Skinwalker Ranch (2013),Horror|Sci-Fi|Thriller +145962,"Devil's Needle, The (1916)",Drama +145964,Children of Eve (1915),Drama +145966,Jack Frusciante è uscito dal gruppo (1996),(no genres listed) +145968,Song 'e napule (2013),(no genres listed) +145972,Everything You Want (2005),Comedy|Drama|Romance +145974,The Sun King (2005),Comedy|Drama +145976,Living It Up (1954),Comedy +145978,Batkid Begins (2015),Children|Documentary +145980,Cover Up (1949),Crime|Mystery|Thriller +145984,Hellmouth (2014),(no genres listed) +145988,Lidice (2011),Drama|War +145992,The House That Swift Built (1982),Comedy|Drama|Fantasy +145994,Formula of Love (1984),Comedy +145996,Homebodies (1974),Comedy|Horror +145998,"Poor, Poor Pavel (2003)",Drama +146000,The Last Inch (1958),Adventure|Drama +146002,D'Artagnan and Three Musketeers (1979),Adventure|Comedy +146004,Antikiller (2002),Action|Crime +146006,High Rollers (1976),Comedy|Crime +146008,Cabbages and Kings (1978),Comedy +146010,Sentimentalnyy roman,(no genres listed) +146012,Little Tragedies (1980),Children|Drama +146014,Looking For Lola (1997),Comedy|Romance +146016,Elder Sister (1966),Drama|Romance +146018,The Elder Son (1975),Drama +146020,OceanWorld 3D (2009),Documentary +146022,Once Upon a Time Twenty Years Later (1981),Comedy|Drama|Romance +146024,A Man from Boulevard des Capucines (1987),Comedy|Romance|Western +146026,Beyond Innocence (1989),(no genres listed) +146028,The Adventures of Sherlock Holmes and Dr. Watson: The Hound of the Baskervilles (1981),Crime|Mystery +146030,Cinderella (1947),Children|Comedy|Fantasy|Musical|Romance +146032,The First Teacher (1965),Drama +146034,Four Winds of Heaven (1963),Drama|War +146036,31st of June (1978),Comedy|Romance +146038,Tears Were Falling (1982),Comedy|Drama|Fantasy +146040,Three Men in a Boat (1979),Comedy +146042,Closed Circuit (1978),(no genres listed) +146044,The Forty-First (1927),(no genres listed) +146046,Quartier Lointain (2010),Drama +146048,"Naval Cadets, Charge! (1987)",Adventure +146050,The Elusive Revengers (1966),Action|Adventure|Children +146052,A Nymphoid Barbarian in Dinosaur Hell (1990),Fantasy|Horror|Sci-Fi +146054,Death Valley (1982),Crime|Horror|Thriller +146056,Children... (2011),Crime|Drama|Thriller +146058,Classmates (2015),(no genres listed) +146060,Lokmanya: Ek Yug Purush (2015),Drama +146062,Sandook (2015),(no genres listed) +146064,Baji (2015),Action +146066,Lai Bhaari (2014),(no genres listed) +146068,Rege (2014),Crime|Drama|Thriller +146070,Poshter Boyz (2014),(no genres listed) +146072,Duniyadari (2014),(no genres listed) +146074,Premachi Goshta (2013),Drama|Romance +146076,Time Please (2013),Drama|Romance +146078,Zapatlela 2 (2013),Comedy|Horror +146080,Prem Mhanje Prem Mhanje Prem Asta (2013),(no genres listed) +146082,Yedyanchi Jatra,Children|Comedy|Drama +146084,Shikshanachya Aaicha Gho (2010),Comedy +146086,Kshanbhar Vishranti (2010),(no genres listed) +146088,Agadbam (2010),Comedy +146090,Zenda (2009),(no genres listed) +146092,Be Dune Saade Char (2009),(no genres listed) +146094,Gaiir (2009),(no genres listed) +146096,The Wild Bull (2008),Comedy +146098,Zabardast (2007),(no genres listed) +146100,Jatra: Hyalagaad Re Tyalagaad (2006),(no genres listed) +146102,Hee Porgi Kunachi (2006),(no genres listed) +146104,Dombivali Fast (2006),(no genres listed) +146106,Dhadakebaaz,(no genres listed) +146108,Ashi Hi Banwa Banwi (1988),(no genres listed) +146110,Padosan (1968),Drama|Romance +146112,Ittefaq,(no genres listed) +146114,Mera Naam Joker (1972),Drama|Romance +146116,Haathi Mere Saathi (1971),(no genres listed) +146118,Benaam (1974),(no genres listed) +146120,Jadu Tona (1977),Horror|Romance +146122,Baton Baton Mein (1979),Comedy|Drama|Romance +146124,Beloved Enemy (1979),Action|Horror|Mystery|Romance +146126,Khubsoorat (1980),Comedy|Romance +146128,Red Rose (1980),Drama|Horror|Thriller +146130,Saboot (1980),(no genres listed) +146132,Naram Garam (1981),Comedy +146134,Jaane Bhi Do Yaaro (1983),Comedy +146136,Masoom (1983),Children|Drama +146138,Hero (1983),Romance +146140,Rang Birangi (1983),Comedy|Drama|Romance +146142,The Old Temple (1984),Horror +146144,Khamosh (1985),Mystery|Thriller +146146,Arjun (1985),Action|Drama|Romance +146148,Chameli Ki Shaadi (1986),Comedy|Drama|Romance +146150,Anubhav (1986),(no genres listed) +146152,Karma (1986),Action|Romance +146154,Tahkhana (1986),Action|Drama|Horror +146156,Mr India (1987),Action|Adventure|Sci-Fi +146158,Tezaab (1989),Drama +146160,Maalamaal (1988),(no genres listed) +146162,Veerana (1988),Action|Drama|Horror +146164,Maine Pyar Kiya (1989),Drama|Romance +146166,Bandh Darwaza (1990),(no genres listed) +146168,Shaitani Ilaaka (1990),(no genres listed) +146170,Saajan (1991),Drama|Romance +146172,100 Days (1991),Horror|Romance|Thriller +146174,Phool Aur Kaante (1991),(no genres listed) +146176,Heart (1992),(no genres listed) +146178,Jo Jeeta Wohi Sikandar (1992),Drama +146180,Suryavanshi (1992),(no genres listed) +146182,Chamatkar (1992),Comedy|Romance +146184,Aankhen (1993),Comedy +146186,Hum Hain Rahi Pyar Ke (1993),(no genres listed) +146188,King Uncle (1993),(no genres listed) +146190,Khal Nayak (1993),Action +146192,Waqt Hamara Hai (1993),(no genres listed) +146194,The Lady in Question (1940),Action|Thriller +146196,Meet the Patels (2014),Documentary +146198,Noi e la Giulia (2015),Comedy +146200,Natale in crociera (2007),(no genres listed) +146202,"Inside of the White Slave Traffic, The (1913)",Drama +146204,A Brief Season (1969),(no genres listed) +146206,Three Men in a Boat (1975),Comedy|Drama +146208,The Ghost of Flight 401 (1978),Drama|Mystery|Thriller +146210,Blue Mountain State: The Rise of Thadland (2015),Comedy +146212,Bare (2015),Drama +146214,Septic Man (2013),Horror +146216,Suhaag (1994),(no genres listed) +146218,Krantiveer (1994),(no genres listed) +146220,Gopi Kishan (1994),(no genres listed) +146222,Baazi (1995),(no genres listed) +146224,Barsaat (1995),Drama|Romance +146226,Takkar (1995),(no genres listed) +146228,Sapoot (1996),(no genres listed) +146230,Khamoshi: The Musical (1996),Drama|Romance +146232,Loafer (1996),Action|Comedy|Drama|Romance +146234,Raja Hindustani (1996),Drama|Romance +146236,Jeet (1996),(no genres listed) +146238,Agni Sakshi (1996),Drama +146240,Ghatak: Lethal (1996),(no genres listed) +146242,Chachi 420 (1997),Comedy +146244,Dil To Pagal Hai (1997),Comedy|Drama|Romance +146246,Bhai (1997),(no genres listed) +146248,Judwaa (1997),(no genres listed) +146250,Gupt: The Hidden Truth (1997),(no genres listed) +146252,Daud (1997),Action +146254,Aflatoon (1997),Action|Crime|Drama +146256,Bade Miyan Chote Miyan (1998),(no genres listed) +146258,China Gate (1998),(no genres listed) +146260,Pyaar Kiya To Darna Kya (1998),Comedy|Romance +146262,Soldier (1999),Action|Sci-Fi +146264,Sharpe's Company (1994),Action|Adventure|War +146266,O futebol (2015),Documentary|Drama +146268,The Last House on Cemetery Lane (2015),Horror +146270,Krampus: The Reckoning (2015),(no genres listed) +146272,The Ice Dragon (2012),(no genres listed) +146275,11 Minutes (2015),(no genres listed) +146277,When the Iron Bird Flies (2012),(no genres listed) +146279,Do I Sound Gay? (2015),Documentary +146283,Delta Fox (1979),Crime|Drama +146285,Running Cool (1993),Action|Comedy|Drama +146289,Gatorbait II: Cajun Justice (1988),Action +146291,Rocktober Blood (1984),Horror +146295,'Gator Bait (1974),Action|Thriller +146297,The Single Girls (1974),Comedy|Drama|Horror +146299,"Red, White and Blue (1971)",Documentary +146301,Apenas o Fim (2008),Comedy|Romance +146303,"Jinxy Jenkins, Lucky Lou (2014)",(no genres listed) +146305,Princes and Princesses (2000),Animation|Children|Comedy|Drama|Fantasy|Romance|Sci-Fi +146307,The Hallow (2015),Horror +146309,The Boy and the Beast (2015),Action|Adventure|Animation +146311,Toilet (2010),Drama +146313,This Changes Everything (2015),Documentary +146315,I Learn America (2013),(no genres listed) +146317,Strella (2009),Drama +146323,Sharpe's Enemy (1994),Action|Adventure|War +146325,Traceless (2010),Crime|Drama|Thriller +146327,Can't Change the Meeting Place (1979),Action|Crime +146329,The Master and Margarita (2005),Drama|Mystery|Romance +146331,På palmblad och rosor (1976),Drama +146333,Eu Não Faço a Menor Ideia do que eu Tô Fazendo Com a Minha Vida (2013),(no genres listed) +146335,Sem Pena (2014),(no genres listed) +146337,Seasick (1996),Drama|Thriller +146339,The Woman Hunt (1973),Horror +146342,Stray Dog (2014),Documentary|War +146344,Elämältä kaiken sain,Comedy|Drama +146346,Dream Driven (2014),Documentary +146348,Cheap Smokes (2000),Comedy|Romance +146350,Containment (2015),(no genres listed) +146352,Lotus Eaters (2013),Drama +146354,Southwest (2012),(no genres listed) +146356,Henrietta (1983),Comedy +146358,Taal (1999),Drama|Romance +146360,Hum Saath Saath Hain (1999),Children|Romance +146362,Jaanam Samjha Karo (1999),(no genres listed) +146364,Dil Kya Kare,(no genres listed) +146366,Kaun (1999),(no genres listed) +146368,Pyaar Koi Khel Nahin (1999),(no genres listed) +146370,Hogi Pyar Ki Jeet,(no genres listed) +146372,Biwi No. 1 (1999),(no genres listed) +146374,Hello Brother (1999),Comedy|Romance +146376,Kartoos (1999),(no genres listed) +146378,Mast (1999),Drama|Fantasy|Romance +146380,Kachche Dhaage (1999),(no genres listed) +146382,Deewane (2000),(no genres listed) +146384,Dhadkan (2000),Drama|Romance +146386,Khiladi 420 (2000),(no genres listed) +146388,Kurukshetra (2000),(no genres listed) +146390,Mela (2000),(no genres listed) +146392,Refugee (2000),Drama|Romance +146394,Kya Kehna (2000),(no genres listed) +146396,Fiza (2000),Drama|Romance +146398,Bicchoo (2000),(no genres listed) +146400,Har Dil Jo Pyar Karega... (2000),(no genres listed) +146402,Pukar (2000),Action|Drama|Thriller +146404,Beti No. 1 (2000),(no genres listed) +146406,Khauff (2000),(no genres listed) +146408,Jis Desh Mein Ganga Rehta Hai (2000),(no genres listed) +146410,Hum To Mohabbat Karega (2000),(no genres listed) +146412,Badal (2000),Action +146414,Sharpe's Honour (1994),Action|Adventure +146417,A Dangerous Game (2014),Documentary +146419,Aim High In Creation (2013),Documentary +146421,Mr. Dynamite: The Rise of James Brown (2014),Documentary +146423,The Falling (2015),Drama|Thriller +146427,Hundhotellet (2000),Animation|Comedy|Mystery +146429,Monk by Blood,(no genres listed) +146431,Romanovin kivet (1993),(no genres listed) +146433,Big Love (2012),Drama|Romance|Thriller +146435,The Hellstrom Chronicle (1971),Documentary|Drama +146437,San Francisco 2.0 (2015),Documentary +146439,Walnut Bread (1977),(no genres listed) +146441,Cinema: A Public Affair (2015),Documentary +146443,Plan B (2009),Comedy|Drama|Romance +146449,Anarchy Parlor (2015),Horror +146452,Aussie and Ted's Great Adventure (2009),Children|Drama +146455,Hallway (2015),Drama|Fantasy +146457,Call Out the Marines (1942),Comedy +146459,China Clipper (1936),Drama +146461,Claudelle Inglish (1961),Drama +146463,I Am Syd Stone,(no genres listed) +146466,"Come Back, Africa (1959)",Documentary|Drama +146468,Cracked Nuts (1931),Comedy|Romance +146470,Death Duel (1977),Action +146472,Duffy of San Quentin (1954),Crime|Drama +146475,Alone With People,Comedy|Drama +146477,An Afternoon (2014),Drama|Romance +146479,Flying High (1931),Comedy|Romance +146481,Half Shot at Sunrise (1930),Comedy +146485,Hell's Heroes (1929),(no genres listed) +146487,Maciste in Hell of Genghis Khan (1964),(no genres listed) +146489,Hercules Against the Mongols (1963),Action|Adventure|Drama +146491,Hercules Against the Moon Men (1964),Action|Adventure|Fantasy +146493,I'll Wait for You (1941),Drama|Romance +146495,In Fast Company (1946),(no genres listed) +146497,In the Land of the Head Hunters (1914),(no genres listed) +146499,Break Free (2014),(no genres listed) +146501,Land of Storms (2014),Drama +146503,Last of the Mobile Hot Shots (1970),(no genres listed) +146509,Match (2012),Drama +146511,You're Killing Me (2015),Comedy|Horror|Romance +146515,Mr. and Mrs. North (1942),Comedy|Mystery +146517,Parnell (1937),Drama|Romance +146520,Tru Love (2013),Drama|Romance +146523,Santa Claws (1996),Horror +146526,Spare Parts (1979),Horror|Thriller +146530,The Butcher (2006),Action|Horror +146532,The Butcher (2009),Action|Thriller +146536,Wheeler (1975),Thriller +146538,The Butcher (2007),Action|Horror +146540,Boy (2014),Drama +146544,The Connection (1962),Drama +146546,The Conquerors (1932),(no genres listed) +146548,The Delightful Forest (1972),Action|Drama +146550,Double O Kid (1992),(no genres listed) +146552,The Exiles (1961),Documentary +146554,Hole (2014),(no genres listed) +146556,The Man From the Diners' Club (1963),Comedy +146558,The Painted Desert (1931),Western +146560,The Secret Fury (1950),Mystery +146562,The Victors (1963),Drama|War +146564,Underground (1928),Drama +146566,Underground (1970),Drama|Thriller|War +146568,Underground (2007),Action +146570,Underground (2011),Horror +146574,Asignatura pendiente (1977),Drama +146576,Within the Law (1939),Crime|Drama|Romance +146578,Wrath (2012),Adventure|Thriller +146580,Alien Zone (1978),Action|Horror|Sci-Fi|Thriller +146582,Isla bonita (2015),(no genres listed) +146584,Boogie Boy (1998),(no genres listed) +146586,Positive I.D. (1986),Crime|Drama|Thriller +146588,"Douro, Faina Fluvial (1931)",Documentary +146590,Falling For You (1995),Thriller +146592,Tobruk (2008),(no genres listed) +146595,Last Images of the Shipwreck (1989),Drama +146600,Gardener of Eden (2007),Comedy|Drama +146604,Naomi and Ely's No Kiss List (2015),Comedy|Drama|Romance +146606,The Subjects (2015),Sci-Fi|Thriller +146608,Geppo il folle (1978),(no genres listed) +146610,Joan Lui (1985),(no genres listed) +146612,Robbery Roman Style (1964),Comedy|Crime|Thriller +146614,Yuppi Du (1975),Comedy|Drama +146616,Questa specie d'amore (1972),(no genres listed) +146620,For Love One Dies (1972),Drama|Romance +146624,Escalation (1968),Comedy +146630,H2S (1969),(no genres listed) +146632,Aayitha Ezhuthu (2004),Action|Drama|Romance +146634,Maktub (2011),Children|Comedy +146636,Committed (2014),Comedy|Drama|Romance +146638,The forbidden education (2012),Comedy|Drama +146640,Drops of Joy (2014),Documentary +146642,Wildlike (2015),Adventure|Drama|Thriller +146644,"Pizza, Beer, and Cigarettes (1998)",(no genres listed) +146648,Fighter Pilot: Operation Red Flag (2004),Documentary +146650,The C-Word (2015),Drama +146652,All This and World War II` (1976),Documentary +146654,Nous trois ou rien (2015),Comedy|Drama +146656,Creed (2015),Drama +146658,Why I Wore Lipstick to My Mastectomy (2006),Drama +146660,William & Kate (2011),Drama|Romance +146662,Dragons: Gift of the Night Fury (2011),Adventure|Animation|Comedy +146664,Innocent Steps (2005),Comedy|Drama|Romance +146666,Sundays at Tiffany's (2010),Drama|Romance +146668,The Gendarme in New York (1965),Comedy +146670,The Gendarme Takes Off (1970),Comedy +146672,The Gendarme of St. Tropez (1964),Comedy +146674,The Gendarme and the Creatures from Outer Space (1978),Comedy|Sci-Fi +146676,The Scouting Book for Boys (2009),Drama|Thriller +146678,The Girls in the Band (2013),Documentary +146680,Deadbeat at Dawn (1988),Action|Crime|Thriller +146682,Twinsters (2015),Documentary +146684,Cosmic Scrat-tastrophe (2015),Animation|Children|Comedy +146686,The Sword (1945),(no genres listed) +146688,Solace (2015),Fantasy|Mystery|Thriller +146690,Enter Laughing (1967),(no genres listed) +146692,For Singles Only (1968),(no genres listed) +146694,All About Evil (2010),Horror +146696,Breathing (2011),Drama +146698,"Bruce Lee, My Brother (2010)",Drama +146700,The Little Ghost (2013),Children|Fantasy +146702,The Ugly Duckling (1939),Animation +146704,True Confessions of a Go-Go Girl (2008),Drama +146706,Lejdis (2008),(no genres listed) +146708,Money Is Not Everything (2001),(no genres listed) +146710,Zróbmy sobie wnuka (2003),(no genres listed) +146712,The Mighty Angel (2014),Drama +146714,The Dead and the Living (2012),Drama +146716,Shameless (2012),Drama +146718,Baby Blues (2012),Thriller +146720,Hardkor Disko (2014),Drama +146722,Cry of the Hunted (1953),Crime|Thriller +146724,The Challengers (1990),Children|Drama +146726,A Nanny for Christmas (2010),Children|Comedy +146728,The Hot Flashes (2013),Comedy +146730,Lost in the Sun (2015),Action|Drama|Thriller +146732,Jigarthanda (2014),Action|Drama|Thriller +146734,Sharpe's Regiment (1996),(no genres listed) +146736,David and Goliath (2015),Drama +146740,Proibito Rubare - Luigi Comencini,(no genres listed) +146742,Behind Closed Shutters (1951),Drama +146748,La valigia dei sogni (1953),Comedy +146750,Frisky (1954),Comedy|Romance +146752,La finestra sul Luna Park (1957),(no genres listed) +146754,Husbands in the City (1957),Comedy +146760,La ragazza di Bube (1963),Drama +146762,Three Nights of Love (1964),Comedy|Drama +146764,Six Days a Week (1965),Comedy +146766,Giacomo Casanova: Childhood and Adolescence (1969),Drama +146768,Without Knowing Anything About Her (1969),Sci-Fi|Thriller +146770,Somewhere Beyond Love (1974),(no genres listed) +146772,Misunderstood (1966),Drama +146774,Till Marriage Do Us Part (1974),Comedy +146776,La donna della domenica (1975),(no genres listed) +146780,Voltati Eugenio (1980),(no genres listed) +146786,A Boy from Calabria (1987),Drama +146788,"Joyeux Noël, Bonne Année (1989)",Comedy|Drama +146796,Le strelle nel fosso,(no genres listed) +146800,Noi tre (1984),(no genres listed) +146802,Impiegati (1985),(no genres listed) +146804,Festa di laurea (1985),Comedy|Drama|Romance +146806,Ultimo minuto (1988),(no genres listed) +146810,The Story of Boys and Girls (1989),(no genres listed) +146812,Bix (1991),(no genres listed) +146816,Magnificat (1993),(no genres listed) +146820,L'arcano incantatore (1996),Horror +146830,La nave bianca (1942),(no genres listed) +146832,L'uomo dalla croce (1943),War +146836,Il nascondiglio (2007),Horror|Mystery|Thriller +146838,Escape by Night (1960),Drama|Romance +146840,Viva l'Italia! (1961),(no genres listed) +146842,Vanina Vanini (1961),Drama +146848,The Messiah (1975),Drama +146850,Desire (1946),Drama +146852,I cavalieri che fecero l'impresa (2001),(no genres listed) +146854,Dov'è la Libertà...? (1954),Comedy +146856,Giovanna d'Arco al rogo (1954),Drama +146858,Il figlio più piccolo (2010),(no genres listed) +146860,A Second Childhood (2010),(no genres listed) +146862,Il cuore grande delle ragazze (2011),(no genres listed) +146864,A Golden Boy (2014),Comedy|Drama|Romance +146866,Louder Than Bombs (2015),Drama +146868,The Naked Zoo (1970),(no genres listed) +146870,Entre Abelhas (2015),Comedy|Drama +146872,My Wife's Husband (1963),Comedy +146874,Pouic-Pouic (1963),Comedy +146876,Algorithms (2013),Documentary +146878,Le Grand Restaurant (1966),Comedy +146880,More of Me (2007),(no genres listed) +146882,"Camorra (A Story of Streets, Women and Crime) (1986)",Crime|Drama +146884,I basilischi (1963),(no genres listed) +146886,Rita la zanzara (1966),(no genres listed) +146888,Non stuzzicate la zanzara (1967),(no genres listed) +146890,The Belle Starr Story (1968),Western +146892,"A Joke of Destiny, Lying in Wait Around the Corner Like a Bandit (1984)",(no genres listed) +146894,Softly...Softly (1984),(no genres listed) +146896,The Nymph (1996),Drama|Romance +146898,Ferdinando e Carolina (1999),(no genres listed) +146900,Heist (2015),Action|Thriller +146902,Condemned (2015),Horror +146904,Entertainment (2015),Comedy|Drama +146906,"Rio, I Love You (2014)",Drama|Romance +146908,The Murder Pact (2015),Thriller +146910,PG 16... (2010),Comedy|Drama|Romance +146912,Sharpe's Siege (1996),(no genres listed) +146914,The Price We Pay (2014),Documentary +146916,We Are Many (2014),Documentary +146918,Fonzy (2013),Comedy +146920,Felices 140 (2015),Comedy|Drama +146922,Shelter (2015),Drama +146924,White Skin (2005),Drama|Horror|Mystery|Thriller +146926,400 Days (2015),Mystery|Sci-Fi|Thriller +146928,A Girl at My Door (2014),Drama +146930,Just Desserts (2004),Comedy|Romance +146932,Wer wenn nicht wir (2011),Drama +146934,The Boy Who Walked Backwards (1995),(no genres listed) +146936,Lost and Love (2015),Drama +146938,Absence (1992),(no genres listed) +146940,The Left-Handed Woman (1978),(no genres listed) +146942,You Won't Have Alsace-Lorraine (1977),Comedy +146944,The Spat (1978),Comedy +146946,The Hardy Bucks Movie (2013),Comedy +146948,We Want the Colonels (1973),Comedy +146950,Come Home and Meet My Wife (1974),Comedy|Drama +146952,Dear Michele (1976),(no genres listed) +146954,Lovers and Liars (1980),Comedy +146958,Camera D'Albergo (1981),Comedy +146960,The Two Lives of Mattia Pascal (1985),(no genres listed) +146966,Facciamo paradiso (1995),(no genres listed) +146968,Dirty Linen (1999),(no genres listed) +146970,The Passionate Thief (1960),Comedy +146972,Forbidden (1954),(no genres listed) +146974,Totò e Carolina (1955),(no genres listed) +146976,Donatella (1956),(no genres listed) +146978,Padri e figli (1957),Comedy +146980,Le rose del deserto (2006),(no genres listed) +146982,The Under-Gifted (1980),Comedy +146984,Inspector Blunder (1980),Comedy +146986,Le Maître d'école (1981),Comedy +146988,"So Long, Stooge (1983)",Drama +146990,Banzai (1983),Comedy +146992,Velociraptor (2014),Comedy|Drama|Fantasy +146994,The Mysterious House of Dr. C. (1976),Drama +146996,The Lady Without Camelias (1953),Drama +146998,Chung Kuo - Cina (1972),Documentary +147000,The Mystery of Oberwald (1981),(no genres listed) +147002,Eros (2004),Drama|Romance +147004,The Extreme Tragic Story of Celal Tan and His Family (2011),Children|Comedy|Crime +147006,Bana Masal Anlatma (2015),Comedy|Drama +147008,In Bar (2007),Drama +147010,Thou Gild'st the Even (2013),Drama|Fantasy|Romance +147012,1989 (2014),(no genres listed) +147014,Hello Lonesome (2010),Comedy|Drama|Romance +147016,The Surprise (2015),Comedy|Romance +147018,Double zéro (2004),Adventure|Comedy +147022,Love the Coopers (2015),Comedy +147024,Prem Ratan Dhan Payo (2015),Drama|Romance +147026,A Colbert Christmas: The Greatest Gift of All! (2008),Comedy +147028,Outrage (1950),Crime|Drama +147030,A Dandy in Aspic (1968),Drama|Thriller +147033,(T)ERROR (2015),Documentary|Thriller +147035,Baile Perfumado (1997),Drama +147037,Straight-Jacket (2004),Comedy +147039,A Reunion (2014),(no genres listed) +147041,In the Grayscale (2015),Drama|Romance +147043,King Lear (1916),Drama +147045,Captains of the Sands (2011),Adventure|Drama +147047,Caramuru - A Invenção do Brasil (2001),Comedy|Romance +147049,No Night Is Too Long (2002),Crime|Drama|Thriller +147051,Manichitrathazhu (1993),Children|Drama|Fantasy|Horror|Mystery|Thriller +147053,Devasuram (1993),Action|Drama +147055,Chashme Buddoor (1981),Comedy|Romance +147057,Sharpe's Mission (1996),Action|Adventure|War +147060,The Conquerors (2013),Comedy +147062,Rock the Casbah (2013),Comedy|Drama +147064,The Fat Man (1951),Mystery +147066,I Was a Shoplifter (1950),Crime +147068,The Desert Hawk (1950),Action|Adventure +147070,Iron Man (1951),Drama +147074,Showdown (1973),Western +147076,Twilight for the Gods (1958),War +147078,This Earth Is Mine (1959),Drama +147082,Back to God's Country (1953),Adventure|Drama +147084,The Golden Blade (1953),Adventure +147086,Undertow (1949),Mystery +147088,One Way Street (1950),(no genres listed) +147090,Scarlet Angel (1952),Adventure|Drama|Western +147092,Has Anybody Seen My Gal? (1952),Comedy +147094,A Very Special Favor (1965),Comedy|Romance +147096,Captain Lightfoot (1955),Drama +147098,One Desire (1955),Drama +147100,The Second Circle (1990),(no genres listed) +147102,Journey to the Safest Place on Earth (2013),Documentary +147104,All American High: Revisited (2014),Documentary +147106,"Doin' It in the Park: Pick-Up Basketball, NYC (2012)",Documentary +147108,SlingShot (2014),Documentary +147110,Famous Nathan (2015),(no genres listed) +147112,Bigfoot's Reflection (2007),Documentary +147114,BMF: The Rise and Fall of a Hip-Hop Drug Empire (2012),(no genres listed) +147116,The Happy House (2013),(no genres listed) +147118,Ralphie May: Imperfectly Yours (2013),(no genres listed) +147120,Reilly: Ace of Spies (1983),(no genres listed) +147122,The Secret Life of Marilyn Monroe (2015),Drama +147124,The Roosevelts: An Intimate History (2014),Documentary +147126,Silenced (2014),Documentary +147128,En équilibre (2015),Drama +147130,The French Revolution (1989),(no genres listed) +147132,Après la guerre (1989),Comedy|Drama|War +147134,Le bal des casse-pieds (1992),Comedy +147136,Une Époque Formidable... (1991),Comedy +147138,Robbery at 3 O'clock (1962),Comedy +147140,To gala (2012),Drama +147142,Those Happy Days (2006),Children|Comedy +147144,Hachi-ko (1987),(no genres listed) +147146,Death Journey (1976),Action|Crime +147152,On the Edge (2002),Action +147156,Silent Hunter (1995),Action|Thriller +147158,Three Days To A Kill (1992),(no genres listed) +147164,Foxtrap (1986),(no genres listed) +147166,The Big Score (1983),Action|Crime|Drama +147168,"One Down, Two to Go (1982)",Action|Crime +147170,Mean Johnny Barrows (1976),Action|Crime|Drama +147172,No Way Back (1976),Action|Crime|Drama +147176,Atolladero (1997),(no genres listed) +147178,The Story of Sin (1975),Drama +147180,Windy City (1984),Drama +147182,Metamorphosis: The Alien Factor (1990),Horror|Sci-Fi +147184,Felix and Meira (2015),Children|Drama|Romance +147186,How the Lion Cub and the Turtle Sang a Song (1974),(no genres listed) +147188,38 Parrots,Animation|Children +147190,Treasure Island (1982),Adventure|Children +147192,The Seventh Companion (1968),Drama +147194,Wedding in Malinovka (1967),Adventure|Comedy|Romance +147196,The Girls (1961),Comedy|Romance +147198,The Return of the Tall Blond Man with One Black Shoe (1974),Comedy +147200,Come Tomorrow (1963),Comedy|Romance +147202,Beauties of the Night (1952),Comedy|Fantasy|Romance +147204,Winter Evening in Gagry (1985),Comedy|Drama +147206,72 Meters (2004),Action|Drama|Thriller +147208,The Secret of Queen Anna or Musketeers 30 Years Later (1993),Adventure +147210,Musketeers 20 Years Later (1992),Adventure +147212,Alisa v strane chudes (1981),Animation +147214,Marta the Pious Woman (1980),Comedy +147216,Pirates of the 20th Century (1980),Action|Adventure +147218,Arlette (1997),(no genres listed) +147220,The Age of Love (1954),Comedy|Romance +147222,Takhir and Zukhra (1946),(no genres listed) +147224,Lookin' Italian (1994),Crime|Drama|Romance +147226,713-й просит посадку (1961),(no genres listed) +147228,"Vivat, Naval Cadets! (1991)",Adventure +147230,Truffaldino from Bergamo (1977),Comedy|Romance +147232,Hussar Ballad (1962),Comedy +147234,Naval Cadets III (1992),Adventure +147236,Look for a Woman (1983),Comedy|Crime +147238,The New Adventures of the Elusive Avengers (1968),Action|Adventure|Children +147240,Koroleva Benzokolonki (1963),Comedy +147242,"Crown of Russian Empire, or the Elusives Again (1971)",Action|Adventure|Children +147244,Magicians (1982),Comedy|Fantasy|Romance +147246,Adventures of Mowgli (1973),Animation|Children +147248,The Isle of Lost Ships (1987),Adventure|Drama|Romance|Sci-Fi +147250,The Adventures of Sherlock Holmes and Doctor Watson,(no genres listed) +147252,The Untold History of the United States (2013),Documentary +147254,"Petrovka Street, Number 38 (1980)",Crime|Mystery +147256,"Ogaryova Street, Number 6 (1980)",Crime|Mystery +147258,Start Liquidation (1983),Action|Crime|Drama +147260,Ku! Kin-dza-dza (2013),Animation|Comedy|Sci-Fi +147262,Faster than Rabbits (2014),Comedy +147264,Vive la France (2013),Comedy +147266,The Brides Are Coming (1978),Drama +147268,Hornblower: The Even Chance (1998),Action|Adventure|Drama|War +147270,Ne Pokiday (1989),Children|Comedy|Romance +147272,Serafino (1968),Comedy +147274,Baryshnya i khuligan (1918),(no genres listed) +147276,Turf (2013),Comedy +147278,Fine Things (1990),Drama|Romance +147280,The Sunshine Boys (1996),Comedy +147282,What Men Still Talk About (2011),Comedy +147284,The Return of Bruno (1987),(no genres listed) +147288,"Tsirk Sgorel, i Klouny Razbezhalis (1998)",Drama +147290,Seventeen Moments in Spring (1973),Adventure|Drama|War +147292,Retribution (1967),Drama|War +147294,With Clean Hands (1972),Action|Crime|Thriller +147296,Dream (1941),Drama +147298,Uno bianca (2001),Action|Crime|Thriller +147300,Adventures Of Sherlock Holmes And Dr. Watson: The Twentieth Century Approaches (1986),Crime|Mystery +147302,Le Grand pardon (1982),Comedy|Crime|Drama +147304,Iblard Jikan (2007),Animation|Fantasy +147306,Come Look at Me (2000),Comedy|Drama|Romance +147308,Vanished Empire (2008),Drama|Romance +147310,Under the Gun (1995),Action +147312,CounterForce (1998),Action|Thriller +147314,Pour 100 briques t'as plus rien ! (1982),Comedy +147316,The Undertaker's Wedding (1997),Comedy +147318,Queen Made In Heaven (1997),(no genres listed) +147320,100 grams for Bravery (1976),Comedy +147322,You Are My Only Love (1993),Drama|Romance +147324,Vertical (1966),Action|Adventure +147326,The Adventures of Sherlock Holmes and Doctor Watson: King of Blackmailers (1980),Crime|Mystery +147328,The Adventures of Sherlock Holmes and Dr. Watson: Bloody Signature (1979),Crime +147330,Sherlock Holmes and Dr. Watson: Acquaintance (1979),Crime +147332,Hotel Room (1993),Comedy|Drama +147334,Helen the Baby Fox (2006),(no genres listed) +147336,Tomorrow Was the War (1987),Children|Drama|War +147338,Night of the Living Dead: Darkest Dawn (2015),(no genres listed) +147340,Gutterballs (2008),Horror +147342,Camp Dread (2014),Horror|Mystery|Thriller +147344,Hallowed Ground (2007),Horror +147346,Final Exam (1981),Horror +147348,Anacondas: Trail of Blood (2009),Action|Horror|Sci-Fi|Thriller +147350,Don't Go to the Reunion (2013),Horror +147352,SharkMan (2005),Horror|Sci-Fi +147354,Father's Day (2011),Action|Comedy|Horror +147356,Trophy Heads (2014),Comedy|Horror +147358,Fat Chance (2014),Comedy|Horror +147360,Don't Open Till Christmas (1984),Horror|Mystery +147362,Curtains (1983),Crime|Horror|Thriller +147364,Area 407 (2012),Horror|Sci-Fi|Thriller +147366,Reality Terror Night (2013),Horror +147368,Doll Graveyard (2005),Horror +147370,Tut (2015),(no genres listed) +147386,Transylvania Twist (1990),Comedy +147388,The Halfway House (2004),(no genres listed) +147390,Chainsaw Sally (2004),Horror +147392,Last of the Living (2009),Comedy|Horror +147394,Ninjas vs. Monsters (2012),Action|Comedy|Horror +147396,Secrets in the Walls (2010),Horror|Thriller +147398,Made in France (2015),Thriller +147400,Meu Pé de Laranja Lima (2013),Drama +147402,The King and Queen of Moonlight Bay (2003),Children|Drama +147404,The Phone (2015),(no genres listed) +147408,Frau Ella (2013),Comedy +147410,A Perfect Day (2015),Comedy|Drama +147414,A-1 Headline (2004),Action|Drama|Romance|Thriller +147418,Sergeants 3 (1962),Comedy|Western +147420,Meet Danny Wilson (1952),(no genres listed) +147422,The Miracle of the Bells (1948),Drama +147424,Step Lively (1944),Drama +147426,İtirazım Var (2014),Action|Crime|Drama +147428,Limonata (2015),Comedy|Drama +147430,Antidote (2014),Action|Crime|Drama +147432,Pardon (2005),Comedy|Drama +147434,Organize isler (2005),Comedy +147436,Police (2007),Action|Comedy|Drama +147441,"3½ Minutes, 10 Bullets (2015)",Documentary +147448,After Words (2015),Drama +147450,Amigo Undead,(no genres listed) +147452,Coldwater (2013),Drama|Thriller +147454,Aleksandr's Price (2013),Drama|Mystery|Thriller +147456,The Legend of Longwood (2014),Adventure|Children|Drama +147458,The Blancheville Monster (1963),(no genres listed) +147460,The Witch Returns to Life (1952),Comedy|Fantasy|Horror +147462,Dead Creatures (2001),Horror +147464,Ninja Death (1987),Action +147466,Emperor of Shaolin Kung Fu (1980),(no genres listed) +147469,Big Significant Things (2015),(no genres listed) +147471,Bravetown (2015),Drama +147475,Outrageous! (1977),Animation|Comedy +147490,The Sins of Dorian Gray (1983),Drama|Horror +147493,American Nightmare (1983),Crime|Horror|Thriller +147495,Surfacing (1981),Drama +147499,Murder in Space (1985),(no genres listed) +147504,Ford: The Man and the Machine (1987),Drama +147510,Drop Dead Gorgeous (1991),Thriller +147512,McBain (1991),Action +147514,Killer Image (1992),Thriller +147517,Night Trap (1993),Horror|Thriller +147522,Point of Impact (1993),Action|Crime|Drama +147524,Save Me (1994),Mystery|Thriller +147526,Fortunes of War (1994),Action|Thriller +147531,Red Sun Rising (1994),Action +147536,Red Scorpion 2 (1995),(no genres listed) +147539,Bolt (1995),Action|Crime|Drama +147542,Terminal (1996),Drama|Horror +147548,Johnny 2.0 (1998),Sci-Fi +147562,Borderline Normal (2000),Drama +147567,Extreme Honor (2001),Action|Thriller +147571,Hemingway vs. Callaghan (2003),Drama +147573,Maximum Velocity (2003),(no genres listed) +147576,Disaster Zone: Volcano in New York (2006),Action|Sci-Fi|Thriller +147578,Storm Cell (2008),Action|Drama|Thriller +147584,Eva (2010),Drama|Romance +147586,Beneath the Blue (2010),Drama|Romance +147591,Dark Rising 2: Summer Strikes Back (2011),Action|Comedy|Fantasy|Sci-Fi +147593,Transgression (2011),(no genres listed) +147597,Transformers Prime Beast Hunters: Predacons Rising (2013),Action|Animation|Sci-Fi +147600,Desecrated (2015),Horror|Thriller +147603,The Red Inn (2007),Comedy +147605,The Salvation Hunters (1925),(no genres listed) +147607,The Here After (2015),Drama +147609,11:59 (2005),Mystery|Thriller +147611,This Isn't Funny (2015),Comedy|Drama|Romance +147613,Bibliothèque Pascal (2010),Drama +147615,The Battle of Love's Return (1971),(no genres listed) +147617,Loro chi? (2015),Comedy +147619,La mossa del pinguino (2014),Comedy +147621,Prince (2015),Comedy|Drama +147624,The Blue Sky Maiden (1957),(no genres listed) +147631,Afraid to Die (1960),Action|Drama +147637,House of Traps (1982),Action +147640,A Wife Confesses (1961),Drama|Mystery +147642,"Just You and Me, Kid (1979)",Comedy +147644,Mantis in Lace (1968),Horror +147647,Ma and Pa Kettle at Home (1954),Comedy +147649,Ma and Pa Kettle at Waikiki (1955),Comedy +147651,Ma and Pa Kettle at the Fair (1952),Comedy +147653,Ma and Pa Kettle Go to Town (1950),Comedy +147655,Ma and Pa Kettle on Vacation (1953),Comedy +147657,Masked Avengers (1981),Action +147662,Return of the One-Armed Swordsman (1969),Action|Adventure +147664,One Armed Against Nine Killers (1976),Action +147668,Opium and the Kung Fu Master (1984),Action|Comedy|Drama +147670,Huacho (2009),Drama +147674,Rockabilly Zombie Weekend (2013),Horror +147676,Salome Where She Danced (1945),(no genres listed) +147678,Salomé (2002),Drama +147680,Salomé (2013),(no genres listed) +147682,Salomé (1923),Drama|Horror +147687,Ten Tigers of Kwangtung (1979),Action +147689,The Shaolin Drunken Monk (1982),Action +147692,Federal Bank Heist (2011),Crime|Drama|Thriller +147694,The Christmas That Almost Wasn't (1966),Children|Fantasy +147696,The Flirting Widow (1930),(no genres listed) +147698,Palace Carnage (1978),Action +147700,Fatal Flying Guillotine (1977),Action|Adventure +147702,The Flying Guillotine (1975),Action +147705,The Invisible Menace (1938),Mystery +147710,The Sisters (1969),Drama|Romance +147712,Ties That Bind (2011),Drama +147714,The Venetian Affair (1967),Action|Thriller +147716,Kutti Puli (2013),Action|Comedy|Romance +147718,Young and Dangerous 5 (1998),Action|Crime|Thriller +147720,Young Tiger (2015),Drama +147722,To Walk with Lions (1999),(no genres listed) +147724,West Of Shanghai (1937),Adventure|Drama|War +147726,Criminal Activities (2015),Crime|Drama|Thriller +147728,Wild Times (1980),Action|Adventure|Drama|Western +147730,Wonder Woman (1974),Action|Adventure|Fantasy +147732,Wonder Woman (2011),(no genres listed) +147734,Pápa Piquillo (1998),Comedy +147736,Hong Kong Trilogy: Preschooled Preoccupied Preposterous (2015),Drama +147738,Warsaw 44 (2014),Drama|Romance +147740,The Red Spider (2015),(no genres listed) +147742,A Son's First Step. A Mother's Second Chance. (2014),Drama +147744,A Murder in the Park (2014),Crime|Documentary +147746,Sharpe's Revenge (1997),Action|Adventure|War +147748,The Taint (2010),Comedy|Horror +147750,Rams (2015),(no genres listed) +147752,Those Who Feel the Fire Burning (2014),Documentary +147754,The Mind Snatchers (1972),Sci-Fi|Thriller +147758,The Mad Room (1969),Horror|Mystery|Thriller +147760,As Young As We Are (1958),Drama +147762,Ride Out for Revenge (1957),Action|Drama|Western +147764,As You Were (1951),Comedy +147766,Becoming Me (2014),Documentary +147768,Deep Blues (1992),Documentary +147770,His Picture in the Papers (1916),Comedy +147772,All The Time In The World (2015),(no genres listed) +147775,Dancing on the Edge (2013),Drama +147777,Fast Charlie... the Moonbeam Rider (1979),Action +147779,Richard Pryor: Icon (2014),Documentary +147781,Plush (2013),Thriller +147783,At Risk (2010),Crime|Drama|Mystery +147785,Greendale (2003),Comedy +147789,Rust Never Sleeps (1979),(no genres listed) +147791,Once a Sinner (1950),Drama +147795,There Is Another Sun (1951),(no genres listed) +147805,Break to Freedom (1953),War +147811,Not Quite Paradise (1985),(no genres listed) +147817,Reach for the Sky (1956),Drama +147819,The Sea Shall Not Have Them (1954),War +147821,Ferry to Hongkong (1959),Drama +147823,Stepping Out (1991),Comedy|Drama +147825,For Some Inexplicable Reason (2014),Drama +147827,Afterlife (2014),Comedy|Drama +147829,Love is All: 100 Years of Love & Courtship (2014),Documentary +147831,Anthony Jeselnik: Thoughts and Prayers (2015),Comedy +147833,Anthony Jeselnik: Caligula (2013),Comedy +147835,The Leisure Class (2015),Comedy +147837,"Big Father, Small Father and Other Stories (2015)",(no genres listed) +147839,"Bi, Don't Be Afraid (2010)",Drama +147841,Taikon (2015),(no genres listed) +147843,Starring Adam West (2013),Documentary +147845,Manson Family Vacation (2015),Comedy|Drama|Thriller +147847,Point Break (2015),Action|Crime|Thriller +147849,The Christmas Tree (1969),Drama +147853,Action of the Tiger (1957),Action|Drama|Mystery +147855,Poppies Are Also Flowers (1966),Crime|Drama|Mystery +147857,L'avventuriero (1967),Adventure|Drama +147859,The Amazons (1973),Action|Adventure +147863,Foxbat (1977),(no genres listed) +147865,Bloodline (1979),Crime|Thriller +147867,That Lady (1955),(no genres listed) +147869,Serious Charge (1959),Drama +147873,Playgirl after Dark (1960),Crime|Drama +147879,One Night with You (1948),Comedy +147881,Corridor of Mirrors (1948),Drama|Fantasy|Mystery|Romance|Thriller +147887,Inchon (1981),Drama|War +147889,The Jigsaw Man (1984),Thriller +147891,Goin' Coconuts (1978),Adventure|Comedy +147893,The Great Brain (1978),(no genres listed) +147895,Recep İvedik (2008),(no genres listed) +147897,Recep İvedik 2 (2009),Action|Sci-Fi|Thriller +147899,Recep İvedik 3 (2010),(no genres listed) +147901,Recep İvedik 4 (2014),Comedy +147903,Tangerine (2008),Drama +147905,The Kidnapping of Michel Houellebecq (2014),Comedy|Drama +147907,Midnight Manhunt (1945),Mystery|Thriller +147909,Antigang (2015),Action +147911,The Smile Man (2013),Comedy|Drama +147913,Glassland (2015),Drama +147915,The Ventriloquist (2012),(no genres listed) +147917,Envelope (2012),(no genres listed) +147919,Pound (1970),Comedy +147921,Submerged (2015),Drama|Thriller +147923,Family Guy Presents: Seth and Alex's almost live comedy show (2009),Animation|Comedy +147925,Illusions (1992),Drama|Thriller +147927,Heart of a Dog (2015),Documentary +147929,Lover Boy (1975),Comedy +147932,Bedfellows (2008),Horror +147934,Adieu Philippine (1962),Drama +147936,The Lord's Lantern in Budapest (1999),Comedy|Drama +147938,Petey Wheatstraw (1977),Action|Comedy|Fantasy|Sci-Fi +147940,Tamasha (2015),(no genres listed) +147942,Room 8 (2013),(no genres listed) +147946,The Crooked Circle (1932),Comedy|Mystery +147948,King of the Jungle (1933),(no genres listed) +147950,Goodbye Love (1933),(no genres listed) +147952,Merry Wives of Reno (1934),(no genres listed) +147954,Three Live Ghosts (1936),Comedy|Romance +147956,Time Out for Murder (1938),Mystery +147958,While New York Sleeps (1938),Crime|Drama +147960,Pack Up Your Troubles (1939),(no genres listed) +147962,Lucky Cisco Kid (1940),Western +147964,"Tall, Dark and Handsome (1941)",Comedy|Crime +147966,Tarzan's Fight for Life (1958),Action|Adventure +147970,Tarzan and the Lost Safari (1957),Adventure +147972,The Desert Song (1953),Romance +147976,Fury at Furnace Creek (1948),Western +147980,Iceland (1942),(no genres listed) +147982,"Hello, Frisco, Hello (1943)",Comedy|Romance +147984,Within These Walls (1945),(no genres listed) +147986,Dressed to Kill (1941),Drama|Mystery|Thriller +147988,A Man from Boulevard des Capucines (2010),Comedy +147990,Hälsoresan (1999),Comedy +147992,Paternity Leave (2015),Comedy|Romance +147994,A dagger through the heart (2015),(no genres listed) +147996,Congo Crossing (1956),(no genres listed) +147998,Away All Boats (1956),War +148000,The Midnight Story (1957),Crime|Drama +148002,Destination Space (1959),Sci-Fi +148004,The Plunderers (1960),Western +148008,It Happens Every Thursday (1953),(no genres listed) +148010,Playgirl (1954),Drama +148012,Desert Legion (1953),(no genres listed) +148014,Flesh and Fury (1952),Drama +148022,The Lady from Texas (1951),(no genres listed) +148024,Six Bridges to Cross (1955),Crime|Drama +148026,Foxfire (1955),Action|Adventure|Comedy|Drama|Romance|Western +148028,Portrait of a Mobster (1961),(no genres listed) +148030,Naked Among Wolves (2015),Drama|War +148032,The Execution of Private Slovik (1974),Drama|War +148034,The Bunny Game (2010),Horror +148036,Winter on Fire: Ukraine's Fight for Freedom (2015),Documentary +148038,The List (2013),Thriller +148040,Man Walking Around a Corner (1887),(no genres listed) +148042,Accordion Player (1888),Documentary +148044,"Monkeyshines, No. 1 (1890)",Comedy +148046,"Monkeyshines, No. 2 (1890)",(no genres listed) +148048,Sallie Gardner at a Gallop (1878),(no genres listed) +148050,Traffic Crossing Leeds Bridge (1888),Documentary +148052,London's Trafalgar Square (1890),(no genres listed) +148054,Passage de Venus (1874),Documentary +148056,eCupid (2011),Romance +148058,Talvar (2015),Drama|Mystery|Thriller +148060,Cenerentola '80 (1984),Drama|Fantasy|Musical|Romance +148062,The Quack (1982),Drama|Romance +148064,Newark Athlete (1891),Documentary +148066,Pestonjee (1988),Comedy|Drama +148068,Attraction (1969),Drama|Romance|Thriller +148070,Mary Kom (2014),Drama +148072,"Olly, Olly, Oxen Free (1978)",Adventure +148074,Likaiset kädet (1989),(no genres listed) +148076,A Summer Story (1988),Drama|Romance +148078,Wolf (2008),Action|Adventure|Drama +148080,Hard to Be a God (1989),Adventure|Drama|Sci-Fi +148082,They Have Changed Their Face (1971),Horror|Mystery +148084,Emmanuelle in Soho (1981),Drama +148087,The Life and Times of Grizzly Adams (1974),Adventure|Children|Western +148089,"Continental, a Film Without Guns (2007)",Comedy|Drama +148091,Kanto Wanderer (1963),(no genres listed) +148093,The Republic ,Action|Crime|Thriller +148095,Premam (2015),Comedy|Romance +148097,Soula Ela Xana (2009),Comedy +148101,The Saboteurs (2015),(no genres listed) +148104,3x3 (2009),Comedy +148106,Falling Overnight (2011),Drama|Romance +148108,My Little Pony: Equestria Girls - Rainbow Rocks (2014),Animation|Children +148110,My Little Pony: Equestria Girls - Friendship Games (2015),Animation +148112,The House Across the Street (2015),Horror|Thriller +148114,The Ties That Bind (2015),(no genres listed) +148116,The Man with Icy Eyes (1971),Drama|Horror|Mystery +148118,The Invincible Gladiator (1961),(no genres listed) +148122,Son of Hercules vs. Medusa (1963),Adventure|Fantasy +148124,The Secret Seven (1963),(no genres listed) +148126,Hercules vs. the Giant Warriors (1964),Adventure +148128,Assault on Fort Texan (1964),(no genres listed) +148130,"$100,000 for Ringo (1965)",Drama|Western +148134,"Upperseven, l'uomo da uccidere (1966)",(no genres listed) +148136,Django Shoots First (1966),Romance|Western +148138,Dalle Ardenne all'inferno (1967),(no genres listed) +148140,OK Connery (1967),Action|Thriller +148142,The Insatiables (1969),Horror +148146,Crime Boss (1972),(no genres listed) +148148,The Killer is on the Phone (1972),Horror|Thriller +148152,Formula for a Murder (1985),Horror +148154,The Antichrist (1974),Horror +148156,Blood Link (1982),Horror|Thriller +148158,Miami Golem (1985),Action|Horror|Sci-Fi +148160,Souls of Zen (2012),(no genres listed) +148162,Dark Woods II (2015),Horror +148164,The Coca-Cola Case (2009),Documentary +148166,Hitchcock/Truffaut (2015),Documentary +148168,Pek Yakında (2014),Action|Comedy|Drama +148170,The Swissmakers (1979),Comedy|Drama|Romance +148172,The 5th Wave (2016),Adventure|Sci-Fi|Thriller +148176,Go With Peace Jamil (2008),(no genres listed) +148178,Prancer Returns (2001),Children|Comedy +148180,Some dollars for Django (1966),(no genres listed) +148184,Father Jackleg (1974),Action|Comedy|Western +148186,Street Law (1974),Action|Thriller +148188,"Cry, Onion! (1975)",Western +148190,The Loves and Times of Scaramouche (1976),Comedy|Drama|Romance +148192,The Big Racket (1976),Action|Thriller +148194,The Heroin Busters (1977),Action|Thriller +148196,Kill Them All and Come Back Alone (1968),Western +148198,Eagles Over London (1969),Action|Drama +148200,Sensitività (1979),Horror +148202,The Shark Hunter (1979),Adventure +148204,Day Of The Cobra (1980),Action|Crime|Drama +148206,Escape from the Bronx (1983),Action|Sci-Fi +148208,Light Blast (1985),Action|Sci-Fi|Thriller +148210,Hammerhead (1987),(no genres listed) +148212,Striker (1987),Action|Drama +148222,Jonathan of the Bears (1994),(no genres listed) +148224,Johnny Hamlet (1968),Western +148228,Any Gun Can Play (1967),Action|Adventure|Western +148232,Payment in Blood (1967),Western +148238,A Very Murray Christmas (2015),Comedy +148240,Elf: Buddy's Musical Christmas (2014),Animation|Children|Fantasy +148242,Wakko's Wish (1999),Animation|Comedy +148244,600 Miles (2015),Drama|Thriller +148246,The Hot Potato (2011),(no genres listed) +148248,L'Affaire SK1 (2015),Crime|Drama|Thriller +148250,L'Art de la fugue (2015),Comedy +148252,"Angel, Angel, Down We Go (1969)",Crime|Drama +148254,A Dark Place Inside,(no genres listed) +148256,In The House of Flies (2014),Thriller +148260,Lucky (2012),(no genres listed) +148262,Monkey Boy (2009),Horror +148264,Pastor Shepherd (2010),Comedy +148266,Pleased to Meet Me (2013),Drama +148268,Les Souvenirs (2015),Comedy +148270,Z Storm (2014),Crime|Thriller +148272,Executive Koala (2005),Comedy|Crime|Drama|Thriller +148274,Orania (2013),(no genres listed) +148276,The Power of Fear (2006),Horror +148278,"10,000 Days (2014)",Sci-Fi +148280,Truman (2015),Comedy|Drama +148282,Call Me Claus (2001),Children +148284,Downtown 81 (2001),Drama +148286,The Wiz Live (2015),(no genres listed) +148288,Who Am I This Time? (1982),Drama|Romance +148290,Spud 3: Learning to Fly (2014),Comedy +148292,Song of the Islands (1942),Comedy|Romance +148294,House Calls (1978),Comedy|Romance +148298,Awaken (2013),Drama|Romance|Sci-Fi +148301,Bardelys the Magnificent (1926),Drama|Romance +148306,Cattle Town (1952),Western +148308,Cold Turkey (2013),Drama +148314,"Hook, Line And Sinker (1969)",Comedy +148316,"Hook, Line and Sinker (1930)",Comedy|Romance +148320,It's in the Bag! (1945),Comedy +148324,Reaper (2000),Horror|Mystery|Thriller +148326,Reaper (2014),Crime|Horror|Sci-Fi +148329,The Yellow Tomahawk (1954),(no genres listed) +148331,Valley of the Fangs (1970),Action|Adventure +148333,"Sexo fácil, películas tristes (2015)",Comedy +148335,Skirts Ahoy! (1952),Comedy +148337,"So Young, So Bad (1950)",Drama +148339,Some Kind Of A Nut (1969),Comedy +148341,All I Want Is Christmas (2012),Children|Comedy +148344,The Caller (2009),Drama|Thriller +148347,The Dude Goes West (1948),Comedy|Western +148355,South Kensington (2001),Comedy +148357,Le dernier souffle (1999),Crime|Drama +148359,Louder Than Words (2013),Drama +148361,Apocalipsis sobre el río amarillo (1960),Drama +148363,The Cat Ate the Parakeet (1972),Drama +148365,Eddie Izzard: Unrepeatable (1994),Comedy +148367,Sanjay's Super Team (2015),Animation +148369,The Wave (2015),Action|Drama|Thriller +148372,Schneider vs. Bax (2015),Comedy|Thriller +148374,Cosmos (2015),Drama +148376,A Small September Affair (2014),Drama|Mystery|Romance +148378,Cold Eyes of Fear (1971),Thriller +148380,Wir tun es für Geld (2014),Comedy|Romance +148382,If the Shoe Fits (1990),Comedy|Romance +148384,If I Had Four Dromedaries (1966),Documentary +148386,The Wind of the Night (1999),Drama +148388,Some Kind Of Hate (2015),Horror +148390,L'Allée du Roi (1995),(no genres listed) +148392,Drowning Ghost (2004),Horror|Thriller +148394,Svart Lucia (1992),Drama|Mystery +148396,Lady of Csejte (2015),Drama|Horror|Thriller +148398,Besökarna (1988),Horror +148400,Highway of Tears (2014),Documentary +148402,Drone (2014),Documentary|War +148404,The President (2014),Drama +148406,Home from Home – Chronicle of a Vision (2013),Drama +148408,Mars Needs Women (1967),Horror|Sci-Fi +148410,The Hollow (2015),Horror +148412,Quantum Apocalypse (2010),Sci-Fi +148414,End of the World (2013),Action|Adventure|Comedy|Sci-Fi +148416,The 12 Disasters of Christmas (2012),Sci-Fi +148418,Earthfall (2015),Action|Sci-Fi +148420,10.0 Earthquake (2014),Action|Adventure +148422,Mega Shark vs. Mecha Shark (2014),Action|Sci-Fi|Thriller +148424,Chi-Raq (2015),Comedy|Drama +148426,Fateful Findings (2013),Drama|Fantasy|Thriller +148428,Heartstopper (2006),Horror +148430,Naked as We Came (2013),(no genres listed) +148432,Jim Henson’s Turkey Hollow (2015),Comedy +148434,Eating Out: Drama Camp (2011),Comedy +148438,Madeline: Lost in Paris (1999),Animation +148440,Babysitting 2 (2015),Comedy +148442,My Life Directed by Nicolas Winding Refn (2014),Documentary +148444,Emil and the Detectives (1931),Comedy|Crime +148446,The Knockout (1914),Comedy +148448,The Tramp (1915),Comedy +148450,Rageh Inside Iran (2007),Documentary +148452,The Irrefutable Truth About Demons (2000),Horror +148454,Tokyo Raiders (2000),Action|Comedy|Thriller +148456,The Queen (1968),Documentary +148458,Weekend of a Champion (1972),(no genres listed) +148460,Weekend of a Champion (2013),Documentary +148462,Men Boxing (1891),Action|Documentary +148464,No Tomorrow (2010),(no genres listed) +148466,The Garden of Sinners - Chapter 1: Thanatos. (Overlooking View) (2007),Animation +148468,The Garden of Sinners - Chapter 2: …and nothing heart. (Murder Speculation Part A) (2007),Animation +148470,"The Garden of Sinners - Chapter 3: ever cry, never life. (Remaining Sense of Pain) (2008)",Animation +148472,The Garden of Sinners - Chapter 6: Fairy Tale. (Oblivion Recording) (2008),Animation +148474,The Garden of Sinners - Chapter 7: ……not nothing heart. (Murder Speculation Part B) (2009),Animation +148476,Les dissociés (2015),Comedy +148478,Monkey King: Hero Is Back (2015),Animation|Comedy|Fantasy +148480,Double Down (2005),Action|Drama +148482,Truth (2015),Drama +148484,The Letters (2015),Drama +148486,Another Gay Sequel: Gays Gone Wild! (2008),Comedy +148488,Christmas Icetastrophe (2014),Sci-Fi +148490,L'invincibile cavaliere mascherato (1963),Adventure +148502,Fugitive Lady (1950),Crime|Drama +148512,Seattle Superstorm (2012),Action|Sci-Fi +148526,Fury of Achilles (1962),(no genres listed) +148540,Desirable Teacher 2 (1982),Comedy +148542,Where Can You Go Without the Little Vice? (1979),Comedy +148548,"Rome, the other face of violence (1976)",Action|Crime +148550,A Special Cop in Action (1976),Action|Crime|Thriller +148554,Nude Odeon (1978),(no genres listed) +148556,La liceale al mare con l'amica di papà (1980),Comedy +148560,Violent City (1975),(no genres listed) +148562,Valentina... The Virgin Wife (1975),Comedy +148564,"Between God, The Devil and a Winchester (1968)",(no genres listed) +148566,I due magnifici fresconi (1968),Comedy +148572,Bullet in the Flesh (1967),(no genres listed) +148574,Due Rrringos nel Texas (1967),Comedy +148578,7 monaci d'oro (1966),(no genres listed) +148582,African Story (1971),Mystery|Thriller +148584,Decameron proibitissimo (Boccaccio mio statte zitto) (1972),Comedy +148586,Desirable Teacher (1981),Comedy +148588,Desperate Moves (1981),Comedy +148590,Brave (1994),Drama +148592,Just Jim (2015),Comedy +148598,Valentino (1951),(no genres listed) +148602,Chicago Deadline (1949),Crime +148604,Those Endearing Young Charms (1945),Comedy|Drama|Romance +148606,The Unseen (1945),Mystery +148608,The Perfect Marriage (1947),(no genres listed) +148612,Desert Fury (1947),Crime|Drama +148614,So Evil My Love (1948),Drama +148616,Sealed Verdict (1948),Drama +148618,Dino Time (2012),Adventure|Animation|Children|Comedy +148620,Our Times (2015),Drama|Romance +148622,To the Fore (2015),Action|Drama|Romance +148624,Top Cat The Movie (2011),Animation +148626,"Big Short, The (2015)",Drama +148628,The Throwaways (2015),Thriller +148630,A Chinese Ghost Story III (1991),Action|Comedy|Fantasy|Horror +148632,Applesauce (2015),Comedy +148634,Christmas Eve (2015),Comedy +148636,John Lennon - Plastic Ono Band (2008),Documentary +148638,Sherlock Holmes (1916),Drama|Mystery +148640,The American Mall (2008),Comedy|Drama|Romance +148642,How to Win at Checkers (Every Time) (2015),(no genres listed) +148644,Two Tigers (2007),Action|Adventure|Thriller +148646,"Sex, Lies and Death (2011)",Crime|Drama|Romance|Thriller +148650,Mrs. Lambert Remembers Love (1991),Drama +148652,The Ridiculous 6 (2015),Comedy|Western +148654,Fighting Fish (2012),Action +148657,Loham (2015),Drama|Thriller +148659,Ennum Eppozhum (2015),Children|Drama +148661,Spirit (2012),Action|Thriller +148663,Psychic Killer (1975),Horror|Thriller +148665,William Shatner Presents: Chaos on the Bridge (2015),Documentary|Sci-Fi +148667,John Mulaney: The Comeback Kid (2015),Comedy +148669,L for Leisure (2014),Comedy +148671,Saw (2003),Crime|Horror +148673,Northpole (2014),Children|Fantasy +148675,North Pole: Open For Christmas (2015),Children|Fantasy +148677,Ουζερί Τσιτσάνης,(no genres listed) +148679,Amy Schumer: Mostly Sex Stuff (2012),Comedy +148681,Loup (2009),Adventure +148683,American Hero (2015),Action|Comedy|Sci-Fi +148685,Night Owls (2015),Comedy|Drama +148687,Led Zeppelin: Celebration Day (2012),Documentary +148689,The Incident (2014),Sci-Fi +148691,The Chiefs (2004),(no genres listed) +148693,Architecture 101 (2012),Comedy|Romance +148695,Under the Rainbow (2013),Comedy +148697,April 9th (2015),Drama|War +148699,I Believe in Miracles (2015),Documentary +148701,The Girl in the Book (2015),Drama +148703,The Wave (1891),Documentary +148705,A Hand Shake (1892),(no genres listed) +148707,Angels of Revolution (2014),(no genres listed) +148709,Mojave (2015),Thriller +148711,Steak (R)évolution (2014),Adventure|Children|Documentary +148713,Visitors of the Night (1995),Sci-Fi +148715,Motorcycle Gang (1994),(no genres listed) +148717,Red Wine (2013),Crime|Drama +148719,China Heavyweight (2012),Documentary +148721,Yalom's Cure (2014),Documentary +148723,Fear of Clowns (2004),Horror|Thriller +148725,Psalm 21 (2009),Horror|Sci-Fi|Thriller +148727,Tumbledown (2016),Comedy|Romance +148729,9-Man (2014),Documentary +148731,La Sfida (1958),(no genres listed) +148735,Many Wars Ago (1971),Drama|War +148737,Chronicle of a Death Foretold (1987),Crime|Drama|Thriller +148739,The Palermo Connection (1990),Thriller +148741,Neapolitan Diary (1992),(no genres listed) +148749,Mortacci (1989),(no genres listed) +148751,Il minestrone (1981),Comedy +148753,Bawdy Tales (1973),Drama +148755,Ostia (1970),(no genres listed) +148757,Beneath Loch Ness (2002),Action|Horror|Mystery|Sci-Fi|Thriller +148761,Atomic Train (1999),Action|Thriller +148763,IMAX - The Dream Is Alive (1985),Documentary +148765,Evil Alien Conquerors (2003),Comedy|Sci-Fi +148767,A Kid in Aladdin's Palace (1998),Adventure|Children +148769,The Education Of Shelby Knox (2005),Documentary +148771,The Girl on the Stone (2007),Drama +148773,Spy School (2008),Action|Adventure|Children|Comedy +148775,Wizards of Waverly Place: The Movie (2009),Adventure|Children|Comedy|Drama|Fantasy|Sci-Fi +148777,China Dolls (1992),(no genres listed) +148779,Second Skin (2009),Documentary +148781,Under the Electric Sky (2014),Documentary +148783,The Pit (2009),Documentary +148785,One Six Right (2005),Documentary +148789,The Hunchedback Horse (1947),(no genres listed) +148791,Paris Follies (2014),Comedy +148793,Friends from France (2013),Drama +148795,Fatherland (1986),(no genres listed) +148797,Ginger & Cinnamon (2003),Comedy|Drama|Romance +148799,Be Seeing You (1968),Documentary +148801,10%: What Makes a Hero? (2013),Adventure|Documentary +148803,100 Ghost Street: The Return of Richard Speck (2012),Horror +148805,The Unwanted (2014),Drama|Horror|Mystery +148807,The Wall (1983),(no genres listed) +148809,Another Way (1982),Drama +148811,The Legend of Bhagat Singh (2002),Drama +148814,Stranded (2015),Drama +148816,Gone Too Far! (2014),Comedy +148818,Sawney: Flesh of Man (2012),Horror +148820,Inbred (2012),Horror|Thriller +148824,Chemerical (2009),Documentary +148826,Le bonheur d'Elza (2011),(no genres listed) +148828,For Lovers Only (2011),Drama|Romance +148830,Heleno (2012),Drama +148836,Maidan (2014),Documentary +148838,Zhit (2010),Action|Drama +148842,Snowman's Land (2010),Comedy|Crime|Thriller +148844,The Heineken Kidnapping (2011),Crime|Drama|Thriller +148846,The Zookeeper (2001),(no genres listed) +148848,The Pink Floyd and Syd Barrett Story (2003),Documentary +148850,Rudolph's Shiny New Year (1976),Animation|Fantasy +148853,Beltracchi - The Art of the Forgery (2014),Crime|Documentary +148855,Ghost in the Shell: The New Movie (2015),Animation|Sci-Fi +148857,"Christmas, Again (2015)",Drama|Romance +148859,Archipelago (2010),Drama +148861,Sarancha (2014),(no genres listed) +148863,Little Thirteen (2012),Drama +148865,Totally True Love (2011),Action|Children|Drama +148867,Extraction (2015),Thriller +148869,Firetrap (2001),Action|Thriller +148871,Whiffs (1975),Comedy +148875,Ingredients (2009),Documentary +148877,Fencing (1892),(no genres listed) +148879,Nunca en horas de clase (1978),Comedy +148881,World of Tomorrow (2015),Animation|Comedy +148884,Night #1 (2011),Drama +148886,Dinosaur Island (1994),Adventure|Comedy|Fantasy +148888,Zoolander 2 (2016),Comedy +148890,Johan Falk: The Outlaws (2009),Action|Thriller +148892,Johan Falk: Operaatio Satakieli (2009),Action|Thriller +148894,Hex (1973),Drama|Horror +148898,The Pyramid (2007),Action|Crime|Thriller +148902,View From A Blue Moon (2015),(no genres listed) +148904,Anuvahood (2011),Comedy +148906,Shadey (1985),(no genres listed) +148909,Tarzan in Manhattan (1989),Action|Adventure +148911,Young Love (2001),Drama|Romance +148913,Die Akte Golgatha (2010),Adventure +148915,Love at the Thanksgiving Day Parade (2012),(no genres listed) +148917,Gangsta Granny (2013),(no genres listed) +148919,Innocent Killers (2015),Comedy|Crime +148921,The Legend of Barney Thomson (2015),Comedy|Drama|Thriller +148923,Mississippi Damned (2009),(no genres listed) +148926,Ice Spiders (2007),Horror|Sci-Fi|Thriller +148928,Unbranded (2015),Documentary +148930,Death in a French Garden (1985),Crime|Drama|Mystery|Romance +148932,The Lion Guard: Return of the Roar (2015),Animation +148934,The Samurai That Night (2012),Drama +148936,After School (2008),(no genres listed) +148938,"Justice, My Foot! (1992)",Comedy|Drama +148940,Fight Back to School (1991),Action|Comedy +148942,His Name was King (1971),Western +148944,The Lily of Belgium (1915),Animation +148946,The Kindergarten Teacher (2014),Drama +148948,A Fighter's Blues (2000),Drama|Romance +148950,72 Tenants of Prosperity (2010),Comedy +148952,Vampire Circus (1972),Horror +148954,Hitting the Apex (2015),Documentary +148956,How to Be Single (2016),Comedy|Romance +148958,Huge (2011),(no genres listed) +148960,Winning Dad (2015),(no genres listed) +148962,Wir sind die Neuen (2014),Comedy +148964,Memories of the Sword (2015),Action|Adventure|Drama +148966,The Nesting (2015),Thriller +148968,Encounters (2014),Horror|Mystery|Sci-Fi +148970,Anguish (2015),Horror +148972,Doctor Mordrid (1992),Action|Fantasy|Sci-Fi|Thriller +148974,Winning: The Racing Life of Paul Newman (2015),Documentary +148976,Marvel Super Hero Adventures: Frost Fight! (2015),Animation|Fantasy +148978,Blue Exorcist: The Movie (2012),Animation|Fantasy|Horror|Mystery +148980,Finders Keepers (2015),Documentary +148982,Devil Dog: The Hound of Hell (1978),Horror +148984,The Propaganda Game (2015),Documentary +148986,Darkness on the Edge of Town (2015),Thriller +148988,Two Step (2015),Crime|Drama|Thriller +148990,The Brave Archer (1977),Action|Drama +148992,The Brave Archer 2 (1978),Action|Drama +148994,The Brave Archer 3 (1981),Action|Drama +149001,Assassins Run (2013),Action|Crime|Thriller +149004,Bolshoi Babylon (2015),Documentary +149007,Bowery Buckaroos (1947),Comedy|Western +149009,She Who Must Burn,(no genres listed) +149011,He Never Died (2015),Comedy|Drama|Horror +149020,Night Into Morning (1951),(no genres listed) +149026,Shutter (2013),Thriller +149028,Sinatra (1992),Drama +149030,Steelyard Blues (1973),Comedy|Crime|Drama +149032,Flirting with Fate (1916),(no genres listed) +149034,The Assassin (1961),Crime|Mystery|Thriller +149038,The Assassin (1967),Action|Drama +149041,10+10 (2011),(no genres listed) +149043,"The Green, Green Grass of Home (1982)",Drama +149045,Cheerful Wind (1981),Drama|Romance +149047,Cute Girl (1980),Drama|Romance +149068,The Battle Wizard (1977),Action +149070,The Black Marble (1980),Comedy|Crime|Romance +149072,The Last Fall (2012),Drama +149075,Troublemakers (1994),Western +149077,The Perfect Weapon (1991),Action|Drama +149080,A Fare to Remember,(no genres listed) +149082,OzLand (2015),Drama|Fantasy|Sci-Fi +149084,Another World (2015),Action|Horror|Sci-Fi +149086,Found in Time (2012),(no genres listed) +149088,Raggedy Ann & Andy: A Musical Adventure (1977),Animation +149090,The Code,(no genres listed) +149092,The Christmas Carol (1949),Drama|Fantasy +149094,The Testaments (2000),Drama +149096,Samurai Cop 2: Deadly Vengeance (2015),Action|Comedy|Crime +149098,The Roller Blade Seven (1991),Action|Drama|Sci-Fi +149100,Eskil & Trinidad (2013),Children|Drama +149102,Fraternity Row (1977),Drama +149104,Sunshine Follows Rain (1946),Drama|Romance +149106,Elves (1989),(no genres listed) +149108,Murder in the Dark (2013),Horror|Mystery|Thriller +149110,The Priests (2015),Crime|Drama|Mystery|Thriller +149112,The Accidental Detective (2015),Comedy|Thriller +149114,The Cat Vanishes (2011),Drama|Thriller +149116,The Thin Yellow Line (2015),(no genres listed) +149118,Les Maitres Du Suspense (2014),Comedy +149120,Hands off Mississippi (2007),Adventure|Children|Comedy +149122,The Runway (2010),Comedy|Drama +149124,A Town Without Christmas (2001),(no genres listed) +149126,The Clones (1973),Action|Sci-Fi +149128,The Gnome (2005),(no genres listed) +149130,The Zohar Secret (2015),Comedy|Drama|Sci-Fi +149132,Raw Force (1982),Action|Adventure|Horror +149134,Ratataplan (1979),Comedy +149136,I Made a Splash (1980),(no genres listed) +149138,Il Bi e il Ba (1986),(no genres listed) +149144,Parasyte: Part 1 (2014),Horror|Sci-Fi +149146,Parasyte: Part 2 (2015),Horror|Sci-Fi +149148,Dark Awakening (2014),Horror|Mystery|Thriller +149150,Halfweg (2014),Comedy|Drama +149152,Mr. Miracle (2014),Children|Drama +149154,Uuno Turhapuro – This Is My Life (2004),Comedy +149156,Johtaja Uuno Turhapuro - pisnismies (1998),Comedy +149158,Double-Uuno (1988),(no genres listed) +149160,Uuno Turhapuro - kaksoisagentti (1987),Comedy +149162,Uuno Turhapuro muuttaa maalle (1986),Comedy +149164,Uuno Turhapuron muisti palailee pätkittäin (1983),Comedy +149166,Uuno Turhapuro menettää muistinsa (1982),Comedy +149168,Uuno Turhapuron Aviokriisi (1981),Comedy +149170,Tup-akka-lakko (1980),(no genres listed) +149172,The Test-tube Adult and Simo's Angels (1979),(no genres listed) +149174,"Rautakauppias Uuno Turhapuro, presidentin vävy (1978)",(no genres listed) +149176,Häpy Endkö? Eli kuinka Uuno Turhapuro sai niin kauniin ja rikkaan vaimon (1977),(no genres listed) +149178,Lottovoittaja UKK Turhapuro (1976),(no genres listed) +149180,Professori Uuno D.G. Turhapuro (1975),Comedy +149182,Talvivaaran miehet (2015),(no genres listed) +149184,Stealing Christmas (2003),Children|Comedy +149186,Fifty Shades of Black (2016),Comedy|Romance +149188,The Cuckoo Clock (1938),(no genres listed) +149208,Full Hearts and Empty Pockets (1964),Comedy +149210,La Cambiale (1959),Comedy +149218,"Totò, Peppino e i fuorilegge (1956)",Comedy +149234,Pensavo fosse amore invece era un calesse (1991),Comedy +149240,La Banda degli Onesti (1956),Comedy +149242,"Totò, lascia o raddoppia? (1956)",Comedy +149246,Totòtruffa '62 (1961),Comedy +149248,O.S.S. (1946),Drama|War +149252,Beware Of Ladies (1936),Drama +149254,Larceny on the Air (1937),(no genres listed) +149256,The Sheik Steps Out (1937),Comedy +149258,Secret Agent of Japan (1942),(no genres listed) +149260,Mr. Peabody and the Mermaid (1948),Comedy|Fantasy|Romance +149262,Without Honor (1949),Drama +149264,Temptation (1946),Drama +149268,The Pied Piper (1942),(no genres listed) +149270,Life Begins at Eight-Thirty (1942),(no genres listed) +149272,The Moon Is Down (1943),Drama +149274,Happy Land (1943),Drama +149278,A Medal For Benny (1945),(no genres listed) +149280,Colonel Effingham's Raid (1946),Comedy|Romance +149284,Hudson's Bay (1941),Adventure +149286,Earthbound (1940),Fantasy|Mystery +149288,The Great Commandment (1939),Drama +149292,The Man I Married (1940),Drama +149294,Martin Luther (1953),Drama +149296,Unlocking the Cage,(no genres listed) +149298,Jane (1962),(no genres listed) +149300,1 P.M. (1972),Documentary +149302,Town Bloody Hall (1979),Documentary +149306,Jimi Plays Monterey (1986),(no genres listed) +149308,Depeche Mode: 101 (1989),(no genres listed) +149310,The Return of the War Room (2008),(no genres listed) +149314,Elaine Stritch: At Liberty (2002),(no genres listed) +149316,Depeche Mode: The Videos 86-98 (1998),(no genres listed) +149318,David Bowie - Best Of Bowie (2002),(no genres listed) +149320,Assume the Position with Mr. Wuhl (2007),Comedy +149322,Successful Alcoholics (2010),Comedy +149324,The Pee-wee Herman Show (1981),Comedy +149326,The Broken Tower (2011),Drama +149328,Dreamkeeper (2003),Children|Drama +149330,A Cosmic Christmas (1977),(no genres listed) +149332,The Monster of Mangatiti (2015),Documentary|Drama +149334,Nocturnal Animals,Drama|Thriller +149336,A Tale of Two Thieves (2014),Documentary +149338,Tyke Elephant Outlaw (2015),Documentary +149340,A Syrian Love Story (2015),Documentary +149342,The Pardon (2013),Crime|Drama +149344,Pete's Christmas (2013),Children|Fantasy +149346,Homeland (Iraq Year Zero) (2015),(no genres listed) +149348,Unnatural (2015),Action|Horror|Thriller +149350,Lumberjack Man (2015),Comedy|Horror +149352,Daddy's Home (2015),Comedy +149354,Sisters (2015),Children|Comedy +149356,Defending Santa (2013),(no genres listed) +149358,Homemade Hillbilly Jam (2005),(no genres listed) +149360,Pleasure Factory (2007),Action|Adventure|Drama|Romance +149362,Gonchi (2015),Documentary +149364,The Christmas Secret (2014),(no genres listed) +149366,Just in Time for Christmas (2015),Children|Drama|Fantasy|Romance +149368,A Christmas Detour (2015),Romance +149370,Angel of Christmas (2015),Children +149372,Once Upon A Holiday (2015),Children|Romance +149374,"Murder, She Baked: A Chocolate Chip Cookie Mystery (2015)",Mystery +149376,Night Of The Living Deb (2015),Comedy|Horror +149378,"Murder, She Baked: A Plum Pudding Murder Mystery (2015)",Mystery +149380,'Tis the Season for Love (2015),Romance +149382,Ice Sculpture Christmas (2015),Romance +149384,Charming Christmas (2015),(no genres listed) +149386,I'm Not Ready for Christmas (2015),Children +149388,Merry Matrimony (2015),Children|Romance +149390,Christmas Incorporated (2015),Children|Drama +149392,12 Gifts of Christmas (2015),Children +149394,Crown for Christmas (2015),(no genres listed) +149396,The Bridge (2015),(no genres listed) +149398,On the Twelfth Day of Christmas (2015),Children +149400,A Christmas Melody (2015),Comedy|Romance +149402,Santa and the Ice Cream Bunny (1972),Children|Fantasy +149404,Morrer por Amor (2015),Drama +149406,Kung Fu Panda 3 (2016),Action|Adventure|Animation +149408,Mobile Suit Gundam F91 (1991),Animation|Sci-Fi +149410,Mobile Suit Gundam: Char's Counterattack (1988),Action|Animation|Sci-Fi +149412,Legend of the Galactic Heroes: My Conquest Is the Sea of Stars (1988),Animation|Sci-Fi +149416,Everybody Has a Little Secret (2004),Comedy|Romance +149418,The Black Panthers: Vanguard of the Revolution (2015),Documentary +149420,Midnight Sun (2006),Drama +149424,Sweet Lies (Korean) (2008),Comedy|Romance +149426,The Hooligan Factory (2014),Comedy +149428,"Josee, the Tiger and the Fish (2003)",(no genres listed) +149430,Memoirs of a Teenage Amnesiac (2010),Drama|Romance +149432,About Love (2005),Romance +149434,The Slanted Screen (2006),Documentary +149438,Honey and Clover (2006),Drama|Romance +149440,Finding Mr. Destiny (2010),Children|Comedy|Drama|Romance +149442,Villain (2010),Drama +149444,The Harmonium in My Memory (1999),Drama|Romance +149446,Petty Romance (2010),Comedy|Drama +149448,Young Black Jack (2011),(no genres listed) +149450,Very Young Girls (2007),Documentary +149452,Way of Blue Sky (2005),Drama +149454,Ghost (2010),Drama|Fantasy|Mystery +149456,Rainbow Eyes (2007),Romance|Thriller +149458,4th Period Mystery (2009),Horror +149460,Tomorrow's Joe (2011),Action +149464,The Seaside Motel (2010),Comedy|Romance +149466,Yuriko's Aroma (2010),(no genres listed) +149468,Blowfish (2011),Drama|Romance +149470,"Love, Pain and Vice Versa (2008)",Romance|Thriller +149472,"Turn Left, Turn Right (2003)",Romance +149476,Rules of Dating (2005),(no genres listed) +149478,Just Walking (2008),Crime|Drama|Thriller +149482,Diary of June (2005),Crime|Drama|Mystery|Thriller +149484,All About My Wife (2012),Comedy|Romance +149486,A Perfect Christmas List (2014),Children|Comedy|Drama +149488,Christmas Town (2008),Action|Children|Comedy|Drama|Fantasy|Thriller +149490,Waiting in the Dark (2006),Drama|Romance +149492,Love in Disguise (2010),Comedy|Romance +149494,Black Kiss (2004),Crime|Drama|Horror|Mystery|Romance +149496,Code Name: Jackal (2012),Action|Comedy +149498,Perfect Number (2012),Drama +149500,My P.S. Partner (2012),Comedy|Drama|Romance +149502,101次求婚,(no genres listed) +149504,Akko's Secret (2012),Comedy|Fantasy|Romance +149506,Dorfman (2011),Comedy|Romance +149508,Spellbound (2011),Comedy|Romance +149510,Twinkle (1992),Comedy|Drama|Romance +149512,One Night Surprise (2013),Comedy|Romance +149514,A Christmas Kiss II (2014),Romance +149516,Quatre étoiles (2005),Comedy +149518,The Substitute Husband (1936),Comedy +149520,The Sweet Escape (2015),Comedy +149522,R.O.T.O.R. (1988),Action|Sci-Fi +149524,Alligator 2 - The Mutation (1991),Horror +149526,Flying (1986),Drama|Romance +149530,Dick Tracy Meets Gruesome (1947),Action|Crime|Mystery|Thriller +149532,Marco Polo: One Hundred Eyes (2015),(no genres listed) +149534,A Brave Heart: The Lizzie Velasquez Story (2015),Documentary +149536,Pizza (2005),Comedy|Romance +149538,The Favor (2007),(no genres listed) +149540,Three Bewildered People in the Night (1987),(no genres listed) +149542,The Doe Boy (2001),Drama|Romance +149546,"Nestor, the Long-Eared Christmas Donkey (1977)",Animation|Children +149548,Act Like You Love Me (2013),(no genres listed) +149550,Gone Fishing (2012),Children|Drama +149552,Krisha (2015),(no genres listed) +149554,All My Sons (1948),Crime|Drama +149556,Ask a Policeman (1939),Comedy +149558,The Bachelor Father (1931),Comedy|Drama|Romance +149560,The Bohemian Girl (1936),Comedy +149562,'Pimpernel' Smith (1941),Action +149564,Tom Brown's School Days (1940),Children|Drama +149566,Unicorn City (2012),Comedy|Romance +149568,The End of a Great Era (2015),Comedy|Drama +149570,Under the Hawthorn Tree (2010),Drama|Romance +149572,A.R.O.G. (2008),Comedy|Fantasy +149574,Rudolph and Frosty's Christmas in July (1979),Animation|Children|Fantasy +149576,Mistletoe Over Manhattan (2011),(no genres listed) +149578,A Cookie Cutter Christmas (2014),Comedy +149580,Window Wonderland (2013),Comedy|Romance +149582,The Unauthorized Full House Story (2015),Drama +149584,La novia (2015),Drama|Romance +149586,When Santa Fell to Earth (2011),Children|Fantasy +149588,The PHD Movie 2 (2015),Comedy +149590,Standoff (2016),Thriller +149592,My Lucky Star (2013),Comedy|Romance +149594,A Matter of Faith (2014),(no genres listed) +149598,Video Girl (2011),Drama +149600,Love for Sale (2008),Comedy|Drama|Romance +149602,Te presento a Laura (2010),Comedy|Drama|Romance +149604,The Coalition (2013),Drama|Romance +149606,Bajirao Mastani (2015),Romance|War +149608,Chrysalis (2014),Drama|Horror|Sci-Fi +149610,Hot Summer in Barefoot County (1974),Action|Comedy +149612,Swelter (2014),Action|Drama|Thriller +149614,Worlds Apart (2015),Drama +149616,Manuscripts Don't Burn (2013),Crime|Drama +149618,The Colossus of Rhodes (1961),Action|Adventure|Drama|Fantasy +149620,Feng Shui (2004),Drama|Horror|Thriller +149626,Cold Deck (2015),Crime|Drama +149630,Maddalena... zero in condotta (1940),(no genres listed) +149632,Teresa Venerdì (1941),Comedy +149634,A Garibaldian in the Convent (1942),(no genres listed) +149636,La porta del cielo (1945),Drama +149638,The Roof (1956),Drama +149640,The Condemned of Altona (1962),Drama +149642,Steve McQueen: The Man & Le Mans (2015),Documentary +149644,Beyond the Blackboard (2011),Children|Drama +149646,Tired Moonlight (2015),(no genres listed) +149648,Magnificent Doll (1946),Drama +149650,Childhood's End (2015),Drama|Sci-Fi|Thriller +149652,"Arabian Nights: Volume 1, The Restless One (2015)",Drama +149654,The Ditch (2010),Drama +149656,Three Sisters (2012),Documentary +149658,Boruto: Naruto the Movie (2015),Action|Animation|Fantasy +149660,Cold Blood (1975),Thriller +149662,The Mend (2014),Comedy +149664,Headless (2015),Horror +149666,The Beatniks (1960),Crime|Drama +149668,Little Lips (1978),Drama +149670,Namastey London (2007),Drama|Romance +149672,The Human Contract (2008),Drama +149674,Conspiracy of Silence (1991),(no genres listed) +149676,3-Headed Shark Attack (2015),Action|Sci-Fi +149678,Jan Dara (2001),Drama|Romance +149681,Horror High (1974),Horror|Sci-Fi +149683,H3 - Halloween Horror Hostel (2008),Comedy +149686,Mr. Six (2015),Action +149688,The Stone Tape (1972),Horror|Sci-Fi +149690,Going Our Way 2 (2013),Comedy +149692,Whistle and I'll Come to You (1968),(no genres listed) +149694,Jean Charles (2009),Documentary|Drama +149696,So Hard to Forget (2010),Drama +149698,"Ó Paí, Ó (2007)",(no genres listed) +149700,Estamos Juntos (2011),(no genres listed) +149702,Natimorto (2011),Drama +149704,The Famous and the Dead (2009),Drama +149706,Manhunt (1976),Action|Crime|Drama +149709,Barking at the Stars (1998),Action|Comedy|Romance|Sci-Fi|Thriller +149711,Ahora o nunca (2015),Comedy +149713,Comforting Skin (2011),Drama|Fantasy|Horror|Thriller +149715,S: Saigo no Keikan - Dakkan: Recovery of Our Future,(no genres listed) +149717,Naughty or Nice (2012),(no genres listed) +149719,A Perfect Ending (2012),Drama +149721,Asian School Girls (2014),Action|Drama|Thriller +149723,The Last: Naruto the Movie (2014),Action|Animation|Romance +149725,Thou Shalt Laugh 3 (2008),Comedy +149727,Thou Shalt Laugh (2006),Comedy +149729,Thou Shalt Laugh 2 - The Deuce (2007),Comedy +149731,Senn (2013),Adventure|Mystery|Sci-Fi +149733,Pink Floyd: Behind the Wall (2011),Documentary +149735,The Daughter of Dawn (1920),Western +149737,Sein letztes Rennen (2013),Comedy|Drama +149739,Nintendo Quest (2015),Documentary +149741,"Rabin, the Last Day (2015)",Documentary|Drama|Thriller +149745,Le Grand Partage (2015),Comedy +149747,The Alchemist's Letter (2015),Children|Fantasy|Mystery +149749,The Natural History of the Chicken (2000),Documentary +149751,Melinda (1972),Crime|Drama|Romance +149753,Shadows on the Wall (2014),Horror|Sci-Fi +149755,Bethune: The Making of a Hero (1993),Drama|Romance +149757,The Frog Prince,Children +149759,Saving Mr. Wu (2015),Crime|Thriller +149761,100 Days With Mr. Arrogant (2004),Comedy|Romance +149764,The Art of Seduction (2005),Comedy|Drama|Romance +149766,Aurore (2005),Action|Drama +149768,Bakit Hindi Ka Crush Ng Crush Mo? (2013),Comedy|Drama|Romance +149770,We Were Here: Part 1 (2012),(no genres listed) +149772,We Were Here: Part 2 (2012),(no genres listed) +149774,Bride for Rent (2014),Comedy|Romance +149776,Buddha Mountain (2010),Drama +149778,Cannonball Wedlock (2011),Comedy +149780,Love Now (2007),Romance +149782,Altergeist (2014),Horror|Sci-Fi|Thriller +149784,Closed Note (2007),Romance +149786,Crazy (2000),Comedy|Drama +149788,Crazy Waiting (2008),Comedy|Romance +149790,Cyrano Agency (2010),Comedy|Romance +149792,Drop (2009),Action|Comedy +149794,I Just Wanna Hug You (2014),Drama|Romance +149796,Eungyo (2012),Drama|Romance +149798,Five Senses of Eros (2009),Drama|Romance +149800,Cheer Cheer Cheer! (2008),Comedy +149802,Girlfriend Boyfriend (2012),Comedy|Drama|Romance +149804,Goth (2008),Drama|Horror|Mystery|Thriller +149806,Gravity's Clowns (2009),Drama +149808,Hot Young Bloods (2014),Comedy|Drama|Romance +149810,Parade (2010),Drama +149812,Won't Back Down (2014),Documentary +149814,F.C. De Kampioenen: Kampioen zijn blijft plezant (2013),Comedy +149816,Max (1994),(no genres listed) +149818,Seven Songs from the Tundra (2000),(no genres listed) +149820,Corporate Affairs (2008),Comedy +149822,The Work of Director Spike Jonze (2003),Documentary +149824,Amarillo By Morning (1998),Documentary +149826,Secret Society of Souptown (2015),Adventure|Children +149828,The Unseen (1980),Horror +149830,Pride and Prejudice and Zombies (2016),Comedy|Horror|Romance|Thriller +149832,Twelve Mile Road (2003),Drama +149834,Not Since You (2009),Drama|Romance +149836,When Harry Tries to Marry (2011),Comedy|Romance +149840,500 MPH Storm (2013),Action|Sci-Fi +149842,Georg Elser – Einer aus Deutschland (1989),(no genres listed) +149848,Angels' Alley (1948),(no genres listed) +149850,"Another Time, Another Place (1983)",Drama +149852,Arizona Bushwhackers (1968),Western +149854,Avalanche Sharks (2013),Action|Horror|Sci-Fi +149856,Blockade (1938),Drama|War +149858,Blockade (2005),Documentary +149860,Blood and Sand (1922),Drama|Romance +149864,Central Airport (1933),Drama +149866,The Return of Chandu (1934),Action|Adventure|Fantasy|Horror|Sci-Fi +149868,Chandu on the Magic Island (1935),Action|Mystery +149875,Cinderella (1957),Drama|Romance +149877,Cinderella (1977),Comedy +149879,Aschenputtel (2010),Children|Fantasy +149881,La Cenerentola (1981),Comedy +149883,Cinderella (2000),(no genres listed) +149888,Cowboys vs. Dinosaurs (2015),Action|Sci-Fi +149890,Dakota (2008),Drama +149892,Don't Bet on Women (1931),Comedy|Romance +149894,Adventures of Rusty (1945),Adventure|Children +149896,For the Love of Rusty (1947),(no genres listed) +149898,For Those Who Think Young (1964),Comedy|Romance +149900,Freeway Killer (2010),Drama|Horror|Thriller +149902,Garm Wars: The Last Druid (2014),Action|Sci-Fi|Thriller +149904,Grand Old Girl (1935),(no genres listed) +149906,"High Noon, Part II: The Return of Will Kane (1980)",Western +149910,In Old Santa Fe (1934),Comedy|Crime|Romance|Western +149913,Johnny Reno (1966),Action|Western +149917,Little Fugitive (2006),Drama +149919,Love Letters (1984),Drama|Thriller +149925,Never Fear (1949),(no genres listed) +149927,The Forgotten (1989),Action|Thriller +149929,Olvidados (2014),(no genres listed) +149931,Panic On The Air (1936),Drama +149934,Prosperity (1932),Comedy|Drama +149936,Public Enemies (2012),(no genres listed) +149938,Public Enemies (1996),Crime +149940,Running Target (1956),Crime|Romance|Western +149942,Secret Service of the Air (1939),Action|Adventure|Crime +149944,Suddenly It's Spring (1947),Comedy|Romance +149946,Super Shark (2011),Action|Comedy|Sci-Fi +149948,Bone Eater (2007),Horror +149950,The Club (1980),Comedy|Drama +149956,The Doughgirls (1944),Comedy +149958,The End of Summer (2013),Drama +149960,The Final Option (1994),Action|Drama +149965,The Liquidator (1965),Action|Adventure|Comedy +149967,The Phantom Fiend (1932),(no genres listed) +149969,The Lone Hand (1953),(no genres listed) +149971,The Long Memory (1953),Crime +149973,The Redhead and The Cowboy (1951),Action +149978,S&M Judge (2009),Drama +149980,Girl (2002),Drama|Romance +149982,The Invader (2011),Drama +149984,Dennis van Rita (2006),(no genres listed) +149986,Mixed Kebab (2012),Drama +149988,Dossier K. (2009),Action|Crime|Drama|Thriller +149990,Unspoken (2008),Drama +149992,Blind (2007),Drama|Romance +149994,Suspect (2005),Drama +149996,Left Bank (2008),Drama|Horror|Thriller +149998,Wait until spring Bandini (1989),Drama +150000,Zot van A (2010),Comedy|Romance +150002,Sister Smile (2009),Drama +150004,Smoorverliefd (2010),(no genres listed) +150006,"Allez, Eddy! (2012)",(no genres listed) +150008,Suite 16 (1994),Romance|Thriller +150010,Bo (2010),Drama +150012,Oxygen (2010),Drama +150014,De Hel Van Tanger (2006),Drama +150016,Brasserie Romance (2012),Comedy|Drama +150018,Verlengd Weekend (2005),Comedy|Drama +150020,Vrijdag,(no genres listed) +150022,Groenten uit Balen (2011),Drama +150024,Frits and Freddy (2010),Comedy +150026,The Ball (1999),Children +150028,De Indringer (2005),Horror|Mystery|Thriller +150030,Ad Fundum (1993),Drama +150032,Stormforce (2006),Action|Drama|Thriller +150034,My Queen Karo (2009),Drama +150036,Code 37 (2011),Drama +150038,Science Fiction (2002),Adventure|Children|Sci-Fi|Thriller +150040,The Kiss (2004),Drama +150042,Little Black Spiders (2012),Drama +150044,Buitenspel (2005),Drama +150046,A perfect match (2007),Comedy|Drama|Romance +150048,Dirty Mind (2009),Comedy|Drama +150050,Kid (2012),Drama +150052,Turquaze (2010),Children|Drama|Romance +150054,The Man Who Had His Hair Cut Short (1966),Drama +150056,Frits and Franky (2013),Comedy +150058,Doctor Vlimmen (1977),Drama +150060,Eline Vere (1991),Drama +150062,Gaston's War (1997),Drama|Romance|War +150064,Vallen (2001),(no genres listed) +150066,Blinker (1999),Children|Mystery +150068,Swooni (2011),(no genres listed) +150070,Lost Persons Area (2009),Drama +150072,Mariken (2001),Children|Drama|Fantasy +150074,De Leeuw van Vlaanderen (1985),Drama +150076,Cut Loose (2008),(no genres listed) +150078,Everything Must Go (1996),(no genres listed) +150080,Bingo (2013),Comedy +150082,K3 en het IJsprinsesje (2006),Children +150084,De Vlaschaard (1983),Drama +150088,Only the Valiant (1951),Action|Adventure|Drama|Western +150090,The World in His Arms (1952),Action|Romance +150092,See You in Montevideo (2014),Adventure|Comedy +150096,Mission a Tanger (1949),Adventure|Drama +150104,Monsieur Taxi (1952),Comedy|Drama +150106,The Three Musketeers (1953),Adventure +150116,Furia à Bahia pour O.S.S 117 (1965),Action|Crime +150118,Blood on His Sword (1961),Action|Adventure|Drama|Romance +150122,OSS 117 se déchaîne (1963),Action|Crime +150126,Panic in Bangkok (1964),Action|Crime +150130,No Roses for OSS 117 (1968),Action|Crime +150132,"Taxi, Trailer and Bullfight (1958)",Comedy +150134,Sous le signe de Monte Cristo (1968),Adventure +150136,The Four Charlots Musketeers (1973),Adventure|Comedy +150138,The Four Charlots Musketeers 2 (1973),Adventure|Comedy +150140,Noah (2013),Drama +150142,Location Hunting in Palestine (1965),Documentary +150144,Notes Towards an African Orestes (1970),(no genres listed) +150146,La Rabbia Di Pasolini (2008),(no genres listed) +150148,12 Dicembre (1972),Documentary +150150,Syngenor (1990),Horror|Sci-Fi +150152,Slime City (1988),Horror +150154,Summer (2008),Drama +150156,The Pig Farm (2011),Documentary +150162,The Lady of Monza (1969),(no genres listed) +150164,Die Jungfrau auf dem Dach (1954),Comedy +150166,As Long as You're Near Me (1953),Drama +150170,Der letzte Sommer (1954),Drama +150178,"Liane, Jungle Goddess (1956)",Adventure +150184,Jungle Girl and the Slaver (1957),Adventure|Drama|Romance +150186,Zwei unter Millionen (1961),Drama +150190,Proof of the Devil (2015),Horror +150194,Quo vado? (2016),Comedy +150196,The October Man (1947),Drama|Mystery|Thriller +150198,Weaker Sex (1949),(no genres listed) +150202,Morning Departure (1950),Drama +150204,The House in the Square (1951),Drama|Fantasy|Romance +150206,Night Without Sleep (1952),Thriller +150210,Tiger in the Smoke (1956),Crime|Drama|Thriller +150212,Flame in the Streets (1961),(no genres listed) +150214,The Valiant (1962),(no genres listed) +150218,The Fiction Makers (1968),(no genres listed) +150220,Journey to Midnight (1968),Horror +150224,Foreign Exchange (1970),Action|Drama +150226,Windbag the Sailor (1936),Comedy +150228,"Inner Worlds, Outer Worlds (2012)",Documentary +150230,Cool Cat Saves the Kids (2015),Adventure|Children +150232,Bad Hair Day (2015),Adventure|Comedy +150234,Frenemies (2012),Children|Drama +150236,How to Build a Better Boy (2014),Children|Sci-Fi +150238,Water and Fire (2013),Drama|Romance +150240,Baby and Me (2008),(no genres listed) +150242,Araf/Somewhere in Between (2012),Drama +150244,Kept Woman (2015),Drama +150246,Halam Geldi (2014),Drama +150248,The Oregonian (2011),Horror|Mystery|Thriller +150250,Cute and Dangerous (2015),Comedy|Romance +150252,The Rambler (2013),Comedy|Drama|Horror|Mystery +150254,The Devil's Candy (2015),Horror +150256,The Son of an Afghan Farmer (2012),Drama|Romance +150258,Jane Got a Gun (2015),Action|Drama|Western +150260,More Than Blue (2009),Drama|Romance +150262,Megamind: The Button Of Doom (2011),Action|Animation|Children|Comedy +150264,Die Mondverschwörung (2011),Comedy|Documentary +150266,Peggy Guggenheim - Art Addict (2015),(no genres listed) +150268,Dilwale (2015),Action|Children|Comedy|Crime|Drama|Romance +150270,Woodlawn (2015),Drama +150272,Captive (2015),Crime|Drama|Thriller +150274,Shark Lake (2015),Thriller +150276,Riot (2015),Action +150278,Hell & Back (2015),Animation|Comedy +150280,Plague (2014),Drama|Horror +150282,"White Out, Black In (2014)",Documentary|Drama +150284,Everyday (2012),Drama +150286,Dolly Dearest (1991),Horror +150288,The Fifth Floor (1978),Thriller +150292,Blue and Not So Pink (2012),Drama +150294,The Forest (2016),Horror|Thriller +150296,Guzaarish (2010),Drama|Romance +150298,Sadece Sen (2014),Drama|Romance +150300,Evim Sensin (2012),Fantasy|Romance +150302,Wonderful Radio (2012),Drama +150304,Four Boys and a Gun (1957),Crime|Drama +150306,The Mugger (1958),Drama|Thriller +150308,I Passed for White (1960),Drama +150310,Macbeth (2015),Drama +150312,Sleepless (2001),Crime|Horror|Mystery|Thriller +150316,Ich und Kaminski (2015),Drama +150318,Do Not Disturb (2012),Comedy|Romance +150320,Raavan (2010),Drama|Sci-Fi +150322,Paa (2009),Children|Drama +150324,The Cheetah Girls: One World (2008),Children|Comedy|Drama +150328,Time Lock (1957),Thriller +150334,Rowdy Rathore (2012),Action +150336,Nowhere Safe (2014),Drama +150338,Aşk Kırmızı (2013),Drama|Romance +150340,Khoobsurat (2014),Comedy|Romance +150342,Wazir (2015),(no genres listed) +150344,Bang Bang (2014),Action|Adventure|Romance|Thriller +150346,Approaching the Elephant (2015),(no genres listed) +150348,Warlords of Atlantis (1978),Adventure|Fantasy|Sci-Fi +150350,The House Where Evil Dwells (1982),Horror +150352,Love Forecast (2015),Comedy|Romance +150354,Girl vs. Monster (2012),Children|Comedy|Sci-Fi +150356,The Rage of Paris (1938),Comedy +150358,Coicent (2011),(no genres listed) +150360,Mr. Kaplan (2014),Comedy|Drama|Thriller +150362,La Rizière (2012),(no genres listed) +150364,The Lesson (2014),Drama +150367,Love Me (2014),Documentary +150369,The Boy Who Saw the Wind (2000),(no genres listed) +150371,Of Love and Other Demons (2009),Drama +150373,The Dog of Flanders (1997),Animation|Drama|Romance +150375,"Fuse, Memoirs of the Hunter Girl (2012)",Action|Animation|Drama +150377,Great Expectations (1999),Drama|Romance +150379,Legend of the Millennium Dragon (2011),Adventure|Animation|Fantasy|Sci-Fi +150381,Lines of Wellington (2012),Drama|War +150383,The Mystery of Sintra (2007),Mystery +150385,Miyori's Forest (2007),Animation +150387,Princess Arete (2001),Adventure|Animation|Fantasy +150389,Yona Yona Penguin (2009),(no genres listed) +150391,Pixadores (2014),Documentary +150393,Chronicle of a Blood Merchant (2015),Drama|Romance +150395,Assassination Classroom (2015),Action|Adventure|Sci-Fi +150397,The Partisans (1963),War +150399,Cha Cha Cha (1989),(no genres listed) +150401,Close Range (2015),Action|Crime +150407,The Great Manhunt (1950),Drama|Thriller +150409,The Woman's Angle (1952),Drama|Romance +150413,Little Mother (1973),(no genres listed) +150417,Zeppelin (1971),Adventure|War +150419,The Day the Clown Cried (1972),(no genres listed) +150421,Man on Horseback (1969),(no genres listed) +150425,Lana: Queen of the Amazons (1964),Adventure +150433,Lady of Vengeance (1957),Drama +150435,The Crooked Sky (1957),Drama +150437,The Accursed (1958),(no genres listed) +150441,I Am a Camera (1955),Drama +150443,The Colditz Story (1955),War +150445,Operation Diplomat (1953),Drama +150457,Non Stop Trouble with Spies (1983),Comedy +150459,Tusk (1980),(no genres listed) +150465,Io sono mia (1977),(no genres listed) +150469,Waldrausch (1977),Drama +150473,Vanessa (1977),Drama +150475,Only the Wind Knows the Answer (1974),Crime|Drama +150477,Blood on the Streets (1974),Action|Crime|Drama +150479,The Battle of Sutjeska (1973),War +150481,Hexen geschändet und zu Tode gequält (1973),Horror +150483,Appointment with Venus (1951),Romance +150523,Unrelated (2007),Drama +150532,Disco 9000 (1976),Crime|Drama +150534,Prescription: Murder (1968),(no genres listed) +150536,The Aviators (2009),Animation +150538,Diablo (2015),Action|Adventure|Thriller|Western +150540,Felt (2014),Horror|Romance|Thriller +150542,Lava Kusa-The Warrior Twins (2010),Animation +150544,The Entity (aka La Entidad) (2015),Horror +150546,Africa United (2010),Action|Comedy|Drama +150550,Kung Fu Zombie (1981),Action|Comedy|Horror +150552,Hannah Montana & Miley Cyrus: Best of Both Worlds Concert (2008),Documentary +150554,The Love Bug (1997),Adventure|Children|Comedy|Fantasy +150556,Morning Light (2008),Documentary +150558,AWOL-72 (2015),Thriller +150560,Vampirella (1996),Horror|Sci-Fi +150562,The Deathhead Virgin (1974),Horror +150564,I Like to Hurt People (1985),Comedy|Documentary +150566,Un fantastico via vai (2013),Comedy +150568,2 Autumns 3 Winters (2013),Comedy|Drama +150570,"Decent One, The (Der Anständige) (2014)",Documentary +150572,The Husband She Met Online (2013),Drama|Mystery|Thriller +150574,Nie wieder Liebe (1931),(no genres listed) +150576,Dolly macht Karriere (1930),(no genres listed) +150580,The Lady in the Car with Glasses and a Gun (1970),Drama +150582,Das Lied einer Nacht (1932),Comedy +150584,The Old Devil (1933),(no genres listed) +150586,L'équipage (1935),Drama +150588,The Woman I Love (1937),Drama +150590,Tovarich (1937),Comedy|Drama|Romance +150592,Why We Fight: Divide and Conquer (1943),Documentary +150594,The Deep Blue Sea (1955),Drama|Romance +150598,The Guvnors (2014),Crime|Thriller +150600,The Rise & Fall of a White Collar Hooligan (2012),Crime|Thriller +150602,Band of Robbers (2016),Adventure|Comedy|Crime|Thriller +150604,Moonwalkers (2015),Comedy +150606,The Girl and Death (2012),Drama|Romance +150608,Ellis (2015),Drama +150610,Der böse Onkel (2013),Comedy|Drama +150612,Rumors of Wars (2014),Thriller +150615,In girum imus nocte et consumimur igni (1978),(no genres listed) +150617,Can Dialectics Break Bricks? (1973),(no genres listed) +150619,The New Watchdogs (2012),Documentary +150621,Jean-Philippe (2006),Comedy +150623,Valkaama (2010),Drama +150629,Las aventuras de Oliver Twist (1987),(no genres listed) +150631,Protéger et servir (2010),Comedy +150633,Christ lives in Siberia (2015),Documentary +150635,The Battle Of The Villa Fiorita (1965),Drama +150637,Don Quixote (1957),Drama +150641,Return of the Texan (1952),Drama|Western +150645,Quick Before It Melts (1965),(no genres listed) +150649,Kansas: Miracles Out Of Nowhere (2015),Documentary +150651,Derrick contre Superman (1992),Comedy +150653,Empire of Dirt (2013),Drama +150655,Aimy in a Cage,Drama|Fantasy|Sci-Fi +150657,Trophy Kids,Documentary +150659,Journey to Le Mans (2014),Documentary +150661,Cat and Mouse (1974),Action|Drama +150663,"American Tragedy, An (1931)",Drama|Romance +150665,Marx Reloaded (2011),(no genres listed) +150667,Low & Clear (2012),Documentary +150669,أهواك (2015),(no genres listed) +150671,Light of My Eyes (2010),(no genres listed) +150676,The Other Half of the Sky: A China Memoir (1975),(no genres listed) +150678,Princess Sakura: Forbidden Pleasures (2013),Romance +150680,Schoolgirl Complex (2013),Drama +150682,NSFW: Not Safe for Work (2014),Comedy|Drama|Romance +150684,Schoolgirl Hitchhikers (1973),Comedy|Crime|Drama|Thriller +150686,The Curious Female (1970),Sci-Fi +150688,Plastic Galaxy: The Story of Star Wars Toys (2014),Documentary +150692,The Sperm (2007),Comedy +150694,Uncanny (2015),Drama|Sci-Fi|Thriller +150696,Tomorrow (2015),Documentary +150698,Casa Amor: Exclusive for Ladies (2015),Comedy|Romance +150700,Kartoffelsalat - Nicht Fragen! (2015),Comedy|Horror +150704,The Spy with a Cold Nose (1966),(no genres listed) +150708,The Dollmaker (1984),Drama +150710,The Execution of Raymond Graham (1985),(no genres listed) +150716,The Bay Boy (1984),Drama +150718,DSKNECTD (2013),Documentary +150722,Aliens on the Moon: The Truth Exposed (2014),Documentary +150724,Army Dog (2016),(no genres listed) +150726,The 7:39 (2014),Drama|Romance +150728,All for One (2011),Comedy +150730,Jackpot (2011),Action|Comedy|Crime +150732,The Reunion (2011),Comedy +150734,The Breakup Guru (2014),Comedy|Romance +150736,Love Lesson (2013),Drama|Romance +150738,The Bofors Gun (1968),(no genres listed) +150740,Conflict (1973),Drama +150742,Who? (1973),Drama|Sci-Fi +150744,The National Health (1973),Comedy +150748,Charlie Muffin (1979),(no genres listed) +150750,The Chain (1984),(no genres listed) +150752,The Rose and the Jackal (1990),Adventure|Western +150756,Kent State (1981),(no genres listed) +150760,Red Sky At Morning (1971),Drama|Romance +150762,Jigsaw (1968),Mystery|Thriller +150764,Scalplock (1966),Western +150766,One Track Heart: The Story of Krishna Das (2013),Documentary +150768,Wire Cutters (2014),Animation +150770,Die Laughing (1980),Comedy +150772,Madalena (1960),Comedy|Drama +150774,The Correspondence (2016),Drama|Romance +150776,Tag (2015),Horror|Thriller +150778,The Dark Side of the Moon (2015),Crime|Drama|Thriller +150780,100 Yen: The Japanese Arcade Experience (2012),Documentary +150782,Welcome Home (1989),(no genres listed) +150784,The Stripper (1963),Drama|Romance +150786,Dark Country (2009),Horror|Thriller +150788,Songs From the North (2014),(no genres listed) +150790,We'll Take Manhattan (2012),Drama|Romance +150792,The Mark of the Hawk (1957),(no genres listed) +150794,Nine Muses of Star Empire (2014),(no genres listed) +150796,The Lord of Catan (2014),Comedy|Drama|Fantasy +150798,Why Change Your Wife? (1920),Comedy|Drama|Romance +150800,Miss Lulu Bett (1921),Comedy|Drama +150802,Tears on the Lion's Mane (1962),(no genres listed) +150808,Sherlock Holmes and the Deadly Necklace (1962),Drama|Mystery|Romance|Thriller +150810,Home To Danger (1951),Crime|Mystery|Thriller +150812,Mantrap (1953),Crime|Thriller +150814,Spaceways (1953),Sci-Fi|Thriller +150818,Face the Music (1954),Crime|Drama +150820,The Unholy Four (1954),Drama +150822,Mask of Dust (1954),Drama +150832,The Astonished Heart (1950),Drama|Romance +150834,Marry Me (1949),Comedy|Romance +150836,Kill Me Tomorrow (1957),Crime|Thriller +150838,Fuck for Forest (2012),(no genres listed) +150840,The Stranglers of Bombay (1959),Action|Adventure +150842,The Two Faces of Dr. Jekyll (1960),Horror|Romance|Sci-Fi +150844,A Journey into Bliss (2004),Comedy|Fantasy +150846,Asu Mare (2013),(no genres listed) +150848,The Confines (2016),Horror|Mystery|Thriller +150850,I Survived a Zombie Holocaust (2014),Comedy|Horror +150852,Kotoko (2011),Drama|Horror +150854,The West (1996),(no genres listed) +150858,Cougar Hunting (2011),Comedy|Romance +150860,Flag Wars (2003),Documentary +150862,Evaporating Borders (2014),Documentary +150864,80 Milionów (2011),Action +150866,Beats of Freedom (2009),Documentary +150868,Jasne Błękitne Okna,(no genres listed) +150870,Tekken: Blood Vengeance (2011),Action|Animation +150872,Columbo-Ransom for a Dead Man (1971),(no genres listed) +150874,Splinters (2009),Documentary|Horror|Thriller +150876,"Job, czyli ostatnia szara komórka (2006)",Comedy +150878,Wszystko będzie dobrze (2007),(no genres listed) +150880,Ajlawju (1999),(no genres listed) +150882,Happy New York (1997),Comedy +150884,Black Thursday (2011),Thriller +150886,Porno (1990),Comedy|Romance +150888,Mr. Kuka's Advice,(no genres listed) +150890,Destined for Blues (2005),Drama +150892,Last Order: Final Fantasy VII (2005),Action|Adventure|Animation +150894,Naruto the Movie: Ninja Clash in the Land of Snow (2004),Action|Adventure|Animation|Comedy +150896,Walesa: Man of Hope (2013),Drama +150898,General Nil (2009),(no genres listed) +150900,Top Gear: The Worst Car In the History of the World (2012),(no genres listed) +150902,Supermarket (2012),Thriller +150904,"Dzień dobry, kocham cię! (2014)",Comedy +150906,How Much Does the Trojan Horse Weigh? (2008),(no genres listed) +150908,Maicol Jecson (2014),Comedy +150910,Sisyphus (1974),Animation +150912,Checkered Flag or Crash (1977),Action|Adventure|Comedy +150914,Goodbye Gemini (1970),Drama +150916,Vendetta for the Saint (1979),(no genres listed) +150918,The Hi-Jackers (1963),Crime +150922,Frozen Silence (2012),Drama|Mystery|War +150931,Bridge To Terabithia (1985),Children|Drama|Fantasy +150933,Broken Strings (1940),Drama +150935,Crooner (1932),Comedy +150937,Dempsey (1983),Drama +150939,Descendents (2008),Horror|Sci-Fi|Thriller +150941,Trouble (2005),Thriller +150944,Exclusive Story (1936),Crime +150946,Fast Workers (1933),Drama +150948,Forty Little Mothers (1940),(no genres listed) +150950,Harlem Rides the Range (1939),Western +150952,King (1978),Drama +150954,Ko (2011),Action|Children|Thriller +150956,King (2008),Action|Comedy|Crime|Documentary +150962,Little Big Shot (1935),Comedy|Crime|Drama +150964,Mickey (1918),Comedy|Drama +150968,Midnight Shadow (1939),Mystery +150970,Miracle in Harlem (1948),(no genres listed) +150972,My Dog Rusty (1948),(no genres listed) +150974,Trash (1999),Drama +150976,Old 37 (2015),(no genres listed) +150979,Shaolin Handlock (1978),Action|Thriller +150981,Smugglers' Cove (1948),Action|Comedy +150983,Special Agent (1949),Thriller +150986,Spirit of Youth (1938),(no genres listed) +150988,Swing! (1938),Drama +150990,The Famous Ferguson Case (1932),Crime|Drama +150993,Anacleto: Agente secreto (2015),Action|Comedy +150995,Retribution (2015),Action|Mystery|Thriller +151001,Justice for Natalee Holloway (2011),Crime|Drama|Mystery|Thriller +151008,The Last Survivors (1975),Drama +151011,The Secret of the Magic Gourd (2007),Children|Drama +151015,Tumbleweed (1953),Western +151019,We Who Are About to Die (1937),(no genres listed) +151021,Woman's World (1954),Drama +151023,The Garden of Women (1954),Drama +151027,Burroughs: The Movie (1983),Documentary +151030,A Poem is a Naked Person (1974),Documentary +151032,Faces of November (1964),Documentary +151036,David Golder (1931),Drama +151038,Poil de Carotte (1925),Drama +151040,La tête d'un homme (1933),Crime|Mystery|Thriller +151044,Diaboliquement vôtre (1967),Crime|Drama|Thriller +151046,Chair de poule (1963),Crime|Drama +151050,The Burning Court (1962),Drama|Horror|Mystery|Thriller +151052,Boulevard (1960),Comedy|Drama +151054,Marie-Octobre (1959),Drama +151058,Lovers of Paris (1957),Drama +151060,The Man in the Raincoat (1957),Comedy|Mystery +151062,Deadlier Than the Male (1956),Drama|Thriller +151064,Marianne of My Youth (1955),Drama|Fantasy|Romance +151068,On Trial (1954),Drama +151070,Holiday for Henrietta (1952),Comedy +151072,Under the Paris Sky (1951),Drama +151074,Captain Blackjack (1950),Adventure +151076,The Sinners (1949),Drama|Romance +151078,Panic (1946),Drama +151080,Destiny (1944),Crime +151082,Strange Confession (1944),Drama|War +151084,Flesh and Fantasy (1943),Drama|Fantasy|Romance +151089,The Phantom Wagon (1939),Drama|Fantasy +151091,La fin du jour (1939),Drama +151094,The Golem (1936),Fantasy|Horror +151099,Maria Chapdelaine (1934),Drama +151105,Au bonheur des dames (1930),Drama|Romance +151107,The Red Head (1932),Drama +151109,Maman Colibri (1929),Drama +151111,Le mystère de la tour Eiffel (1927),Drama +151113,A Man Called Ove (2015),Comedy|Drama +151115,"Taxi, Mister (1943)",(no genres listed) +151117,Let's Sing Again (1936),(no genres listed) +151119,"My Pal, the King (1932)",Western +151121,The Big Cage (1933),(no genres listed) +151123,Secret of the Blue Room (1933),Drama|Horror|Mystery +151125,King for a Night (1933),Crime +151127,Wake Up and Dream (1934),(no genres listed) +151131,The Affair of Susan (1935),Comedy|Romance +151133,Rainbow on the River (1936),(no genres listed) +151135,Espionage (1937),Drama +151137,Make a Wish (1937),(no genres listed) +151139,Carnival Story (1954),Drama|Romance +151141,Hiawatha (1952),Drama|Romance|Western +151143,Tarzan and the She-Devil (1953),Action|Adventure +151145,She Devil (1957),Horror|Sci-Fi +151149,They Were So Young (1954),Crime +151151,The Ring (1952),Comedy|Drama +151157,Cattle Drive (1951),(no genres listed) +151161,Badmen of Tombstone (1949),(no genres listed) +151163,Tarzan and the Leopard Woman (1946),Action|Adventure|Romance +151165,Machete (1958),Drama +151167,The Unknown Guest (1943),(no genres listed) +151171,"Touchdown, Army (1938)",(no genres listed) +151173,Unmarried (1939),Action|Drama|Romance +151175,Island of Lost Men (1939),(no genres listed) +151177,"Ellery Queen, Master Detective (1940)",Adventure|Crime|Drama|Mystery +151179,Brooklyn Orchid (1942),(no genres listed) +151181,About Face (1942),Comedy +151183,Fall In (1943),(no genres listed) +151185,The McGuerins from Brooklyn (1942),(no genres listed) +151187,Yanks Ahoy (1943),(no genres listed) +151189,The Forest (2009),(no genres listed) +151191,A Gentle Spirit (1987),Animation +151193,The Image (1975),Drama +151195,El Cortez (2006),Drama|Thriller +151197,Decoding Deepak (2012),Documentary +151199,"Un peu, beaucoup, aveuglément (2015)",Comedy +151202,Illegal in Blue (1995),(no genres listed) +151204,"Mom, Can I Keep Her? (1998)",Children|Comedy +151208,The Kid with X-Ray Eyes (1999),Children|Comedy +151210,Graveyard Shift (1987),Horror +151212,The Understudy: Graveyard Shift II (1988),Horror +151214,Witchcraft (1989),Horror +151216,Witchcraft II: The Temptress (1990),Horror +151218,Witchcraft III: The Kiss of Death (1991),Horror +151222,Mandroid (1993),Action|Horror|Sci-Fi +151224,Prehysteria! (1993),Children|Comedy|Drama|Fantasy|Sci-Fi +151226,Deathstalker and the Warriors from Hell (1988),Action|Adventure|Fantasy +151228,Deathstalker IV: Match of Titans (1991),Action|Adventure|Fantasy +151230,Dream a Little Dream 2 (1995),Comedy|Sci-Fi +151271,Death in the Vatican (1982),(no genres listed) +151273,Prehysteria! 2 (1994),Children|Comedy|Drama|Fantasy|Sci-Fi +151275,Prehysteria! 3 (1995),Children|Comedy|Drama|Fantasy|Sci-Fi +151277,Chico - Artista Brasileiro (2015),Documentary +151279,The Seventh Company Has Been Found (1975),Comedy +151281,The Seventh Company Outdoors (1977),Comedy +151285,"I 2 gattoni a nove code... e mezza, ad Amsterdam (1972)",(no genres listed) +151289,Operation Poker (1965),Action|Adventure|Crime|Sci-Fi +151295,Le Mans scorciatoia per l'inferno (1970),(no genres listed) +151297,Trusting Is Good... Shooting Is Better (1968),Comedy|Western +151299,Sheriff with the Gold (1966),Western +151301,Sexy proibitissimo (1963),Documentary +151303,Hercules Against the Sons of the Sun (1964),Adventure +151305,Kindar the Invulnerable (1965),Action|Adventure +151307,The Lovers and the Despot,(no genres listed) +151309,Michael Jackson's Journey from Motown to Off the Wall (2016),Documentary +151311,Wiener-Dog (2016),Comedy +151313,Norm of the North (2016),Adventure|Animation|Children|Comedy +151315,Ride Along 2 (2016),Action|Comedy +151317,Maggie's Plan (2015),Comedy +151319,Notias (2016),Comedy|Drama +151321,Toss-Up (2004),Drama +151325,Jona Che Visse Nella Balena (1993),(no genres listed) +151327,According to Pereira (1996),(no genres listed) +151333,Anita B. (2014),Drama +151335,The Days of Abandonment (2005),(no genres listed) +151337,I Vicerè (2007),Drama|Romance +151341,Silvio Forever (2011),(no genres listed) +151343,The Raspberry Reich (2004),Action|Comedy|Drama|Thriller +151345,Batman: Bad Blood (2016),Animation +151347,Ah Boys To Men (Part 1) (2012),(no genres listed) +151349,15 (2003),Comedy|Crime|Drama +151351,To Singapore with Love (2013),Documentary +151353,Cleopatra Wong (1978),Action|Drama +151355,Under Electric Clouds (2015),Drama|Sci-Fi +151357,The Bible (2013),Drama +151359,Hollywood on Trial (1976),(no genres listed) +151361,Something Short of Paradise (1979),Comedy|Drama|Romance +151363,I'm a Stranger Here Myself (1975),Documentary +151365,Weasels Rip My Flesh (1979),Horror|Sci-Fi +151367,Twisted Seduction (2010),Comedy|Romance|Thriller +151369,Spanish Lake (2014),Documentary +151371,Being Ginger (2013),Documentary +151373,Streets (2012),(no genres listed) +151375,Slow Burn (2000),Adventure|Thriller +151377,The Nurse (2014),Thriller +151379,Operation Zucker (2013),(no genres listed) +151382,Keep Surfing (2009),Documentary +151384,Plastic Planet (2009),Documentary +151388,Pian delle stelle (1946),Drama|War +151400,The Bacchantes (1961),Action|Fantasy +151402,The Trojan Horse (1961),Adventure +151404,Hercules vs. Moloch (1963),Adventure|Drama +151410,The Lion of Thebes (1964),Action|Adventure|Drama +151412,Blood for a Silver Dollar (1965),Action|Romance|Western +151414,Wood Job! (2014),Comedy|Drama +151416,Secret Agent Super Dragon (1966),Action|Adventure +151418,For a Few Extra Dollars (1966),War|Western +151420,Wanted (1967),(no genres listed) +151424,The Battle of El Alamein (1969),Drama|War +151426,L'arciere di fuoco (1971),Adventure +151431,Melhores do Mundo - Hermanoteu na Terra de Godah (2009),Comedy +151433,Mill of the Stone Women (1960),Horror|Sci-Fi +151435,On Earth as It Is in Heaven (1992),(no genres listed) +151437,I Was a Teenage Serial Killer (1993),Crime +151439,The Student Nurses (1970),Drama +151441,BaadAsssss Cinema (2002),Action|Documentary +151443,Sisters in Law (2005),(no genres listed) +151445,One Way or Another (1978),Documentary|Drama +151447,Riddles of the Sphinx (1977),Documentary|Drama +151449,"One Sings, the Other Doesn't (1977)",(no genres listed) +151451,My Boyfriend an Angel (2011),Comedy|Fantasy|Romance +151453,Yardbird (2012),(no genres listed) +151455,Eddie the Eagle (2016),Comedy +151457,Bad Boys (1961),(no genres listed) +151459,Airlift (2016),Drama|Thriller +151461,Fitoor (2016),(no genres listed) +151463,If You Want to Live... Shoot! (1968),Western +151465,No Graves on Boot Hill (1968),Western +151467,No Room To Die (1969),Western +151469,Last Harem (1981),Adventure|Drama +151471,Kill Django...Kill First (1971),Western +151473,Terrible Day of the Big Gundown (1971),(no genres listed) +151475,Evil Face (1974),Horror +151477,Lover of the Monster (1974),Horror +151479,The Flash 2 - Revenge of the Trickster (1991),Action|Fantasy|Sci-Fi +151481,Dracula's Dog (1978),Horror +151483,Nebesnyy sud (2012),(no genres listed) +151485,The Lighthouse (1998),Drama +151487,Sammy and Me (2002),Comedy|Drama|Romance +151489,The Education of Fairies (2006),Drama +151491,Lovely Loneliness (2009),(no genres listed) +151493,The Dancer and the Thief (2009),Drama +151495,En fuera de juego (2012),(no genres listed) +151497,Violet (2014),(no genres listed) +151499,Chicken Ranch (1983),Documentary +151501,Exposed (2016),Drama +151503,Bloody Reunion (2006),Horror|Mystery|Thriller +151505,Carpet Racers (2009),Documentary +151507,Terminus (2015),Sci-Fi|Thriller +151509,Red Wing (2013),Drama +151511,Tetsujin 28 (2005),Action|Adventure|Fantasy +151513,Kick-Heart (2013),Animation|Comedy|Romance +151515,My King (2015),Drama|Romance +151517,Beauty and the Breast,(no genres listed) +151519,Fluke (2008),Comedy +151521,The Homestretch (2014),Documentary +151523,The Perfect 46 (2014),Drama|Sci-Fi +151525,Index Zero (2014),(no genres listed) +151527,Fires on the Plain (2014),Drama +151529,Io bacio... tu baci (1961),Comedy +151537,Satanik (1968),Sci-Fi|Thriller +151539,The Black Decameron (1972),Drama +151541,Provocazione (1988),(no genres listed) +151543,Parviz (2012),(no genres listed) +151545,The Amateur (1999),(no genres listed) +151547,Daawat-e-Ishq (2014),Comedy|Drama|Romance +151549,Five Star (2014),Drama +151551,A Man Called Hero (1999),Action|Adventure|Drama +151555,"It's Not You, It's Me (2013)",Comedy +151557,Stonewall (2015),Drama +151559,Frankenstein (2015),Horror|Thriller +151561,Monk Comes Down The Mountain (2015),Action|Comedy +151563,Fatima (2015),Drama +151565,Blind Woman's Curse (1970),Action|Crime|Drama|Horror +151567,The War in Space (1977),Action|Adventure|Sci-Fi +151569,The Old Fairy Tale: When the Sun Was God (2003),Drama|Fantasy +151571,Bloodsuckers (1991),Horror|Thriller +151573,What a Mess! (1995),Comedy +151575,When I'm Sixty-four (2004),Drama +151577,ABCD (Any Body Can Dance) (2013),Drama|Romance +151579,The Falling Man (1969),(no genres listed) +151581,Il terrorista (1963),(no genres listed) +151583,The Face Reader (2013),(no genres listed) +151585,Liquidation (2007),(no genres listed) +151587,The Staircase II: The Last Chance (2013),Documentary +151589,Bloodworth (2010),Drama|Romance +151591,The Wannabe (2015),Crime|Drama|Mystery|Thriller +151593,Martyrs (2016),(no genres listed) +151595,Big Stone Gap (2015),Comedy|Romance +151597,Racing Extinction (2015),Action|Adventure|Documentary +151599,Capital C (2015),Documentary +151601,I Give My First Love to You (2009),Comedy|Drama|Romance +151603,One & Two (2015),Drama|Fantasy|Thriller +151605,Lo and Behold: Reveries of the Connected World (2016),Documentary +151607,Funky Monkey (2004),Children|Comedy +151609,Kill Kane (2016),Crime|Thriller +151611,Addicted to Sexting (2015),Documentary +151613,Field of Lost Shoes (2014),Action|Drama|War +151615,Hello Stranger (2010),Drama +151617,Water (2014),Drama +151619,Strangers (2007),Drama|Romance|Thriller +151621,Looking for Grace (2015),Drama +151623,Adhurs (2010),Action|Comedy|Drama +151625,Methadonia (2005),Documentary +151627,All Mistakes Buried (2015),Thriller +151629,World Without End (2012),Drama|Romance +151631,Jättiläinen (2016),Drama +151633,La Sapienza (2014),Drama +151635,Seeds of Yesterday (2015),Drama +151637,Soulmate (2013),Horror|Mystery +151639,The Boy (2016),Horror|Thriller +151641,90 Minutes in Heaven (2015),Drama +151643,Vampire Hookers (1978),Comedy|Horror +151645,JeruZalem (2016),Horror +151647,Horse Money (2014),Drama +151649,Blood in the Face (1991),Documentary +151651,The Carboard Bernini (2012),Documentary +151653,Welcome to Happiness (2015),Comedy|Drama|Fantasy +151655,Hundra,Adventure|Fantasy +151657,iMurders (2008),Drama|Horror|Mystery|Thriller +151659,Medeas (2013),(no genres listed) +151661,Autoerotic (2011),Drama|Romance +151663,"Semen, a Love Sample (2005)",Comedy|Romance +151665,Catch My Soul (1974),(no genres listed) +151667,Romance on the Run (1938),(no genres listed) +151669,Genetic Me (2014),(no genres listed) +151671,The Chosen (2015),Thriller +151673,Hustle & Heat (2003),Action|Comedy|Crime|Romance|Thriller +151675,Lazer Team (2016),Comedy|Sci-Fi +151677,Last Hippie Standing (2002),(no genres listed) +151679,The 30 Foot Bride of Candy Rock (1959),Comedy +151681,Blood Brother (2013),Documentary +151683,China Cry: A True Story (1990),Drama +151685,Alone Yet Not Alone (2013),(no genres listed) +151687,Risen (2016),Children|Drama +151689,Obsession: Radical Islam's War Against the West (2005),Documentary +151691,Hollywood High (1976),Comedy +151693,Holy Hell,(no genres listed) +151695,The Survivalist (2015),Drama|Sci-Fi|Thriller +151697,Grand Slam (1967),Thriller +151699,A Long Way From Home (2013),Drama|Romance +151701,Bloodmoney (2010),(no genres listed) +151703,The Butterfly Circus (2009),Drama +151707,The Eagle Huntress (2016),Adventure|Children|Documentary +151709,Zero (2015),Drama|Sci-Fi +151711,The 2000 Year Old Man (1975),(no genres listed) +151715,The White Knights (2016),Drama +151717,Long Way North (2016),Adventure|Animation +151719,Praying with Anger (1992),(no genres listed) +151721,Exit Elena (2012),(no genres listed) +151723,Symphonie diagonale (1924),Animation +151725,Gideon's Trumpet (1980),Crime|Drama +151727,The Piano Lesson (1995),(no genres listed) +151729,Ruby Bridges (1998),Children|Drama +151731,April and the Twisted World (2015),Adventure|Animation|Comedy +151733,Trevor Noah: You Laugh But It's True (2011),Comedy +151735,The Other Side of the Door (2016),Horror +151737,Saturday's Hero (1951),Drama +151739,Dirty Grandpa (2016),Comedy +151741,Black Girl (1972),Drama +151743,Toni Braxton: Unbreak My Heart (2016),Drama +151745,Reptilicus (1961),Horror|Sci-Fi +151747,Aphrodite (1982),Drama +151749,Revenge of the Stepford Wives (1980),Sci-Fi +151753,The Wonders (2013),Mystery +151755,Orleans (2015),Comedy|Drama|Thriller +151757,Fly Me (1973),Action|Drama +151759,Requiem for the American Dream (2015),Documentary +151761,Holy Lola (2004),Drama +151763,Death Note Rewrite: Genshisuru Kami (2007),Mystery +151765,Death Note: R2 - L o Tsugu Mono (2008),Animation|Crime|Drama|Fantasy|Thriller +151767,Monella (1998),Comedy|Romance +151769,Three from Prostokvashino (1978),Animation +151771,Matterhorn (2013),Comedy|Drama +151773,Se Dio vuole (2015),Comedy +151775,Sei mai stata sulla luna? (2015),Comedy|Romance +151777,The Finest Hours (2016),Drama|Thriller +151781,Ghost in the Shell: Solid State Society (2006),Action|Animation|Crime|Sci-Fi|Thriller +151783,Inside The Dark Web (2014),(no genres listed) +151785,Mythos Wald (2011),Documentary +151787,Black Box BRD (2001),Documentary +151789,#Horror (2015),Drama|Horror|Mystery|Thriller +151791,A Gift Wrapped Christmas (2015),Children|Drama +151793,My Last Year With The Nuns (2014),(no genres listed) +151795,White Rage (2015),Documentary|Drama +151797,Absolution (2015),Drama|Thriller +151799,Getting Straight (1970),Comedy|Drama +151802,The Captain from Köpenick (1956),Comedy|Drama +151804,X: Past Is Present (2015),Mystery +151806,Mafalda - La Pelicula (1981),Animation|Children|Comedy|Fantasy +151808,B.B. King: The Life of Riley (2012),Documentary +151810,The Fiend of Athens... (1956),Drama|Thriller +151813,Joy (1983),Drama +151815,Joy (2010),(no genres listed) +151819,Caught (2015),(no genres listed) +151827,The Exile (1947),Adventure|Romance +151829,From Mayerling to Sarajevo (1940),(no genres listed) +151831,There's No Tomorrow (1939),Drama +151833,Werther (1938),Drama|Romance +151835,Yoshiwara (1937),Drama|Romance +151837,The Trouble With Money (1936),Comedy|Drama +151839,The Tender Enemy (1936),Comedy|Fantasy|Romance +151841,Divine (1935),Comedy|Drama +151845,Laughing Heirs (1933),Comedy|Romance +151847,The Bartered Bride (1932),Comedy +151849,The Company's in Love (1932),Comedy +151851,Charley-One-Eye (1973),Western +151854,Devil May Call (2013),Horror +151859,Hart to Hart Returns (1993),Adventure|Crime|Mystery +151861,Hart to Hart: Old Friends Never Die (1994),Adventure|Crime|Mystery +151865,Hart to Hart: Till Death Do Us Hart (1996),Crime|Drama|Mystery +151867,Hart to Hart: Home Is Where the Hart Is (1994),Adventure|Crime|Mystery +151873,Hart to Hart: Secrets of the Hart (1995),Adventure|Crime|Mystery +151879,Molly Moon and the Incredible Book of Hypnotism (2015),Children|Fantasy +151881,Night Watch (2005),Drama +151885,Pioneer Woman (1973),Western +151887,Return of the Sentimental Swordsman (1981),Action +151890,The Lost Patrol (2014),Drama|War +151892,The One I Wrote For You (2014),(no genres listed) +151894,The Quest (1976),Western +151898,Voley (2015),Comedy +151900,Arrowhead (2015),Action|Adventure|Mystery|Sci-Fi +151903,Amazons (1986),Action|Adventure|Fantasy|Sci-Fi +151905,Le Mac (2010),Comedy +151907,Pit №8 (2010),Documentary +151909,Unforgotten Shadows (2013),Adventure|Comedy|Mystery +151911,Lucky Trouble (2011),Comedy|Romance +151913,The Best Movie 2 (2009),Comedy +151915,The Guide (2014),Drama +151917,Jeff (1969),Crime +151919,Le dimanche de la vie (1967),Comedy +151921,Narok (2005),Fantasy|Horror +151923,Transylvanian Garlic (2014),Adventure|Children|Comedy +151925,Creature from the Hillbilly Lagoon (2005),Horror +151927,My All American (2015),Drama +151929,La mies es mucha (1948),Drama +151931,$50K and a Call Girl: A Love Story (2014),Drama +151933,The Birth of a Nation (2016),Drama +151935,Deep Powder (2013),Drama|Thriller +151939,The Intruder (1953),Crime +151941,An Inspector Calls (1954),Crime|Drama|Mystery|Romance +151943,Charley Moon (1956),(no genres listed) +151945,Manuela (1957),Drama +151947,A Touch of Larceny (1959),Comedy +151949,The Party's Over (1965),Drama +151951,Holding the Man (2015),Drama +151953,Blood (1990),Drama|Mystery +151955,Veljet,Documentary +151957,Amerikana (2001),(no genres listed) +151959,The Manchu Eagle Murder Caper Mystery (1975),Comedy|Crime|Mystery|Romance +151961,Hardly a Butterfly (1998),(no genres listed) +151963,Ajnabee (2001),Thriller +151965,Jodi No.1 (2001),Comedy|Drama|Romance +151967,Pyaar Tune Kya Kiya,(no genres listed) +151969,Style (2001),Thriller +151971,Love Ke Liye Kuch Bhi Karega (2001),Comedy +151973,Mujhe Kucch Kehna Hai (2001),Romance +151975,Albela (2001),(no genres listed) +151977,Yaadein (2001),Drama +151979,Indian (2001),Action|Crime|Drama +151981,Tum Bin (2001),(no genres listed) +151983,Aashiq (2001),(no genres listed) +151985,Yeh Raaste Hain Pyaar Ke (2001),(no genres listed) +151987,Aamdani Atthanni Kharcha Rupaiya (2001),Comedy|Drama +151989,The Thorn (1971),Comedy +151991,Rugged Gold (1994),Adventure|Children|Drama +151993,Polycarp (2015),Drama +151997,Titli (2014),Crime|Drama|Thriller +151999,Beware of Christians (2011),Documentary +152001,The Nanny Express (2009),Children|Drama|Romance +152003,Greenery Will Bloom Again (2014),War +152005,Tempo instabile con probabili schiarite (2015),Comedy +152007,Ho ucciso Napoleone (2015),Comedy +152009,Supervolcano (2005),Action|Drama|Thriller +152011,Anjaana Anjaani (2010),Drama|Romance +152013,Na Maloom Afraad (2014),Comedy|Thriller +152015,Live and let Live (2013),(no genres listed) +152017,Me Before You (2016),Drama|Romance +152019,Jarhead 3: The Siege (2016),Action|Drama +152021,Tough (1974),Drama +152023,Land and Shade (2015),Drama +152025,SOMM: Into the Bottle (2016),Documentary +152027,The Treacherous (2015),Drama +152029,Touched With Fire (2015),Drama|Romance +152031,Space Cop (2016),Action|Comedy|Sci-Fi +152033,The Cinema Snob Movie (2012),Comedy +152035,Being in the World (2009),(no genres listed) +152037,Grease Live (2016),(no genres listed) +152039,The Image Revolution (2013),Documentary +152041,100% Love (2011),Drama|Romance +152043,Leader (2010),Drama|Romance +152045,The Wakhan Front (2015),Drama|Fantasy|War +152047,Dunkirk (1958),War +152049,¡Asu Mare! 2 (2015),Comedy +152051,The Nightcomers (1971),Drama|Horror|Thriller +152053,Just Before Nightfall (1971),Crime|Drama +152055,Pandemic (2016),Action +152057,Miles Ahead (2016),Drama +152059,"Crouching Tiger, Hidden Dragon: Sword of Destiny (2016)",Action|Adventure|Drama +152061,Triple 9 (2016),Crime|Drama +152063,Gods of Egypt (2016),Adventure|Fantasy +152065,Embrace of the Serpent (2016),Adventure|Drama +152067,Neerja (2016),Drama +152069,Busco Novio Para Mi Mujer (2016),Comedy +152071,Race (2016),Drama +152073,Providence (2016),Drama|Romance +152075,Of Mind and Music (2014),(no genres listed) +152077,10 Cloverfield Lane (2016),Thriller +152079,London Has Fallen (2016),Action|Crime|Thriller +152081,Zootopia (2016),Action|Adventure|Animation|Children|Comedy +152083,Whiskey Tango Foxtrot (2016),Comedy|War +152085,Desierto (2016),Drama +152087,The Young Messiah (2016),Drama +152089,The Perfect Match (2016),Comedy|Romance +152091,The Brothers Grimsby (2016),Comedy +152093,Swung (2015),Drama|Romance +152095,666: The Beast (2007),Horror|Thriller +152097,Hayride 2 (2015),Action|Horror|Thriller +152099,Jesse Stone: Lost in Paradise (2015),Crime|Drama|Mystery +152101,Chemsex (2015),Documentary +152103,Home Invasion (2016),Thriller +152105,Dad's Army (1971),Comedy +152107,Carry On Henry (1971),Comedy +152109,Carry On Up The Jungle (1970),Comedy +152115,Carry On Matron (1972),Comedy +152117,Zero. Lilac Lithuania (2006),Crime|Thriller +152119,Hannibal Buress: Live From Chicago (2014),Comedy +152121,Carry On at Your Convenience (1971),Comedy +152123,James White (2015),Drama +152125,Carry On Abroad (1972),Comedy +152127,Lagerfeld Confidential (2007),Documentary +152129,Satan's Cheerleaders (1977),Horror +152131,The Source (2011),Comedy|Drama +152133,Loki - Arnaldo Baptista (2008),Documentary +152135,Edith Stein: The Seventh Chamber (1996),Drama|War +152137,Pirate's Passage (2015),Adventure|Animation|Children +152139,Fanie Fourie's Lobola (2013),Comedy|Romance +152141,The Desert (2013),Drama|Sci-Fi +152143,What the Bleep! Down the Rabbit Hole (2006),Documentary|Drama +152145,The Dhamma Brothers (2007),Documentary +152147,Licks (2013),Drama +152149,Dionysus in '69 (1972),(no genres listed) +152151,Cannibal (2013),Thriller +152153,Burning Man (2011),Comedy|Drama|Romance +152155,The Preacher's Mistress (2013),Drama +152157,The Senior Prank (2014),Drama +152161,What Would Jesus Do? (2010),Children +152163,A War (2015),Drama|War +152165,The Makeover (2013),Comedy +152167,Ho visto le stelle (2003),Comedy +152169,There's No Place Like Utopia (2014),Documentary +152171,Michael Jackson - Bad (1987),(no genres listed) +152175,Ghosts (1997),Horror +152177,Blood Widow (2014),Horror +152179,Way of the Wicked (2014),Thriller +152181,Murder Rap: Inside the Biggie and Tupac Murders (2015),Documentary +152183,Top Spin (2014),Documentary +152185,Marie's Story (2014),Drama +152187,Ticky Tacky (2014),Comedy|Drama +152189,Be With You (2004),Drama|Fantasy|Romance +152192,Nannaku Prematho (2016),Action|Romance +152194,Blunt Force Trauma (2015),Action|Adventure +152196,The Wife He Met Online (2012),Thriller +152198,Lapland Odyssey 2 (2015),Comedy +152200,Not Everybody's Lucky Enough to Have Communist Parents (1993),Comedy +152202,Submarine Patrol (1938),Adventure|Drama +152204,Miracles For Sale (1939),Mystery +152206,You Can't Get Away with Murder (1939),Crime|Drama +152208,The Final Member (2012),Documentary +152210,Some Call It Loving (1973),Drama +152212,The Suram fortress (1922),(no genres listed) +152214,Terug Naar Morgen (2015),Drama|Romance|Sci-Fi +152216,Michael Jackson: Video Greatest Hits - HIStory (1995),(no genres listed) +152218,My Bromance (2014),Comedy|Drama +152220,Love's Coming (2014),Comedy|Romance +152222,Agnivarsha: The Fire and the Rain (2002),Drama|Fantasy +152224,Breaking Through (2015),Drama +152226,Kill Game (2015),Horror +152228,Misconduct (2016),Drama|Thriller +152230,"First, the Last, The (Les premiers les derniers) (2016)",(no genres listed) +152232,Bunker Palace Hôtel (1989),Sci-Fi +152234,Il resto di niente (2004),(no genres listed) +152236,Trashed (2012),Documentary +152238,God Loves Uganda (2013),Documentary +152240,Odyssey in Rome (2005),Documentary +152242,From Afar (2015),Drama +152244,Domingo de carnaval (1945),(no genres listed) +152246,Come l'ombra (2007),(no genres listed) +152248,Rosalie Blum (2016),Comedy +152250,Courted (2015),(no genres listed) +152252,Taj Mahal (2015),Drama +152254,Macadam Stories (2015),(no genres listed) +152256,Valley of Love (2015),Drama +152258,In the Shadow of Women (2015),Drama +152260,L'odeur de la mandarine (2015),Drama|Romance +152262,Un plus une (2015),Comedy +152264,Les Anarchistes (2015),Drama|Thriller +152266,Boomerang (2015),Drama +152268,Coup de chaud (2015),Thriller +152270,The Wait (2015),Drama +152272,Une famille à louer (2015),Comedy +152274,Premiers crus (2015),Drama +152278,Un village presque parfait ! (2015),Comedy +152280,Lolo (2015),Comedy +152282,Ange et Gabrielle (2015),Comedy|Romance +152284,War and Peace (2016),Drama|Romance +152286,Carry On Loving (1970),Comedy +152288,The Fear of Darkness (2014),Thriller +152290,The Fear of 13 (2015),Documentary +152292,Mojin: The Lost Legend (2015),Action|Adventure|Fantasy +152296,Trevor Noah: Crazy Normal (2011),Comedy +152298,Trevor Noah: The Daywalker (2009),Comedy +152302,Perfect Body (1997),Drama +152304,Ma L'Amore... Sì (2006),Comedy +152310,13 dies de octubre (2015),Drama +152316,25 Carat (2008),Thriller +152318,Die Blindgänger (2004),Children|Drama +152320,Father (2010),(no genres listed) +152322,Prosecuting Casey Anthony (2013),Drama +152324,Alan dies at the end of the movie (2007),Thriller +152326,Freddie as F.R.O.7. (1992),Adventure|Animation|Children|Fantasy +152328,Tutte le donne della mia vita (2007),(no genres listed) +152330,Standing Army (2010),Documentary +152332,Hungry (2014),(no genres listed) +152334,Shark Swarm (2008),Horror|Thriller +152336,Piranha Sharks (2014),Comedy|Horror +152338,Humraaz (2002),(no genres listed) +152340,Aap Mujhe Achche Lagne Lage (2002),Action +152342,road (2002),(no genres listed) +152344,Sur (2002),Drama +152346,EK Chotti Si Love Story (2002),Drama +152348,Hum Kisi Se Kum Nahin (2002),Action|Comedy|Drama|Romance +152350,Na Tum Jaano Na Hum (2002),Drama|Romance +152352,Makdee (2002),Children +152354,Deewangee (2002),(no genres listed) +152356,Raaz (2002),Thriller +152358,Jaani Dushman: Ek Anokhi Kahani (2002),(no genres listed) +152360,Maine Dil Tujhko Diya (2002),(no genres listed) +152362,Saathiya (2002),Drama|Romance +152364,Kaante (2002),Action|Drama +152366,Carry On Again Doctor (1969),Comedy +152370,Convergence (2015),Action|Mystery|Thriller +152372,Southbound (2016),Horror +152374,Hangman (2015),Horror +152376,Mary Loss of Soul (2015),Drama|Horror|Mystery|Thriller +152381,A Faster Horse (2015),Documentary +152385,The Camp on Blood Island (1958),Action|Drama|War +152387,Miss London Ltd. (1943),(no genres listed) +152389,Bees in Paradise (1944),(no genres listed) +152391,Give Us the Moon (1944),Comedy +152395,Mister Drake's Duck (1951),Comedy|Sci-Fi +152397,Penny Princess (1952),Comedy|Romance +152399,The Runaway Bus (1954),Comedy|Thriller +152405,The Men of Sherwood Forest (1954),Adventure +152411,They Can't Hang Me (1955),Crime|Drama +152413,It's a Wonderful World (1956),Comedy +152415,The Weapon (1957),Thriller +152417,The Ship Was Loaded (1957),Comedy +152419,Further Up the Creek (1958),(no genres listed) +152421,Expresso Bongo (1959),Comedy +152425,The Full Treatment (1960),Drama|Mystery +152427,Jigsaw (1962),Crime|Drama|Mystery +152429,"80,000 Suspects (1963)",Drama +152431,The Beauty Jungle (1964),Comedy|Drama +152433,Assignment K (1968),Action|Mystery +152435,The Boys in Blue (1982),Children|Comedy +152439,Arachnia (2003),Horror|Sci-Fi +152441,Tarantulas: The Deadly Cargo (1977),Adventure|Thriller +152443,Ogre (2008),Horror|Sci-Fi +152445,Dinocroc (2004),Horror|Sci-Fi|Thriller +152447,Blood Surf (2000),Comedy|Horror +152449,The Monster of Piedras Blancas (1959),Horror|Sci-Fi +152451,She's Lost Control (2014),Drama +152453,Stephen Fry Live: More Fool Me (2014),(no genres listed) +152455,The Cook (1972),Children|Comedy|Drama +152457,We Can't Live Without Cosmos (2014),Animation|Drama +152459,The Devil At Your Heels (1981),Documentary +152461,Komodo vs. Cobra (2005),Horror|Sci-Fi +152463,Silent Predators (1999),Horror|Thriller +152465,Vipers (2008),Action|Horror|Sci-Fi|Thriller +152467,Venomous (2002),Horror|Sci-Fi +152469,Snakeman (2005),Adventure|Horror|Sci-Fi|Thriller +152471,Silent Venom (2009),Action|Adventure|Horror|Thriller +152473,Stanley (1972),Horror +152475,Oliver Sherman (2011),Drama +152477,Mad at the Moon (1992),(no genres listed) +152479,Wolves of Wall Street (2002),Horror +152481,Chicago Boys (2015),Documentary +152483,Die Konferenz der Tiere (1969),(no genres listed) +152485,Reggie's Prayer (1996),Drama +152487,Soul of the Game (1996),Drama +152489,Don King: Only in America (1997),Drama +152491,Passing Glory (1999),(no genres listed) +152493,Scrawl (2015),Fantasy|Horror +152495,Final Impact (1992),Action +152497,The Intruder (2010),Horror|Thriller +152499,Hisss (2010),Fantasy|Horror|Thriller +152501,Jaws of Satan (1981),Horror|Mystery|Thriller +152503,Lockjaw: Rise of the Kulev Serpent (2008),Children|Horror|Sci-Fi +152505,Death Car on the Freeway (1979),Mystery|Thriller +152507,War Wolves (2009),Horror +152509,Werewolf: The Devil's Hound (2007),Horror|Thriller +152511,Wild Rebels (1967),Crime|Drama +152513,Mr. St. Nick (2002),Comedy|Fantasy +152515,Cabin Fever (2016),Horror +152517,Son of Mine (2015),Crime|Drama +152519,Zero to Sixty (1978),Comedy +152521,Becoming Zlatan (2016),Documentary +152523,"Vous êtes très jolie, mademoiselle",(no genres listed) +152527,Fine Manners (1926),(no genres listed) +152535,Kangaroo (1952),Adventure|Drama|Romance +152537,No Minor Vices (1948),(no genres listed) +152539,New York Nights (1929),Crime|Drama +152541,Paris in Spring (1935),(no genres listed) +152543,Silver Tongues (2011),Drama|Romance|Thriller +152545,The Commune (2016),Drama +152547,Love Records (2016),Comedy|Drama +152549,The Bear That Wasn't (1967),Animation|Children|Comedy +152551,Dark Sunday (1976),Action|Thriller +152553,Death Driver (1977),Action|Comedy|Drama +152555,Rob the Bank (1964),Comedy|Crime +152557,Traffic Signal (2007),Drama +152559,Tammy and the Doctor (1963),Comedy|Romance +152561,Tammy and the Millionaire (1967),(no genres listed) +152563,The Art of Love (1965),Comedy +152565,Programming The Nation? (2011),Documentary +152567,The Sun Behind the Clouds: Tibet's Struggle for Freedom (2010),(no genres listed) +152569,The Boxcar Children (2014),Adventure|Animation|Children +152571,Goltzius and the Pelican Company (2012),(no genres listed) +152573,Dad's in Heaven With Nixon (2007),Documentary +152575,"Butcher, Baker, Nightmare Maker (1982)",Horror +152577,Black Out (2012),Action|Comedy|Crime +152579,Regular Show: The Movie (2015),Animation|Comedy|Sci-Fi +152581,Duelle (une quarantaine) (1976),Drama|Fantasy|Mystery +152583,The Pied Piper of Hamelin (1986),Animation|Fantasy|Horror +152585,Bana Adını Sor (2015),Drama|Romance +152587,Eddie: The Sleepwalking Cannibal (2012),Comedy|Horror +152589,Beach Spike (2011),Action +152591,Ip Man 3 (2015),Action +152593,Bhagam Bhag (2006),Comedy|Drama|Romance|Thriller +152595,The Life of Guskou Budori (2012),Animation|Drama|Fantasy +152597,Hanamizuki (2010),Drama|Romance +152599,Please Teach Me English (2003),Comedy|Drama|Romance +152601,The Samurai of Ayothaya (2010),Action|Drama +152603,Cosas insignificantes (2008),Children|Drama +152605,Drei Männer im Schnee (1955),(no genres listed) +152607,El rey de los huevones (2006),Comedy +152609,Scrambled Beer (2007),Comedy +152611,Night Eyes II (1991),Drama|Thriller +152613,Serial Teachers (2013),Comedy +152615,Sing Sing (1983),Comedy +152617,Project-M (2014),(no genres listed) +152619,The House in Montevideo (1951),Comedy +152621,Hokuspokus (1953),Comedy +152623,Above Dark Waters (2013),Drama +152625,Thunder and Mud (1990),Documentary +152627,Balls to the Wall (2011),Comedy +152629,We Sold Our Souls for Rock 'n Roll (2001),(no genres listed) +152631,H.O.T. Human Organ Traffic (2009),(no genres listed) +152633,Good Luck (2014),Drama +152635,Black Sea (2009),(no genres listed) +152637,The Tangerine Bear: Home in Time for Christmas! (2000),Animation|Children +152639,The Legend of the Candy Cane (2001),(no genres listed) +152641,Pinocchio's Christmas (1980),Animation|Children +152643,Dark Legacy II (2014),Documentary +152647,A Hen in the Wind (1948),Drama +152649,The Conspiracy to Rule the World: From 911 to the Illuminati (2009),Documentary +152656,Infliction (2012),Drama|Horror +152658,Santa's Little Helper (2015),Children +152660,Мафия (2016),(no genres listed) +152662,Love in the End (2013),Drama|Romance +152664,Requisitos para ser una persona normal (2015),Comedy +152666,The Polar Bear (1998),Action|Thriller +152670,Lord Montagu (2013),Documentary +152672,Bayou Blue (2011),(no genres listed) +152674,As the Palaces Burn (2014),Documentary|Musical +152676,Scout (2015),Children|Drama +152678,A Sunday Horse (2016),Children|Drama +152680,Doomed: The Untold Story of Roger Corman's the Fantastic Four (2015),Documentary +152682,The Day Silence Died (1999),(no genres listed) +152686,From Me To You (2010),Drama|Romance +152689,Mastizaade (2016),Comedy|Romance +152691,The Birth Of The Beatles (1979),Drama +152693,Paid in Blood (1971),(no genres listed) +152697,Agguato sul Bosforo (1969),Adventure +152701,A Pistol for Django (1971),Western +152705,The Devil's Wedding Night (1973),Horror +152707,Blackmail (1974),Thriller +152711,Who Killed Chea Vichea? (2010),Documentary +152713,If I Should Die Before I Wake (1952),Drama|Horror|Thriller +152715,The River and Death (1955),(no genres listed) +152717,Daniel & Ana (2009),Drama|Thriller +152719,Las Poquianchis (1976),Crime|Drama +152721,Black Wind (1964),Drama +152723,Addictions and Subtractions (2004),Drama +152725,Used Parts (2007),(no genres listed) +152727,La rebelión de los colgados (1954),(no genres listed) +152729,National Mechanics (1972),Comedy|Drama +152731,Los Hermanos Del Hierro (1961),Adventure|Drama|Western +152733,Las bicicletas son para el verano (1984),Drama +152735,La mujer de Benjamín (1991),Comedy +152737,War of the Birds (1990),Animation|Children +152739,Elisa Before the End of the World (1997),Drama +152741,Ciudad de Ciegos (1991),(no genres listed) +152743,Black Butterfly (2006),(no genres listed) +152745,Ninja USA (1985),Action +152747,Foreign Parts (2010),Documentary +152749,Pig (2011),Drama|Mystery|Sci-Fi|Thriller +152751,Shakespeare and Victor Hugo's Intimacies (2009),Documentary +152753,Transmorphers Fall of Man (2009),Action|Adventure|Sci-Fi +152755,Atlantic Rim (2013),Action|Sci-Fi +152757,AE Apocalypse Earth (2013),Action|Sci-Fi +152759,AVH: Alien vs. Hunter (2007),Action|Horror|Sci-Fi +152763,Please Subscribe (2013),(no genres listed) +152765,Please Kill Mr. Know It All (2013),Comedy|Crime|Romance +152767,Jerusalem (2013),Documentary +152769,Road to Your Heart (2014),Adventure|Romance +152772,Becoming Bulletproof (2014),Documentary|Western +152774,Captain Fury (1939),Action|Adventure +152776,Chemical Peel (2014),Horror +152778,Frenchman's Creek (1998),Drama|Romance +152780,"Me, a Groupie (1970)",Drama +152782,Jim: The James Foley Story (2016),Documentary +152790,Sing Your Way Home (1945),Comedy +152793,The Deadly Breaking Sword (1979),Action|Drama +152795,The Deadly Knives (1972),Action|Drama +152798,The War Against Mrs. Hadley (1942),Drama +152801,Vortex (2009),Drama +152804,Nightmare Code (2014),Horror|Sci-Fi|Thriller +152806,First Ascent: The Series (2010),Adventure|Documentary +152808,Main Madhuri Dixit Banna Chahti Hoon!,(no genres listed) +152810,Jaal: The Trap (2003),(no genres listed) +152812,Calcutta Mail (2003),Thriller +152814,Dhund: The Fog,Thriller +152816,Chura Liyaa Hai Tumne (2003),(no genres listed) +152818,Saaya (2003),(no genres listed) +152820,Qayamat: City Under Threat (2003),(no genres listed) +152822,Khel (2003),Action|Thriller +152824,LOC: Kargil (2003),(no genres listed) +152826,Hawa (2003),Drama|Horror +152828,Ishq Vishk (2003),Comedy|Drama|Romance +152830,Khushi (2003),Action|Drama|Romance +152832,Zameen (2003),Action|Thriller +152834,Sin (2003),Action|Romance|Thriller +152836,Gangaajal (2003),Crime|Drama +152838,The Veil (2016),Horror +152840,The Grave Digger,(no genres listed) +152842,Talking Heads (1980),Documentary +152844,Demons (1971),Horror +152846,Ode to My Father (2014),Drama +152848,Pitbull. New Order (2016),Comedy|Crime|Drama +152850,Pitbull (2005),Action|Crime +152852,El hijo del cura (1982),(no genres listed) +152854,The Matthew Shepard Story (2002),Drama +152856,Naked Soldier (2012),Action|Drama +152858,Flyin' Ryan (2003),Children +152860,The Chatroom (2002),(no genres listed) +152862,L'abbiamo fatta grossa (2016),Comedy +152864,Cousin Jules (1972),Documentary +152866,The Alphabet (1968),Animation +152868,Murder (2004),Drama|Romance +152870,Khakee (2004),Action +152872,Fida (2004),Drama|Romance|Thriller +152874,Madhoshi (2004),Drama|Mystery|Romance +152876,Krishna Cottage (2004),Horror|Thriller +152878,Kismat (2004),Action|Drama|Romance +152880,Garv: Pride and Honour (2004),Action|Drama +152882,Rudraksh (2004),(no genres listed) +152884,Vaastu Shastra,(no genres listed) +152886,Deewaar: Let's Bring Our Heroes Home (2004),Action|Drama +152888,Asambhav (2004),Action|Adventure|Drama +152890,Ek Hasina Thi (2004),Drama +152892,Bardaasht (2004),Drama +152894,Lakeer - Forbidden Lines (2004),Action|Drama|Romance +152896,Taarzan: The Wonder Car (2004),Action|Drama +152898,Plan (2004),(no genres listed) +152900,Dil Ne Jise Apna Kahaa (2004),Drama|Romance +152902,Rakht (2004),Thriller +152904,Run (2004),(no genres listed) +152906,"In Youth, Beside the Lonely Sea (1925)",(no genres listed) +152908,Panorama of Eiffel Tower (1900),Documentary +152910,Eiffel Tower from Trocadero Palace (1900),(no genres listed) +152912,Palace of Electricity (1900),Documentary +152914,Champs de Mars (1900),(no genres listed) +152916,Scene from the Elevator Ascending Eiffel Tower (1900),Documentary +152918,"Captain Nissen Going Through Whirlpool Rapids, Niagara Falls (1901)",(no genres listed) +152920,Down the Hudson (1903),Documentary +152922,The Ghost Train (1901),Documentary +152924,"Panorama View, Street Car Motor Room (1904)",Documentary +152926,Melody on Parade (1936),(no genres listed) +152928,La cartomancienne (1932),(no genres listed) +152930,Pie in the Sky (1935),(no genres listed) +152932,Oil: A Symphony in Motion (1933),(no genres listed) +152934,Vai Que Cola - O Filme (2015),(no genres listed) +152936,Os Caras de Pau em O Misterioso Roubo do Anel (2014),Comedy +152938,Nature Unleashed: Volcano (2005),Thriller +152940,Capture the Flag (2015),Adventure|Animation|Comedy +152944,Moszkva tér (2001),(no genres listed) +152946,Running Out Of Luck (1987),(no genres listed) +152948,The Rolling Stones: Live at the Max (1991),(no genres listed) +152952,Glastonbury (2006),Documentary +152956,The Eternity Man (2008),(no genres listed) +152960,Oil City Confidential (2009),Documentary +152962,The Ecstasy of Wilko Johnson (2015),Documentary +152964,The Invicible Cell (2009),Action|Crime|Documentary +152966,They Are All Dead (2014),Comedy|Drama|Fantasy +152968,Lusers (2015),Adventure|Comedy +152970,Hunt for the Wilderpeople (2016),Adventure|Comedy +152972,Jurassic Prey (2015),Action|Horror|Sci-Fi +152974,The Sand (2015),Horror|Sci-Fi +152976,Forsaken (2016),Drama|Western +152978,Kaal (2005),Action|Thriller +152980,Deewane Huye Paagal (2005),Comedy|Drama|Romance +152982,Kyaa Kool Hai Hum (2005),Comedy +152984,No Entry (2005),Romance +152986,Bose: The Forgotten Hero (2005),Action|Drama +152988,Maine Pyaar Kyun Kiya (2005),Comedy|Drama|Romance +152990,Vaah! Life Ho Toh Aisi! (2005),Children|Comedy|Drama|Sci-Fi +152992,Naina (2005),Horror +152994,Kalyug (2005),Thriller +152996,Shikhar (2005),(no genres listed) +152998,Chocolate: Deep Dark Secrets (2005),Thriller +153000,Kyon Ki... (2005),(no genres listed) +153002,Celestial Subway Lines/Salvaging Noise (2005),Documentary +153006,Karam (2005),(no genres listed) +153008,Tango Charlie (2005),(no genres listed) +153010,L'ange (1983),(no genres listed) +153012,Aashiq Banaya Aapne (2005),Drama|Horror|Romance|Sci-Fi|Thriller +153014,Nightfall (1999),(no genres listed) +153016,Bad Roomies (2015),Comedy +153018,The Bed You Sleep In (1993),Drama +153020,Waqt: The Race Against Time (2005),Drama +153022,Phantom Love (2007),Drama|Fantasy +153024,Voices Through Time (1996),Documentary|Drama +153026,Oriental Elegy (1996),Drama +153028,Zeher (2005),Thriller +153030,Socha Na tha (2005),Comedy|Drama|Romance +153032,Dus (2005),Action|Crime|Thriller +153034,D (2005),Crime|Drama|Thriller +153036,Acéphale (1969),(no genres listed) +153038,Avetik (1992),Drama +153040,Cómo pasan las horas (2005),(no genres listed) +153042,Elaan (2005),Action|Drama +153044,"Baxter, Vera Baxter (1977)",Drama|Mystery +153046,Page 3 (2005),Drama +153048,Family Nest (1979),Drama +153050,Silence and Cry (1968),(no genres listed) +153052,Chaahat Ek Nasha... (2005),Drama|Romance +153054,Deux fois (1968),(no genres listed) +153056,Days of Eclipse (1988),Drama|Sci-Fi +153058,Elegy of a Voyage (2001),(no genres listed) +153060,Ere erera baleibu icik subua aruaren (1970),(no genres listed) +153062,Story of Night (1979),(no genres listed) +153064,Alexander the Great (1980),Drama +153066,Landscape (2003),(no genres listed) +153068,The Settlement (2002),Documentary +153070,Rabbits (2002),Comedy|Drama|Fantasy +153072,Somnambulance (2003),Drama +153074,Subconscious Cruelty (2000),Crime|Drama|Horror +153076,Three Days (1992),Drama +153080,Dopo quella notte (2010),Drama +153082,4 Elements (2006),Documentary +153084,Love on the Ground (1984),Comedy|Drama|Fantasy|Romance +153086,Fear of Fear (1975),Drama +153088,The Belovs (1994),Documentary +153090,Bloody Mondays & Strawberry Pies (2008),Documentary +153092,Daughters of the Sun (2000),Drama +153094,Destroy Yourselves (1969),(no genres listed) +153096,Dogora (2004),Documentary +153098,The Issa Valley (1982),(no genres listed) +153100,"You're Out of Your Mind, Madicken (1979)",Children +153102,Egomania - Island Without Hope (1986),Drama +153104,Une femme d'extérieur (2000),(no genres listed) +153106,The Fool of the World and the Flying Ship (1990),Adventure|Animation|Children|Fantasy +153108,Twilight Zone (1993),Drama|Sci-Fi +153110,Paraguayan Hammock (2006),(no genres listed) +153112,Heaven's Heart (2008),(no genres listed) +153114,Woman of Water (2002),(no genres listed) +153116,Nathalie Granger (1972),Drama +153118,The Lonely Voice of Man (1989),(no genres listed) +153120,Cantata (1963),Drama +153122,Opium: Diary of a Madwoman (2007),Drama +153124,Almanac of Fall (1985),Drama +153126,Fruit of Paradise (1970),Drama +153128,Pavee Lackeen: The Traveller Girl (2005),Drama +153130,Pink Ulysses (1990),(no genres listed) +153132,Pop Skull (2007),Horror|Thriller +153134,Revue (2008),Documentary +153136,Bipedalism (2005),Drama|Sci-Fi +153138,Le révélateur (1968),Drama +153140,A Spring for the Thirsty (1964),(no genres listed) +153142,Room (2005),Documentary|Drama +153144,RR (2007),(no genres listed) +153146,Blood (2005),Drama +153148,A Humble Life (1997),Children|Documentary|Fantasy|Sci-Fi +153150,Sophiiiie! (2003),Drama +153152,Fun Without Limits (1998),(no genres listed) +153154,Quiet Days in Clichy (1970),Comedy|Drama +153156,True Siblings (2000),Drama +153158,Whispering Pages (1994),(no genres listed) +153160,Die Totale Therapie (1996),Drama|Thriller +153162,Stages (2007),Drama +153164,No Place to Go (2000),Drama +153166,Undo (1994),Drama +153168,The Plea (1967),Drama +153170,Venus In Furs (1995),Drama|Romance +153172,You Wont Miss Me (2009),Comedy|Drama +153174,The Garden (1995),Comedy +153176,Women's Prison (2002),Drama +153178,Insiang (1976),Drama +153180,"Quax, der Bruchpilot (1941)",Comedy +153182,Tess of the D'Urbervilles (1998),(no genres listed) +153184,Vergeef me,(no genres listed) +153186,7 Years (2006),Drama +153188,Alone (2004),Drama +153190,The Amazing Mr. Bickford (1987),Animation +153192,How to Become Myself (2007),Drama +153194,The Adopted Son (1998),(no genres listed) +153196,Bluebird (2004),(no genres listed) +153198,Blush (2005),Drama|Fantasy|Romance +153200,Parental Guidance (1996),Drama +153202,The Bosom Friend (1997),(no genres listed) +153204,I Sent a Letter to My Love (1980),(no genres listed) +153206,Chronopolis (1982),Animation|Children|Sci-Fi +153208,The Inner Scar (1972),Drama|Fantasy +153210,Clubbed to Death (1997),(no genres listed) +153212,The Courtesans of Bombay (1983),(no genres listed) +153214,Crepuscule (2009),(no genres listed) +153216,Details (2003),Drama +153218,Dragon's Return (1967),(no genres listed) +153220,Elevator Movie (2004),Comedy|Drama +153222,Her Name Is Sabine (2008),Documentary +153224,Felix and Lola (2001),Drama +153226,A Love Movie (2003),Drama +153228,Finisterre (2003),Documentary +153230,The Forbidden Quest (1993),(no genres listed) +153232,Francis Bacon (1988),Documentary +153234,Toy Reanimator (2002),Fantasy|Sci-Fi +153236,Genius Party (2007),Animation +153238,The Guatemalan Handshake (2006),Comedy +153240,Guernsey (2005),Drama +153242,Gypo (2005),Drama +153244,The Box (2003),(no genres listed) +153246,Flower & Snake (2004),Drama|Romance|Thriller +153248,Harry Munter (1969),(no genres listed) +153250,Het is een schone dag geweest (1993),Documentary +153252,Alpine Fire (1985),Drama +153254,Spring and Chaos (1996),Animation|Drama|Fantasy +153256,I Always Wanted to Be a Saint (2003),(no genres listed) +153258,Salt for Svanetia (1930),Documentary|Drama +153260,Silent Waters (2003),(no genres listed) +153262,Love on Sunday (2006),Drama +153264,Landscape (2000),(no genres listed) +153266,Fallen (2005),Drama +153268,Bread and Milk (2001),(no genres listed) +153270,Grass Labyrinth (1979),Drama|Fantasy|Romance +153272,Mirrored Mind (2006),(no genres listed) +153274,Langsamer Sommer (1976),(no genres listed) +153276,Lebedyne ozero-zona (1990),(no genres listed) +153278,La León (2007),Drama +153280,Lomax the Songhunter (2004),Documentary +153282,Lulu (2005),Romance +153284,Days of 36 (1972),Drama +153286,Suzaku (1997),Drama +153288,Molly's Way (2007),(no genres listed) +153290,Montag kommen die Fenster (2006),Drama +153292,The Muse (2007),Drama +153294,Nadia and Sarra (2004),Drama +153296,The Tribulations of Balthazar Kober (1988),(no genres listed) +153298,No Child of Mine (1997),Drama +153300,Oddsac (2010),Documentary +153302,Barren Illusion (1999),(no genres listed) +153304,Oblivion (2008),Documentary +153306,"Daddy, Santa Claus is Dead (1991)",Horror +153308,Pin Boy (2004),(no genres listed) +153310,A Parting Shot (2007),Action|Drama|Thriller +153312,Pirosmani (1969),(no genres listed) +153314,The Roe's Room (1997),(no genres listed) +153316,Prinzessin (2006),Drama +153318,Empty Days (2000),(no genres listed) +153320,The Secret (2000),Drama|Romance +153322,The Suit (2003),(no genres listed) +153324,Signer's Suitcase (1995),(no genres listed) +153326,Small Gods (2007),Drama|Thriller +153328,Smoke and Flesh (1968),Drama +153330,Alice In Acidland (1968),Drama +153332,The Snow Maiden (1968),Children|Fantasy +153334,Silent Storm (2001),(no genres listed) +153336,Svyato (2005),Documentary +153338,"Everything's Fine, We're Leaving (2000)",Comedy|Drama +153340,The Steel Road (1929),(no genres listed) +153342,"Birds, Orphans and Fools (1969)",(no genres listed) +153344,Wojaczek (1999),Drama +153346,Woodenhead (2003),Fantasy +153348,The Matrimony (2007),Drama|Horror|Thriller +153350,Labyrinth of Dreams (1997),(no genres listed) +153352,The Pocket-knife (1992),Adventure|Children|Comedy|Drama +153354,Shark in the Head (2004),Comedy|Drama +153356,Woman of the Lake (1966),Drama +153358,Sociopathia (2015),Horror +153362,The Ritchie Blackmore Story (2015),Documentary +153364,Natsamrat (2016),Drama +153366,Cycling Chronicles: Landscapes the Boy Saw (2004),Horror +153368,32A (2007),Drama +153370,The Scarlet Flower (1977),Children|Fantasy|Romance +153372,Alleman (1963),(no genres listed) +153374,Allonsanfan (1974),Drama +153376,The Child (2000),Drama +153378,Fear (2009),Documentary +153380,Après l'amour (1992),(no genres listed) +153382,The Tree of Guernica (1975),(no genres listed) +153384,Arvo Pärt: 24 Preludes for a Fugue (2002),Documentary +153386,Long Live Ghosts! (1977),Children|Comedy|Fantasy +153388,Atlantis (2008),Drama|Sci-Fi|Thriller +153390,Bashing (2005),Drama +153392,The Touch (1971),Drama +153394,The Cyclist (1987),Drama +153396,The Big Swap (1998),(no genres listed) +153398,Blood Tea and Red String (2006),Animation|Fantasy|Sci-Fi +153400,Boy! What a Girl! (1947),(no genres listed) +153402,Ça brûle (2006),(no genres listed) +153404,Os Cafajestes (1962),Drama +153406,The Cannibals (1988),Drama|Fantasy +153408,Tears for Sale (2008),Comedy|Drama|Fantasy +153410,C'est la vie (2001),Comedy|Drama +153412,Un amour de femme (2001),Drama|Romance +153414,We Are the Pirates of the Roads (2015),Adventure|Children +153416,Days of Nietzche in Turin (2001),(no genres listed) +153418,Ricky Rapper and Cool Wendy (2012),Children|Comedy +153420,Days of Santiago (2004),Drama +153422,Risto Räppääjä ja liukas Lennart (2014),Children|Comedy +153424,Dogville Confessions (2004),(no genres listed) +153426,Risto Räppääjä ja Sevillan saituri (2015),Children +153428,Ellen ten Damme: As I Was Wondering Where This Mixed-up Little Life of Mine Was Leading To (2007),Documentary +153430,Jill and Joy (2014),Children +153432,Jill And Joy's Winter (2015),Children +153434,Fanfare (1958),Comedy +153436,My Best Friend's Girl (1983),Comedy|Romance +153438,Fimfárum Jana Wericha (2002),Animation|Children +153440,Fimfarum 2 (2006),Animation|Children +153442,Flower in the Pocket (2007),(no genres listed) +153444,Parents (2007),Comedy|Horror +153446,Gargandi snilld (2005),Documentary +153448,The Giants (2011),Drama +153450,Gewoon Hans (2009),(no genres listed) +153452,Gizmo! (1977),Comedy|Documentary +153454,The Gleaners and I: Two Years Later (2002),(no genres listed) +153456,Goshogaoka (1998),(no genres listed) +153458,Legacy (2006),(no genres listed) +153460,Last Stop (2002),Documentary +153462,Into the Badlands (1991),Horror|Western +153464,Sundown: The Vampire in Retreat (1989),Action|Comedy|Horror|Western +153466,Nightmare in Wax (1969),Horror +153468,Terror in the Wax Museum (1973),Horror|Mystery +153470,Cave In! (1983),(no genres listed) +153472,Uma Onda no Ar (2002),Action|Drama +153474,Seus Problemas Acabaram!!! (2006),(no genres listed) +153476,Casseta & Planeta: A Taça do Mundo É Nossa (2003),(no genres listed) +153478,Cine Holliúdy (2013),Comedy +153482,O Bandido da Luz Vermelha (1968),(no genres listed) +153484,Jungle Freaks (1969),Comedy +153486,Angels of the Sun (2006),Drama +153488,Iracema (1976),(no genres listed) +153490,The Clan - Tale of the Frogs (1984),Action|Comedy|Crime|Drama|Romance +153492,Dancing Ninja (2013),Action|Comedy|Crime +153494,My Good Hans (2015),(no genres listed) +153496,Commando (1962),War +153504,Date for a Murder (1967),(no genres listed) +153506,Gangster '70 (1969),(no genres listed) +153516,Apocalyptic (2013),Drama|Horror +153518,Classroom 6 (2014),Horror +153520,616: Paranormal Incident (2013),Horror +153522,4 Horror Tales - Roommates (2006),Horror +153524,Joy of Learning (1969),Drama +153526,El gafe (1959),Comedy +153528,Severed Footage (2013),Horror|Mystery|Thriller +153530,The Frankenstein Theory (2013),Horror|Sci-Fi +153532,The Big Broadcast of 1937 (1936),Comedy +153534,"Gore, Quebec (2014)",Horror|Thriller +153536,Long Pigs (2007),Crime|Horror +153538,Gangster (2006),Adventure|Crime|Drama|Mystery|Romance +153540,Bhoot Unkle (2006),Children|Fantasy +153542,Naksha (2006),Action|Adventure +153544,Alien Abduction: Incident in Lake County (1998),Sci-Fi +153546,Woh Lamhe (2006),Drama|Romance +153548,Fight Club: Members Only (2006),(no genres listed) +153550,Pyaar Ke Side Effects (2006),Comedy|Drama|Romance +153552,Malamaal Weekly (2006),Comedy +153554,36 China Town (2006),Comedy|Thriller +153556,Corporate (2006),Drama +153558,"Tom, Dick And Harry (2006)",Comedy +153560,Shiva (2006),Action|Drama|Thriller +153562,Jaane Hoga Kya (2006),Action|Romance|Sci-Fi|Thriller +153564,The Amazing Bulk (2012),Action|Animation|Comedy +153566,Death Spa (1988),Horror +153568,Ikingut (2000),(no genres listed) +153570,Johnny Corncob (1973),Adventure|Animation|Fantasy +153572,Johanna (2005),Drama +153574,Julietta (2001),(no genres listed) +153576,Kelin (2009),Drama +153578,Khamsa (2008),Drama +153580,Pesn o gerojach (Komsomol) (1932),Documentary +153582,The Cat Who Walked by Herself (1988),Animation|Drama +153584,The Last Days of Emma Blank (2009),Comedy +153586,In the Presence of a Clown (1997),Drama +153588,Spoon (2005),Children|Drama +153590,Die letzte Rache (1982),(no genres listed) +153592,Confessions of Loving Couples (1967),Drama|Romance +153594,The Life & Adventures of Santa Claus (2000),Animation|Children +153596,Light Keeps Me Company (2000),(no genres listed) +153598,Long Gone (2003),(no genres listed) +153600,Man van staal (1999),Children|Drama|Fantasy +153602,Misa mi (2003),Children|Drama +153604,Mods (2002),(no genres listed) +153606,Hollow City (2006),Drama +153608,Night Games (1966),Drama +153610,The Wishing Tree (1977),(no genres listed) +153612,The Nun (2007),Documentary +153614,New Mischief by Emil (1972),Children|Comedy +153616,Ochtendzwemmers (2001),(no genres listed) +153618,Oriana (1985),Drama|Mystery|Romance +153620,Paradise girls (2005),(no genres listed) +153622,Paul dans sa vie (2006),Documentary +153624,Victory in the Ukraine and the Expulsion of the Germans from the Boundaries of the Ukrainian Soviet Earth (1945),Documentary +153626,The Polish Bride (1998),Drama|Romance +153628,Princess (1969),Action|Romance +153630,Pyšná princezna (1952),Children|Comedy|Fantasy +153632,Life Hits (2006),Drama +153634,Never Travel on a One Way Ticket (1987),Drama|Sci-Fi|Thriller +153636,Dreams of Dust (2008),Drama +153638,The Robber Symphony (1937),(no genres listed) +153640,The Tale of the Fox (1937),Animation|Children|Comedy|Fantasy +153642,Schoffies (2006),(no genres listed) +153644,Beware of My Love (1998),(no genres listed) +153646,The Tale of Tsar Saltan (1984),Animation|Children +153648,The Snow Queen (1957),Animation|Children|Drama|Fantasy +153650,Current (1963),(no genres listed) +153652,Sonja (2006),Drama +153654,Pleasant Days (2002),Drama +153656,The French Woman (1977),Comedy|Drama +153658,The Last Romantic Lover (1978),Drama|Romance +153660,Private Collections (1979),Drama|Romance +153662,Girls (1980),Comedy|Drama +153664,The Strange Vengeance of Rosalie (1972),Drama|Thriller +153666,The Foot Shooting Party (1994),Drama +153668,Innocent Sorcerers (1960),Drama|Romance +153670,Sunny in the Dark (2015),Drama +153672,Chronic (2015),Drama +153674,The Boy Who Cried Werewolf (1973),(no genres listed) +153676,The Black Castle (1952),Mystery|Thriller +153678,Gunsmoke (1953),Western +153680,Highway Dragnet (1954),Crime|Drama|Thriller +153682,The Crooked Web (1955),Crime +153684,Flight of the Lost Balloon (1961),(no genres listed) +153686,Siege of the Saxons (1963),(no genres listed) +153690,Maledimiele (2012),Drama +153692,Tamas and Juli (1997),(no genres listed) +153694,Voyage in Time (1983),Documentary +153696,Hush! (2003),Documentary|Drama +153698,Gesualdo: Death for Five Voices (1995),Documentary +153700,Tussenland (2002),(no genres listed) +153702,Killed by Lightning (2002),Drama|Sci-Fi +153704,The Wrestlers (2000),Action|Drama +153706,Summer of Goliath (2011),(no genres listed) +153708,I Know I'll See Your Face Again (2001),Drama +153710,Hounded (2006),Drama +153712,"Work Hard, Play Hard (2004)",Drama +153714,Vogelfrei,(no genres listed) +153716,Harvest Time (2004),Drama +153718,Water and Power (1989),Documentary +153720,The Phantom (1984),Drama|Horror +153722,Twelve Chairs (2004),(no genres listed) +153726,Law of Survival (1967),(no genres listed) +153728,Le Rapace (1968),Action|Adventure|Drama|Thriller +153730,Last Known Address (1970),(no genres listed) +153734,The Sewers of Paradise (1979),Action|Crime +153736,Doraemon:貓狗時空傳 (2004),(no genres listed) +153738,Le Ruffian (1983),Adventure|Comedy|Drama +153740,Les Loups entre eux (1985),Action|Crime|Drama|War +153742,Promise (2005),(no genres listed) +153744,Takaisin pintaan (2016),(no genres listed) +153746,A Night In the Woods (2012),(no genres listed) +153750,Future War (1997),Action|Sci-Fi +153752,White Fire (1984),Action|Thriller +153754,"Chau, Beyond the Lines (2015)",(no genres listed) +153756,Shok (2015),Drama|War +153758,Bear Story (2014),Animation +153762,Hellions (2015),Horror +153764,My Tomorrow (2011),Drama +153766,Welcome (2007),Action|Comedy|Drama|Romance +153768,No Smoking (2007),Thriller +153770,Dil Dosti Etc (2007),Drama +153772,Dus Kahaniyaan (2007),Drama +153774,The Train: Some Lines Shoulder Never Be Crossed... (2007),Action|Thriller +153776,Awarapan (2007),Drama|Romance +153778,"Good Boy, Bad Boy (2007)",(no genres listed) +153780,Bheja Fry (2007),Comedy|Drama +153782,MP3: Mera Pehla Pehla Pyaar (2007),Drama|Romance +153784,Dhol (2007),Comedy +153786,The Disenchanted (1990),Drama|Romance +153788,Jaane Tu... Ya Jaane Na (2008),Comedy|Drama|Romance +153790,Bachna Ae Haseeno (2008),Comedy|Drama|Romance +153792,Fashion (2008),Drama|Romance +153794,Camaraderie (2008),Comedy|Drama|Romance +153796,Krazzy 4 (2008),Comedy +153798,Bhoothnath (2008),Comedy|Sci-Fi +153800,Halla Bol (2008),Drama +153802,Maharathi (2008),Thriller +153804,Golmaal Returns (2008),Comedy +153806,Jannat (2008),Crime|Drama|Romance +153808,Boris Without Beatrice (2016),Drama +153810,Las Plantas (2015),Drama +153812,Depth Two (2016),(no genres listed) +153814,Hotel Dallas (2016),(no genres listed) +153816,Tashan (2008),Action|Comedy|Romance +153818,Lily Lane (2016),(no genres listed) +153820,Phoonk (2008),Horror|Thriller +153822,EMI: Liya Hai To Chukana Padega (2008),(no genres listed) +153824,Karzzzz (2008),Action|Drama|Romance|Thriller +153826,Y.M.I. - Yeh Mera India (2009),Drama +153828,"Waiter, Scarper! (1981)",Comedy +153830,Sin hijos (2015),Comedy|Romance +153832,We Were Once a Fairytale (2008),Action +153834,Mammal (2016),Drama +153836,Scenes from the Suburbs (2011),Drama|Romance +153838,Mourir auprès de toi (2011),(no genres listed) +153840,Stink! (2015),Documentary +153842,The American Dreamer (1971),Documentary +153845,"André Hazes, Zij Gelooft in Mij (2000)",Documentary +153847,Babushka (2004),Drama +153849,Beperkt houdbaar (2007),(no genres listed) +153851,Ape and Super-Ape (1972),Documentary +153853,The Quiet Love (2005),Drama|Romance +153855,Bloody Cartoons (2007),(no genres listed) +153857,Body Language (1995),Romance|Thriller +153859,Chermeni (1970),(no genres listed) +153861,Dallas Pashamende (2005),Drama +153863,O Diabo a Quatro (2005),Children|Drama +153865,Domésticas (2001),Comedy|Drama +153867,Boy (2011),Drama|Romance +153869,Thunderclump (1974),Adventure|Animation|Children +153871,Island Guests (2005),(no genres listed) +153873,"My God, My God, Why Hast Thou Forsaken Me? (2005)",(no genres listed) +153875,Violent Summer (1959),Drama|Romance +153877,Eve's Christmas (2004),Drama +153879,The Eternal Jew (1940),Documentary +153881,Female (2005),Comedy|Drama +153883,Loco Fever (2001),(no genres listed) +153885,Flipping Out - Israel's Drug Generation (2008),Documentary|War +153887,Genmu Senki Leda (1985),Action|Animation|Sci-Fi +153889,De Gulle Minnaar (1990),(no genres listed) +153891,Herbstmilch (1989),Drama +153893,A Man and a Woman: 20 Years Later (1986),Drama|Romance +153895,I’m Glad My Mother Is Alive (2009),Drama +153897,Mariages ! (2004),Comedy|Drama +153899,Srimanthudu (2015),Action|Children|Drama|Romance +153901,Dookudu (2011),Action|Comedy|Drama +153903,Business Man (2012),Action +153905,Pokiri (2006),Action|Thriller +153907,Khaleja (2010),Action|Comedy +153909,Athadu (2005),Action|Thriller +153911,Okkadu (2003),Drama +153913,Murari (2001),(no genres listed) +153915,Time Runner (1993),Sci-Fi +153917,Jalsa (2008),(no genres listed) +153919,Atharintiki Daaredi (2013),Action|Comedy|Drama +153921,Gabbar Singh (2012),Action|Comedy +153923,Race Gurram (2014),Action|Children|Comedy|Drama|Romance +153925,Cameraman Ganga Tho Rambabu (2012),Drama +153927,Panjaa (2011),Action|Crime +153929,Julayi (2012),Comedy|Romance +153931,Eega (2012),Romance|Sci-Fi +153933,Chatrapathi (2005),Action|Drama +153935,Vikramarkudu (2006),Action|Comedy|Drama +153937,Simhadri (2003),(no genres listed) +153939,Mockingbird Lane (2012),Comedy|Fantasy|Horror|Mystery +153941,Roboshark (2015),Action|Sci-Fi|Thriller +153943,Curse of the Wolf (2006),Action|Comedy|Horror +153945,Skull Forest (2012),Action|Horror +153947,Swamp Zombies!!! (2005),Horror +153949,L'ange de goudron (2001),Drama +153951,Supercock (1975),(no genres listed) +153953,"Italy: Love It, or Leave it (2011)",Adventure|Documentary|Drama +153955,The Third Eye (1966),Horror +153957,The Dark Side Of Chocolate (2010),Documentary|Drama +153959,4th Man Out (2016),Comedy +153961,99 (2009),Comedy +153963,The Stoneman Murders (2009),(no genres listed) +153965,8 X 10 Tasveer (2009),Thriller +153967,Jew Like Me,(no genres listed) +153969,Room 205 (2007),Horror +153971,Kingdom of Crooked Mirrors (1963),Adventure|Children|Fantasy +153973,Langer Licht,(no genres listed) +153975,Loverboy (2003),Drama +153977,Lucid (2005),(no genres listed) +153979,Een Maand Later (1987),(no genres listed) +153981,La maison (2007),Drama +153983,"Meine Frau, meine Freunde und ich (2004)",Drama +153985,The Girl with the Red Hair (1981),(no genres listed) +153987,Mechanics of the Brain (1926),Documentary +153989,Mémoire de glace (2007),(no genres listed) +153991,The Colonel (2006),Crime|Drama +153993,A Tale of a Naughty Girl (Mondo Meyer Upakhyan) (2002),Drama +153995,Een monument voor een gorilla (1987),Documentary +153996,All The Best (2009),Action|Comedy +153999,Mutum (2007),Drama +154001,Agyaat (2009),Horror|Mystery +154003,O princezně Jasněnce a létajícím ševci (1987),Children +154005,Oh Jonathan – oh Jonathan! (1973),Comedy +154007,The Indecent Woman (1991),Drama +154009,Ora o mai più (2003),Comedy +154011,Winky's Horse (2005),Children +154013,Lily Sometimes (2010),Drama +154015,Kisna (2005),Drama|Romance +154017,Perpetrators of the Crime (1999),Comedy +154019,Stagecoach of the Condemned (1970),Western +154023,A sangre fría (1959),(no genres listed) +154035,Dig Your Grave Friend... Sabata's Coming (1971),Western +154037,And the Crows Will Dig Your Grave (1971),Western +154039,God in Heaven... Arizona on Earth (1972),Western +154045,Exorcismo (1975),Horror +154047,Ten Killers Came from Afar (1975),(no genres listed) +154051,The Last Man on the Moon (2016),Documentary|Drama +154059,Los locos vecinos del 2° (1980),(no genres listed) +154061,Un rolls para Hipólito (1983),Comedy +154063,The Killer Wore Gloves (1974),Thriller +154065,Dad's Army (2016),Comedy +154067,Two Men in Town (1973),Crime|Drama +154069,Ringing Bell (1978),Animation|Children|Drama +154071,Amar (2009),Drama|Romance +154073,Night Flight (2014),Drama +154075,Dabangg (2010),Action|Comedy|Crime +154077,Khatta Meetha (2010),Comedy|Drama +154079,Golmaal 3 (2010),Children|Comedy +154081,"Dear Guest, When Will You Leave? (2010)",Comedy +154083,Rakht Charitra I (2010),Action|Crime|Drama +154085,Kaalo (2010),Horror +154092,No Home Movie (2015),Documentary +154094,984: Prisoner of the Future (1982),Drama|Sci-Fi +154096,Robo Vampire (1988),Action|Crime|Horror|Thriller +154100,Il giorno in più (2011),Comedy +154108,"Io non vedo, tu non parli, lui non sente (1971)",(no genres listed) +154110,La signora è stata violentata (1973),(no genres listed) +154124,"Anche se volesse lavorare, che faccio? (1972)",Comedy +154126,Culastrisce nobile veneziano (1976),Comedy +154128,The Pyjama Girl Case (1977),Mystery +154130,I camionisti (1982),(no genres listed) +154132,Lobster for Breakfast (1979),(no genres listed) +154134,Give Me Five (1980),Comedy +154140,Il Paramedico (1982),(no genres listed) +154142,Count Tacchia (1982),(no genres listed) +154152,Bloodlock (2008),Horror +154154,Shor in the City (2011),Crime|Drama +154156,Yeh Saali Zindagi (2011),Thriller +154158,No One Killed Jessica (2011),Crime|Drama +154160,Bodyguard (2011),Action|Comedy|Drama|Romance +154162,Thank You (2011),Comedy|Drama|Romance +154164,404: Error Not Found (2011),Drama|Mystery|Thriller +154166,Shuttlecock Boys (2012),Drama +154168,1920: Evil Returns (2012),Horror|Thriller +154170,Ghost (2012),Horror +154172,Chhodo Kal Ki Baatein (2012),(no genres listed) +154174,Ju-Jitsu (1907),Action|Documentary +154176,Idiot in Paris (1967),Comedy +154178,Spike Island (2012),Drama +154180,Behavior (2014),Drama +154182,Conspiracy Encounters (2016),Sci-Fi +154184,Family Film,(no genres listed) +154186,Blackbird (2014),Drama +154188,Pretpark Nederland (2006),Documentary +154190,Farewell to the Summer Light (1968),Drama|Romance +154192,Sharunas Bartas: An Army of One (2010),Documentary +154194,Der Struwwelpeter (1955),Children|Fantasy +154196,The Embryo Hunts in Secret (1966),Drama +154198,The Rashevski Tango (2003),Drama +154200,Next Stop Paradise (1998),(no genres listed) +154202,Trench of Hope (2003),Drama +154204,Three Seats for the 26th (1988),Romance +154206,Trying to Kiss the Moon (1994),(no genres listed) +154208,Uitgesloten (2001),Drama +154210,The chosen (2006),Drama +154212,Uno (2004),Drama +154214,Barbara the Fair with the Silken Hair (1969),Children|Fantasy +154216,Visions of Suffering (2006),Horror +154218,The Fabulous World of Jules Verne (1958),Adventure|Fantasy|Sci-Fi +154220,The War of the Worlds: Next Century (1981),Sci-Fi|Thriller|War +154222,The Wooden Camera (2004),Children|Drama +154224,The World's Greatest Sinner (1962),Drama +154226,A Private Affair (2002),Crime|Mystery +154228,All Stars (1997),(no genres listed) +154230,"Cayenne, les amants du bagne (2005)",Drama +154232,The Art of Football from A to Z (2007),(no genres listed) +154234,Aung San Suu Kyi - Lady of No Fear (2010),Documentary +154236,The Jester's Tale (1964),Adventure|Comedy|Fantasy +154238,The Sin (2004),Action|Drama|Romance|Thriller +154240,All About Love (2001),(no genres listed) +154242,Drei weiße Birken (1961),Comedy +154244,Last Day of Freedom (2015),Animation|Crime|Documentary +154246,The Watcher in the Attic (1976),Romance|Thriller +154248,Escort (2006),Thriller +154250,Exposed (1971),Drama|Romance|Thriller +154252,Le festin de la mante (2004),Drama|Fantasy +154254,De Flat (1994),Mystery|Romance|Thriller +154256,The Great Global Warming Swindle (2007),Documentary +154258,Nails (2003),(no genres listed) +154260,Hammer & Tickle (2007),(no genres listed) +154262,Hata Göteborg (2007),Comedy|Drama +154264,The 14 (1973),Drama +154266,Critique de la séparation (1961),(no genres listed) +154268,Open Season: Scared Silly (2016),Adventure|Animation|Comedy +154270,Les oiseaux de passage (2015),Children +154272,Becoming Mike Nichols (2016),Documentary +154274,Homegrown: The Counter-Terror Dilemma (2016),Documentary +154276,Aligarh (2016),Drama +154278,A Girl in the River: The Price of Forgiveness (2015),Documentary +154280,Berth Marks (1929),Comedy +154284,Putting Pants on Philip (1927),Comedy +154286,Thundering Fleas (1926),Comedy +154288,Triangle: Remembering The Fire (2011),Documentary +154290,100 Million BC (2008),Sci-Fi +154294,A Thunder of Drums (1961),Western +154300,Homeless: The Motel Kids of Orange County (2010),(no genres listed) +154303,Behave Yourself! (1951),Comedy|Crime +154305,Chemical Wedding (2008),Horror +154307,Sepia Cinderella (1947),(no genres listed) +154309,Go Man Go (1954),(no genres listed) +154311,Band of Angels (1957),Adventure|Drama|Romance +154315,The Lost Man (1969),Drama +154317,Plan 9 (2015),Horror|Sci-Fi +154319,The History of Eternity (2014),Drama|Romance +154321,Kiss Of Life (2007),Comedy|Drama +154323,Κλέφτες (2007),Comedy +154325,Alter Ego (2007),Drama|Romance +154327,Straight Story (2006),Comedy|Sci-Fi +154329,Loafing and Camouflage: Sirens in the Aegean (2005),Comedy +154331,Loafing and Camouflage: I-4 (2008),Action|Comedy +154335,Countdown at Kusini (1976),Drama +154337,Gordon's War (1973),Action|Adventure|Crime +154339,They Eat Scum (1979),(no genres listed) +154341,Twist (1992),(no genres listed) +154344,Commando - A One Man Army (2013),(no genres listed) +154346,Boss (2013),Action|Comedy|Drama +154348,Jolly LLB (2013),Comedy|Drama +154350,Shuddh Desi Romance (2013),Comedy|Drama|Romance +154352,Ek Thi Daayan (2013),Drama|Horror|Mystery +154354,Kustom Kar Kommandos (1965),(no genres listed) +154356,Leben nach Microsoft (2001),Documentary +154358,The Barkley Marathons: The Race That Eats Its Young (2015),Documentary +154360,Killer Cop (2002),(no genres listed) +154362,Impressionen unter Wasser (2002),(no genres listed) +154364,In Oranje (2004),(no genres listed) +154366,The Sensuous Teenager (1971),Comedy|Fantasy +154368,The King's Beard (2002),Adventure|Animation|Children +154370,Kiss and Run (2002),(no genres listed) +154372,The Little Blonde Dead (1993),Drama +154374,The Little Polar Bear (2001),Animation|Children +154376,Der Kronzeuge (2007),(no genres listed) +154378,Kooky (2010),Adventure|Children +154380,The Last Summer (2007),(no genres listed) +154382,Naked Paradise (2002),Drama +154384,On Our Own (1998),Comedy|Drama +154386,Normaal: Ik Kom Altied Weer Terug,(no genres listed) +154388,Nuits Rouges (1974),Horror|Thriller +154390,Oysters at Nam Kee's (2002),Drama +154392,Offset (2006),Drama +154394,Olga's House of Shame (1964),Crime|Drama +154396,Otto er et næsehorn (1983),Children|Comedy +154398,The Plank (1967),Comedy +154400,Prince and the Evening Star (1979),Adventure|Children|Romance +154402,Pünktchen und Anton (1999),Children +154404,Directed by Andrei Tarkovsky (1988),Documentary +154406,"Danny, The Champion of the World (1989)",Drama +154408,Le roman de Georgette (2003),(no genres listed) +154410,Rot ist die Liebe (1957),Drama|Romance +154412,Shattered Glass (2002),Drama +154414,Le septième juré (1962),Crime|Drama +154416,Shelter Island (2003),Thriller +154418,Skin - Hatred was his way out (2008),Drama +154420,The Snowman (2009),Documentary +154422,De tasjesdief (1995),(no genres listed) +154424,Teenage Angst (2008),Drama +154426,Teenage Gang Debs (1966),Crime +154428,Die Tigerin (1992),Drama +154430,"Tjorven, Batsman, and Moses (1964)",Children|Comedy +154432,Wolf Summer (2003),Adventure|Children|Drama +154434,En Route (2004),Drama|Romance +154436,Kara Bela (2015),Comedy +154438,Women Talking Dirty (2001),(no genres listed) +154440,Zadelpijn (2007),(no genres listed) +154442,The Fearless Triplets (2004),(no genres listed) +154444,Swan Lake (1981),Animation +154446,The Pirates of Tortuga: Under the Black Flag (2001),Adventure|Animation|Children|Comedy|Sci-Fi +154448,The Acid Eaters (1968),Drama +154450,Les Aimants (2004),Drama +154452,Aksuat (1997),(no genres listed) +154454,Allyson Is Watching (1999),Drama|Romance|Thriller +154456,Ma ma (2015),Drama +154458,Singham Returns (2014),Action|Drama +154460,Raja Natwarlal (2014),Drama|Thriller +154462,Dedh Ishqiya (2014),Comedy|Drama|Romance +154464,Sulemani Keeda (2014),Comedy|Romance +154466,Darr @ the Mall (2014),Horror|Thriller +154468,"She Smiles, She's Snared! (2014)",Comedy|Romance +154470,2 States (2014),Comedy|Drama|Romance +154472,Heropanti (2014),Action|Romance +154474,Palmeras en la nieve (2015),Romance +154476,Ocho apellidos catalanes (2015),Comedy|Romance +154478,Roar (2014),Action|Adventure|Thriller +154480,Creature (2014),Horror|Sci-Fi +154482,Hunterrr (2015),(no genres listed) +154484,Stonados (2013),Sci-Fi +154486,Thumb Wars (1999),Comedy|Sci-Fi +154488,Thumbtanic (1998),Comedy +154490,Lost on Journey (2010),Comedy +154492,Snow on The Blades (2014),(no genres listed) +154494,The Belgrade Phantom (2009),Action|Crime|Drama +154496,Bella Bettien (2002),Crime|Drama +154498,Burning Love (1983),(no genres listed) +154500,Cool! (2004),Drama +154502,Dangerous Invitations (2002),Comedy|Drama|Fantasy|Thriller +154504,Ellis in Glamourland (2004),Comedy|Drama +154506,Filmpje! (1995),Comedy +154508,"Die Frau, die im Wald verschwand (2009)",Drama +154510,Intoxicating (2003),Drama|Thriller +154512,The Legend of Sleepy Hollow (1999),Drama|Fantasy|Horror|Thriller +154514,LelleBelle (2010),Romance +154516,The Little Bear Movie (2001),Animation|Children +154518,Mira (1971),(no genres listed) +154520,The Seduction of Inga (1968),Drama +154522,Dutch in Seven Lessons (1948),Comedy|Documentary +154524,The New Gulliver (1935),Animation|Children|Fantasy +154526,Eye of the Eagle (1997),Adventure|Children|Drama +154528,Panic in the Skies (2006),Thriller +154530,Recto / verso,(no genres listed) +154532,Red Eagle (2010),Action|Comedy|Thriller +154534,Robert Mitchum Est Mort (2011),Comedy|Drama +154536,The Singing Ringing Tree (1957),Children|Fantasy +154538,Sins of the mind,(no genres listed) +154540,Student Seduction (2003),Drama|Thriller +154542,Too Fat Too Furious (2005),Action|Comedy|Crime|Drama|Romance +154544,Bibi (1974),Drama|Romance +154546,Horsing Around (2005),Comedy|Romance +154548,Prisoner/Terrorist (2007),Drama +154550,Baba Yaga (1971),Horror +154552,Het zwijgen (2006),Thriller +154554,Happy Family (2006),Comedy|Romance +154556,Despiser (2003),(no genres listed) +154558,Sunshine Barry & the Disco Worms (2008),Animation|Children|Comedy +154560,Dreamland (2007),Horror|Mystery|Sci-Fi +154562,Father of Four - Never Gives Up! (2005),Children|Comedy +154564,Frank & Wendy (2004),Action|Animation|Comedy|Thriller +154566,Invisible Mom (1997),Children|Comedy|Fantasy +154568,Locusts: The 8th Plague (2005),Drama|Horror +154570,Warm Spring (2003),Drama +154572,Lost in New York (1989),(no genres listed) +154574,Pervert! (2005),Comedy|Horror +154576,Phileine Says Sorry (2003),Comedy|Drama|Romance +154578,The Revenge of the Living Dead Girls (1987),Horror +154580,Remote Control (1992),Comedy|Crime +154582,The Dark Diamond (2004),(no genres listed) +154584,The Whirl (2012),Action|Drama|Fantasy|Mystery +154586,Summers Past (2008),(no genres listed) +154588,Shock Head Soul (2011),Documentary +154590,Les baisers de secours (1989),(no genres listed) +154592,One Hundred Days After Childhood (1975),Drama|Romance +154594,The Princess and the Pea (1976),(no genres listed) +154596,Sure Fire (1990),(no genres listed) +154598,"I, a Woman (1965)",Drama +154600,The Parallel Street (1962),(no genres listed) +154602,MollyCam (2008),(no genres listed) +154604,"I Flunked, But... (1930)",Comedy +154606,Pastorale (1975),Drama +154608,Plastic Jesus (1971),(no genres listed) +154610,The Spin Kid (2011),Drama +154612,Crulic - The Path to Beyond (2011),Animation|Documentary +154614,Russian Symphony (1994),Drama +154616,The Shamer's Daughter (2015),Action|Adventure|Children|Fantasy +154618,The White Bus (1967),Drama +154620,On the Comet (1970),Adventure|Fantasy|Sci-Fi +154622,The White Dove (1960),Drama +154624,Images of a Relief (1982),Drama|War +154626,Lyrical Nitrate (1991),Documentary +154628,On the Bowery (1957),Documentary +154630,Beast (2011),Drama|Thriller +154632,Funeral Ceremonies (1969),Drama +154634,Book of Days (1989),(no genres listed) +154636,Found Memories (2011),Drama +154638,Ave (2011),Drama +154640,Max & Co (2007),Adventure|Animation|Drama +154642,Bovines (2012),(no genres listed) +154644,It's Gradiva Who Is Calling You (2006),Drama +154646,Slow Action (2010),Sci-Fi +154648,O'er the Land (2009),(no genres listed) +154650,¡Vivan las Antipodas! (2011),Documentary +154652,Life Lesson (1995),(no genres listed) +154654,Finale (2007),(no genres listed) +154656,Meanwhile (2011),Drama +154658,Anémone (1968),(no genres listed) +154660,It Happened in Europe (1948),Drama +154662,Amber City (1999),(no genres listed) +154664,Sogobi (2002),(no genres listed) +154666,The Coming of Sin (1978),Thriller +154668,The Bells Toll for the Barefooted (1965),(no genres listed) +154670,Atomic Age (2012),(no genres listed) +154672,The Fourth Dimension (2012),Drama +154674,At the First Breath of Wind (2003),(no genres listed) +154676,Dad (2010),Drama +154678,The Twelve Months (1956),Animation|Children +154680,Okinawa Rendez-vous (2000),Drama|Romance|Thriller +154682,Bad Georgia Road (1977),Action|Comedy +154686,...E fuori nevica! (2014),Comedy +154690,Champion (2005),Documentary +154694,Ciudad Delirio (2014),Comedy|Romance +154696,Clan Of Amazons (1978),Action +154698,Q Planes (1939),Mystery|Thriller +154701,Chasing the Green (2009),Drama +154703,Fighting Fools (1949),(no genres listed) +154709,Hold That Baby! (1949),Comedy|Drama +154711,Home in Indiana (1944),Adventure|Drama|Romance +154717,Momentum (2003),Action|Thriller +154719,My Pal Wolf (1944),Children +154721,"Nikki, Wild Dog of the North (1961)",Children +154723,Ride a Crooked Trail (1958),Western +154725,Ride the Wild Surf (1964),Comedy +154729,Rusty's Birthday (1949),(no genres listed) +154731,Secrets of Life (1956),Documentary +154736,The Spies (Spy) (2012),Action|Comedy +154739,The Billion Dollar Hobo (1977),Children|Comedy +154742,The Flying Dagger (1969),Action +154745,The Lone Star Trail (1943),Romance|Western +154747,The Naked Maja (1958),Adventure|Drama|Romance +154749,The Tournament (1974),Action|Drama +154751,The Tournament (1929),(no genres listed) +154753,The Tournament (2015),Drama +154755,Treasure Hunters (1981),Action|Adventure +154757,Three Texas Steers (1939),Western +154759,Alraune (1952),Drama|Sci-Fi +154762,Untamed Frontier (1952),Western +154764,Valley of the Giants (1938),Adventure +154766,Who Done It? (1942),Comedy|Mystery +154768,Who Done It? (1956),Action|Comedy +154776,Skull (1927),(no genres listed) +154778,Inori (2012),Documentary +154780,36 (2012),Drama +154782,Silent Ones (2013),(no genres listed) +154784,Darkness (2013),Drama +154786,Die Welt (2013),(no genres listed) +154788,"differently, Molussia (2012)",(no genres listed) +154790,The Teasers (1975),Comedy +154792,I Embrace You With 1000 Arms (2006),Drama +154794,You Are Not I (1981),(no genres listed) +154796,Mamay (2003),Drama +154798,A Story of the Forest: Mavka (1980),Fantasy +154800,Successive Slidings of Pleasure (1974),Fantasy|Horror +154802,The Golden Key (1939),Adventure|Animation|Fantasy +154804,Nostos: The Return (1989),Drama +154806,Quick Billy (1970),(no genres listed) +154808,The Sun and the Moon (2008),(no genres listed) +154810,The Tale of John and Marie (1980),Adventure|Animation|Children|Fantasy +154812,Quixote (1965),(no genres listed) +154814,Spark of Being (2010),(no genres listed) +154816,Méditerranée (1963),(no genres listed) +154818,Ramin (2011),Documentary|Drama +154820,The bitter herb (1985),(no genres listed) +154822,A Journey Through Fairyland (1985),Animation|Children|Fantasy +154824,The Deflowering of Eva van End (2012),Drama +154826,Ein Teil von mir (2009),Drama +154828,Hate Story 3 (2015),Thriller +154830,La Clé des Champs (2011),Children|Documentary +154832,Prince Bayaya (1950),Animation +154834,L'été en pente douce (1987),Drama|Romance +154836,Winepress (1974),(no genres listed) +154838,Wool 100% (2006),Animation|Comedy|Fantasy|Sci-Fi +154840,All Stars 2: Old Stars (2011),Comedy|Drama +154842,Banana Pancakes and the Children of Sticky Rice (2015),(no genres listed) +154844,Saturday October 5th (1969),(no genres listed) +154846,Lucky in Love (2014),Comedy|Drama +154848,An Example of Intonation (1991),Documentary +154850,Blazing a Trail to the Stars (1958),Documentary|Sci-Fi +154852,Twigson (2009),Adventure|Children|Comedy +154854,Giano (2014),(no genres listed) +154856,The Blue Planet (1981),Drama|Romance +154858,Kaili Blues (2016),(no genres listed) +154860,Mother (2016),(no genres listed) +154862,Francofonia (2015),Drama +154864,The Event (2015),(no genres listed) +154866,Pioniere in Ingolstadt (1971),(no genres listed) +154868,Szaffi (1985),Animation +154870,Buried in Light (1994),(no genres listed) +154872,On the Road: A Document (1964),(no genres listed) +154874,The Great Flood (2012),Documentary +154876,Manufractur (1985),(no genres listed) +154878,The Woman Who Powders Herself (1972),(no genres listed) +154880,The Halt (2000),Documentary|Mystery +154882,"Life, Autumn (1999)",Documentary +154884,Stellar (1993),(no genres listed) +154886,Get Ready (1999),(no genres listed) +154888,In Memory of the Day Passed By (1990),(no genres listed) +154890,Father and Daughter (2000),Animation|Drama +154892,Schwechater (1958),(no genres listed) +154894,Portrait (2002),(no genres listed) +154896,Déjeuner du matin (1974),(no genres listed) +154898,Dream Work (2001),(no genres listed) +154900,Factory (2004),(no genres listed) +154902,Wind (1996),Drama +154904,Instructions for a Light & Sound Machine (2005),(no genres listed) +154906,Feelings of Mountains and Waters (1988),(no genres listed) +154908,Mermaid (1997),Animation|Fantasy +154911,Buddy Hutchins (2015),Thriller +154913,The Ouija Exorcism (2015),Horror +154915,Remember (2015),Drama|Thriller +154917,Back To The Sea (2012),Animation|Children +154919,Godheten (2013),Documentary +154921,Future My Love (2012),Documentary|Romance +154923,Tabloid Truth (2014),Crime|Drama|Thriller +154925,It Was the Son (2012),Comedy|Crime|Drama +154927,Breaking with Old Ideas (1976),(no genres listed) +154929,The Leather Boys (1964),(no genres listed) +154931,The Bogus Man (1980),(no genres listed) +154933,Oosaravelli (2011),Action|Romance +154935,For Grace (2015),Documentary +154937,White Wall (2010),Action|Drama|Fantasy|Sci-Fi|Thriller +154939,The Mermaid (2016),Comedy|Fantasy|Romance|Sci-Fi +154941,And Then There Were None (2015),Drama|Mystery +154943,Stranded (2015),Comedy +154945,Beyond (2014),Drama|Romance|Sci-Fi +154947,Airplane vs Volcano (2014),Action +154949,Holi (1985),(no genres listed) +154951,Blood Ties (1991),(no genres listed) +154959,My Mother Frank (2000),Comedy|Drama|Romance +154963,Kapicilar Krali (1976),Comedy|Drama +154965,Mojave Phone Booth (2006),Drama|Horror +154967,Skyscraper (1996),Action|Adventure +154969,Better Mus Come (2013),Action|Crime +154971,The Real Miyagi (2015),Documentary +154973,Si può fare l'amore vestiti? (2012),Comedy +154975,Merci Patron ! (2016),Comedy|Documentary +154978,Chi lavora è perduto (1963),(no genres listed) +154982,Yankee (1966),Western +154984,I Am What I Am (1967),Drama|Mystery|Thriller +154986,The Howl (1972),(no genres listed) +154988,La Vacanza (1971),(no genres listed) +154990,Action (1980),Drama +154992,Love & Passion (1987),Drama +154994,Snack Bar Budapest (1988),Comedy|Crime|Drama +154996,All Ladies Do It (1992),Comedy|Drama +154998,P.O. Box Tinto Brass (1995),Comedy +155000,Senso 45 (2002),Drama|Romance|Thriller +155004,May Morning (1970),Thriller +155008,Bora Bora (1968),Drama +155010,The Sex of Angels (1968),Drama +155012,The Man From Hong Kong (1975),Action|Crime +155014,Fine Dead Girls (2002),Drama|Thriller +155016,The Bus Is Coming (1971),Action|Drama +155018,Emelie (2015),Horror +155020,Summers Downstairs (2015),(no genres listed) +155022,Täterätää - Die Kirche bleibt im Dorf 2 (2015),Comedy|Drama +155024,Summer Camp Nightmare (1987),Drama|Thriller +155026,"Office Wife, The (1930)",Drama|Romance +155028,La pazza della porta accanto: conversazione con Alda Merini (2013),(no genres listed) +155036,Carry On Girls (1973),Comedy +155038,Jare vs. Cheek (2015),Documentary +155040,A Hole in the Head (1998),Documentary +155042,Children of Beslan (2005),Documentary +155048,The Fury of Hercules (1962),Adventure|Fantasy +155050,Les Derniers jours d'Herculanum (1962),Drama +155052,The Ten Gladiators (1963),(no genres listed) +155054,What Became of Jack and Jill? (1972),Horror|Mystery|Thriller +155056,War (2002),Drama +155058,Morgana (2012),(no genres listed) +155060,Belgica (2016),Drama +155062,Girl Asleep (2015),Comedy|Drama +155064,The Neon Demon (2016),Drama|Horror|Mystery +155066,Sun Choke (2015),Horror +155068,Йо-хо-хо (1981),Drama|Romance +155070,Gold Coast (2015),Drama +155072,Take Me to the River (2016),Drama +155074,Evolution (2016),Drama +155076,Sunset Song (2015),Drama +155078,Lo chiamavano Jeeg Robot (2016),Fantasy +155080,Superpai (2015),Comedy +155082,Night Sights (2011),Drama|Sci-Fi +155084,Sakuran (2007),Drama +155086,Vinnaithaandi Varuvaayaa (2010),Drama|Romance +155088,Demonte Colony (2015),Comedy|Horror +155090,Roja (1992),Action|Drama|Romance +155092,Ayan (2009),Action|Comedy|Romance +155094,Mouna Raagam (1986),(no genres listed) +155096,Anjathe (2008),Action|Drama +155098,Pizza II: Villa (2013),Horror|Thriller +155100,Yuddham Sei (2011),Action|Thriller +155102,Eeram (2009),Thriller +155104,Pammal K. Sambandam (2002),Comedy|Drama +155106,The Elephant God (1979),(no genres listed) +155109,Long Way Down (2010),Documentary +155111,Noiseman Sound Insect (1997),(no genres listed) +155113,Motherland (2015),Drama|Thriller +155115,Asura (2012),Animation|Drama|Horror +155117,Area 88 (1985),Action|Animation|Drama|War +155119,Hill of Freedom (2014),Drama +155121,Kshanam,(no genres listed) +155123,Nobody's Daughter Haewon (2013),Drama +155127,Tokyo Family (2013),Children|Drama +155129,Hot Bot (2016),(no genres listed) +155131,Rushlights (2013),Crime|Drama|Romance +155133,Kick (2009),Action|Comedy|Romance|Thriller +155135,Bommarillu (2006),Drama|Romance +155137,Arundhati (2009),Fantasy|Horror|Thriller +155139,Happy (2006),Drama|Romance +155141,Parugu (2008),Comedy|Drama +155143,Happy Days (2007),Drama +155145,Aarya 2 (2009),(no genres listed) +155147,Desamuduru (2007),Action|Crime|Drama|Romance +155149,The Amy Fisher Story (1993),Crime|Drama +155151,Dudes & Dragons (2015),Action|Comedy|Fantasy +155153,Pray For Death (1985),Action|Thriller +155155,You're Ugly Too (2015),Comedy +155158,Priest of Darkness (1936),Drama +155160,Portrait of a Young Man in Three Movements (1931),(no genres listed) +155162,Jack and the Beanstalk (1902),Adventure|Children|Fantasy +155164,Dream of a Rarebit Fiend (1906),Comedy|Fantasy +155166,The Thieving Hand (1908),Comedy +155168,Fraktus (2012),Comedy +155170,Hide and Seek (2014),Drama|Romance +155172,The Staple of News (2014),(no genres listed) +155176,Erika - The Performer (1971),Drama +155178,La felicità è un sistema complesso (2015),(no genres listed) +155181,Elvis & Nixon (2016),Comedy +155183,The Iron Ministry (2014),Documentary +155185,Unsere tollen Tanten (1961),Comedy +155191,Unsere tollen Nichten (1963),Comedy +155195,Unsere tollen Tanten in der Südsee (1964),Comedy +155197,The Last Ride to Santa Cruz (1964),Western +155205,When Night Falls on the Reeperbahn (1967),Crime|Thriller +155211,Der Arzt von St. Pauli (1968),Crime|Drama +155215,Das Stundenhotel von St. Pauli (1971),Crime +155217,Der Pfarrer von St. Pauli (1970),Drama +155219,Das kann doch unsren Willi nicht erschüttern (1970),Comedy +155221,Nurses For Sale (1971),Adventure +155237,Ekstase - Der Prozeß gegen die Satansmädchen (1979),Drama +155245,The Patriarch (2016),(no genres listed) +155247,The Island Monster (1954),Crime|Thriller +155249,The Sheriff (1959),(no genres listed) +155257,Zwischen Schanghai und St. Pauli (1962),Crime|Drama +155261,A Fool's World (1964),Documentary +155269,Two Faces of the Dollar (1967),Western +155271,The Battle of the Damned (1969),War +155275,"Durango Is Coming, Pay or Die (1971)",Western +155279,Le notti segrete di Lucrezia Borgia (1982),(no genres listed) +155281,A Place Called Today (1972),Drama +155283,Jack and the Beanstalk (1974),Adventure|Animation|Fantasy +155285,Dil Dhadakne Do (2015),Children|Drama|Romance +155288,Eye in the Sky (2016),Drama|Thriller|War +155290,Kareem: Minority of One (2015),Documentary +155292,Toboggan (1934),Drama +155294,Abused Confidence (1937),Drama +155296,Battement de coeur (1940),Drama +155298,Les Inconnus dans la maison (1942),(no genres listed) +155302,L'Homme de Londres (1943),(no genres listed) +155304,La fille du diable (1946),(no genres listed) +155308,Non coupable (1947),Crime|Drama +155310,Les amants du pont Saint-Jean (1947),(no genres listed) +155312,Les amoureux sont seuls au monde (1948),(no genres listed) +155314,Between Eleven and Midnight (1949),(no genres listed) +155316,Au grand balcon (1949),Drama +155322,The Truth About Bebe Donge (1952),Drama +155326,Dortoir des grandes (1953),(no genres listed) +155328,Les intrigantes (1954),(no genres listed) +155330,One Step to Eternity (1954),Drama|Thriller +155334,Folies-Bergère (1957),(no genres listed) +155336,Le feu aux poudres (1957),(no genres listed) +155338,Tous peuvent me tuer (1957),Crime|Drama +155342,La chatte (1958),Drama +155348,Love and the Frenchwoman (1960),Comedy|Drama|Romance +155350,Where the Truth Lies (1962),Crime|Horror|Thriller +155352,The Iron Mask (1962),Adventure +155358,Camino (2016),Action|Adventure|Thriller +155360,Road Games (2016),Thriller +155362,Ava's Possessions (2015),Mystery|Sci-Fi|Thriller +155364,All Hell Breaks Loose (2014),Action|Horror +155366,Monster High: Great Scarrier Reef (2016),Animation|Children +155368,Bleeding Heart (2015),Drama +155370,You Are Not Alone (2016),Horror|Thriller +155372,Goddess Of Love (2015),Drama|Horror|Mystery +155374,Yosemite (2016),Drama +155376,Weaponized (2016),Action|Sci-Fi|Thriller +155378,The Rocket Post (2004),Drama +155380,Rogue River (2012),Horror|Thriller +155382,Two Friends (2015),Comedy|Romance +155384,Always Be My Maybe (2016),Comedy|Romance +155386,Unnatural & Accidental (2006),Crime|Drama|Mystery +155390,The Sweatbox (2002),Documentary +155392,"Hello, My Name Is Doris (2016)",Drama +155395,God is on air (2002),Comedy|Drama +155397,'Til Madness Do Us Part (2013),Documentary +155399,Funeral for an Assassin (1977),(no genres listed) +155401,The Beautiful Prisoner (1983),Drama|Fantasy|Horror|Mystery +155403,Lethal Seduction (2015),Thriller +155405,Mellow Mud (2016),Drama +155407,Earthling (2011),Action|Drama|Sci-Fi|Thriller +155409,Legend of the Forest (1987),Animation +155411,The Amityville Asylum (2013),Horror +155413,Back Stage (1919),Comedy +155415,Body Team 12 (2015),Documentary +155418,That Little Band Of Gold (1915),(no genres listed) +155420,That Man's Here Again (1937),(no genres listed) +155423,The Movies (1925),Comedy +155425,A Quiet Place in the Country (1968),Drama|Horror +155427,Angels in Disguise (1949),Comedy +155430,Student Bodies (2015),Comedy +155432,Bengal Tiger (1936),Action|Adventure|Drama|Romance +155435,Calamity Jane and Sam Bass (1949),Action +155437,"Cornbread, Earl and Me (1975)",Drama +155439,Draegerman Courage (1937),Drama +155444,Five Shaolin Masters (1974),Action|Drama +155446,Foxfire (1987),Drama +155451,From Headquarters (1933),Drama|Mystery +155453,Fugitive in the Sky (1936),(no genres listed) +155455,Here Comes Carter (1936),Comedy +155457,Onaayum Aattukkuttiyum (2013),Thriller +155460,Jackpot (2013),Comedy|Thriller +155462,Fever Pitch (1985),(no genres listed) +155464,Sweet 'n Short (1991),Comedy +155466,Race Street (1948),Crime +155469,Jailbreak (1936),Drama +155471,Gaolbreak (1962),Crime|Drama +155473,Macon County Jail (1997),Crime|Thriller +155475,A cavallo della tigre (2002),(no genres listed) +155477,Jungle Cavalcade (1941),Adventure|Documentary +155479,Jungle Gents (1954),Comedy|Mystery +155481,Kenny Chesney - Summer In 3D (2010),(no genres listed) +155483,Lonely Wives (1931),(no genres listed) +155485,Lonely Wives (1972),(no genres listed) +155487,Master Minds (1949),Comedy +155489,Women in Cages (1971),Action|Crime|Drama +155491,Drum (1976),Action|Thriller +155493,Stand Alone (1985),(no genres listed) +155495,The Vindicator (1986),Action|Horror|Sci-Fi +155497,The Stalker (2013),Drama|Thriller +155499,I Dream Of Wires (2014),Documentary +155501,Roar (1981),Adventure|Thriller +155503,Outing - Engaged by Mistake (2013),Comedy +155505,Mademoiselle C (2013),Documentary +155507,Miss Oyu (1951),Drama +155509,Mr. Right (2016),Action|Comedy|Romance +155511,The Flying Man (2013),Action|Mystery|Sci-Fi +155513,The Utopian Society (2006),Comedy +155515,Blondie Plays Cupid (1940),Comedy +155517,The Girl Who Returned (1969),(no genres listed) +155521,Waitress! (1981),Comedy +155523,Stuck on You! (1982),Comedy|Romance +155525,All the Love You Cannes! (2002),Documentary +155527,Tales from the Crapper (2004),Horror +155529,Make Your Own Damn Movie (2005),(no genres listed) +155537,Return to Nuke 'Em High Volume 1 (2013),Comedy|Horror|Sci-Fi +155539,Return to Nuke 'Em High Volume 2 (2014),(no genres listed) +155541,Coconut Hero (2015),Comedy|Drama +155543,Estranged (2015),Thriller +155545,Backtrack (2016),Mystery|Thriller +155547,The Encounter (2015),Horror|Sci-Fi +155549,Borderline (1930),Drama +155551,The City Without Jews (1924),Drama +155555,Maïna (2014),Adventure|Drama +155557,Invocation of My Demon Brother (1969),Horror +155559,Tie Pimeään (1963),Crime|Drama|Thriller +155561,Ratter (2015),Drama|Horror|Thriller +155563,The Snake God (1970),Adventure|Drama|Horror +155565,Road to Victory (2007),Drama|Romance +155567,USS Seaviper (2012),Action|Drama|War +155569,54 Days (2014),Thriller +155571,Groupies (1970),(no genres listed) +155573,Sethupathi (2016),Action|Drama|Romance +155575,Force (2011),Action|Crime|Drama|Romance|Thriller +155579,DC Showcase: Jonah Hex (2010),Action|Animation|Western +155581,Pee-wee's Big Holiday (2016),Adventure|Comedy +155583,Miracles from Heaven (2016),Drama +155587,Millipilleri (1966),(no genres listed) +155589,Noin 7 veljestä (1968),(no genres listed) +155591,The Answers (2015),Fantasy|Romance +155593,Pawn's Move,(no genres listed) +155595,The Confirmation (2016),Comedy +155597,Prologue (2015),(no genres listed) +155599,The Daughter (2016),Drama +155601,Sugar Hill (1974),Action|Crime|Horror +155603,The Last Patrol (2014),Documentary +155605,Test (2014),Drama +155607,Exit Marrakech (2013),Drama +155609,Space Tourists (2010),Adventure|Documentary +155611,Life Is Sacred (2014),Documentary +155613,Day of the Idiots (1981),Drama|Fantasy +155615,This Night (2008),Drama +155617,Palermo or Wolfsburg (1980),(no genres listed) +155619,Neue Vahr Süd (2010),Comedy +155621,If These Knishes Could Talk: The Story of the NY Accent,(no genres listed) +155623,The Driftless Area (2015),Comedy|Drama|Mystery|Romance +155625,Under the Shadow (2016),Horror|Thriller +155627,Ivy (2015),Drama +155629,You Must Be Joking (2014),Comedy +155631,The Young Kieslowski (2015),(no genres listed) +155633,The Buster Keaton Story (1957),(no genres listed) +155635,Vinodentro (2013),Thriller +155637,Don't Die Without Telling Me Where You Are Going (1995),Drama +155639,Kokoyakyu: High School Baseball (2006),(no genres listed) +155641,A More Perfect Union (1989),Documentary +155643,First Comes Courage (1943),Drama|War +155645,The Giant Behemoth (1959),Drama|Fantasy|Horror|Sci-Fi +155650,Little Dead Rotting Hood (2016),Fantasy|Horror|Romance +155652,Eagle in a Cage (1972),Drama +155654,Home Is the Hero (1959),Drama +155656,Showdown In Manila (2016),(no genres listed) +155659,Florence Foster Jenkins (2016),Comedy|Drama +155663,Beynelmilel (2006),Comedy|Drama +155665,We Have Only One Life (1958),Comedy|Drama +155669,The Drunkard (1950),Drama +155671,"Learn How to Read and Write, Son (1981)",Comedy|Drama +155673,La Vache (2016),Comedy +155675,I De Gyni Na Fovitai Ton Andra (1965),Comedy|Drama +155677,Alice in the Navy (1961),Comedy +155679,Groom from London (1967),Comedy +155681,Throbs at the Desk (1963),Comedy|Romance +155683,I arhontissa ki o alitis (1968),Comedy|Drama +155685,Extended Play (2006),Comedy +155687,The Valiants of Samothrace (2003),Comedy +155689,It's a Long Road (1998),Drama +155691,Spooks Run Wild (1941),Comedy|Horror +155693,The Ape Man (1943),Horror|Sci-Fi +155695,Bela Lugosi Meets a Brooklyn Gorilla (1952),Comedy|Sci-Fi +155697,Alfred the Great (1969),Action|Drama|War +155699,Here We Go Round the Mulberry Bush (1968),Comedy +155701,Nothing But the Best (1964),Comedy +155703,The Secret Place (1957),(no genres listed) +155705,The Sinister Man (1961),Crime +155707,Wrecker (2015),Action|Horror|Thriller +155709,Bad Spelling (2004),Drama +155711,Underwater Love (2011),Drama|Fantasy|Romance +155713,Boys Will Be Boys (1935),Comedy +155715,Disorder (2015),Drama|Thriller +155717,Hinterdupfing (2014),Comedy +155719,Das fliegende Klassenzimmer (1954),Children|Comedy|Drama +155721,Poor Pretty Eddie (1975),Drama|Horror +155723,My Man is a Loser (2014),Comedy +155725,Spieltrieb (2013),Drama +155727,The Land of OZ (2015),Comedy +155731,12 Paces without a Head (2009),Comedy +155733,Evil Feed (2013),Action|Horror +155735,Bayonetta: Bloody Fate (2013),Action|Animation +155737,Shana: The Wolf's Music (2014),Adventure|Drama +155739,The Opium War (1997),Drama|War +155741,Two-Bit Waltz (2014),Children|Comedy|Drama +155743,My Big Fat Greek Wedding 2 (2016),Comedy +155745,Point of Terror (1971),Horror +155748,Born to Be Blue (2015),Drama +155750,Arrêt Pipi (2015),(no genres listed) +155752,Danny and the Wild Bunch (2014),(no genres listed) +155754,Failure (2013),Comedy +155756,Hibernation (2005),Drama|Fantasy|Sci-Fi +155758,Irudhi Suttru (2016),Action|Drama +155760,Love's Routine (2013),Comedy|Drama +155762,Saving Norman (2013),Comedy|Drama +155764,Fugu & Tako (2012),(no genres listed) +155766,The Gift (2014),Drama|Romance +155768,Apricot (2009),(no genres listed) +155770,In the Last Days of the City (2016),(no genres listed) +155774,Neon Bull (2015),Adventure +155776,The Sect (1991),Horror|Thriller +155780,Rising Damp (1980),Comedy +155784,The Great McGonagall (1975),Comedy +155786,"Digby, the Biggest Dog in the World (1973)",(no genres listed) +155788,The Bliss of Mrs. Blossom (1968),Comedy|Romance +155790,The Catman of Paris (1946),Horror|Thriller +155794,"Coffee, Kill Boss (2013)",(no genres listed) +155796,Confession of a Child of the Century (2012),Drama +155798,Hannibal Buress: Comedy Camisado (2016),Comedy +155800,Jimmy Carr: Funny Business (2016),Comedy +155802,Hindle Wakes (1927),(no genres listed) +155804,The Buddha (2010),Documentary +155806,The Accidental Gangster (2008),Action|Adventure|Comedy +155808,Barista (2015),Documentary +155810,I Saw the Light (2015),Drama +155812,Get a Job (2016),Comedy +155814,What We Become (2015),Horror|Thriller +155816,Restless (2012),Drama|Romance +155818,Shock 'Em Dead (1991),Comedy|Horror +155820,Keanu (2016),Comedy +155822,The Taiwan Oyster (2012),Drama +155824,Honey Night (2015),Drama|Thriller +155826,Sparrows (2015),Drama +155828,The Lure (2015),Thriller +155830,White Girl (2016),Drama +155832,Yoga Hosers (2015),Comedy|Horror|Thriller +155834,Run Boy Run (2013),Drama|War +155836,Google and the World Brain (2013),Documentary +155838,Keepintime: A Live Recording (2004),(no genres listed) +155842,Brasilintime: Batucada com Discos (2007),Documentary +155844,The Mask of Satan (1989),(no genres listed) +155846,War on Everyone (2016),Comedy +155848,The Notorious Mr. Bout (2014),Documentary +155850,Elektro Moskva (2013),Documentary +155852,Wavemakers (2013),Documentary +155854,Haack ...The King of Techno (2004),(no genres listed) +155856,Tony Benn: Will and Testament (2014),(no genres listed) +155858,Brian Eno: Another Green World (2010),Documentary +155860,This Is The Life (2008),Documentary +155862,What Darwin Didn't Know (2009),Documentary +155864,The People Speak (2009),Documentary +155866,When Bjork Met Attenborough (2013),Documentary +155868,Aus Liebe zu Dir (2012),Drama +155870,What Is Left (2014),(no genres listed) +155872,The Perfect House (2012),Horror +155874,Love & Friendship (2016),Drama|Romance +155878,The Wolves (1996),Action|Drama|Thriller +155880,Riding the Edge (1989),Action|Adventure +155882,Caravans (1978),Action|Adventure|Drama|Romance +155884,Game For Vultures (1980),(no genres listed) +155886,The Sentimental Engine Slayer (2010),(no genres listed) +155888,Razzia (1955),Crime|Drama +155890,Grand Central (2013),Drama|Romance +155892,Me Him Her (2015),Comedy +155896,Last Girl Standing (2015),Drama|Horror +155898,Giovanni's Island (2014),Animation|Drama +155900,Melody For Two (1937),Romance +155902,Once a Doctor (1937),Drama +155906,Sasquatch Hunters (2005),Horror +155908,Public Wedding (1937),Comedy +155910,Remote Control (1988),Comedy|Horror|Sci-Fi +155913,The Return of the Cisco Kid (1939),Western +155915,Roar of the Dragon (1932),Adventure|Romance +155917,The House of Fear (1945),Horror|Mystery|Thriller +155919,Shopworn (1932),Drama|Romance +155921,Silver Queen (1942),Western +155923,Sing (1989),(no genres listed) +155927,Vdrebezgi (2011),(no genres listed) +155930,Smorgasbord (1983),Comedy|Fantasy|Sci-Fi +155932,So This Is Love (1953),(no genres listed) +155934,Song of the Saddle (1936),Comedy|Romance|Western +155941,The Law in Her Hands (1936),Comedy|Crime|Drama +155943,The Lion and the Horse (1952),Western +155945,The Lone Wolf Meets a Lady (1940),Comedy|Drama|Mystery +155948,The Proud Twins (1979),Action +155950,The Purchase Price (1932),Comedy|Drama +155952,The Rich Are Always with Us (1932),Comedy|Drama|Romance +155954,Three Cheers for the Irish (1940),Comedy|Romance +155956,Vacation (2008),Drama +155959,White Bondage (1937),Drama +155961,Wide Open (1930),Comedy +155963,Wide Open (1974),Comedy|Drama +155966,Elections Day 2 (2016),Comedy +155968,The Night Manager (2016),Crime|Drama|Mystery|Thriller +155970,They're Watching (2016),Comedy|Horror|Thriller +155972,Down and Dirty Duck (1974),Animation|Comedy +155974,Barolo Boys (2014),Documentary +155976,Kryptonita (2015),Comedy|Fantasy|Sci-Fi +155978,FLicKeR (2009),Documentary +155980,Prospect (2014),Action|Drama|Sci-Fi +155982,Cairn (2008),Drama +155984,Prague (2006),Drama +155986,Mad Ship (2012),(no genres listed) +155988,Spawn: The Recall (2014),Horror|Thriller +155990,Kalahari Harry (1994),(no genres listed) +155992,The Fire Next Time (1993),Thriller +155994,Creature (1998),Horror|Sci-Fi|Thriller +155996,Alex: The Life of a Child (1986),Drama +155998,Checkpoint (2003),Documentary +156000,Justice League vs. Teen Titans (2016),Action|Animation +156002,Bill (2015),Comedy +156015,Emergency Exit (2014),(no genres listed) +156017,Who Took Johnny (2014),Documentary +156019,No Más (2013),Documentary +156021,Tre tocchi (2014),Drama +156023,Tea Time (2014),(no genres listed) +156025,Ice Age: The Great Egg-Scapade (2016),Adventure|Animation|Children|Comedy +156027,On Air (2012),Comedy|Drama +156029,Edgar G. Ulmer: The Man Off-screen (2004),Documentary +156031,Richard Pryor: Live and Smokin' (1971),Comedy +156033,"Bill of Divorcement, A (1940)",Drama +156035,The Adventures of Huckleberry Finn (2012),Adventure|Children +156037,Hopelessly Lost (1973),Adventure|Children +156039,The Animated Adventures of Tom Sawyer (1998),Children +156041,The Adventures of Tom Sawyer and Huckleberry Finn (1981),Adventure|Children +156043,The Adventures of Huckleberry Finn (1955),Adventure +156045,Mountain Family Robinson (1979),Adventure|Children +156048,Amazing Grace (1992),(no genres listed) +156050,Amelia (2003),Drama +156052,Amélia (2000),(no genres listed) +156054,The Wonderful Wizard of Oz: 50 Years of Magic (1990),Documentary +156060,Baby Face Harrington (1935),Comedy|Crime +156063,"Dance With Me, Henry (1956)",Comedy +156067,Redland (2011),Drama|Western +156069,The Soul of the Bone (2004),Documentary +156071,Pripyat (1999),(no genres listed) +156073,Orange Love (2007),Drama +156075,Mágica Aventura (1973),(no genres listed) +156077,Csontvary (1980),(no genres listed) +156079,April (1961),Comedy|Drama|Romance +156081,My Worst Nightmare (2011),Comedy +156083,Path of Destruction (2005),Action|Sci-Fi +156085,Sunshine Superman (2015),Documentary +156087,The Woods Are Still Green (2014),Drama|War +156091,El Ardor (2014),Drama|Western +156093,Ardor (2002),Drama|Thriller +156095,Beat (1997),Action|Drama +156097,Blonde Dynamite (1950),(no genres listed) +156099,She's Dangerous (1937),Crime|Drama +156101,Cell 2455 Death Row (1955),(no genres listed) +156104,Everything Is Copy (2015),Documentary +156106,Faust (1960),Drama|Fantasy +156109,From Caligari to Hitler: German Cinema in the Age of the Masses (2014),Documentary +156111,Ghouls (2008),Fantasy|Horror +156115,Hunger (2001),Drama +156123,I Spit on Your Grave (1959),Drama|Thriller +156125,I Spit on Your Grave III: Vengeance is Mine (2015),Horror|Thriller +156127,Incendiary Blonde (1945),Romance +156129,Blind Spot (1947),Mystery +156131,Circle of Fury (2010),Action|Adventure +156133,Isle of Fury (1936),Adventure +156135,Isle of Missing Men (1942),Drama|Romance +156137,Jock of the Bushveld (2011),Adventure|Animation|Children|Comedy +156141,Kamikaze (1986),Thriller +156143,For Those We Love (2007),War +156145,Kamikaze 1989 (1982),Sci-Fi|Thriller +156148,Lady of the Law (1975),Action|Crime +156150,Call to Arms (1973),Action|Adventure|Drama +156154,The Rescue (1971),Action +156156,Swordswomen Three (1970),Action +156160,Lady with a Sword (1971),Action +156162,The Jade Fox (1979),Action +156166,"Bandits, Prostitutes and Silver (1977)",Action +156168,The Cannibals (1972),Action +156170,Blood of the Dragon (1971),Action|Drama +156173,Lucky Losers (1950),Comedy +156175,Mapplethorpe: Look at the Pictures,(no genres listed) +156178,New Faces of 1937 (1937),Comedy|Romance +156180,New Orleans (1947),(no genres listed) +156182,"No Leave, No Love (1946)",Comedy +156184,The Execution of Wanda Jean (2002),Documentary +156187,Only the Dead (2015),Documentary|War +156193,Angel Baby (1961),Drama +156197,Sudden Danger (1955),Crime|Drama +156204,Side Show (1931),Comedy +156206,Smoky (1946),Children|Drama +156208,Smoky (1966),Western +156210,Sugar (2004),Drama|Romance +156213,The Symbol of the Unconquered (1920),Drama +156215,Talent Scout (1937),Drama|Romance +156222,Tarnished Angel (1938),Drama +156226,The Drifter (1944),Western +156233,I Escaped from the Gestapo (1943),(no genres listed) +156235,The Escape (1964),Drama +156237,The Escape (1939),Crime|Drama +156244,The Extra Girl (1923),Comedy +156248,The Great American Pastime (1956),Comedy +156250,The Great Missouri Raid (1951),(no genres listed) +156254,The Lady Assassin (1983),Action +156256,The Lady Is the Boss (1983),Action|Comedy +156258,The Lone Wolf Keeps a Date (1940),Comedy|Crime|Mystery +156260,The Lone Wolf and His Lady (1949),Crime|Drama|Mystery|Romance +156262,The Lone Wolf in London (1947),Action|Comedy|Crime|Mystery +156264,The Notorious Lone Wolf (1946),Comedy|Mystery +156266,Passport to Suez (1943),Comedy|Crime|Thriller +156268,One Dangerous Night (1943),(no genres listed) +156270,Counter-Espionage (1942),Comedy|Mystery|Romance|War +156272,Secrets of the Lone Wolf (1941),Crime|Mystery|Romance +156274,The Lone Wolf Takes a Chance (1941),Mystery +156276,The Lone Wolf Strikes (1940),Comedy|Crime|Drama|Romance|Thriller +156278,The Lone Wolf in Paris (1938),(no genres listed) +156280,The Lone Wolf Returns (1935),Mystery +156282,The False Faces (1919),Action|Drama|War +156284,The Man in the Road (1956),(no genres listed) +156286,The Noose Hangs High (1948),Comedy +156293,The Sultan's Daughter (1943),Comedy|War +156296,Time Out for Rhythm (1941),Comedy +156300,The Iroquois Trail (1950),Western +156303,Valley of the Kings (1954),Adventure +156305,Keep 'Em Flying (1941),Comedy|War +156307,Pardon My Sarong (1942),Comedy +156309,It Ain't Hay (1943),Comedy +156311,Hit the Ice (1943),Comedy +156313,In Society (1944),Comedy +156315,Here Come the Co-eds (1945),Comedy +156317,Little Giant (1946),Comedy +156319,Buck Privates Come Home (1947),Comedy +156321,Lost in Alaska (1952),Comedy +156323,The Battle of the Century (1927),Comedy +156325,The fair Co-Ed (1927),Comedy +156329,Portia on Trial (1937),(no genres listed) +156332,Little Tough Guy (1938),Crime|Drama +156334,The Beloved Brat (1938),Comedy|Drama +156338,Hell's Kitchen (1939),Drama +156340,On Dress Parade (1939),Drama +156342,Private Detective (1939),(no genres listed) +156346,Boys of the City (1940),Comedy|Mystery|Thriller +156350,Give Us Wings (1940),Adventure|Comedy +156352,Junior G-Men (1940),Crime|War +156354,You're Not So Tough (1940),Crime|Drama +156356,That Gang of Mine (1940),Comedy|Drama +156358,Angels with Broken Wings (1941),Comedy|Romance +156360,Bowery Blitzkrieg (1941),Comedy +156362,Cyclone (1987),Action|Thriller +156364,The Ratings Game (1984),Comedy +156367,Princess Jellyfish (2014),Comedy +156369,Zero Days (2016),Documentary +156371,Everybody Wants Some (2016),Comedy +156373,Mithya (2008),Comedy|Crime|Drama +156375,Raghu Romeo (2003),(no genres listed) +156377,Strays (1997),Drama +156379,Carjacked (2011),Action|Thriller +156381,Sign Painters (2014),Documentary +156383,Boys Over Flowers (2009),Comedy|Drama|Romance +156385,He's Beautiful! (2009),Comedy|Drama|Romance +156387,Sing Street (2016),Drama +156390,All-Stars (2014),Comedy +156392,CodeGirl (2015),Documentary +156394,Ayanda (2015),Drama|Romance +156396,Perceval (1978),Drama|Romance +156398,Flower Girl (2009),Comedy|Romance +156404,A Millionaire's First Love (2006),Drama|Romance +156406,Jump! (2014),Comedy|Drama +156410,Sight (2012),Sci-Fi +156412,The Love-stricken (1992),(no genres listed) +156414,Life Even Looks Like a Party (2009),Documentary +156416,Bag Man (2014),(no genres listed) +156418,Taking Chances (2009),Comedy|Romance +156420,Flying Wild (1941),(no genres listed) +156423,Hit the Road (1941),Comedy|Crime +156425,Mob Town (1941),Comedy|Drama +156427,Sea Raiders (1941),Action|War +156429,Junior Army (1942),Action|Adventure +156431,Born to Sing (1942),Action|Crime +156433,Let's Get Tough (1942),Comedy +156435,Mr. Wise Guy (1942),Comedy|Drama|Romance +156437,Sunday Punch (1942),Comedy|Drama|Romance +156447,Fighting Trouble (1956),Comedy +156449,Hot Shots (1956),Comedy +156451,Hold That Hypnotist (1957),Action|Comedy|Mystery +156453,Looking for Danger (1957),Comedy +156455,Spook Chasers (1957),Comedy +156457,In the Money (1958),(no genres listed) +156460,Gentle Giant (1967),(no genres listed) +156463,Escape (1971),Sci-Fi|Thriller +156469,'Neath Brooklyn Bridge (1942),Comedy|Drama|Romance|War +156471,Smart Alecks (1942),Comedy +156473,Clancy Street Boys (1943),Comedy +156475,Ghosts on the Loose (1943),Comedy +156477,Kid Dynamite (1943),Comedy +156479,Follow the Leader (1944),Action|Adventure|Comedy|Crime|Drama +156481,Million Dollar Kid (1944),(no genres listed) +156485,Mr. Muggs Rides Again (1945),Comedy +156487,Bowery Bombshell (1946),Comedy +156489,Mr. Hex (1946),Comedy +156491,Hard Boiled Mahoney (1947),Comedy|Crime|Mystery +156493,News Hounds (1947),(no genres listed) +156495,Jinx Money (1948),Comedy +156497,Trouble Makers (1949),Comedy|Crime +156499,Blues Busters (1950),Comedy|Musical +156501,Triple Trouble (1950),Action|Comedy|Crime|Drama +156503,Bowery Battalion (1951),Action|Comedy +156505,Crazy Over Horses (1951),Comedy +156507,Ghost Chasers (1951),Action|Comedy +156509,Let's Go Navy! (1951),Comedy +156511,Feudin' Fools (1952),Comedy +156513,Here Come the Marines (1952),Comedy +156515,Hold That Line (1952),Action|Comedy +156517,No Holds Barred (1952),(no genres listed) +156519,Clipped Wings (1953),Comedy +156521,Jalopy (1953),Comedy +156523,Loose in London (1953),Action|Adventure|Comedy +156525,Private Eyes (1953),(no genres listed) +156527,Paris Playboys (1954),Comedy +156529,The Bowery Boys Meet the Monsters (1954),Comedy|Horror|Sci-Fi +156531,Bowery to Bagdad (1955),Comedy +156533,Dig That Uranium (1955),(no genres listed) +156535,High Society (1955),Comedy +156537,Jail Busters (1955),(no genres listed) +156539,Spy Chasers (1955),Comedy +156541,Crashing Las Vegas (1956),Action|Comedy +156543,Second Fiddle to a Steel Guitar (1966),Comedy +156545,Angry Indian Goddesses (2015),Comedy|Drama +156547,The Girl in the Photographs (2015),Crime|Horror|Thriller +156549,The Unfolding (2015),Horror|Mystery|Thriller +156551,Lovers of the Café Flore (2006),Drama +156553,Zoom (2015),Animation|Comedy|Drama +156555,Sundays (2015),Sci-Fi +156557,This Is Normal (2013),Drama +156559,He Took His Skin Off for Me (2014),Drama|Horror|Romance +156561,Highway to Hellas (2015),Comedy +156563,2 Hours (2012),Horror +156565,Amal (2007),Drama +156567,Wind (2013),Animation +156569,Rhinoceros (1964),Animation|Comedy +156571,The Twin Girls of Sunset Street,(no genres listed) +156573,Palmipedarium (2012),Animation|Drama +156575,Ave Maria (2015),(no genres listed) +156577,Day One (2015),(no genres listed) +156579,Everything Will Be Okay (2015),Drama|Thriller +156581,Stutterer (2015),(no genres listed) +156583,Eager (2014),(no genres listed) +156585,Vaesen (2012),(no genres listed) +156587,Hate Story (2012),Thriller +156589,Hate Story 2 (2014),Drama|Romance|Thriller +156591,Absent Minded,(no genres listed) +156593,Small People with Hats (2014),Animation +156595,La escopeta nacional (1978),Comedy +156597,Catastasis (2015),Horror|Thriller +156599,The Lift (1972),Comedy|Thriller +156601,The T.A.M.I. Show (1964),Documentary +156603,In Search of Blind Joe Death: The Saga of John Fahey (2013),Documentary +156605,Paterson,(no genres listed) +156607,The Huntsman Winter's War (2016),Action|Adventure|Drama|Fantasy +156609,Neighbors 2: Sorority Rising (2016),Comedy +156611,Snow Shark: Ancient Snow Beast (2011),Horror|Sci-Fi +156613,Rumble (2002),(no genres listed) +156615,Silent Retreat (2013),Horror|Mystery|Thriller +156617,The Roman Spring of Mrs. Stone (2003),Drama +156619,The Pack (1977),Horror +156621,The Houston Story (1956),Crime|Drama +156623,Johnny Stool Pigeon (1949),(no genres listed) +156625,Just Before Dawn (1946),Crime|Drama|Mystery +156627,Klondike Kate (1943),Western +156629,She's a Soldier Too (1944),Drama +156631,The Mark of the Whistler (1944),Thriller +156633,The Crime Doctor's Warning (1945),Mystery +156635,Voice of the Whistler (1945),Thriller +156637,Mysterious Intruder (1946),Crime|Mystery +156639,Crime Doctor's Man Hunt (1946),Crime|Drama|Thriller +156641,"Texas, Brooklyn & Heaven (1948)",Comedy +156643,Hollywood Story (1951),Crime +156645,Cave of Outlaws (1951),Western +156647,Fort Ti (1953),Western +156649,Slaves of Babylon (1953),Adventure +156655,Drums of Tahiti (1954),Adventure +156661,The Law vs. Billy the Kid (1954),(no genres listed) +156663,Masterson Of Kansas (1954),Western +156665,The Americano (1955),Adventure|Western +156667,Duel on the Mississippi (1955),Drama +156671,"Let's Kill Uncle, Before Uncle Kills Us (1966)",Horror|Thriller +156673,The Spirit Is Willing (1967),Comedy +156675,Project X (1968),Mystery|Sci-Fi +156678,Enchantment (1921),Comedy|Romance +156680,Killing Them Safely (2015),Documentary +156682,A Scandal in Paris (1946),Adventure|Comedy|Crime|Drama|Romance +156684,A Good American (2014),(no genres listed) +156686,Another World (2014),(no genres listed) +156688,A 2nd Chance (2013),(no genres listed) +156690,The Invited (2010),Horror +156692,How To Plan An Orgy in a Small Town (2015),Comedy +156694,Zombie Ass: Toilet of the Dead (2011),Comedy|Horror +156696,Island of Death (1976),Horror|Thriller +156698,Baishe Srabon (2011),Thriller +156700,Monsterwolf (2010),Fantasy|Horror +156702,Joey (1997),Children +156704,Very Semi-Serious (2015),Documentary +156706,The Trust (2016),Crime|Thriller +156708,The Mask (1988),(no genres listed) +156710,From Bedrooms to Billions (2014),Documentary +156712,Aadukalam (2011),Action|Drama|Thriller +156714,Summer Storm (1944),Drama +156718,Interrogation (2016),Drama|Thriller +156720,Burning an Illusion (1981),(no genres listed) +156722,Dark Horse (2015),Documentary|Drama +156724,7.2 (2014),(no genres listed) +156726,Hush (2016),Thriller +156728,Free Angela and All Political Prisoners (2012),Documentary +156730,Wet Bum (2014),Drama +156732,Hey Good Lookin' (1982),Animation|Comedy|Drama +156734,The Visit: An Alien Encounter (2015),Documentary +156736,NN (2014),(no genres listed) +156738,Yasmine (2014),Action +156740,A Change of Seasons (1980),Comedy|Drama|Romance +156742,Canon City (1948),Action|Crime|Drama +156745,From Hand to Mouth (1919),Action|Comedy +156747,Inside the Walls of Folsom Prison (1951),Crime|Drama +156751,The Pay-Off (1930),Crime|Drama +156753,Man Vs. (2015),Horror|Sci-Fi|Thriller +156755,Things to Come (2016),Drama +156757,Sugar Daddies (2014),Thriller +156759,Asmodexia (2014),Horror +156763,Multi-Facial (1995),Drama +156765,Cien niños esperando un tren (1988),(no genres listed) +156767,Ghosts Before Breakfast (1928),Fantasy +156769,Out of Sync (2000),Comedy|Drama +156771,Dangerous Days: Making Blade Runner (2007),Documentary +156773,Jimmy Carr: Live (2004),Comedy +156775,Jimmy Carr: Stand Up (2005),Comedy +156777,Jimmy Carr: Comedian (2007),Comedy +156779,Jimmy Carr: In Concert (2008),Comedy +156781,Jimmy Carr: Telling Jokes (2009),Comedy +156783,Jimmy Carr: Making People Laugh (2010),Comedy +156785,Jimmy Carr: Being Funny (2011),Comedy +156787,Jimmy Carr: Laughing and Joking (2013),Comedy +156789,Internet Story (2010),Animation|Drama +156791,Kara (2012),Drama|Sci-Fi +156793,Baby Love (1968),Drama +156795,The Dead Room (2015),Horror|Thriller +156797,Kisses for Breakfast (1941),Comedy|Romance +156799,O Candidato Honesto (2014),Comedy +156801,The Magician (1898),Drama|Fantasy +156807,Black Magic (1992),Comedy|Drama|Horror +156810,Black Magic (1975),Horror +156815,"Undesirable, The (a.k.a. The Exile) (A tolonc) (1915)",Drama|Romance +156817,The Blonde from Brooklyn (1945),Drama +156819,Confirmation (2016),Drama +156821,Yakeen (1969),Action|Crime|Mystery|Romance|Thriller +156823,Secret Agent (1947),Drama|Thriller|War +156826,Darkroom (2013),Thriller +156828,Enchanted Kingdom 3D (2014),Documentary +156830,Exodus: Tales from the Enchanted Kingdom (2005),Action|Sci-Fi +156832,Gentlemen Marry Brunettes (1955),Comedy +156834,Honeymoon Hotel (1964),Comedy +156837,Joe Dakota (1957),Western +156840,Jurassic Attack (2012),Action|Sci-Fi +156842,Man Alive (1945),Comedy +156844,Moonlight on the Prairie (1935),(no genres listed) +156846,Vabank II (1985),Comedy|Crime +156848,Touch and Go (1991),(no genres listed) +156850,The Christmas Hope (2009),Children|Drama +156855,Poseidon Rex (2014),Action|Sci-Fi +156857,Refugiado (2014),Drama +156859,Sharkman (2001),Horror|Sci-Fi +156862,Sweet Micky for President (2015),Documentary +156865,The Bamboo Blonde (1946),Romance|War +156867,The Bandit Trail (1941),Western +156869,The Lady Hermit (1971),Action +156871,The Omaha Trail (1942),Western +156873,The Spiral Staircase (2000),(no genres listed) +156877,The Young Vagabond (1985),Action +156879,Trail Guide (1952),Western +156881,Trailin' West (1936),Western +156885,Triple Trouble (1918),Comedy +156889,Kentucky Kernels (1934),Comedy +156894,A Way of Life (2004),(no genres listed) +156896,Sherpa (2015),Adventure|Documentary +156898,Darling (2015),Thriller +156900,The Eight Immortals Restaurant: The Untold Story (1993),Comedy|Crime|Drama|Horror +156903,The Waiting (2016),Thriller +156907,Mr. No Legs (1979),Action|Drama +156909,The Guns (1964),Drama +156911,"Lúcio Flávio, o Passageiro da Agonia (1977)",(no genres listed) +156913,"Rio, Zona Norte (1957)",(no genres listed) +156915,Rio 100 Degrees (1955),(no genres listed) +156917,The Amulet of Ogum (1974),Drama +156919,A Mother Should Be Loved (1934),(no genres listed) +156921,All The Days Before Tomorrow (2007),Comedy|Drama|Romance +156923,Of Men and War (2014),Documentary +156925,Riddle (2013),Mystery|Thriller +156927,Young Dr. Kildare (1938),Drama +156929,Dr. Kildare's Strange Case (1940),Drama +156931,Dr. Kildare Goes Home (1940),Drama +156933,Dr. Kildare's Crisis (1940),Drama +156935,Dr. Kildare's Wedding Day (1941),Drama +156937,Dr. Kildare's Victory (1942),Drama +156940,Girl on the Edge (2015),Children|Drama +156942,The Apple Game (1977),Comedy|Drama +156944,Land of Mine (2015),War +156950,Chanel Solitaire (1981),(no genres listed) +156952,The Girl in Blue (1973),Drama +156954,Don't Let the Angels Fall (1969),(no genres listed) +156956,Too Late (2015),Drama +156958,Young Girls of Wilko (1979),Drama|Romance +156960,The Cheerleader Murders (2016),Thriller +156962,Rio das Mortes (1971),Comedy +156964,In Jackson Heights (2015),Documentary +156966,In Transit (2015),Documentary +156968,City of Gold (2016),Documentary +156972,Onimasa: A Japanese Godfather (1982),Action +156974,The Niklashausen Journey (1970),Drama +156976,My Step Brother Frankenstein (2005),Drama +156978,His Wife's Diary (2000),Drama|Romance +156980,Dark Delusion (1947),Drama|Mystery +156982,Between Two Women (1945),Drama +156984,3 Men in White (1944),Comedy|Drama +156986,Dr. Gillespie's Criminal Case (1943),Drama +156989,The Massacre (1912),(no genres listed) +156991,The Burglar’s Dilemma (1912),(no genres listed) +156993,The New York Hat (1912),(no genres listed) +156996,The Painted Lady (1912),(no genres listed) +156998,Friends (1912),Romance|Western +157000,The Miser's Heart (1911),(no genres listed) +157002,The Battle (1911),Drama|War +157004,The House of Darkness (1913),(no genres listed) +157006,Death's Marathon (1913),(no genres listed) +157009,The Battle at Elderbush Gulch (1913),Action|Western +157014,The Return Of Peter Grimm (1935),(no genres listed) +157017,This Side of Heaven (1934),Comedy|Drama|Romance +157021,One Man's Journey (1933),Drama +157023,Sweepings (1933),Drama +157028,The Voice of Bugle Ann (1936),(no genres listed) +157034,The Bad Man (1941),Comedy|Western +157036,The Penalty (1941),Crime|Drama +157038,Our Mr. Sun (1956),(no genres listed) +157041,Unguarded (2011),(no genres listed) +157043,Stacey (1973),Action|Crime|Drama +157045,The Young Stranger (1957),Drama +157047,2 Nights Till Morning (2015),Drama|Romance +157049,The Brittany Murphy Story (2014),Drama +157051,Där vi en gång gått (2010),Drama +157053,The Education of Sonny Carson (1974),Drama +157055,Uncaged (2016),Comedy|Horror|Thriller +157057,The Birth of Saké (2015),(no genres listed) +157059,VANish (2015),Action|Crime|Horror|Thriller +157061,Mrs. 'Arris Goes to Paris (1992),Drama +157063,Kitchen (1965),(no genres listed) +157065,Observance (2015),Horror|Mystery|Thriller +157067,Five Evenings (1979),Drama|Romance +157069,What Our Fathers Did: A Nazi Legacy (2015),Documentary +157071,Trona (2004),Drama +157073,Theory of Obscurity: A Film About the Residents (2015),Documentary +157075,Komissar (1967),Drama|War +157077,The Garden of Sinners - Chapter 4: garan-no-dou. (The Hollow Shrine) (2008),Animation +157079,The Garden of Sinners: Future Gospel (2013),Animation|Sci-Fi +157081,Black Sun (2007),Drama +157083,The Silent Touch (1992),(no genres listed) +157085,O Coronel e o Lobisomem (2005),Comedy +157087,The Assailant (2009),Action|Adventure|Drama +157089,Popeye Doyle (1986),(no genres listed) +157091,Blood Diner (1987),Comedy|Horror +157093,Death on Demand (2008),Horror +157095,Son of Sam (2008),Drama|Horror|Thriller +157098,Jackrabbit (2015),Sci-Fi|Thriller +157100,Turkey Shoot (1982),Horror|Sci-Fi +157102,Blondie Goes Latin (1941),Comedy +157104,Svens Geheimnis (1995),Drama +157106,Fan (2016),Action|Drama|Thriller +157108,Texas - Doc Snyder hält die Welt in Atem (1993),Comedy|Western +157110,00 Schneider - Jagd auf Nihil Baxter (1994),Comedy|Crime +157112,Praxis Dr. Hasenbein (1997),Comedy +157114,Fatty Finn (1980),Children|Comedy|Fantasy +157116,"Ich Chef, Du Turnschuh (1998)",Comedy|Drama +157118,Belles Familles (2015),Comedy|Drama +157120,Máncora (2008),Drama|Romance +157122,The Man Who Knew Infinity (2016),Drama +157124,Drifters (2015),Drama +157126,Pretty Ugly People (2009),Comedy +157128,No Men Beyond This Point (2015),(no genres listed) +157130,Despite the Falling Snow (2016),Drama|Romance|Thriller +157132,Madly Madagascar (2013),Animation|Children|Comedy +157134,Hammy's Boomerang Adventure (2006),Animation|Children|Comedy +157136,First Flight (2006),Animation +157138,Folk Hero & Funny Guy (2016),Comedy +157140,Dreamland (2016),Comedy|Drama|Romance +157142,Dean (2016),Comedy +157144,Come Down Molly (2015),Comedy|Drama +157146,Dial H-I-S-T-O-R-Y (1997),Documentary +157148,The Net (2003),Documentary +157150,Mock Up on Mu (2008),Comedy|Sci-Fi +157152,Tribulation 99: Alien Anomalies Under America (1992),Comedy|Documentary +157154,Otto - The Movie (1985),Comedy +157156,Otto - The New Movie (1987),Comedy +157158,Otto - The Alien from East Frisia (1989),Comedy +157160,Nordsee ist Mordsee (1976),Adventure|Drama +157162,Stealing Cars (2015),Drama +157164,The Priest's Children (2013),Comedy|Drama +157166,Up from the Depths (1979),Horror +157168,Forbidden Island (1959),(no genres listed) +157170,Eat My Dust (1976),Action +157172,Wizards of the Lost Kingdom II (1989),Action|Fantasy +157174,Smokey Bites the Dust (1981),Action|Comedy|Romance +157176,A Storm in the Stars (2016),Drama|Romance +157178,Ardh Satya (1983),Crime|Drama +157180,The Last One (2008),Documentary +157182,Raven's Touch (2015),Drama +157184,BreadCrumbs (2011),Horror|Thriller +157186,Veloce come il vento (2016),Drama +157188,White Night (2009),Mystery|Romance +157190,Welcome to Blood City (1977),Sci-Fi|Western +157192,The Lonely Lady (1983),Drama +157194,Tumult (2012),(no genres listed) +157196,Mobile Suit Gundam 00: Awakening of the Trailblazer (2010),Action|Animation|Drama|Sci-Fi +157198,Macross Frontier: The Wings of Goodbye (2011),Action|Animation|Romance +157200,Money Monster (2016),Drama|Thriller +157202,Natural Enemies (1979),Drama +157204,The Garden of Sinners - The Final Chapter (Epilogue) (2011),Animation|Mystery +157206,Library Wars: The Last Mission (2015),Action|Comedy|Romance +157208,The Kiyosu Conference (2013),Comedy|Drama +157210,Penance (2012),Drama +157212,Slugs (1988),Horror|Sci-Fi +157214,Imagining Argentina (2003),Drama|Romance|Thriller +157218,Swiss Miss (1938),Comedy +157220,Supervan (1977),Action|Comedy +157222,A Boyfriend for My Wife (2008),Comedy|Drama|Romance +157224,Nine Lives (2016),Comedy +157226,Playback (2012),Horror|Thriller +157228,El juego de la verdad (2004),Comedy|Drama|Romance +157230,Disney's Very Merry Christmas Sing Along Songs (1988),Animation +157232,"It's Not You, It's Me (2004)",Comedy|Romance +157234,Café solo o con ellas (2007),Comedy +157236,Catacombs (1964),Horror|Mystery|Thriller +157240,Baraka à Beyrouth (1975),(no genres listed) +157242,Medusa (1973),(no genres listed) +157244,"Scream, Pretty Peggy (1973)",Drama|Horror|Mystery|Thriller +157250,A Cry in the Wilderness (1974),Thriller +157254,KISS Meets the Phantom of the Park (1978),Sci-Fi +157258,Journey of Honor (1991),Action|Adventure|Drama +157260,Out on Bail (1990),(no genres listed) +157262,Kureyon Shin-chan ankoku tamatama daitsuiseki (1997),(no genres listed) +157264,Atlantic Records: The House That Ahmet Built (2007),(no genres listed) +157266,Kolpaçino (2009),Action|Comedy +157268,Don't Think Twice (2016),Comedy|Drama +157270,Barbershop: The Next Cut (2016),Comedy +157272,The Preppie Connection (2016),Crime|Drama +157274,The Choice (2016),Drama|Romance +157276,Our Kind of Traitor (2016),Drama|Thriller +157278,The Sixties (2013),(no genres listed) +157280,Nashville Girl (1976),Drama +157282,The Evil (1978),Horror +157284,Moonshine County Express (1977),Action|Crime|Drama +157286,Five the Hard Way (1969),Action +157288,The Swinging Barmaids (1975),Crime|Drama +157290,Suntan (2016),Comedy|Drama|Romance +157292,My Dog Killer (2013),Drama +157294,Hannibal Takes Edinburgh (2016),(no genres listed) +157296,Finding Dory (2016),Adventure|Animation|Comedy +157298,My Super Psycho Sweet 16 (2009),Horror +157300,My Super Psycho Sweet 16: Part 2 (2010),(no genres listed) +157302,My Super Psycho Sweet 16: Part 3 (2012),(no genres listed) +157304,All About E (2015),Comedy|Drama|Romance +157306,Queenie in Love (2001),(no genres listed) +157308,"Houston, We Have a Problem! (2016)",Documentary +157310,A Drummer's Dream (2010),Documentary +157312,The Boss (2016),Comedy +157314,줄탁동시 (2012),(no genres listed) +157316,Love Crimes (1992),Romance|Thriller +157318,Perfect Strangers (2016),Comedy|Drama +157320,The Cockroach That Ate Cincinnati (1996),(no genres listed) +157322,The Sixth (1983),(no genres listed) +157324,The Boatniks (1970),Children|Comedy +157326,Bastille Day (2016),Action +157328,Kadhalum Kadanthu Pogum (2016),Comedy|Drama|Romance +157330,Black & White: The Dawn of Assault (2012),Action|Comedy +157332,Ghayal Once Again (2016),(no genres listed) +157334,Goodbye Mr. Loser (2015),Comedy|Romance +157336,Smothered (2016),Comedy|Horror +157338,Free State of Jones (2016),Action|Drama|Thriller +157340,The Angry Birds Movie (2016),Animation|Comedy +157342,Embers (2015),Sci-Fi +157344,Fatal Frame (2014),Horror +157346,Cherry Tree (2015),Horror +157348,"My Love, Don't Cross That River (2014)",Documentary +157350,Above and Below (2015),Documentary +157352,The Cutting Edge 3: Chasing the Dream (2008),Comedy|Drama|Romance +157355,Frank and the Wondercat (2015),Documentary +157357,Lamerica (2015),(no genres listed) +157359,Reverb (2007),Horror +157361,Tickled (2016),Documentary +157363,Aladdin and His Magic Lamp (1967),Adventure|Children|Romance +157365,Old Man Khottabych (1956),Adventure|Children|Fantasy +157367,N Is a Number: A Portrait of Paul Erdos (1993),Documentary +157369,Bakuman (2015),Comedy|Drama +157371,Decay (2015),Drama|Horror|Thriller +157373,It's Such a Beautiful Day (2011),Animation|Comedy|Drama +157375,The Cutting Edge: Fire & Ice (2010),Drama|Romance +157377,Bong of the Dead (2011),Action|Comedy|Horror +157379,Witchery (1988),Horror +157381,Sick Boy (2011),(no genres listed) +157385,Geezer (2016),Comedy|Drama +157387,Paradox (2016),Action|Sci-Fi +157389,Hierankl (2003),Drama +157391,See How She Runs (1978),Drama +157397,Tagget (1991),Crime|Thriller +157399,"New York, New York (2016)",Romance +157401,Onnenonkija (2016),(no genres listed) +157403,Love Is in the Air (2013),Comedy|Romance +157405,Single By Contract (2010),Comedy|Romance +157407,I Am Wrath (2016),Action|Crime|Drama|Thriller +157409,Blotto (1930),Comedy +157411,One Survivor Remembers (1995),Documentary +157415,Rebellion (1936),Western +157417,Laughing Gas (1914),Comedy +157419,The Dentist (1932),Comedy +157421,The Neighbor (2008),Comedy|Romance +157424,Because They're Young (1960),Drama +157428,Brand: A Second Coming (2015),Documentary +157432,Precious Cargo (2016),Action|Crime +157435,Dirty Weekend (1993),Drama|Thriller +157438,Eight on the Lam (1967),Comedy +157442,L'opéra de quat'sous (1931),(no genres listed) +157445,Ghost of Dragstrip Hollow (1959),Comedy|Horror +157448,Held Up (2010),Comedy +157451,It's in the Blood (2012),Drama|Horror|Thriller +157454,Last Letters Home (2004),Documentary|War +157458,Man in the Shadow (1957),Drama|Thriller|Western +157464,The Shiralee (1957),Drama +157466,A Father's Revenge (1988),Thriller +157468,The Rescue (1988),Action|Adventure|Drama +157471,Tarzan and the Valley of Gold (1966),Action|Adventure +157473,Tarzan and the Jungle Boy (1968),Action|Adventure|Drama|Romance +157475,Tarzan and the Great River (1967),Adventure +157477,Lokis. A Manuscript of Professor Wittembach (1970),Fantasy|Horror +157482,The Falcon Strikes Back (1943),Crime|Drama|Mystery +157484,The Gathering Storm (1974),Drama +157492,Russell Howard Live: Dingledodies (2009),Comedy +157494,Russell Howard: Right Here Right Now (2011),Comedy +157496,Russell Howard: Live (2008),Comedy +157498,11.22.63 (2016),Drama|Thriller +157500,Neuilly Yo Mama! (2009),Comedy +157502,Top of the Heap (1972),Action|Crime +157504,The Orange Thief (2007),Comedy +157506,House on Bare Mountain (1962),Comedy|Horror +157508,The Defilers (1965),Drama|Thriller +157510,Hollywood's World of Flesh (1976),Documentary +157512,Surftide 77 (1962),Comedy +157514,The Forbidden (1966),Documentary +157516,Love Is a Four Letter Word (2007),Romance +157518,Mondo Freudo (1966),Documentary +157520,Mondo Bizarro (1966),Documentary +157522,Hot Spur (1968),Western +157530,Chain Gang Women (1971),Action|Drama +157532,Chrome and Hot Leather (1971),Action|Thriller +157534,Zero in and Scream (1971),Action|Crime|Thriller +157536,Poor Cecily (1974),Drama +157538,The Black Gestapo (1975),Crime +157542,A Body to Die For: The Aaron Henry Story (1994),Drama +157544,Motel Cactus (1997),(no genres listed) +157546,Adjustment and Work (1986),Documentary +157549,New Year's Eve (1924),(no genres listed) +157551,Billa (2007),Action|Romance|Thriller +157553,Arrambam (2013),Action|Drama|Thriller +157555,Yennai Arindhaal (2015),Action|Drama|Romance|Thriller +157557,Mankatha (2011),Action|Thriller +157559,Vedhalam (2015),Action|Children +157561,Thani Oruvan (2015),Action|Thriller +157563,Indru Netru Naalai (2015),Comedy|Sci-Fi +157565,Rajathandhiram (2015),Comedy|Crime|Drama|Romance|Thriller +157567,Naanum Rowdydhaan (2015),Action|Comedy|Drama|Romance +157569,Al Final del Túnel (2016),Thriller +157571,Penumbra (2012),Horror|Thriller +157573,Thoonga Vanam (2015),Action|Crime|Thriller +157575,Veeram (2014),Action +157577,Deiva Thirumagal (2011),Children|Drama +157579,Burnout (1979),Action|Drama +157581,Blind (1987),Documentary +157583,Engeyum Eppodhum (2011),Drama +157585,Anjali (1990),Children|Drama +157587,Vaali (1999),Romance +157589,Villan (2002),Action|Crime +157591,Dheena (2001),Action +157593,Citizen (2001),Action|Crime|Drama +157595,Amarkalam (1999),Action|Drama|Romance +157597,Mugavari (2000),Drama|Romance +157599,Aasai (1995),Action|Romance +157601,Kadhal Kottai (1996),Romance +157603,Deaf (1986),Documentary +157605,Multi-Handicapped (1986),Documentary +157609,Sonic Youth: Corporate Ghost (2004),(no genres listed) +157611,Reality 86'd (1991),(no genres listed) +157613,Citizen Tania (1989),Crime|Drama +157615,Lovedolls Superstar (1986),(no genres listed) +157617,Desperate Teenage Lovedolls (1984),Comedy|Drama +157619,The Slog Movie (1982),(no genres listed) +157621,The Shortest Day (1963),Comedy|War +157623,Old Wives for New (1918),Comedy|Drama|Romance +157625,"Whispering Chorus, The (1918)",Drama +157627,"Palo Alto, CA (2007)",Comedy|Drama +157629,A Barefoot Dream (2010),Drama +157631,A Man Who Was Superman (2008),Comedy|Drama +157633,Attack the Gas Station 2 (2010),Action|Comedy +157635,Broken Side of Time (2013),Drama +157637,Desert Dancer (2014),Drama +157641,Azit the Paratrooper Dog (1972),Adventure|Comedy +157643,Charlie And A Half (1974),Comedy|Drama|Romance +157645,Festival At The Poolroom (1975),Comedy +157649,Seed of Innocence (1980),Drama +157657,Coastlines (2002),Action|Drama +157659,Ravenhawk (1996),Action|Drama +157663,Max Havoc: Curse Of The Dragon (2004),Action +157665,Flamenco at 5:15 (1983),Documentary +157667,Mother's Day (2016),Comedy +157669,Mothers and Daughters (2016),Drama +157671,Manhattan Night (2016),Mystery|Thriller +157673,Die Wolke (2006),Sci-Fi|Thriller +157675,Micro Men (2009),Drama +157677,Chronicles of the Ghostly Tribe (2015),Action|Adventure|Thriller +157679,Alley Cats Strike (2000),Children|Comedy|Drama +157681,Gotta Kick It Up (2002),Comedy|Drama +157683,What We Do Is Secret (2008),Drama +157685,Prairie Roundup (1951),Western +157687,You're Under Arrest: The Movie (1999),Action|Animation|Drama|Thriller +157689,Ridin' the Outlaw Trail (1951),Western +157691,Tenchi the Movie 2: The Daughter of Darkness (1997),Animation|Fantasy|Sci-Fi +157693,Pecos River (1951),Western +157695,Smoky Canyon (1952),Western +157697,The Hawk of Wild River (1952),Western +157699,Snowden (2016),Drama|Thriller +157703,The Kid from Broken Gun,(no genres listed) +157705,Last Train from Bombay (1952),Adventure +157709,Ambush at Tomahawk Gap (1953),(no genres listed) +157711,The 49th Man (1953),Thriller +157713,Sky Commando (1953),Drama|War +157715,Mission Over Korea (1953),(no genres listed) +157717,The Nebraskan (1953),(no genres listed) +157719,Overland Pacific (1954),Western +157721,Armitage: Dual Matrix (2002),Action|Adventure|Animation|Sci-Fi|Thriller +157723,The Miami Story (1954),Crime|Drama +157725,The Outlaw Stallion (1954),(no genres listed) +157727,Chicago Syndicate (1955),Crime|Drama +157729,Slayers Premium (2001),Adventure|Animation|Comedy|Fantasy +157731,Teen-Age Crime Wave (1955),Crime|Drama +157733,Inside Detroit (1956),Action|Crime +157735,Fury at Gunsight Pass (1956),(no genres listed) +157737,Gensou Maden Saiyuuki - The Movie - Requiem (2001),(no genres listed) +157739,Utah Blaine (1957),Western +157741,Calypso Heat Wave (1957),(no genres listed) +157745,The World Was His Jury (1958),Crime|Drama +157749,Fatal Fury: The Motion Picture (1994),Action|Animation +157751,Mobile Suit Gundam: The 08th MS Team - Miller's Report (1998),Action|Animation|Sci-Fi|War +157753,Gundress (1999),Action|Animation|Sci-Fi +157755,Legend of Crystania: The Motion Picture (1995),Action|Animation|Fantasy|Sci-Fi +157757,Slayers Return (1996),Adventure|Animation|Comedy|Fantasy +157759,Ranma ½: One Flew Over the Kuno's Nest (1994),(no genres listed) +157761,Martian Successor Nadesico: The Motion Picture - Prince of Darkness (1998),(no genres listed) +157763,Sword for Truth (1990),Animation|Horror +157765,Slayers Great (1997),Adventure|Animation|Comedy|Fantasy +157767,Slayers Gorgeous (1998),Adventure|Animation|Comedy|Fantasy +157769,Slayers: The Motion Picture (1995),Adventure|Animation|Comedy|Fantasy +157771,Tenchi Forever! (1999),Animation|Drama|Fantasy +157773,the Weathering Continent (1992),Animation|Fantasy +157775,Tenchi Muyô! In Love (1996),Animation|Comedy +157777,Karas: The Prophecy (2005),Action|Adventure|Animation|Fantasy|Sci-Fi +157779,Zone of the Enders: Idolo (2001),Animation|Sci-Fi +157781,Yukikaze (2002),(no genres listed) +157783,Sin: The Movie (2000),Animation|Sci-Fi +157785,Gunsmith Cats: Bulletproof! (1995),Action|Animation +157787,.hack Liminality: In the Case of Mai Minase,(no genres listed) +157789,.hack Liminality In the Case of Yuki Aihara,(no genres listed) +157791,.hack Liminality In the Case of Kyoko Tohno,(no genres listed) +157793,Samurai X : Reflection (2001),Action|Animation|Drama +157795,New Dominion Tank Police (1993),(no genres listed) +157797,Special Correspondents (2016),Comedy +157799,Battle Arena Toshinden (1996),Action|Animation +157801,Blue Submarine No. 6 (1998),Action|Animation|Sci-Fi +157803,Kite Liberator (2008),Animation|Thriller +157805,Freedom (2006),Adventure|Animation|Romance|Sci-Fi +157807,Labyrinth of Flames (2000),Action|Comedy +157809,Animation Runner Kuromi (2001),(no genres listed) +157811,Animation Runner Kuromi 2 (2004),(no genres listed) +157813,Megazone 23 (1985),(no genres listed) +157815,3x3 Eyes: Legend of the Divine Demon (1995),(no genres listed) +157817,Ruin Explorers (1995),(no genres listed) +157819,Megazone 23 III (1989),(no genres listed) +157821,Legend of Lemnear (1987),Adventure|Animation|Fantasy|Sci-Fi +157823,Very Private Lesson (1998),Animation|Comedy +157825,M.D. Geist II: Death Force (1996),Action|Animation|Sci-Fi +157827,Agent Aika (1997),Action|Adventure|Sci-Fi +157829,M.D. Geist (1986),Action|Animation|Sci-Fi +157831,Galerions Rion (2004),Action|Horror|Sci-Fi +157833,3x3 Eyes (1991),(no genres listed) +157835,Sacrifice (2016),Thriller +157837,Angel Cop (1989),Animation|Crime|Sci-Fi +157839,Outlanders (1986),Animation|Comedy|Sci-Fi +157841,Gestalt (1997),Adventure|Animation|Comedy|Fantasy +157843,Saber Marionette R (1995),Comedy|Sci-Fi +157845,Cheerleader (2016),(no genres listed) +157847,Being Charlie (2016),(no genres listed) +157849,Buddymoon (2016),(no genres listed) +157851,Team Foxcatcher (2016),Documentary +157853,Patton Oswalt: Talking for Clapping (2016),Comedy +157855,Ogni maledetto Natale (2014),Comedy +157865,Ratchet & Clank (2016),Action|Adventure|Animation|Children|Comedy|Sci-Fi +157867,How To Frame A Figg (1971),Children|Comedy +157869,The Adventures of Robinson Crusoe (1922),Adventure +157871,Anita O'Day: The Life of a Jazz Singer (2007),Documentary +157873,Artie Shaw: Time Is All You've Got (1985),Documentary|Musical +157875,The Beatles: The First U.S. Visit (1991),(no genres listed) +157877,Beijing Bastards (1993),(no genres listed) +157879,Hip-Hop: Beyond Beats & Rhymes (2006),Documentary +157881,Holidays (2016),Comedy|Horror +157883,The Death of Kevin Carter: Casualty of the Bang Bang Club (2004),Documentary +157885,Dutch Light (2003),Documentary +157887,Eden and After (1970),Drama|Fantasy|Horror +157889,Eloquent Nude: The Love and Legacy of Edward Weston & Charis Wilson (2007),Documentary +157891,Lust for a Vampire (1971),Horror +157893,Everything's Cool (2007),Documentary +157895,Pampa Bárbara (1945),(no genres listed) +157897,Where Words Fail (1946),Drama +157899,Hardly a Criminal (1949),Crime|Drama +157901,Apache Drums (1951),Action|Western +157903,The Mark of the Renegade (1951),(no genres listed) +157905,Decameron Nights (1953),(no genres listed) +157907,Black Tuesday (1954),Crime +157909,Harry Black (1958),(no genres listed) +157913,Die Todesstrahlen des Dr. Mabuse (1964),Crime|Thriller +157915,Old Shatterhand (1964),Adventure|Western +157917,Savage Pampas (1966),Adventure|Drama|Western +157923,The horse (1970),Drama|Thriller +157925,The Son (1973),Drama +157927,The Last Train (1973),Drama +157929,La race des seigneurs (1974),Drama +157931,La Cage (1975),Drama +157933,A Woman at Her Window (1976),Crime|Drama +157935,The Medic (1979),Drama|War +157937,A Strange Affair (1981),Drama +157939,The North Star (1982),Crime|Drama|Thriller +157943,L'Homme aux Yeux d'Argent (1985),Crime|Drama +157947,Noyade interdite (1987),(no genres listed) +157949,La couleur du vent (1988),(no genres listed) +157951,L'Autrichienne (1990),Drama +157955,The Break-In (2016),Drama|Thriller +157957,Short Fuse (2016),Action|Thriller +157959,Term Life (2016),Crime|Drama +157961,Synchronicity (2015),Mystery|Sci-Fi|Thriller +157963,The Final Comedown (1972),Drama +157965,Red Dot on the Ocean (2014),Adventure|Documentary +157967,The Gits (2008),(no genres listed) +157969,Glass: A Portrait of Philip in Twelve Parts (2007),Documentary +157971,The Graffiti Artist (2006),(no genres listed) +157973,The Holy Modal Rounders: Bound to Lose (2007),Documentary +157975,In Search of Mozart (2006),Documentary +157977,Johanna d'Arc of Mongolia (1989),Comedy|Drama +157979,The Prince of Chess (2005),(no genres listed) +157981,Largo (2008),Comedy|Documentary +157983,A Life Among Whales (2005),Documentary +157985,Unter Strom (2009),Comedy +157987,The Love Eterne (1963),(no genres listed) +157989,Low: You May Need a Murderer (2008),Documentary +157991,Ludwig van (1970),Documentary +157993,Subida al cielo (1952),Comedy +157995,Lucky Luke (2009),Adventure|Comedy|Western +157997,Tintin and the Lake of Sharks (1972),Adventure|Animation|Children|Mystery +157999,Miles Electric - A Different Kind Of Blue (2004),Documentary +158001,Tintin and the Mystery of the Golden Fleece (1961),Adventure|Drama +158003,The Long Recess (1972),Comedy|Romance +158005,Mingus: Charles Mingus 1968 (1968),(no genres listed) +158007,Jane Wants a Boyfriend (2015),Drama|Romance +158009,New Year Sacrifice (1956),Drama +158011,The Next Industrial Revolution (2002),Documentary +158013,A Note of Triumph: The Golden Age of Norman Corwin (2005),(no genres listed) +158015,"The Old, Weird America: Harry Smith's Anthology of American Folk Music (2007)",Documentary +158017,One And Eight (1983),(no genres listed) +158019,First Response (2015),Action|Drama|Thriller +158022,Kicking Off (2016),Comedy +158024,Dead Shadows (2012),Horror|Sci-Fi|Thriller +158027,SORI: Voice from the Heart (2016),Drama|Sci-Fi +158029,Prora (2012),Drama +158031,The Little Theatre of Jean Renoir (1970),(no genres listed) +158033,Pirated Copy (2004),(no genres listed) +158035,Gintama: The Final Chapter - Be Forever Yorozuya (2013),Action|Animation|Comedy +158037,Prater (2007),Documentary +158039,Tracking Down Maggie (1994),Documentary +158041,Tattooed Tears (1979),Documentary +158043,Soldier Girls (1981),Documentary|Drama +158045,Harry's War (1981),Comedy +158047,Cry Me a River (2008),(no genres listed) +158049,Rio 2096: A Story of Love and Fury (2013),Animation|Drama|Romance +158051,Operación Ogro (1979),Drama|Thriller +158053,One Way or Another (1976),Drama +158056,Fe (1994),(no genres listed) +158058,Garden of Delights (1967),Drama +158060,The Unfish (1997),Comedy +158062,Daughter... Father... Daughter (2011),(no genres listed) +158064,Vulgar Fractions (2011),Documentary +158066,Spiral Jetty (1970),Documentary +158068,Requiem for a Village (1975),Drama +158070,Destino (2003),Animation +158072,The Girl and the Fox (2011),Animation|Drama|Fantasy +158074,Il mare (1962),Drama +158076,Crows (1995),Drama +158078,The Diary of Anne Frank (1995),Animation|Drama|War +158080,Dust (2008),Documentary +158082,Frame by Frame (2015),Documentary +158084,Androids Dream (2014),(no genres listed) +158086,Angel City (1977),(no genres listed) +158088,The Circle (1985),Documentary +158090,Curry and Pepper (1990),Action|Comedy +158092,Magnetic Rose (1995),Animation|Sci-Fi +158094,Residue (2015),Horror|Mystery|Sci-Fi|Thriller +158099,Hanna K. (1983),Drama +158101,The Kingdom of Solomon (2010),Drama +158103,House of Manson (2014),Crime|Drama|Thriller +158105,A.R.C.H.I.E. (2016),Children +158107,Divine Access (2015),(no genres listed) +158109,A Police Inspector Calls (1974),Action|Crime|Thriller +158111,Revenge (1978),Action|Crime|Thriller +158113,The Survivor (2008),Action|Crime +158115,The Duel (1981),Action|Crime|Mystery|Thriller +158117,The Last Bullet (1973),Action|Crime|Thriller +158119,‘Rameau’s Nephew’ by Diderot (Thanx to Dennis Young) by Wilma Schoen (1974),(no genres listed) +158121,Rebirth Of A Nation (2008),(no genres listed) +158123,The Red Detachment of Women (1961),War +158125,The Red Detachment of Women (1970),Drama|War +158127,The Legend of the Red Lantern (1970),(no genres listed) +158129,Remembrance of Things to Come (2001),Documentary +158131,The Saviour (2005),Drama +158133,SEVILLA → (∞) 06 (2006),(no genres listed) +158135,She's on Duty (2005),Action|Comedy +158137,The Holy Mountain (1926),Drama +158139,Go West Young Man (1936),Comedy +158141,Pao's Story (2006),Drama +158143,Sullivan's Banks (2001),(no genres listed) +158145,Superstar: The Life and Times of Andy Warhol (1990),Documentary +158147,Ticket of No Return (1979),(no genres listed) +158149,Tonite Let's All Make Love in London (1967),Documentary +158151,Modigliani of Montparnasse (1958),Drama|Romance +158153,Dangerous Liaisons (1959),Drama|Romance +158155,Dark Secrets: Inside Bohemian Grove (2000),Documentary +158157,Little Forest: Winter/Spring (2015),Drama +158159,The Nostalgist (2014),Action|Adventure|Fantasy|Sci-Fi +158161,Sleep (1964),(no genres listed) +158163,A Walk Into the Sea: Danny Williams and the Warhol Factory (2007),Documentary +158165,Charge (2011),Documentary +158167,"Musée haut, musée bas (2008)",Comedy +158172,Heartbreakers (1984),Drama +158174,The Cups of San Sebastian (1967),Comedy +158176,A Man Called Dagger (1968),Action|Adventure +158178,Too Soon to Love (1960),Drama|Romance +158182,Noma: My Perfect Storm (2015),Documentary +158184,Shaka Zulu (1986),Drama|War +158186,Mr. Right (2015),Comedy|Romance +158188,Carry On Cleo (1964),Comedy +158192,Flic Story (1975),Crime|Drama|Mystery|Thriller +158198,Crime on a Summer Morning (1965),Crime|Drama +158200,With the Lives of Others (1966),Crime|Thriller +158204,A Little Sun in Cold Water (1971),Drama|Romance +158206,Le Gang (1977),(no genres listed) +158208,Three Men to Destroy (1980),Action|Crime|Drama|Mystery|Thriller +158210,On ne meurt que deux fois (1985),(no genres listed) +158214,The Loner (1987),Action|Crime|Drama +158216,Malady of Love (1987),Drama|Romance +158220,Un Crime (1993),Crime +158222,La vie est à nous (1936),(no genres listed) +158224,Dernier atout (1942),(no genres listed) +158226,Paris Frills (1945),Drama +158228,Antoine and Antoinette (1947),Comedy|Drama +158230,Rendezvous in July (1949),(no genres listed) +158232,Edward and Caroline (1951),Comedy +158234,Rue de l'Estrapade (1953),(no genres listed) +158236,Ali Baba and the Forty Thieves (1954),Comedy +158238,The Nice Guys (2016),Crime|Mystery|Thriller +158240,Seminole Uprising (1955),(no genres listed) +158242,I Ship It (2014),Comedy|Romance +158244,Twisted (2013),Comedy +158246,Lullaby (2015),Horror +158248,Gourmet Club (2004),Comedy +158250,Maigret Lays a Trap (Maigret tend un piège) (1958),Crime|Drama|Mystery +158252,Elena (2013),Documentary +158254,Kindergarten Cop 2 (2016),Action|Comedy +158256,Real Playing Game (2013),Action|Adventure|Sci-Fi +158258,The Battle of Chile - Part 1 (1975),Documentary +158260,A Hologram for the King (2015),Comedy|Drama +158262,Visiting One's Son (1967),(no genres listed) +158264,The Battle of Chile - Part 2 (1977),Documentary +158266,The Battle of Chile - Part 3 (1979),Documentary +158268,My Big Night (2015),Comedy +158270,Monty Python's Fliegender Zirkus (1971),Comedy +158272,To Fetch a Bike (1968),(no genres listed) +158274,Enamorada (1946),Comedy|Drama|Romance +158276,Salón México (1949),Drama +158278,Víctimas Del Pecado (1951),Crime|Drama +158280,"Chile, the Obstinate Memory (1997)",Documentary +158282,Billa II (2012),Action +158284,Ghajini (2005),Action|Drama|Mystery|Thriller +158286,Singam (2010),Action|Comedy|Crime|Drama +158288,Saamy (2003),Action|Drama +158290,Kaakha Kaakha (2003),Action|Crime|Thriller +158292,7aam Arivu (2011),(no genres listed) +158294,Sillunu Oru Kaadhal (2006),Children|Romance +158296,Anniyan (2005),Action|Drama|Thriller +158298,Pithamagan (2003),Action +158300,Sky Of Love (2007),Drama|Romance +158302,The Movie Tokyo Friends: The Movie (2006),(no genres listed) +158304,Sorry if I Want to Marry You (2010),Comedy|Drama|Romance +158306,"Jasper, Texas (2003)",Drama|Horror +158308,"Burzynski, the Movie (2010)",Documentary +158310,Chris Rock: Kill the Messenger (2008),Comedy +158312,Citizen King,(no genres listed) +158314,Daniel Tosh: Completely Serious (2007),Comedy +158316,Daniel Tosh: Happy Thoughts (2011),Comedy +158318,Dave Attell's Insomniac Tour: Uncensored! (2005),Comedy +158320,Koch Brothers Exposed (2012),Documentary +158322,Lisa Lampanelli: Take It Like a Man (2005),Comedy +158324,Soundtrack for a Revolution (2009),Documentary +158326,The Confession (2011),Action|Crime|Drama +158328,The Third Jihad (2008),Documentary +158330,The Secret Diaries of Miss Anne Lister (2010),Children|Drama +158332,Attack on the Pin-Up Boys (2007),Comedy +158334,Why Did You Come to My House (2009),Comedy|Romance +158336,200 Pounds Beauty (2006),Comedy|Drama|Romance +158338,Tig Notaro: Boyish Girl Interrupted (2015),Comedy +158340,Murder Without Crime (1950),Crime|Drama +158342,The Weak and the Wicked (1954),(no genres listed) +158344,"For Better, for Worse (1954)",Comedy|Romance +158348,Gascoigne (2015),Documentary +158350,The Good Companions (1957),Comedy|Romance +158352,I Aim at the Stars (1960),Drama +158354,NANA 2 (2006),Drama +158356,Country Dance (1970),Drama +158358,Cabo Blanco (1980),Adventure|Drama|Romance +158360,Todd Barry: Super Crazy (2012),Comedy +158362,La trattativa (2014),Comedy|Documentary +158364,Something Has Happened (1987),(no genres listed) +158366,Owen Hart of Gold (2015),Documentary +158368,Two Missionaries (1974),Action|Adventure|Comedy +158372,Zombie Night (2013),Horror +158376,True Confessions of a Hollywood Starlet (2008),Children|Comedy|Drama +158378,Queen of Carthage (2013),Drama|Thriller +158380,Not Wanted (1949),Drama +158382,The Family Fang (2016),Drama +158384,Buck Rogers (1939),Sci-Fi +158386,Legion of the Black (2012),(no genres listed) +158388,Buck Rogers in the 25th Century (1979),Sci-Fi +158390,Restoration (2016),Horror +158392,"Gangsters, Guns and Zombies (2012)",Horror +158394,The Lady Vanishes (2013),Drama|Thriller +158396,Motley's Law (2015),Documentary +158398,World of Glory (1991),Comedy +158400,Hyper Sapien: People from Another Star (1986),Sci-Fi +158402,The Crew (2016),Action +158404,Nova Zembla (2011),Drama +158406,Margarita (2012),Comedy|Drama +158408,Ajab Prem Ki Ghazab Kahani (2009),Comedy|Drama|Romance +158410,Truck Stop Women (1974),Action|Crime|Drama +158412,Zapped (2014),Children|Comedy|Fantasy|Romance +158414,East Side Sushi (2014),Drama +158416,Crazy Wisdom (2011),Documentary +158418,Goin' Down the Road (1970),Drama +158420,The Space Children (1958),Sci-Fi +158422,New Jerusalem (2011),Drama +158424,The Builder (2010),(no genres listed) +158426,Elvis & Madona (2010),(no genres listed) +158428,Alvin and the Chipmunks: The Road Chip (2015),Adventure|Animation|Children|Comedy +158430,About Mrs. Leslie (1954),Drama|Romance +158433,Are These Our Children (1931),Drama +158435,Clay Pigeon (1971),Action|Drama +158437,The Day of the Badman (1958),Western +158439,Death Force (1978),Action +158441,Dime with a Halo (1963),Comedy +158443,Dude Cowboy (1941),Western +158445,Frenchie (1950),Western +158447,Havana Widows (1933),Comedy +158449,"Her Majesty, Love (1931)",Comedy +158451,I've Never Had an Hilda (2014),(no genres listed) +158453,Hollywood Cowboy (1937),Action|Adventure|Western +158455,Frau Wirtin hat auch eine Nichte (1969),(no genres listed) +158458,Kentucky (1938),Drama|Romance +158460,Circle of Love (1964),Comedy|Drama|Romance +158462,Lawless Valley (1938),Romance|Western +158471,Once Upon a Time (1944),Children|Comedy|Fantasy +158476,"Papita, Maní, Tostón (2013)",Comedy|Romance +158478,Raw Edge (1956),Western +158480,Robinson Crusoe of Clipper Island (1936),Action +158484,Contergan (2007),Drama|Thriller +158486,Side Effects (2005),Comedy|Drama|Romance +158489,Six-Gun Gold (1941),Western +158491,Stretch and Bobbito: Radio That Changed Lives (2015),Documentary +158493,The Bishop Misbehaves (1935),(no genres listed) +158496,The Flame Within (1935),Drama +158499,The Iron Major (1943),Drama +158504,The Right To Romance (1933),Drama|Romance +158506,The Sea Bat (1930),(no genres listed) +158508,Time Table (1956),Crime +158510,To the Ends of the Earth (2005),Drama +158512,To the Ends of the Earth (1948),Thriller +158514,To the Last Man (1933),Western +158516,Trouble in Sundown (1939),Western +158518,Under the Gun (2016),Documentary +158520,Under the Gun (1988),Action|Comedy +158524,West Point of the Air (1935),Drama +158526,1 Chance 2 Dance (2014),(no genres listed) +158528,The Shallows (2016),Drama|Thriller +158530,Leatherface (2016),Horror +158532,Sairat (2016),Drama +158534,Delhi Dance (2012),Drama +158536,Merry Kissmas (2015),(no genres listed) +158538,Into the Universe with Stephen Hawking (2010),Documentary +158540,Papa: Hemingway in Cuba (2016),Drama +158542,Alias Nick Beal (1949),Fantasy +158545,Don't Turn the Other Cheek (1971),Action|Adventure|Comedy|War|Western +158547,For Y'ur Height Only (1981),Action|Comedy +158549,The Sleeping Tiger (1954),Drama|Thriller +158551,The Intimate Stranger (1956),Drama|Mystery +158553,The Gypsy and the Gentleman (1958),(no genres listed) +158555,Steaming (1985),(no genres listed) +158557,Les Routes du sud (1978),Drama +158559,La Truite (1982),Drama +158561,The Crossing II (2015),Action|Drama|Romance +158563,The Outrageous Sophie Tucker (2014),(no genres listed) +158565,Rich Kids (1979),Comedy|Drama|Thriller +158571,Mickybo and Me (2005),Comedy|Drama +158573,Roosters (1993),Drama +158575,A Royal Christmas (2014),Children|Romance +158577,Keeper of Darkness (2015),Horror +158579,Port of Call (2015),Thriller +158581,My Beloved Bodyguard (2016),Action|Adventure|Drama +158583,Final Sale (2011),(no genres listed) +158585,Bal-Can-Can (2005),Action|Adventure|Comedy|Crime|Drama|War +158587,The Red Colored Grey Truck (2004),Adventure|Comedy|Romance +158589,Dead Cold (2002),Comedy +158591,Seven and a Half (2006),Comedy|Drama +158593,A Little Night Music (2002),Comedy +158595,Labyrinth (2002),Adventure|Mystery|Thriller +158597,The Robbery of the Third Reich (2004),Comedy|War +158599,Ivko's Feast (2005),Comedy +158601,We Are Not Angels (1992),Comedy +158603,The Professional (2003),Comedy|Drama +158605,The Shutka Book of Records (2005),Documentary +158607,Skinning (2010),Action|Crime|Drama +158609,Summer in the Golden Valley (2003),Drama +158611,The Weight of Chains (2010),Documentary +158613,Freelancers (2012),Action|Crime|Drama|Mystery +158615,Sheitan Warrior (2006),Comedy|Fantasy|Horror +158617,How the War Started on My Island (1997),Comedy|War +158619,The Faith of Anna Waters (2016),Drama|Horror|Mystery|Thriller +158621,What Is a Man Without a Moustache? (2005),Comedy|Drama|Romance +158623,Sorry for Kung Fu (2004),Drama +158625,Metastases (2009),Crime|Drama +158627,The Cashier Wants to Go to the Seaside (2001),Comedy +158629,Long Dark Night (2004),Drama|War +158631,Pero Kvrzica's Comradeship (1970),Adventure|Children +158633,Red Dust (1999),Action|Crime|Drama +158635,Just Between Us (2010),Comedy|Drama +158637,Death of a Man in the Balkans (2012),(no genres listed) +158639,The Living and the Dead (2007),Fantasy|Horror|War +158641,The Lika Cinema (2008),Drama +158643,Horvat's Choice (1985),Drama +158645,Seventy-Two Days (2010),Comedy|Drama +158647,Premeditated Murder (1995),Drama +158649,La Soif du Monde (2012),Documentary +158651,The Truth (1960),Drama +158653,Death Promise (1977),Action +158655,Poverty and Nobility (1954),Comedy +158657,Dustbin Baby (2008),Drama|Thriller +158659,10 Rules for Sleeping Around (2013),Comedy|Romance +158661,13 Hours in a Warehouse (2008),Horror|Thriller +158663,The Oil Factor: Behind the War on Terror (2005),Documentary +158665,80 Minutes (2008),Action|Crime|Thriller +158667,The Choice Is Ours (2015),Documentary +158669,Killing Daddy (2014),Crime|Mystery|Thriller +158673,Cyber Seduction: His Secret Life (2005),Drama +158675,Getting That Girl (2011),(no genres listed) +158679,Death Clique (2014),Drama|Thriller +158681,Courage (2009),Children|Drama +158685,Deathlands (2003),Sci-Fi +158687,The Dead the Damned and the Darkness (2014),Action|Horror|Thriller +158689,Zanjeer (2013),Action|Thriller +158691,Kick (2014),Action|Comedy|Romance +158693,Shootout at Wadala (2013),(no genres listed) +158695,Teri Meri Kahaani (2012),Drama|Romance +158697,Aitraaz (2004),Documentary|Drama|Thriller +158699,The Golden Years (1992),Drama +158701,The Legend of the North Wind (1992),Adventure|Animation|Fantasy +158703,Locker 13 (2014),Drama|Horror|Thriller +158705,Paws (1997),Adventure|Children|Fantasy +158707,Chariot (2013),Drama|Thriller +158709,The Search for Freedom (2015),Adventure|Documentary +158711,Boy 7 (2015),Action|Sci-Fi|Thriller +158713,Zombieworld (2015),Horror +158715,The One Warrior (2011),Action|Adventure|Fantasy +158717,Basilisk: The Serpent King (2006),Action|Horror|Sci-Fi +158719,Sams in Gefahr (2003),Children +158721,Gen-X Cops (1999),Action|Comedy|Thriller +158723,Pom Pom (1984),Action|Comedy +158725,The Marathon (2012),Comedy|Drama +158727,Big Driver (2014),Crime|Mystery|Thriller +158729,How Beer Saved the World (2011),Documentary +158731,Kony 2012 (2012),Documentary +158733,Dying To Have Known (2006),Documentary +158735,Fresh (2009),Documentary +158737,Queen of the Sun (2010),Documentary +158739,Time to Choose (2015),Documentary +158741,Bottled Life: Nestle's Business with Water (2012),Documentary +158743,Occupation 101 (2006),Documentary +158745,The Beautiful Truth (2008),Documentary +158747,The Gerson Miracle (2004),Documentary +158749,Simply Raw (2009),Documentary +158751,Carb-Loaded: A Culture Dying to Eat (2014),Documentary +158753,Cereal Killers (2013),Documentary +158755,The Perfect Human Diet (2012),Documentary +158757,Taste the Waste (2011),Documentary +158759,10 Billion: What's On Your Plate (2015),Documentary +158761,Super Juice Me! (2014),Documentary +158763,The Connection (2014),Documentary +158765,Why Beauty Matters (2009),(no genres listed) +158767,Orgasm Inc. (2009),Documentary +158769,They Call It Myanmar: Lifting the Curtain (2012),Documentary +158771,Owned & Operated (2012),Documentary +158773,State of Dogs (1998),(no genres listed) +158775,Socialphobia (2015),Drama|Mystery|Thriller +158777,A Little Game (2014),Adventure|Children +158779,Platinum the Dance Movie (2014),Comedy|Romance +158781,Cancel My Reservation (1972),Comedy|Mystery +158783,The Handmaiden (2016),Drama|Romance|Thriller +158785,Jesus Christ's Horoscope (1989),Drama +158789,"The Tyrant's Heart, or Boccaccio in Hungary (1981)",(no genres listed) +158791,Hungarian Rhapsody (1979),(no genres listed) +158793,Allegro Barbaro (1979),Drama +158797,Agnus dei (1971),(no genres listed) +158799,The Pacifist (1970),Drama +158801,The Confrontation (1969),Drama +158803,Winter Wind (1969),Drama +158805,Moses and Aaron (1975),(no genres listed) +158807,Paths of the Soul (2015),(no genres listed) +158809,Blues Story (2003),Documentary +158811,The Perfect Wedding (2012),Comedy +158813,Alice Through the Looking Glass (2016),Adventure|Children|Fantasy +158815,Chasing Leprechauns (2013),Comedy|Romance +158817,Valentine Ever After (2016),Romance +158819,Debbie Macomber's Dashing Through the Snow (2015),Children +158821,Midnight Masquerade (2014),Romance +158823,Bridal Wave (2015),Romance +158825,Surprised by Love (2015),Romance +158827,All of My Heart (2015),Romance +158830,The BFG (2016),Children|Fantasy +158832,The Store (1983),Documentary +158836,The Stranger Within (1974),Mystery|Sci-Fi +158838,Jack (2013),(no genres listed) +158840,Wild (2016),Drama +158842,My Scientology Movie (2016),Documentary +158844,Louis Theroux: Transgender Kids (2015),Documentary +158846,Louis Theroux: By Reason of Insanity (2015),Documentary +158848,Louis Theroux: Extreme Love - Autism (2012),Documentary +158850,Louis Theroux: America's Most Dangerous Pets (2011),Documentary +158852,Louis Theroux: The Ultra Zionists (2011),Documentary +158854,Louis Theroux: Law and Disorder in Lagos (2010),(no genres listed) +158856,Louis Theroux: America's Medicated Kids (2010),Documentary +158858,A Place For Paedophiles (2009),Documentary +158860,Louis Theroux: Law and Disorder in Philadelphia (2008),(no genres listed) +158862,Louis Theroux's African Hunting Holiday (2008),(no genres listed) +158864,Louis Theroux: Behind Bars (2008),(no genres listed) +158866,Louis Theroux: Under The Knife (2007),Documentary +158868,Louis Theroux: Gambling in Las Vegas (2007),Documentary +158870,The Monkey King the Legend Begins,Action|Adventure|Fantasy +158872,Sausage Party (2016),Animation|Comedy +158874,Karate Bullfighter (1975),Action|Drama +158876,Singh is Bling (2015),Action|Comedy +158878,The Letter Writer (2011),Children +158880,Love by Chance (2016),Romance +158882,All Yours (2016),Comedy|Drama|Romance +158884,The Bridge Part 2 (2016),Drama +158886,All Things Valentine (2016),Comedy|Romance +158888,Dater's Handbook (2016),Comedy|Drama|Romance +158890,Unleashing Mr. Darcy (2016),Romance +158892,Flower Shop Mystery: Mum's the Word (2016),Children|Mystery +158894,Love on the Sidelines (2016),Comedy|Romance +158896,Love's Complicated (2016),Comedy|Drama|Romance +158898,Love in Paradise (2016),Romance +158900,Autumn Dreams (2015),Romance +158902,Love on the Air (2015),Romance +158904,A Country Wedding (2015),Romance +158906,A Novel Romance (2015),Comedy|Drama|Romance +158908,One Christmas Eve (2014),Comedy|Drama +158910,The Nine Lives of Christmas (2014),Romance +158912,One Starry Christmas (2014),Romance +158914,Perfect on Paper (2014),Comedy|Romance +158916,When Sparks Fly (2014),Comedy|Romance +158918,Mom's Day Away (2014),Comedy +158920,A Lesson in Romance (2014),Children +158922,A Ring by Spring (2014),Comedy|Romance +158924,Finding Christmas (2013),Children|Comedy|Romance +158926,Catch a Christmas Star (2013),Children|Romance +158928,A Very Merry Mix-Up (2013),Romance +158930,Snow Bride (2013),Children +158932,"Tom, Dick and Harriet (2013)",Comedy +158934,Be My Valentine (2013),Romance +158936,Help for the Holidays (2012),Children|Fantasy +158938,Come Dance with Me (2012),Children|Romance +158940,A Bride for Christmas (2012),Comedy +158942,Hitched for the Holidays (2012),Romance +158944,Strawberry Summer (2012),Drama +158946,A Taste of Romance (2012),Children|Romance +158948,Fixing Pete (2011),Comedy|Romance +158950,Annie Claus is Coming to Town (2011),Children|Comedy|Romance +158952,Cinema's Exiles: From Hitler to Hollywood (2009),Documentary +158954,Me casé con un boludo (2016),Comedy|Romance +158956,Kill Command (2016),Action|Horror|Sci-Fi +158958,Pollyanna (2003),Children|Drama +158962,The Eyes of My Mother (2016),Drama|Horror +158964,The Magnificent Cuckold (1964),Comedy +158966,Captain Fantastic (2016),Drama +158968,Property Is No Longer a Theft (1973),Comedy|Drama +158970,Alone in the Wilderness Part II (2011),Documentary +158972,Toni Erdmann (2016),Drama +158974,Neruda (2016),Drama +158976,Next of Kin (1982),Horror|Mystery|Thriller +158980,The Magic City (1955),Drama +158982,Fast Girls (2012),Drama +158984,A Game of Death (1945),Action|Adventure|Thriller +158986,Criminal Court (1946),Crime|Drama +158988,Mystery in Mexico (1948),Crime|Mystery +158990,Three Secrets (1950),Drama +158992,The Captive City (1952),Action|Drama +158994,Something for the Birds (1952),Comedy +158996,So Big (1953),Drama|Romance +158998,Rooftops (1989),(no genres listed) +159000,My Beautiful Broken Brain (2016),Documentary +159002,Mission Impossible: Samurai (2014),Comedy +159004,An Open Secret (2015),Documentary +159017,Adolf Hitler: The Greatest Story Never Told (2013),Documentary +159022,Marching to Zion (2015),Documentary +159024,The Scandalous Lady W (2015),Drama +159026,Himiko (1974),Drama +159028,The Philadelphia Experiment (2012),Adventure|Mystery|Sci-Fi|Thriller +159030,Dementia (2015),Thriller +159032,Noon Sunday (1970),Drama +159034,Falling Leaves (1966),Drama|Romance +159036,There Once Was a Singing Blackbird (1970),Comedy|Drama +159038,Scream of the Ants (2007),Drama +159040,Place de la République (1974),Documentary +159042,The Brainwashing of My Dad (2015),Documentary +159044,"Live Once, Die Twice (2006)",Drama|Thriller +159046,Second Nature (2003),Action|Drama|Mystery|Sci-Fi|Thriller|War +159048,One Way Out (2002),Action|Crime|Drama|Thriller +159050,The Pilot's Wife (2005),(no genres listed) +159053,In Her Line of Fire (2006),Action|Drama|Thriller +159055,Blind Side (1993),Drama|Thriller +159057,Emmanuelle 2000: Emmanuelle's Intimate Encounters (2000),Fantasy|Sci-Fi +159059,The Midnight Man (2016),Crime|Thriller +159061,The Wailing (2016),Mystery|Thriller +159063,Cold Sweat (1993),Thriller +159065,Jai Gangaajal (2016),Action|Drama +159067,Ranma ½ (2011),(no genres listed) +159069,Comedy of the Strict Regime (1993),Comedy +159071,Fear Itself (2015),Documentary|Horror|Mystery +159073,A Great Wall (1986),(no genres listed) +159075,Annie's Point (2005),Children|Drama +159077,The Meddler (2016),Comedy|Drama +159079,Doomsday Machine (1972),Sci-Fi +159081,Les Invités de mon père (2010),Comedy +159083,Finding Mr. Right (2013),Comedy|Romance +159085,Finding Mr. Right 2 (2016),Romance +159087,The Beast (2010),Documentary|Drama +159089,I Am Thor (2015),Documentary +159091,The Last Straight Man (2014),Comedy|Drama|Romance +159093,Now You See Me 2 (2016),Action|Comedy|Thriller +159095,Southwest of Salem: The Story of the San Antonio Four (2016),Documentary +159097,The Apology (2016),(no genres listed) +159099,The Masked Saint (2016),Action|Crime +159101,Colin Quinn: Unconstitutional (2015),(no genres listed) +159103,I'm Brent Morin (2015),Comedy +159105,Perlasca: The Courage of a Just Man (2002),Drama +159107,Bill Hicks: Totally Bill Hicks (1994),Comedy +159109,Benedict Arnold: A Question of Honor (2003),(no genres listed) +159111,The Curse of Sleeping Beauty (2016),Fantasy|Mystery|Thriller +159113,Highly Strung (2016),(no genres listed) +159115,Chongqing Hot Pot (2016),Drama +159117,Ken (1964),(no genres listed) +159119,Niceland (Population. 1.000.002) (2004),Drama +159121,Another State of Mind (1984),Documentary +159123,Catching Out (2003),(no genres listed) +159125,Anybody's Son Will Do,(no genres listed) +159127,Multiple SIDosis (1970),(no genres listed) +159129,I-Be Area (2007),(no genres listed) +159131,Emperor Tomato Ketchup (1971),Drama +159133,Visions of Frank (2007),Animation +159135,The Viking (1931),Action|Adventure|Drama|Romance +159137,Green Legend Ran (1992),Animation +159139,Anarchism in America (1983),Documentary +159141,Plastic Utopia (1997),(no genres listed) +159143,Dennis (2007),(no genres listed) +159145,Sikumi (On The Ice) (2008),(no genres listed) +159147,So Is This (1983),Comedy +159149,Rescued by Rover (1905),Drama +159151,Ten Years (2015),Drama +159153,The Land Before Time XIV: Journey of the Brave (2016),Adventure|Animation|Children +159155,The Division: Agent Origins (2016),Action +159157,Remainder (2015),Drama +159159,There Will Come Soft Rains (1984),Animation|Sci-Fi +159161,Ali Wong: Baby Cobra (2016),(no genres listed) +159163,The Other Side of the Wind (2016),Comedy|Drama +159165,Bodysong (2003),Documentary +159167,Bytte Bytte Købmand (2010),Comedy +159169,Crush the Skull (2015),Comedy|Horror|Thriller +159173,Once I Was a Beehive (2015),Children|Comedy|Drama +159175,The Tag-Along (2015),Horror|Thriller +159177,King Jack (2015),Adventure +159179,The Strange House (2015),Drama|Horror|Mystery|Thriller +159181,"Johnny Cash: The Man, His World, His Music (1969)",Documentary +159183,Supergator (2007),Horror +159185,"Extraordinary Voyage, The (2011)",Documentary +159187,Pieces of Talent (2012),Horror|Thriller +159191,Julieta (2016),Drama +159193,Café Society (2016),Comedy|Drama|Romance +159195,"I, Daniel Blake (2016)",Drama +159197,Don't Hang Up (1975),Horror +159199,War and Peace (2007),(no genres listed) +159201,Toilet Stories (2015),Comedy +159203,Bruce Lee: The Legend (1984),Documentary +159205,I Touched All Your Stuff (2014),Documentary +159207,Gulaab Gang (2014),Action|Drama +159209,Amongst White Clouds (2005),Documentary +159211,Slightly Single in L.A. (2013),Comedy|Romance +159213,The Chronicles of Evil (2015),Thriller +159215,Umrika (2015),Comedy|Drama +159217,The Identity Theft of Mitch Mustain,Documentary +159219,Mission to Lars (2011),Documentary +159221,Bad Guys Always Die (2016),Action|Comedy +159223,The Pack (2016),Horror|Thriller +159225,Mad Tiger (2015),Documentary +159233,My Skinny Sister (2015),Drama +159235,Granny's Dancing on the Table (2015),Drama +159237,There Should Be Rules (2015),Drama +159239,Flocking (2015),Drama|Thriller +159241,Eternal Summer (2015),Drama|Romance +159243,Alena (2015),Horror +159245,Young Sophie Bell (2015),Drama +159247,Flogsta Heaven (2015),Documentary +159249,Girls Lost (2016),Drama +159251,Best Wishes from Missangertrask (2015),Comedy +159253,Miraklet i Viskan (2015),Drama +159255,LasseMajas detektivbyrå - Stella Nostra (2015),Children|Comedy +159257,6A,(no genres listed) +159259,The Serious Game,(no genres listed) +159261,The Yard (2016),(no genres listed) +159263,Under the Pyramid (2016),Adventure|Drama|Thriller +159267,Webcam (2015),Comedy|Drama +159271,Life in a Fishbowl (2014),Drama +159273,Reykjavík (2016),(no genres listed) +159275,On Top (1982),Children|Drama +159281,Tears of Stone (1995),(no genres listed) +159283,As in Heaven (1992),(no genres listed) +159287,Skýjahöllin (1994),(no genres listed) +159293,Vendetta (2012),Action +159295,Havet stiger (1990),(no genres listed) +159297,I'm the One You Want (2014),(no genres listed) +159301,Demning (2015),(no genres listed) +159303,Violent (2014),Drama +159305,Lezione ventuno (2008),(no genres listed) +159307,Sons (2006),(no genres listed) +159311,Someone to Run With (2006),Adventure|Drama +159313,Pyromaniac (2016),(no genres listed) +159315,The Orheim Company (2012),Drama +159317,Only Clouds Move the Stars (1998),Children|Drama +159319,Blodsbånd (2007),Crime|Drama +159321,Hagbard and Signe (1967),Drama +159323,Den siste Fleksnes (1974),Comedy|Romance +159325,Fant,(no genres listed) +159329,The Angel (2009),Drama +159331,Falling Sky (2002),Comedy|Drama +159333,The Liverpool Goalie (2010),Children|Comedy +159335,Grand Hotel (2016),(no genres listed) +159337,Death Is a Caress (1949),(no genres listed) +159339,Returning Home (2015),Children|Drama +159341,Dreamplay (1994),(no genres listed) +159343,Secondløitnanten (1993),(no genres listed) +159345,Beyond Sleep (2016),(no genres listed) +159347,Beatles (2014),Drama +159349,Together (2009),Drama +159353,"Kiss Me, Damn It (2013)",Comedy|Drama|Romance +159355,Norske Byggeklosser (1972),Comedy +159357,Revenge (2015),Drama|Thriller +159359,The Day Will Come (2016),Drama +159361,The Olsen Gang Sees Red (1976),Children|Comedy|Crime +159363,Harry and the Butler (1961),Children|Comedy +159365,Cannibal Fog (2015),Comedy|Horror +159367,Zappa (1983),Drama +159369,Twist and Shout (1984),Comedy|Drama +159371,Stolen Spring (1993),Drama +159373,Gudsforladt (2015),Drama|Horror +159375,The Olsen Gang in Jutland (1971),Children|Comedy|Crime +159377,The Boys from St. Petri (1991),Action|Drama|War +159381,Me and Charly (1978),Drama +159383,The chronic innocence (1985),Drama +159385,Snowland (2005),Drama +159387,Barbara (1997),Drama|Romance +159389,Bye Bye Blue Bird (1999),Comedy|Drama +159391,Ludo (2014),(no genres listed) +159395,Atlantic Rhapsody (1990),Comedy|Drama +159397,Savage (2011),Drama|Thriller +159399,Lamb (2016),Drama +159401,Kóblic (2016),Crime +159403,Neo Tokyo (1987),Adventure|Animation|Fantasy|Horror|Sci-Fi +159405,Rampo Noir (2005),Fantasy|Horror|Thriller +159407,Film Noir (2007),Animation +159409,The Stool Pigeon (2010),Action|Drama|Thriller +159411,KISS Rocks Vegas (2016),Documentary +159413,My Younger Brother (1962),Drama +159415,Swiss Army Man (2016),Comedy|Drama|Romance +159417,The von Trapp Family: A Life of Music (2015),Drama +159419,A Violent Prosecutor (2016),Comedy|Crime +159423,Jonas Brothers: The Concert Experience (2009),(no genres listed) +159425,Seven (1979),Action|Drama +159427,Already Tomorrow in Hong Kong (2015),Comedy|Romance +159429,Shooting Stars (1928),Drama +159431,The Red Siren (2002),Adventure|Drama +159433,Two Timid Souls (1928),Comedy +159435,I Married Who? (2012),Comedy +159437,Azhar (2016),Drama +159439,The Count of Monte-Cristo (1974),Action|Adventure|Drama +159441,The Do-Over (2016),Comedy +159443,Office (2015),Drama +159445,Nise: The Heart of Madness (2016),(no genres listed) +159447,Before I Wake (2016),Horror|Thriller +159449,African Safari (2013),Documentary +159451,Graduation (2016),Drama +159462,The Video Dead (1987),Horror +159464,Counting (2015),Documentary +159467,Fifi Howls from Happiness (2013),Documentary +159469,Sharkansas Women's Prison Massacre (2015),Action|Horror|Sci-Fi +159471,Evening's Civil Twilight in Empires of Tin (2008),(no genres listed) +159473,Building a Broken Mousetrap (2006),(no genres listed) +159480,Beyond the Rising Moon (1988),Sci-Fi|Thriller +159482,The Bandit Hound (2016),Comedy +159484,Life on the Line (2016),Action +159486,Jack of the Red Hearts (2015),Children|Drama +159488,Caligula: The Untold Story (1982),(no genres listed) +159490,The Stranger That Kneels Beside the Shadow of a Corpse (1970),Western +159492,Coffin Full of Dollars (1971),Action|Western +159496,Ballad of Django (1971),Western +159498,The Cat in Heat (1972),Thriller +159500,"Amigo, Stay Away (1972)",Western +159510,Death Smiles on a Murderer (1973),Horror +159520,Red Coat (1975),Adventure|Western +159522,Peccati in famiglia (1975),(no genres listed) +159526,Black Cobra Woman (1976),Drama|Horror +159528,Ladies' Doctor (1977),Comedy +159530,Caribbean Papaya: Love Goddess of the Cannibals (1978),Horror +159534,Blue Paradise (1980),Drama|Romance +159536,Porno Holocaust (1981),Horror +159538,2020 Texas Gladiators (1983),Action|Sci-Fi +159540,The Blade Master (1982),Action|Adventure|Fantasy +159542,Endgame (1983),Sci-Fi +159544,The Alcove (1985),Thriller +159546,Blue Angel Cafe (1989),Drama +159548,The Pleasure (1985),(no genres listed) +159550,A Lustful Mind (1986),Drama +159552,Voglia di guardare (1986),Drama +159554,Convent of Sinners (1986),Drama|Horror +159556,Zombie 5: Killing Birds (1988),Horror +159558,11 Days 11 Nights: Part 1 - Fantasy Becomes Reality (1987),Drama|Romance +159560,Top Model (1988),(no genres listed) +159562,Dirty Love (1988),Drama +159564,11 Days 11 Nights Part 3 (1989),Drama +159570,"11 Days, 11 Nights 2 (1990)",Drama +159572,Deep Blood (1990),Horror +159582,Return from Death: Frankenstein 2000 (1991),Horror +159584,The Hyena (1997),Romance|Thriller +159594,Contamination .7 (1993),Horror +159600,China and Sex (1994),Comedy|Drama +159604,Gonza the Spearman (1986),Drama +159606,Kapoor and Sons (2016),Drama +159608,Gates of the Night (1946),Drama|Fantasy|Mystery|Romance +159610,Abzurdah (2015),Drama|Romance +159612,Tal for dig selv (2004),Comedy +159614,The Ones Below (2015),Thriller +159616,Anden på Coke? (2006),Comedy +159618,Snake Dancer (1976),Drama +159620,Angel of Destruction (1994),Action|Adventure|Thriller +159622,8213: Gacy House (2010),Crime|Horror|Mystery +159624,11/11/11 (2011),Horror|Thriller +159626,Zoombies (2016),Action|Horror|Sci-Fi +159628,Gooby (2009),Children +159630,Cool As Hell (2013),Comedy|Horror +159632,Mr. Dough and the Egg Princess (2010),Animation +159634,The Day I Harvested a Star (2006),Animation|Fantasy +159636,Holidaze: The Christmas That Almost Didn't Happen (2006),Animation|Children +159638,Nothing Left Unsaid: Gloria Vanderbilt & Anderson Cooper (2016),Documentary +159640,Sexy Killer: You'll Die for Her (2008),Comedy|Horror|Thriller +159642,It's Only Money,Comedy +159644,Christmas in Compton (2012),Comedy +159646,Daughter of Darkness (1948),Thriller +159648,Spooky Town (1999),Horror|Western +159650,Decadent Evil (2005),Horror +159652,Chicken (2016),Drama +159654,Knock Knock (2007),Horror +159656,I Am Slave (2010),Drama|Thriller +159658,A Performance of Macbeth (1979),Drama +159660,One Girl's Confession (1953),Drama +159662,Premonition (1972),Horror +159664,Freedom,(no genres listed) +159666,Poor Boy (2016),Drama|Western +159668,The Portrait (Shozo) (1948),Drama +159670,Mauvais esprit (2003),Comedy +159672,Bucharest Non-Stop (2015),Comedy|Drama +159674,Back Home,(no genres listed) +159676,Last Pair Out (1956),Drama +159678,…And the Fifth Horseman Is Fear (1965),Drama|War +159680,The Hatching (2014),Comedy|Horror +159682,Embajadores en el infierno (1956),Drama|War +159684,Point Zero (2015),Drama|Thriller +159686,Dead Man's Hand (2007),Horror +159688,Peter Rottentail (2004),Horror +159690,Teenage Mutant Ninja Turtles: Out of the Shadows (2016),Action|Adventure|Comedy +159692,The Good Witch (2008),Children|Drama|Fantasy +159694,Grizzly Rage (2007),Horror +159696,The Darkness (2016),Horror|Thriller +159698,The Pool (2014),Horror|Thriller +159700,Fast Getaway (1991),Action|Comedy|Crime +159702,A Taxing Woman's Return (1988),Comedy +159704,Minbo: the Gentle Art of Japanese Extortion (1992),Comedy|Drama +159706,The Last Dance (1993),Drama +159708,Woman in Witness Protection (1997),(no genres listed) +159710,A Quiet Life (1995),Drama +159712,Tales of a Golden Geisha (1990),Comedy|Drama +159714,Camille (1921),Drama|Romance +159717,The Fundamentals of Caring (2016),Drama +159719,Inside Men (2015),Crime|Drama +159721,Brexit: The Movie (2016),Documentary +159723,The Jennie Project (2001),(no genres listed) +159725,A Knight in Camelot (1998),Adventure|Children|Comedy|Fantasy|Sci-Fi +159727,Baby Blood (1990),Horror +159729,Trance (1982),Horror +159731,BECK (2010),Drama +159733,Jackie Chan: My Stunts (1999),Documentary +159735,Sin Filtro (2016),Comedy +159739,The Gambler (2013),Drama|Thriller +159741,Elstree 1976 (2015),Documentary +159747,Locked In (2010),Drama|Thriller +159749,"Bumblefuck, USA (2011)",Drama +159751,Love on the Dole (1941),Drama +159753,After Eden,(no genres listed) +159755,Popstar: Never Stop Never Stopping (2016),Comedy +159757,The Sky is Falling (1979),Drama|Thriller +159759,The Class Of Miss MacMichael (1979),(no genres listed) +159761,Loot (1970),Comedy|Crime +159763,Why Shoot the Teacher? (1977),Comedy|Drama +159765,Lantern hill (1989),Children|Drama +159769,Bullet to Beijing (1995),Action|Drama|Thriller +159771,Tab Hunter Confidential (2015),Documentary +159773,Next Time I'll Aim for the Heart (2014),Crime|Drama|Thriller +159775,All About Our House (2001),Comedy +159779,A Midsummer Night's Dream (2016),(no genres listed) +159781,Guns for Hire (2015),Comedy|Drama|Thriller +159784,United States of Love (2016),Drama +159786,Lost and Beautiful (2015),Drama|Fantasy +159789,Marguerite & Julien (2015),(no genres listed) +159795,Future Shock! The Story of 2000AD (2014),Documentary +159797,La muerte de Jaime Roldós (2013),Documentary +159799,Dark Signal (2016),Horror +159801,Old Fashioned: The Story of the Wisconsin Supper Club (2015),Documentary +159803,Below Zero (2011),Horror|Thriller +159805,Flamenco Flamenco (2010),(no genres listed) +159807,The Making of a Lady (2012),Drama +159809,Mad Love (1985),Drama|Romance +159811,The Bremen Town Musicians (1969),Animation|Drama|Fantasy +159813,Urge (2015),Thriller +159817,Planet Earth (2006),Documentary +159819,Life (2009),Documentary +159821,Monkey Planet (2014),Documentary +159823,Dylan Moran: Off The Hook (2015),Comedy +159825,The Great Waltz (1972),Drama|Romance +159827,All the Way (2016),Drama +159829,Toad Road (2013),Horror|Thriller +159831,Song of Norway (1970),Drama +159833,The Secret of My Success (1965),Comedy +159837,Ring of Fire (1961),Adventure|Crime|Drama +159839,The Night Holds Terror (1955),Crime|Drama +159841,Highway 301 (1950),Crime +159843,Sensations of 1945 (1944),(no genres listed) +159845,Bedside Manner (1945),Comedy|Romance +159849,Bo Burnham: Make Happy (2016),Comedy +159851,Troublemakers: The Story of Land Art (2015),Documentary +159853,Boris - Il film (2011),Comedy +159856,The Toy Box (1971),Horror|Sci-Fi +159858,The Conjuring 2 (2016),Horror +159860,Alexander Hamilton (1931),Drama +159862,Alexander The Great (1968),Adventure|Drama +159865,Captive (1998),Thriller +159867,Captive (1991),Drama|Thriller +159869,Captive (1986),Crime|Thriller +159873,Captive (2008),Drama +159875,Captive (1980),Sci-Fi +159877,Circuitry Man II: Plughead Rewired (1994),(no genres listed) +159879,Come Fly With Me (1963),(no genres listed) +159882,Fort Utah (1967),(no genres listed) +159886,Gun Belt (1953),Western +159892,Jazz Heaven (1929),Comedy +159894,Jigsaw - Elimination (2010),Action|Horror|Thriller +159896,Eyes of Crystal (2004),Thriller +159898,Jigsaw (2002),Horror +159904,Living on Love (1937),Comedy|Romance +159906,Meet the Hitlers (2014),Documentary +159913,UFOs: The Best Evidence Ever Caught on Tape (1997),Documentary +159915,The Final Master (2015),Action|Drama +159917,Weiner (2016),Documentary +159920,Shaolin Avengers (1994),Action +159922,The Shaolin Avengers (1976),Action +159931,Showdown (1963),Western +159933,Showdown (1993),Drama +159940,The Crash (1932),Drama +159942,The Demented (2013),Drama|Horror|Thriller +159944,The Dresser (2015),Drama +159947,Kick or Die (1987),(no genres listed) +159949,The Expert (1932),(no genres listed) +159951,The Girl Said No (1937),Comedy +159955,The Lady of Scandal (1930),Comedy|Drama|Romance +159958,The Red Mill (1927),Comedy|Romance +159960,The Savage Five (1974),Action +159965,When a Man Loves (1927),Romance +159968,L'année prochaine... si tout va bien (1981),Comedy|Drama +159970,Never Back Down: No Surrender (2016),Action|Drama +159972,Approaching the Unknown (2016),Drama|Sci-Fi|Thriller +159974,Tap Roots (1948),Drama|War|Western +159976,Pelé: Birth of a Legend (2016),Drama +159978,The Captive Heart (1946),Drama|War +159980,Bienvenue à bord (2011),Comedy +159982,Douchebag (2010),Comedy|Drama +159984,Beş Şehir (2010),(no genres listed) +159988,Brothers and Sisters of the Toda Family (1941),(no genres listed) +159992,Dragnet Girl (1933),Crime|Drama|Romance +159994,Eroica (1958),Comedy|Drama +159996,Days of Youth (1929),Comedy|Romance +159998,Revenge (1964),(no genres listed) +160000,Day One (1989),Drama +160002,Man on the Tracks (1957),Drama +160004,Dead Run (2005),(no genres listed) +160008,Moonchild (1974),Drama|Horror|Sci-Fi +160010,(Dis)Honesty: The Truth About Lies (2015),Documentary +160012,Andron (2016),Action|Sci-Fi +160014,Julia X (2011),Horror +160016,Oy Vey! My Son Is Gay! (2009),Comedy +160018,Comment c'est loin (2015),Comedy +160020,The Witness (2016),Documentary +160022,Seven Journeys (1947),(no genres listed) +160024,The Inheritors (1985),Drama +160026,Prey (1978),Horror|Sci-Fi +160028,Colossus of the Arena (1962),Action|Adventure|Drama +160030,Goliath and the Sins of Babylon (1963),Adventure +160032,Seven Slaves Against the World (1964),Adventure +160034,Revenge of the Gladiators (1964),Adventure +160036,Per un pugno nell'occhio (1965),(no genres listed) +160040,Your Turn to Die (1967),(no genres listed) +160042,Master Stroke (1967),Crime +160044,Seven Times Seven (1968),(no genres listed) +160048,The Weekend Murders (1970),Horror|Mystery +160050,"Stanza 17-17 palazzo delle tasse, ufficio imposte (1971)",(no genres listed) +160052,Africa Express (1976),Action|Adventure|Comedy +160054,California (1977),Western +160056,Hard Sell (2016),Drama +160058,"Stranger, Say Your Prayers! (1968)",(no genres listed) +160060,And Now... Make Your Peace with God (1968),(no genres listed) +160062,The Electric Chair (1969),Crime|Drama +160064,The Four Who Came to Kill Sartana (1969),Western +160066,Savage Guns (1971),Western +160068,Hero Called Allegria (1971),(no genres listed) +160070,"Karzan, Jungle Lord (1972)",Adventure +160072,Down with Your Hands... You Scum! (1971),Western +160074,"A.A.A. Masseuse, Good-Looking, Offers Her Services (1972)",Drama|Horror|Mystery +160076,Anything for a Friend (1973),(no genres listed) +160078,La professoressa di lingue (1976),(no genres listed) +160080,Ghostbusters (2016),Action|Comedy|Horror|Sci-Fi +160082,Kung Fu Mahjong (2005),Action|Comedy +160084,Henry Gamble's Birthday Party (2016),Drama +160086,You and I (2011),Drama|Romance|Thriller +160088,Fatal Contact (2006),Action +160090,The Caretaker (2008),Horror +160092,The Condemned 2 (2015),Action +160096,Car Trouble (1986),(no genres listed) +160098,Truckfighters (2011),Documentary +160100,Café. Waiting. Love (2014),Comedy|Romance +160102,Scream at the Devil (2015),Mystery +160104,Ribbit (2014),Adventure|Animation|Children|Comedy +160106,Confession (2014),Crime +160108,"Shoot It Black, Shoot It Blue (1974)",Crime|Drama +160110,Multiple Maniacs (1970),Comedy|Crime|Horror +160112,Cell (2016),Horror|Sci-Fi +160114,Gridlocked (2015),Action +160116,Sorceress (1995),Fantasy|Horror|Thriller +160118,Route 181: Fragments of a Journey in Palestine-Israel (2004),Documentary +160120,Shadow Run (1998),Thriller +160122,Nasty Habits (1977),Comedy +160124,A Dragon Arrives! (2016),(no genres listed) +160126,Into Pitch Black (2000),Action|Sci-Fi +160128,Doomsdays (2013),(no genres listed) +160131,Sonja and the Bull (2012),Comedy|Romance +160133,Junkers Come Here (1995),Animation|Children +160135,Miss Julie (2011),Drama +160137,Hitler - Never Heard of Him (1963),Documentary +160139,The Funhouse Massacre (2015),Horror +160141,Girl in Woods (2016),Drama|Horror|Thriller +160143,A Cold Night's Death (1973),Horror|Sci-Fi|Thriller +160145,The Corpse of Anna Fritz (2015),Drama|Thriller +160147,Mythica: The Necromancer (2015),Action|Adventure|Fantasy +160149,Complete Unknown (2016),Drama +160151,Kobe Bryant's Muse (2015),Documentary +160153,Angels One Five (1952),Drama|War +160155,Hidden Away (2014),Drama|Romance +160157,The Neanderthal Man (1953),Horror|Sci-Fi +160159,The Hero of Color City (2014),Animation +160161,Bang Gang (A Modern Love Story) (2016),Drama +160165,Intruders (1992),Horror|Sci-Fi +160167,Brigada criminal (1950),(no genres listed) +160169,The Asian Connection (2016),Action +160171,Vares - Uhkapelimerkki (2012),(no genres listed) +160173,Vares: Tango of Darkness (2012),(no genres listed) +160175,Vares - The Girls of April (2011),Crime +160177,Garter Snake (2011),Action|Crime +160179,Priest of Evil (2010),Action|Thriller +160181,Oldboys (2009),Comedy|Drama +160183,The Art of Organized Noize (2016),Documentary +160185,Gangnam Blues (2015),Action|Crime|Thriller +160187,Blackway (2015),Thriller +160189,To Catch a Killer (1992),Crime|Drama|Thriller +160191,Identicals (2015),Sci-Fi +160193,Adam Green's Aladdin (2016),Comedy|Fantasy +160195,The Oogieloves in the Big Balloon Adventure (2012),Children +160197,The Hive (2008),Horror|Sci-Fi +160199,No Man's Woman (1955),Crime +160201,La pazza gioia (2016),Comedy|Drama +160203,Styria (2013),Fantasy|Horror|Mystery|Thriller +160205,Life Feels Good (2013),Drama +160207,Fasten Your Seatbelts (2014),Comedy|Drama +160209,The Resurrection of Jake the Snake (2015),Documentary +160211,Un homme de trop (1967),Drama|Thriller|War +160213,Conseil de famille (1986),(no genres listed) +160215,Womanlight (1979),Drama +160217,The Secret of Nikola Tesla (1980),Drama +160219,Double Identity (2009),Crime|Thriller +160221,Invasion of the Saucer-Men (1957),Comedy|Horror|Sci-Fi +160223,Future Kick (1991),Action|Sci-Fi +160225,Killers on Parade (1961),Crime|Drama +160227,What Now? Remind Me (2013),Documentary|Drama +160229,The Bengali Night (1988),Drama +160231,The Kingdom of Diamonds (1980),Comedy +160233,Robbery (2015),Comedy +160236,Be Somebody (2016),Comedy|Romance +160238,Stockholm (2013),Drama|Romance +160240,Will You Still Love Me Tomorrow? (2013),(no genres listed) +160243,The Man from Yesterday (1932),Drama|Romance|War +160245,The Misleading Lady (1932),Comedy +160247,Manslaughter (1930),Drama|Romance +160249,One Romantic Night (1930),Comedy|Romance +160251,Fight Church (2014),Documentary +160253,The Hole in the Wall (1929),Drama|Mystery +160255,The Lady Lies (1929),Drama +160257,Hot Pepper (1933),(no genres listed) +160259,Night World (1932),Drama +160261,Contract on Cherry Street (1977),Drama|Thriller +160265,Fixing Frank (2002),Drama +160267,Essaye-moi (2006),Comedy|Romance +160269,Fratricide (2005),(no genres listed) +160271,Central Intelligence (2016),Action|Comedy +160273,Aarakshan (2011),Drama +160275,Abhijaan (1962),Drama +160277,Chakravyuh (2012),(no genres listed) +160279,Dasvidaniya (2008),Drama +160281,Do Dooni Chaar (2010),Comedy|Drama +160283,Dum Maaro Dum (2011),Action|Crime|Drama +160285,The Three Men of Melita Zganjer (1998),Comedy|Romance +160287,Redemption Trail (2013),Drama +160289,O.J.: Made in America (2016),Documentary +160291,"Mother, May I Sleep with Danger? (2016)",Thriller +160293,Curse of the Faceless Man (1958),Adventure|Horror|Sci-Fi +160295,David (2011),(no genres listed) +160297,Ragin Cajun Redneck Gators (2013),Horror|Sci-Fi|Thriller +160299,Miami Magma (2011),Action|Sci-Fi +160301,Udta Punjab (2016),Crime|Drama|Thriller +160303,Unaware (2013),Horror|Sci-Fi +160305,Broadway to Cheyenne (1932),Western +160307,Parole Girl (1933),Crime|Drama +160309,My Sin (1931),Drama +160313,24 Hours (1931),Drama +160315,AC/DC- Let There Be Rock (1980),(no genres listed) +160317,Roots (2016),(no genres listed) +160319,We are Twisted Fucking Sister! (2016),Documentary +160321,The Drummer (2007),Action|Drama +160323,The Locked Door (1929),Mystery +160325,I Love Hong Kong (2011),Comedy +160327,"The Life and Death of 9413, a Hollywood Extra (1928)",Comedy|Drama +160329,I Love Hong Kong 2012 (2012),Comedy +160331,Mexicali Rose (1929),Drama|Romance +160333,Clock Cleaners (1937),Animation +160335,The Band Concert (1935),Animation +160337,Almost Human (2013),Horror|Sci-Fi +160339,The Werewolf vs the Vampire Woman (1971),Horror +160341,Bloodmoon (1997),Action|Thriller +160343,Bloodmoon (1990),Horror|Thriller +160346,"Class of Nuke 'Em High 3: The Good, the Bad and the Subhumanoid (1994)",Comedy|Horror|Sci-Fi +160348,Rise of the Gargoyles (2009),Horror +160350,Alien Lockdown (2004),Sci-Fi +160352,Dark Moon Rising (2015),Fantasy|Horror +160354,Dark Moon Rising (2009),Horror +160356,Shelter (2015),Drama|Sci-Fi|Thriller +160358,Devil Dogs of the Air (1935),Action|Comedy|Drama|Romance +160360,How to Let Go of the World and Love All the Things Climate Can't Change (2016),Documentary +160362,In The Spider's Web (2007),Horror +160364,Macbeth (1998),(no genres listed) +160366,MacBeth (1961),(no genres listed) +160368,Macbeth (1997),Drama +160370,Mansquito (2005),Horror|Sci-Fi +160374,Politics (1931),Comedy|Romance +160378,Sicario (1994),(no genres listed) +160380,Suited (2016),(no genres listed) +160382,Swing Fever (1943),Comedy|Romance +160384,The Millionaire (1931),(no genres listed) +160386,The St. Louis Kid (1934),(no genres listed) +160388,"The Strange History of Don't Ask, Don't Tell (2011)",Drama +160390,The Time of Your Life (1976),Drama +160392,Trenchcoat (1983),Children|Comedy|Crime|Mystery +160394,Gayby Baby (2015),(no genres listed) +160396,Makeup Room (2015),Comedy|Drama +160398,A Letter to Uncle Boonmee (2009),(no genres listed) +160400,Genius (2016),Drama +160402,Rags (2012),Comedy|Drama +160404,Barrela: Escola de Crimes (1990),Crime +160406,The Asphalt Kiss (1981),Crime|Drama +160408,El Estudiante (2010),Drama +160410,Besame Mucho (1987),(no genres listed) +160412,Golden Mouth (1963),(no genres listed) +160414,Mais Uma Vez Amor (2005),Comedy|Romance +160416,Fantastic Lies (2016),Documentary +160418,IP5: The Island of Pachyderms (1992),Drama +160420,Thithi (2015),(no genres listed) +160422,The Wooden Horse (1950),Drama|War +160424,Beautiful Mystery (1983),Comedy|Drama +160426,Internet Famous (2016),(no genres listed) +160428,DEAD RISING : ENDGAME,(no genres listed) +160430,Header (2006),Horror +160432,Wild Palms (1993),Drama|Mystery|Sci-Fi|Thriller +160434,Doc Martin (2001),Comedy|Drama|Thriller +160436,Te3n (2016),Thriller +160438,Jason Bourne (2016),Action +160440,The Maid's Room (2014),Thriller +160442,Catastrophe (1977),Documentary +160444,Ghanchakkar (2013),Comedy|Crime|Thriller +160446,Khichdi: The Movie (2010),Children|Comedy +160448,Love Sex aur Dhokha (2010),Drama +160450,Mirch (2010),Drama|Romance +160452,Miss Lovely (2012),Drama +160454,Oye Lucky! Lucky Oye! (2008),Action|Comedy +160456,Phas Gaye Re Obama (2010),Comedy|Crime +160458,Saheb Biwi Aur Gangster Returns (2013),Action|Crime|Drama|Thriller +160460,Shamitabh (2015),Comedy|Drama|Thriller +160462,Stanley's Tiffin Box (2011),Children|Comedy +160464,Tere Naal Love Ho Gaya (2012),Comedy|Drama|Romance +160466,When the Dragon Swallowed the Sun (2010),(no genres listed) +160468,Special Delivery (1976),(no genres listed) +160470,The Snake Brothers (2015),Drama +160472,The Great Alone (2015),Adventure|Documentary|Drama +160474,Adventures in Babysitting (2016),Comedy +160476,Without Memory (1996),(no genres listed) +160478,Hotwire (1980),Action|Comedy +160480,Blue Monkey (1987),Horror +160482,Bedroom Eyes (1984),Comedy|Mystery|Thriller +160484,Spasms (1983),Horror|Sci-Fi +160486,Cries in the Night (1980),Horror|Thriller +160488,Mean Dog Blues (1978),(no genres listed) +160492,Day Of The Assassin (1979),Action +160494,Thirst (1979),Horror|Sci-Fi|Thriller +160496,Kidnap (1974),Action|Drama|Thriller +160498,Les hommes (1973),(no genres listed) +160504,Apache Vengeance (1971),Action|Western +160506,The Plainsman (1966),Western +160508,Hail! Mafia (1965),Crime|Drama|Thriller +160511,The Winding Stream (2014),Children|Documentary +160513,$uperthief: Inside America's Biggest Bank Score (2012),(no genres listed) +160515,Dead 7 (2016),Horror|Western +160519,Curious George: A Very Monkey Christmas (2009),Animation|Children +160523,The Wolves (1971),Action|Comedy|Drama|Thriller +160525,Trail of Blood (1972),Action +160527,Sympathy for the Underdog (1971),Action|Crime|Drama +160529,Soundless (2004),Action|Crime|Thriller +160531,Underworld Beauty (1958),Crime|Drama +160533,Adult Life Skills (2016),Comedy|Drama +160535,Time Again (2011),(no genres listed) +160537,Deadly Sanctuary (2015),Mystery|Thriller +160541,Apocalypse Kiss (2014),(no genres listed) +160543,St George's Day (2012),Action|Crime|Thriller +160545,Horror Hospital (1973),Comedy|Horror|Sci-Fi +160549,Swallows and Amazons (1974),Adventure|Children +160551,Black November (2012),Action|Crime|Drama +160553,De Palma (2016),Documentary +160555,Raman Raghav 2.0 (2016),Crime|Thriller +160557,Septembers of Shiraz (2015),Drama|Thriller +160559,Minimalism: A Documentary About the Important Things (2016),Documentary +160561,Drag Becomes Him (2015),Documentary +160563,The Legend of Tarzan (2016),Action|Adventure +160565,The Purge: Election Year (2016),Action|Horror|Sci-Fi +160567,Mike & Dave Need Wedding Dates (2016),Comedy +160569,Ice Age: Collision Course (2016),Adventure|Animation|Children|Comedy +160571,Lights Out (2016),Horror +160573,Pete's Dragon (2016),Adventure|Children|Fantasy +160575,Mythica: The Iron Crown (2016),Fantasy +160577,Detective K: Secret of the Lost Island (2015),Action|Adventure|Comedy|Mystery +160579,Friends and Romans,(no genres listed) +160581,The Duel (2016),Action|Drama|Western +160584,Memory Run (1995),Action|Sci-Fi +160586,No Stranger Than Love (2015),Comedy|Romance +160588,Boom Bust Boom (2016),Documentary +160590,Survive and Advance (2013),(no genres listed) +160592,Shocking Blue (2010),Drama +160596,Les Tuche 2 : Le Rêve Américain (2016),Comedy +160598,The Mutilator (1985),Horror +160600,The Demolitionist (1995),Action|Sci-Fi +160602,The Hatter's Ghost (1982),Crime|Mystery|Thriller +160604,Boot Hill (1969),Comedy|Western +160606,Hannibal (1959),(no genres listed) +160608,I'm for the Hippopotamus (1979),Action|Adventure|Comedy +160614,Big Man - A Policy for Hell (1988),(no genres listed) +160620,Big Man - The Diva (1988),Action|Comedy|Crime +160624,Big Man - An Unusual Insurance (1988),(no genres listed) +160636,Under the Blood-Red Sun (2014),Children|Drama +160638,The Throne (2015),Drama +160642,A Field Full of Secrets (2014),Documentary +160644,Indignation (2016),Drama +160646,Goat (2016),Drama +160648,Black Mountain Side (2016),Horror|Thriller +160650,La Chance de ma vie (2011),Comedy|Romance +160652,Hide and Seek (2013),Thriller +160654,Deo pa-i-beu (2013),Action|Drama|Mystery +160656,Tallulah (2016),Drama +160660,Gli ultimi saranno ultimi (2015),Comedy|Drama +160664,Le nozze di Laura (2015),Drama +160666,Non essere cattivo (2015),Drama +160670,The Black Angels (1970),Action|Drama +160672,Blood Bath (1966),Horror +160674,The ReZort (2016),Horror +160676,Poor Devil,(no genres listed) +160678,The Phenom (2016),Drama +160680,The Trench (1999),Action|Drama|War +160682,Palio (2015),Documentary +160684,Marauders (2016),Action +160686,The Birth of the Tramp (2014),Documentary +160688,From A to B (2015),Adventure|Comedy|Drama +160690,Jeremiah (1998),Fantasy +160692,The Father's Love (2014),(no genres listed) +160694,Patterns of Evidence: The Exodus (2015),Documentary +160696,Solomon (1997),Fantasy +160698,Steel Cold Winter (2013),Mystery|Thriller +160700,Carnage Park (2016),Action|Crime|Horror|Thriller +160702,Dragons: A Fantasy Made Real (2004),Fantasy +160704,Agostino d'Ippona (1972),Drama +160706,Der Nachtmahr (2015),Drama|Mystery +160708,The Blue Hour (2015),Drama|Horror +160710,Absolutely Fabulous: The Movie (2016),Comedy +160712,Candy Stripers (2006),Horror +160714,Halloween Night (1988),Horror +160716,Manhole (2014),Horror|Thriller +160718,Piper (2016),Animation +160720,Exhibit A (2007),Thriller +160722,She's Beautiful When She's Angry (2014),Documentary +160724,They Will Have To Kill Us First,Documentary +160726,Fastball (2016),Documentary +160728,Pond Hockey (2008),Documentary +160730,The Adderall Diaries (2015),Action|Drama|Thriller +160732,La buena vida (2009),(no genres listed) +160734,21 Days (2014),Horror|Thriller +160736,21 Days (1940),Drama +160738,Action in Arabia (1944),Drama|Romance|Thriller +160740,Call It a Day (1937),(no genres listed) +160742,The Heist (1970),Crime +160744,Catalina Caper (1967),Comedy +160746,The Pace That Kills (The Cocaine Fiends) (1935),Drama +160748,Cowboy Canteen (1944),War|Western +160750,Cowboy Cavalier (1948),Western +160754,Destry (1954),Western +160756,Diana: Last Days of a Princess (2007),Drama +160758,Five Guns to Tombstone (1961),Western +160760,Frontier Gal (1945),Romance|Western +160762,Greenwich Village (1944),Comedy +160764,Heart Like a Hand Grenade (2015),Documentary +160766,The Antwerp Dolls (2015),Action|Crime|Thriller +160768,Fair Game (1986),Action|Horror|Thriller +160770,Traded (2016),Western +160772,Home in Oklahoma (1946),Action|Western +160774,In a Perfect World (2015),Documentary +160776,It Always Rains on Sunday (1947),Crime|Drama +160778,Judge Hardy and Son (1939),Comedy +160780,Lafayette Escadrille (1958),Drama|Romance|War +160782,Assassin of Youth (1937),Comedy|Drama +160784,Model for Murder (1959),Crime|Drama +160788,Night Train (2007),Drama|Mystery +160790,"Quincannon, Frontier Scout (1956)",Action|Western +160792,Springtime in the Sierras (1947),Western +160794,Quarantine L.A. (2016),Action|Horror +160796,The Asylum (2016),Action|Horror|Mystery|Sci-Fi|Thriller +160798,The Avenging Eagle (1978),Action|Adventure +160800,The Beach Boys: An American Band (1985),Documentary +160802,The Bronze Buckaroo (1939),Western +160804,The Desert Song (1943),Romance +160806,The Desert Song (1929),(no genres listed) +160808,The Golden Arrow (1936),Children|Comedy +160810,The Journey (2014),Children|Comedy|Drama +160812,Sancharram (2004),Drama|Romance +160814,The Journey (1997),(no genres listed) +160816,Die Reise (1986),Drama +160818,The Journey (2001),Documentary +160820,The Journey (2003),(no genres listed) +160822,The Remarkable Mr. Pennypacker (1959),Comedy +160824,W.A.R.: Women Against Rape (1987),Drama|Thriller +160826,Atomic War Bride (1960),Drama|Sci-Fi +160828,Por Mis Pistolas (1968),Adventure|Comedy|Western +160830,El Profe (1971),Comedy +160832,"No eres tú, soy yo (2010)",Comedy|Drama|Romance +160836,Hazard (2005),Action|Drama|Thriller +160838,Into a Dream (2005),Drama +160840,The Wildman of Kentucky: The Mystery of Panther Rock (2008),Documentary +160842,Young Dragons: Kung Fu Kids II (1986),Action +160844,Lifeline (2016),Thriller +160846,American Legends (2002),Animation|Children|Fantasy +160848,The Red Turtle (2016),Animation +160850,Au revoir l'été (2013),Drama +160852,Hospitalité (2010),Comedy +160854,La maldición de Frankenstein (1973),Horror|Sci-Fi +160856,The Long Island Cannibal Massacre (1980),Horror +160858,Symptoms (1974),Horror +160860,The Dog Lover (2016),Drama +160862,Notes on Blindness (2016),Documentary +160864,La vida alrededor (1959),Drama +160866,Mickey Mouse in Vietnam (1968),Animation|War +160868,Escalation (1968),(no genres listed) +160870,The Birth of Japan (1959),Action|Drama|Fantasy +160872,Satanic (2016),Horror +160874,"Life, Animated (2016)",Animation|Documentary +160876,The Innocents (2016),Drama +160878,The Kind Words (2015),Drama +160880,Eat That Question: Frank Zappa in His Own Words,(no genres listed) +160882,Three (2016),Crime +160884,Argentina (2015),Documentary +160886,Presenting Princess Shaw,Documentary +160888,Baduk (1992),(no genres listed) +160890,He Who Must Die (1957),Drama +160892,"Right Now, Wrong Then (2015)",Drama +160894,Absent-minded (1970),Comedy +160896,Fittest On Earth (The Story Of The 2015 Reebok CrossFit Games) (2016),Documentary +160898,Contrato Vitalício (2016),Adventure|Comedy +160900,No te engañes corazón (1937),Comedy +160902,Águila o Sol (1938),Comedy +160904,Ni Sangre Ni Arena (1941),Comedy +160906,El Gendarme Desconocido (1941),Comedy +160908,The Three Musketeers (1946),Adventure|Comedy +160910,The Circus (1943),Comedy +160912,Romeo y Julieta (1943),Comedy +160914,Gran Hotel (1944),Comedy +160916,Un Dia Con el Diablo (1945),Comedy +160918,El Supersabio (1948),Comedy +160920,El Portero (1950),Comedy +160922,Si yo fuera Diputado (1952),Comedy +160924,The Atomic Fireman (1952),Comedy +160926,Mr. Photographer (1953),Comedy|Thriller +160928,Caballero a la Medida (1954),Comedy +160930,Abajo el Telón (1955),Comedy +160932,Ama a tu Prójimo (1958),Comedy +160934,El Extra (1962),Comedy +160936,Entrega inmediata (1963),Comedy +160938,El Señor Doctor (1965),Comedy +160940,Un Quijote Sin Mancha (1969),Comedy +160942,Don Quijote Cabalga de Nuevo (1973),Comedy +160944,Conserje en Condominio (1974),Comedy +160946,El Ministro y Yo (1977),(no genres listed) +160948,El Patrullero 777 (1978),Comedy +160950,El Barrendero (1982),Comedy +160952,The Rolling Stones Rock and Roll Circus (1996),(no genres listed) +160954,Nerve (2016),Drama|Thriller +160956,Code of Honor (2016),Action +160958,Darker Than Amber (1970),Action|Adventure|Drama|Mystery +160960,Moonfire (1973),Action|Adventure|Drama +160962,Rabbit's Moon (1950),Drama +160964,Puce Moment (1949),(no genres listed) +160966,You're Human Like the Rest of Them (1967),(no genres listed) +160968,Unfair! (1970),(no genres listed) +160970,Paradigm (1969),(no genres listed) +160972,On Reflection: B.S. Johnson on Dr. Samuel Johnson (1972),(no genres listed) +160974,Fat Man on a Beach (1973),Documentary|Drama +160976,The Seashell and the Clergyman (1928),Mystery +160978,Hellevator (2004),Horror|Sci-Fi +160980,Sully (2016),Drama +160982,Slack Bay (2016),Comedy|Drama +160984,The Son of Joseph (2016),Comedy|Drama +160986,The Demons (2015),Drama +160988,The Student (2016),Drama +160990,It's Only the End of the World (2016),Drama +160992,Aloys (2016),Drama|Fantasy +160994,Hi-Riders (1978),Action|Crime|Drama +160996,Star Games (1998),Adventure|Children|Sci-Fi +160998,Dark Future (1994),Action|Sci-Fi +161000,Mad Dog Coll (1992),Action|Crime|Drama +161004,Russian Holiday (1992),Crime|Drama|Thriller +161006,"Out of Sight, Out of Mind (1990)",Horror|Mystery|Thriller +161008,The Forbidden Dance (1990),(no genres listed) +161010,Skinheads (1989),Thriller +161012,Final Justice (1985),Action|Crime|Drama +161014,Wacko (1982),Comedy|Horror +161016,The Return (1980),(no genres listed) +161018,Black Shampoo (1976),Action|Comedy|Crime|Drama|Thriller +161020,The Bad Bunch (1973),Drama +161022,The Portal (2014),Comedy|Fantasy|Sci-Fi +161024,Jim Jefferies: Freedumb (2016),Comedy +161026,Dirty Lies (2016),Action|Crime|Drama|Thriller +161028,Till Luck Do Us Part (2012),Comedy +161030,Crazy Eyes (2012),Comedy|Drama|Romance +161032,The Grandmother (1970),Action|Drama +161034,Sultan (2016),Action|Drama +161036,La caliente niña Julietta (1981),Comedy +161038,The Ordeal of Patty Hearst (1979),(no genres listed) +161040,The House of Light (1969),(no genres listed) +161042,51 Degrees North (2015),Drama|Mystery|Sci-Fi|Thriller +161044,Webmaster (1998),Sci-Fi +161046,Charlie (2015),Drama|Romance +161048,Cartola - Música Para os Olhos (2007),Documentary +161050,The Miki Howard Story,(no genres listed) +161052,The Devil Strikes at Night (1957),Crime|Drama +161054,The Sons of Great Bear (1966),Action|Drama|Western +161056,One Day Like Rain (2007),Drama|Sci-Fi +161058,Here (2011),Adventure|Drama|Romance +161060,Goldstone (2016),Crime|Thriller +161062,Un homme à la hauteur (2016),Comedy|Romance +161064,Irène (2002),Comedy +161066,The Benefactor (2015),Drama +161068,Countdown (2016),Action +161070,Dead Sea (2014),Action|Horror|Sci-Fi|Thriller +161072,"10,000 Black Men Named George (2002)",(no genres listed) +161074,Lake Eerie (2016),Horror|Sci-Fi|Thriller +161076,La nostra terra (2014),Comedy|Drama +161078,The Last King (2016),Action|Adventure|Drama +161080,The Fury of the Wolf Man (1972),Horror +161082,The Sound and the Shadow (2014),Comedy|Mystery|Thriller +161084,My Friend Rockefeller (2015),Documentary +161086,Gypsies Are Found Near Heaven (1976),Drama|Romance +161088,Born to Ride (2011),Action|Thriller +161090,Second Chances (1998),Children|Drama +161092,Califórnia (2015),Drama +161094,Nil Battey Sannata (2016),Drama +161096,The Married Couple of the Year Two (1971),Adventure|Comedy +161098,Prince of Broadway (2008),Comedy|Drama +161100,Rolling Papers (2015),Documentary +161103,I Was a Teenage Frankenstein (1957),Horror|Sci-Fi +161105,Kismat Konnection (2008),Comedy|Drama|Romance +161107,Bitcoin: The End of Money as We Know It (2015),Documentary +161109,The Irish Pub (2013),Documentary +161111,Alice in Wonderland (1903),Fantasy +161113,Twenty Years Later (1985),(no genres listed) +161115,"You, Me and Him (2007)",Drama +161117,Fender Bender (2016),Horror|Thriller +161119,Tale About the Cat and the Moon (1997),Animation +161121,The King of the Kickboxers (1990),Action +161123,The Emperor in August (2015),Drama|War +161127,The Infiltrator (2016),Crime|Drama +161129,Israel: Birth of a Nation (1995),Documentary +161131,War Dogs (2016),Comedy +161133,After the Wall: A World United (2011),(no genres listed) +161135,Homme Less (2015),Documentary +161137,The Weekend (2012),Comedy|Drama +161139,Reality XL (2012),Mystery|Sci-Fi +161141,Double Daddy (2015),Thriller +161143,KidPoker (2015),(no genres listed) +161145,Electoral Dysfunction (2012),Comedy|Documentary +161147,The Book of Daniel (2013),Fantasy +161149,"Jia Zhangke, A Guy from Fenyang (2014)",Documentary +161151,Boys on the Run (2010),Comedy|Drama|Romance +161153,Pali Road (2016),Drama|Fantasy|Mystery|Romance|Thriller +161155,Sunspring (2016),Sci-Fi +161157,Friday (Pyatnitsa) (2016),Comedy +161159,Mono (2016),Comedy +161161,Living in the Age of Airplanes (2015),Documentary +161163,The Lost Valentine (2011),Drama|Romance +161165,Back in the Day (2016),Drama +161167,Rüzgarlar (2013),Drama +161169,Undrafted (2016),Children|Comedy|Drama +161171,Zombie Nightmare (1987),Horror +161173,Outlaws and Angels (2016),Drama|Thriller|Western +161175,Mortal Kombat: Conquest (1998),Action +161177,Brahman Naman (2016),Comedy +161179,To Steal from a Thief (2016),Crime|Thriller +161181,A Beautiful Planet (2016),Documentary +161185,Helix (2015),Action|Mystery|Sci-Fi +161187,Collective Invention (2015),Comedy|Drama +161190,Daniel Tosh: People Pleaser (2016),Comedy +161192,Curse of the Crimson Altar (1968),Horror|Mystery +161194,These Birds Walk (2013),Documentary|Drama +161198,Un grand cri d'amour (1998),Comedy +161200,We Will All Meet in Paradise (1977),Comedy +161202,The Man in the Wall (2015),(no genres listed) +161204,Our RoboCop Remake (2014),Action|Comedy|Crime|Sci-Fi +161206,Abraham Lincoln vs. Zombies (2012),Action|Horror|Thriller +161208,The Iceman: Confessions of a Mafia Hitman (2001),Documentary +161210,A Bullet for Sandoval (1969),Action|Western +161212,Ace Eli and Rodger of the Skies (1973),Adventure|Drama|Romance +161214,Adam (1983),Drama +161216,Adam (1992),Animation|Drama|Romance +161218,Forbidden Ground (2013),Action|Drama|War +161222,The Blood of Jesus (1941),Drama|Fantasy +161224,Crash Landing (2006),Action|Crime|Thriller +161226,Deep Red (1994),Sci-Fi|Thriller +161230,Dirty Gertie from Harlem U.S.A. (1946),Drama +161232,Hate for Hate (1967),Western +161234,In Pursuit of Honor (1995),Action|Drama +161236,The Blade of Don Juan (2013),Comedy|Drama +161238,Let's Do It Again (1953),Comedy +161240,Looking: The Movie (2016),Comedy|Drama|Romance +161242,Love in the Rough (1930),Comedy|Romance +161244,"Money, Women and Guns (1958)",Western +161246,Mystery Mansion (1984),Adventure|Thriller +161248,Never the Twain Shall Meet (1931),(no genres listed) +161250,No More Excuses (1968),(no genres listed) +161252,Red Mountain (1951),(no genres listed) +161254,Quantrill's Raiders (1958),(no genres listed) +161256,Rampage (1963),Adventure +161258,Rampage (1986),Action|Adventure +161260,Rampage (2006),Documentary +161262,Red Sun (1970),Crime +161264,Something for a Lonely Man (1968),Western +161266,Nemuritorii (1974),Action|Adventure|Thriller|War +161268,Spectre (1977),Horror +161270,Films to Keep You Awake: Spectre (2006),Drama|Horror|Mystery +161272,The Florodora Girl (1930),Drama|Romance +161274,Cannibal Holocaust II (1988),Adventure|Horror +161276,Ciuleandra (1985),(no genres listed) +161278,Veiled Aristocrats (1932),(no genres listed) +161280,Victor Young Perez (2013),Drama +161282,Emma's Chance (2016),Children|Drama +161284,Boost (2016),Action|Crime|Drama +161286,The Prey (2014),Action|Horror|Thriller +161288,Cyborg X (2016),Action|Horror +161290,Vigilante Diaries (2016),Action +161292,Poddubnyy (2014),Drama +161294,The Adversary (1970),(no genres listed) +161296,Encounters in the Deep (1979),Sci-Fi +161298,Ghostheads (2016),Documentary +161300,Digital Dharma,(no genres listed) +161302,Traders (2016),Thriller +161304,On the Brain (2016),Crime|Horror|Thriller +161306,Night of the Sharks (1989),Action|Drama +161308,Can't You Hear the Wind Howl? The Life & Music of Robert Johnson (1998),(no genres listed) +161310,Us Two (1979),Drama +161312,Rebirth (2016),Thriller +161316,Deadly Hero (1976),Crime|Drama|Thriller +161318,Fast Break (1979),Comedy +161324,An Episode in the Life of an Iron Picker (2013),Drama +161326,Black (2015),Action|Drama +161328,Dear Eleanor (2016),Adventure|Comedy|Drama +161330,The Great Martian War 1913 - 1917 (2013),Documentary|Drama|War +161332,I Am Belfast (2016),Documentary +161334,Tony Robbins: I Am Not Your Guru (2016),Documentary +161336,Author: The JT LeRoy Story (2016),Documentary +161338,The New Kid (2015),Comedy +161340,Schmitke (2014),Comedy|Drama +161342,The Man with the Carnation (1980),Drama +161344,The Mirage (2015),Comedy|Drama +161346,Walt Before Mickey (2015),Drama +161348,The Love Witch (2016),Drama|Horror|Thriller +161350,A Visit from the Incubus (2001),Comedy|Horror|Western +161352,Fairy Ballet (1998),Fantasy +161354,Batman: The Killing Joke (2016),Action|Animation|Crime|Drama +161356,Le Mataf (1973),Thriller +161358,Lights of New York (1928),Crime|Drama +161360,American Juggalo (2011),Documentary +161362,Oxyana (2013),Documentary +161364,The Presence (2014),Horror +161366,Tarzan and the Golden Lion (1927),(no genres listed) +161368,Old Ironsides (1926),Drama +161370,The nickel-hopper (1926),Comedy +161372,The King of the Kongo (1929),Action|Adventure +161374,Behind the Mask (1932),Crime|Horror|Thriller +161376,The Guilty Generation (1931),(no genres listed) +161378,The Yellow Ticket (1931),Drama +161380,Graft (1931),(no genres listed) +161382,I Like Your Nerve (1931),Comedy|Romance +161384,The Public Defender (1931),Crime|Drama|Mystery +161386,The Vanishing Legion (1931),Action|Mystery +161388,King of the Wild (1931),Action|Adventure|Horror +161392,The Man with Nine Lives (1940),Horror|Mystery|Sci-Fi|Thriller +161394,The Mystery of Mr. Wong (1939),Drama|Mystery|Thriller +161396,"Mr. Wong, Detective (1938)",Crime|Drama|Mystery|Thriller +161398,The Emperor's Nightingale (1949),Animation|Children|Fantasy +161402,Fear Chamber (1968),Horror +161404,House of Evil (1972),Horror|Mystery +161406,Isle of the Snake People (1971),Horror|Mystery +161408,Alien Terror (1971),Horror|Sci-Fi +161412,Babes in Bagdad (1952),Comedy +161418,Trottie True (1949),Comedy|Drama +161420,The Dark Avenger (1955),Action|Adventure +161422,Alias John Preston (1955),Horror|Mystery +161424,Port Afrique (1956),Drama|Mystery|Romance +161426,That Girl in Yellow Boots (2010),Crime|Drama|Mystery|Thriller +161428,The Truth About Women (1957),(no genres listed) +161430,She Played With Fire (1957),Crime|Drama +161432,The Terror of the Tongs (1961),Adventure|Horror|Thriller +161434,The Treasure of San Teresa (1959),Adventure|Crime +161436,The Puzzle of the Red Orchid (1962),Crime|Horror|Thriller +161438,The Devil's Daffodil (1961),Crime|Mystery +161440,The Bloody Judge (1970),Horror +161442,Eve (1968),Adventure +161444,The Torture Chamber of Dr. Sadism (1967),Horror|Mystery +161446,Five Golden Dragons (1967),Action|Drama +161448,Theatre of Death (1967),Horror|Mystery +161450,Circus of Fear (1966),Horror|Mystery|Thriller +161452,The Pirate (1978),Drama +161456,The Keeper (1976),Drama|Horror|Mystery +161458,Albino (1976),Action|Adventure +161464,The Salamander (1981),Thriller +161466,Once Upon a Spy (1980),(no genres listed) +161468,Nutcracker Fantasy (1979),(no genres listed) +161470,The Far Pavilions (1984),Drama|Romance +161474,Around the World in 80 Days (1989),Adventure|Drama +161476,Mask of Murder (1985),Horror|Thriller +161480,The Girl (1987),Drama|Romance|Thriller +161482,The Disputation (1986),Drama +161484,Sherlock Holmes: Incident at Victoria Falls (1992),Adventure|Crime|Drama +161486,Sherlock Holmes and the Leading Lady (1991),Crime|Drama|Mystery +161490,The Rainbow Thief (1990),Drama|Fantasy +161492,Honeymoon Academy (1990),Comedy|Drama +161496,Moses (1995),Fantasy +161500,Ivanhoe (1997),Adventure|Drama|Romance +161502,Soul Music (1997),Animation|Comedy|Fantasy +161504,Wyrd Sisters (1997),Animation|Fantasy +161506,Greyfriars Bobby (2005),Children|Drama +161508,Gormenghast (2000),Comedy|Fantasy +161512,I tromboni di Fra' Diavolo (1962),(no genres listed) +161514,Hollow (2011),Drama +161516,Der Januskopf (1920),Horror +161520,Wild Company (1930),Drama +161524,The Thirteenth Chair (1929),Mystery +161526,The Last Performance (1927),Drama|Horror|Romance +161528,The Midnight Girl (1925),Drama +161530,The Mysterious Mr. Wong (1934),Mystery|Thriller +161534,Night of Terror (1933),Horror|Thriller +161536,The Whispering Shadow (1933),Action|Mystery +161538,Broadminded (1931),Comedy +161542,50 Million Frenchmen (1931),(no genres listed) +161544,Alien Tornado (2012),Action|Sci-Fi|Thriller +161546,Viennese Nights (1930),(no genres listed) +161548,The Saint's Double Trouble (1940),Crime|Drama|Mystery +161550,The Dark Eyes of London (1939),Horror +161552,Postal Inspector (1936),Thriller +161554,Murder by Television (1935),Thriller +161556,The Mystery of the Marie Celeste (1935),Drama|Horror|Mystery +161558,The Best Man Wins (1935),(no genres listed) +161560,Genius at Work (1946),Comedy|Crime +161562,Return of the Ape Man (1944),Horror|Sci-Fi +161564,Voodoo Man (1944),Horror +161568,Laddie (1940),Drama +161570,Magic Fire (1956),Drama|Romance +161572,The Great Houdini (1976),Drama +161578,Poison Berry in my Brain (2015),Comedy|Romance +161580,Bad Moms (2016),Comedy +161582,Hell or High Water (2016),Crime|Drama +161584,Southside With You (2016),Drama|Romance +161586,Little Men (2016),Drama +161588,Meet the Blacks (2016),Comedy|Horror +161590,Den demokratiske terroristen (1992),Action|Thriller +161592,Terra Formars (2016),Action|Horror|Sci-Fi +161594,Kingsglaive: Final Fantasy XV (2016),Action|Adventure|Animation|Drama|Fantasy|Sci-Fi +161596,Back to Mom's (2016),Comedy +161598,1812 (1912),(no genres listed) +161600,U Be Dead (2009),Drama|Thriller +161602,Siccîn 2 (2015),Horror +161604,Ghost Team (2016),(no genres listed) +161606,O Quatrilho (1995),Drama|Romance +161608,Madaari (2016),Thriller +161610,El río que nos lleva (1988),(no genres listed) +161612,Komunaris chibukhi (1929),Drama +161614,I Love You Rosa (1972),Drama +161616,Bite (2015),Horror +161618,The Dragon Lives Again (1977),Action|Fantasy +161620,Clash (2016),(no genres listed) +161622,Revenge of the Bridesmaids (2010),Comedy|Romance +161624,Tricked (2012),Drama +161626,Happy End (1999),Drama +161628,Savage Sam (1963),Action|Adventure|Children|Drama|Western +161630,Color Adjustment (1992),(no genres listed) +161632,Protagonist (2007),Documentary +161634,Don't Breathe (2016),Thriller +161636,The Pills - Sempre meglio che lavorare (2016),Comedy +161638,Enclave (2015),Drama|War +161640,"Hello, My Name Is Frank (2014)",(no genres listed) +161642,Bridge and Tunnel (2014),(no genres listed) +161644,Coco (2016),Drama +161646,The Death and Life of Otto Bloom (2016),(no genres listed) +161648,Black Force (1975),Action +161650,47 Meters Down (2016),Horror|Thriller +161652,Trivisa (2016),Crime|Drama|Thriller +161654,Scare Campaign (2016),Comedy|Horror +161656,Gabo: The Creation of Gabriel Gracia Marquez (2015),Documentary +161658,Hillary's America: The Secret History Of The Democratic Party (2016),(no genres listed) +161660,Gut zu Vögeln (2016),Comedy|Romance +161662,Pufnstuf (1970),Children|Comedy|Fantasy +161666,My Best Friend (2001),Comedy +161668,Guys and Dolls (2007),Documentary|Romance +161670,In Celebration (1975),(no genres listed) +161672,In the Family (2011),Drama +161674,The Final Terror (1983),Horror|Thriller +161676,Misunderstood (2014),Drama +161678,Asef Ala El-Ezaag (2008),Comedy|Drama|Mystery +161680,American Hostage (2016),Crime|Drama|Thriller +161682,H8RZ (2015),Action|Drama|Thriller +161684,River (2016),Thriller +161686,The Call Up (2016),Action|Adventure|Sci-Fi +161688,Berserker (2015),Crime|Mystery +161690,In the Cold of the Night (1990),Drama|Mystery|Romance|Thriller +161692,Bloodstone (1988),Action|Adventure +161694,Homeward Bound (1980),Drama +161696,Swan Song (1980),Drama +161698,The Stick Up (1977),Comedy|Crime|Romance +161700,Dogpound Shuffle (1975),Drama +161702,The Running Man (1963),Crime|Drama +161704,The Story of Jacob and Joseph (1974),Drama +161706,Story of a Love Story (1973),(no genres listed) +161708,A Day in the Death of Joe Egg (1972),(no genres listed) +161710,Force majeure (1989),(no genres listed) +161712,We Think the World of You (1988),(no genres listed) +161714,Pack of Lies (1987),Action|Thriller +161716,A Voyage Round My Father (1984),Drama +161718,Separate tables (1983),(no genres listed) +161720,An Englishman Abroad (1983),Drama +161722,The Return of the Soldier (1982),Drama +161724,Hands Up! (1981),Comedy|Drama +161726,The Cherry Orchard (1999),Comedy|Drama +161730,Dr. M (1990),Crime|Mystery|Sci-Fi +161732,Hollywood North (2004),Comedy|Documentary +161734,St. Patrick: The Irish Legend (2000),Drama +161736,The Amazing Transplant (1970),Fantasy|Mystery +161738,The Wild Life (2016),Adventure|Animation|Comedy +161742,Do or Die (1991),Action|Thriller +161746,Slapstick (Of Another Kind) (1982),Comedy +161748,Fox Hunt (1996),Action|Comedy +161752,Ernst Thälmann - Sohn seiner Klasse (1954),Drama +161754,Ernst Thälmann - Führer seiner Klasse (1955),Drama +161756,Grandma (1979),Comedy +161758,Imagine You & Me (2016),Comedy|Romance +161762,Belle and Sebastian: The Adventure Continues (2015),Adventure|Children +161766,Sun Belt Express (2015),Children|Comedy|Drama +161768,Bimboland (1998),Comedy|Romance +161770,"Splash, Too (1988)",Children|Comedy|Romance +161772,End of the Line (1987),Action|Drama +161774,Enormous Changes at the Last Minute (1983),Drama +161776,Blood Moon (2016),Comedy|Horror|Thriller +161778,Sky Line (2015),Documentary +161780,Huset (2016),Horror|Thriller|War +161782,Sx_Tape (2014),Horror +161784,Perfect Creature (2006),Action|Horror|Sci-Fi +161786,VeggieTales: Where's God When I'm Scared (1993),Animation|Children +161788,VeggieTales: God Wants Me to Forgive Them!?! (1994),(no genres listed) +161790,"VeggieTales: Rack, Shack & Benny (1995)",(no genres listed) +161792,VeggieTales: Are You My Neighbor? (1995),(no genres listed) +161794,VeggieTales: Dave and the Giant Pickle (1996),Adventure|Animation|Children|Comedy +161796,VeggieTales: Very Silly Songs (1997),Animation|Children +161798,VeggieTales: Josh and the Big Wall (1997),Animation|Children +161800,VeggieTales: Madame Blueberry (1998),(no genres listed) +161802,VeggieTales: The End of Silliness? More Really Silly Songs! (1998),Animation|Children +161804,VeggieTales: Esther...The Girl Who Became Queen (2000),(no genres listed) +161806,VeggieTales: King George and the Ducky (2000),(no genres listed) +161808,"VeggieTales: Lyle, the Kindly Viking (2001)",(no genres listed) +161810,VeggieTales: The Ultimate Silly Song Countdown (2001),Animation|Children +161812,VeggieTales: The Ballad of Little Joe (2003),Animation|Children +161814,VeggieTales: Lord of the Beans (2005),Animation|Children +161816,VeggieTales: Minnesota Cuke and the Search for Samson's Hairbrush (2005),Animation|Children +161818,VeggieTales: Duke and the Great Pie War (2005),Animation|Children +161820,VeggieTales: LarryBoy & The Bad Apple (2006),Adventure|Children +161822,VeggieTales: Sheerluck Holmes and the Golden Ruler (2006),Adventure|Animation|Children +161824,VeggieTales: The Wonderful Wizard of Ha's (2007),Adventure|Children +161826,VeggieTales: Tomato Sawyer & Huckleberry Larry's Big River Rescue (2008),Adventure|Animation|Children|Comedy +161828,Below the Sea (1933),Adventure +161830,Body (2015),Drama|Horror|Thriller +161832,Dark Haul (2014),Horror +161834,David Bowie & the Story of Ziggy Stardust (2012),Documentary +161836,Dead Still (2014),Horror +161838,Delicious (2013),Drama +161840,Delicious (1931),(no genres listed) +161842,Dim Sum Funeral (2008),Comedy|Drama +161844,Gun Smugglers (1948),Western +161846,Heller in Pink Tights (1960),Action|Adventure|Romance|Western +161848,It Happened in Hollywood (1937),Comedy|Drama +161850,Jimi Hendrix: The Last 24 Hours (2004),Documentary +161852,King Cobra (2016),Crime|Drama +161854,Ladies In Love (1936),Comedy|Romance +161856,Masked Raiders (1949),Western +161858,Motorcycle Gang (1957),Drama +161860,Operation Bottleneck (1961),Drama|War +161862,Overland Telegraph (1951),Western +161864,Pirates of the Prairie (1942),Western +161866,Rhythm on the Range (1936),Western +161868,"Sing, You Sinners (1938)",(no genres listed) +161872,Street Angel (1937),Comedy|Drama +161876,Sunnyside Up (1929),(no genres listed) +161878,The Alamo: Thirteen Days to Glory (1987),Western +161880,The Arizona Ranger (1948),Western +161882,The Killing Hour (1982),Drama|Mystery|Thriller +161884,The Law West of Tombstone (1938),Western +161888,The Rookie Cop (1939),Action|Adventure +161892,The Touch (2002),Action|Fantasy +161894,The Wedding March (2016),Romance +161896,Three Faces West (1940),Action|Drama|Romance +161898,Tumbledown (2013),Drama|Mystery|Romance +161900,Twilight Time (1982),Drama +161902,Terror of Frankenstein (1977),Horror|Sci-Fi +161904,Why Did I Get Married? The Play (2006),Comedy|Drama +161906,Youth (2013),Drama +161908,Plum Blossom (2000),Drama|Romance +161912,Zombie Night (2003),Comedy|Horror|Sci-Fi +161914,Whitey (1980),Drama +161916,JACO (2014),Documentary +161918,Sharknado 4: The 4th Awakens (2016),Action|Adventure|Horror|Sci-Fi +161920,Donald Trump's The Art of the Deal: The Movie (2016),Comedy +161922,The Edge of Seventeen (2016),Comedy +161924,Clinton Cash (2016),Documentary +161926,When the Lights Went Out (2012),Drama|Horror|Thriller +161928,Symphony No. 42 (2014),Animation|Mystery +161930,Hafu (2013),Documentary +161932,Poi E: The Story of Our Song (2016),Documentary +161934,Manhattan Romance (2015),Comedy|Drama|Romance +161936,Intruder (2016),Horror|Thriller +161938,'Master Harold'... and the Boys (1985),Drama +161940,Detective Conan: The Fourteenth Target (1998),Crime|Thriller +161942,Detective Conan: The Last Wizard of the Century (1999),Animation|Thriller +161944,The Last Brickmaker in America (2001),Drama +161948,Tibetana,(no genres listed) +161950,95 Miles to Go (2006),Comedy|Documentary +161952,Prince Among Slaves (2008),(no genres listed) +161954,Anthropoid (2016),War +161956,Blood Father (2016),Action|Thriller +161958,Joshy (2016),Comedy +161960,Ants on a Shrimp (2016),Documentary +161962,Snowtime! (2015),Animation|Children +161964,Free to Run (2016),Documentary +161966,Elle (2016),Thriller +161968,Dough (2015),Comedy|Drama +161970,The Little House (2014),Children|Drama +161972,Lucy Maud Montgomery's Anne of Green Gables (2016),Children|Drama +161974,Daylight's End (2016),Action|Horror|Sci-Fi +161976,The Mobfathers (2016),Drama +161978,Le camion (1977),Drama|Romance +161980,Alki Alki (2015),Comedy +161984,T.R. Baskin (1971),Drama +161986,Anything Can Happen (1995),Documentary +161988,Medusa (1998),Fantasy|Thriller +161990,The Life and Death of a Porno Gang (2009),Action|Adventure|Drama|Thriller +161992,The Stranger (1987),Thriller +161994,Between Friends (1973),Crime|Drama +161998,Mr. Blue Sky: The Story of Jeff Lynne and ELO (2012),Documentary +162000,Meeting David Wilson (2010),Documentary +162002,Starship (1984),Sci-Fi +162004,Liar Game: The Final Stage (2010),Drama|Thriller +162006,Gleason,(no genres listed) +162008,The Ducktators (1942),Animation|Comedy +162010,TransFatty Lives (2015),Documentary +162012,Anna M. (2007),Drama +162022,The Mill on the Floss (1937),Drama +162026,Return of the Scarlet Pimpernel (1937),Action|Romance +162028,I Met a Murderer (1939),Thriller +162030,Hatter's Castle (1942),Drama +162032,The Night Has Eyes (1942),Horror|Mystery|Thriller +162036,The Bells Go Down (1943),Drama|War +162038,They Met in the Dark (1943),Mystery|Romance|Thriller +162040,Candlelight in Algeria (1944),Drama|War +162042,Fanny by Gaslight (1944),Drama|Romance +162044,They Were Sisters (1946),Drama +162046,The Upturned Glass (1947),Crime|Drama +162050,Botany Bay (1953),Action|Adventure|Romance +162052,The Marriage-Go-Round (1961),Comedy +162054,Escape From Zahrain (1962),Action|Adventure|Drama +162056,Torpedo Bay (1963),War +162058,Grandmaster (2012),Mystery|Thriller +162060,The Polar Boy (2016),Drama +162062,The Days That Confused (2016),Comedy|Drama +162064,Breaking the Surface (2006),Drama +162066,Frankenstein: The True Story (1973),Horror +162070,3 Days of Normal (2012),Children|Comedy|Romance +162072,Bubblegum and Broken Fingers (2011),Crime|Drama|Western +162074,The Yin and the Yang of Mr. Go (1970),Mystery|Thriller +162076,Spring and Port Wine (1970),Drama +162078,Wedding Day (2012),Drama +162080,Johan Falk: Kodnamn Lisa (2013),Action|Crime|Thriller +162082,Train to Busan (2016),Action|Thriller +162084,Kill! (1971),Action|Crime|Thriller +162086,Johan Falk: Organizatsija Karayan (2012),Action|Crime|Thriller +162088,Johan Falk: Barninfiltratören (2012),Action|Crime|Thriller +162090,Johan Falk: Alla råns moder (2012),Action|Crime|Thriller +162092,Johan Falk: Spelets regler (2012),Action|Crime|Thriller +162094,Johan Falk: Leo Gaut (2009),Action|Thriller +162096,Great Expectations (1974),Drama|Romance +162098,Johan Falk: National Target (2009),Action|Crime|Thriller +162100,"The Fjällbacka Murders: The Sea Gives, the Sea Takes (2013)",Crime|Mystery +162102,The Hidden Child (2013),Crime +162104,In The French Style (1963),(no genres listed) +162106,The Fjällbacka Murders: The Queen of Lights (2013),Crime|Mystery +162108,The Fjällbacka Murders: Friends for Life (2013),Crime|Mystery +162110,The Fjällbacka Murders: In the Eye of the Beholder (2013),Crime|Mystery|Thriller +162112,The Fjällbacka Murders: The Coast Rider (2013),Crime|Mystery +162114,My Pal Gus (1952),(no genres listed) +162116,The San Francisco Story (1952),Western +162118,Assignment: Paris (1952),Drama +162120,Shoot First (1953),Adventure|Crime|Thriller +162126,Autobiography of a Princess (1975),(no genres listed) +162128,Street War (1976),Crime +162130,The Perfect Crime (1978),Crime +162132,Silence the Witness (1974),Action|Crime|Drama +162134,The Water Babies (1978),Children +162136,The Last Chance (1968),Crime|Thriller +162138,Charge! (1973),Western +162144,Late Extra (1935),Crime|Drama +162146,The Rosa Parks Story (2002),Drama +162148,Friend Request (2016),Horror|Thriller +162150,Let's Be Evil (2016),Sci-Fi|Thriller +162152,Five Nights in Maine (2015),Drama +162154,Bazodee,(no genres listed) +162156,Breaking Glass (1980),Drama +162158,Edge of Winter (2016),Drama|Thriller +162160,Viral (2016),Drama|Horror|Sci-Fi|Thriller +162162,The Remains (2016),Horror +162164,Family Lies (2016),Drama +162166,Sus ojos se cerraron y el mundo sigue andando (1998),(no genres listed) +162168,The Sicilian Girl (2008),Action|Crime|Drama|Thriller +162170,The Mind's Eye (2016),Action|Horror|Sci-Fi +162172,Summer Camp (2015),Horror +162174,The Last Treasure Hunt (2015),(no genres listed) +162180,Heartbeat (1987),Drama|War +162188,Made In U.S.A. (1987),Drama +162190,Just Tell Me What You Want (1980),Comedy|Romance +162192,King: A Filmed Record... Montgomery to Memphis (1970),Documentary +162194,The Appointment (1969),Drama +162196,A View from the Bridge (1962),(no genres listed) +162198,That Kind of Woman (1959),Comedy|Drama|Romance +162200,The Making Of Trump (2015),Documentary +162202,We Of The Never Never (1982),Drama +162204,The Land (2016),Drama +162206,Bitter Springs (1950),Adventure|Drama +162208,Jedda (1955),Action|Adventure|Drama +162210,Lie Detector (2011),Comedy +162212,Pete Johansson: You Might Also Enjoy Pete Johansson (2016),(no genres listed) +162214,The Edge (1968),(no genres listed) +162216,Hacking Democracy (2006),Crime|Documentary +162218,Sworn Virgin (2015),Drama +162220,Jamie Foxx: I Might Need Security (2002),Comedy +162222,Godfrey: Black By Accident (2011),Comedy +162224,"El Bosco, el jardín de los sueños",Documentary +162226,E la chiamano estate (2012),Drama +162228,Best Night Ever (2014),Comedy +162230,Fair Sex (2012),Drama +162232,Daisy Diamond (2007),Drama +162234,Hotel St. Pauli (1988),Drama +162236,Hit 'n Strum (2013),Drama +162238,"Tattoo, a Love Story (2002)",(no genres listed) +162240,3 Geezers! (2013),Comedy +162242,Lover (2005),Romance +162244,Those Who Kill - Shadow of the Past (2012),Crime|Drama|Thriller +162246,"Siberia, Monamour (2011)",Drama +162248,Swerve (2012),Crime|Drama|Thriller +162250,Anita (1972),Drama +162252,Sket (2011),Crime|Drama +162254,The Break-up Artist (2009),Comedy|Romance +162256,Respire (2011),Horror|Thriller +162258,Shades (1999),Comedy +162260,Deuce of Spades (2010),Drama|Mystery|Thriller +162262,Locked Down (2010),Action|Drama|Thriller +162264,Exit Speed (2008),Action|Thriller +162266,Polar Storm (2009),Action|Sci-Fi +162268,Slovenian Girl (2009),Drama +162270,Road of No Return (2008),Action|Drama|Thriller +162272,Sara (1997),Action|Children|Crime|Drama|Romance +162274,Scrapbook (2000),Drama|Horror +162276,Midnight Son (2011),Action|Drama|Horror +162278,Neighbor (2009),Horror|Thriller +162280,Amateur Porn Star Killer (2006),Crime|Horror +162282,Amateur Porn Star Killer 3: The Final Chapter (2009),Crime|Horror|Thriller +162284,Amateur Porn Star Killer 2 (2008),Crime|Horror +162286,The Band (2009),Comedy|Romance +162288,Swingers (2002),Drama|Romance +162290,Lift (2006),(no genres listed) +162292,I Was Here (2008),Crime|Drama +162294,Charlie & Boots (2009),Comedy|Drama +162296,The Seamstress (2009),Crime|Horror|Mystery|Thriller +162298,The Boxer (2009),Drama +162300,Stone & Ed (2008),Action|Comedy +162302,Worry Dolls (2015),Horror|Thriller +162304,ABCs of Death 2.5 (2016),Horror +162306,Scab (2005),(no genres listed) +162308,Klown Forever (2015),Comedy +162310,Dabbe: Bir cin vakasi (2012),Horror|Thriller +162312,The Hexecutioners (2016),Horror +162314,Road to Kabul (2012),Action|Comedy +162316,Shelley (2016),Drama|Mystery +162318,Ice (1970),Drama +162320,L'argent (1928),Drama +162322,Mechanic: Resurrection (2016),Action|Crime|Thriller +162324,The Secret Smile (2005),Thriller +162326,Porto (2016),(no genres listed) +162328,A Different Story (1978),Drama|Romance +162330,The Children (1990),Drama +162332,The Children (1985),Comedy +162334,I Wish I Knew (2010),Documentary +162336,In the Room (2015),Drama|Romance +162338,Cal (1984),Drama|Romance|Thriller +162340,Captain Webb (2015),Drama +162342,Mister John (2013),(no genres listed) +162344,Tom Segura: Mostly Stories (2016),Comedy +162346,Antibirth (2016),Horror +162348,The 9th Life of Louis Drax (2016),Mystery|Thriller +162350,The Magnificent Seven (2016),Action|Western +162352,Separation (1968),Drama +162354,Dwayne Perkins: Take Note (2016),(no genres listed) +162356,Sniper: Ghost Shooter (2016),Action|Drama|War +162358,Assassin X (2016),Action +162360,Downhill (2014),Comedy +162362,Beta Test (2016),Action|Sci-Fi|Thriller +162364,The Valley of Light (2007),Drama|Romance +162366,American Fusion (2005),Comedy|Romance +162368,The Russian Woodpecker (2015),Documentary +162372,"Down the Deep, Dark Web (2016)",Documentary +162374,The Rack Pack (2016),Comedy|Drama +162378,A Thousand Men and a Baby (1997),Drama +162380,Love's Abiding Joy (2006),Action|Drama|Romance +162382,Love's Unending Legacy (2007),Drama|Romance +162384,Love's Unfolding Dream (2007),Children|Drama|Romance|Western +162386,Love Takes Wing (2009),Drama|Western +162388,Love Finds A Home (2009),Action|Children|Drama|Western +162390,Love Begins (2011),Children|Drama|Romance +162392,Love's Everlasting Courage (2011),Drama|Western +162394,Starchaser: The Legend of Orin (1985),Adventure|Animation|Children|Sci-Fi +162396,Skiptrace (2016),Action|Comedy +162398,"Monkeyshines, No. 3 (1890)",(no genres listed) +162400,Wintergartenprogramm (1895),(no genres listed) +162402,Droid Gunner (1995),Action|Sci-Fi +162404,Édith et Marcel (1983),(no genres listed) +162406,I Am Breathing (2013),Documentary +162408,A Stand Up Guy (2016),Comedy +162410,3 Türken und ein Baby (2015),Comedy +162412,Brian Posehn: Criminally Posehn (2016),(no genres listed) +162414,Moonlight,Drama +162416,Big Fish & Begonia (2016),Animation|Fantasy +162418,A Conspiracy of Faith (2016),Crime|Drama|Mystery|Thriller +162420,Naz & Maalik (2014),(no genres listed) +162422,The League of Gentlemen's Apocalypse (2005),Comedy +162424,Love Like Poison (2010),Drama +162426,Mom's on Strike (2002),Comedy +162428,Jane's Journey (2011),Documentary +162430,Invasion: UFO (1974),Sci-Fi +162432,Crossroads to Crime (1960),Crime +162434,UFO... annientare S.H.A.D.O. stop. Uccidete Straker... (1972),Action|Sci-Fi|Thriller +162436,UFO - Distruggete base Luna! (1971),Action|Sci-Fi|Thriller +162438,Shado (1974),Drama|Sci-Fi +162442,The Sender (1982),Horror|Thriller +162444,Dawn of the World (2009),Drama|Romance|War +162446,The Finest Hour (1992),(no genres listed) +162448,Seoul Station (2016),Animation|Drama|Horror +162450,The Levenger Tapes (2013),Horror|Thriller +162452,Ghosts of Abu Ghraib (2007),Documentary +162454,A Lot Like You (2012),Documentary +162456,The Bronx Bull (2016),Drama +162458,The Bandit (2016),Documentary +162460,The Childhood of a Leader (2016),Drama|Horror|Mystery +162462,Cosmos Laundromat (2015),Animation +162464,The Fifth Seal (1976),Drama|War +162466,Death Drug (1977),Drama +162468,A Town like Alice (1956),Drama|Romance +162470,Cardcaptor Sakura: The Movie (1999),Adventure|Animation|Fantasy +162472,Ecstasy of Order: The Tetris Masters (2012),Documentary +162474,Five (2016),Comedy +162476,Une contre histoire de l'internet (2013),Documentary +162478,Masterminds (2016),Action|Comedy|Crime +162480,The Lesson (2015),Horror|Thriller +162482,The Zodiac Killer (1971),Crime|Horror|Mystery|Thriller +162484,Cop Dog (2008),Action|Adventure|Children +162486,Robo-Dog (2015),(no genres listed) +162488,Matchmaking (2016),Comedy|Romance +162492,Daddy's Gone A-Hunting (1969),Thriller +162494,A Prize of Gold (1955),Drama|War +162496,Hell Below Zero (1954),Action|Adventure +162498,Edge of Doom (1950),Crime|Drama|Thriller +162500,Roughshod (1949),Action|Drama|Romance|Western +162502,Youth Runs Wild (1944),Drama +162504,Broadway Thru a Keyhole (1933),(no genres listed) +162510,Seven Sinners (1936),Crime|Thriller +162512,Endgame (2000),Comedy|Drama +162514,Endgame (2015),Drama +162516,Cursed (1990),Horror +162518,Housewife (1934),Drama +162520,Las ovejas no pierden el tren (2015),Comedy +162522,Night After Night (1932),Comedy|Drama +162524,"Ready, Willing, and Able (1937)",(no genres listed) +162528,The Big Timer (1932),Drama +162530,The Black Cat (1966),Horror +162532,The Third Day (1965),Drama|Mystery +162534,Traveling Husbands (1931),Comedy|Crime +162536,Truth (2013),Thriller +162538,Under Oath (1997),Action|Thriller +162540,Amateur Night (2016),Comedy +162542,Rustom (2016),Romance|Thriller +162544,Darkest Day (2015),Action|Adventure|Horror +162546,Tiny Giants (2014),Children|Documentary +162548,Hold On! (1966),Comedy +162550,Riding The Bus With My Sister (2005),(no genres listed) +162552,Rain for a Dusty Summer (1971),Western +162554,Lady Godiva of Coventry (1955),Drama +162556,Footsteps in the Fog (1955),Drama +162558,The Spider Woman Strikes Back (1946),Horror +162560,Delightfully Dangerous (1945),Comedy +162562,White Savage (1943),Adventure +162564,Who Killed Aunt Maggie? (1940),Mystery +162566,One More Time With Feeling (2016),(no genres listed) +162568,Sensuela (1973),Drama +162570,Milestones (1975),(no genres listed) +162572,The Other Side (2015),Documentary +162574,The Seventh Fire (2015),(no genres listed) +162576,13 Cameras (2015),Drama|Horror +162578,Kubo and the Two Strings (2016),Adventure|Animation|Children|Fantasy +162580,Paradise (2015),(no genres listed) +162582,Mi fido di te (2007),Comedy +162584,The Spirit of '45 (2013),Documentary +162586,Down by Love (2016),Drama|Romance +162588,Keeping Rosy (2014),Thriller +162590,Bridget Jones's Baby (2016),Comedy|Romance +162592,The Light Between Oceans (2016),Drama +162594,Morgan (2016),Sci-Fi|Thriller +162596,Queen of Katwe (2016),Drama +162598,Deepwater Horizon (2016),Drama +162600,Miss Peregrine's Home for Peculiar Children (2016),Fantasy +162602,The Girl on the Train (2016),Thriller +162604,Middle School: The Worst Years of My Life (2016),Comedy +162606,The Accountant (2016),Crime|Drama|Thriller +162608,Kevin Hart: What Now? (2016),(no genres listed) +162610,The American Side (2016),Drama|Mystery|Thriller +162612,It's Hard Being Loved by Jerks (2009),Documentary +162614,Writer of O (2005),(no genres listed) +162616,"Me, Natalie (1969)",Comedy|Drama +162618,Apparition (2014),Horror|Thriller +162620,News from planet mars (2016),Comedy +162622,Remember You (2016),Drama|Mystery|Romance +162624,Sanam Teri Kasam (2016),Drama|Romance +162626,A Monster with a Thousand Heads (2015),Drama|Thriller +162628,Phantom of the Theatre (2016),Drama|Horror|Mystery +162630,Like for Likes (2016),Comedy|Romance +162632,Cemetery of Splendor (2015),Drama|Fantasy +162634,High Strung (2016),Drama|Romance +162636,Arisan! (2003),Comedy|Drama +162638,Time Renegades (2016),Romance|Thriller +162640,Phantom Detective (2016),Action|Drama +162642,Gie (2005),Drama +162644,Arisan! 2 (2011),(no genres listed) +162646,Seondal: The Man Who Sells the River (2016),Comedy +162648,Baaghi (2016),Action|Romance|Thriller +162650,Cold War 2 (2016),Action|Crime|Drama +162652,Compadres (2016),Action|Comedy +162654,Detective Chinatown (2015),Action|Adventure|Drama +162656,Dishoom (2016),Action|Comedy +162658,Gentleman (2016),Romance|Thriller +162660,God's Not Dead 2 (2016),Drama +162662,Hockney (2014),Documentary +162664,Housefull 3 (2016),Comedy|Romance +162666,Kabali (2016),Action|Crime|Drama +162668,Ki and Ka (2016),Comedy|Romance +162670,League of Gods (2016),Action|Fantasy +162672,Mohenjo Daro (2016),Adventure|Drama|Romance +162674,Catatan (Harian) Si Boy (2011),Drama +162676,Operation Chromite (2016),Action|Drama|War +162678,Our Last Tango (2015),Documentary +162680,Spirits' Homecoming (2016),Drama +162682,The First Monday in May (2016),Documentary +162684,Double Negative (1980),Thriller +162688,Chaindance (1991),Crime|Drama +162690,Cafe Romeo (1992),(no genres listed) +162692,Álibi Para Matar (1993),Crime|Drama|Thriller +162694,Voyage of Terror (1998),Drama|Thriller +162698,The Comedian (2013),(no genres listed) +162700,1st Bite (2006),Comedy|Drama|Fantasy|Horror|Romance +162702,You Lucky Dog (1998),(no genres listed) +162704,California Winter,Drama +162708,Element (2016),Thriller +162710,The Tichborne Claimant (1998),(no genres listed) +162712,Hologram Man (1995),Action|Sci-Fi|Thriller +162714,Lady Day at Emerson's Bar & Grill (2016),Drama +162716,The Old Mill (1937),Animation +162718,Project Itoh: Empire of Corpses (2015),Animation|Horror|Mystery|Sci-Fi +162720,Children of the Age (1915),(no genres listed) +162722,Death of a Shadow (2012),(no genres listed) +162724,In Search of the Ultra-Sex (2015),Comedy +162726,A Quiet Passion (2016),Drama +162728,Chosen (2016),Drama|War +162730,The Whole Truth (2016),Drama|Thriller +162732,The Model (2016),Drama +162734,Sole Proprietor (2016),Action|Crime|Drama +162736,Sundown (2016),Comedy|Romance +162738,American Honey (2016),Comedy|Drama +162740,The Houses Are Full of Smoke,(no genres listed) +162742,"Run, Cougar, Run (1972)",(no genres listed) +162744,Matru Ki Bijlee Ka Mandola (2013),Comedy +162746,The Last Gold,(no genres listed) +162748,Black Wax (1983),Documentary +162752,Deon Cole: Cole-Blooded Seminar (2016),Comedy +162754,Artie Lange: The Stench of Failure (2014),Comedy +162758,Tom Papa: Freaked Out (2013),Comedy +162760,Abandoned Dead (2015),(no genres listed) +162762,The 13 Roses (2007),Drama +162764,"Falkenau, the Impossible (1988)",Documentary +162766,The Legend of Speed (1999),Action +162768,Out of Love (2016),Drama +162770,Sunstruck (1972),(no genres listed) +162774,Hieronymus Bosch: Touched by the Devil (2015),Documentary +162776,Cutting Class (1989),Comedy|Horror|Mystery|Thriller +162778,Toomelah (2011),Drama +162780,1st to Die (2003),Action|Thriller +162782,Trapped in a Purple Haze (2000),Crime|Drama +162784,L'âge d'homme... maintenant ou jamais ! (2007),Comedy +162786,A Cooler Climate (1999),(no genres listed) +162788,"Aliens in the Wild, Wild West (1999)",(no genres listed) +162792,Principal Takes a Holiday (1998),Children|Comedy +162794,The Ranch (2004),Comedy|Drama +162796,Edison & Leo (2008),(no genres listed) +162798,Say Goodnight (2008),Comedy +162800,Yeti: Curse of the Snow Demon (2008),Horror +162802,Recipe for a Perfect Christmas (2005),(no genres listed) +162806,Lost Boy (2015),Drama|Thriller +162808,Scarlett (1994),(no genres listed) +162810,Rerouting (2014),(no genres listed) +162812,Idlers of the Fertile Valley (1978),(no genres listed) +162814,The King (2002),Drama +162816,How to Get Rid of the Others (2007),Comedy|Drama +162818,Blood on the Land (1966),Adventure|Drama +162820,No Budget Story (1997),Drama|Fantasy|Romance|Sci-Fi +162822,When Women Had Tails (1970),Comedy|Fantasy|Sci-Fi +162824,People in the Sun (2011),Comedy|Drama +162826,Local Color (2006),Drama +162828,Imperium (2016),Crime|Drama|Thriller +162830,Barash (2015),Drama|Romance +162832,The Wounded Angel,Drama +162834,Road to Istanbul (2016),Drama +162836,The Greggs (2014),(no genres listed) +162838,Boycott (2001),Drama +162842,David Brent: Life on the Road (2016),Comedy +162844,Race 2 (2013),Thriller +162846,The Invisible Maniac (1990),Comedy|Horror|Sci-Fi +162848,Steel Frontier (1995),Action|Sci-Fi +162850,Saved by the Bell: Wedding in Las Vegas (1994),(no genres listed) +162852,Blood Lake (2014),Comedy|Horror +162854,Marcello Marcello (2008),Comedy +162856,Marock (2005),Drama|Romance +162858,Casanegra (2009),Drama|Thriller +162860,Horses of God (2013),Drama +162862,Scenes from the Class Struggle in Portugal (1977),(no genres listed) +162864,Louis C.K.: One Night Stand (2005),Comedy +162866,Vintage Tomorrows (2016),(no genres listed) +162868,The Emperor and the Golem (1952),Comedy +162870,Irreplaceable (2016),Comedy|Drama +162872,Tomcat (2016),Drama +162874,Lost Songs: The Basement Tapes Continued (2014),Documentary +162876,Big Beat (1993),Comedy +162878,Fatal Intuition (2015),Thriller +162880,26 Years (2012),Drama|Thriller +162882,I Am Not a Serial Killer (2016),Thriller +162884,"Cheating Death, Stealing Life: The Eddie Guerrero Story (2004)",Action|Documentary +162886,Scott Hall: Living on a Razor's Edge,(no genres listed) +162888,Frankie Boyle - Live - The Last Days of Sodom (2012),Comedy +162890,Eddie Pepitone: In Ruins (2014),Comedy +162892,Fascisti su Marte (2006),(no genres listed) +162896,"Dave Attell: Hey, Your Mouth's Not Pregnant! (2006)",Comedy +162898,The Best of Insomniac with Dave Attell Volume 1 (2003),Comedy +162900,Chris D'Elia: Incorrigible (2015),Comedy +162912,Puerto Escondido (1992),(no genres listed) +162914,On tour (1990),Comedy +162916,Marrakech Express (1989),Comedy +162918,I Carabbinieri (1981),Comedy +162922,Eccezzziunale... veramente (1982),Comedy +162924,In the Pope's Eye (1980),Comedy +162926,High School Record (2005),Comedy|Documentary +162928,VHS Massacre (2015),(no genres listed) +162930,These Daughters of Mine (2015),Comedy|Drama +162932,Åke and His World (1984),Drama +162934,P & B (1983),Comedy|Drama +162936,Firmafesten (1972),(no genres listed) +162938,The Women on the Roof (1989),(no genres listed) +162940,s/y Glädjen (1989),Drama +162942,Hip hip hurra! (1987),(no genres listed) +162944,Ormens väg på hälleberget (1986),(no genres listed) +162946,The Dogs of Riga (1995),Drama|Thriller +162948,Sista dansen (1993),Drama|Thriller +162950,Murder at the Savoy (1993),Crime|Mystery +162952,The Ox (1991),Drama +162954,Parker Kane (1990),Crime|Drama +162956,Kiss Kiss (Bang Bang) (2001),Action|Crime +162958,Moomins and the Comet Chase (2010),Adventure|Animation +162960,As If I Am Not There (2010),Drama|War +162962,Puppet on a Chain (1971),Thriller +162964,Last Hijack (2014),Animation|Documentary +162968,Kizumonogatari Part 1: Tekketsu (2016),Action|Animation|Mystery +162970,Broken Blade: Book One - The Time of Awakening (2010),Action|Animation|Fantasy +162972,Broken Blade: Book Three - The Mark of the Assassin's Dagger (2010),Action|Animation|Fantasy +162974,Broken Blade: Book Two - The Split Path (2010),Action|Animation|Fantasy +162976,Broken Blade: Book Four - The Earth of Calamity (2010),Action|Animation|Fantasy +162978,Broken Blade: Book Five - The Horizon Between Life and Death (2011),Action|Animation|Fantasy +162980,Broken Blade: Book Six - Enclave of Lamentations (2011),(no genres listed) +162982,Steins;Gate the Movie: The Burden of Déjà vu (2013),Animation|Drama|Sci-Fi +162984,Cuisine et dépendances (1993),Comedy|Drama +162986,Agathe Cléry (2008),Comedy +162988,Ajin: Demi-Human - Compel (2015),Action|Animation|Thriller +162990,PSYCHO-PASS: The Movie (2016),Action|Animation|Sci-Fi +162992,Äkkilähtö (2016),(no genres listed) +162994,Dancin' It's On (2015),Drama|Romance +162996,The Black Hole (2015),Sci-Fi|Thriller +162998,Wonder Women!: The Untold Story of American Superheroines (2012),Documentary +163000,I'm Staying (2007),Comedy|Drama|Fantasy +163002,Second Coming (2014),Drama +163004,Shell (2012),Drama +163006,Hands of Stone (2016),Drama +163008,Gun Hill (2014),Action +163010,Bad Dad Rehab,(no genres listed) +163012,The Manipulator (1971),Horror +163014,Uncle P (2007),Children|Comedy +163016,Bending the Rules (2013),(no genres listed) +163018,A Lovasíjász,Adventure|Documentary +163020,The Fits (2016),Drama +163022,Morris from America (2016),Drama|Romance +163024,Figli – Hijos (2001),(no genres listed) +163026,The Lost Honour of Christopher Jefferies (2014),(no genres listed) +163028,Nocturna (2015),Horror|Thriller +163030,Arianna (2015),Drama +163032,What's Between Us (2015),Drama +163034,Sky (2015),Drama +163036,Fools on the Hill (2012),Documentary +163038,The Triple Echo (1972),(no genres listed) +163040,War Book (2014),(no genres listed) +163042,A Life for a Life (1916),(no genres listed) +163044,Pikadero (2015),Comedy|Drama +163046,Hattrick (2007),(no genres listed) +163048,The Last Heist (2016),Action +163050,Desperate Man Blues (2003),Documentary +163052,Cool Kids Don't Cry (2012),Children|Drama|Romance +163054,Burning Bodhi (2015),Drama +163056,Shin Godzilla (2016),Action|Adventure|Fantasy|Sci-Fi +163058,"Be Silent, Sorrow, Be Silent (1918)",(no genres listed) +163060,The Green Elephant (1999),Drama +163062,Sniper: Special Ops (2016),Action|War +163064,Hard Target 2 (2016),Action|Thriller +163066,Rabbit Seasoning (1952),Animation|Children|Comedy +163068,Killing Salazar (2016),Action +163070,Honey 3 (2016),Comedy +163072,Winnie Pooh (1969),Animation|Children +163076,Jean-Claude Van Johnson (2016),Comedy +163078,The Golden Fortress (1974),(no genres listed) +163080,Julius Caesar (1950),(no genres listed) +163084,The Savage (1952),Action|Western +163086,Bad for Each Other (1953),Drama +163088,Secret of the Incas (1954),Action|Horror|Thriller +163092,The Intervention (2016),Comedy|Drama +163094,The Sea of Trees (2016),Drama +163096,Antony and Cleopatra (1972),Drama +163098,The Dark Mist (1996),Action|Adventure|Fantasy|Sci-Fi +163100,"My Father, Rua Alguem 5555 (2004)",Drama +163102,Highway Patrolman (1991),Action|Drama +163104,Showman (1963),(no genres listed) +163106,Street Fighter IV: The Ties That Bind (2009),Action|Animation +163108,Función de noche (1981),Drama +163110,La pelle (1981),Drama|War +163112,Winnie the Pooh Goes Visiting (1971),Animation +163116,The Peace Killers (1971),Action|Crime|Drama +163118,XOXO (2016),Drama +163120,Honeymoon (2013),Drama +163122,Bodom (2016),Horror +163124,"Poverty, Inc. (2014)",Documentary +163126,Terra (2015),Documentary +163128,Love Hurt's (2002),Drama|Romance +163130,Cinema Six (2013),(no genres listed) +163132,Something Evil (1972),Horror +163134,Your Name. (2016),Animation|Drama|Fantasy|Romance +163136,Psiconautas (2015),Animation +163138,Refrigerantes e Canções de Amor (2016),Comedy|Romance +163140,My Babysitter's a Vampire (2010),Adventure|Children|Comedy|Fantasy +163142,The Rooftop (2013),Action|Comedy|Drama +163144,Window Water Baby Moving (1959),Documentary +163146,Dan Soder: Not Special (2016),Comedy +163148,Aurora (2014),Drama +163150,Aurora (1998),Adventure|Drama|Sci-Fi +163152,Aurora (2006),Drama +163154,Boat Builders (1938),Animation +163156,A Night at the Ritz (1935),Comedy +163158,Affair With A Stranger (1953),Drama|Romance +163160,Stella (1950),(no genres listed) +163162,Wabash Avenue (1950),(no genres listed) +163164,"Red, Hot and Blue (1949)",Comedy|Crime +163166,Footlight Serenade (1942),(no genres listed) +163168,Captain Caution (1940),Action|Adventure|Romance +163170,The Sharkfighters (1956),Adventure +163172,Chief Crazy Horse (1955),Western +163174,Samson and Delilah (1984),Action|Adventure|Fantasy +163176,The Bandit Of Zhobe (1959),(no genres listed) +163178,Timbuktu (1959),War +163180,Asunder (1998),Drama|Mystery|Romance|Thriller +163184,Brides Are Like That (1936),Comedy|Romance +163188,Challenge to be Free (1975),Children|Drama +163190,Chevolution (2008),Documentary +163194,Davy Crockett and the River Pirates (1956),Action|Adventure|Children +163196,Deep Core (2000),Action|Sci-Fi|Thriller +163198,Flaming Feather (1952),Western +163200,Devil's Canyon (1953),Action|Crime|Drama|Western +163202,Do You Believe in Miracles? The Story of the 1980 U.S. Hockey Team (2002),Documentary +163204,Flight Lieutenant (1942),Drama +163206,Forsaken (2016),Horror +163208,Gargoyles (1972),Fantasy|Horror +163210,Gun Brothers (1956),(no genres listed) +163212,Hot Money (1936),Comedy +163214,Killjoy (1981),Mystery|Thriller +163216,Lilith (2011),Horror +163218,The Thirsting (2006),(no genres listed) +163220,Lord Byron of Broadway (1930),(no genres listed) +163222,Love Begins at Twenty (1936),Comedy|Romance +163224,Murder by an Aristocrat (1936),(no genres listed) +163228,Our Gang (1922),(no genres listed) +163230,Petticoat Larceny (1943),Comedy +163232,Refuge (2013),Thriller +163234,Refuge (2010),Drama|Romance +163236,Triumphs of a Man Called Horse (1983),(no genres listed) +163238,Mexico's Most Wanted (2013),(no genres listed) +163240,Here Is Harold (2014),Comedy|Drama +163242,Sequoia (2014),Comedy|Drama|Romance +163244,Sequoia (1935),Adventure +163246,Seven Years Bad Luck (1921),Comedy +163250,The Architect (2016),(no genres listed) +163252,The Architect (2008),Drama +163254,The Cuckoos (1930),(no genres listed) +163256,The Falcon and the Co-Eds (1943),Crime|Drama|Mystery +163258,The Falcon in Danger (1943),Crime|Mystery +163260,The Falcon in Hollywood (1944),Crime|Drama|Mystery +163262,The Falcon in San Francisco (1945),Crime|Mystery +163264,The Falcon's Brother (1942),Crime|Drama|Mystery +163266,The Falcon Out West (1944),Crime|Drama|Mystery +163268,The Falcon's Alibi (1946),Crime|Mystery +163270,The Falcon's Adventure (1946),Crime|Drama|Mystery +163272,The Falcon Takes Over (1942),Crime|Mystery +163274,The Forest (1982),Horror +163278,The Forest (2002),Drama|Romance +163280,Creature Unknown (2004),(no genres listed) +163284,The Gal Who Took the West (1949),Action|Comedy|Romance|Western +163286,The Mermaid (1904),Fantasy +163288,Those Three French Girls (1930),(no genres listed) +163290,Three Men on a Horse (1936),Comedy +163292,Torchy Blane in Panama (1938),Comedy|Crime +163294,Traveling Saleslady (1935),Comedy|Romance +163296,Moss Rose (1947),Mystery|Thriller +163298,"No, No, Nanette (1940)",(no genres listed) +163300,The Veils of Bagdad (1953),Action|Adventure|Drama +163302,La vie très privée de monsieur Sim (2015),Comedy|Drama +163304,Eyes of a Thief (2014),Drama +163306,On the Other Side (2016),Drama +163308,Greetings From Fukushima (2016),Drama +163310,A Visit with Truman Capote (1966),Documentary +163312,Dhamaal (2007),Comedy +163314,Larry Kramer In Love & Anger (2015),Documentary +163316,Atop the Fourth Wall: The Movie (2015),(no genres listed) +163318,Wondrous Boccaccio (2015),Comedy|Drama +163320,Two for Tonight (1935),Comedy +163322,Mississippi (1935),(no genres listed) +163324,Here Is My Heart (1934),(no genres listed) +163326,She Loves Me Not (1934),(no genres listed) +163328,Too Much Harmony (1933),Comedy +163332,The Big Broadcast (1932),(no genres listed) +163334,Star Spangled Rhythm (1942),Comedy +163336,Birth of the Blues (1941),(no genres listed) +163338,Rhythm on the River (1940),(no genres listed) +163344,East Side of Heaven (1939),Children|Comedy +163350,Waikiki Wedding (1937),Comedy|Romance +163352,Variety Girl (1947),Comedy +163354,Welcome Stranger (1947),Comedy +163356,Duffy's Tavern (1945),Comedy +163358,Out of This World (1945),Comedy|Romance +163360,Here Come the Waves (1944),Comedy|Romance +163362,Dixie (1943),Comedy +163364,They Got Me Covered (1943),Comedy +163366,Little Boy Lost (1953),Drama +163368,Just for You (1952),Comedy +163370,Mr. Music (1950),Comedy|Romance +163372,Riding High (1950),Comedy +163374,Top o' the Morning (1949),(no genres listed) +163376,Natural Selection (2016),Drama +163378,Say One for Me (1959),(no genres listed) +163380,Dr. Cook's Garden (1971),Drama|Thriller +163382,My New Partner II (1990),Action|Comedy +163384,Ripoux 3 (2003),Comedy +163386,Winnie the Pooh and the Day of Concern (1972),Animation +163388,The Mouse Comes to Dinner (1945),Animation|Comedy +163390,Chasing Great (2016),Documentary +163392,Nahid (2016),Drama +163396,The Vanishing Prairie (1954),Documentary +163398,"Joshua Tree, 1951: A Portrait of James Dean (2012)",(no genres listed) +163400,White Wilderness (1958),(no genres listed) +163402,Travolto Dagli Affetti Familiari (1978),(no genres listed) +163404,The Curse of the Green Eyes (1964),Horror +163408,Martin's Day (1985),(no genres listed) +163410,Mr. Patman (1981),(no genres listed) +163412,Gabi on the Roof in July (2010),Comedy +163414,The Baltimore Bullet (1980),Comedy|Crime|Drama +163418,The Man from Galveston (1963),(no genres listed) +163420,Iyer the Great (1990),Mystery +163422,Maheshinte Prathikaaram (2016),Comedy|Drama +163424,The Three Must-Get-Theres (1922),(no genres listed) +163426,Jeff Foxworthy & Larry the Cable Guy: We've Been Thinking (2016),Comedy +163428,Tirano Banderas (1993),Drama +163430,A Simple Story (1991),Drama +163432,Open Doors (1990),Drama +163436,L'oeuvre au noir (1988),Drama +163438,Il caso Moro (1986),Drama +163440,Letters from Marusia (1976),Drama +163444,Wind from the East (1970),Drama +163446,Under The Sign Of Scorpio (1969),Drama +163448,I sette Fratelli Cervi (1968),(no genres listed) +163450,We Still Kill the Old Way (1967),Crime|Mystery|Thriller +163452,A Man for Burning (1962),Drama +163454,Himmatwala (2013),(no genres listed) +163456,Tees Maar Khan (2010),Action|Comedy +163458,Rascals (2011),Comedy +163460,God Tussi Great Ho (2008),Comedy +163462,Khiladi 786 (2012),Action|Comedy +163464,Demon (2015),Horror|Thriller +163466,Housefull (2010),Comedy|Drama|Romance +163468,Maz Jobrani: I'm Not a Terrorist But I've Played One on TV (2015),Comedy +163470,Murder 2 (2011),Action|Crime|Drama +163472,Murder 3 (2013),Thriller +163474,The Ardennes (2015),Crime|Drama +163476,Batman Unlimited: Mech vs. Mutants (2016),Animation +163478,Birdemic 2: The Resurrection (2013),Action|Comedy|Horror|Sci-Fi +163480,The Search (2014),Drama +163482,Haunted Changi (2010),(no genres listed) +163484,The Vaughn Sister (2010),Comedy|Drama +163486,Akkare Akkare Akkare (1990),Comedy +163488,Yodha (1992),Action|Comedy +163490,Once Again (2016),(no genres listed) +163492,Black Road (2015),Sci-Fi|Thriller +163494,Bachelors (2015),Comedy +163496,The Tunnel (2016),Drama +163498,Polikushka (1922),(no genres listed) +163502,Just Call Me Nobody (2010),Comedy +163504,Little Sister (2016),Comedy +163506,Mourning Rock (2000),(no genres listed) +163508,Certain Women (2016),Drama +163510,The Happiest Day in the Life of Olli Mäki (2016),Drama +163512,Aquarius (2016),Drama +163514,Chasing the Devil (2014),Horror +163517,The Home Teachers (2004),Comedy +163519,Mouse in Manhattan (1945),Animation|Comedy +163521,Comedy Central Roast of Denis Leary (2003),Comedy +163523,Comedy Central Roast of Jeff Foxworthy (2005),Comedy +163525,Comedy Central Roast of Larry the Cable Guy (2009),Comedy +163527,Comedy Central Roast of David Hasselhoff (2010),Comedy +163529,Comedy Central Roast of Roseanne (2012),Comedy +163531,Comedy Central Roast of Joan Rivers (2009),Comedy +163533,I'll Sleep When I'm Dead (2016),Documentary +163535,Terra Nova (2008),Action|Drama|Thriller +163537,Miesten välisiä keskusteluja (2013),(no genres listed) +163539,Before the Winter Chill (2013),Drama +163541,Guernica (2016),Drama|Romance|War +163543,The Legend of Nigger Charley (1972),Action|Crime|Western +163545,Dark August (1976),Horror|Mystery +163547,Equity (2016),Drama +163549,Argentino QL (2016),Comedy +163551,Cruel Will (2013),Horror|Thriller +163553,Cash Only (2015),Crime|Drama|Thriller +163555,Ingrid Bergman in Her Own Words (2015),Documentary +163557,Jack (2014),Drama +163559,Two Wrongs (2015),Thriller +163561,Amityville Terror (2016),Horror +163563,Can We Take a Joke? (2015),Documentary +163565,The Jungle (2013),Thriller +163567,MamaBoy,(no genres listed) +163569,Virtual Revolution (2016),Sci-Fi +163571,Landmine Goes Click (2015),Action|Crime|Drama|Thriller +163573,Bigfoot: The Lost Coast Tapes (2012),Horror|Mystery|Thriller +163576,Pablo Escobar: King of Cocaine (1998),Documentary +163583,jazzy@32 (a true story) (2016),(no genres listed) +163585,David Lynch: The Art Life (2016),(no genres listed) +163587,Waffle Street (2015),Comedy|Drama +163589,Who's Driving Doug (2016),Drama +163591,Rainbow (2015),(no genres listed) +163593,Where the Road Runs Out (2014),Children|Drama|Romance +163595,Coming to Terms (2013),(no genres listed) +163597,No Letting Go (2016),(no genres listed) +163599,The Work and the Glory (2004),Drama|Romance +163601,The Work and the Glory II: American Zion (2005),Drama +163603,The Work and the Glory III: A House Divided (2006),Drama +163605,"The Book of Mormon Movie, Volume 1: The Journey (2003)",(no genres listed) +163607,Caffeinated (2015),(no genres listed) +163609,The Greater Good (2011),Documentary|Drama +163611,Erebus: Operation Overdue (2014),Documentary +163613,The Milky Way (2014),(no genres listed) +163615,Citizen Soldier (2016),Action|Documentary +163617,The Phone Call (2013),Drama +163619,The Mini-Skirt Mob (1968),Action|Thriller +163621,Hell's Belles (1969),Action|Drama +163623,The Cycle Savages (1969),Action|Drama +163625,The One (2011),Comedy|Drama|Romance +163627,Channel 13 (1987),Horror +163629,Been Down So Long It Looks Like Up To Me (1971),Drama +163631,Last Summer (2013),Drama|Romance +163633,Buried Alive (2007),Action|Adventure|Horror|Thriller +163635,Coaching Colburn (2015),Documentary +163637,L'assedio dell'Alcazar (1940),(no genres listed) +163639,DC Super Hero Girls: Hero of the Year (2016),Animation +163641,Invoked (2015),Horror|Mystery|Thriller +163643,Resurrection (2016),Horror +163645,Hacksaw Ridge (2016),Drama|War +163647,Archivo 253 (2015),Horror +163649,Fairlane Road (2016),Horror|Mystery|Thriller +163651,Night of the Wild (2015),Horror|Thriller +163653,David Cross: Making America Great Again (2016),Comedy +163655,Espace détente (2005),Comedy +163659,Paanch (2003),(no genres listed) +163661,Rat Fever (2012),Drama +163663,Other People (2016),Drama +163665,The First Annual 'On Cinema' Oscar Special (2013),Comedy +163667,Travis (2004),(no genres listed) +163669,Out of My Hand (2015),Drama +163671,The Crazy Family (1984),Comedy|Drama +163673,School in the Crosshairs (1981),Fantasy|Sci-Fi +163675,Kill (2008),(no genres listed) +163677,Ode (1999),(no genres listed) +163679,People of a Feather (2012),Documentary +163681,Mostly Ghostly 3: One Night in Doom House (2016),Children|Fantasy|Horror +163683,Getulio (2014),Drama +163685,The Star of Bethlehem (2007),Documentary +163687,The Black Test Car (1962),Action|Drama|Thriller +163689,Tropicália (2012),Documentary +163691,City 40 (2016),Documentary +163693,"Detective Bureau 2-3: Go to Hell, Bastards! (1963)",Action +163695,The King of Pigs (2011),Animation +163697,Siccîn (2014),Horror +163699,Fall of Ming (2013),Drama +163701,Siccin 3: Cürmü Ask (2016),Horror +163703,Sabit Kanca 2 (2014),Comedy +163705,Sabit kanca (2013),Comedy +163707,Musallat 2: Lanet (2011),Horror +163709,Kanal-i-zasyon (2009),(no genres listed) +163711,Haunted (2007),Crime|Horror|Thriller +163713,Rampage: Capital Punishment (2014),Action|Crime|Thriller +163715,Rampage: President Down (2016),Action|Crime|Thriller +163717,It Doesn't Hurt Me (2006),Drama|Romance +163719,Me Too (2012),Drama +163721,On Friday at Eleven (1961),Action|Crime|Mystery +163723,Time of Indifference (1964),Drama +163725,A Man Named John (1965),Drama +163731,Dirty Hands (1975),Crime|Thriller +163733,Breakthrough (1979),Drama +163739,The Magic Mountain (1982),Drama +163741,That Summer of White Roses (1989),(no genres listed) +163745,The Kid (1997),Action|Children|Drama +163747,Animals with the Tollkeeper (1998),Fantasy|Romance +163749,Legacy (1998),Action|Thriller +163751,Shiloh 2: Shiloh Season (1999),Children|Drama +163755,The Last Producer (2000),Drama +163757,Final Flesh (2009),Drama|Horror +163759,Gringuito (1998),Drama +163761,John Henry (2000),Animation|Children|Drama +163763,Lorenzo (2004),Animation|Children|Comedy +163765,How to Hook Up Your Home Theater (2007),Animation|Comedy +163767,Tick Tock Tale (2010),Animation +163769,Our Tropical Island (2001),Comedy +163771,For the Love of Spock (2016),Documentary +163773,Los Punks: We Are All We Have (2016),Documentary +163775,Toro (2016),Action|Thriller +163777,Light Years (2015),Drama +163779,"Kiki, Love to Love (2016)",Comedy|Romance +163781,Hail the Judge (1994),Comedy +163783,Summer of 8 (2016),Comedy|Drama +163785,Show Business (1944),Comedy|Romance +163787,All Men Are Brothers (1975),Action|Adventure|Drama +163789,Bogart: The Untold Story (1997),Documentary +163791,Captain Hurricane (1935),Comedy|Drama|Romance +163793,Captain Calamity (1936),Action|Adventure +163795,Chasing Yesterday (1938),(no genres listed) +163797,"Hello, Sister! (1933)",Drama|Romance +163799,Salam Neighbor (2015),Documentary +163801,Lovely Man (2011),Drama +163803,Adventures in the Sin Bin (2012),Comedy +163805,My Lonely Me (2015),Drama +163807,The Most Beautiful Day (2016),Comedy|Drama +163809,Over the Garden Wall (2013),Adventure|Animation|Drama +163811,Doc Martin and the Legend of the Cloutie (2003),Comedy|Drama +163813,Going Down in Morocco (1989),Comedy +163815,Diablo (2011),Comedy|Thriller +163817,The Vanished Elephant (2014),Mystery|Thriller +163819,El Paso (1949),Western +163821,Footsteps in the Dark (1941),Comedy|Mystery +163823,The Perfect Specimen (1937),Comedy|Romance +163825,In the Wake of the Bounty (1933),Action|Drama +163829,King's Rhapsody (1955),Drama|Romance +163835,Istanbul (1957),Adventure|Crime|Drama +163837,"Too Much, Too Soon (1958)",Drama +163839,Cuban Rebel Girls (1959),(no genres listed) +163841,Fort Defiance (1951),Action|Western +163843,Francis: Pray for Me (2015),Drama +163845,Girl Missing (2015),Mystery +163847,Girl Missing (1933),Comedy|Crime|Mystery +163849,The Battle (1934),Romance|War +163851,The Devil's Party (1938),Crime|Drama +163853,Heroes Two (1974),Action +163855,"Hips, Hips, Hooray! (1934)",Comedy +163857,His Greatest Gamble (1934),Drama|Romance +163859,Invincible Enforcer (1979),Action +163861,"Joe Smith, American (1942)",Crime|Thriller +163863,Nazi Agent (1942),Thriller +163865,One Crowded Night (1940),Drama +163867,Problem Girls (1953),Drama|Mystery +163871,Scared Stiff (1945),Comedy|Horror|Mystery +163873,Scared Stiff (1987),Horror +163875,Shaolin Abbot (1979),Action +163879,Straight Is the Way (1934),(no genres listed) +163881,Losing the North (2015),Comedy +163883,Take Me to the River (2014),Documentary +163885,Tammy Tell Me True (1961),Comedy|Romance +163887,The Good Humor Man (1950),Adventure|Comedy|Crime +163891,The Lady Consents (1936),Drama +163893,The Scarf (1951),Drama|Mystery|Thriller +163895,The Steel Lady (1953),Action|Drama +163897,Weekend for Three (1941),Comedy +163901,Yellow Canary (1943),Drama|Thriller|War +163903,The Lady in Question (1999),Crime|Mystery|Thriller +163905,Love me! (2014),Comedy|Drama +163907,Fighting Delinquents (1960),(no genres listed) +163909,Divines (2016),Drama +163911,USS Indianapolis: Men of Courage (2016),Action|War +163913,Devil's Bride (2016),Drama +163915,The Raffle (1991),Drama +163917,São Jorge (2016),(no genres listed) +163921,Wolf Creek (2016),Crime|Horror|Thriller +163923,Jules and Dolores (2016),Comedy +163925,"Wings, Legs and Tails (1986)",Animation|Comedy +163927,Marathon (2002),Drama +163929,By Hook or by Crook (2001),Crime|Drama|Romance +163931,Billy Lynn's Long Halftime Walk (2016),Drama|War +163933,Bury Me an Angel (1972),Action|Drama +163935,Born in Heinola (2016),Drama +163937,Blair Witch (2016),Horror|Thriller +163939,Transpecos (2016),Thriller +163941,The Hollars (2016),Children|Comedy|Drama +163943,Olmo and the Seagull (2014),Documentary|Drama +163945,The Mysterious Death of Pérola (2014),Drama|Horror|Mystery|Thriller +163947,Anton Corbijn Inside Out (2012),Documentary +163949,The Beatles: Eight Days a Week - The Touring Years (2016),Documentary +163951,Kickboxer: Vengeance (2016),Action|Drama +163953,Naked (2014),Documentary +163955,The Promise (2016),Drama|Romance +163957,Voice Without a Shadow (1958),Mystery +163959,Loving (2016),Drama +163961,After the Apocalypse (2004),Drama|Sci-Fi +163963,The Second Annual 'On Cinema' Oscar Special (2014),Comedy +163965,Miss Stevens (2016),Comedy +163967,The Erotic Misadventures of the Invisible Man (2003),(no genres listed) +163969,Broken Hill (2009),Children|Drama +163971,Christine (2016),Drama +163973,J.C. (1972),Action|Adventure|Drama +163975,Wholly Communion (1965),(no genres listed) +163977,The End of Time (2012),(no genres listed) +163979,Silicon Cowboys (2016),Documentary +163981,31 (2016),Horror +163983,Comedy Central Roast of Rob Lowe (2016),Comedy +163985,ARQ (2016),Sci-Fi|Thriller +163987,Fan Girl (2015),Children|Comedy +163989,Prescription Thugs (2016),Documentary +163991,What Remains (2005),Documentary +163993,Tell Me How I Die (2016),(no genres listed) +163995,The Adventures of Scamper the Penguin (1986),Animation|Children +163997,Eveready Harton in Buried Treasure (1929),Animation +163999,The House of Ghosts (1908),Horror +164001,Warkop DKI Reborn: Jangkrik Boss! (2016),Comedy +164003,Swamp Devil (2008),Horror|Sci-Fi +164005,Bad Cat (2016),Action|Animation|Comedy +164007,More Things That Happened (2007),Drama|Mystery +164009,Stolen Desire (1958),Comedy +164011,Ten Thousand Talents (1960),(no genres listed) +164013,Herostratus (1967),Drama +164015,The Impossible Convicts (1906),Comedy|Crime +164017,The Fall of the House of Usher (1928),Horror +164019,Fire at Sea (2016),Documentary +164021,Nightlife (2015),Drama +164023,Life Is a Trumpet (2015),Comedy|Drama +164025,Burn Burn Burn (2015),(no genres listed) +164027,Finding Altamira (2016),Drama +164029,Broken Vows (2016),Thriller +164031,8 (2010),War +164033,20th Century Boys - Chapter 2: The Last Hope (2009),Adventure|Mystery|Sci-Fi +164035,20th Century Boys - Chapter 3: Our Flag (2009),Adventure|Mystery|Sci-Fi +164037,The Candy Tangerine Man (1975),Action|Drama +164039,Return of the Atom (2015),Documentary +164041,The Piano Tuner (2011),Drama|Thriller +164043,Desculpe o Transtorno (2016),Comedy +164045,Daisy-Head Mayzie (1995),(no genres listed) +164047,Horton Hears a Who! (1970),Animation|Children +164049,Horton Hatches the Egg (1942),Animation|Comedy +164051,The Space Between,(no genres listed) +164053,Belli di papà (2015),(no genres listed) +164055,Fiore (2016),(no genres listed) +164057,One Kiss (2016),Comedy|Romance +164061,Worldly Girl (2016),Drama|Romance +164063,Antonia (2015),Drama +164065,For Your Sake (2015),Drama +164067,She and I (2015),Comedy|Romance +164069,Assolo (2016),Comedy +164071,The Confessions (2016),Drama +164073,La macchinazione (2016),Drama +164075,The Queen of Ireland (2015),Documentary +164077,Cat Girl (1957),Horror +164079,The Outside Chance of Maximilian Glick (1988),Comedy|Drama +164081,Tell Me (1980),Documentary +164083,Desires (1977),Drama|Fantasy +164085,The Medusa Raft (1980),Drama +164087,Electric angel (1981),(no genres listed) +164089,"Karagoez catalogo 9,5 (1983)",(no genres listed) +164091,Monobloc (2006),(no genres listed) +164093,One Night in A City (2007),Animation|Fantasy|Horror +164095,The Herb of the Rat (2008),Action|Drama|Thriller +164099,Another Trip To The Moon (2015),Drama +164101,Spandex Sapiens (2015),Documentary +164103,Most Likely to Die (2015),Horror +164105,The Automatic Hate (2015),Comedy|Drama +164107,Tower (2016),Crime|Documentary +164109,Manshin: Ten Thousand Spirits (2014),(no genres listed) +164111,From the Land of the Moon (2016),Drama|Romance +164113,Gumball 3000: The Movie (2003),Adventure|Documentary +164115,White People (2015),Thriller +164117,We Need to Talk (2016),Comedy +164119,The House That Vanished (1974),Horror +164121,The Sinful Dwarf (1973),Crime|Horror +164123,Mad Doctor of Blood Island (1969),Adventure|Horror|Sci-Fi +164125,Janie (1970),Horror +164127,Satan's Slave (1976),Horror +164129,Оно (1990),(no genres listed) +164131,Tee for Two (1945),Animation +164133,Savage Killers (aka Tiger & Crane Fists) (1976),(no genres listed) +164135,Bangkok Traffic Love Story (2009),Comedy|Romance +164137,My Girl (2003),Children|Comedy|Romance +164139,Freelance (2015),Comedy|Drama|Romance +164141,I.T. (2016),Drama +164143,Paranormal Entity (2009),Horror|Mystery|Thriller +164145,The Neighbor (2016),Crime|Horror|Thriller +164147,Behind the Planet of the Apes (1998),Documentary|Sci-Fi +164149,Theo and Hugo (2016),Drama +164151,Zero Woman: Red Handcuffs (1974),Action|Crime|Drama|Thriller +164153,Born Equal (2006),Drama +164157,Small Island (2009),Drama|Mystery|Thriller +164159,Default (2014),Mystery +164161,Nina (2016),Drama +164163,Twitches (2005),Children|Comedy|Drama|Fantasy +164165,Three Days (2001),Children +164167,The Curse of Robert the Doll (2016),Horror +164169,The Karamazov Brothers (2008),(no genres listed) +164171,Jeremy (2016),Comedy +164173,Planetarium (2016),Drama|Fantasy|Mystery +164175,A Monster Calls (2016),Drama|Fantasy +164177,Desolate (2013),Drama|Sci-Fi +164179,Arrival (2016),Sci-Fi +164181,Samurai Rauni Reposaarelainen (2016),Adventure +164183,Terminal Invasion (2002),Horror|Sci-Fi|Thriller +164185,Alien Apocalypse (2005),Comedy|Drama|Horror|Sci-Fi|Thriller +164187,Rumbos (2016),(no genres listed) +164189,Traceroute (2016),Comedy|Documentary +164191,The Lost Arcade (2015),Documentary +164194,Blue Crush 2 (2011),Drama|Romance +164196,"I, Olga Hepnarova (2016)",Drama +164198,Really Rosie (1975),Animation|Children|Fantasy +164200,Storks (2016),Animation|Children|Comedy +164202,Journey to the Seventh Planet (1962),Adventure|Fantasy|Horror|Sci-Fi +164204,After the Storm (2016),Children|Drama +164206,The Secret World of Lewis Carroll (2015),Documentary +164208,In the Shadow of Death (1971),Adventure|Drama +164210,Zarkorr! The Invader (1996),Sci-Fi +164214,Devil's Playground (2010),Action|Horror +164216,Deafula (1975),Horror +164218,Hurok (2016),Thriller +164220,The House of Suh (2010),Crime|Documentary +164222,I am not Salvador (2016),Comedy +164224,Kalashnikov (2014),(no genres listed) +164226,Maximum Ride (2016),Action|Adventure|Comedy|Fantasy|Sci-Fi|Thriller +164228,Radin ! (2016),Comedy +164230,Money Play$ (1998),Action|Drama|Thriller +164232,Auschwitz (2011),Drama +164234,Wolvesbayne (2009),Fantasy|Horror +164236,Sieranevada (2016),Drama +164238,Dogs (2016),Drama +164240,Poongsan (2011),Action|Drama|Romance +164242,Party Crashers (2012),Comedy +164244,De Pernas Pro Ar 2 (2012),Comedy|Romance +164246,Aux yeux de tous (2012),Drama|Thriller +164248,Reis e Ratos (2012),(no genres listed) +164250,Bellini e o Demônio (2008),(no genres listed) +164252,Boats Out of Watermelon Rinds (2004),(no genres listed) +164254,The Big I Am (2010),Crime|Drama|Thriller +164256,VIPs (2011),Drama +164258,Reflections of a Blender (2010),Comedy|Drama +164260,Horace and Pete (2016),Comedy|Drama +164262,The Man from Mo'Wax (2016),Documentary +164264,Audrie & Daisy (2016),Documentary +164266,The Disciple (2013),Drama|Thriller +164268,Iliza Shlesinger: Confirmed Kills (2016),Comedy +164270,Back in Crime (2013),Crime|Fantasy +164272,Kenau (2014),Action|Adventure +164274,Pastorela (2011),Comedy|Fantasy +164276,There's Only One Jimmy Grimble (2000),Comedy +164278,Going Attractions: The Definitive Story of the American Drive-in Movie (2013),Children|Documentary +164280,Endless Poetry (2016),Drama|Fantasy +164282,Love & Peace (2015),Comedy|Drama|Fantasy +164284,Alemão (2014),Action|Drama +164286,Roles in the Wind (2015),Comedy|Drama +164288,Seventh Code (2013),Mystery|Thriller +164292,Claude Chabrol's High Heels (1972),Comedy +164296,Welcome to Arrow Beach (1974),Horror +164298,Frank and Cindy (2015),Comedy|Drama +164300,Free Fall (2014),Drama +164302,Secret Chronicle: She Beast Market (1974),(no genres listed) +164304,Homeless in America (2004),(no genres listed) +164306,The House That Drips Blood on Alex (2010),(no genres listed) +164308,Karaoke Terror (2003),Drama|Horror +164310,Primal Force (1999),Adventure|Sci-Fi +164312,Battle Taxi (1955),(no genres listed) +164314,Catch Me If You Can (1989),Action|Comedy|Drama +164316,Dead Connection (1994),Drama|Thriller +164318,Heroes Shed No Tears (1980),Action +164320,Jamaica Inn (1983),Drama|Thriller +164322,Secret World (1969),Drama +164324,Peace Code (2014),Action|Adventure|Crime +164326,La promesa (2004),Horror|Thriller +164328,Larva (2005),Horror +164330,Mary Pickford: The Muse of the Movies (2008),(no genres listed) +164332,Wicked Minds (2003),(no genres listed) +164336,Bone Daddy (1998),Horror +164338,Final Draft (2007),Horror|Thriller +164340,Paranoia (1998),Drama|Thriller +164342,Paranoia (1967),Drama +164344,Sidewalk Stories (1989),Comedy +164348,The Brain Eaters (1958),Horror|Sci-Fi +164350,The Cuban Love Song (1931),Romance +164352,The Flesh Eaters (1964),Horror|Sci-Fi +164354,The Green Glove (1952),Mystery|Romance|Thriller +164356,Loose Shoes (1980),Comedy +164358,The Law and the Lady (1951),Comedy +164363,Night of the Strangler (1972),Crime|Drama|Thriller +164365,Level Up (2016),Thriller +164367,The Girl with All the Gifts (2016),Drama|Horror|Sci-Fi|Thriller +164369,The Distinguished Citizen (2016),Comedy|Drama +164371,The Hexer (2001),Adventure|Fantasy|Sci-Fi +164373,Abattoir (2016),Horror|Thriller +164375,All Roads Lead to Rome (2016),Comedy +164377,Inside or Outside (2016),Crime +164379,Bounty Hunters (2016),Action|Adventure|Comedy +164381,Tik Tok (2016),Action|Crime|Mystery +164383,In The Dark Half (2012),(no genres listed) +164387,Maigret Sets A Trap (2016),Crime|Drama|Mystery +164389,Minority Opinion (2015),Crime|Drama +164391,The Bodyguard (2016),Action +164393,Chasing (2016),Action|Comedy +164395,I Am a Hero (2016),Action|Fantasy|Horror|Sci-Fi +164397,Railroad Tigers (2016),Action|Comedy|War +164399,Asura: The City of Madness (2016),Action|Crime +164401,Zebra (2016),Thriller +164403,Erased (2016),Fantasy|Thriller +164405,Call of Heroes (2016),Action +164407,Line Walker (2016),Action|Crime|Drama +164409,The Three Body (2016),Mystery|Sci-Fi|Thriller +164411,My Life as a Courgette (2016),Animation|Children|Drama +164413,Musudan (2016),Mystery|Thriller +164415,Insane (2016),Mystery|Thriller +164417,Insanity (2014),Mystery|Thriller +164421,Everybody's Fine (2016),Drama +164423,Raiders of the Sun (1992),Action|Adventure|Sci-Fi +164425,Circus World (1964),Drama|Western +164427,"No Drums, No Bugles (1972)",Drama +164431,Colors of Passion (2014),Drama +164433,Mortem (2012),(no genres listed) +164435,Marquis de Sade: Justine (1969),Drama|Horror +164437,Ashley (2013),Drama +164439,Zézero (1974),(no genres listed) +164441,In-Lawfully Yours (2016),Romance +164443,Freaky Ali (2016),Comedy|Romance +164445,Occupied - Die Besatzung (2015),(no genres listed) +164447,Pilot Pirx's Inquest (1979),Drama|Sci-Fi +164449,Teens in the Universe (1975),Adventure|Children|Comedy|Sci-Fi +164451,Murder: No Apparent Motive (1984),Documentary +164453,Failure of Engineer Garin (1973),Adventure|Drama|Sci-Fi|Thriller +164455,Tschick (2016),Children +164461,Visa to Canton (1961),Adventure +164463,The Savage Guns (1962),(no genres listed) +164467,Deadly Strangers (1976),Thriller +164469,All Coppers Are... (1972),(no genres listed) +164471,Revenge (1971),Crime|Drama|Thriller +164473,Assault (1970),Crime|Drama|Horror|Mystery +164477,Finders Keepers (1966),Comedy +164481,The Trap (1966),Adventure|Drama|Romance +164483,This Is My Street (1964),Drama +164485,Payroll (1961),Crime|Drama +164493,The Clone Returns Home (2008),Drama|Sci-Fi +164495,True Friends (1954),Adventure|Comedy +164497,Dangerous Tour (1969),Action +164499,Watch Your Left (1936),Comedy +164501,Joan Baez: How Sweet the Sound (2009),(no genres listed) +164503,Public Works (2015),Drama +164505,Sioux City (1994),Drama|Thriller +164507,A Country Called Home (2015),Drama +164509,The Melancholy Fantastic (2011),Drama|Fantasy|Horror|Romance|Thriller +164511,Delhi in a Day (2012),Comedy|Drama +164513,Sneakerheadz (2015),Documentary +164515,Redistributors (2016),Thriller +164518,Red Family (2013),Drama +164520,Dangerously Excited (2011),Drama +164522,Flying Boys (2004),Drama +164524,You Are My Sunshine (2005),(no genres listed) +164526,Playboy Bong (2013),(no genres listed) +164528,A Brand New Life (2009),Drama +164530,Neal Cassady (2007),(no genres listed) +164532,Crossing Point (2016),Action|Thriller +164534,The Night Stalker (2016),Crime|Drama +164536,After Midnight (2014),Mystery +164538,Lost in Munich (2015),Comedy|Documentary|Drama +164540,Amanda Knox (2016),Documentary +164542,Brotherly Love (2015),Drama +164544,Imperial Dreams (2014),(no genres listed) +164546,All Eyez on Me (2016),Drama +164548,Promise at Dawn (1970),Drama +164550,You & Me Forever (2012),Drama +164552,Rebounce (2011),Drama +164554,All the Difference (2016),(no genres listed) +164556,I'm a Standard Supporter (2013),Comedy +164564,La scelta (2015),Drama +164566,Cemento Armato (2007),Thriller +164568,Interrogation (2016),Action|Thriller +164572,Take Me to Town (1953),(no genres listed) +164574,The Hour Before the Dawn (1944),(no genres listed) +164576,Time Raiders (2016),Action|Adventure|Fantasy +164578,White Vengeance (2011),Action|Drama +164580,Star Runner (2003),Action|Thriller +164582,Moonlight Express (1999),Crime|Drama|Romance +164584,The Debt (2015),Drama|Mystery|Thriller +164586,El pregón (2016),Comedy +164588,My Name Is Emily (2015),Drama +164590,Duell der Brüder - Die Geschichte von Adidas und Puma (2016),Drama +164592,El pejesapo,(no genres listed) +164594,The Seahorse (1934),(no genres listed) +164596,Voyage to the Sky (1937),(no genres listed) +164598,Gringo: The Dangerous Life of John McAfee (2016),Documentary|Drama +164600,Akira (2016),Action|Crime|Thriller +164602,No manches Frida (2016),(no genres listed) +164604,Kicks (2016),Adventure +164606,Operation Avalanche (2016),Thriller +164608,The Third Annual 'On Cinema' Oscar Special (2015),Comedy +164610,States of Grace (2005),(no genres listed) +164612,Destroyer (1988),Horror|Thriller +164614,Betty Boop's Big Boss (1933),Animation|Comedy +164616,Body Melt (1993),Comedy|Horror +164618,Enchanted April (1935),Comedy|Drama|Romance +164620,Zig Zag Story (1983),Comedy|Drama +164622,Killswitch (2015),Documentary +164624,The Girl from Flanders (1956),(no genres listed) +164627,The Twist (1976),(no genres listed) +164629,Parallel Courses (2016),Drama +164631,Betty Boop's Museum (1932),Animation|Comedy +164633,Betty Boop's Penthouse (1933),Animation|Comedy +164635,Bleed (2016),Horror|Thriller +164637,Nothing So Strange (2002),(no genres listed) +164639,The Duelist (2016),(no genres listed) +164641,The Burgos Trial (1979),Documentary +164643,A Bride for Rip Van Winkle (2016),Drama +164645,Father’s Chair (2013),Drama +164647,Dirty 30 (2016),Comedy|Romance +164649,The Fury of a Patient Man (2016),Crime +164651,The Nightingale (2014),Drama +164653,Farewell Baghdad (2014),Drama +164655,Gimme Danger (2016),Documentary +164657,Tectonic Plate (2016),(no genres listed) +164659,The Girl Without Hands (2016),Animation +164661,The Magnitsky Act. - Behind the Scenes (2016),(no genres listed) +164663,Murderous Tales (2016),Animation +164667,Office (2015),Thriller +164669,Rag Union (2015),Comedy|Drama +164671,Savages (1974),Thriller +164673,The Swedish Theory of Love (2016),Documentary +164675,A Crush on You (2011),(no genres listed) +164677,Víkend (2015),Thriller +164679,Gondolj rám (2016),Comedy|Drama +164681,"My Night, Your Day (2015)",Comedy|Crime +164683,The Wednesday Child (2015),Drama +164685,Sometimes Aunt Martha Does Dreadful Things (1971),Horror +164687,Muhammad Ali - The Greatest (1969),Documentary +164689,Flowers of Evil (2016),Crime|Drama +164691,The Last Band in Lebanon (2016),(no genres listed) +164693,Lo Sound Desert,Documentary +164695,Capsule (2015),Drama|Sci-Fi|Thriller +164697,The Dwarvenaut (2016),Documentary +164699,Man vs. Snake (2014),Documentary +164701,The Golden Cane Warrior (2014),Action|Drama +164703,Justice: A Cross The Universe (2008),Documentary +164705,Set the Thames on Fire,(no genres listed) +164707,Go Figure (2005),Children|Comedy|Drama +164709,The Spirit of Christmas (2015),(no genres listed) +164711,Cloudy With a Chance of Love (2015),Romance +164713,The Flight Before Christmas (2015),(no genres listed) +164715,Second Chances (2013),Drama +164717,"Signed, Sealed, Delivered: Truth Be Told (2015)",Drama +164719,"Signed, Sealed, Delivered: The Impossible Dream (2015)",Drama|Romance +164721,"Signed, Sealed, Delivered: From Paris With Love (2015)",Children +164723,Murder She Baked: A Deadly Recipe (2016),Mystery +164725,The Cheetah Girls 2 (2006),Children|Comedy|Drama +164727,Cloud 9 (2014),Action|Drama|Romance +164729,Teen Beach 2 (2015),Comedy +164731,Secret Summer (2016),Children|Romance +164733,"Signed, Sealed, Delivered: From the Heart (2016)",Romance +164735,The Cheetah Girls (2003),Children|Comedy|Drama +164737,Mansfield Park (2007),Drama +164739,The Wizards Return: Alex vs. Alex (2013),Adventure|Comedy|Drama +164741,Ms. Matched (2016),Comedy|Romance +164743,My Summer Prince (2016),(no genres listed) +164745,"Signed, Sealed, Delivered: One in a Million (2016)",(no genres listed) +164747,Jesus Christ Superstar - Live Arena Tour (2012),Children +164749,H2O Just Add Water - The Movie (2011),Adventure|Fantasy +164751,Love Never Dies (2012),Drama|Romance +164753,Anything for Love (2016),Romance +164755,Appetite For Love (2016),Drama|Romance +164757,Perfect Match (2015),Comedy|Romance +164759,Date with Love (2016),Comedy|Romance +164761,The Convenient Groom (2016),Romance +164763,Oklahoma! (1999),Romance|Western +164765,Love Finds You In Sugarcreek (2014),Children|Drama|Mystery +164767,Princess of Thieves (2001),Action|Adventure|Children|Romance +164769,Love Finds You in Charm (2015),Drama +164771,Love Finds You in Valentine (2016),Drama|Romance +164773,Danny Says (2015),Documentary +164775,"Signed, Sealed, Delivered for Christmas (2014)",(no genres listed) +164777,Sense and Sensibility (1981),Drama|Romance +164779,Parent Trap III (1989),Action|Children|Comedy|Drama +164781,The Cookie Mobster (2014),Children +164783,Along Came a Nanny (2014),Mystery +164785,Annie: A Royal Adventure (1995),Children +164787,You Cast A Spell On Me (2015),(no genres listed) +164789,Matchmaker Santa (2012),Comedy|Drama +164791,"Signed, Sealed, Delivered (2013)",Comedy|Drama +164793,Raising the Bar (2016),Children +164795,"Signed, Sealed, Delivered: Lost Without You (2016)",(no genres listed) +164797,Harriet the Spy: Blog Wars (2010),Children|Comedy|Drama +164799,She Made Them Do It (2012),Action|Drama +164801,The Alchemist Cookbook (2016),Drama +164803,Jane Eyre (1983),Drama|Romance +164805,Persuasion (1971),(no genres listed) +164807,Paperback Hero (1999),Comedy|Romance +164809,Two-Legged Horse (2009),Drama +164813,Undercover Bridesmaid (2012),Romance +164815,Twist of Fate (2016),Drama|Romance +164817,Honey 2 (2011),Comedy|Drama +164819,Emma (1972),(no genres listed) +164821,Colossal (2016),Action|Sci-Fi|Thriller +164823,Do Not Resist (2016),Documentary +164825,Drunken Monkey (2002),Action|Adventure|Comedy +164827,Slice (2009),Thriller +164829,Getting Home (2007),Comedy|Drama +164831,Dark (2016),Drama|Horror|Thriller +164833,Tharlo (2015),Drama +164835,"Murder, She Baked: A Peach Cobbler Mystery (2016)",Mystery +164837,A Heartland Christmas (2010),Children +164839,Moondance Alexander (2007),Children|Drama +164841,Flicka: Country Pride (2012),Children|Drama +164843,The Wild Stallion (2009),Action|Adventure|Children|Drama|Western +164845,Of Parents and Children (2008),Comedy|Drama|Romance +164847,Siringo (1995),(no genres listed) +164849,Clearcut (1991),Drama|Thriller|Western +164851,Felicity: An American Girl Adventure (2005),Action|Children|Drama|Thriller +164853,An American Girl: Chrissa Stands Strong (2009),Children|Drama +164855,Samantha: An American Girl Holiday (2004),Children|Drama +164857,Minor Details (2009),Children|Drama|Mystery +164859,Escape to Witch Mountain (1995),Adventure|Children|Fantasy +164861,Isabelle Dances Into the Spotlight (2014),Children|Drama +164863,Molly: An American Girl on the Home Front (2006),Children|Drama +164865,Beyond Witch Mountain (1982),(no genres listed) +164867,Au Pair 3: Adventure in Paradise (2009),Children +164869,A Cinderella Story: If the Shoe Fits (2016),Comedy +164871,Lover of Loser (2009),Children|Drama +164873,Little Crumb (1999),Drama +164875,De hel van '63 (2009),Drama +164877,Crash and Burn (1990),Sci-Fi|Thriller +164879,Diggers (2016),Horror +164881,Night Guards (2016),Action|Sci-Fi +164887,The Bunnyman Resurrection (2014),Horror +164889,Ich bin dann mal weg (2015),Comedy|Drama +164893,City of God – 10 Years Later (2013),Documentary +164895,You Are Umasou (2010),Adventure|Animation|Children +164897,Veranda för en tenor (1998),Drama +164899,Blue Jay (2016),Drama +164901,Heavenly Shift (2013),Comedy|Drama +164903,Interruption (2015),Drama +164905,Voyage of Time: Life's Journey (2016),Documentary|Drama +164907,A Star for Christmas (2012),Comedy|Drama|Romance +164909,La La Land (2016),Comedy|Drama|Romance +164911,Exorcism (1975),Horror +164913,American Mystery! Coyote Waits (2003),Drama|Mystery|Thriller +164915,A Thief Of Time (2004),Mystery +164917,13th (2016),Documentary +164919,Umbkotid (2012),Comedy +164921,Validation (2007),Comedy|Romance +164923,Flirty Birdy (1945),Animation +164927,Where Souls Go (2007),(no genres listed) +164929,Air Mater (2011),Animation|Children +164931,The Siege of Jadotville (2016),Drama|Thriller +164933,Collector (2016),Drama|Thriller +164935,Being 17 (2016),Drama +164937,Love Is Blind (2013),Drama|Romance +164939,Vincent N Roxxy (2016),Crime|Drama|Thriller +164941,The Present (2014),Animation|Comedy +164943,Road to Yesterday (2015),Drama|Romance +164945,Brother Nature (2016),Comedy +164947,Clean Hands (2015),Crime|Drama|Thriller +164949,The Salesman (2016),Drama +164951,Demons (2012),Drama +164953,Pale Moon (2014),Crime|Drama +164955,Adopt a Sailor (2008),Comedy|Drama|Romance +164957,Barbie in Rock 'N Royals (2015),Animation|Children +164959,Barbie: Spy Squad (2016),Action|Animation|Children +164961,Kick the Moon (2001),Comedy|Drama +164963,The Waiting List (2000),Comedy|Drama|Romance +164965,Chasing Freedom (2004),Drama +164967,How to Make a Monster (1958),Horror|Sci-Fi +164969,Jungle Captive (1945),Horror +164971,Two Lottery Tickets (2016),Comedy +164973,Love Building (2013),Comedy|Drama +164975,After the Promise (1987),(no genres listed) +164977,The Gay Desperado (1936),Comedy +164981,Allied (2016),Action|Drama|Romance|Thriller|War +164983,The Monster (2016),Horror +164985,Skateboard (1978),Action|Comedy +164987,Drei Mann in einem Boot (1961),Comedy +164989,Angora Love (1929),Comedy +164991,Apache War Smoke (1952),Western +164993,The Blood Oranges (1998),Drama|Romance +164997,Dr. Renault's Secret (1942),Horror|Mystery|Thriller +164999,Buried Alive (1939),Crime|Drama|Romance +165001,Burn 'Em Up O'Connor (1939),Action|Adventure +165003,Chicken People (2016),Documentary +165005,By the Sea (1982),Comedy|Romance +165007,Dance Charlie Dance (1937),Comedy +165009,Day the World Ended (1955),Horror|Sci-Fi +165011,Find the Blackmailer (1943),Crime|Drama|Mystery +165013,Frankenstein Meets the Spacemonster (1965),Horror|Sci-Fi +165015,Mr. Right (2009),Comedy|Drama|Romance +165017,Paid in Full (1950),Drama +165019,Piccadilly Incident (1946),Drama|War +165021,Risen (2010),Drama +165023,Phantasm: Ravager (2016),Fantasy|Horror +165025,Something Beneath (2007),Horror|Sci-Fi +165027,Something to Sing About (2000),Drama +165029,Teenage Cave Man (1958),Adventure|Sci-Fi +165031,The Big Wheel (1949),Action|Comedy|Drama +165033,The Dog Who Saved Halloween (2011),Comedy +165035,The Grace Card (2011),Drama +165037,The Monte Carlo Story (1956),Comedy|Drama +165039,The Zombie Diaries (2006),Action|Horror|Thriller +165041,The Zombie Diaries 2 (2011),Action|Horror +165045,Wise Girl (1937),Comedy +165047,You Can't Escape Forever (1942),Thriller +165049,Autumn in the Vineyard (2016),Romance +165051,Falsely Accused (2016),Crime|Mystery|Thriller +165053,Who Gets the Dog? (2016),Comedy|Romance +165055,The Truck Farmer (1954),Documentary +165057,Seneca's Day (2016),Drama +165059,Charles Darwin and the Tree of Life (2009),Documentary +165061,The Sidelong Glances of a Pigeon Kicker (1970),Comedy +165063,Funeral March (2001),(no genres listed) +165065,Outcast (2010),Fantasy|Horror|Sci-Fi +165067,Woman of Tokyo (1933),Drama +165069,Baseball (1994),Documentary +165071,Baked in Brooklyn (2016),Comedy +165073,Nacida para ganar (2016),Comedy +165075,London Town (2016),Drama +165077,London in the Raw (1965),Documentary +165079,Primitive London (1965),Documentary +165081,The Hide (2008),Horror|Thriller +165083,Scaramouche (1923),Drama|Romance +165085,Batman: Return of the Caped Crusaders (2016),Action|Animation|Comedy +165087,Brimstone (2016),Mystery|Thriller|Western +165089,Dugma: The Button,(no genres listed) +165091,Wicked Stepmother (1989),Comedy|Fantasy|Horror|Sci-Fi +165093,Perfect Strangers (1984),Thriller +165095,Special Effects (1984),Drama|Horror|Thriller +165097,Murder in a Small Town (1999),(no genres listed) +165099,The Devil's Express (1976),Horror +165101,Inferno (2016),Mystery|Thriller +165103,Keeping Up with the Joneses (2016),Comedy +165105,Ouija: Origin of Evil (2016),Horror|Thriller +165107,Sector 4: Extraction (2014),Action|War +165109,Titus Andronicus (1985),Drama +165111,Nome Próprio (2008),Drama +165113,Stray Dog (2007),(no genres listed) +165115,My Blind Brother (2016),Comedy|Drama|Romance +165117,Louis Theroux: Savile (2016),Documentary +165119,Mascots (2016),Comedy +165121,Faintheart (2008),Comedy +165123,Crisis in Six Scenes (2016),Comedy +165125,Patient Seven (2016),Horror +165127,The White King (2016),Drama|Sci-Fi +165129,What a Wonderful Family! (2016),Children|Drama +165131,The Park Bench (2015),Comedy|Romance +165133,Best Chef (2007),Comedy|Drama +165137,Casi Divas (2008),Comedy +165139,Wild Oats (2016),Comedy +165141,Trolls (2016),Adventure|Animation|Children +165143,Silver Skies (2016),Comedy +165145,Sky Ladder: The Art of Cai Guo-Qiang (2016),Documentary +165147,45365 (2010),Documentary +165149,Western (2015),Documentary|Western +165151,Nightmare Sisters (1988),Comedy|Horror +165153,LEGO DC Comics Super Heroes: Batman: Be-Leaguered (2014),Action|Adventure|Animation|Children +165155,Russell Peters: Almost Famous (2016),Comedy +165157,Pedro Páramo (1967),Drama|Fantasy|Horror|Mystery +165159,Breadcrumb Trail (2014),Documentary +165161,Girl in the Box (2016),Drama +165163,Raiders! (2016),Documentary +165165,Finding Truelove (2012),(no genres listed) +165167,Silver Lode (1954),Action|Western +165169,dream/killer (2015),Documentary +165171,The Forgotten (2014),Horror|Thriller +165173,Hidden in the Woods (2014),Thriller +165175,37 (2016),Drama +165177,The Girl and The Echo (1964),Children|Drama +165179,Una (2016),Drama +165181,Obsessed (1992),Drama|Thriller +165183,Island of Blood (1982),(no genres listed) +165185,Slave Girls from Beyond Infinity (1987),Action|Adventure|Sci-Fi +165187,Roller Blade Warriors: Taken by Force (1989),Sci-Fi +165189,Avenging Angel (1985),Action|Thriller +165191,Mad Foxes (1981),Action|Thriller +165193,Tanya's Island (1980),Drama|Fantasy|Romance +165195,Pacific Banana (1981),Comedy +165197,Werewolf in a Women's Prison (2006),(no genres listed) +165199,The Fearless Young Boxer (1979),Action +165201,Snatched (1973),Crime|Drama|Thriller +165203,Passionate (1974),Drama +165205,Run Bitch Run (2009),Horror|Thriller +165207,Silence (2011),Drama|War +165211,The High Frontier (2016),Action|Drama|Thriller +165215,Stalked by My Doctor (2015),Thriller +165217,Stalked by My Doctor: The Return (2016),(no genres listed) +165219,Max Steel (2016),Action|Adventure|Sci-Fi +165221,Elf Bowling the Movie (2007),Animation|Comedy|Fantasy +165223,The Law of the Jungle (2016),Comedy +165225,The Custodian (2007),Drama +165227,Adulterers (2016),Crime|Drama|Thriller +165229,Satanis: The Devil's Mass (1970),Documentary +165231,Fritz Lang (2016),Drama +165233,Winter Days (2003),Animation +165235,Operator (2016),Comedy|Drama +165237,Amber Alert,(no genres listed) +165239,Supersonic (2016),Documentary +165241,The Invisible Man's Revenge (1944),Horror|Sci-Fi +165243,Love from a Stranger (1937),Drama|Mystery|Thriller +165247,Curtain Call at Cactus Creek (1950),(no genres listed) +165249,Bagdad (1949),Adventure +165251,Up in Central Park (1948),(no genres listed) +165253,Service de Luxe (1938),Comedy +165259,"Nefertiti, Queen of the Nile (1961)",Drama +165265,An Evening of Edgar Allan Poe (1970),Drama|Horror|Mystery +165267,Percy's Progress (1974),Comedy +165269,The Devil's Triangle (1974),Documentary +165271,The Butterfly Ball (1977),Animation +165273,That Was Rock (1984),(no genres listed) +165275,The Strange Case of Alice Cooper (1979),(no genres listed) +165279,El ángel de Budapest (2011),Drama|War +165281,Las inquietudes de Shanti Andía (1947),Adventure|Drama +165283,21 nuits avec Pattie (2015),Comedy +165285,Homeless for the Holidays (2009),Drama +165287,The Swap (2016),Comedy +165289,Center Stage: On Pointe (2016),(no genres listed) +165291,The Christmas Shoes (2002),Drama +165293,Best Christmas Party Ever (2014),(no genres listed) +165295,Pumpkin Pie Wars (2016),Romance +165297,The Twelve Trees of Christmas (2013),Children +165299,All She Wants for Christmas (2006),Comedy|Drama|Romance +165301,My Bakery in Brooklyn (2016),Comedy|Romance +165303,Merry In-Laws (2012),Comedy|Fantasy +165305,Love on a Limb (2016),Romance +165307,Death Al Dente: A Gourmet Detective Mystery (2016),Mystery +165309,A Kiss at Midnight (2008),Children|Romance +165311,Mending Fences (2009),(no genres listed) +165313,Jessica Darling's It List (2016),Children +165315,Sweet Surrender (2014),(no genres listed) +165317,Gourmet Detective (2015),Mystery +165319,Gourmet Detective: A Healthy Place to Die (2015),Mystery +165321,Sense and Sensibility (1971),(no genres listed) +165323,Romantically Speaking (2015),Children|Romance +165325,Plan Bart (2014),Comedy|Drama|Romance +165327,O Shaolin do Sertão (2016),Comedy +165329,Always Shine (2016),Thriller +165331,Song of Lahore (2015),Documentary +165333,A Light Beneath Their Feet (2016),Drama +165335,Grave of the Vampire (1972),Horror +165337,Denial (2016),Drama +165339,The Color of Fear (1994),Documentary +165341,It's All Good (2016),Comedy +165343,The Rocky Horror Picture Show: Let's Do the Time Warp Again (2016),Comedy|Horror|Sci-Fi|Thriller +165345,Pad Yatra: A Green Odyssey,Adventure|Documentary +165347,Jack Reacher: Never Go Back (2016),Action|Crime|Drama|Mystery|Thriller +165349,Frank & Lola (2016),Crime|Drama|Mystery|Romance|Thriller +165351,Hamilton's America (2016),Documentary +165353,In a Valley of Violence (2016),Thriller|Western +165355,Supernatural (1933),Horror|Mystery|Thriller +165357,The Telephone Book (1971),Comedy|Drama|Romance +165359,Terror - Ihr Urteil (2016),Drama +165361,Deadman Inferno (2015),Action|Horror +165363,A Woman of Experience (1931),(no genres listed) +165365,Bang Bang Baby (2014),Drama|Sci-Fi +165367,Bling (2016),Animation|Children +165369,British Agent (1934),Drama|Romance|War +165371,Broadway Bad (1933),Drama +165373,Chicken Every Sunday (1949),Comedy +165375,Black Mountain Poets (2016),Comedy|Drama +165377,Scream Week (2016),Comedy|Thriller +165379,Razend (2011),Drama +165381,Sneeuwwitje en de zeven kleine mensen (2015),Comedy +165383,Assepoester: Een Modern Sprookje (2014),Fantasy +165385,The Adventures of Cinderella's Daughter,(no genres listed) +165387,Ella Cinders (1926),Comedy|Romance +165389,Christmas Magic (2011),Children +165391,Trading Christmas (2011),Children +165393,Confessions of an Ugly Stepsister (2002),Comedy|Drama|Fantasy +165395,Legally Blonde: The Musical (2007),Comedy +165397,Cinderella (1899),Children|Fantasy|Horror|Sci-Fi +165399,Into the Woods (2011),(no genres listed) +165401,The Ice Princess (1996),Drama|Fantasy|Romance +165403,My Bestfriend's Girlfriend (2008),Comedy|Drama|Romance +165405,Aschenputtel (1955),Children|Comedy|Fantasy +165407,The Monk and the Demon (2016),Comedy|Mystery|Sci-Fi +165409,Joe Cinque's Consolation (2016),Crime|Drama +165411,The Burrow (2015),Drama +165413,Borrowed Time (2016),Animation|Drama|Western +165415,Bon Bini Holland (2015),Comedy +165417,The Constitution (2016),Drama +165419,Strange Heaven (2015),Drama|Thriller +165421,The Red Pill (2016),Documentary +165423,Demonic Toys: Personal Demons (2010),Fantasy|Horror +165425,Gunslinger (1956),Action|Romance|Western +165427,Against The Law (1997),Action|Adventure|Drama|Thriller +165429,One Foot in Hell (1960),Western +165431,Hemingway's Adventures of a Young Man (1962),Drama|Romance +165433,Hollywood Round-Up (1937),Western +165435,Is My Face Red? (1932),Action|Crime|Drama|Romance +165437,Island of Lost Souls (2007),Action|Adventure|Children +165439,Kill Buljo 2 (2013),Comedy +165441,American Pastoral (2016),Drama +165443,Killjoy's Psycho Circus (2016),Horror +165445,King of the Roaring 20's: The Story of Arnold Rothstein (1961),Crime|Drama +165447,My Woman (1933),(no genres listed) +165449,Native Land (1942),Drama +165451,No Sad Songs for Me (1950),Drama +165453,Panama Flo (1932),Drama|Romance +165455,Stagecoach Buckaroo (1942),Action|Western +165457,The Big Bang (1987),Animation|Comedy|Sci-Fi +165459,The Big Bang (1989),(no genres listed) +165461,The Choice (1970),Mystery +165463,The Last Escape (1970),Action|Drama +165465,The Last Escape (2010),(no genres listed) +165467,The Mayor of 44th Street (1942),Drama|Romance +165469,The Ring (1996),Drama|Romance +165473,The Secret Land (1948),Documentary +165481,You Can't Beat Love (1937),Comedy|Romance +165483,Joe Rogan: Triggered (2016),Comedy +165485,Scherzo Diabolico (2015),Comedy|Horror +165487,"Fear, Inc. (2016)",Comedy|Horror +165489,Ethel & Ernest (2016),(no genres listed) +165491,Into the Inferno (2016),Documentary +165493,The Babushkas of Chernobyl (2015),(no genres listed) +165495,Ladrones (2015),Comedy|Crime +165497,Single Santa Seeks Mrs. Claus (2004),Children|Comedy|Fantasy +165499,Moonlight & Mistletoe (2008),Children|Comedy|Drama|Romance +165501,Christmas Do-Over (2006),Children|Comedy|Fantasy +165503,Mr. Church (2016),Drama +165505,In Memorium (2005),Horror +165507,Mars (1998),Action|Sci-Fi +165509,Crazy Love (1993),(no genres listed) +165511,The Surrogate Womb (1987),(no genres listed) +165519,Always Faithful,(no genres listed) +165523,One Floor Below (2015),(no genres listed) +165525,Unfair World (2012),Comedy|Crime|Drama +165527,Before the Flood (2016),Documentary +165529,Flowers for Algernon (2000),Drama +165531,"Silent Night, Deadly Night 4: Initiation (1990)",Horror +165533,DC Showcase: Green Arrow (2010),Adventure|Animation +165535,Truth or Dare?: A Critical Madness (1986),Horror +165537,The Windmill (2016),Horror +165539,Michael Moore in TrumpLand (2016),Documentary +165541,Be with Me (2010),Drama|Romance|Thriller +165543,Manson's Lost Girls (2016),Crime|Drama|Thriller +165545,Sennentuntschi (2010),Horror|Mystery +165547,The Big Fix (2011),Documentary +165549,Manchester by the Sea (2016),Drama +165551,Lion (2016),Drama +165553,Come And Find Me (2016),Drama +165555,Spa Night (2016),Drama +165557,The Big Gun (1981),Comedy +165559,Ο Θανάσης στη χώρα της σφαλιάρας (1976),(no genres listed) +165563,"What Did You Do in the War, Thanassi? (1971)",Comedy|Drama +165565,The Baldheaded Agent and the Land of Destruction Mission (1969),Comedy +165567,Politexnitis and Erimospitis (1963),Comedy +165569,RWD (2015),Horror|Sci-Fi +165571,The Genius of Marie Curie: The Woman Who Lit up the World (2013),Documentary +165573,Hollywood Without Make-Up (1963),Documentary +165575,In guerra per amore (2016),(no genres listed) +165577,Behind Convent Walls (1978),Drama +165579,Utu (1984),Adventure|Drama|War +165581,Operation Mekong (2016),Action|Thriller +165583,The Maid (2014),Drama|Romance +165585,Clement (2001),Drama|Romance +165587,The Admirer (2012),Drama|Romance +165589,Alien 2: On Earth (1980),Horror|Sci-Fi +165591,Repo Chick (2009),Comedy +165593,The Brave One (1956),Drama +165595,Gajakessari (2014),(no genres listed) +165597,Hayabusa: The Long Voyage Home (2012),Drama +165599,Hayabusa (2011),Adventure +165601,I Am the Pretty Thing That Lives in the House (2016),Horror|Thriller +165603,The Autopsy of Jane Doe (2016),Horror +165605,The Head Vanishes (2016),Animation +165609,Kajraare (2010),Crime|Drama|Romance +165611,Alleycats (2016),Action|Thriller +165613,Whitney (2015),Drama|Romance +165615,Satan Lives (2015),Documentary +165617,Diane (1956),Drama|Romance +165619,Happy Anniversary (1959),Comedy +165621,Hammerhead (1968),Horror|Sci-Fi +165623,"Hail, Hero! (1969)",Drama +165625,Bill Cosby: 49 (1987),Comedy +165627,Nitro (2006),Action +165629,The Bulleteers (1942),Action|Animation|Fantasy +165631,Kabadayı (2007),Action|Crime|Drama +165633,A Long Story (2012),Drama +165635,The Thinning (2016),Thriller +165637,Captain Sindbad (1963),Action|Adventure|Children|Fantasy +165639,While You Were Fighting: A Thor Mockumentary (2016),Comedy|Fantasy|Sci-Fi +165641,Closet Monster (2016),Drama +165643,Those People (2015),Drama|Romance +165645,Bad Santa 2 (2016),Comedy +165647,Within (2016),Thriller +165649,Dead on Campus (2014),Drama|Thriller +165651,Take Down (2016),Action|Drama|Thriller +165653,Tchoupitoulas (2012),Documentary +165655,Seeding of a Ghost (1983),Horror|Thriller +165661,The Piper (2015),Fantasy|Horror +165663,From This Day Forward (1946),Drama|Romance|War +165665,Sounder (2003),(no genres listed) +165667,Somnus (2016),Adventure|Sci-Fi|Thriller +165669,The Late Bloomer (2016),Comedy|Drama|Romance +165671,Ice Guardians (2016),Documentary +165673,The People vs. Fritz Bauer (2015),Drama +165675,H. (2014),Drama|Sci-Fi|Thriller +165677,Dare to Be Wild (2015),Drama +165679,iGirl (2016),Comedy|Romance +165681,Almost Christmas (2016),Comedy +165683,Gilda Live (1980),Comedy +165685,Harry & Snowman (2015),Documentary +165687,Howard Hawks: American Artist (1997),Documentary +165689,Head Trauma (2006),Horror|Mystery|Thriller +165691,Love and Diane (2002),Documentary +165693,I for India (2005),Documentary +165695,Photographic Memory (2011),Documentary +165699,Angel Has Fallen,Action|Thriller +165701,Starship Apocalypse (2014),Action|Sci-Fi +165703,Suburban Mayhem (2006),Drama|Romance|Thriller +165707,Ned (2003),(no genres listed) +165709,Tanna (2015),Drama|Romance +165711,Frackman (2015),Documentary +165713,Rebel Beat: The story of LA Rockabilly (2007),(no genres listed) +165715,Mosquinha (1890),(no genres listed) +165717,Je vous aime (1891),Documentary +165719,Luokkakokous 2: Polttarit (2016),Comedy +165721,Ghosts with Shit Jobs (2012),Comedy|Drama|Sci-Fi +165723,Ae Dil Hai Mushkil (2016),Comedy|Drama|Romance +165725,Over the Moon (1939),Comedy +165727,Consumed (2015),Drama|Thriller +165729,Flatland - The Movie (2007),Animation +165731,"Eldridge Cleaver, Black Panther (1970)",Documentary +165733,Ice Girls (2016),(no genres listed) +165735,Chalk It Up (2016),(no genres listed) +165737,Accidentally Engaged (2016),Comedy|Romance +165739,A Hazard of Hearts (1987),Drama|Romance +165741,A Ghost in Monte Carlo (1990),Romance +165743,Bound & Babysitting (2015),Children +165745,A Holiday Heist (2011),Comedy|Romance +165747,Exchange,Horror +165749,Little Longnose (2003),Adventure|Animation|Children +165751,Annie Laurie (1927),Drama|Romance +165753,The Battle of Midway (1942),Documentary|War +165755,The Bespoke Overcoat (1955),Drama|Fantasy +165757,Journey to the West (1960),Animation|Fantasy +165759,The Mill of Good Luck (1955),Crime|Drama +165761,November Rule (2015),(no genres listed) +165763,By Love Possessed (1961),Drama +165765,Downfall (1997),Drama|Romance +165767,Courage for Every Day (1964),Drama +165769,Croc (2007),Horror +165771,Dead Noon (2009),Horror|Western +165773,The Club of the Misunderstood (2014),Comedy|Fantasy +165775,Four Mothers (1941),Drama|Romance +165777,Goin' to Town (1935),Comedy +165779,Hell Bent for Leather (1960),Western +165781,Hostile Border (2015),Drama +165783,If I Were Free (1933),(no genres listed) +165787,Lonesome Dove Church (2014),Western +165789,Love Me Forever (1935),Drama|Romance +165791,Marie (1985),Drama +165793,Out West with the Hardys (1938),Comedy +165797,Screamers (2006),Documentary +165799,The Black Tavern (1972),Action +165801,The Cheaters (1945),Comedy|Drama +165803,The Cheaters (1958),Drama +165805,The Christmas Dragon (2014),Adventure|Children|Fantasy +165807,The Graves (2010),Adventure|Horror|Thriller +165809,The Halliday Brand (1957),Western +165811,When You're in Love (1937),Comedy|Romance +165813,Where Sinners Meet (1934),Comedy|Romance +165815,Lunch Wagon (1981),Comedy|Crime +165817,The King of Havana (2015),Drama +165819,Jeff Ross Roasts Cops (2016),Comedy +165821,Rodnye (Close Relations),Documentary +165823,Under the Sun (2016),Documentary +165825,The Way We Live Now (2001),Drama|Romance +165827,"Quiet Riot: Well Now You're Here, There's No Way Back (2014)",Documentary +165829,Penis Boy (2015),Comedy|Drama +165831,Marvel One-Shot: All Hail the King (2014),Action|Comedy|Drama|Fantasy|Thriller +165833,Rock 'n' Roll Frankenstein (1999),Comedy|Horror +165835,Tempestad (2016),Documentary +165837,Kate Plays Christine (2016),Documentary|Drama +165839,The Lives of Thérèse (2016),Documentary +165841,All These Sleepless Nights (2016),Documentary +165843,Risk (2016),Documentary +165845,Kiki (2016),(no genres listed) +165847,Trapped (2016),Documentary +165849,Newtown (2016),Documentary +165851,Hooligan Sparrow (2016),Documentary +165853,Cameraperson (2016),(no genres listed) +165855,My Best Friend's Birthday (1987),Comedy +165857,Desperado's Duel (2014),Western +165859,Marvel One-Shot: The Consultant (2011),Action|Adventure|Fantasy|Sci-Fi +165861,Le peuple invisible (2007),(no genres listed) +165863,"Marvel: 75 Years, From Pulp to Pop! (2014)",Documentary +165865,Marvel Studios: Assembling a Universe (2014),Documentary +165867,Pure Pwnage: Teh Movie (2016),Comedy|Documentary +165869,Heartstone (2016),Drama|Romance +165871,Japan Sinks (2006),Adventure|Drama|Sci-Fi|Thriller +165873,Miss Sharon Jones! (2015),Documentary +165875,Anabel (2015),Horror|Thriller +165877,The Dark Stranger (2016),Animation|Drama|Horror|Thriller +165879,The Evil in Us (2016),Horror +165881,Red Persimmons (2001),Documentary +165883,May God Save Us (2016),Crime|Thriller +165885,Smoke & Mirrors (2016),Action|Thriller +165887,Women's Story (1989),(no genres listed) +165889,Acantilado (2016),Thriller +165891,The Possession Experiment (2016),Horror +165893,The Jews (2016),Comedy +165895,Spaceman (2016),Comedy|Drama +165897,Army of One (2016),Comedy +165899,Salute (2008),Documentary +165901,Happy Bhag Jayegi (2016),Comedy|Romance +165903,Farts of Fury (2011),Comedy +165905,Outlaw: Gangster VIP (1968),Action|Crime|Thriller +165907,Outlaw: Gangster VIP 2 (1968),Action|Crime|Thriller +165909,Outlaw: Heartless (1968),Action|Crime|Thriller +165911,Outlaw: Goro the Assassin (1968),Action|Crime|Thriller +165913,Outlaw: Black Dagger (1968),Action|Crime|Thriller +165915,Outlaw: Kill! (1969),Action|Crime|Thriller +165917,The Kid (2010),Drama +165919,Circle of Pain (2010),Action|Adventure|Thriller +165923,The Secret of Crickley Hall (2012),Drama|Horror +165925,The Congressman (2016),Drama +165927,Ivan Tsarevich & the Grey Wolf (2011),Animation|Children +165929,Ivan Tsarevich & the Grey Wolf 2 (2013),Adventure|Animation|Children +165931,Ivan Tsarevich & the Grey Wolf 3 (2016),Adventure|Animation|Children +165933,The Ivory Game (2016),Documentary +165935,Vice and Virtue (1963),Comedy|Drama +165937,Collateral Beauty (2016),Drama +165939,First Girl I Loved (2016),Comedy|Drama +165941,Music Land (1935),Animation +165945,The Last Ronin (2010),Drama +165947,The True Memoirs of an International Assassin (2016),Action|Comedy +165949,You Will Know What to Do With Me (2016),Drama +165951,Saint Amour (2016),Comedy|Drama +165953,The Thirteenth Guest (1932),Mystery|Thriller +165957,Home Care (2015),Comedy|Drama +165959,Alesha Popovich and Tugarin the Dragon (2004),Animation|Comedy|Drama +165961,Nikitich and The Dragon (2006),Adventure|Animation|Comedy|Drama|Fantasy +165963,Ilya Muromets i Solovey Razboynik (2007),Animation|Comedy|Drama +165965,The Jungle Book: Mowgli's Story (1998),(no genres listed) +165967,Just the Way You Are (2015),Romance +165969,HyperNormalisation (2016),Documentary +165971,Hangup (1974),(no genres listed) +165973,From Hell to Texas (1958),Western +165977,Behind the Make-Up (1930),Drama +165979,Heritage of the Desert (1932),Western +165981,Diplomatic Courier (1952),Action +165983,Man of the Forest (1933),Action|Western +165985,Rawhide (1951),Western +165987,You're in the Navy Now (1951),Comedy|War +165989,Ten Gentlemen From West Point (1942),Drama +165995,The Witching Hour (1934),Drama|Mystery +165997,Sunset Pass (1933),Action|Adventure|Romance|Western +166001,The Thundering Herd (1933),Western +166005,La folle histoire de Max et Léon (2016),Comedy|War +166007,One Rogue Reporter (2014),Comedy|Documentary +166009,The Chronicles of Melanie (2016),Drama +166011,Shangri-La Suite (2016),Crime|Drama|Romance +166013,Scrat: Spaced Out (2016),Animation|Comedy|Sci-Fi +166015,The African Doctor (2016),Comedy|Drama +166018,15 Février 1839 (2001),Drama +166020,Dog Eat Dog (2016),Crime|Drama|Thriller +166022,Justin Timberlake + The Tennessee Kids (2016),Documentary +166024,Whiplash (2013),(no genres listed) +166026,Tetra Vaal (2004),(no genres listed) +166028,What Remains of Us (2004),Documentary +166030,Invisible (2016),(no genres listed) +166034,The Optimists of Nine Elms (1973),Drama +166036,Murderers Among Us (1946),Drama +166038,If We Had No Moon (1999),(no genres listed) +166040,Mandragora (1997),Drama +166042,Riley's First Date? (2015),Animation|Children +166044,Night Shadows (1984),Horror|Sci-Fi|Thriller +166046,A Christmas Romance (1994),Children|Drama|Romance +166048,Happy Birthday (2008),Drama|Romance +166050,7 Days of Himawari & Her Puppies (2013),Drama +166052,Steal My Heart (2013),Comedy|Romance +166054,Maliglutit (Searchers) (2016),Action|Drama +166056,All My Lenins (1997),Comedy|Thriller +166060,Amazon (1990),Adventure|Drama +166062,Angel's Dance (1999),Action|Comedy +166064,Battle Under Orion (2009),Action|Drama|War +166066,Crazy Horse (1996),Action|Drama|War|Western +166068,The Crown and the Dragon (2013),Adventure|Fantasy +166070,Do I Have to Take Care of Everything? (2014),Comedy|Drama +166072,Fab Five: The Texas Cheerleader Scandal (2008),Drama +166074,Mr. Fix It (2006),Comedy|Romance +166076,Cloud 9 (2006),Comedy|Romance|Thriller +166126,Wet Woman in the Wind (2016),Drama|Thriller +166128,Dr. Broadway (1942),Crime|Drama|Mystery +166130,Moonlight in Havana (1942),Comedy +166136,Strangers in the Night (1944),Crime|Drama|Mystery +166138,Strange Impersonation (1946),Drama|Thriller +166140,The Untamed (2016),(no genres listed) +166143,Riphagen (2016),Drama|War +166145,Not Angels but Angels (1994),Documentary +166147,A Christmas Wedding Tail (2011),Comedy|Drama|Romance +166149,A United Kingdom (2016),Drama +166151,Rock On 2 (2016),Drama +166153,A Fool (2015),Adventure|Comedy|Drama +166155,Godless (2016),Drama +166157,The Ride (1994),Comedy|Drama|Romance +166159,Blood Sisters of Lesbian Sin (1997),(no genres listed) +166161,No Touching At All (2014),Drama|Romance +166163,Black Butler (2014),Action|Adventure|Crime|Drama|Fantasy|Horror|Mystery +166165,The Huntresses (2014),Action|Adventure|Comedy +166167,Love 911 (2012),Comedy|Drama|Romance +166169,Badges of Fury (2013),Action|Comedy|Crime +166171,Sleepwalker (1984),Horror +166173,Stella (1955),Romance +166175,Tanner '88 (1988),(no genres listed) +166177,Straight Out of Brooklyn (1991),Drama +166179,The Secret Garden (1987),Children|Drama +166181,Female Werewolf (2015),(no genres listed) +166183,Junior and Karlson (1968),Adventure|Animation|Children +166185,Uncle Nick (2015),Comedy +166187,Faro (2013),Drama|Thriller +166189,The Standoff (2016),Comedy +166191,All Hallow's Eve (2016),Children +166193,All She Wishes (2015),Children|Comedy|Fantasy +166195,The Submarine Kid (2016),Drama +166197,Race to Win (2016),Children|Drama +166199,Coming Home for Christmas (2013),Children +166201,The Wish List (2010),Comedy|Drama|Romance +166203,Sapphire Blue (2014),Adventure|Children|Fantasy|Sci-Fi +166205,My Life as a Dead Girl (2015),Crime|Fantasy|Mystery +166207,Systemfehler - Wenn Inge tanzt (2013),Comedy +166209,Die Schöne und das Biest (2012),Children|Fantasy +166211,Aschenputtel (2011),Children|Fantasy +166213,A Wish for Christmas (2016),Drama|Romance +166215,Schneewittchen (2009),(no genres listed) +166217,Christmas with Holly (2012),Children|Drama +166219,Aschenputtel (1989),(no genres listed) +166221,The Princess with the Golden Star (1959),Children|Fantasy +166223,"Von einem, der auszog, das Fürchten zu lernen (2014)",Children|Fantasy|Horror +166225,Prinzessin Maleen (2015),Children +166227,Der Teufel mit den drei goldenen Haaren (2013),Children|Fantasy +166229,Allerleirauh (2012),Children|Fantasy +166231,Die Salzprinzessin (2015),Children|Fantasy +166233,Thirteen at Dinner (1985),Crime|Mystery +166235,Shut In (2016),Drama|Thriller +166237,The Thin Red Line (1964),War +166239,"Clarence, the Cross-Eyed Lion (1965)",Action|Adventure|Comedy +166241,Crack in the World (1965),Sci-Fi +166243,Birds Do It (1966),(no genres listed) +166245,Good Kids (2016),Comedy +166247,Summer Villa (2016),(no genres listed) +166249,Seduced (2016),Drama|Thriller +166251,Below Utopia (1997),Drama|Thriller +166253,My Boys Are Good Boys (1978),Crime|Drama +166255,Bonobo (2014),Comedy +166257,West Coast (2016),Comedy +166259,I Am Your Father (2015),Documentary +166263,My Feral Heart (2016),Drama +166265,Panzer Chocolate (2013),Horror +166267,Finnish Blood Swedish Heart (2012),(no genres listed) +166269,The Bull (1994),Adventure|Drama +166273,Escape (1948),(no genres listed) +166275,Yelling To The Sky (2012),Drama +166277,The Days (1994),(no genres listed) +166279,Something Like It (1981),Comedy +166281,Attack of the Lederhosen Zombies (2016),Comedy|Horror +166283,Cardboard Boxer (2016),Drama +166285,The Odyssey (2016),Adventure +166287,Officer Downe (2016),Action +166289,Allende en su laberinto,(no genres listed) +166291,A Silent Voice (2016),Animation|Drama|Romance +166293,Banana Paradise (1989),(no genres listed) +166295,The Anthem of the Heart (2015),Animation|Drama|Fantasy +166297,"Bagi, the Monster of Mighty Nature (Taishizen no makemono Bagi) (1984)",Action|Adventure|Animation +166299,Stormy Night (2005),Animation +166301,Thieves After Dark (1984),Crime|Drama|Romance|Thriller +166303,Frontier (2001),Action|Adventure +166306,Iris (2016),Thriller +166310,Heal the Living (2016),Drama +166312,100 metros (2016),Drama +166316,Funny Car Summer (1974),Documentary +166318,Dinosaurier - Gegen uns seht ihr alt aus! (2009),Comedy|Crime|Romance +166320,Classic Albums: Deep Purple - Machine Head (2002),Documentary +166322,Black Sabbath: Paranoid (2010),Documentary +166324,Classic Albums: Iron Maiden - The Number of the Beast (2001),Documentary +166326,The Boss (1956),Action|Drama|Thriller +166328,Judas Priest: British Steel (2001),Documentary +166330,Forever Female (1954),Comedy +166332,Hunted (1952),Crime|Drama|Thriller +166334,Cottage to Let (1941),Comedy|Drama +166336,The Villain Still Pursued Her (1940),Comedy|Romance +166338,Young Man of Manhattan (1930),Comedy|Romance +166340,A Shriek in the Night (1933),Action|Mystery|Thriller +166342,Finishing School (1934),Drama|Romance +166344,Twenty Million Sweethearts (1934),Comedy +166346,The Wedding Pact (2014),Comedy|Romance +166348,Inch'Allah (2012),Drama +166369,Sour Grapes (2016),Documentary +166371,Il Solengo (2016),Documentary +166373,Food Choices (2016),Documentary +166375,We're Still Here: Johnny Cash's Bitter Tears Revisited (2015),(no genres listed) +166379,Un chant d'amour (1950),Drama|Romance +166381,Ricardo O'Farrill: Abrazo Genial (2016),Comedy +166383,Sofía de Niño Rivera: Exposed (2016),Comedy +166385,God's Country (2012),Children|Comedy|Drama +166387,"Hercules, Samson & Ulysses (1963)",Adventure +166389,Atlas (1961),Action|Fantasy|Sci-Fi +166391,I'll Be Yours (1947),Comedy +166393,Janis (1974),Documentary +166395,Jimmy Vestvood: Amerikan Hero (2016),Comedy +166397,Nice Girl? (1941),Comedy +166399,Routine Pleasures (1986),(no genres listed) +166401,The Adventures of the American Rabbit (1986),Animation|Children|Fantasy|Sci-Fi +166403,The Blackout Experiments (2016),(no genres listed) +166405,The Life of Riley (1949),Comedy +166407,Ride to Hangman's Tree (1967),(no genres listed) +166409,The Sea Around Us (1953),Documentary +166411,The Truth About Youth (1930),(no genres listed) +166413,The Vengeance of She (1968),Adventure|Fantasy +166415,UNDERFIRE: The Untold Story of Pfc. Tony Vaccaro (2016),(no genres listed) +166417,Weepah Way For Now (2015),Comedy|Drama +166419,Road to La Paz (2015),Drama +166421,Foxy and the Weight of the World (2005),(no genres listed) +166423,Black's Game (2012),Action|Crime|Drama|Thriller +166425,The Whole Shootin' Match (1978),Comedy|Drama +166429,Last Night At The Alamo (1984),Drama +166433,City Life (1990),(no genres listed) +166437,The Lure (2016),Documentary +166441,Playground (2016),Drama|Thriller +166443,Summer Holiday (2008),Comedy|Drama +166445,Säälistäjät (2014),(no genres listed) +166447,When I Saw You (2012),Drama +166449,The Green Wall (1970),Drama|Romance +166451,Hard Choices (1986),Crime|Drama +166453,Baden Baden (2016),Drama +166455,Lego DC Comics Superheroes: Justice League - Gotham City Breakout (2016),Animation +166457,Legend of Dinosaurs and Monster Birds (1977),Sci-Fi +166459,Fugitive Alien (1987),Action|Comedy|Sci-Fi +166461,Moana (2016),Adventure|Animation|Children|Comedy|Fantasy +166463,The Confessions of Thomas Quick (2015),Crime|Documentary +166465,"Thelonious Monk: Straight, No Chaser (1988)",Documentary +166467,The Good Sister (2014),Drama|Mystery|Thriller +166472,"Feyzo, the Polite One (1978)",Comedy +166474,Hector (2015),Drama +166476,The Unbidden (2016),Horror|Mystery|Thriller +166478,Siren (2016),Horror +166480,Eliminators (2016),Action|Thriller +166482,Alienate (2016),Drama|Horror|Sci-Fi|Thriller +166484,638 Ways to Kill Castro (2006),Documentary +166486,Jackie (2016),Drama +166488,Ballad (2009),Action|Drama|Romance +166490,David Wants to Fly (2010),Documentary +166492,Office Christmas Party (2016),Comedy +166494,The Tiger: An Old Hunter's Tale (2015),Action|Adventure|Thriller +166496,Fantastipo (2005),Comedy +166498,Ritual in Transfigured Time (1946),Mystery +166500,The Werewolf of Washington (1973),Horror +166502,Juvenile Offender (2012),(no genres listed) +166504,Summer Games (2011),Drama +166506,Intimate Grammar (2010),Drama +166508,Logan (2010),Children|Comedy|Drama +166510,Alles stroomt (2009),(no genres listed) +166512,Ayn Rand & the Prophecy of Atlas Shrugged (2011),Documentary +166514,Belle du Seigneur (2012),Drama|Romance +166516,Robin Redbreast (1970),Drama|Horror|Mystery +166518,Nature's Great Events (2009),Documentary +166520,Disco Polo (2015),Comedy +166522,They Knew What They Wanted (1940),Drama|Romance +166524,Hello Ghost (2010),Comedy|Drama|Horror +166526,The Space Between Us (2016),Adventure|Sci-Fi +166528,Rogue One: A Star Wars Story (2016),Action|Adventure|Fantasy|Sci-Fi +166530,Pet (2016),Thriller +166532,Live by Night (2017),Crime|Drama +166534,Split (2017),Drama|Horror|Thriller +166536,Old Stone (2016),Drama +166538,Asperger's Are Us (2016),Documentary +166540,One Shot (2015),(no genres listed) +166542,National Bird (2016),Documentary +166544,A Kind of Murder (2016),Thriller +166546,Shared Rooms (2016),(no genres listed) +166548,Dvadtsat shest dney iz zhizni Dostoevskogo,(no genres listed) +166550,L'Inhumaine (1924),Drama|Sci-Fi +166552,Soldat blanc (2014),Drama|War +166554,Ushi Must Marry (2013),Comedy +166556,Pojken med guldbyxorna (2014),Adventure|Children|Fantasy +166558,Underworld: Blood Wars (2016),Action|Horror +166560,Too Hot to Handle (1977),Action|Drama|Thriller +166562,Panfilov's 28 Men (2016),(no genres listed) +166564,The Gamers: Natural One (2014),Comedy|Fantasy +166566,Wild Things: Foursome (2010),Crime|Drama|Mystery +166568,Miss Sloane (2016),Thriller +166570,When Two Worlds Collide (2016),Documentary +166572,Rules Don't Apply (2016),Drama +166574,Skewered (2013),Comedy|Drama +166576,Voracious (2012),Comedy|Drama +166578,Kimmy Dora (2009),Comedy|Drama|Romance +166580,Siivoton Juttu (1997),(no genres listed) +166583,"End of Days, Inc. (2015)",Comedy|Sci-Fi +166587,Sam (2016),Comedy|Fantasy|Romance +166589,Hobgoblins (1988),Action|Comedy|Horror|Sci-Fi|Thriller +166591,Aanandam (2016),Adventure|Comedy|Romance +166593,Happy Wedding (2016),Comedy|Drama|Romance +166595,Pretham (2016),Comedy|Horror +166597,Guppy (2016),Drama +166599,Kammatipaadam (2016),Crime|Drama +166601,Action Hero Biju (2016),Action|Comedy|Crime +166603,Frankenstein's Castle of Freaks (1974),Horror +166605,Count Dracula's Great Love (1974),Horror +166607,The Water Margin (1972),Action|Drama +166609,Seedpeople (1992),Horror|Sci-Fi +166611,A Dangerous Man: Lawrence After Arabia (1992),(no genres listed) +166613,Absurda (2007),Horror|Mystery +166615,Six Men Getting Sick (1967),Animation +166617,The Wild East (1993),(no genres listed) +166619,John Cleese - The Alimony Tour Live (2011),Comedy +166621,Love Is All You Need? (2016),Drama +166623,Markova: Comfort Gay (2000),Comedy|Drama +166625,Enemies of the People (2009),Documentary +166627,The Alien Saga (2002),Documentary|Sci-Fi +166629,Köyden İndim Şehire (1974),Comedy|Drama +166631,A Woman Possessed (1975),Horror +166633,Millhouse (1971),(no genres listed) +166635,Passengers (2016),Adventure|Drama|Romance|Sci-Fi +166637,Van Gogh: Brush with Genius (2009),Documentary +166639,The Whistleblower (2014),Drama +166641,Unbowed (2012),Drama +166643,Hidden Figures (2016),Drama +166645,Mandıra Filozofu (2014),Comedy +166647,Dügün Dernek 2: Sünnet (2015),(no genres listed) +166649,Sağ Salim (2012),(no genres listed) +166651,Dönersen Islık Çal,(no genres listed) +166653,Michael Che Matters (2016),Comedy +166655,Hell House LLC (2015),Horror|Thriller +166657,The Charnel House (2016),Thriller +166659,Libera Nos (2016),(no genres listed) +166663,Pro Wrestlers vs Zombies (2014),Action|Comedy|Horror +166665,The Coming War on China (2016),(no genres listed) +166667,I Can Make You Love Me (1993),Thriller +166669,Anatolian Eagles (2011),(no genres listed) +166671,Ya Sonra? (2011),Comedy|Romance +166673,Celal ile Ceren (2013),Comedy|Romance +166675,The Tormentors (1971),Crime|Drama +166677,Feuten: Het Feestje (2013),Comedy|Drama +166679,Uninhabited (2010),Horror|Thriller +166685,Leather (2013),Comedy|Romance +166687,Umbracle (1970),(no genres listed) +166695,The Untold Story of Emmett Louis Till (2005),Documentary +166697,You Don't Like the Truth: 4 Days Inside Guantanamo (2010),(no genres listed) +166699,The Cats of Mirikitani (2006),Documentary +166701,he takes the pills (2015),Comedy|Drama|Fantasy|Thriller +166703,Deal (2012),(no genres listed) +166705,Fences (2016),Drama +166707,Romántico (2005),Documentary +166709,No Skin Off My Ass (1991),(no genres listed) +166711,Vox Populi (2008),Comedy|Drama +166715,Little Wing (2016),Drama +166717,Wolfskinder (2013),Drama|War +166719,Len and Company (2015),Drama +166721,Bleed for This (2016),Drama +166723,The Deadly Duo (1971),Action +166725,A Matter of Resistance (1966),Comedy|Romance +166727,Norman Television (2016),Animation +166729,Çöpçüler Kralı (1977),(no genres listed) +166731,Screams of a Winter Night (1979),Horror|Mystery +166733,Snowed Under (1936),Comedy +166735,The Game (2014),(no genres listed) +166737,Fisherman's Wharf (1939),Adventure|Drama +166739,If I Were You 2 (2009),Comedy +166741,Electrocuting an Elephant (1903),Documentary +166743,Serena (2016),Documentary +166745,Vai Que Dá Certo (2013),Comedy +166747,Perry Mason Returns (1985),Crime|Drama|Mystery|Thriller +166749,Riki-Oh: The Wall of Hell (1989),Action|Animation +166753,Rainbow Time (2016),Comedy|Drama +166755,Hacker (2016),Crime|Drama|Thriller +166757,The Free World (2016),Drama +166759,The Exclusive : Beat the Devil's Tattoo (2015),Drama|Thriller +166761,Tri Bogatyrya na Dalnikh Beregakh (2012),Animation +166763,Three Heroes and Julius Caesar (2015),Adventure|Animation|Comedy|Fantasy +166765,Tri bogatyrya i Shamakhanskaya tsaritsa (2010),Adventure|Animation|Children|Comedy +166767,The Maker (2011),Animation|Drama +166769,Eltern (2013),Comedy +166771,Rear Window (1998),Drama|Thriller +166773,Perry Mason: The Case of the Notorious Nun (1986),(no genres listed) +166775,Uno: The Movie,Comedy +166777,The Greasy Strangler (2016),Comedy|Horror|Thriller +166779,Tormented (2011),Horror +166782,Akelarre (1984),Drama|Horror +166786,L'autre Dumas (2010),Drama +166788,20th Century Women (2016),Drama +166790,My Future Love (2016),(no genres listed) +166792,Perry Mason: The Case of the Shooting Star (1986),Crime|Drama +166794,Money (2016),Crime|Thriller +166796,Glory Daze: The Life and Times of Michael Alig (2015),Documentary +166798,Perry Mason: The Case of the Lost Love (1987),Crime|Drama|Mystery +166800,Buffalo Running (1883),(no genres listed) +166802,Inner Workings (2016),Animation|Comedy +166804,The Lennon Report (2016),Drama +166806,Art of Submission (2009),Action +166810,King for a Day (1983),Comedy +166812,Seeing Red: Stories of American Communists (1983),(no genres listed) +166814,Alcatraz Island (1937),Drama|Romance +166816,Alias Boston Blackie (1942),Drama +166818,Army (1996),(no genres listed) +166820,Severed Ties (1992),Horror +166822,Blackwell's Island (1939),Crime|Drama +166824,Broadway Babies (1929),(no genres listed) +166826,Broadway Musketeers (1938),Drama +166828,God's Country and the Woman (1937),(no genres listed) +166830,Marathon: The Patriots Day Bombing (2016),Documentary +166832,Men In Exile (1937),(no genres listed) +166834,Missing Witnesses (1937),Crime|Drama +166836,Mourning Son (2015),Documentary +166838,Mystery House (1938),Mystery +166840,Over The Wall (1938),(no genres listed) +166842,Petticoat Fever (1936),Comedy|Romance +166844,Puerto Ricans in Paris (2015),Comedy +166846,Shadows of the Dead (2004),Horror +166848,Shadows of the Dead (2016),Horror +166850,Show Girl in Hollywood (1930),(no genres listed) +166852,The Dog Who Saved the Holidays (2012),Children|Comedy +166854,Shelby: The Dog Who Saved Christmas (2014),(no genres listed) +166856,The Man Without A Face (1950),(no genres listed) +166858,The Right to Live (1935),Drama +166860,"Yes, My Darling Daughter (1939)",Comedy|Romance +166862,The Women's Balcony,(no genres listed) +166864,The Hurt Business (2016),Documentary +166866,The Together Project (2016),Comedy|Romance +166868,Pentatonix: On My Way Home (2015),(no genres listed) +166870,Evacuate Earth (2012),Documentary +166872,October Kiss (2015),(no genres listed) +166874,Mom at Sixteen (2005),Drama +166876,The End (2004),(no genres listed) +166878,Political Animals (2012),Drama +166880,Kevorkian (2010),Documentary +166882,This is What Love in Action Looks Like (2011),Documentary +166884,Fish out of Water (2009),Documentary +166886,High The True Tale of American Marijuana (2008),Documentary +166888,Patriocracy (2012),Documentary +166890,Lynching Charlie Lynch (2012),Documentary +166892,Kathy Griffin: Pants Off (2011),Comedy +166894,Longhorns (2011),Romance +166896,Memphis: The Broadway Musical (2011),(no genres listed) +166898,Liza Minnelli: Liza With a Z (1972),(no genres listed) +166900,Sondheim! The Birthday Concert (2010),(no genres listed) +166902,Lisa Lampanelli: Dirty Girl (2007),Comedy +166904,Lisa Lampanelli: Long Live The Queen (2009),Comedy +166906,Kathy Griffin: She'll Cut a Bitch (2009),Comedy +166908,Mercenary (2016),Drama +166910,Froning: The Fittest Man In History (2015),Documentary +166912,My Dead Boyfriend (2016),Comedy +166916,1898. Los últimos de Filipinas (2016),Drama|War +166918,The Great Wall (2016),Action|Adventure|Thriller +166920,This Land Is Mine (2012),Animation +166922,Loss Is to Be Expected (1992),(no genres listed) +166924,Rafea: Solar Mama (2012),Documentary +166926,Carne de horca (1953),(no genres listed) +166930,Tom Papa: Live in New York City (2011),Comedy +166932,Slash (2016),Comedy +166934,Reggie Watts: Spatial (2016),Comedy +166936,Mercy (2016),Thriller +166938,The Matchbreaker (2016),Comedy|Romance +166940,This Beautiful Fantastic (2016),Drama +166942,Ulvova Mylläri,(no genres listed) +166944,Encounter with the Unknown (1973),(no genres listed) +166946,The Founder (2016),Drama +166948,The Oath (2016),Crime|Drama|Thriller +166950,Perry Mason: The Case of the Sinister Spirit (1987),Drama|Thriller +166952,Pixels (2010),Sci-Fi +166954,Under the Sea 3D (2009),Documentary +166956,Mio cognato (2003),Comedy +166958,Hairspray Live! (2016),Comedy +166960,Thank You for Playing (2015),Documentary +166962,This Unnameable Little Broom (1985),Animation +166964,Street of Crocodiles (1986),Animation +166966,Blowfly Park (2014),Drama|Thriller +166968,Spies of Warsaw (2013),Action|Adventure|Drama +166972,Twilight of the Dark Master (1998),Animation|Fantasy|Sci-Fi +166974,Creepy (2016),Thriller +166976,Fantasía... 3 (1966),(no genres listed) +166978,Cuadrilátero (1970),(no genres listed) +166982,The Priest (1978),Drama +166984,The Tobacconist of Vallecas (1987),Comedy|Drama +166986,Turn of the Screw (1985),Horror +166988,Overdose (1983),Drama +166990,Colegas (1982),Drama +166992,The Minister’s Wife (1981),Drama|Romance +166994,Candy Razors (1980),Crime|Drama +166996,Miedo a salir de noche (1980),Comedy|Drama|Thriller +166998,The deputy (1978),Drama +167000,Hidden Pleasures (1977),Drama +167002,La otra alcoba (1976),Drama +167004,Forbidden Love Game (1975),Comedy|Crime|Drama +167006,No One Heard the Scream (1973),Horror +167008,Murder in a Blue World (1973),Crime|Thriller +167010,The Cannibal Man (1973),Drama|Horror|Thriller +167012,Glass Ceiling (1971),Horror|Mystery +167014,Algo amargo en la boca (1969),(no genres listed) +167016,Doctor Death: Seeker of Souls (1973),Horror|Mystery +167018,Why Him? (2016),Comedy +167020,A Fuller Life (2013),(no genres listed) +167022,Helium (2014),(no genres listed) +167024,The Charlie Chaplin Festival (1941),(no genres listed) +167026,Kickassia (2010),Comedy +167028,Suburban Knights (2011),Adventure|Comedy|Fantasy +167030,To Boldly Flee (2012),(no genres listed) +167032,Dancer (2016),Documentary +167034,I Am Bolt (2016),Documentary +167036,Sing (2016),Animation|Children|Comedy +167038,Dear Zindagi (2016),Drama|Romance +167040,Kahaani 2 (2016),Crime|Thriller +167042,My Family and Other Animals (2005),Children|Comedy|Drama +167044,Jasper Redd: Jazz Talk (2014),Comedy +167046,When Saturday Comes (1996),Drama +167048,John Hodgman: RAGNAROK (2013),Comedy +167050,Крепость: щитом и мечом (2015),Adventure|Animation|War +167052,The Spoils of Babylon (2014),Comedy|Drama|Romance +167054,Hannibal Buress: Animal Furnace (2012),Comedy +167056,Paradies 505. Ein Niederbayernkrimi (2013),Crime +167058,Wyatt Cenac: Brooklyn (2014),Comedy +167060,Matt Braunger: Big Dumb Animal (2015),Comedy +167062,Automatic (1995),Action|Horror|Sci-Fi|Thriller +167064,I Am Not Your Negro (2017),Documentary +167066,Perry Mason: The Case of the Murdered Madam (1987),(no genres listed) +167068,Wildflower (2016),Drama|Thriller +167070,Wonder Women (1973),Action|Horror|Thriller +167072,The Other Conquest (1999),Drama +167074,Blacker than the Night (1975),Drama|Fantasy|Horror|Thriller +167076,The Olsen Gang in Deep Trouble (2013),Animation|Comedy|Crime +167078,The Bachelor (2016),Comedy|Romance +167080,Nobody Walks in L.A. (2015),Comedy|Drama|Romance +167082,"Kiss Me, Kill Me (2015)",Drama|Thriller +167084,Jack Goes Home (2016),Drama|Horror|Thriller +167086,Crush and Blush (2008),Comedy +167088,Echo Park (2014),Drama|Romance +167090,A Year and Change (2015),Comedy|Drama +167094,End of a Gun (2016),Action|Crime|Thriller +167096,Green is Gold (2016),Crime|Drama +167098,Dolpo Tulku - Heimkehr in den Himalaya,(no genres listed) +167102,A Brilliant Madness (2002),(no genres listed) +167104,Tamo Junto (2016),Comedy +167106,Breaking a Monster (2015),Documentary +167110,Muhammad: Legacy of a Prophet (2002),Documentary +167112,Happy Easter (1984),Comedy +167114,The Giant (2016),(no genres listed) +167116,Miss India America (2016),Children|Comedy|Drama +167118,Sugar Mountain (2016),Drama|Thriller +167122,In Bed with Victoria (2016),Comedy +167124,Well Wishes (2015),Adventure|Comedy|Drama +167126,Alma (2009),Animation|Fantasy|Mystery +167128,The Light of Freedom (2013),(no genres listed) +167130,Darkweb (2016),Action|Thriller +167132,Perri (1957),Adventure|Children|Fantasy +167134,Thread of Lies (2014),Children|Drama +167136,Alone in Berlin (2016),Drama +167138,Decommissioned (2016),Action|Thriller +167140,At Cafe 6 (2016),Comedy|Romance +167142,The Kodai Family (2016),Comedy|Romance +167144,Kyle Kinane: Whiskey Icarus (2012),Comedy +167146,Kyle Kinane: Loose in Chicago (2016),Comedy +167148,Kyle Kinane: I Liked His Old Stuff Better (2015),Comedy +167150,The Inheritance or Fuckoffguysgoodday (1992),Comedy +167152,A martfüi rém (2016),Thriller +167154,Say 'I Love You' (2014),Drama|Romance +167156,Omertà (2012),Drama|Thriller +167158,Slums: Cities of Tomorrow (2014),Documentary +167160,Crossing the Line (2006),Documentary +167162,The Legend of Ben Hall (2016),Action|Drama|Western +167164,Mister Universo (2016),Drama +167166,7 Years (2016),Drama +167168,Vampire in Love (2015),Drama +167170,Perry Mason: The Case of the Scandalous Scoundrel (1987),Drama|Thriller +167172,The Bunker (2015),Comedy|Drama|Horror +167174,Beyond the Gates (2016),Adventure|Horror +167176,The Interior (2015),Thriller +167178,Harold's Going Stiff (2011),Comedy|Drama|Horror +167180,The House on Pine Street (2015),Drama|Horror +167182,Bloody Knuckles (2014),Comedy|Horror +167184,I Am Here....Now (2009),Fantasy|Sci-Fi|Thriller +167186,Pass-Thru (2016),Sci-Fi +167188,The Reunion 2 - The Funeral (2014),Comedy +167190,Two Fencers (1891),(no genres listed) +167194,The Blizzard (1965),Drama|Romance +167196,1. Mai (2008),Drama +167198,The Fourth Phase (2016),Documentary +167200,Perry Mason: The Case of the Avenging Ace (1988),(no genres listed) +167202,White Wedding (2009),Comedy|Romance +167204,Rejoice and Shout (2011),Documentary +167206,Paranormal Drive (2016),Crime|Horror +167210,Night of Violence (1965),Action|Thriller +167212,Vengeance Is My Forgiveness (1968),Western +167214,Three Golden Serpents (1967),Crime +167222,Death Is Sweet From The Soldier Of God (1972),Western +167224,Spirito santo e le cinque magnifiche canaglie (1972),Western +167228,An Animal Called Man (1972),Western +167230,Corte marziale (1974),Western +167234,Life+1 Day (2016),Drama|Thriller +167236,Coming Through The Rye (2016),Drama +167238,Hot Times (1974),Comedy +167240,Glen and Randa (1971),Adventure|Sci-Fi +167242,Pictures from Life's Other Side (1971),(no genres listed) +167244,My Girlfriend's Wedding (1969),(no genres listed) +167246,The IRA Informant (1997),Action|Thriller|War +167248,Kedi (2016),(no genres listed) +167250,My Love Story!! (2015),Comedy|Romance +167252,A Grand Night In: The Story of Aardman (2015),Animation|Documentary +167254,The Advocate: A Missing Body (2015),Action|Thriller +167256,Her Senior (2015),Drama|Romance +167258,A Woman's Decision (1975),Drama +167260,Krummerne (1991),Children|Comedy +167262,Tru Loved (2008),Comedy +167264,Perry Mason: The Case of the Lady in the Lake (1988),Crime|Mystery +167266,Christmas List (2016),Comedy|Romance +167268,City of Dead Men (2014),Horror|Thriller +167272,Behind the Camera: The Unauthorized Story of 'Three's Company' (2003),Comedy|Drama +167274,Behind the Camera: The Unauthorized Story of 'Diff'rent Strokes' (2006),Drama +167276,The Ugly Duckling (1931),Animation +167278,The Ugly Duckling (2010),Animation|Children +167280,"30 Is A Dangerous Age, Cynthia (1968)",Comedy +167282,Ba'al (2008),Drama|Fantasy|Horror|Sci-Fi|Thriller +167284,OMG... We're in a Horror Movie (2015),Comedy|Horror +167286,Five (2011),Comedy|Drama +167288,Rodeo and Juliet (2015),Children|Romance +167290,Happy Birthday (2016),Horror|Thriller +167294,The Coolangatta Gold (1984),Drama +167296,Iron Man (1931),Drama +167300,Pleasure Cruise (1933),Comedy|Romance +167302,Don't let Alberto fall into temptation (2014),Comedy +167304,A Tale of Two Critters (1977),Adventure|Children +167306,That Way With Women (1947),(no genres listed) +167308,Hell's Caretaker (2013),(no genres listed) +167310,The Caretaker (2016),Horror|Thriller +167316,The Crooked Man (2016),Horror +167318,The Littlest Outlaw (1955),Children +167320,The Night Digger (1971),Drama|Horror|Thriller +167322,The Trans List (2016),Documentary +167324,Tickle Me (1965),Comedy|Romance|Western +167326,Wedding Rehearsal (1932),Comedy|Drama +167328,Wisdom of Changes - Richard Wilhelm and the I Ching (2011),(no genres listed) +167330,Perry Mason: The Case of the Lethal Lesson (1989),(no genres listed) +167334,Barry (2016),Drama +167336,Saint Death (2007),Documentary +167338,La Santa Muerte (2007),(no genres listed) +167340,Campaign of Hate: Russia and Gay Propaganda (2014),(no genres listed) +167342,Lou ! Journal infime (2014),Comedy +167344,Souvenir Strip of the Edison Kinetoscope (1894),Documentary +167348,¡A mí la legión! (1942),(no genres listed) +167350,Wednesday 04:45 (2015),Crime|Drama|Thriller +167352,Hurricane Bianca (2016),Comedy +167354,Stratos (2014),Crime|Drama +167356,The Legend of Hillbilly John (1974),Drama|Fantasy +167358,Bella Vita (2014),Documentary +167360,Bending Colours (2012),Action|Adventure|Documentary +167362,Electric Slide (2014),Action|Crime|Thriller +167364,Kleinruppin forever (2004),Comedy +167366,The Elementary School (1991),Comedy|Drama|War +167368,Room Full of Spoons (2016),Documentary +167370,Assassin's Creed (2016),Action|Adventure|Sci-Fi +167372,Dr. Cabbie (2014),Comedy +167374,Wishin' and Hopin' (2014),Comedy|Drama +167376,Nuestros amantes (2016),Comedy|Romance +167378,Greater (2016),Children|Drama +167380,A Dog's Purpose (2017),Comedy|Drama +167382,Long Live the Republic (1965),Drama|War +167384,Casus Belli (2010),(no genres listed) +167388,The Cube (1969),Drama +167390,One Week and a Day (2016),Comedy|Drama +167392,Dangal (2016),Drama +167394,Theatre of Life (2016),Documentary +167398,Hamlet at Elsinore (1964),Drama +167400,Perry Mason: The Case of the Musical Murder (1989),(no genres listed) +167402,Zombie Undead (2010),Horror +167404,Ecaterina Teodoroiu (1979),(no genres listed) +167406,Blood and Ties (2013),Thriller +167410,King of the Mountain (1981),Action|Drama +167412,The Darkest Dawn (2016),Sci-Fi +167414,Tolonen (2014),Documentary +167416,Perry Mason: The Case of the All-Star Assassin (1989),Crime|Drama|Mystery +167418,Jingle Bells (1999),Children +167420,The Master and Margarita (1994),Drama|Fantasy|Mystery|Romance +167422,Bright Night (2015),Mystery +167424,Le passe-muraille (2016),Comedy|Fantasy|Romance +167426,Manifesto (2015),Drama +167428,Perry Mason: The Case of the Silenced Singer (1990),Drama|Mystery +167430,Jump (2012),Drama +167432,A Space Program (2015),Adventure|Documentary|Drama +167434,Kids in Love (2016),Drama +167436,Collective: Unconscious (2016),(no genres listed) +167438,Perry Mason: The Case of the Defiant Daughter (1990),(no genres listed) +167440,Thunder (1982),Animation|Fantasy|Horror|Mystery +167442,This Summer Feeling (2015),Drama +167444,The Witching of Ben Wagner (1990),Adventure|Children|Drama|Romance +167446,The Little Kidnappers (1990),Crime|Drama +167448,Domain (2016),Drama|Sci-Fi|Thriller +167450,The Over-the-Hill Gang (1969),Action|Adventure|Comedy|Western +167454,A Christmas Eve Miracle (2015),Children|Comedy +167456,Maula Jat (1979),(no genres listed) +167458,Vehshi Jatt (1975),(no genres listed) +167460,September Eleven 1683 (2012),(no genres listed) +167462,Perry Mason: The Case of the Poisoned Pen (1990),(no genres listed) +167464,Hitlar (1980),(no genres listed) +167466,Sahib Bibi Aur Ghulam (1962),Drama +167468,On Board (1998),(no genres listed) +167470,George Carlin: Complaints & Grievances (2001),Comedy|Documentary +167472,Beyond Valkyrie: Dawn of the 4th Reich (2016),Action|War +167474,The Long Night of Francisco Sanctis (2016),Drama +167476,Rara (2016),Children|Drama +167478,The Guillotines (2012),Action|Adventure|Drama +167480,Packed In A Trunk: The Lost Art of Edith Lake Wilkinson (2015),Documentary +167482,"Bailout at 43,000 (1957)",Drama +167484,Marry Me (2015),Comedy|Romance +167486,Free Floating (2006),Comedy|Drama|Romance +167488,Collide (2016),Action|Thriller +167490,Beep: A Documentary History of Game Sound (2016),Documentary +167492,Enter the Battlefield: Life on the Magic - The Gathering Pro Tour (2016),Documentary +167494,Mower Minions (2016),Animation|Comedy +167496,Motion Picture ('La sortie des ouvriers de l'usine Lumière à Lyon') (1984),(no genres listed) +167498,Baby's Dinner (1895),(no genres listed) +167500,Panorama du grand Canal pris d'un bateau (1896),Documentary +167502,Demolition of a Wall (1896),Documentary +167504,"Fifth Avenue, New York (1897)",(no genres listed) +167506,Mounted Police Charge (1896),(no genres listed) +167508,Mr. Edison at Work in His Chemical Laboratory (1897),Documentary +167510,The Boxing Cats (Prof. Welton's) (1894),Comedy +167512,Annabelle Serpentine Dance (1895),Documentary +167514,Sioux Ghost Dance (1894),Documentary +167516,Sandow (1896),(no genres listed) +167518,Hadj Cheriff (1894),(no genres listed) +167520,Annie Oakley (1894),Documentary +167522,The Sick Kitten (1903),Drama +167524,A Morning Bath (1896),(no genres listed) +167526,Panorama of Esplanade by Night (1901),(no genres listed) +167528,Black Diamond Express (1896),Documentary +167530,Gold Rush Scenes in the Klondike (1899),(no genres listed) +167532,An Interesting Story (1904),Comedy +167534,The Lonedale Operator (1911),(no genres listed) +167536,"Good Luck Charlie, It's Christmas! (2011)",Children|Comedy +167538,Microwave Massacre (1983),Horror +167540,María (y los demás) (2016),Comedy|Drama +167542,El rei borni (2016),Comedy|Drama +167544,Patriots Day (2016),Drama|Thriller +167546,Gold (2016),Drama +167548,"For a Moment, Freedom (2008)",Adventure|Drama +167550,Shadow of the Wolf (1992),Adventure|Drama +167552,Tinker Ticker (2014),Drama +167554,Seasons (2016),Documentary +167556,Perry Mason: The Case of the Ruthless Reporter (1991),Drama|Thriller +167558,Western Spaghetti (2008),(no genres listed) +167560,Sobriety (2016),Drama +167562,I Am Femen (2014),Documentary +167564,The Little Hours (2017),Comedy +167566,Zombie 108 (2012),Horror|Sci-Fi +167568,FirstBorn (2016),(no genres listed) +167570,The OA,(no genres listed) +167572,Hercules: Zero to Hero (1999),(no genres listed) +167574,The Woman in the Septic Tank 2: Forever Is Not Enough (2016),Comedy +167576,Seclusion (2016),Horror|Thriller|War +167578,The Third Party (2016),Comedy|Romance +167580,Adventures in Dinosaur City (1991),Adventure|Children|Fantasy +167582,Dexter's Laboratory: Ego Trip (1999),Animation|Children|Comedy|Sci-Fi +167584,Scary Godmother The Halloween Spooktakular (2003),Animation|Children|Comedy +167586,Top Star (2013),Drama +167592,The Twelve Gold Medallions (1970),Action|Drama +167594,Thru the Wire (1987),Drama +167596,Big Bullet (1996),Action|Crime +167598,Eagle Shooting Heroes (1993),Action|Comedy +167600,Killer Clans (1976),Action|Drama +167602,Jon Richardson Live: Nidiot (2014),Comedy +167604,Milk (1998),(no genres listed) +167606,Dog (2001),(no genres listed) +167608,Wasp (2003),Drama +167610,Why Blame It on the Child? (2016),Children|Comedy +167612,Perry Mason: The Case of the Maligned Mobster (1991),Mystery +167614,Blue Guitar (2016),(no genres listed) +167616,The Aftermath (1982),Horror|Sci-Fi|Thriller +167618,Munchie Strikes Back (1994),Children|Comedy|Fantasy +167620,Leap! (2016),Animation|Children|Comedy +167622,In un posto bellissimo (2015),Drama +167626,Nightmare in Blood (1978),Comedy|Horror +167628,How Sarah Got Her Wings (2015),(no genres listed) +167630,Shank (2009),Action|Drama +167632,"Raging Sun, Raging Sky (2009)",Drama|Fantasy +167634,Fist Fight (2017),Comedy +167636,Monster Trucks (2016),Action|Animation|Children|Comedy|Sci-Fi +167638,Sleepless (2017),Action|Thriller +167640,A Cure for Wellness (2017),Drama|Horror|Mystery|Thriller +167642,Beyond The Edge (2013),Documentary|Drama +167644,He's a Dragon (2015),Adventure|Fantasy|Romance +167646,Perry Mason: The Case of the Glass Coffin (1991),Crime|Drama|Thriller +167648,Beyond Our Ken (2004),Drama|Romance +167650,Swept Under (2015),Crime|Drama|Thriller +167652,Red Dog: True Blue (2016),Children|Comedy|Drama +167654,The Last Dragonslayer (2016),Action|Fantasy +167656,Quel bravo ragazzo (2016),Comedy +167658,Don't Blink: Robert Frank (2015),Documentary +167660,Rock Hudson's Home Movies (1992),Documentary +167662,Across the River (2013),Horror|Mystery|Thriller +167664,Perry Mason: The Case of the Fatal Fashion (1991),(no genres listed) +167666,The Capture of the Green River Killer (2008),Crime|Drama|Mystery|Thriller +167668,Perry Mason: The Case of the Fatal Framing (1992),Crime|Drama|Mystery +167670,Perry Mason: The Case of the Reckless Romeo (1992),Drama|Mystery +167672,Galaxy Hunter (2004),Sci-Fi +167674,All We Had (2016),(no genres listed) +167676,Poison Ivy: The Secret Society (2008),Drama|Thriller +167678,Superheroes: A Never-Ending Battle (2013),Documentary +167680,Garfunkel and Oates: Trying to be Special (2016),Comedy +167682,The Unknown Girl (2016),Crime|Drama|Thriller +167684,Eternity (2016),Drama +167686,Brian Posehn: The Fartist (2013),Comedy +167688,Billy Gardell: Halftime (2011),Comedy +167690,Heroes Wanted (2016),Comedy +167696,The 101-Year-Old Man Who Skipped Out on the Bill and Disappeared (2016),Adventure|Comedy +167698,Viking (2016),Action|Drama +167700,The Snow Queen 3 (2017),Animation +167702,El taxi de los conflictos (1973),Comedy +167704,Life of the Party (1920),Comedy|Drama +167706,Shakespeare Behind Bars (2005),Documentary +167708,Good Fortune (2009),Documentary +167710,Hunting Season (2010),Crime|Drama|Mystery|Thriller +167712,The Agha (1985),(no genres listed) +167714,The Mountain (2012),Action|Drama|Thriller|War +167716,Playing Beatie Bow (1986),Fantasy +167718,The Man (2017),(no genres listed) +167720,Bone in the Throat (2015),Crime|Drama +167722,I Am Gangster (2015),(no genres listed) +167724,My Beautiful Country (2013),Drama +167726,Sheep & Wolves (2016),Adventure|Animation|Children|Comedy +167728,The Gaul (2001),Adventure|Drama +167730,Tonio (2016),Drama +167732,A Street Cat Named Bob (2016),Comedy|Drama +167734,Mr. Vampire 2 (1986),Action|Comedy|Horror +167736,Brothers in Arms (2005),Western +167738,xXx: Return of Xander Cage (2017),Action|Adventure|Crime|Thriller +167740,The Bye Bye Man (2017),Horror|Thriller +167742,Blood on the Mountain (2016),Documentary +167744,Prevenge (2016),Comedy|Drama|Fantasy|Horror|Thriller +167746,The Lego Batman Movie (2017),Action|Animation|Comedy +167748,00 Schneider - Im Wendekreis der Eidechse (2013),Comedy +167752,The Beckoning Silence (2007),Action|Documentary|Drama +167754,Closer to God (2015),Horror|Sci-Fi|Thriller +167756,Of Two Minds (2012),Documentary +167758,Bigfootville (2002),(no genres listed) +167760,DC Showcase: Catwoman (2011),Action|Adventure|Animation|Sci-Fi +167762,Batman Beyond Darwyn Cooke's Batman 75th Anniversary Short (2014),Action|Animation|Sci-Fi +167764,Batman: Strange Days (2014),Action|Animation +167766,Superman 75th Anniversary Animated Short (2013),Animation|Documentary +167768,The Victoria's Secret Fashion Show 2001 (2001),Documentary +167770,Christmas Time In South Park (2000),(no genres listed) +167772,The Spirit of Christmas (1995),Animation|Comedy +167774,The Spirit of Christmas (1992),Animation|Comedy|Thriller +167776,Trailer Park Boys: Say Goodnight to the Bad Guys (2008),Comedy +167778,She's Too Young (2004),Drama +167780,Superman/Shazam!: The Return of Black Adam (2010),Action|Animation +167782,Swearnet Live (2014),Comedy +167784,Trailer Park Boys - Live in F**kin' Dublin (2014),Comedy +167786,When the Bough Breaks (2016),Drama|Horror|Mystery +167788,Déjà vu (1989),Comedy +167790,The Good Boy (2016),Children|Comedy|Drama +167792,"What's Opera, Doc? (1957)",Animation|Children|Comedy +167794,Frantz (2016),Drama +167796,Lace Crater (2015),Comedy|Drama|Fantasy|Horror +167798,Up in the Cellar (1970),Comedy|Romance +167800,Gabriel Iglesias: I'm Sorry for What I Said When I Was Hungry (2016),Comedy +167802,The 24 Hour War (2016),Documentary +167804,Deep Evil (2004),Sci-Fi|Thriller +167806,À fond (2016),Comedy +167808,Fear of the Flesh: The Making of The Fly (2005),Documentary +167810,The Black Panther (1977),Crime|Thriller +167812,Mothers of Men (1917),Drama +167814,A Wedding (2017),(no genres listed) +167816,The Hollow (2016),Crime|Drama|Mystery|Thriller +167818,Wizard Mode (2016),Documentary +167820,Collider (2013),Sci-Fi +167822,The Ideal (2016),Comedy +167824,Perry Mason: The Case of the Heartbroken Bride (1992),Drama|Thriller +167826,The Unspoken (2015),Horror|Thriller +167828,Bartleby (1970),Drama +167830,Freedom Road,(no genres listed) +167832,The Invisible Guest (2016),Thriller +167834,How Videogames Changed the World (2013),Documentary +167836,Perry Mason: The Case of the Skin-Deep Scandal (1993),Drama|Mystery +167838,Kung Fu Yoga (2016),Action|Adventure|Comedy|Mystery +167840,Rangoon (2017),Drama|Romance +167842,Death Race 2050 (2017),Action|Comedy|Sci-Fi +167844,The Night My Mother Killed My Father (2016),Comedy +167848,Burn Country (2016),Drama|Thriller|War +167850,One Piece Film: GOLD (2016),Action|Adventure|Animation +167852,The Zero Boys (1986),Action|Horror|Thriller +167854,"Dana Carvey: Straight White Male, 60 (2016)",Comedy +167856,Bright Lights: Starring Carrie Fisher and Debbie Reynolds (2017),Documentary +167858,Trespass Against Us (2017),Action|Crime|Drama|Thriller +167860,Master (2016),Action|Crime +167862,The Perfect Physique (2015),(no genres listed) +167864,Claire in Motion (2016),Drama +167866,Homerun (2003),Children|Drama +167868,Agoraphobia (2015),Horror|Thriller +167870,The White Helmets (2016),Documentary|War +167872,The Oregon Trail (1939),Action|Western +167874,The Galloping Ghost (1931),Action +167876,The Last of the Mohicans (1932),Action|Adventure +167878,Undersea Kingdom (1936),Action|Fantasy|Sci-Fi +167880,The Adventures of Rex and Rinty (1935),Adventure|Children +167882,The Miracle Rider (1935),Action|Western +167884,The Phantom Empire (1935),Action|Sci-Fi|Western +167886,The Phantom (1943),Action +167888,Murder in the Big House (1942),Crime|Drama|Romance +167890,Firecracker (1981),Action|Thriller +167892,Savage! (1973),Action|Adventure +167894,Stranglehold (1994),Action +167896,Caged Heat II: Stripped of Freedom (1994),Action|Drama|Thriller +167898,One Man Army (1994),Action|Crime +167902,Angelfist (1993),Action|Thriller +167904,Kill Zone (1993),Action|Thriller|War +167906,Firehawk (1993),Action|Adventure|War +167910,Field of Fire (1991),(no genres listed) +167912,Dune Warriors (1991),Fantasy +167914,Silk 2 (1989),Action|Thriller +167918,Nam Angels (1989),Action|Adventure|War +167924,Eddie Griffin: You Can Tell 'Em I Said It (2011),Comedy +167926,The Sisterhood (1988),Action|Adventure|Sci-Fi +167930,Equalizer 2000 (1987),(no genres listed) +167932,Eye of the Eagle (1987),Action|Thriller +167934,Future Hunters (1986),Action|Adventure +167936,Silk (1986),Action|Crime|Drama +167938,The Devastator (1985),(no genres listed) +167940,Naked Vengeance (1985),Action|Crime|Drama +167942,Wheels of Fire (1985),Action|Adventure|Sci-Fi +167944,Final Mission (1984),Action|Crime|Thriller +167946,Caged Fury (1983),(no genres listed) +167948,Stryker (1983),Action|Sci-Fi +167950,Bloodfist 2050 (2005),Action +167952,When Eagles Strike (2003),Action|Thriller +167954,Vulcan (1999),Children|Fantasy +167956,How to Win the US Presidency (2016),Documentary +167958,Hitler's Olympics,Documentary +167960,The Sklar Brothers: What Are We Talking About? (2014),(no genres listed) +167962,All Work All Play: The Pursuit of eSports Glory Live (2015),Documentary +167964,Demetri Martin. Person. (2007),Comedy +167966,Jeff Foxworthy: Totally Committed (1998),Comedy +167968,Them Idiots: Whirled Tour (2012),Comedy +167970,Mama (1976),Adventure|Children|Fantasy +167972,The Secret of Arkandias (2014),Adventure|Comedy|Fantasy +167974,Hallelujah! (2009),Comedy +167976,Past Life (2016),Drama +167978,Singapore GaGa (2005),Documentary +167980,Coin Heist (2017),Crime|Drama +167982,I'm Not Ashamed (2016),Drama +167984,A Cinderella Christmas (2016),(no genres listed) +167986,Rupture (2016),Sci-Fi|Thriller +167988,Buddha in a Traffic Jam (2016),(no genres listed) +167990,The Young Offenders (2016),Comedy +167992,Best and Most Beautiful Things (2016),Documentary +167994,Purgatory (2014),Horror|Mystery +167996,Wedding Bells (2016),Romance +167998,Tulips in Spring (2016),Drama|Romance +168000,Summer Love (2016),Romance +168002,Christmas Land (2015),Children +168004,Die goldene Gans (2013),Children|Fantasy +168006,The Watermill Princess (1994),Children|Comedy|Fantasy +168008,The Golden Goose (1964),Fantasy +168010,A Christmas Wish (2011),Children|Comedy|Drama +168012,Tini: The Movie - The New Life of Violetta (2016),Comedy|Drama +168014,Christmas Belle (2013),Drama|Romance +168016,The Third Prince (1982),Children|Fantasy|Romance +168018,The Salt Prince (1983),Children|Fantasy +168020,Christmas Angel (2009),Comedy|Drama|Romance +168022,Christmas in Boston (2005),Comedy|Drama|Romance +168024,Summer in the City (2016),(no genres listed) +168026,Marvel One-Shot: Agent Carter (2013),Action|Adventure|Fantasy|Sci-Fi +168028,Cup of Love (2016),Romance +168030,A Prince for Christmas (2015),Romance +168032,Lea to the Rescue (2016),Children +168034,The Good Witch's Garden (2009),Children|Comedy|Fantasy|Romance +168036,The Good Witch's Gift (2010),Children|Drama|Fantasy +168038,Advance & Retreat (2016),Romance +168040,Marvel One-Shot: A Funny Thing Happened on the Way to Thor's Hammer (2011),Fantasy|Sci-Fi +168042,A December Bride (2016),Romance +168044,Girlfriends of Christmas Past (2016),Comedy|Romance +168046,A Nutcracker Christmas (2016),Children|Drama|Romance +168048,The Mistletoe Promise (2016),Comedy|Romance +168050,Late Bloomer (2016),(no genres listed) +168052,Sleigh Bells Ring (2016),Romance +168054,After the Fall (2010),Drama +168056,Lucky Girl (2001),Drama +168058,The King's Choice (2016),Action|Drama|War +168060,Rings (2017),Horror +168062,The Barn (2016),Horror +168064,Sword Master (2016),Action +168066,Playback (1962),Crime +168068,The Secret of Blood Island (1964),(no genres listed) +168070,Beautiful Noise (2014),Documentary +168072,Special Delivery (1978),(no genres listed) +168074,Ferocious Planet (2011),Action|Adventure|Sci-Fi|Thriller +168076,We Can Be Heroes! (2002),Children|Drama +168078,Max and Mona (2004),(no genres listed) +168080,Beck - Monstret (1998),(no genres listed) +168082,Bejewelled (1991),Action|Adventure|Children +168084,Bokhandlaren som slutade bada (1969),Comedy|Drama +168086,Födelsedagen (2000),Drama +168088,Gossip (2000),Comedy|Drama +168090,Kizumonogatari II: Passionate Blood (2016),Animation|Fantasy|Mystery +168092,Cadena perpetua (1979),Crime|Drama|Thriller +168094,Fearless Fighters (1971),Action +168096,The Rider Named Death (2004),Drama|Thriller +168098,25 Fireman's Street (1973),Drama|Romance +168104,Zvenigora (1928),Drama|Fantasy +168106,Perry Mason: The Case of the Telltale Talk Show Host (1993),(no genres listed) +168108,Innocent Thing (2014),Drama|Horror|Thriller +168110,Terminal Island (1973),Action|Crime|Thriller +168112,Hard Labor (2011),Drama|Horror +168114,Perry Mason: The Case of the Killer Kiss (1993),Drama|Thriller +168116,The Machine (2006),Comedy|Drama +168118,Gooische Vrouwen 2 (2014),Comedy|Drama|Romance +168120,Gooische Vrouwen (2011),Drama +168122,Raw (2017),Drama +168124,You Are My Pet (2011),Comedy|Romance +168126,Clinical (2017),Thriller +168128,In the Name of... (2013),Drama|Thriller +168130,Teenage Cocktail (2016),Drama|Thriller +168132,Perry Mason: The Case of the Wicked Wives (1993),Drama|Thriller +168134,The Big Swallow (1901),Comedy +168136,Sold (2016),Drama +168138,The Jesus Trip (1971),Action|Drama +168140,Fin'n Catty (1943),Animation +168142,Fresh Hare (1942),Animation|Comedy +168144,Joe Rogan: Live (2006),Comedy +168146,Divorce Invitation (2012),Comedy|Romance +168148,"Chatô, The King of Brazil (2015)",Drama +168150,Legends of the Hidden Temple (2016),Adventure|Children +168152,Año Mariano (2000),Comedy +168154,We Are the Flesh (2016),Drama|Fantasy|Horror +168156,Deserted Cities (2016),(no genres listed) +168158,The Black Sheep of Whitehall (1942),(no genres listed) +168160,A Perry Mason Mystery: The Case of the Grimacing Governor (1994),(no genres listed) +168162,A Perry Mason Mystery: The Case of the Jealous Jokester (1995),(no genres listed) +168164,I.D. (2012),Drama +168166,"Saneamento Básico, O Filme (2007)",Comedy +168168,"Margarita, with a Straw (2014)",Drama +168170,The Bosses (2015),(no genres listed) +168172,Jim Gaffigan: King Baby (2009),Comedy +168174,Jim Gaffigan: Cinco (2017),Comedy +168178,Mala Mala (2014),Documentary|Drama +168180,Isabella Rossellini's Green Porno Live (2015),(no genres listed) +168182,I Deal In Danger (1966),Drama|War +168184,Welcome to Norway (2016),Comedy|Drama +168186,Last Ounce of Courage (2012),Drama +168188,The Counterfeit Killer (1968),(no genres listed) +168192,"Munster, Go Home! (1966)",Comedy +168194,Out of Sight (1966),Comedy +168198,Mysterious Two (1982),Horror|Mystery|Sci-Fi +168202,Men Go to Battle (2016),(no genres listed) +168204,Eu Fico Loko (2017),Comedy +168206,Amor de mis amores (2014),Comedy|Romance +168208,Карусель (1970),Comedy +168210,Staying Vertical (2016),Drama +168212,Very Big Shot (2015),Comedy +168214,The Crash (2017),Crime|Thriller +168216,Don't Grow Up (2015),Horror +168218,Kizumonogatari III: Cold Blood (2017),Animation|Fantasy|Mystery +168222,Promise (1986),Children|Drama +168224,Minha Mãe é Uma Peça 2 (2016),Comedy +168226,Scrappin' (2016),Comedy +168228,The Unemployment Club (2003),(no genres listed) +168230,Troublemaker (1988),Comedy|Crime +168232,Hotel Magnezit (1978),(no genres listed) +168234,The London Nobody Knows (1967),Documentary +168236,To Be a Miss (2016),(no genres listed) +168238,Tunneling the English Channel (1907),(no genres listed) +168240,Afterimage (2017),Drama +168242,I'm a Killer (2016),Crime|Drama|Mystery|Thriller +168244,Maigret's Dead Man (2016),Crime|Mystery|Thriller +168246,ISRA 88 (2016),Adventure|Mystery|Sci-Fi|Thriller +168248,John Wick: Chapter Two (2017),Action|Crime|Thriller +168250,Get Out (2017),Horror +168252,Logan (2017),Action|Sci-Fi +168254,Kong: Skull Island (2017),Action|Adventure|Fantasy +168256,Dark Bar (1988),Thriller +168260,Strange Frequency (2001),Comedy|Fantasy|Horror|Sci-Fi +168262,City of Tiny Lights (2016),Crime|Drama|Thriller +168264,The Other Side of the Underneath (1972),Drama|Horror +168266,T2: Trainspotting (2017),Crime|Drama +168268,The Land Beyond the Sunset (1912),Drama|Fantasy +168270,Ánima Buenos Aires (2012),Animation +168272,Every Second Counts (2009),Children|Documentary|Drama +168274,Patient Zero (2017),Action|Drama|Horror|Thriller +168276,Passage to Mars (2016),Adventure|Documentary|Sci-Fi +168278,Science Fiction Volume One: The Osiris Child,Sci-Fi +168280,DxM (2015),Action|Sci-Fi|Thriller +168282,George Carlin: Playin' with Your Head (1986),Comedy|Documentary +168284,Murder by Natural Causes (1979),Crime|Horror|Mystery +168286,Before I Fall (2017),Drama +168288,The Belko Experiment (2017),Action|Horror|Thriller +168290,A Sun-Tribe Myth from the Bakumatsu Era (1957),Comedy +168292,Tear This Heart Out (2008),Drama|Romance +168294,"Trenk, the Little Knight (2015)",Animation +168296,Unbreakable: The Western States 100 (2012),(no genres listed) +168298,Νόμος 4000 (1962),Drama +168300,tzeni tzeni (1966),Comedy|Romance +168302,The Red Lanterns (1963),Drama +168304,Mia trelli... trelli oikogeneia (1965),Comedy +168306,Miss Director (1964),(no genres listed) +168308,The Hurdy-Gurdy (1955),Comedy|Drama +168310,Μαριχουάνα Στοπ ! (1971),(no genres listed) +168312,Υπάρχει Και Φιλότιμο (1965),(no genres listed) +168314,Be My Cat: A Film for Anne (2015),Horror|Thriller +168316,Jet Boy (2001),Drama +168318,Day of the Reaper (1984),Horror +168320,Kaidan (2007),Drama|Horror|Romance +168322,Macabre (2009),Horror|Thriller +168324,The Booth (2005),Drama|Thriller +168326,The Big Sick (2017),Comedy|Romance +168328,Ingrid Goes West (2017),Comedy|Drama +168330,I Don't Feel at Home in This World Anymore (2017),Crime|Drama +168332,Falling Cat (1894),Documentary +168334,Chocolat (2016),Comedy|Drama +168336,George's Island (1989),Adventure|Children|Drama +168338,Демидовы (1983),Drama +168340,The Case of: JonBenét Ramsey (2016),(no genres listed) +168342,The Love of Ulysses (1984),(no genres listed) +168344,King Arthur: Legend of the Sword (2017),Action|Adventure|Drama|Fantasy +168346,The Rolling Stones Olé Olé Olé! : A Trip Across Latin America (2016),Documentary +168348,Headshot (2016),Action|Thriller +168350,100 Streets (2016),Drama +168352,Incarnate (2016),Horror|Thriller +168354,Dog (2015),Drama +168356,Bienvenido a Veraz,Drama +168358,Saturn 3 (1980),Sci-Fi|Thriller +168360,Victory at Entebbe (1976),Action|Drama +168362,A Lovely Way to Die (1968),Crime|Drama|Mystery +168364,For Love or Money (1963),(no genres listed) +168366,Beauty and the Beast (2017),Fantasy|Romance +168368,The Walls of Jericho (1948),(no genres listed) +168370,Take the L (2017),Comedy +168372,Top Secret Affair (1957),Comedy +168374,Man Without a Star (1955),Western +168376,Dr. Jekyll and Mr. Hyde (1973),Horror|Sci-Fi +168378,The Special London Bridge Special (1972),Comedy +168380,Kandyland (1987),(no genres listed) +168382,Schalcken the Painter (1979),Drama|Fantasy|Horror +168386,The Fiend (1972),Horror +168388,The Smashing Bird I Used to Know (1969),(no genres listed) +168390,The Sandwich Man (1966),(no genres listed) +168392,Gonks Go Beat (1965),Comedy|Sci-Fi +168394,The Black Torment (1964),Horror +168396,Saturday Night Out (1964),Comedy +168398,The Yellow Teddy Bears (1963),Drama +168400,Crosstrap (1962),Crime +168402,"Love, Lies (2016)",Drama|Romance +168404,Happy Anniversary and Goodbye (1974),(no genres listed) +168406,Mughal-E-Azam (1960),Drama|Romance +168408,Boo! A Madea Halloween (2016),Comedy|Horror +168410,Spring Broke (2016),Documentary +168412,Coco (2009),Comedy +168414,Olé ! (2005),Comedy +168418,The Boss Baby (2017),Animation|Children|Comedy +168420,Justice League Dark (2017),Action|Animation|Fantasy|Horror +168422,Breakdown (2016),Thriller +168424,"Liar, Liar, Vampire (2015)",Comedy +168426,Beware the Slenderman (2016),Crime|Documentary +168428,Twist of Faith (2013),Drama +168430,The Similars (2015),Sci-Fi +168432,"Father, Son & Holy Cow (2011)",Comedy|Drama +168434,In Between (2016),(no genres listed) +168436,The Stolen Years (2013),Romance +168438,"I Travel Because I Have to, I Come Back Because I Love You (2009)",Drama +168440,One Man's War (1973),Drama +168442,Juha (1937),Drama +168444,Stolen Death (1938),Thriller +168446,When the Heavens Fell (1972),Drama +168448,Juurakon Hulda (1937),Romance +168450,The Punk Rock Movie (1978),Documentary +168452,Lake Consequence (1993),Drama|Romance +168454,Dangerous Company (2015),Thriller +168456,Mercury Plains (2016),Action|Adventure|Drama +168458,Out of the Dark (1995),Comedy|Fantasy|Horror +168460,Nena (2014),Drama +168462,The other me (2017),Mystery|Thriller +168464,Τέλειοι Ξένοι (2016),Comedy|Drama +168466,Mia melissa ton Avgousto (2007),Comedy +168468,The Island (2009),Comedy +168470,The Island 2: The Hunt for the Lost Treasure (2011),Comedy +168472,The Policeman of the 16th Precinct (2008),Comedy +168474,Ukonvaaja (2016),Documentary +168476,Thank You for Your Service (2016),Documentary +168478,Machines (2016),Documentary +168482,Les Patterson Saves the World (1987),Comedy +168484,Over the Hill (1992),Comedy +168486,Diary of a Lover (1977),Drama +168488,The Howling: New Moon Rising (1995),Horror +168490,Curumim (2016),Documentary +168492,Call Me by Your Name (2017),Drama|Romance +168494,Wet Dreams (1974),(no genres listed) +168498,Resident Evil: The Final Chapter (2017),Action|Horror|Sci-Fi +168500,SelfieParty (2016),Comedy +168502,Nightjohn (1996),Drama +168504,Abou Ben Boogie (1944),Animation +168506,The Greatest Man in Siam (1944),Animation +168508,Allez Oop (1934),Comedy +168510,Escape from the 'Liberty' Cinema (1990),Drama +168518,Return Home (1990),(no genres listed) +168522,True Love and Chaos (1997),Crime|Drama +168524,Sample People (2000),Drama +168526,Prime Mover (2009),(no genres listed) +168528,I Remember You (2015),(no genres listed) +168530,El Hilo Rojo (2016),Drama|Romance +168532,"Gilda, no me arrepiento de este amor (2016)",Drama +168534,Dibu: La Película (1997),Animation|Comedy +168536,Dibu 2: La venganza de Nasty (1998),Animation|Comedy +168538,Dibu 3 (2002),(no genres listed) +168540,Night of Something Strange (2016),Comedy|Horror +168542,American Summer (2016),Adventure|Comedy +168546,Invention of Trust,Drama +168550,The Investigator (2008),Comedy|Crime|Drama|Thriller +168552,11 Minutes Ago (2007),Drama|Romance|Sci-Fi +168554,iBoy (2017),Action|Crime|Sci-Fi|Thriller +168556,L'ora legale (2017),Comedy +168558,Finding Rin Tin Tin (2007),Children|Drama +168560,Die Beautiful (2016),Comedy|Drama +168562,Poveda (2016),(no genres listed) +168564,Homo Sapiens (2016),Documentary +168566,"Taşkafa, Stories of the Street (2013)",(no genres listed) +168568,The Film Critic (2013),Comedy|Drama +168572,Warhead (1977),(no genres listed) +168574,Love Me Deadly (1973),Drama|Horror +168576,Two Lovers and a Bear (2016),Drama|Romance +168578,The Captive (1915),(no genres listed) +168580,Khovanshchina (1960),(no genres listed) +168582,Human (2013),Documentary|Mystery +168584,Better Off Single (2016),Comedy +168586,Catfight (2016),Comedy +168588,After All These Years (2013),Mystery +168594,Miss Right (1982),Comedy|Romance +168596,Secret Places,(no genres listed) +168598,King of the Wind (1990),Adventure +168602,Out of Season (1975),Drama|Romance +168604,Little Girl in Blue Velvet (1978),Drama|Romance +168606,Jump London (2003),(no genres listed) +168608,Mudbound (2017),Drama +168610,A Ghost Story (2017),Drama +168612,Ghost in the Shell (2017),Action|Drama|Sci-Fi +168614,Private Property (1960),Thriller +168616,The Color of Lies (1999),Crime|Drama|Mystery +168618,As You Are (2016),Drama +168620,Maalik (2016),Action|Drama +168622,Lost in the Pacific (2016),Adventure|Sci-Fi|Thriller +168624,The Primary Instinct (2015),Documentary|Drama +168626,Pork Pie (2017),Action|Comedy +168628,Fragments of Antonin (2006),Drama|War +168630,The Journey To Greenland (2016),Comedy +168632,Bill Burr: Walk Your Way Out (2017),Comedy +168634,Delirium (2014),Comedy +168636,Nocturama (2016),Thriller +168638,Stick Man (2016),Animation|Children +168640,Day of the Wolves (1971),Crime|Drama +168642,The Foster Boy (2011),Drama +168644,Great Migrations (2010),Documentary +168646,Dalida (2017),Comedy|Drama +168648,Abbey Grace,(no genres listed) +168650,XX (2017),Horror +168652,Sadako vs. Kayako (2016),Horror|Thriller +168654,Kills on Wheels (2016),Action|Comedy +168656,Ok Jaanu (2017),Drama|Romance +168658,Open Road (2013),Action|Drama|Thriller +168660,August 32nd on Earth (1998),Drama|Romance +168664,Ghostland: The View of the Ju'Hoansi (2016),Documentary +168666,Ten Meter Tower (2016),(no genres listed) +168668,Say a Word for the Poor Hussar (1980),Comedy|Drama +168670,The Feast of the Goat (2006),Drama +168672,"Ready, Steady, Charlie! (2003)",Comedy|Romance +168674,Amsterdam Heavy (2011),Action +168676,The Friend (2008),Drama +168678,Devolved (2010),Comedy +168680,Die Geschichte vom Brandner Kaspar (2008),Comedy|Drama +168682,Late Bloomers (2006),Comedy +168684,Rabbit Heart (1987),Adventure|Children +168686,Hunger auf Leben (2004),Drama +168688,Rascals on the Road (2006),Children|Comedy +168690,Stan Lee Presents: Mosiac (2007),Action|Animation|Fantasy +168692,Never Cry Werewolf (2008),Horror +168694,Offroad (2012),Comedy +168696,On the Doll (2007),Crime|Drama|Thriller +168698,Peng! Du bist tot! (1987),(no genres listed) +168700,Zettl (2012),Comedy +168702,The Lion Child (1993),Adventure|Children +168704,The Ring Thing (2004),Comedy +168706,Who Killed Johnny (2013),Comedy +168708,Death Is My Trade (1977),Drama|War +168710,SAGA: Curse of the Shadow (2013),Action|Adventure|Fantasy +168712,Fifty Shades Darker (2017),Drama|Romance +168714,Wilson (2017),Comedy +168716,A Gathering of Cats (2007),(no genres listed) +168718,My Grandmother (1929),(no genres listed) +168720,Lost & Found (2017),Adventure|Children|Mystery +168722,Attraction (2017),Sci-Fi +168724,Mes trésors (2017),Comedy +168726,The Master: A Lego Ninjago Short (2016),Action|Animation|Comedy +168728,Would-Be Gentleman (1968),(no genres listed) +168732,Wives Under Suspicion (1938),Crime|Drama +168734,Blind Flight (2004),Drama +168736,Henri Cartier-Bresson: The Impassioned Eye (2003),Documentary +168738,Don't Knock Twice (2017),Horror +168740,The Ticket (2016),Drama +168742,Dishonored Lady (1947),Drama +168744,Molly and Me (1945),(no genres listed) +168746,Escape from the Newsroom (2002),(no genres listed) +168748,Pearl (2016),Animation +168750,Blind Vaysha (2016),Animation +168752,Pear Cider and Cigarettes (2016),(no genres listed) +168754,Beautiful Beast (2013),Drama|Romance +168756,The Departure (1967),Comedy|Drama|Romance +168758,Tikkun (2015),Drama +168760,Cosy Dens (1999),Comedy|Drama +168762,The Child Wanderers (2010),(no genres listed) +168764,Blood Curse (2006),Horror|Mystery +168766,The Immortals (2003),Action|Crime|Drama +168768,I'll See You in My Dreams (2003),(no genres listed) +168770,How to Draw a Perfect Circle (2009),Drama +168772,Lavender (2016),Drama|Thriller +168774,Detour (2017),Thriller +168776,My Father Die (2016),Action|Drama +168778,The Book of Love (2017),Drama +168780,Red Billabong (2016),Action|Adventure|Thriller +168782,Onus (2016),Drama|Mystery|Thriller +168784,The Hollow Point (2016),Action|Drama|Thriller +168786,Convenience (2015),Action|Comedy +168788,A Sunday Kind of Love (2016),Drama|Fantasy|Romance +168790,The Body Farm (2011),(no genres listed) +168792,The Great Gilly Hopkins (2016),Children|Comedy|Drama +168794,Twilight Online (2015),Fantasy|Horror +168796,No Breathing (2013),Drama +168798,Hope (2013),Drama +168800,Zhongkui: Snow Girl and the Dark Crystal (2015),Action|Fantasy|Romance +168804,You Will Be Mine (2009),Drama +168806,The Other Side Of Hope (2017),(no genres listed) +168808,Trumped: Inside the Greatest Political Upset of All Time (2017),Documentary +168810,Today (1997),(no genres listed) +168812,Lift me up (2015),Children +168814,Chapter & Verse (2016),Crime|Drama +168816,Different Drummers (2013),Children|Drama +168818,Forbidden to Forbid (2007),(no genres listed) +168820,The Stranger (1973),Sci-Fi +168822,Safe Harbor (2009),Drama +168824,Ozzy (2016),Animation|Children +168826,Hickey (2017),Comedy +168828,Tricks (2007),Comedy|Drama +168830,Night Chase (1970),Mystery +168832,The Man Who Was Too Free (2017),(no genres listed) +168834,Orphan (2017),Drama +168836,Kung Fu Wing Chun (2010),Action|Comedy|Romance +168838,Nieve negra (2017),Thriller +168842,The Child's Eye (2010),Horror +168844,Death by Death (2016),Comedy|Drama +168846,Neal Brennan: 3 Mics (2017),Comedy +168850,Enemy Empire (2013),Adventure|Fantasy|Sci-Fi|Western +168852,The Doors - Live at the Bowl '68 (2012),(no genres listed) +168854,The Spike Jones Story (1988),(no genres listed) +168856,Zappa Plays Zappa (2007),(no genres listed) +168858,La vengeance d'une blonde (1994),Comedy +168860,Lazy Eye (2016),Comedy|Drama|Romance +168862,"Michael Bolton's Big, Sexy Valentine's Day Special (2017)",Comedy +168864,Temps (2016),Comedy|Romance +168866,Free Fall (2014),Action|Drama|Thriller +168868,Eine Insel namens Udo (2011),Comedy +168870,Lucky and Zorba (1998),Animation +168874,Born Of War (2013),Action|Thriller|War +168880,Dakota Bound (2001),Action|Adventure|Sci-Fi +168884,Mine (2016),Thriller +168886,A Decent Man (2016),Drama +168888,Third Guest,(no genres listed) +168890,The Cantor's Son (1937),(no genres listed) +168892,The Tom Green Subway Monkey Hour (2002),Comedy +168894,The Tip of the Iceberg (2016),Mystery|Thriller +168896,Deadly Duo (1962),Mystery +168898,Lost in Florence (2017),Adventure|Drama|Romance +168900,Hunter Gatherer (2016),Drama +168902,Behind Green Lights (1946),Crime +168904,Bad Kids of Crestview Academy (2017),Comedy|Fantasy|Mystery|Sci-Fi|Thriller +168906,Anticipation of the Night (1958),(no genres listed) +168908,Has the Film Already Started? (1951),(no genres listed) +168910,Come Together (2016),Children|Comedy|Drama +168912,A Long Walk (2006),(no genres listed) +168914,Leaving on the 15th Spring (2013),Drama +168916,The Frontier (2015),Crime|Drama|Thriller +168918,Old Partner (2008),Children|Documentary|Drama +168920,Postcard (2010),Drama|Romance|War +168922,Couple in a Hole (2016),Drama|Thriller +168924,Take Me Far Away (2009),Children|Drama +168926,Tashi and the Monk (2015),Documentary +168928,Uncle Kent 2 (2016),Comedy +168930,Sarajevo (2014),Thriller +168932,Maiko Haaaan!!! (2007),Comedy +168934,King of the Belgians (2016),Comedy|Drama +168936,The Happy Film (2016),Documentary +168938,G.I. Samurai (1979),Action|Sci-Fi|War +168940,Tiramisu (2002),Drama|Fantasy|Romance|Sci-Fi +168942,Tykho Moon (1996),Sci-Fi +168944,Queen of Spades (2016),Thriller +168946,Burnout 2 (2016),Action|Comedy +168948,Dreamfish (2016),(no genres listed) +168950,The Queen of Spades (1916),(no genres listed) +168952,Innsaei (2016),(no genres listed) +168954,Flight of the Butterflies (2012),Documentary +168956,Jimi Hendrix: Voodoo Child (2010),Documentary +168958,Sex in the Comix (2012),Documentary +168960,SampleThis (2013),Documentary +168962,Pink (2016),Drama|Thriller +168964,The Taking of Tiger Mountain (2014),Adventure|Thriller|War +168966,Brabançonne (2014),Comedy|Romance +168968,The Red Awn (2007),Drama +168972,To Stay Alive - A Method (2016),(no genres listed) +168974,The Forsaken Land (2006),Drama +168978,An Eye for Beauty (2014),Drama +168980,Apnée (2016),Drama +168982,Floyd Norman: An Animated Life (2016),Documentary +168984,Haunted (1977),Horror +168986,Fever Lake (1996),Horror +168988,The Owners (2014),Comedy|Drama +168994,Heil (2015),Comedy +168996,Smetto quando voglio: Masterclass (2017),Comedy +168998,Curse of the Man Who Sees UFOs (2016),Documentary +169000,Mickey's Gala Premier (1933),Animation +169002,Plane Crazy (1928),Animation|Children +169004,American Sharia,(no genres listed) +169006,Secrets In The Snow (2013),(no genres listed) +169008,Shepherds and Butchers (2016),Drama +169010,The Swimmers (2014),Horror +169012,Cafe Noir (2009),Drama|Romance +169014,Red Wine in the Dark Night,Romance|Thriller +169016,Eternal Summer (2006),Drama|Romance +169018,Water Boyy (2015),Romance +169020,In Dubious Battle (2017),Drama +169022,Classmates (2016),Animation +169024,The Teacher's Diary (2014),Drama|Romance +169026,Black Starlet (1974),Drama +169028,Berlin Syndrome (2017),Drama|Thriller +169030,Az állampolgár (2017),Drama +169032,The Escape (2016),Action|Thriller +169034,Lemonade (2016),(no genres listed) +169036,Peter and the Farm (2016),Documentary +169038,Préjudice (2015),Drama +169040,Starless Dreams (2016),Documentary +169042,Peacock (2015),Comedy|Drama|Romance +169044,Boys Love Gekijouban (2007),Drama +169046,Inspired to Ride (2015),Documentary +169048,The Land of the Enlightened (2016),Documentary +169050,Dukhtar (2014),Thriller +169052,Oriented (2015),(no genres listed) +169054,The Beginning of Life (2016),Documentary +169056,When Hari Got Married (2013),Documentary +169058,Beauties of the Night (2016),Documentary +169060,Trudell (2005),Documentary +169062,October 1 (2014),Thriller +169064,Faith Connections (2013),Documentary|Drama +169066,Dark Fortune (2016),Drama +169068,All This Panic (2016),Documentary +169070,Traitors (2013),Drama +169072,Flex Is Kings (2013),Documentary +169074,Chittagong (2012),Action|Drama|War +169082,The Clearstream Affair (2015),Thriller +169086,Minerita (2013),Documentary +169088,The Tribe (2016),Drama|Sci-Fi|Thriller +169090,The Falcon (1981),Action|Drama +169092,The Story of the Voyages (1983),Adventure|Children|Fantasy +169094,Cat Sick Blues (2016),Comedy|Horror +169096,Dear God No! (2011),Comedy|Horror +169098,Edgar Allan Poe's Lighthouse Keeper (2016),Horror +169100,Even Lambs Have Teeth (2015),Thriller +169102,The Origin of Stitch (2005),Animation +169104,A Tale of Sorrow and Sadness (1977),Drama +169106,Youth in Oregon (2017),Comedy|Drama +169110,Monster (2014),Horror +169112,Love Me Not (2006),Drama +169114,Mood of the Day (2016),Comedy|Romance +169116,1 Litre of Tears (2005),Drama +169118,Tamako in Moratorium (2013),Children|Comedy|Drama +169120,Sketches of Kaitan City (2010),Drama +169122,Mukhsin (2006),Children|Comedy|Drama +169124,Coquille (1999),(no genres listed) +169126,Tada's Do-It-All House (2011),Drama +169128,Children of the Dark (2008),Drama +169130,The Blue Bird (2008),Children|Drama +169132,All Around Us (2008),Drama +169134,Hanging Garden (2005),Drama|Romance +169136,Heaven's Bookstore (2004),Drama|Romance +169138,Love & Loathing & Lulu & Ayano (2010),Drama +169140,The Homeless Student (2008),Comedy|Drama +169142,The Most Beautiful Night In The World (2008),Drama +169144,Village of Dreams (1996),Children +169146,Life Can Be So Wonderful (2007),(no genres listed) +169148,Mitsuko Delivers (2011),Comedy|Drama +169150,Sawako Decides (2010),Drama +169152,Tokyo Park (2011),Drama +169154,Cartagena (2009),Drama|Romance +169156,Villon's Wife (2009),Drama|Romance +169158,Be Sure to Share (2009),Drama +169160,The Ravine of Goodbye (2013),Drama +169162,Pornography: A Thriller (2009),Mystery|Thriller +169164,Song to Song (2017),Drama +169166,To the Bone (2017),Drama +169168,Girlfriend's Day (2017),Comedy|Drama +169170,To Walk Invisible (2016),Drama +169172,Have a Nice Day (2017),(no genres listed) +169174,Higglety Pigglety Pop! or There Must Be More to Life (2010),Children|Fantasy +169176,The Up in Smoke Tour (2000),Documentary +169178,Clarisse or Something About Us (2015),(no genres listed) +169180,American Fable (2017),Thriller +169182,Fögi Is a Bastard (1998),Drama|Romance +169184,You Can't Kill Stephen King (2013),Comedy|Horror +169186,Coda (2013),Animation|Drama +169188,Katherine Ryan: In Trouble (2017),Comedy +169190,Teenage Kicks (2016),Drama +169192,Continental Circus (1972),(no genres listed) +169194,Cam-Girl (2016),Mystery|Thriller +169196,Once Upon a Time Veronica (2012),Drama +169198,Almost Adults (2017),Comedy|Drama|Romance +169200,Blondie's New York and the Making of Parallel Lines (2014),Documentary +169202,A Sinner in Mecca (2015),Documentary +169204,Mein Blind Date mit dem Leben (2017),Comedy +169206,Through the Air (2015),Drama +169208,Girl in the Sunny Place (2013),Drama|Fantasy|Romance +169210,A Good Wife (2017),Drama +169212,Class Relations (1984),Drama +169214,Traumstadt (1973),Adventure +169216,Spoor (2017),Drama +169218,God's Own Country (2017),Drama|Romance +169220,A Fantastic Woman (2017),Drama +169222,Colo (2017),Drama +169224,Deadly Daughters (2016),Thriller +169226,Image (2014),Drama|Thriller +169228,What's a Human Anyway? (2006),(no genres listed) +169230,Winning Favour,(no genres listed) +169232,Christmas on Salvation Street (2014),(no genres listed) +169234,White Wolves - A Cry in the Wild II (1993),Action|Adventure|Children +169236,Teenage Mutant Ninja Turtles: We Wish You a Turtle Christmas (1994),(no genres listed) +169238,Peluca (2003),Comedy +169240,Whn the day had no name,(no genres listed) +169242,"Ana, mon amour (2017)",Drama +169244,Hostages (2017),(no genres listed) +169246,Far from Vietnam (1967),War +169248,Kill Ratio (2016),Action +169250,Trash Fire (2016),Comedy|Horror|Romance +169252,Everything Will Be OK (2006),Animation|Drama +169254,Bockerer (1981),Drama +169256,Lovesong (2017),Drama +169258,Gangs (2009),Comedy|Drama +169260,Germany: A Summer's Fairytale (2006),Documentary +169262,Dieter - The Movie (2006),Animation|Comedy +169264,Jen Kirkman: Just Keep Livin’? (2017),Comedy +169266,Colin Quinn: The New York Story (2016),Comedy +169268,Cedric the Entertainer: Live from the Ville (2016),Comedy +169270,Our Trip to Africa (1966),(no genres listed) +169274,The Fabulous Pastars (2016),Comedy +169276,As I Open My Eyes (2015),Drama +169278,Hôtel Normandy (2013),Comedy +169280,The Fourth Annual 'On Cinema' Oscar Special (2016),Comedy +169282,They Nest (2000),Horror|Sci-Fi +169284,Nuremberg: Its Lesson for Today (1948),Documentary|Drama +169286,Inside the Third Reich (1982),War +169288,Major Grom (2017),Action|Adventure|Drama|Sci-Fi +169290,The Cradle (2007),Horror|Thriller +169292,Offerings (1989),Horror +169294,Becoming Warren Buffett (2017),Documentary +169296,Queen of Spades: The Dark Rite (2015),Horror +169298,Drifter (2016),Crime|Horror|Thriller +169300,Follow (2015),Thriller +169302,Everybody Loves Somebody (2017),Comedy +169304,The Reconquest (2016),Drama|Romance +169306,Max Rose (2016),Drama +169308,Matt Besser: Besser Breaks The Record (2016),Comedy +169310,Rory Scovel: The Charleston Special (2015),Comedy +169312,Tony Hinchcliffe: One Shot (2016),Comedy +169314,Whitney Cummings: I'm Your Girlfriend (2016),Comedy +169316,Alonzo Bodden: Historically Incorrect (2016),Comedy +169318,Theo Von: No Offense (2016),Comedy +169320,Steve-O: Guilty as Charged (2016),Comedy +169322,Stephen Lynch: Hello Kalamazoo (2016),Comedy +169324,Cameron Esposito: Marriage Material (2016),Comedy +169326,Frankie Boyle: Hurt Like You've Never Been Loved (2016),Comedy +169328,Nikki Glaser: Perfect (2016),Comedy +169330,Rachel Feinstein: Only Whores Wear Purple (2016),Comedy +169332,Chris Hardwick: Funcomfortable (2016),Comedy +169334,Gary Gulman: It's About Time (2016),Comedy +169336,Michael Ian Black: Noted Expert (2016),Comedy +169338,Brad Williams: Daddy Issues (2016),Comedy +169340,Quincy Jones: Burning the Light (2016),Comedy +169342,Ben Gleib: Neurotic Gangster (2016),Comedy +169344,Willie Barcena: The Truth Hurts (2016),Comedy +169346,Josh Blue: Delete (2016),Comedy +169348,Godfrey: Regular Black (2016),Comedy +169350,Martin Lawrence Doin’ Time (2016),Comedy +169352,Doug Stanhope: No Place Like Home (2016),Comedy +169354,Sebastian Maniscalco: Why Would You Do That? (2016),Comedy +169356,Lewis Black: Black to the Future (2016),Comedy +169358,Jena Friedman: American Cunt (2016),Comedy +169360,Wanda Sykes: What Happened… Ms. Sykes? (2016),Comedy +169362,Barry Crimmins: Whatever Threatens You (2016),Comedy +169364,Janeane Garofalo: If I May (2016),Comedy +169366,Pete Davidson: SMD (2016),Comedy +169368,Mo Mandel: Negative Reinforcement (2016),Comedy +169370,Kathleen Madigan: Bothering Jesus (2016),Comedy +169372,Dan Levy: Lion (2016),Comedy +169374,Aries Spears: Comedy Blueprint (2016),Comedy +169376,Tony Roberts: Motorcity Motormouth (2016),Comedy +169378,Joey Coco Diaz: Sociably UnAcceptable (2016),Comedy +169380,Tom Papa: Human Mule (2016),Comedy +169382,Nick Thune: Good Guy (2016),Comedy +169384,Ian Harvie: May the Best Cock Win (2016),Comedy +169386,Ogres (2016),Drama +169388,Missing (2007),Crime|Drama|Thriller +169390,RAID Dingue (2017),Comedy +169392,Pre Vis Action (2016),Action +169394,My Entire High School Sinking Into the Sea (2016),Animation +169396,El cimarrón (2006),Drama|Romance +169398,Savage Abduction (1973),Horror|Thriller +169400,Gantz: O (2016),Action|Animation|Horror|Sci-Fi +169402,The Strange Woman (1946),Drama +169404,The Man Who Cheated Himself (1950),Crime|Drama|Mystery|Thriller +169406,Britney Ever After (2017),Drama +169408,The Little Whirlwind (1941),Animation|Comedy +169410,Game Over (2006),Drama +169414,The Friends (1994),Drama +169416,The Roommate (2008),Horror|Thriller +169418,Alive (2015),Drama +169420,Cart (2014),Drama +169422,The Silent Mountain (2014),Adventure|Drama|Romance|War +169424,Ballroom Dancer (2011),Documentary +169426,Indivisible (2016),Drama +169428,Mr. Pig (2016),Drama +169430,Sister Cities (2016),Drama +169432,Emily & Tim (2015),Drama +169434,Magicians: Life in the Impossible (2016),Documentary +169436,Viaje (2015),Drama +169438,Lust in the Mummy's Tomb (2002),Fantasy|Horror +169440,Paris by Night of the Living Dead (2009),Horror +169442,Dynamite Warrior (2006),Action|Thriller +169444,Mercury Man (2006),Action|Adventure +169446,Female Punishment of the Tokugawa (1968),Horror +169448,White Rose Campus: Then Everybody Gets Raped (1982),(no genres listed) +169450,The Strange Saga of Hiroshi the Freeloading Sex Machine (2005),(no genres listed) +169452,Shyness Machine Girl (2009),Action|Comedy|Sci-Fi +169454,Sukeban Deka: Code Name = Saki Asamiya (2006),Action|Crime|Thriller +169456,Lethal Angels (2006),Action|Thriller +169458,Lunch Box (2004),Drama|Romance +169460,Malibu Shark Attack (2009),Horror +169462,Undead Pool (2007),Horror +169464,Cage II: The Arena of Death (1994),Action|Drama +169466,Make-Out with Violence (2008),Comedy|Fantasy|Horror|Romance +169468,Lure: Teen Fight Club (2010),Action|Crime|Drama +169470,Priceless (2016),Drama|Romance +169472,"Nick Cannon: Stand Up, Don't Shoot (2017)",Comedy +169474,Ayurveda: Art of Being (2001),Documentary +169476,Departure (2016),Children|Drama|Romance +169478,Fair Haven (2017),Children|Drama +169480,Akron (2015),Drama|Romance +169482,Parched (2015),Drama +169484,10 Minutes (2014),(no genres listed) +169486,Invasion (1969),Drama +169488,Oklahoma City (2017),Documentary +169490,Fanny's Journey (2016),Drama +169492,Tonight It's You (2016),Thriller +169494,Tonight It's Me (2014),Drama|Romance +169496,L'ordre (1973),(no genres listed) +169498,Buffalo Dance (1894),Documentary +169500,Kung Fu vs Acrobatic (1990),(no genres listed) +169502,Once Upon a Line (2016),Animation +169504,Happy End (2016),(no genres listed) +169506,Asteria (2017),Animation|Comedy|Sci-Fi +169508,Fist of the North Star: Legend of Raoh - Chapter of Death in Love (2006),Action|Animation +169510,Fist of the North Star: Legend of Yuria (2007),Action|Animation +169512,Fist of the North Star: Legend of Raoh - Chapter of Fierce Fight (2007),Action|Animation +169514,Fist of the North Star: Legend of Toki (2008),Action|Animation +169516,Fist of the North Star: The Legend of Kenshiro (2008),Action|Animation +169518,Enemy of the Reich: The Noor Inayat Khan Story (2014),Documentary +169520,Saint Seiya Heaven Chapter: Overture (2004),Animation|Fantasy +169522,Saint Seiya: Evil Goddess Eris (1987),Action|Animation|Fantasy +169524,Saint Seiya: The Heated Battle of the Gods (1988),Action|Animation|Fantasy +169526,Saint Seiya: Legend of Crimson Youth (1988),Action|Animation|Fantasy +169528,Saint Seiya: Warriors of the Final Holy Battle (1989),Action|Animation|Fantasy +169530,Sing (2016),Drama +169532,Silent Nights (2016),(no genres listed) +169534,Timecode (2016),(no genres listed) +169536,Enemies Within (2016),Drama +169538,Nick Di Paolo: Another Senseless Killing (2015),Comedy +169540,Gary Owen: I Agree With Myself (2015),Comedy +169542,Mel Brooks: Live at the Geffen (2015),Comedy +169544,Brian Gaar: Jokes I Wrote At Work (2015),Comedy +169546,Andy Peters: Exclamation Mark Question Point (2015),Comedy +169548,Barry Hilton: The Live Series (2015),Comedy +169550,Keith Robinson: Back of the Bus Funny (2015),Comedy +169552,Ralphie May: Unruly (2015),Comedy +169554,Trevor Moore: High In Church (2015),Comedy +169556,Jay Mohr: Happy. And A Lot. (2015),Comedy +169558,Jim Norton: Contextually Inadequate (2015),Comedy +169560,Nate Bargatze: Full Time Magic (2015),Comedy +169562,Mick Foley: Cheap Pops (2015),Comedy +169564,Brad Williams: Fun Size (2015),Comedy +169566,Christopher Titus: Angry Pursuit of Happiness (2014),Comedy +169568,Jim Breuer: Comic Frenzy (2015),Comedy +169570,Nick Swardson: Taste It (2015),Comedy +169572,Susan Calman: Lady Like (2015),Comedy +169574,Lisa Lampanelli: Back to the Drawing Board (2015),Comedy +169576,Bridget Everett: Gynecological Wonder (2015),Comedy +169578,Jay Pharoah: Can I Be Me? (2015),Comedy +169580,Natasha Leggero: Live at Bimbo's (2015),Comedy +169582,Craig Ferguson: Just Being Honest (2015),Comedy +169584,Jeff Dunham: Unhinged in Hollywood (2015),Comedy +169586,Steve Rannazzisi: Breaking Dad (2015),Comedy +169588,Margaret Cho: PsyCHO (2015),Comedy +169590,Brian Regan: Live From Radio City Music Hall (2015),Comedy +169592,Anjelah Johnson: Not Fancy (2015),Comedy +169594,Jimmy Dore: Sentenced To Live (2015),Comedy +169596,Paul F. Tompkins: Crying and Driving (2015),Comedy +169598,Sarah Colonna: I Can't Feel My Legs (2015),Comedy +169600,Miles Jupp: Is The Chap You're Thinking Of (2015),Comedy +169602,John Bishop Supersonic Live (2015),Comedy +169604,Trevor Noah: Lost In Translation (2015),Comedy +169606,Dara O'Briain Crowd Tickler (2015),Comedy +169608,Kevin Bridges Live: A Whole Different Story (2015),Comedy +169610,Marc Maron: More Later (2015),Comedy +169612,Elliott Morgan: Premature (2015),Comedy +169614,Mike Epps: Don't Take It Personal (2015),Comedy +169616,Scavengers (2013),Action|Sci-Fi +169618,Jerrod Carmichael: Love at the Store (2014),Comedy +169620,Keith Lowell Jensen: Atheist Christmas (2014),(no genres listed) +169622,"Myq Kaplan: Small, Dork and Handsome (2014)",Comedy +169624,Kurt Metzger: White Precious (2014),Comedy +169626,Tracy Morgan: Bona Fide (2014),Comedy +169628,Kristen Schaal: Live at the Fillmore (2013),Comedy +169630,Joe Rogan: Rocky Mountain High (2014),Comedy +169632,Greg Giraldo: Midlife Vices (2009),Comedy +169634,Sebastian Maniscalco: Aren't You Embarrassed? (2014),Comedy +169636,Robert Newman's History of Oil (2006),Action|Comedy|Documentary|Thriller +169638,Josh Blue: Sticky Change (2012),(no genres listed) +169640,Paul F. Tompkins: Driven to Drink (1998),Comedy +169642,Alan Davies: Live at the Lyric (1994),Comedy +169644,"Al Murray, The Pub Landlord - Glass of White Wine for the Lady (2004)",Comedy +169646,John Pinette: I Say Nay Nay (2005),Comedy +169648,John Pinette: I'm Starvin'! (2007),Comedy +169650,Micky Flanagan: Live - Back In The Game Tour (2013),Comedy +169652,Trémulo (2015),Romance +169654,Don't Hang Up (2017),Horror|Thriller +169656,The Glass Castle,Drama +169658,2307: Winter's Dream (2016),Sci-Fi +169660,Bloodthirsty Butchers (1970),Horror +169662,Beautiful Veera (1950),Comedy +169664,Petos (1988),Crime +169666,Mean Dreams (2017),Thriller +169668,Banking on Bitcoin (2016),Documentary +169670,The Void (2016),Horror +169672,Disaster! (2006),Action|Animation|Comedy|Sci-Fi +169674,Zebra Force (1976),Action +169678,Dartmoor Killing (2015),(no genres listed) +169682,Fare (2017),Drama|Thriller +169684,The Thirteenth Tale (2013),Drama +169686,Eu Maior (2013),Documentary|Drama +169688,Painkillers (2015),Action|Sci-Fi|Thriller +169690,The Apostate (2015),Comedy|Drama +169692,Tom of Finland (2017),Drama +169694,Magnus (2016),Documentary +169696,Deconstructing The Beatles | Sgt. Peppers Lonely Hearts Club Band (2017),(no genres listed) +169698,Chicken and Duck Talk (1988),Comedy +169700,NY77: The Coolest Year in Hell (2007),Documentary +169706,Fuglene Over Sundet (2016),Drama|War +169708,The Birch Wood (1970),Children|Drama|Romance +169710,Escape from Segovia (1981),Crime|Drama +169714,Donald Cried (2016),Comedy|Drama +169716,Colin (2008),Action|Drama|Horror +169718,Undead or Alive: A Zombedy (2007),Action|Comedy|Horror +169720,Zombies! Zombies! Zombies! (2008),Comedy|Horror +169722,The Zombie King (2013),Comedy|Horror +169724,Zombie Cop (1991),(no genres listed) +169726,Kill Zombie! (2012),Comedy|Horror +169732,Bigfoot vs. Zombies (2016),Horror +169736,Zombie Fight Club (2014),Action|Horror +169738,Zombie Wars (2006),Horror +169740,Zombie Hamlet (2012),Comedy|Horror +169742,Zombie Fever (2013),Comedy|Horror +169744,Zombie Pizza (2017),Comedy|Horror +169746,Humans vs Zombies (2011),Comedy|Horror|Sci-Fi|Thriller +169748,Zombie Christ (2010),Horror +169750,Stake Land II: The Stakelander (2016),Action|Horror +169752,Sand Storm (2016),Drama +169754,Wolves (2017),Drama +169756,Their Finest (2017),Comedy|Drama|Romance|War +169758,The Ottoman Lieutenant (2017),Drama|Romance|War +169760,Lady Macbeth (2017),Drama +169762,The Sense of an Ending (2017),Drama +169764,Personal Shopper (2016),Drama|Thriller +169766,The Railroad Lady (2016),(no genres listed) +169768,Just a Question of Love (2000),Drama|Romance +169770,Wedding Doll (2015),Drama +169772,Tim Timmerman: Hope of America (2017),Comedy +169774,Window Horses (2016),Animation|Drama +169776,Love on Delivery (1994),Action|Comedy +169778,The Strange Ones (2011),Drama|Mystery +169780,Goblin (2010),Fantasy|Horror|Sci-Fi +169782,River (2015),Crime|Drama|Mystery +169784,Extremis (2016),Documentary +169786,Midnight Diner (2014),Drama +169788,4.1 Miles (2016),Documentary +169790,The Rolling Stones - Havana Moon (2016),(no genres listed) +169792,Carrie Pilby (2016),Comedy +169794,The Jackpot! (1991),Adventure|Comedy +169796,La crise (1992),Comedy|Drama +169798,For Better and Worse (2015),Comedy +169800,The Institute (2017),Horror|Thriller +169802,Lead with Your Heart (2015),Drama|Romance +169804,Internet - O Filme (2017),Comedy +169806,Shame the Devil (2013),Crime|Mystery|Thriller +169808,Prey (2016),Horror|Thriller +169810,Joe's Violin (2016),Documentary +169812,Patients (2017),Comedy|Drama +169814,The Assignment (2016),Action|Thriller +169816,Day of the Panther (1988),Action +169818,FB: Fighting Beat (2007),Action +169820,To Be the Best (1993),Action +169822,Fists of Iron (1995),Action +169824,Bangkok Adrenaline (2009),Action|Comedy +169826,Ramones: Raw (2004),Documentary +169828,Fallen (2016),Adventure|Drama|Fantasy|Romance|Thriller +169830,Laughter of Others (2012),Documentary +169832,Tainá: Uma Aventura na Amazônia (2001),(no genres listed) +169834,Men Are From Mars... And That’s Where I’m Going! (2014),Comedy +169836,Loucas pra Casar (2015),Comedy +169838,Yes or No 2 (2012),(no genres listed) +169840,Mato sem Cachorro (2013),Comedy +169842,The Shack (2017),Drama|Fantasy +169844,Şevkat Yerimdar (2013),Comedy|Romance +169846,Sword of D'Artagnan (2015),Adventure|Children +169848,Some Dogs Bite (2010),Drama +169850,The Bride (2017),Horror +169852,Les Pépites (2016),Documentary +169854,The Tiger Hunter (2015),Comedy +169858,Kings of Kallstadt (2014),Children|Comedy|Documentary +169860,The Shimmering Beast (1982),Documentary +169862,Kundschafter des Friedens (2017),Comedy +169864,Life (2017),Horror|Sci-Fi|Thriller +169866,Race to Mars (2007),Sci-Fi +169868,Lovely Complex (2006),Comedy|Romance +169870,Pro Dia Nascer Feliz (2006),Documentary +169872,Chico Xavier (2010),Drama +169874,Foster (2011),Children|Comedy|Drama +169876,National Geographic American Blackout (2013),Drama +169878,Lake Nowhere (2014),Comedy|Horror +169880,Don't Kill It (2017),Fantasy|Horror +169882,"Goto, Island of Love (1969)",Drama +169884,Bad Charleston Charlie (1973),Comedy|Crime +169886,Mind Over Murder (1979),Thriller +169888,Kaabil (2017),Action|Romance +169890,Zip & Zap and the Captain's Island (2016),Adventure|Comedy +169892,The Raking (2017),Horror +169894,Bugcrush (2006),Horror +169896,Cruel Summer (2016),Drama|Horror|Thriller +169898,The Sunshine Makers (2015),Documentary +169900,The Lost City of Z (2017),Action|Adventure|Drama +169902,Sleight (2017),Action|Drama|Sci-Fi|Thriller +169904,Guyver: Dark Hero (1994),Sci-Fi +169906,The Night Of (2016),Crime|Drama +169908,Robert Schimmel: Unprotected (1999),Comedy +169910,Bill Maher: Be More Cynical (2000),Comedy +169912,Denis Leary: No Cure for Cancer (1993),Comedy +169914,Wyatt Cenac: Comedy Person (2011),Comedy +169916,"Nick Swardson: Seriously, Who Farted? (2009)",Comedy +169918,Jon Stewart: Unleavened (1996),Comedy +169920,Triumph’s Election Special 2016 (2016),Comedy +169922,Eugene Mirman: An Evening of Comedy in a Fake Underground Laboratory (2012),Comedy +169924,"Pete Holmes: Nice Try, the Devil! (2013)",Comedy +169926,Kurt Braunohler: Trust Me (2017),Comedy +169928,Moshe Kasher: Live in Oakland (2012),Comedy +169930,Chris Hardwick: Mandroid (2012),Comedy +169932,School's out (2015),(no genres listed) +169934,Seduced: Pretty When You Cry (2001),(no genres listed) +169936,Rânia (2012),(no genres listed) +169938,The Miracle Man (1919),Drama +169940,Days of Thrills and Laughter (1968),Documentary +169942,American Bad Boy (2015),Drama +169944,School Dance (2014),Comedy +169948,Tomorrow Everything Starts (2016),Comedy|Drama +169950,Disappearance (2017),Drama +169952,Carry On Regardless (1961),Comedy +169954,Prohibition (2011),Documentary +169956,The Greatest Party on Earth (2016),Documentary +169958,Buster's Mal Heart (2017),Drama|Mystery +169960,Tess of the D'Urbervilles (2008),Drama +169962,2 Lava 2 Lantula! (2016),Horror|Sci-Fi|Thriller +169964,LD 50 Lethal Dose (2003),Horror +169966,The King (2017),Crime|Drama +169968,Killer Nun (1979),Drama|Horror|Thriller +169970,Ghosts of Darkness (2017),Horror +169972,Black Ice (1994),(no genres listed) +169974,If Cats Disappeared From the World (2016),Drama +169976,The Magic Mountain (2015),(no genres listed) +169978,The Mediator (1990),(no genres listed) +169980,Fish Heads (1980),(no genres listed) +169982,Power Rangers (2017),Action|Adventure|Sci-Fi +169984,Alien: Covenant (2017),Action|Horror|Sci-Fi|Thriller +169986,Beata ignoranza (2017),(no genres listed) +169988,Bremer Freiheit (1972),Drama +169990,Jail Bait (1973),(no genres listed) +169992,Free Fire (2017),Action|Crime|Drama +169994,Humdrum (1998),(no genres listed) +169996,The Other Half (2016),Drama|Romance +169998,Escape from Mars (1999),Sci-Fi +170000,Stranger in Our House (1978),Horror|Mystery|Thriller +170006,Rainer Werner Fassbinder's World on a Wire: Looking Ahead to Today (2010),Documentary +170008,Shinjuku Boys (1995),(no genres listed) +170010,Angèle and Tony (2011),Romance +170012,Silvered Water (2014),Documentary +170014,Austin to Boston (2015),Documentary +170016,Southern Fried Bigfoot (2007),Documentary +170018,Between Two Wars (1978),(no genres listed) +170020,Desire (2012),Drama +170022,e-motion (2013),Documentary +170024,Casting JonBenet (2017),Documentary +170026,Django (2017),Drama +170028,Canola (2016),Children|Drama +170030,The Vessel (2016),Drama +170032,Smolensk (2016),Drama|Thriller +170036,Milton's Secret (2016),Children|Drama +170040,God's Compass (2016),Drama +170042,The Passion (2016),Drama +170044,Fight Valley (2016),Action +170046,Amy Schumer: The Leather Special (2017),Comedy +170048,Dead Man Talking (2012),Comedy|Drama +170050,The Man in 3B (2015),Mystery +170054,Doctor's Orders (1934),Comedy +170056,The Prince and the Pauper (1962),(no genres listed) +170058,Almost Angels (1962),(no genres listed) +170060,The Amorous Prawn (1962),Comedy +170062,The Importance of Being Earnest (1986),(no genres listed) +170064,Miguel San Miguel (2012),(no genres listed) +170066,As You See (1986),Documentary +170068,Are We Ok? (2013),Comedy|Drama +170070,Unutursam Fısılda (2014),Drama +170103,The Centerfold Girls (1974),Drama|Thriller +170105,Saattokeikka (2017),Comedy|Drama +170107,Slaves in Bondage (1937),Drama +170109,Blindpassasjer,(no genres listed) +170111,The Puppet Syndrome (2015),Drama +170113,The Yellow Rolls-Royce (1964),Comedy|Drama|Romance +170115,The Strange Case of Wilhelm Reich (2013),Drama +170117,Next Floor (2008),(no genres listed) +170119,The Shaman (2015),Drama|Sci-Fi|Thriller +170121,The Scapegoat (1959),Crime|Drama|Thriller +170123,An Elephant Can Be Extremely Deceptive (1976),Comedy +170125,Little Witch Academia: The Enchanted Parade (2015),Action|Animation|Comedy|Fantasy +170127,Samurai X: Trust & Betrayal (1999),Action|Adventure|Animation|Drama|Romance +170129,Sleepaway Camp II: Unhappy Campers (1988),Comedy|Horror +170133,Our Girl Friday (1953),Comedy +170137,John and Julie (1955),Children|Comedy +170141,Trial and Error (1962),Comedy|Drama +170143,Where Does It Hurt? (1972),Comedy +170145,A Day at the Beach (1972),Drama +170149,Blackjack (1978),Action|Crime +170151,The Party (2017),Comedy +170153,The Dinner (2017),Drama|Mystery|Thriller +170155,Wild Mouse (2017),Comedy|Crime|Drama +170157,The Avenue (2017),Crime|Drama +170159,The Bridge on the River Kwai: An Appreciation by Filmmaker John Milius (2000),Documentary +170161,The Choirboys (1977),Comedy|Crime|Drama +170163,The Most Fertile Man in Ireland (2000),Comedy +170165,Ngati (1987),(no genres listed) +170167,Jungle Cat (1959),(no genres listed) +170169,Passport to Shame (1958),Crime|Drama +170171,Say Hello to Yesterday (1971),Comedy|Drama +170173,Mrs. Amworth (1975),Horror|Mystery +170183,Arsenal (2017),Thriller +170185,Tarzan the Magnificent (1960),Action|Adventure +170191,2001: A Space Travesty (2000),Comedy|Sci-Fi +170193,Brink! (1998),Drama +170195,Timecop 2: The Berlin Decision (2003),Action|Sci-Fi +170197,A Date for Mad Mary (2016),Drama +170199,Zona hostil (2017),Action|Drama|War +170201,Jim Norton: Mouthful of Shame (2017),Comedy +170203,Epoch: Evolution (2003),Action|Sci-Fi|Thriller +170205,Epoch (2001),Sci-Fi +170207,Zoology (2016),Drama|Fantasy +170209,From Straight A's to XXX (2017),Drama +170211,Snapdragon (1993),Mystery|Romance|Thriller +170213,Wallace & Gromit's Cracking Contraptions (2002),Animation|Comedy +170215,Slove (2011),Action|Thriller +170217,Rad (1986),Children|Drama +170221,Stray Bullets (2017),Crime|Drama|Thriller +170223,Psycho Cop Returns (1993),Horror +170225,Psycho Cop (1989),Horror +170227,Dead Man's Folly (1986),Crime|Drama|Mystery|Thriller +170229,My Brother's Keeper (2014),Drama +170231,Jaurès (2012),(no genres listed) +170233,Gaea Girls (2000),Documentary +170235,The Invisible Guardian (2017),Crime|Thriller +170237,Haven (2004),Crime|Drama +170239,Windwalker (1980),Adventure|Drama|Western +170241,Born in China (2017),Documentary|Drama +170245,One Breath (2016),Drama +170247,Population Zero (2016),Crime|Mystery|Thriller +170251,Poodle Springs (1998),Crime +170253,Gemini (2017),Thriller +170255,Junior (2011),Documentary +170257,Rain (1929),Documentary +170259,Lily & the Snowman (2015),Animation +170261,Ma' Rosa (2016),Drama +170263,Trevor Noah: Afraid of the Dark (2017),Comedy +170265,The Barbarians (1987),Adventure|Fantasy +170267,Kill Squad (1982),Action|Drama +170269,Smash Palace (1982),Drama +170271,Icebreaker (2000),Action|Adventure|Thriller +170273,The Tommyknockers (1993),Horror|Sci-Fi +170275,Jumping Ship (2001),Children|Drama +170277,Jason and the Argonauts (2000),Action|Children|Fantasy +170279,Darkman III: Die Darkman Die (1996),Action|Sci-Fi|Thriller +170281,The Gingerdead Man (2005),Horror +170283,The Time Shifters (1999),Action|Sci-Fi|Thriller +170285,Inspector Gadget 2 (2003),Action|Adventure|Children|Comedy +170287,Species: The Awakening (2007),Horror|Sci-Fi|Thriller +170289,Species III (2004),Action|Horror|Sci-Fi +170291,Population 436 (2006),Drama|Horror|Mystery|Thriller +170293,Lilo & Stitch 2: Stitch has a Glitch (2005),Animation|Children|Comedy +170295,The Stoned Age (1994),Comedy +170297,Ultimate Avengers 2 (2006),Action|Animation|Sci-Fi +170299,Totally Awesome (2006),Comedy +170301,Christmas Vacation 2: Cousin Eddie's Island Adventure (2003),Comedy +170303,The Legend of Billie Jean (1985),Action +170305,The Sandlot 2 (2005),Children|Comedy +170307,Rubber Face (1983),(no genres listed) +170309,Night Creature (1978),Adventure|Horror|Thriller +170311,Ali & Nino (2016),Drama|Romance +170313,Night Cries (2015),Action|Western +170315,Thirst (2016),Action|Sci-Fi|Thriller +170317,Lost in Paris (2017),(no genres listed) +170319,The Blue Butterfly (2004),Adventure|Children|Drama +170321,Santo en Anónimo mortal (1975),(no genres listed) +170323,Madison County (2012),Horror|Mystery|Thriller +170325,Flor marchita (1969),(no genres listed) +170327,The Field Mouse (1941),(no genres listed) +170329,Cleopatra's Palace: In Search of a Legend (1999),Documentary +170331,Ghost Planes and the Mysteries of Flight 370 (2014),(no genres listed) +170333,Los indolentes (1979),(no genres listed) +170335,Red Water (2003),Action|Horror|Thriller +170337,Cárcel de Mujeres (1951),Drama +170339,Park Road - the Movie (2012),Comedy|Drama|Mystery +170341,Casi treinta (2013),Comedy +170343,El amor no es ciego (1950),Drama|Romance +170345,El Viaje de la Nonna (2008),Comedy +170347,The Things of Love (1989),Drama|War +170349,"Pulp: a Film About Life, Death & Supermarkets (2014)",Documentary +170351,The Russian Game (2007),Comedy +170353,Everyone's Going to Die (2013),(no genres listed) +170355,Mulholland Dr. (1999),Drama|Mystery|Romance +170357,Dave Chappelle: The Age of Spin (2017),Comedy +170359,David Bowie: The Last Five Years (2017),Documentary +170361,Sami Blood (2016),Drama +170363,Love and Fury (2016),Drama +170365,Blood Rage (1987),Horror +170367,About The Pink Sky (2012),Drama +170369,The Evil Within (2017),Horror|Thriller +170371,Space Mutiny (1988),Action|Adventure|Romance|Sci-Fi +170377,The Last Laugh (2016),Documentary +170379,25 April (2015),Documentary +170381,The Secret of Evil (2014),Horror|Mystery|Thriller +170383,Torn Apart (2006),Drama|Romance +170385,Enemies with Benefits (2016),Comedy +170389,Going South (2009),Drama +170391,Missing (2008),Fantasy|Thriller +170393,The Last Word (2017),Comedy +170395,Madagascar Adventure (1944),War +170397,Encounter at Raven's Gate (1988),Drama|Fantasy|Sci-Fi|Thriller +170399,CHiPS (2017),Action|Comedy|Drama +170401,Table 19 (2017),Comedy|Drama +170403,Going in Style (2017),Comedy +170405,Bokeh (2017),Drama|Sci-Fi +170407,Alibi.com (2017),Comedy +170409,Island in the Sky (1953),Adventure|Drama +170411,Dave Chappelle: Deep in the Heart of Texas (2017),Comedy +170413,Red Nightmare (1962),Drama|Sci-Fi +170415,Young Dillinger (1965),Crime|Drama +170417,The Bandits (1967),Adventure|Western +170419,Sudden Death (1977),Action|Drama +170421,Murph the Surf (1975),Comedy|Crime|Drama +170423,All Nighter (2017),Comedy +170425,Monsieur & Madame Adelman (2017),Comedy|Drama +170427,Winstanley (1976),Drama +170429,9 Dalmuir West (1962),Documentary +170431,Leave to Remain (2013),Drama +170433,Hercules (1983),Action|Fantasy +170435,The Incredible Adventures Of Professor Branestawm (2014),Children|Fantasy +170437,Memórias Póstumas (2001),Comedy|Drama +170439,"Didi, o Cupido Trapalhão (2003)",Comedy +170441,Arirang (2011),Documentary +170443,The Batman Shootings (2012),Documentary +170445,10 Days in a Madhouse (2015),(no genres listed) +170447,Deidra & Laney Rob a Train (2017),Comedy|Crime|Drama +170449,How to Live in the German Federal Republic (1990),Documentary +170451,Dumbland (2002),(no genres listed) +170453,Carnage: Swallowing the Past (2017),Comedy|Drama +170455,Boys of Abu Ghraib (2014),Drama|Thriller|War +170457,Smoking Guns (2016),Comedy|Crime|Drama +170459,A Flying Jatt (2016),Action|Adventure|Fantasy +170461,Fog in August (2016),Drama +170463,A.D. The Bible Continues (2015),(no genres listed) +170465,The Lost World of Communism,(no genres listed) +170467,The Novelist (2008),(no genres listed) +170469,Shooters (2001),Action|Crime|Thriller +170471,A tiro limpio (1963),Crime +170473,Confessions of an Eco-Terrorist (2011),Documentary +170475,The Fatal Glass of Beer (1933),Comedy +170477,Atomica (2017),Sci-Fi|Thriller +170479,Cleopatra (1912),Drama +170481,The Most Hated Woman in America (2017),Crime|Drama +170483,Videograms of a Revolution (1992),Documentary +170485,O Kadhal Kanmani (2015),Children|Drama|Romance +170487,Nayakan (1987),Action|Drama +170489,Sidney Hall (2017),Drama +170491,The Secret Game (1917),Drama +170493,Apex: The Story of the Hypercar (2016),Documentary +170495,Gettin' In (2012),Comedy +170497,Vine of the Soul: Encounters with Ayahuasca (2010),Documentary +170499,Swashbuckler (1976),Action|Adventure|Comedy +170501,Bitter Harvest (2017),Drama|Romance|War +170503,People You May Know (2016),Comedy|Drama +170505,All You Need is Love (2009),Comedy|Drama|Romance +170507,You Should Meet My Son (2010),Children|Comedy +170509,Esteros (2016),Comedy|Drama|Romance +170511,Novatos (2015),Drama +170513,Eating Out (2004),Comedy +170515,Eating Out 2: Sloppy Seconds (2006),Comedy|Romance +170517,Eating Out: All You Can Eat (2009),Comedy +170519,A Esperança é a Última Que Morre (2015),Comedy +170521,Nothing in Return (2015),Drama +170523,Monster Pies (2013),Drama|Romance +170525,Mulligans (2008),Drama +170527,Rock Haven (2007),Drama|Romance +170529,John Apple Jack (2013),Comedy|Romance +170531,Triple Crossed (2013),Mystery|Thriller +170533,Awakening (2008),(no genres listed) +170535,Tell No One (2012),Comedy +170537,Vengeance: A Love Story (2017),Thriller +170539,Workers Leaving the Factory (1995),(no genres listed) +170541,The Amazing Truth About Queen Raquela (2008),Documentary|Drama +170543,Princesa (2001),Drama|Romance +170545,Pluto (2012),Drama +170549,Turk 182! (1985),Action|Comedy|Drama +170551,The Quiet Family (1998),Comedy +170553,The Warrior's Gate (2016),Action|Adventure +170555,The Bar (2017),Comedy|Thriller +170557,Vulcania (2015),Sci-Fi|Thriller +170559,A Bullet for Pretty Boy (1970),Action|Crime|Drama|Thriller +170561,The Flag of Iron (1980),Action|Drama +170563,Caprice (2015),Comedy|Romance +170565,Aurélie Laflamme: Les pieds sur terre (2015),Comedy +170567,"Nativity 3: Dude, Where's My Donkey?! (2014)",Comedy +170569,The Todd Killings (1971),Thriller +170571,7:35 in the Morning (2003),(no genres listed) +170573,The Story of the Kelly Gang (1906),Action|Crime|Drama +170575,Deadly Revenge (2013),Thriller +170577,Those Who Remain (2007),Drama|Romance +170579,That's Not Us (2015),Drama +170581,Our Loved Ones (2015),Drama +170583,The Birds II: Land's End (1994),Horror +170585,Operation Golden Phoenix (1994),Action +170587,Claws (1977),Horror|Thriller +170589,Middle Man (2016),Comedy|Crime|Drama +170591,DMB (2000),Comedy +170593,Galgameth (1997),(no genres listed) +170595,My Little Princess (2011),Drama +170597,A Plasticine Crow (1981),Animation +170599,Closed Spaces (2008),Comedy|Drama +170601,RRRrrrr!!! (2004),Comedy +170603,"Bad, Black & Beautiful (1975)",Action +170605,Pandora (2016),Action|Drama|Thriller +170607,Dolphin Lover (2015),Documentary|Romance +170609,Song For a Raggy Boy (2003),Drama|Romance +170611,The Old Man and the Sea (1999),Animation +170613,One Hundredth of a Second (2006),Drama|War +170615,Amphibian Man (1962),Adventure|Romance|Sci-Fi +170617,Sky. Plane. Girl. (2002),(no genres listed) +170619,Cruelty (2007),(no genres listed) +170621,The Castle (1994),Drama +170623,Shadowboxing (2005),Action +170625,Miles (2016),Drama +170627,Smurfs: The Lost Village (2017),Adventure|Animation|Children|Comedy +170629,The Discovery (2017),Drama|Romance|Sci-Fi +170631,Is That a Gun in Your Pocket? (2016),Comedy +170633,Big Jet (2015),(no genres listed) +170635,Rejected (2000),Animation +170637,Viceroy's House (2017),Drama +170639,Toward the Terra (1980),Action|Adventure|Animation|Sci-Fi +170641,Spring on Zarechnaya Street (1956),Romance +170643,The Devotion of Suspect X (2017) (2017),Mystery|Thriller +170645,The Zookeeper's Wife (2017),Drama +170647,Max and the Junkmen (1971),Thriller +170649,The Outskirts (1998),Drama +170651,The Children of Iron Gods (1993),Drama +170653,Wild Field (2008),Drama +170655,Yoroi: Samurai zombie (2008),Action|Horror +170657,Mud Zombies (2008),Horror +170659,Murder in Three Acts (1986),Crime|Drama|Mystery +170661,Female Fight Club (2017),Action +170663,Captured (1959),War +170665,Ithaca (2015),Drama +170667,La Bionda (1993),(no genres listed) +170669,"All Governments Lie: Truth, Deception, and the Spirit of I.F. Stone (2016)",Documentary +170671,I still hide to smoke (2016),(no genres listed) +170673,Louise by the Shore (2016),Animation +170675,The Bed-Sitting Room (1969),Comedy|Drama +170679,"If He Hollers, Let Him Go! (1968)",Crime|Drama +170681,Days of Hope (1945),(no genres listed) +170683,Senki szigete (2014),Comedy|Romance +170685,Lone Wolves (2016),Action|Sci-Fi +170687,Julie & Jack (2003),Romance|Sci-Fi +170689,The Kids Are Alright (1979),Documentary +170691,Eloise (2017),Horror|Mystery|Thriller +170693,The Coming Days (2010),Drama|Sci-Fi +170695,Mardi Gras Massacre (1978),Horror +170697,Gifted (2017),Drama +170699,White Coffin (2016),Action|Horror|Thriller +170701,Brave Miss World (2013),Documentary +170703,Born to Race: Fast Track (2014),Action +170705,Band of Brothers (2001),Action|Drama|War +170707,Hornblower: Loyalty (2003),Adventure|Drama|War +170709,Teen Titans: The Judas Contract (2017),Action|Animation|Sci-Fi +170711,The Champions (2015),Documentary +170715,Going Under (2004),Drama +170717,The Alpha Caper (1973),(no genres listed) +170719,Sequence Break,(no genres listed) +170721,Milling the Militants (1913),(no genres listed) +170723,The Headless Eyes (1971),Horror +170725,Johanneksen leipäpuu (1994),(no genres listed) +170727,The Honourable Woman (2014),(no genres listed) +170729,Louis C.K. 2017 (2017),Comedy +170731,De Premier (2016),Thriller +170733,24 (2016),Action|Sci-Fi|Thriller +170735,X: The Unheard Music (1986),Documentary +170737,Claire (2001),Fantasy +170739,The Collector (1997),(no genres listed) +170741,Cantábrico (2017),(no genres listed) +170743,A Place in the World (1992),Action|Drama +170745,13 reasons why,(no genres listed) +170747,Habibie & Ainun (2012),Drama +170749,The Wild Women of Wongo (1958),Adventure|Comedy|Fantasy +170751,Aftermath (2017),Drama|Thriller +170753,Beware! The Blob (1972),Comedy|Horror|Sci-Fi +170755,Small Town Killers (2017),Comedy|Crime +170757,Type O Negative: After Dark (1998),(no genres listed) +170761,Daniele and Maria (1973),Drama|Romance +170763,Sideways (2009),Comedy|Romance +170765,Between Two Fires (2010),Drama|Romance|Thriller +170767,The Making of 'The Bridge on the River Kwai' (2000),Documentary +170771,The Recipe (2010),Drama|Mystery|Romance|Thriller +170773,The Baker (2007),Comedy +170775,The Secret Scripture (2016),Drama +170777,There Once Was a Dog (1982),Animation|Children|Comedy +170779,The Bigfoot Project (2017),Comedy +170781,The Case for Christ (2017),Drama +170783,1 Mile to You (2017),(no genres listed) +170785,Spark: A Space Tail (2017),Animation|Children +170787,"Everything, Everything (2017)",Drama|Romance +170789,Diary of a Wimpy Kid: The Long Haul (2017),Children|Comedy +170791,Fight For Space (2016),Documentary +170793,Paint It Black (2016),Drama +170795,Felicity (2017),Drama +170797,"Dr. Syn, Alias the Scarecrow (1963)",Adventure|Children +170799,Twin Peaks: The Missing Pieces (2014),Crime|Drama|Thriller +170801,Bread of Happiness (2012),Adventure|Comedy +170803,We are the tide (2016),Drama|Mystery|Sci-Fi +170805,Her Love Boils Bathwater (2016),Comedy|Drama +170807,Dance to Death (2017),Action|Fantasy +170809,The Spacewalker (2017),Drama +170811,Night's Tightrope (2016),Drama +170813,Baywatch (2017),Action|Comedy +170815,Unforgettable (2017),Thriller +170817,Snatched (2017),Action|Comedy +170819,Replica (2005),Romance|Sci-Fi|Thriller +170821,Life Upside Down (1964),Drama +170823,Type O Negative: Symphony for the Devil (2006),(no genres listed) +170825,Superbia (2016),(no genres listed) +170827,The Mummy (2017),Action|Adventure|Fantasy|Horror|Thriller +170829,Verschwende deine Jugend (2003),Comedy|Drama +170831,True True Lie (2006),Comedy|Drama|Fantasy|Romance|Thriller +170833,The New Swiss Family Robinson (1998),Adventure +170835,From a House on Willow Street (2017),Horror +170837,Life-Size (2000),Children|Comedy|Fantasy +170839,The Matrimaniac (1916),(no genres listed) +170841,Diary (2006),Horror|Thriller +170843,Still Life (1997),Documentary +170845,Adama (2015),Animation +170847,Taxandria (1994),(no genres listed) +170849,In Memory of My Father (2005),Comedy|Drama +170851,The Mouse and His Child (1977),Animation +170853,1:54 (2016),Drama +170855,Bus Driver (2016),Action +170857,"Blood, Sand & Gold (2017)",Action +170859,Soldiers Of The Damned (2015),Action|Horror|Thriller|War +170861,Dead West (2016),Crime|Drama|Horror|Thriller +170863,The Sweet Life (2016),Comedy|Drama|Romance +170865,Back to the Well: 'Clerks II' (2006),Documentary +170867,Dear Diary I Died (2017),Drama +170869,Prison Images (2000),Documentary +170871,Boy Missing (2016),Mystery|Thriller +170873,Granny O'Grimm's Sleeping Beauty (2008),Animation +170875,The Fate of the Furious (2017),Action|Crime|Drama|Thriller +170877,Cezanne and I (2016),Comedy|Drama +170879,Wild and Woolly (1917),Action|Comedy|Drama +170881,After Porn Ends 2 (2017),Documentary +170885,Burning Sands (2017),Drama +170887,Scoop! (2016),Mystery +170889,I Am Not Madame Bovary (2016),Comedy|Drama +170891,The Legend Is Born: Ip Man (2010),Action|Drama +170893,Teleios (2017),Sci-Fi +170895,Right Here Right Now (2016),Drama +170897,Sandy Wexler (2017),Comedy +170899,Walking with the Enemy (2014),(no genres listed) +170901,Extortion (2017),Adventure|Crime|Drama +170903,The Swan Princess Christmas (2012),Animation +170905,The Game Is Over (1966),Drama|Romance +170907,Betting on Zero (2016),Documentary +170909,Judging Japan (2016),(no genres listed) +170911,The Creators of the Shopping Worlds (2001),(no genres listed) +170913,Here Alone (2016),Drama|Horror|Sci-Fi|Thriller +170915,London Spy (2015),(no genres listed) +170917,The Transfiguration (2017),Drama|Horror +170919,"Sweet, Sweet Lonely Girl (2016)",Drama|Horror|Thriller +170921,Fantozzi Against the Wind (1980),Comedy +170923,Love on the Run (1936),Comedy|Fantasy|Romance +170925,The Rift (2016),Horror|Sci-Fi|Thriller +170927,Another Evil (2016),Comedy +170929,Au Revoir Taipei (2010),Comedy +170931,L'allenatore nel pallone (1984),Comedy +170933,White Collar Blues (1975),Comedy +170935,I Am Self-Sufficient (1976),Comedy|Drama +170937,Win It All (2017),Comedy +170939,Captain Underpants: The First Epic Movie (2017),Action|Animation|Children|Comedy +170941,3 Idiotas (2017),(no genres listed) +170943,Band Aid (2017),(no genres listed) +170945,It Comes at Night (2017),Horror|Mystery|Thriller +170947,Megan Leavey (2017),Adventure|Drama|War +170949,My Cousin Rachel (2017),Drama|Romance +170951,I Love You Both (2016),Comedy +170955,11:55 (2016),Crime|Drama +170957,Cars 3 (2017),Adventure|Animation|Comedy +170959,Maudie (2017),Drama|Romance +170961,Resident Evil: Vendetta (2017),Animation|Horror +170963,A Beginner's Guide to Snuff (2016),Comedy|Horror|Thriller +170965,Secrets of the Summer House (2008),Drama|Horror|Mystery|Thriller +170967,Mad Families (2017),Comedy +170969,The False Secrets (2017),Comedy +170971,From the Sea to the Land Beyond (2012),Documentary +170973,Boyka: Undisputed IV (2016),Action +170975,The Ten Lives of Titanics the Cat (2007),Action|Children|Drama|Mystery|Thriller +170977,The Last Joint Venture (2008),Comedy|Crime|Drama|Mystery +170979,Escape (2015),Drama +170981,"God Respects Us When We Work, but Loves Us When We Dance (1968)",(no genres listed) +170983,Hotel E (1992),Animation +170985,The Marine 5 Battleground (2017),Action +170987,The Covenant (2017),Horror +170989,Horror Story (2013),Horror +170991,The Recovered (2008),(no genres listed) +170993,Mini's First Time (2006),Comedy|Crime|Drama +170995,The Wonderful Wizard of Oz (1910),Adventure|Comedy|Fantasy +170997,Shala (2011),Drama +170999,The Old Crocodile (2005),Animation +171001,Lupin the Third: Bye Bye Liberty Crisis (1989),Action|Animation|Comedy +171003,Rufus (2016),Children|Comedy +171005,Rufus 2 (2017),Children|Comedy|Fantasy +171007,The Book of Henry (2017),Drama +171009,Mi adorado Juan (1950),Drama +171011,Planet Earth II (2016),Documentary +171013,In This Corner of the World (2016),Animation|Drama +171015,A Real Young Girl (1976),Drama +171017,Perfect Love (1996),Drama|Romance +171019,Stand Up and Be Counted (1972),Comedy|Drama +171021,Mars of Destruction (2005),Animation|Horror|Sci-Fi +171023,The Hero (2017),Drama +171025,Sepultura: Under Siege (Live in Barcelona) (1991),Documentary +171027,11 Blocks (2015),Action +171031,Citizen Jane: Battle for the City (2016),Documentary +171033,Spongebob Squarepants 4D Attraction: The Great Jelly Rescue (2013),(no genres listed) +171035,Role Play: Women on Fassbinder (1992),Documentary +171037,Drain the Titanic (2016),Documentary +171039,American Guinea Pig: Bouquet of Guts and Gore (2015),Horror +171041,Guinea Pig 1: Devil's Experiment (1985),Horror +171043,Meet the Guilbys (2016),Comedy|Drama +171045,Holy Tongue (2000),Comedy +171047,Kubrick Remembered (2014),Documentary +171049,The Wall (2017),Drama|Thriller +171051,Without Evidence (1995),Drama|Thriller +171055,My Man Adam (1985),Comedy|Crime|Thriller +171057,True Identity (1991),Comedy +171059,Panamerican Machinery (2016),Comedy|Drama +171061,Diamond Cartel (2017),Action +171063,I 2 soliti idioti (2012),Comedy +171065,The Anatomy of Hate (2009),(no genres listed) +171067,Korgoth of Barbaria (2006),Animation|Comedy|Fantasy +171069,Raiders of the Living Dead (1986),Horror +171071,Genocidal Organ (2017),Animation|Sci-Fi +171073,Four of the Apocalypse (1975),Action|Western +171075,Nonstop Trouble with the Family (1985),Comedy +171077,King Frat (1979),Comedy +171079,Psyched by the 4D Witch (A Tale of Demonology) (1973),(no genres listed) +171083,Afterlov (2016),Comedy|Drama +171085,The Snare (2017),Horror|Thriller +171087,Chef's Special (2008),Comedy +171089,Wizards of the Lost Kingdom (1985),Action|Adventure|Fantasy +171091,Only For One Night (2016),Drama +171093,Waiting for the Hearse (1985),Comedy +171095,Girlfriends (1978),Comedy|Drama +171097,Shootfighter 2 (1996),Action +171101,TC 2000 (1993),Action|Sci-Fi +171103,Shootfighter: Fight to the Death (1993),Action +171105,Tiger Claws (1992),Action +171107,Bloodfight (1989),Action +171109,Phoenix Forgotten (2017),Horror|Mystery|Sci-Fi +171111,Skins (2017),Comedy|Drama +171113,The Immortal Life of Henrietta Lacks (2017),Drama +171115,His Musical Career (1914),Comedy +171117,Boiling Point (2017),Documentary +171121,The Movie Hero (2003),Comedy|Drama +171123,Burn Your Maps (2017),Adventure +171127,The Irresistible Blueberry Farm (2016),Mystery|Romance +171129,Tommy's Honour (2016),(no genres listed) +171131,My Way: The Rise and Fall of Silvio Berlusconi (2016),Documentary +171133,Circuitry Man (1990),Action|Sci-Fi +171137,Looking for Light: Jane Bown (2014),Documentary +171139,Mord in Eberswalde (2013),Crime|Thriller +171141,Handsome Devil (2016),Drama +171143,Flatland: The Film (2007),Animation|Sci-Fi +171145,Flatland²: Sphereland (2012),Animation|Sci-Fi +171147,Flatland (1965),Animation +171149,Darkened Room (2002),Drama +171151,Boat (2007),(no genres listed) +171153,The Amputee (1974),(no genres listed) +171155,Lady Blue Shanghai (2010),Drama|Mystery +171157,Lowriders (2017),Drama +171159,The Open (2015),Drama|Sci-Fi +171161,Heavy Traffic (1973),Animation|Comedy|Drama +171163,Mr. Mike's Mondo Video (1979),Comedy +171165,Hell (2017),Crime|Horror|Thriller +171167,Day of the Fight (1951),Documentary +171169,Flying Padre (1951),Documentary +171171,Jedi Junior High,Documentary +171173,George Carlin: On Location at Phoenix (1978),Comedy|Documentary +171175,George Carlin: Carlin at Carnegie (1982),Comedy|Documentary +171177,George Carlin - On Location at USC (1977),Comedy|Documentary +171179,George Carlin: Doin' it Again (1990),Comedy|Documentary +171181,Carlin on Campus (1984),Comedy|Documentary +171183,You Can't Cheat an Honest Man (1939),Comedy +171185,Poppy (1936),Comedy +171187,George Carlin: What Am I Doing in New Jersey? (1988),Comedy|Documentary +171189,Charlie Murphy: I Will Not Apologize (2010),Comedy +171191,Frankenweenie (1984),Children|Comedy +171193,The Dark Tapes (2017),Horror|Sci-Fi|Thriller +171195,Chasing Two Hares (1961),Comedy +171197,Lady in the Dark (1944),Drama|Romance +171199,Queen of the Stardust Ballroom (1975),Drama|Romance +171201,Mythica: The Godslayer (2016),Fantasy +171203,The Imp (1981),Horror +171205,Королёв (2007),Drama +171207,Beyond Skyline (2017),Action|Sci-Fi +171209,Punching Henry (2017),Comedy +171211,Shake! Otis at Monterey (1987),Documentary +171213,The Time Travelers (1964),Sci-Fi +171215,Cry Wilderness (1987),Adventure|Children|Fantasy +171217,They Call Me Macho Woman (1991),Action +171219,Mars and April (2012),Drama|Sci-Fi +171221,Isolation (2015),Action|Crime|Thriller +171223,Supervention (2013),Documentary +171225,Sam Was Here (2016),Horror|Mystery|Thriller +171227,How to Be a Latin Lover (2017),Comedy +171229,Re-Animated (2006),Children|Comedy +171231,Ninja Bachelor Party (1991),Comedy +171233,The Trip to Spain (2017),Comedy|Drama +171235,Phobia 2 (2009),Horror|Thriller +171237,Laddaland (2011),Horror +171239,Countdown (2012),Thriller +171241,Wound (2010),Fantasy|Horror|Thriller +171243,Malibu Express (1985),Action|Adventure|Comedy|Crime +171245,Picasso Trigger (1988),Action|Crime +171247,Savage Beach (1989),Action|Thriller +171249,Guns (1990),Action|Crime +171251,"Nobody Speak: Hulk Hogan, Gawker and Trials of a Free Press (2017)",Documentary +171253,Brigsby Bear (2017),Comedy +171255,Little Angels (2015),Documentary +171257,The Resurrection of Zachary Wheeler (1971),Mystery|Sci-Fi|Thriller +171259,Bianca (1984),Comedy|Drama +171261,Lucas Brothers: On Drugs (2017),Comedy +171263,Tramps (2016),Comedy|Romance +171265,I Am Heath Ledger (2017),Documentary +171267,Krackoon (2010),Comedy|Horror +171269,Oh Dem Watermelons (1965),(no genres listed) +171271,"Lewis Black: Red, White & Screwed (2006)",Comedy +171273,Lewis Black: Old Yeller - Live at the Borgata (2013),Comedy +171275,Lewis Black: In God We Rust (2012),Comedy +171277,Lewis Black: Black on Broadway (2004),Comedy +171279,Robin Williams - Off the Wall (1978),(no genres listed) +171281,Andy Kaufman Plays Carnegie Hall (1980),(no genres listed) +171283,Robin Williams: A Night at the Met (1986),Comedy +171285,Stewart Lee: Stand-Up Comedian (2005),Comedy +171287,Stewart Lee: 90s Comedian (2006),Comedy +171289,Katt Williams: Live (2006),Comedy +171291,Katt Williams: American Hustle (2007),Comedy +171293,Katt Williams: It's Pimpin Pimpin (2008),Comedy +171295,Doug Stanhope: Deadbeat Hero (2004),Comedy +171297,Doug Stanhope: No Refunds (2007),Comedy +171299,DJ Q.bert's Wave Twisters (2001),(no genres listed) +171301,Angels' Brigade (1979),Action|Comedy +171303,Blessing Bell (2003),Comedy|Drama +171305,Satan's Black Wedding (1975),Horror|Mystery +171307,Killers on Wheels (1976),Action|Thriller +171309,Killing Reagan (2016),Drama +171311,The Loner (2016),Action|Thriller +171313,Origin (2016),(no genres listed) +171315,Sand Castle (2017),Drama|War +171317,In Real Life (2014),Drama|Romance +171319,Dual (2013),Drama +171321,Al Capone: Icon (2014),Documentary +171323,Slam (2016),Comedy +171325,Santo vs. the Zombies (1961),Action|Adventure|Horror|Mystery +171327,Mifune: The Last Samurai (2016),Documentary +171329,Cold Harbour (2014),Crime|Thriller +171331,The Work of Director Chris Cunningham (2003),(no genres listed) +171333,The Jacksons: An American Dream (1992),Drama +171335,Bill Hicks: It's Just a Ride (1994),Documentary +171337,Moontrap Target Earth (2017),Action|Adventure|Sci-Fi +171339,Bear Island (1979),Action|Adventure|Mystery|Thriller +171341,The Yellow Birds (2017),Drama|War +171345,Uncertain (2017),Documentary +171347,The Sisters (2005),Drama|Horror +171349,Spin (2005),Comedy|Drama|Romance +171351,Lil Rel: RELevent (2015),Comedy +171353,Fire Maidens of Outer Space (1956),Sci-Fi +171355,Orson Welles: Shadows & Light (2015),Documentary +171357,Uncle Bob (2010),Documentary +171359,I Need That Record (2008),Documentary +171361,Godspell: A Musical Based on the Gospel According to St. Matthew (1973),Children +171363,Salvador Allende (2004),Documentary +171365,Megafault (2009),Action|Adventure|Sci-Fi +171367,"Falco: Damn It, We're Still Alive! (2008)",Drama +171369,Shockwave Darkside (2014),Action|Horror|Sci-Fi +171371,The End of Old Times (1990),Comedy +171373,125 Years Memory (2015),Drama +171375,7 Kocalı Hürmüz (2009),Comedy|Romance +171377,Ah Nerede (1975),(no genres listed) +171379,Ali Baba ve 7 Cüceler (2015),Action|Adventure|Comedy +171381,Avanak Apdi (1978),Comedy +171383,Ay Lav Yu (2010),Comedy +171385,Bizim Aile (1975),Children|Comedy|Drama +171387,Çalgı Çengi (2011),Comedy +171389,Firefly (1975),Comedy +171391,En Büyük Şaban (1983),Comedy|Drama +171393,Eyyvah Eyvah (2010),(no genres listed) +171395,Sultan (1978),Children|Comedy|Romance +171397,Gülen Gözler (1977),Children|Comedy|Drama +171399,Hanzo (1975),Comedy +171401,Happy Days (1978),(no genres listed) +171403,Japon İşi (1987),Comedy|Sci-Fi +171405,Korkusuz Korkak (1979),(no genres listed) +171407,Maskeli Beşler İntikam Peşinde (2005),(no genres listed) +171409,Mavi Boncuk (1974),(no genres listed) +171411,Oh Olsun (1970),Children|Comedy +171413,Romantik Komedi (2010),(no genres listed) +171415,Sahte Kabadayı (1976),(no genres listed) +171417,Şabaniye (1984),Comedy|Drama|Romance +171419,Salako (1974),Comedy +171421,Sosyete Şaban (1985),(no genres listed) +171423,Tarkan and the Blood of the Vikings (1971),Adventure|Fantasy +171425,Tarzan Rıfkı (1986),Comedy +171427,Tokatçı (1983),Comedy +171429,Tosun Pasha (1976),Comedy +171433,The Trial (2010),Comedy|Drama|Romance +171435,Last Call for Nowhere (2016),Comedy +171437,Quo Vadis (2001),Drama|Romance +171439,A Dark Song (2017),Drama|Horror +171441,Touch of the Light (2012),Drama +171443,"Have Fun, Vasya! (2017)",Comedy +171445,The Heart of the Game (2005),Documentary +171447,The Fog (2010),Drama|Sci-Fi|War +171449,Horoscope for Good Luck (2015),Comedy|Romance +171453,Running Wild (2015),Comedy|Drama +171455,Fabricated City (2017),Action|Crime +171457,My Annoying Brother (2016),Comedy|Drama +171459,Lost in the Barrens (1990),Children|Drama +171461,Revenge of the Creature (1955),Horror|Sci-Fi +171463,"The Execution of Mary, Queen of Scots (1895)",(no genres listed) +171465,The Haunted Castle (1896),Fantasy|Horror +171467,The Age of Shadows (2016),Action|Drama|Thriller +171469,The Barbershop (1894),Documentary +171471,Excursion to the Moon (1908),Comedy|Fantasy|Sci-Fi +171473,The Diary of Ellen Rimbauer (2003),Drama|Horror|Mystery|Thriller +171475,Six Degrees of Celebration 5 (2016),Comedy +171477,Dangerous Men (2005),Comedy +171479,"Kidnapping, Caucasian Style (2014)",Adventure|Comedy|Romance +171481,Santa Claus. Battle of Mages (2016),Action|Adventure|Fantasy +171483,Don't Play the Fool... (1997),Adventure|Comedy +171485,The Earthquake (2016),Drama +171487,Virtual Nightmare (2000),Sci-Fi +171489,Le Jaguar (1996),Adventure +171491,Unlocked (2017),Action|Thriller +171493,252: Signal of Life (2008),Action|Adventure|Drama +171495,Cosmos,(no genres listed) +171497,Voice from the Stone (2017),Drama|Mystery|Romance|Thriller +171499,Cold River (1982),Adventure +171501,Small Crimes (2017),Comedy|Crime|Thriller +171503,Terror Firmer (1999),Comedy|Horror +171505,On the Milky Road (2016),Drama +171507,Unspeakable Horrors: The Plan 9 Conspiracy,Comedy|Documentary +171509,Kappen! (2016),Drama +171511,Honeycomb (1969),Drama +171513,Crash! (1976),Horror +171515,Summer School Teachers (1974),Comedy +171517,Kolonya Cumhuriyeti (2017),Comedy +171519,Nasha Russia: Yaytsa sudby (2010),(no genres listed) +171521,Inseparable (2013),Drama +171523,305 (2008),Comedy +171525,The Suckling (1990),Horror +171527,A Place in the World (2001),Drama +171529,Smokers (2008),Action|Crime +171531,Darling (2010),Drama|Romance +171533,The Kinematograph (2009),(no genres listed) +171535,The Rise and Fall of a Jungle Giant (1958),Documentary +171537,Command and Control (2016),Documentary +171539,David Lean and His Dedicated Maniacs (2009),Documentary +171541,Down House (2001),Comedy|Crime|Drama +171543,S.S.D. (2008),Horror|Thriller +171545,The Best Movie 3-DE (2011),Comedy +171547,InAlienable (2008),Action|Adventure|Comedy|Sci-Fi|Thriller +171549,The New Year's Rate Plan (2008),Comedy|Romance +171551,Pier Paolo Pasolini (1995),(no genres listed) +171553,"I Lived, But... (1983)",Documentary +171555,Classmates (2016),Comedy|Romance +171557,The Bartender (2015),Comedy +171559,Superbad (2016),Comedy +171561,The Best Day Ever (2015),Comedy +171563,The Pickaninny Dance from the “Passing Show” (1894),Documentary +171565,Cheech & Chong's Hey Watch This (2010),Comedy|Documentary +171567,Perfect Harmony (1991),Children|Drama +171569,Гонгофер (1992),(no genres listed) +171571,Carol's Journey (2002),Drama +171573,Wild Style (1983),Drama +171575,The Truth About Jane (2000),Drama +171577,Sweet Rain: Accuracy of Death (2008),Comedy|Drama|Fantasy +171579,Rising Fear (2016),Action +171581,Flower (2017),(no genres listed) +171583,Super Dark Times (2017),Drama|Thriller +171587,The Hidden II (1993),Crime|Horror|Sci-Fi +171589,A Few Less Men (2016),Comedy +171591,You're So Cupid (2010),Children|Drama|Fantasy|Romance|Sci-Fi +171593,Be Here Now (2015),(no genres listed) +171595,Countdown (2004),Action|Adventure|Crime +171597,Karl Marx City (2016),Documentary +171599,Bottom of the World (2017),Drama|Mystery|Thriller +171601,Stratton (2017),Action|Thriller +171603,Kill the Dragon (1988),Drama|Fantasy +171605,The Ornithologist (2016),Adventure|Drama +171607,Bad Girl (2016),Thriller +171609,The Lovers (2017),Comedy +171611,Baahubali 2: The Conclusion (2017),Action|Adventure|War +171613,The Star (2002),Drama|War +171615,Minions: Binky Nelson Unpacified (2015),Adventure|Animation|Comedy +171619,Talking Walls (1987),Drama +171621,Warm Summer Rain (1989),Drama|Romance +171623,Tomato Red (2017),Drama|Thriller +171625,Taking Earth (2017),Sci-Fi +171627,The Virgin's Bed (1969),(no genres listed) +171629,Pet Fooled (2016),(no genres listed) +171631,Maria Bamford: Old Baby,(no genres listed) +171633,The List (2007),Comedy|Mystery|Romance|Thriller +171635,Gnomes and Trolls: The Secret Chamber (2008),Animation|Children +171637,Sam Kinison: Breaking the Rules (1987),Comedy +171639,Sam Kinison: Family Entertainment Hour (1991),Comedy +171641,"Richard Pryor: I Ain't Dead Yet, #*%$#@!! (2003)",Comedy +171643,Jimi Plays Berkeley (2012),Documentary +171645,Devo: The Complete Truth About De-Evolution (1993),(no genres listed) +171647,Pink Floyd: Live at Pompeii (1972),Documentary +171649,National Lampoon Presents Electric Apricot: Quest for Festeroo (2007),Comedy +171651,Redneck Zombies (1989),Horror +171653,Night Nurses (2007),Comedy|Romance +171655,Final Offer (1985),Documentary +171657,Dead Kennedys: The Early Years (1987),(no genres listed) +171659,Paul Mooney: Analyzing White America (2002),Comedy +171661,Omicidio all'italiana (2017),Comedy +171663,Fat Stupid Rabbit (2007),Comedy|Drama +171665,Steven Wright: When the Leaves Blow Away (2006),Comedy +171667,Lenny Bruce in 'Lenny Bruce' (1967),Comedy|Documentary +171669,Asssscat (2007),Comedy +171671,P (2005),Drama|Horror +171673,Weed (1972),Documentary +171675,Sam Kinison: Why Did We Laugh? (1998),Comedy|Documentary +171677,Andrew Dice Clay: One Night with Dice (1987),Comedy +171679,Larry Flynt: The Right to Be Left Alone (2007),Documentary +171681,Cocaine: One Man's Seduction (1983),Drama +171683,Sacco and Vanzetti (2006),Documentary +171685,Dana Gould: Let Me Put My Thoughts in You (2009),Comedy +171687,Last Woman on Earth (1960),Drama|Mystery|Romance|Sci-Fi +171689,Norman: The Moderate Rise and Tragic Fall of a New York Fixer (2017),Drama|Thriller +171691,Dana Carvey: Critics' Choice (1995),Comedy +171693,An Ox's Tale: The John Entwistle Story (2006),Documentary +171695,Robin Williams: Live on Broadway (2002),Comedy +171697,The Wizard of Gore (1970),Horror +171701,The Death of Louis XIV (2016),Drama +171703,Country of the Deaf (1998),Comedy|Crime|Drama +171705,Den radio (2001),(no genres listed) +171707,Titeuf (2011),Animation +171709,"Gahan Wilson: Born Dead, Still Weird (2013)",Documentary +171711,Lurking Fear (1994),Horror +171713,American Beast (2014),Horror +171715,The Lighthouse of the Orcas (2016),Drama|Romance +171717,Human Target (1990),Action|Crime|Drama +171719,A.P.E.X. (1994),Action|Sci-Fi +171721,Mother (1991),Drama +171723,Wushu (2008),Action|Drama +171725,Moontrap (1989),Horror|Sci-Fi +171727,The Irony of Fate. The Sequel (2007),Comedy|Drama|Romance +171729,The Best Movie (2008),Comedy +171731,Practical Joke (2008),Children|Drama|Romance +171733,Nuvvostanante Nenoddantana (2005),Comedy|Drama|Romance +171735,Tale in the Darkness (2009),Drama +171737,Kabhi Alvida Naa Kehna (2006),Drama|Romance +171739,Showdown at Area 51 (2007),Sci-Fi|Thriller +171741,"Dzhentlmeny, Udachi! (2012)",Comedy +171743,"SuperManager, or Hack of the Fate (2011)",Comedy +171745,Scrat's Continental Crack-Up: Part 2 (2011),Adventure|Animation|Comedy +171747,Sins of Our Youth (2016),(no genres listed) +171749,Death Note: Desu nôto (2006–2007),(no genres listed) +171751,Munna bhai M.B.B.S. (2003),Comedy +171753,Wet and Reckless,(no genres listed) +171755,Seizure (2017),Horror +171757,Amityville: The Awakening (2017),Horror|Thriller +171759,The Beguiled (2017),Drama|Thriller|Western +171761,The Reagan Show (2017),Documentary +171763,Baby Driver (2017),Action|Crime|Thriller +171765,Okja (2017),Action|Adventure|Drama|Sci-Fi +171767,Men Behind the Sun (1988),War +171769,Isle of Flowers (1989),Documentary +171771,My Uncle Killed a Guy (2004),Adventure|Comedy +171773,Desmundo (2002),Drama|Romance +171775,Club of the Laid Off (1989),Animation|Fantasy +171777,L'année sainte (1976),Comedy +171779,Glass (1958),Documentary +171781,Tank 432 (2015),Action|Horror|Thriller +171783,100 Days Before the Command (1991),Drama +171785,The Stationmaster's Wife (1977),Drama +171787,After This Our Exile (2006),Drama|Romance +171789,Beijing Rocks (2001),Drama +171791,Detective Story (2007),Horror +171793,Innocence Unprotected (1968),Documentary|Drama +171795,People of the Mountains (1942),Drama +171797,The Fall of Berlin (1950),Drama|War +171799,Range 15 (2016),Comedy|Horror +171801,Asylum of Darkness (2017),Horror +171803,We Go On (2016),Drama|Horror|Thriller +171805,Lady Bloodfight (2016),Action|Thriller +171807,Caedes (2015),Comedy|Horror +171809,Daemonium: Soldier of the Underworld (2015),Action|Sci-Fi +171811,Embassy (2013),Comedy|Sci-Fi|War +171813,Buck Wild (2013),Comedy|Horror +171815,Wrath of the Crows (2013),Horror|Mystery|Thriller +171817,Outpost: Rise of the Spetsnaz (2013),Action|Horror|Sci-Fi +171819,The Enemy (2011),Drama|Mystery|War +171821,3-D Sex and Zen: Extreme Ecstasy (2011),Drama +171823,Kołysanka (2010),Comedy +171825,The Kopeck (2002),Comedy +171827,Zombeak (2006),Horror +171831,Harry Price: Ghost Hunter (2015),Drama|Horror +171833,Surviving Life (Theory and Practice) (2010),Animation|Comedy|Fantasy +171835,Neznaika na lune (1997),(no genres listed) +171837,Twilight Q (1987),Animation|Crime|Fantasy|Mystery|Sci-Fi +171839,Breakfast on the Grass (1979),Adventure|Children|Comedy +171841,Food and Shelter (2015),Drama +171843,Mirror for a Hero (1988),Drama|Fantasy|Sci-Fi +171845,Wandering Sagittarius (1993),Comedy|Drama|Fantasy|Romance +171847,Поезд вне расписания (1986),(no genres listed) +171849,Without Family (1984),Children|Drama +171851,Into the Mirror (2003),Crime|Horror|Mystery +171853,Parasite Eve (1997),Drama|Horror|Romance|Sci-Fi|Thriller +171855,Dancehall Queen (1997),Drama +171857,The Stone Raft (2002),Comedy|Fantasy|Sci-Fi +171859,O Delfim (2002),Drama +171861,A Bee in the Rain (1972),Drama +171863,Setoutsumi (2016),Comedy +171865,The Patrol (2013),Drama|War +171867,Rough Night (2017),Comedy|Drama +171869,Realive (2016),Sci-Fi +171871,Catching the Sun (2015),Documentary +171873,Warhouse (2013),Horror|Thriller +171875,Time Chasers (1994),Drama|Romance|Sci-Fi +171877,I Accuse My Parents (1944),Drama +171879,Hidden Kisses (2017),Drama +171881,Mindhorn (2017),Comedy +171883,Baptism of Blood (2006),Drama|Thriller +171885,3 Times a Charm (2011),Comedy +171887,The Night Watchmen (2016),Comedy|Horror +171889,Oasis (2017),Drama|Sci-Fi +171891,Generation Iron 2,(no genres listed) +171893,Phoenix (1995),Action|Sci-Fi +171895,Miss Saigon: The 25th-Anniversary Performance (2016),Drama|Romance|War +171897,They Killed Sister Dorothy (2008),Documentary +171899,100 Women (2002),Comedy|Romance +171901,Florida Man (2015),Documentary +171903,Love and Lies (1980),Children|Romance +171905,Much Ado About Nothing (2016),Drama +171907,The Shadow Effect (2017),Action|Thriller +171909,"Eadweard Muybridge, Zoopraxographer (1974)",Documentary +171911,Commando 2: The Black Money Trail (2017),Action +171913,The Last Tycoon (2012),Drama +171915,Dark Streets (2008),Drama +171917,Mystère à la Tour Eiffel (2015),Drama|Mystery|Thriller +171919,The Answer (2015),Action|Sci-Fi|Thriller +171921,Battlefield Death Tales (2012),Horror|War +171923,Design of Death (2012),Drama|Mystery +171925,Hounds of Love (2017),Crime +171927,Nick Cave and The Bad Seeds: God Is in the House (2001),(no genres listed) +171933,Shark Killer (2015),Action +171935,Teli and Toli (2016),Comedy|Romance +171937,Monster High: Electrified (2017),Animation|Children +171939,"Monster High: Boo York, Boo York (2015)",Animation|Children +171941,Monster High: 13 Wishes (2013),Animation|Children|Fantasy +171943,Monster High: Welcome to Monster High (2016),Animation|Children +171945,Monster High: Haunted (2015),Animation|Children|Fantasy +171947,Monster High: Fright On! (2011),Animation|Children|Fantasy +171949,Monster High: Freaky Fusion (2014),Animation +171951,Monster High: Friday Night Frights (2013),Animation|Children +171953,"Monster High: Frights, Camera, Action! (2014)",Animation|Children|Fantasy +171955,Monster High: Escape from Skull Shores (2012),Animation|Children|Fantasy +171957,Monster High: Why Do Ghouls Fall in Love? (2011),Animation|Fantasy +171959,Monster High: Ghouls Rule (2012),Animation|Children +171961,For a Few Bullets (2016),Action|Adventure|Comedy|Mystery|Romance +171963,Bleeding Hearts (2013),Horror +171965,In the Forests of Siberia (2016),Adventure|Drama +171967,LoveDeath (2006),Action|Thriller +171969,Sars Wars: Bangkok Zombie Crisis (2004),Action|Comedy|Fantasy|Horror +171971,"Wax, or the Discovery of Television Among the Bees (1991)",Documentary|Sci-Fi +171973,"In the Meantime, Darling (1944)",Comedy|War +171975,Spider-Plant Man (2005),Comedy +171977,Canım Kardeşim (1973),(no genres listed) +171979,You Were Meant for Me (1948),(no genres listed) +171981,Superpowerless (2016),Comedy|Drama +171983,Patti Cake$ (2017),Drama +171985,Ed Gein (2000),Crime|Drama|Horror|Thriller +171987,A Letter for Evie (1946),Comedy|Romance +171989,A Wish Come True (2015),Romance +171991,The Dream of a Ridiculous Man (1992),Animation +171993,Angels and Ornaments (2014),Children|Romance +171995,World Cinema (2007),Comedy +171997,The Last of the Blonde Bombshells (2000),Comedy +171999,A Number (2008),Drama|Sci-Fi +172001,Dialogues (2014),(no genres listed) +172003,Moonlight Tariff (2001),Comedy +172005,Urok literatury (1968),Comedy|Drama +172007,23 Blast (2014),Drama +172009,Loveless (2017),Drama +172011,Dig Two Graves (2014),Fantasy|Mystery|Thriller +172013,Stefan Zweig: Farewell to Europe (2016),Drama +172015,Metamorphosis (2003),Drama|Fantasy +172017,Hatred (2016),Drama|War +172019,Mommies (2012),Comedy|Drama +172021,Vampire (2011),Drama|Horror|Thriller +172023,Height (1957),Comedy|Drama|Romance +172025,Desirable (1934),Drama|Romance +172029,Dolly Parton's Christmas of Many Colors: Circle of Love (2016),Children|Drama +172031,Dr. Monica (1934),Drama +172033,Fallen Angel (2003),Drama|Romance +172035,Holiday For Lovers (1959),(no genres listed) +172037,The Lost World (2001),Adventure|Fantasy|Sci-Fi +172039,I'd Rather Be Rich (1964),Comedy +172041,Journey Back to Christmas (2016),Drama +172043,SuperBobrovs (2016),Comedy +172045,The Challenge... A Tribute to Modern Art (1974),Documentary +172047,The Harvest of Sorrow (1998),(no genres listed) +172049,Make Way For A Lady (1936),Comedy +172051,Moonlight in Vermont (2017),Romance +172053,Rafter Romance (1933),Comedy|Romance +172055,Ramona (1936),Drama|Romance +172057,The Seven Year Hitch (2012),Comedy|Romance +172059,The Two Worlds of Jennie Logan (1979),Drama|Romance +172063,Carmencita (1894),Documentary +172065,Handsome: A Netflix Mystery Movie (2017),Comedy +172067,Batman & Bill (2017),Documentary +172069,Conversations with God (2006),Drama +172071,Atelier Fontana (2011),Drama +172073,Stingray (1985),Crime|Mystery +172075,A Billion Lives (2016),Documentary +172077,Officers (1971),Drama|Romance +172079,Out of Print (2014),Documentary +172081,All Inclusive 2 (2013),Comedy +172083,Sagan (2008),Drama +172085,A Gift with a Character (2014),Children|Comedy +172087,Mixed Feelings (2014),Comedy +172089,Scandal: Sex@students.edu (2001),(no genres listed) +172091,8 New Dates (2015),Comedy|Romance +172093,The Dawns Here Are Quiet (2015),Drama|War +172095,Het Bombardement (2012),Drama|Romance|War +172097,Peasants (1981),Drama +172099,The Republic of ShKID (1966),Children|Comedy +172101,For the Good of Others (2010),Drama|Thriller +172103,Courier to the East (1991),Action +172105,Vysotsky: Thank God I'm Alive (2011),Drama +172107,As the Gods Will (2014),Horror|Thriller +172109,"Ashley Madison: Sex, Lies and Cyber Attacks (2016)",Documentary +172111,Walking Tall: Lone Justice (2007),Action|Crime|Drama|Thriller +172113,The Sea Wolf (2009),(no genres listed) +172115,The Medici: Godfathers of the Renaissance (2004),Documentary +172117,The Comedian (2016),Comedy +172119,Monolith (2016),Drama|Thriller +172121,After the Reality (2016),Children|Comedy|Drama +172123,Godspeed (2016),Comedy|Crime|Drama|Thriller +172125,Dark Exorcism (2015),(no genres listed) +172127,Dusk (2016),Drama|Thriller +172129,Dark Heart AKA Wagstaffe (2016),Crime|Drama +172131,The Axe Murders of Villisca (2017),Horror +172133,Another Year (2014),Drama +172135,Petersburg: Only for Love (2016),Comedy|Drama|Romance +172137,Pioneer Heroes (2015),Drama +172139,Two Days (2011),Drama|Romance +172141,Monster a-Go Go (1965),Horror|Sci-Fi +172143,Bugs (2016),Documentary +172145,Istanbul Tales (2005),Drama +172147,Delisin (1975),(no genres listed) +172149,Back to You and Me (2005),Drama|Romance +172151,The Shocking Miss Pilgrim (1947),Comedy|Romance +172153,Blackout (2015),Documentary +172155,Women vs. Men (2015),Comedy +172157,Love and the City 3 (2013),Comedy +172159,Sorceress (2017),Drama|Fantasy|Horror +172161,"King, Queen, Knave (1972)",Comedy|Mystery +172163,The Last Adventure (1967),Adventure|Drama|Romance +172165,Mister Designer (1988),Drama|Fantasy|Mystery +172167,A Long and Happy Life (2013),Drama +172169,Help Gone Mad (2009),Comedy +172171,Kolya - Rolling Stone (2005),Comedy|Drama +172173,Cloud Heaven (1990),Comedy|Drama +172175,Zlatovláska (1973),(no genres listed) +172177,Nightshift (2001),(no genres listed) +172179,Touch and Go (1986),Drama|Romance +172181,The Stroller Strategy (2012),Comedy +172183,The Year of Getting to Know Us (2008),Comedy|Drama +172185,Sucker (2015),Comedy +172187,Totally Blonde (2001),Comedy +172189,Snow (2004),Children|Comedy +172191,Wild Roomies (2004),Comedy|Drama|Romance +172193,Wingman Inc. (2015),Comedy|Romance +172195,Weekend Pass (1984),Comedy +172197,Under New Management (2009),Action|Comedy|Crime|Drama|Romance|Thriller +172199,Still Not Quite Human (1992),(no genres listed) +172201,Take Away (2003),Children|Comedy +172203,The Yankles (2009),Comedy +172205,Somebody's Hero (2011),Children|Comedy|Romance +172207,The Divided Heaven (1964),Drama|Romance +172209,Waltzing Anna (2006),Comedy|Drama +172211,Triumph's Summer Election Special 2016 (2016),Comedy|Documentary +172213,Subdivision (2009),Comedy|Drama +172215,Saved by the Bell: Hawaiian Style (1992),Comedy +172217,Project: ALF (1996),Children|Comedy|Sci-Fi +172219,Ski School 2 (1994),Comedy +172221,School for Seduction (2004),Comedy|Drama|Romance +172223,School Of Life (2005),Children|Comedy|Drama +172225,Puck Hogs (2009),Comedy +172227,The Princess & the Marine (2001),Drama|Romance +172229,Plain Clothes (1988),Comedy|Mystery|Romance|Thriller +172231,Popcorn (2007),Comedy|Horror +172233,The Prime Gig (2000),Drama|Romance +172235,Pretty Cool Too (2007),Comedy +172237,Shut Up and Kiss Me! (2004),Action|Comedy|Romance +172239,Second String (2002),Comedy|Drama +172241,Secret Santa (2003),Children|Romance +172243,Short Track (2008),Action|Drama +172245,Reverse Runner (2013),(no genres listed) +172247,Not Quite Human (1987),(no genres listed) +172249,Nearing Grace (2005),Drama|Romance +172251,One Last Thing... (2005),Comedy|Crime|Drama +172253,The Night Before (1988),Comedy +172255,The Matrix Revisited (2001),Documentary +172257,Love at First Hiccup (2009),Comedy|Romance +172259,Love Hurts (2009),Comedy|Romance +172261,Miracle Beach (1992),Comedy|Fantasy|Romance|Sci-Fi +172263,Love and Mary (2007),Comedy|Romance +172265,Once a Thief (1996),Action|Crime|Thriller +172267,Meant To Be (2010),Comedy|Romance +172269,Man Maid (2009),Comedy|Romance +172271,Perfect Opposites (2004),Comedy|Drama|Romance +172273,Michel Vaillant (2003),Action|Drama +172275,Looking for Kitty (2004),Comedy|Drama +172277,Not Quite Human II (1989),(no genres listed) +172279,Meet The Santas (2005),Children|Comedy|Fantasy +172281,Nature of the Beast (2007),Comedy|Horror|Romance|Thriller +172283,Outside Sales (2006),Comedy|Romance +172285,Oesje! (1997),(no genres listed) +172287,The High Schooler's Guide to College Parties (2016),Comedy +172289,George of the Jungle 2 (2003),Adventure|Children|Comedy +172291,Last Call (2012),Comedy +172293,Laid in America (2016),Comedy +172295,Growing Op (2008),Comedy|Drama|Romance +172297,Reel Love (2011),Comedy|Drama|Romance +172299,The In Crowd (1988),Drama|Romance +172301,Late Last Night (1999),(no genres listed) +172303,Heavy Petting (2007),Comedy|Romance +172305,Giving It Up (1999),Comedy|Romance +172307,Family Ties Vacation (1985),Children|Comedy +172309,Knots (2004),Comedy|Romance +172311,General Education (2012),Comedy +172313,Fast Girl (2008),Children|Drama +172315,Justin Time (2010),Action|Adventure|Children|Fantasy|Sci-Fi +172317,Heber Holiday (2007),Comedy|Romance +172319,Large (2001),Comedy +172321,Late Night with Conan O'Brien: The Best of Triumph the Insult Comic Dog (2004),Comedy +172323,The Last Man on Earth (2014),Comedy|Romance|Sci-Fi +172325,Hector (1987),Comedy +172327,Knight Rider (2008),(no genres listed) +172329,Cheats (2002),Children|Comedy +172331,Cowboys & Angels (2003),Comedy|Drama +172333,The Dukes of Hazzard: The Beginning (2007),Action|Adventure|Comedy +172335,Drumline: A New Beat (2014),Comedy|Drama +172337,Casual Encounters (2016),Comedy +172339,Coming & Going (2011),Comedy|Romance +172341,Costa Rican Summer (2010),Comedy +172343,Chris Rock: Never Scared (2004),Comedy +172345,Dolphins (2007),Action|Children|Thriller +172347,Christmas Mail (2010),Children|Comedy +172349,Demolition University (1997),Action|Thriller +172351,Crystal Heart (1986),Drama|Romance +172353,Cupid's Balls (2011),Comedy +172355,Breakfast With Jonny Wilkinson (2013),Comedy +172357,Deal of a Lifetime (1999),Children|Comedy|Drama|Fantasy|Romance|Sci-Fi +172359,Counterstrike (2002),Action|Adventure|Drama|Thriller +172361,Counting Backwards (2007),Romance +172363,Before You Say 'I Do' (2009),Comedy|Drama|Fantasy|Romance +172365,A la mala (2015),Comedy +172367,Alchemy (2005),Comedy|Romance +172369,Backwards (2012),Drama +172371,Abel's Field (2012),Drama +172373,Bank$tas (2014),Comedy +172375,A Heartbeat Away (2011),Comedy +172377,A Bela e o Paparazzo (2010),Comedy|Romance +172379,Blue Eyelids (2007),Drama|Romance +172381,Abel (2010),Comedy|Drama +172383,Killer Constable (1980),Action|Adventure +172385,We Still Steal the Old Way (2017),Crime|Drama +172387,Kill Dil (2014),Action|Crime|Drama +172389,The Man Who Was Thursday (2016),Mystery|Thriller +172391,Permission (2017),Comedy|Romance +172393,The People Garden (2015),Drama|Mystery +172395,A (1998),Documentary +172397,A2 (2001),Documentary +172399,My Honor Was Loyalty (2015),Drama|War +172403,Tamala 2010: A Punk Cat in Space (2002),Animation|Comedy|Sci-Fi +172407,A Tale of Lost Times (1964),Children|Comedy|Fantasy +172409,Кентервильское привидение (1970),Animation +172411,The Sorcerer's Apprentice (1978),Animation|Drama +172413,Ismael's Ghosts (2017),Drama +172415,Boj S Tenyu 2: Revansh (2007),Action +172417,22 Minutes (2014),Action|Crime +172419,Parliament Funkadelic: One Nation Under a Groove (2005),(no genres listed) +172421,Ghost (2015),Children|Comedy +172423,The One (2015),Drama|War +172425,Семь кабинок (2007),(no genres listed) +172427,Little Man (2006),Comedy +172429,The State Counsellor (2005),Action|Crime|Drama|Mystery +172431,Dark World: Equilibrium (2013),Adventure|Fantasy +172433,The Hunter's Prayer (2017),Action|Thriller +172435,Easy on the Eyes (2014),Comedy|Sci-Fi +172437,Alive in Joburg (2005),Sci-Fi +172439,Toyland (2007),Drama|War +172441,Lucky Island (2013),Adventure|Comedy +172443,Bodywork (2001),(no genres listed) +172445,Revenge (1989),Drama +172447,The Terror of Tiny Town (1938),Comedy|Western +172449,He Even Has Your Eyes (2017),Comedy +172451,Irwin & Fran 2013,(no genres listed) +172455,Beatriz at Dinner (2017),Comedy +172457,Red Hollywood (1995),(no genres listed) +172459,The Black Room (2016),Horror +172461,Get Me Roger Stone (2017),Documentary +172463,AfterDeath (2015),Horror|Mystery|Thriller +172465,Bolshoi (2017),(no genres listed) +172467,To The Stars By Hard Ways (1980),Sci-Fi +172469,Rock n' Roll Nerd (2008),Comedy|Documentary +172471,Bangkok Hilton (1989),Drama +172473,The Scarlet Flower (1952),Animation|Fantasy +172475,Tail Gunner Joe (1977),Drama +172477,Life Cycles (2010),Documentary +172479,Kiss at Pine Lake (2012),Romance +172481,The Deserters (1986),Comedy|War +172483,Perth: The Geylang Massacre (2004),Action|Drama +172485,Paris à tout prix (2013),Comedy +172487,Harvest Moon (1998),Drama +172489,Casper: A Spirited Beginning (1997),Children|Comedy +172491,Blue World Order (2017),(no genres listed) +172493,13 Curses (2002),Horror|Thriller +172495,Mia and the Migoo (2008),Animation|Children +172497,T2 3-D: Battle Across Time (1996),(no genres listed) +172499,Совершенно серьезно (1961),(no genres listed) +172501,White Bim Black Ear (1977),Drama +172503,A Man with Warranty (2012),Comedy|Romance +172505,8 First Dates (2012),Comedy +172507,Stone (2012),Thriller +172509,Paris Express (2010),Action|Comedy|Crime +172511,Payback: Straight Up (2006),Action|Crime|Drama +172513,No Need to Grieve (2010),Comedy +172515,Hooked on the Game 2. The Next Level (2010),Action|Sci-Fi +172517,We Are from the Future 2 (2010),Action|Drama|Fantasy|War +172519,World Builder (2007),(no genres listed) +172521,Lovey-Dovey 2 (2008),Comedy|Fantasy +172523,Love and the City 2 (2010),Comedy|Romance +172525,The Interceptor (2009),Action|Sci-Fi|Thriller +172527,Hooked on the Game (2009),Action|Sci-Fi +172529,God of Gamblers (1989),Action|Comedy|Drama +172531,Sea Monsters: A Prehistoric Adventure (2008),Documentary +172533,Nightmare City 2035 (2007),Sci-Fi +172535,High Security Vacation (2009),Action|Comedy +172537,Boone: The Bounty Hunter (2017),Action +172539,Pitbull Tough Women (2016),Action|Crime|Drama +172541,Psy (1992),Action +172543,Psy II: Ostatnia krew (1994),Action +172545,Demons of War (1998),Drama|War +172547,Despicable Me 3 (2017),Adventure|Animation|Children|Comedy +172549,The Last Family (2016),Drama +172551,Karbala (2015),Drama|War +172553,Lucifer (2014),Drama +172555,Walpurgis (2015),(no genres listed) +172557,Shivering Trunks,(no genres listed) +172559,War Don Don (2010),Crime|Documentary +172561,Restart (2005),Drama +172563,"Oh, Bomb! (1964)",Action|Comedy|Crime +172565,Under the Blossoming Cherry Trees (1975),Fantasy|Horror +172567,The Salamander (1971),Comedy|Drama +172569,Bachelor Games (2016),Action|Adventure|Comedy|Horror|Thriller +172571,We Are X (2016),Documentary +172573,Rock Dog (2016),Adventure|Animation|Children|Comedy +172575,Юленька (2009),Drama|Horror|Thriller +172577,Last Year's Snow Was Falling (1983),Animation|Children|Comedy|Fantasy +172579,Nevalyashka (2007),Action|Comedy +172581,D Day (2008),Action +172583,Investigation Held by Kolobki (1986),Animation +172585,Karlson Returns (1970),Adventure|Animation|Children +172587,Vacations in Prostokvashino (1980),Animation +172589,Winter in Prostokvashino (1984),Animation +172593,Peculiarities of the National Hunt in the Winter (2000),Comedy +172595,Guardian Angels (1995),Action|Comedy|Crime|Thriller +172597,The Adventures of Buratino (1959),Adventure|Animation|Children|Fantasy +172599,Bayou (1957),Drama +172601,The Levelling (2017),Drama +172603,Clown Service (2015),Comedy +172605,Ludo (2015),Horror +172607,Jasmine Women (2004),Children|Drama|Romance +172609,The Saga of Biorn (2011),Animation|Comedy +172611,The New Tenants (2009),(no genres listed) +172613,Le noeud cravate (2008),Animation +172615,The Marriage Of A Young Stockbroker (1971),Comedy +172617,Tracktown (2017),Drama +172619,Никто не знает про секс (2006),Comedy +172621,"It's sunny on Deribassovskaya, or: It's raining on Brighton Beach yet again (1993)",Action|Comedy|Crime +172623,"Hello, I'm Your Aunt! (1975)",Comedy +172625,Swallowtail Butterfly (1996),Crime|Drama +172627,My Son (2007),(no genres listed) +172629,Picnic (1996),Drama|Fantasy +172631,Simon's Cat (2012),(no genres listed) +172635,Little Forest: Summer/Autumn (2014),Drama +172637,Priklyucheniya Kapitana Vrungelya (1979),Action|Adventure|Animation|Comedy +172639,Loneliness in the Net (2006),Drama|Romance +172641,Arès (2016),Drama|Sci-Fi|Thriller +172643,The Loves of Hercules (1960),Adventure|Fantasy +172645,S&Man (2006),Horror +172647,Head Case (2007),Drama|Horror +172649,Roommates Wanted (2016),Comedy +172651,Lettre d'une inconnue (2001),Drama +172653,Bleach: The DiamondDust Rebellion (2007),Action|Adventure|Animation|Drama +172655,Invasion of the Blood Farmers (1972),Horror +172657,Deadly Eyes (1982),Horror|Sci-Fi +172659,Reconversão (2012),Documentary +172661,Wolf Hall (2015),(no genres listed) +172663,King Charles III (2017),Drama +172665,The Game of Truth (2013),Comedy|Drama +172667,First They Killed My Father (2017),Drama +172669,Karlsson on the Roof (2002),Animation|Children +172671,The Rifleman of the Voroshilov Regiment (1999),Action|Crime|Drama +172673,Supermassive Black Holes,Documentary +172675,From 180 & Taller (2005),Comedy|Romance +172677,Antikiller 2: Antiterror (2003),(no genres listed) +172679,The Heat (2006),Comedy|Romance +172681,Law of Corruption (2005),Action|Crime|Drama +172683,The Jack Bull (1999),Action|Drama|Western +172685,Too Young to Die? (1990),Crime|Drama +172687,Sexy boys (2001),Comedy +172689,The Charge (2003),Action|Drama|Romance +172691,Comrades in Arms (1992),Action|Adventure +172693,The Nude (2001),Drama|Romance +172695,Space Station 3D (2002),Documentary +172697,The Dovekeepers (2015),Drama +172699,Mommy Dead and Dearest (2017),Documentary +172701,Alcoholist (2017),Thriller +172703,Andersonville (1996),Drama|War +172705,Tickling Giants (2017),Documentary +172707,More Than a Secretary (1936),Comedy|Romance +172709,Dead Awake (2017),Horror|Thriller +172711,Antikiller D.K (2009),(no genres listed) +172713,Live and Remember (2008),Drama|War +172715,Platon (2008),Drama +172717,Peculiarities of the National Ice Fishing (2007),Comedy +172719,Notre Dame de Paris (1998),Drama|Romance +172721,Polar Opposites (2008),Action +172723,Assassin's Creed: Lineage (2009),Action|Drama +172725,The Secret Life of Chaos (2010),Documentary +172727,The Spy (2012),Action|Thriller +172729,Ticket to Vegas (2013),Adventure|Comedy +172731,Portal: No Escape (2011),Sci-Fi +172733,Cancel Christmas (2011),Children|Fantasy +172735,The Double (2012),Comedy +172737,The Private Life of Plants (1995),Documentary +172739,Игра на выбывание,(no genres listed) +172741,Pirates: Blood Brothers (1999),Action|Adventure +172743,Somnio (2016),(no genres listed) +172745,Bummer 2 (2006),Action|Crime +172747,Genius (1991),Comedy|Crime|Drama +172749,"Hello, We Are Your Cover! (2005)",Comedy +172751,Mechenosets (2006),Action|Romance|Sci-Fi|Thriller +172753,Countdown (2006),Action|Thriller +172755,Peculiarities of the National Politics (2003),Comedy +172757,Body to Body (2003),Thriller +172759,Patrioticheskaya Komediya (1992),Comedy|Drama +172761,Dead Weight (2002),Comedy +172763,The Adventures of the Electronic (1979),Adventure|Children|Sci-Fi +172765,The Student Teachers (1973),Comedy|Thriller +172767,Dazhe Ne Dumay (2003),Comedy|Crime +172769,Red Bells Part I: Mexico on Fire (1982),Drama|Western +172771,"Liberté, Egalité, Choucroute (1985)",Comedy +172775,Men's Games (1992),Action|Drama +172777,Drive (1997),Action|Adventure|Comedy|Sci-Fi +172779,Bella Mafia (1997),Crime +172781,А поутру они проснулись (2003),Comedy|Drama +172783,Львиная доля (2001),(no genres listed) +172785,Paragraph 78: Film One (2007),Action|Sci-Fi|Thriller +172787,Kilometer Zero (2007),Action|Crime|Romance +172789,Lovey-Dovey (2007),Comedy|Fantasy +172791,Каменная башка (2008),Action|Drama +172793,Vovka in the Kingdom of Far Far Away (1965),Adventure|Animation|Children|Fantasy +172795,"Film, Film, Film (1968)",Animation|Comedy +172797,Olympia 52 (1952),(no genres listed) +172799,"Mary Poppins, Goodbye (1983)",Children|Fantasy +172801,In the Blood (2016),Drama +172803,The Midwife (2017),Comedy|Drama +172805,Odd Job (2016),Action|Comedy +172807,A Family Man (2017),Drama +172809,Paris Can Wait (2017),Romance +172813,The Wizard of Lies (2017),Drama +172815,The Diaries of a School Principal (1975),Children|Drama +172817,Newsmakers (2009),Action|Crime|Drama|Thriller +172819,Journey to the Edge of the Universe (2008),Documentary +172821,Caravaggio (2007),Drama +172823,Phenomenon II (2003),Drama|Sci-Fi +172825,Adventures of Mowgli: The Kidnapping (1968),Adventure|Animation|Children +172827,The Other Side (1994),Animation +172829,Racketeer (2007),Action|Crime|Drama +172831,Sappho (2008),Drama|Romance +172833,Hitler's Kaput! (2008),Comedy +172835,The Invincible (2008),Action +172837,Michou d'Auber (2007),Drama|Thriller +172839,"Chelovek, kotoryy znal vsyo (2009)",Comedy|Drama|Fantasy|Sci-Fi +172841,Longitude (2000),Drama +172843,The Black Hole (2006),Sci-Fi|Thriller +172845,Kiss through the Wall (2011),Comedy|Drama|Romance +172847,Strayed (2009),Thriller +172849,The Priest (2009),Drama|War +172851,Avatar: Creating the World of Pandora (2010),Documentary +172853,Good Intentions (2010),Comedy +172855,Путь к себе (2010),Romance +172857,Glukhar v kino (2010),(no genres listed) +172859,Evil Angel (2009),Horror|Thriller +172861,Star Runners (2009),Horror|Sci-Fi +172863,Out Of Order (2010),Comedy +172865,Office Romance. Our time (2011),Comedy|Romance +172867,Bablo (2011),Action|Crime +172869,A Quiet Outpost (2011),Action|Drama|War +172871,All Inclusive ili Vsyo Vklyucheno (2011),Comedy|Romance +172873,Kunskapens pris - balladen om den vilsne vandraren (2007),Sci-Fi +172877,Beyond (2003),Animation|Sci-Fi +172879,World Record (2003),Animation|Sci-Fi +172881,Final Flight of the Osiris (2003),Action|Animation|Sci-Fi +172883,August. Eighth (2012),Action|Drama +172885,That still Karloson! (2012),Children|Comedy|Fantasy +172887,Kid's Story (2003),Animation|Sci-Fi +172889,Program (2003),Animation|Sci-Fi +172891,Robotropolis (2011),Action|Adventure|Sci-Fi|Thriller +172893,Solovey-Razboynik (2012),Action|Adventure|Comedy +172895,The Billionaire (2011),Comedy|Drama|Romance +172897,The Jungle (2012),Adventure|Comedy|Romance +172899,Ghost Recon: Alpha (2012),Action|Sci-Fi|Thriller|War +172901,The Storm Gate (2006),Drama +172903,Diversant (2004),(no genres listed) +172905,The Idiot (2003),(no genres listed) +172907,The Infinite Worlds of H.G. Wells (2001),Drama|Romance|Sci-Fi +172909,Cheburashka (1971),Animation +172911,Botsman i Popugay (1982),Animation|Children|Comedy +172913,The Day of the Triffids (2009),Action|Horror|Sci-Fi|Thriller +172915,Falling Skies,(no genres listed) +172917,"Lisa, Lisa (1974)",Horror|Thriller +172919,The Astro-Zombies (1968),Crime|Horror|Sci-Fi +172921,Zombie vs. Ninja (1989),Action|Comedy|Horror +172923,Please Don't Eat My Mother! (1973),Comedy|Horror +172925,Willie Dynamite (1974),Crime|Drama +172927,Cat in the Brain (1990),Comedy|Horror +172929,The Nasty Rabbit (1964),Comedy +172931,My Breakfast with Blassie (1983),Comedy +172933,Ed Wood: Look Back in Angora (1994),Documentary +172935,Donald in Mathmagic Land (1959),Animation|Fantasy +172937,Oceans Rising (2017),Sci-Fi +172941,One Thousand and One Nights (1969),Animation|Drama|Fantasy +172943,I Eat Your Skin (1971),Horror +172945,The Tune (1992),Animation|Comedy +172949,Guns on the Clackamas (1995),Comedy +172953,Hair High (2004),Animation|Comedy|Horror +172955,Hitler's Folly (2016),Animation|Comedy +172957,Revengeance (2017),Action|Animation|Comedy +172959,Grim Prairie Tales (1990),Horror|Western +172961,"The Barbaric Beast of Boggy Creek, Part II (1984)",Drama|Horror|Mystery|Thriller +172965,Buckaroo Banzai Declassified (2002),Documentary +172967,Wild Weed (1949),Drama +172969,Terror Toons (2002),Horror +172971,The Junkman (1982),Action|Comedy|Crime|Thriller +172973,Savages from Hell (1968),Action|Drama|Thriller +172975,Deadly Weapons (1974),Crime|Drama +172977,The Weirdo (1989),Drama|Horror +172979,William S. Burroughs: Commissioner of Sewers (1991),Documentary +172981,Irene (1940),Comedy|Romance +172983,In Search of Ancient Astronauts (1973),Documentary +172985,The Killing of Satan (1983),Action|Horror +172987,The Final Programme (1973),Comedy|Sci-Fi|Thriller +172989,The Velvet Underground and Nico (1966),Documentary +172991,Henry Miller Asleep & Awake (1975),Documentary +172993,SST: Death Flight (1977),Action|Drama|Thriller +172995,Mighty Jack (1987),(no genres listed) +172997,Time of the Apes (1987),(no genres listed) +172999,The Slime People (1963),Horror|Sci-Fi +173001,Robot Holocaust (1986),Sci-Fi +173003,Surf School (2006),Comedy +173005,Rocket Attack U.S.A. (1961),Thriller +173007,Blame! (2017),Action|Animation|Drama|Horror|Sci-Fi +173009,Jungle Goddess (1948),Action|Adventure|Crime|Romance +173011,Lost Continent (1951),Sci-Fi +173013,The Hellcats (1968),Action|Thriller +173015,King Dinosaur (1955),Horror|Sci-Fi +173017,Extraterrestrial Visitors (1983),Horror|Sci-Fi +173019,Daddy-O (1958),(no genres listed) +173021,The Amazing Colossal Man (1957),Sci-Fi +173023,The Saga of the Viking Women and Their Voyage to the Waters of the Great Sea Serpent (1957),Adventure +173025,Star Force: Fugitive Alien II (1987),Sci-Fi +173027,Hercules Unchained (1959),Action|Fantasy|Sci-Fi +173029,Hercules and the Captive Women (1961),Adventure +173031,Manhunt in Space (1956),Adventure|Children|Sci-Fi +173033,Crash of Moons (1954),Action|Adventure|Sci-Fi +173035,The Eye Creatures (1965),Horror|Sci-Fi +173037,The Rebel Set (1959),Drama +173039,The Human Duplicators (1965),Sci-Fi +173041,Labors of Hercules (1958),Adventure|Fantasy +173043,The Girl in Lovers Lane (1960),Crime|Drama|Romance +173045,Teen-Age Strangler (1964),Horror|Thriller +173047,The Wild World of Batwoman (1966),Adventure|Comedy|Crime|Sci-Fi +173049,Radar Secret Service (1950),Action|Adventure|Crime|Drama|Romance +173051,12 to the Moon (1960),Sci-Fi +173053,Girls Town (1959),Drama +173055,The Dead Talk Back (1957),Horror +173057,Colossus and the Headhunters (1963),Action|Adventure|Romance +173059,Bloodlust! (1961),Adventure|Drama|Horror +173061,Code Name: Diamond Head (1977),Crime|Drama +173063,The Skydivers (1963),Drama +173065,The Sinister Urge (1960),Crime|Drama|Thriller +173067,San Francisco International (1970),Drama +173069,Kitten with a Whip (1964),Thriller +173071,Racket Girls (1951),Drama +173073,High School Big Shot (1959),Crime|Drama +173075,Night Train to Mundo Fine (1966),Action|Adventure|Thriller +173077,Danger!! Death Ray (1967),Drama|Romance|Sci-Fi +173079,Santo vs. the Vampire Women (1962),Action +173081,Night of the Blood Beast (1958),Horror|Sci-Fi +173083,The Brute Man (1946),Drama|Horror +173085,The Thing That Couldn't Die (1958),Horror +173087,Terror from the Year 5000 (1958),Sci-Fi +173089,The She-Creature (1956),Fantasy|Horror|Romance +173091,I Was a Teenage Werewolf (1957),Drama|Fantasy|Horror|Sci-Fi +173093,Father Frost (1964),Children|Comedy|Fantasy|Romance +173095,Riding with Death (1976),Action|Sci-Fi|Thriller +173097,Agent for H.A.R.M. (1966),Action|Adventure +173099,Prince of Space (1959),Action|Sci-Fi +173101,The Horror of Party Beach (1964),Horror +173103,Invasion of the Neptune Men (1961),(no genres listed) +173105,The Projected Man (1966),Horror|Sci-Fi +173107,Werewolf (1995),Horror +173109,The Touch of Satan (1971),Horror +173111,Gorgo (1961),Action|Horror|Sci-Fi +173113,The Final Sacrifice (1990),Adventure|Fantasy|Horror +173115,Devilfish (1984),Action|Horror|Thriller +173117,Quest of the Delta Knights (1993),Action|Adventure|Fantasy +173119,Kill 'em All (2017),Action +173121,Soultaker (1990),Fantasy|Horror|Sci-Fi +173123,Merlin's Shop of Mystical Wonders (1996),Fantasy|Horror +173125,Track of the Moon Beast (1976),Horror|Sci-Fi +173127,"Hamlet, Prince of Denmark (1961)",Drama|Fantasy +173129,Horrors of Spider Island (1960),Horror +173131,Blood Legacy (1971),Horror|Mystery|Thriller +173133,Brides of Blood (1968),Horror|Sci-Fi +173135,Nirvana: Live At The Paramount (2011),(no genres listed) +173137,Kill Switch (2017),Sci-Fi +173139,The Bad Batch (2017),Horror|Romance|Thriller +173141,The Stopover (2016),Drama +173143,Maigrets Night at the Crossroads (2017),Crime|Mystery|Thriller +173145,War for the Planet of the Apes (2017),Action|Adventure|Drama|Sci-Fi +173147,My Stepdaughter (2015),Thriller +173149,911 Nightmare (2016),(no genres listed) +173151,Vampyres (1974),Horror|Thriller +173153,Heroes Shed No Tears (1986),Action +173155,Chronically Metropolitan (2016),Comedy|Drama +173157,Sophie and the Rising Sun (2016),Drama +173159,Silent Youth (2012),Drama +173161,Kidnap (2017),Drama|Thriller +173163,Titanic: The Final Word with James Cameron (2012),Documentary +173165,The Rain Children (2003),Adventure|Animation +173167,Ustad Hotel (2012),Children|Drama +173169,Underworld: Endless War (2011),Action|Animation|Horror +173171,The Sword Stained with Royal Blood (1981),Action +173173,This Is Not What I Expected (2017),Comedy|Romance +173175,Badrinath Ki Dulhania (2017),Comedy|Drama|Romance +173177,Appetites (2015),Horror|Thriller +173179,Alluda Majaka (1995),(no genres listed) +173181,Mordkommission Berlin 1 (2015),Crime +173183,Siberiade (1979),Drama|War +173185,Rosa Chumbe (2015),(no genres listed) +173187,Never So Few (1959),Action|Drama|War +173189,Compared To What: The Improbable Journey Of Barney Frank (2014),Documentary +173191,Neither Wolf Nor Dog,Drama +173193,The Thoughts That Once We Had (2015),Documentary +173195,Cop or Hood (1979),Action|Comedy|Crime +173197,The Square (2017),Drama +173199,How Not to Work & Claim Benefits... (and Other Useful Information for Wasters) (2016),Comedy|Drama +173201,Apprentice (2016),Drama +173203,How to Talk to Girls at Parties (2017),Comedy|Romance|Sci-Fi +173205,The Meyerowitz Stories (2017),Comedy +173207,Tehran Taboo (2016),(no genres listed) +173209,War Machine (2017),Comedy|Drama|War +173211,Anjelah Johnson: The Homecoming Show (2013),Comedy +173213,The Goodbye Kiss (2006),Crime|Drama|Thriller +173215,The Paradise Suite (2015),Drama +173217,Bienvenido Paisano (2006),(no genres listed) +173219,Aaaaaaaah! (2015),Comedy|Horror|Thriller +173221,Seuls Two (2008),Comedy +173223,La Tour Montparnasse Infernale (2001),Comedy +173225,Mohamed Dubois (2013),Comedy +173227,Halal Police d'Etat (2011),Comedy +173229,Hangar 10 (2014),Horror|Sci-Fi|Thriller +173231,III (2015),Drama|Horror|Thriller +173233,Amateurs in Space (2016),Documentary +173235,Tokyo Idols (2017),Documentary +173237,Beur sur la ville (2011),Comedy +173239,Tender Son: The Frankenstein Project (2010),Drama +173241,Becoming Bond (2017),Comedy|Documentary +173245,Pretty as a Picture: The Art of David Lynch (1997),Documentary +173247,La familia (2017),Drama +173249,The Prisoner of Second Avenue (1975),Comedy +173251,The Clown Murders (1976),Drama|Mystery|Thriller +173253,Vir Das: Abroad Understanding (2017),Comedy +173255,"Norm Macdonald: Hitler's Dog, Gossip & Trickery (2017)",Comedy +173257,Lenny Cooke (2013),Documentary +173259,The Step (1985),(no genres listed) +173261,An Eye for an Eye (1973),Horror|Thriller +173263,Express 'Moscow-Russia' (2014),Comedy +173265,Best Worst Thing That Ever Could Have Happened... (2016),Documentary +173267,Red Sun (1971),Action|Western +173269,El Crack (1981),Crime|Drama|Thriller +173271,The Hunchback of Notre-Dame (1986),Animation|Children +173273,Wakefield (2017),Drama +173275,Lana Del Rey: The Greatest Story Never Told (2013),(no genres listed) +173277,Women (1965),Drama|Romance +173281,The Wedding Plan (2017),Comedy|Romance +173283,Red Nose Day Actually (2017),Comedy|Romance +173285,Whitney: Can I Be Me (2017),Documentary +173287,Swamp Girl (1971),Drama +173289,Lure of the Wilderness (1952),Adventure|Drama|Romance +173291,Valerian and the City of a Thousand Planets (2017),Action|Adventure|Sci-Fi +173293,The Mad Scientist (1941),Action|Animation +173295,The Underground World (1943),(no genres listed) +173297,Lensman (1984),Action|Animation|Sci-Fi +173299,Classic Albums: The Who - Who's Next (1999),Documentary +173301,Knifepoint (2011),Crime|Horror|Thriller +173303,The Silver Screen: Color Me Lavender (1997),Documentary +173305,El Super (1979),Comedy +173307,The Gracefield Incident (2015),Action|Horror|Sci-Fi +173309,Legend of the Galactic Heroes: Overture to a New War (1993),Sci-Fi +173311,Hammer (2016),Action|Drama +173313,A2 Racer (2004),Action +173315,Long Strange Trip (2017),Documentary +173317,Shadow World (2016),Documentary +173319,Warning: This Drug May Kill You (2017),Documentary +173321,Maksim Perepelitsa (1955),Comedy +173323,The Mars Generation (2017),Documentary +173325,The Northlander (2016),Adventure|Fantasy|Sci-Fi +173327,Requiem (2001),Action|Horror|Thriller +173329,Magyar vándor (2004),Adventure|Comedy +173331,Kincsem (2017),Adventure|Drama|Romance +173333,The Man of Gold (1962),Drama|Romance +173335,Sose halunk meg! (1993),(no genres listed) +173337,Willy The Sparrow (1988),Animation|Children +173339,Slap-Jack (1992),(no genres listed) +173341,The Toth Family (1969),Comedy|Drama|War +173343,Abigél (1978),Drama +173345,Cat City (1986),Animation|Children +173347,Philosophy: A Guide to Happiness,Documentary +173349,The Guy from Our Cemetery (2015),Comedy|Mystery|Thriller +173351,Wow! A Talking Fish! (1983),Animation|Children|Comedy|Fantasy +173353,"Abraxas, Guardian of the Universe (1990)",Action|Adventure|Sci-Fi +173355,Travels of an Ant (1983),Animation +173357,The Black Raven (1943),Mystery +173359,Sharpe's Rifles (1993),Action|Adventure|War +173361,Teheran Incident (1978),Action|Adventure|Thriller +173363,American Meth (2008),Documentary +173365,Picture of Light (1994),Documentary +173367,Kaos (1984),Comedy|Drama|Fantasy|Mystery|Romance +173369,You Were Never Really Here (2017),Drama +173371,Lucky Bastard (2014),Crime|Drama|Thriller +173373,What on Earth! (1966),Animation +173377,Life Risking Romance (2016),Comedy|Romance|Thriller +173379,Afro Tanaka (2012),Comedy +173381,Liar Game: Reborn (2012),Drama +173383,The Who - The Vegas Job (2006),(no genres listed) +173387,The Who & Special Guests Live at the Royal Albert Hall (2000),Documentary +173389,The Who: Thirty Years of Maximum R&B (1994),(no genres listed) +173393,Three Sisters (1970),(no genres listed) +173395,Wedding in Galilee (1988),Drama|Romance +173397,Jimi Hendrix: Electric Church (2015),Documentary +173399,Mali Blues (2016),(no genres listed) +173401,Nice Places to Die (2015),Documentary +173405,Black Rose (2014),Action|Crime|Drama +173407,Living (2012),(no genres listed) +173409,Shambles (2016),(no genres listed) +173411,Black Lolita (1975),Action|Drama +173413,Life Off Grid (2016),Documentary +173415,Loev (2016),Drama|Romance +173417,The Pass (2016),Drama +173419,The Devil Came from Akasava (1971),Adventure +173421,Texas Rising (2015),Drama|Western +173423,Home of the Brave (1986),(no genres listed) +173427,Radiant City (2007),Documentary +173429,Hasan Minhaj: Homecoming King (2017),Comedy +173431,The Wild Country (1970),Adventure|Children|Western +173433,Metalocalypse: The Doomstar Requiem (2013),Animation|Comedy|Drama +173435,Perhaps Love (2005),Drama|Romance +173437,Jeremiah Tower: The Last Magnificent (2016),Documentary +173439,Happy Burnout (2017),Comedy +173441,Fedora (1978),Drama|Romance +173443,Bloody Psycho (1989),Horror +173445,The Night before the Exams (2006),Comedy +173447,Intimate Parts (2013),Drama|Romance +173449,Till Night Do Us Part (2012),Comedy +173451,The Yellow Eyes of Crocodiles (2014),Drama +173453,The Black Hen (2015),Drama +173457,Among the Believers (2015),Documentary +173459,Behemoth (2015),Documentary +173461,Sex and Broadcasting (2014),(no genres listed) +173463,The Dust Storm (2016),Drama|Romance +173465,The Last Day of Summer (1958),Drama|Romance +173467,Sarah Silverman: A Speck of Dust (2017),Comedy +173469,Umbrella Coup (1980),Comedy +173471,The Model Solution (2002),Drama +173473,The Hot Box (1972),Action|Adventure|Drama +173475,Yarn (2016),Animation|Documentary +173477,Taekwondo (2016),Drama|Romance +173479,The Boss's Daughter (2016),Comedy|Drama|Romance +173481,Three heroes and the King of the Sea (2017),(no genres listed) +173483,Vamps (2017),Action|Fantasy|Horror|Thriller +173485,Gatekeeper (2016),Documentary +173487,Allen Iverson: The Answer (2016),Documentary +173489,The Magic Roundabout (2005),Animation|Children +173491,Negociador (2014),Comedy +173493,Breakdown Lane (2017),Drama|Horror|Thriller +173495,Rock 'n Roll (2017),Comedy +173497,Baxter! (1973),Drama +173499,Black Butterfly (2017),Thriller +173501,I am Jane Doe (2017),Crime|Documentary +173503,Поэма о крыльях (1979),Drama +173505,Phobia (1980),Drama|Horror|Thriller +173507,Girls Nite Out (1982),Horror +173509,Stranded (1987),Sci-Fi +173511,Held For Ransom (1938),Crime +173513,Mudhalvan (1999),Thriller +173515,Home Sweet Home (2013),Horror|Thriller +173517,Nirvana (2008),Drama|Romance +173519,Cannibal (2006),Crime|Drama|Horror|Thriller +173521,Interceptors (1999),Action|Sci-Fi|Thriller +173523,Nemesis (1992),Sci-Fi|Thriller +173525,Superfantozzi (1986),Comedy +173527,Skinhead Attitude (2003),Documentary +173529,Boudu (2005),Comedy +173531,Recon 2020: The Caprini Massacre (2004),Action|Sci-Fi +173533,Doctor Aybolit (1984),Adventure|Animation|Comedy +173535,The Adventures of Sherlock Holmes and Doctor Watson: The Hunt for the Tiger (1980),(no genres listed) +173537,977 (2006),Drama|Sci-Fi +173539,Hard-Hearted (2007),Crime|Drama +173541,Intergirl (1989),Drama|Romance +173543,Frost (2012),Horror|Sci-Fi|Thriller +173545,The Sannikov Land (1973),Adventure|Fantasy +173547,Extraterrestrial (2007),Drama|Sci-Fi +173549,The Goddess (2004),Drama +173551,Gamer (2001),Action|Sci-Fi|Thriller +173553,Junk (2006),Crime|Horror|Thriller +173555,Star Command (1996),Drama|Sci-Fi|Thriller +173557,Hello Smile! (1956),Comedy +173559,Life for Two (1958),Comedy +173561,How to Keep the Red Lamp Burning (1965),Comedy|Drama +173563,Deadly Species (2002),Horror +173565,The Worst of Faces of Death (1987),Documentary|Horror +173567,Peek-a-boo (1954),Comedy +173569,The Twelve Chairs (1962),Comedy +173571,The Second Tragic Fantozzi (1976),Comedy +173573,Virgin Report (1972),Comedy|Drama|Horror +173575,Interceptor Force 2 (2002),Action|Sci-Fi +173577,They Are Among Us (2004),Horror|Sci-Fi|Thriller +173579,L'educazione sentimentale di Eugenie (2005),(no genres listed) +173581,The Da Vinci Treasure (2006),Action|Adventure|Mystery +173583,Spermula (1976),Horror|Sci-Fi +173585,The Fear of Speed (2002),Action|Comedy +173587,Wild Flowers (2000),Action|Comedy|Drama +173589,Assault of the Killer Bimbos (1988),Action|Comedy|Thriller +173591,The Guyver: Bio-Booster Armor (1989),Action|Animation|Horror|Sci-Fi +173593,Snuff 102 (2007),Horror|Thriller +173595,A Prince (almost) Charming (2013),Comedy|Romance +173597,Shark Zone (2003),Action|Adventure|Drama|Horror|Thriller +173599,Door on the Left as You Leave the Elevator (1988),Comedy +173601,The Fruit Is Ripe (1977),Comedy|Romance +173603,The Naked Eye (1998),(no genres listed) +173605,Schoolgirl Report Part 1: What Parents Don't Think Is Possible (1970),Drama +173607,Open Graves (2009),Horror|Thriller +173609,Black Magic M-66 (1987),Action|Animation|Sci-Fi +173611,Dr. Alien (1989),Comedy|Sci-Fi +173613,2012 Doomsday (2008),Action|Adventure|Fantasy|Horror|Sci-Fi|Thriller +173615,Combustion (2013),Action +173617,Adventures Of A Taxi Driver (1976),Comedy +173619,Fugitives (1986),Comedy|Crime +173621,The Voyeur (1994),Drama|Romance +173623,The Chronicles of Riddick: Dark Fury (2004),Action|Animation|Sci-Fi|Thriller +173625,She (1984),Action|Adventure|Fantasy +173627,Manitou's Shoe (2001),Comedy|Western +173629,Appleseed: Ex Machina (2007),Action|Animation|Sci-Fi|Thriller +173631,The Giant King (2012),Animation|Children|Comedy|Fantasy|Sci-Fi +173633,The Dark Side of The Moon (1990),Action|Horror|Sci-Fi|Thriller +173635,My Seawoman (1990),Comedy +173637,Seven Old Men and One Girl (1968),Comedy +173639,The Marriage of Balzaminov (1964),Comedy +173641,The Cutlass (1973),Adventure|Children +173643,Take Care of the Women! (1981),Comedy|Romance +173645,Butterfly Kiss (2006),Action|Crime|Romance +173647,The Life Of Buddha (2007),Animation|Documentary|Drama +173649,Purgatory (1998),War +173651,Rammstein: Live aus Berlin (1999),(no genres listed) +173653,Dumpling Brothers (2013),Comedy|Drama +173655,The Bonus (1974),Drama +173657,Babnik (1990),Comedy +173659,Indigo (2008),Fantasy|Mystery|Thriller +173661,The Cook (1965),Comedy|Romance +173663,Valentin and Valentina (1985),Drama|Romance +173665,Where Is Enohp Located? (1987),Comedy +173667,Zigzag of Success (1968),Comedy +173669,Be My Husband (1981),Comedy|Romance +173671,The Mechanic Gavrilov's Beloved Woman (1982),Comedy|Romance +173673,The Foundling (1939),Comedy|Drama +173675,Traktoristy (1939),Comedy|Drama +173677,The Stepmother (1973),Drama +173679,The Imaginary Voyage (1926),Comedy|Drama|Fantasy +173681,White Dew (1983),Comedy +173683,The Invisible Man (1984),Drama|Sci-Fi +173685,Three Poplars on Plyuschikha Street (1967),Drama|Romance +173687,Three Plus Two (1963),Comedy|Romance +173689,The Tracker (2001),Action +173691,The Dancer (2000),Drama +173693,One Way (2006),Crime|Mystery|Thriller +173695,Succubus (1968),Horror +173697,"Och, Karol (1985)",Comedy|Romance +173699,A Bell From Hell (1973),Horror +173701,Exit (2000),Crime|Sci-Fi|Thriller +173703,Courage (2011),Children|Drama +173705,Heroes (2010),Adventure|Drama +173707,Tomorrow I'll Wake Up and Scald Myself with Tea (1977),Comedy|Sci-Fi|War +173709,Soulless 2 (2015),Drama +173711,Dumb: The Story of Big Brother Magazine (2017),Documentary +173713,Parsifal (1982),Drama +173715,Tropical Carmine (2014),(no genres listed) +173717,After Love (2016),Comedy|Drama +173719,Thunder Road (2016),Comedy|Drama +173721,Manoman (2015),Animation|Drama +173723,The Most Beautiful Thing (2012),(no genres listed) +173725,The Glass Cell (1978),Crime|Drama +173727,Anna Karenina (1948),Drama|Romance +173729,The Promise (2016),Documentary +173731,Sweet Virginia (2017),(no genres listed) +173733,Mobile Homes (2017),Drama +173735,The Farthest (2017),Documentary +173737,Crossing the Last Line (1991),Action|Crime|Drama +173739,Marriage (1978),(no genres listed) +173741,The Old Man (2012),Action|Adventure|Drama +173743,A Tale of Legendary Libido (2008),Comedy|Drama|Fantasy +173745,A Stork's Journey (2017),Adventure|Animation +173747,A Grande Família: O Filme (2007),Comedy +173749,Macbeth (2010),Drama +173751,Tiger Raid (2016),Thriller +173753,Hunter Will Get You (1976),Action|Crime|Thriller +173755,Nobody Wanted to Die (1965),Drama +173757,Up in the World (1956),Comedy +173759,The Alive and the Dead (1963),Drama|War +173761,Teenage Hitchhikers (1975),Comedy +173763,Love Hotel (1985),(no genres listed) +173765,You'll Never Be Alone (2016),Crime|Drama +173767,Harold and Lillian: A Hollywood Love Story (2015),Documentary +173769,The Journey (2017),Drama +173771,McLaren (2016),Action|Documentary|Drama +173773,Destiny (2006),Drama +173775,Kommunist (1958),Drama +173777,The Dancer (2016),Drama +173779,Grow Your Own (2007),Comedy +173781,The Battalion (2015),Action|Drama|War +173783,All About the Money (2017),(no genres listed) +173785,30 Years to Life (1998),Sci-Fi|Thriller +173787,Blood Freak (1972),Horror|Sci-Fi +173789,Little Vera (1988),Drama|Romance +173791,The Rumyantsev Case (1955),Crime|Drama|Mystery +173793,Tale of the Siberian Land (1947),Drama|Romance +173795,Aniskin and Fantomas (1974),Comedy|Mystery +173797,We Are Family (2016),Comedy +173799,Winter Cherries (1985),Comedy|Drama|Romance +173801,Ехали в трамвае Ильф и Петров (1972),Comedy +173803,The Blonde Around the Corner (1983),Comedy|Romance +173805,Tiger Shark (1932),Drama|Romance +173807,The Whiskered Nanny (1977),Children|Comedy +173809,Lenin in October (1937),Drama +173811,Love by Request (1982),Comedy|Romance +173813,Приключения Домовёнка (1986),Animation +173815,Carnival (1982),Comedy|Drama|Romance +173817,Он вам не Димон (2017),Documentary|Mystery +173819,WiNWiN (2016),(no genres listed) +173821,Choice of Purpose (1975),Drama +173823,Brain on Fire (2017),Drama +173825,The Cavern (1964),Adventure|Drama|War +173827,Fanaa (2006),Action|Drama|Romance|Thriller +173829,One Day Since Yesterday: Peter Bogdanovich & the Lost American Film (2014),Documentary +173831,Lucid Dream (2017),Sci-Fi|Thriller +173833,Fish and Elephant (2001),(no genres listed) +173835,Drone (2017),Thriller +173837,Dragonheart: Battle for the Heartfire (2017),Fantasy +173839,The Straw Hat (1974),Comedy +173841,Wounded Game (1977),Drama +173843,The Longest Nite (1998),Action|Crime|Drama|Thriller +173845,Tourist Trap (1979),Horror|Mystery|Thriller +173847,Stasis (2017),Sci-Fi +173849,Amor.com (2017),Romance +173851,Медведь (1938),Comedy +173853,The Portuguese Nun (2009),Drama +173855,"Sinbad, the Sailor (1947)",Adventure +173857,Growing Up Smith (2017),Children|Comedy|Drama +173859,The Night Before Christmas (1951),Animation|Fantasy +173861,Cycle Vixens (1978),Action|Drama +173863,X500 (2016),(no genres listed) +173865,That Thing Called Tadhana (2014),Romance +173867,All Souls' Day (1961),Drama +173869,Metamorphoses (1978),Animation|Fantasy +173871,I'll Take You There (1999),Comedy|Drama|Romance +173873,Gulliver's Travels (1996),Adventure|Children|Fantasy +173875,AWOL (2016),Drama +173877,Angel (2016),(no genres listed) +173879,Shimmer Lake (2017),(no genres listed) +173881,Crypt of Dark Secrets (1976),Crime|Horror +173883,How to Lose Weight in 4 Easy Steps! (2016),Drama +173885,"How Far, How Near (1972)",Drama +173887,Ded Moroz i seriy volk (1978),(no genres listed) +173889,Black Night (2005),Drama +173891,The Mitten (1967),Animation +173893,The Sandman (2011),Comedy|Drama|Fantasy +173895,The Dog in the Manger (1977),Comedy +173897,Extraordinary Mission (2017),Action|Crime|Thriller +173899,Passer-By (1984),Documentary +173901,Let Me Make You a Martyr (2016),Drama +173903,Word Is Out (1977),Documentary +173905,Corpse Party (2015),Horror +173907,Le grand Méliès (1952),Documentary|Drama +173909,Playing Cards (1896),Documentary +173911,A Stranger Is Watching (1982),Drama|Horror|Thriller +173913,Center of My World (2016),Children|Drama +173915,I Know a Woman Like That (2009),Documentary +173917,It's Not the Time of My Life (2016),Comedy|Drama +173919,Legend of the Galactic Heroes: Golden Wings (1992),Animation +173921,A Terrible Night (1896),Comedy|Horror +173923,South Of Pico (2007),Drama +173925,Seven Sisters (2017),Sci-Fi|Thriller +173927,Malcolm X (1972),Documentary +173929,House of Last Things (2013),Fantasy|Thriller +173931,7:19 (2016),Drama|Thriller +173933,The Son of Bigfoot (2017),Animation|Children +173935,Tokyo Ghoul (2017),Action|Drama|Horror|Thriller +173937,The Tamarind Seed (1974),Drama|Romance +173939,On Body and Soul (2017),Drama|Romance +173941,Atomic Blonde (2017),Thriller +173945,The Wearing of the Grin (1951),Animation +173947,The Great Piggy Bank Robbery (1946),Animation|Children|Comedy +173949,A Hound for Trouble (1951),(no genres listed) +173951,Bunker Hill Bunny (1950),(no genres listed) +173953,Don't Give Up the Sheep (1953),(no genres listed) +173955,Bully for Bugs (1953),Animation +173957,Ali Baba Bunny (1957),Animation|Children|Comedy +173959,The Dreamed Ones (2016),(no genres listed) +173961,Family Μember (2015),(no genres listed) +173963,Empties (2007),Comedy +173965,Sanctuary (2015),Drama +173967,Hot Hot Hot (2011),(no genres listed) +173971,The Actors (2003),Comedy +173973,Where the Green Ants Dream (1984),Drama +173975,God of War (2017),Action +173977,The Vanishing Lady (1896),(no genres listed) +173979,A Nightmare (1896),Horror +173981,The Haunted Castle (1897),Horror +173983,Retaliation (1968),(no genres listed) +173987,Shree 420 (1955),Drama|Romance +173989,Moving Day (1936),Animation +173991,No Smoking (1951),(no genres listed) +173993,Donald's Nephews (1938),Animation +173995,Home Made Home (1951),(no genres listed) +173997,The Surrender of Tournavos (1897),Action|Drama|War +173999,Dark Harbor (1999),Drama|Thriller +174001,Between Love and Goodbye (2009),Drama|Romance +174003,Labyrinth (2003),Crime|Drama|Mystery|Thriller +174005,Aaron's Blood (2017),(no genres listed) +174007,Made in Bangkok (2015),(no genres listed) +174011,Alexander Graham Bell: The Sound and the Silence (1993),Drama +174013,New Trial (2017),Drama +174015,Saving Banksy (2017),Documentary +174017,The Exception (2017),Drama +174019,The Everyday (2013),Documentary +174021,Between Calais and Dover (1897),(no genres listed) +174023,Out of Time (1988),Action|Comedy +174025,The Bewitched Inn (1897),Fantasy +174027,After the Ball (1897),(no genres listed) +174029,"Divers at Work on the Wreck of the ""Maine"" (1898)",(no genres listed) +174031,Patchwork (2015),Comedy|Horror +174033,The Killing Season (2016),Crime|Documentary +174035,BoJack Horseman Christmas Special: Sabrina's Christmas Wish (2014),Comedy +174039,Genesis,(no genres listed) +174041,Panorama pris d'un train en marche (1898),Documentary +174043,La buena nueva (2008),Drama +174045,Goon: Last of the Enforcers (2017),Comedy +174047,Tubby the Tuba (1975),Animation|Children +174049,Postscript (1983),Drama +174051,Photographer (2015),Comedy|Drama +174055,Dunkirk (2017),Action|Drama|Thriller|War +174057,I'm Not Here,Drama +174059,Herakles (1962),Documentary +174061,The Unprecedented Defence of the Fortress Deutschkreuz (1967),(no genres listed) +174063,Last Words (1968),Documentary +174065,Precautions Against Fanatics (1969),Comedy +174067,Handicapped Future (1971),Documentary +174069,No One Will Play with Me (1976),Drama +174071,Giovanna d'Arco (1989),Drama +174073,Echoes From a Sombre Empire (1990),Documentary +174075,Jag Mandir (1991),Documentary +174079,Pilgrimage (2001),Documentary +174081,La Bohème (2009),Documentary +174083,Ode to the Dawn of Man (2011),Documentary +174085,Fast and Furry-Ous (1949),Animation|Children|Comedy +174087,Feed the Kitty (1952),Animation|Children|Comedy +174089,Hurdy-Gurdy Hare (1950),(no genres listed) +174091,Operation: Rabbit (1952),Animation +174093,Bugs Bunny and the Three Bears (1944),(no genres listed) +174095,Devil May Hare (1954),Animation|Children|Comedy +174097,Children in the Surf at Coney Island (1904),(no genres listed) +174099,New York City 'Ghetto' Fish Market (1903),(no genres listed) +174101,"Train Taking Up Mail Bag, U.S.P.O. (1903)",(no genres listed) +174103,"What Happened on Twenty-Third Street, New York City (1901)",Comedy|Documentary +174105,Grandma's Reading Glass (1900),Drama +174107,Let Me Dream Again (1900),Comedy|Romance +174111,Bairavaa (2017),Action +174113,The Enchanted Well (1903),(no genres listed) +174115,Jupiter's Thunderballs (1903),Comedy|Fantasy +174117,The Drawing Lesson (1903),(no genres listed) +174119,"Arrival of McKinley’s Funeral Train at Canton, Ohio (1901)",Documentary +174121,"Bombardment of Taku Forts, by the Allied Fleets (1900)",(no genres listed) +174123,How a French Nobleman Got a Wife Through the 'New York Herald' Personal Columns (1904),Action|Comedy|Romance +174125,"Bird's-Eye View of Dock Front, Galveston (1900)",(no genres listed) +174127,Why Jones Discharged His Clerks (1900),(no genres listed) +174129,Gymnasium Exercises and Drill at Newport Training School (1900),(no genres listed) +174131,Battle of Mafeking (1900),(no genres listed) +174133,Wolf! Wolf! (1944),Animation +174135,Stupidstitious Cat (1947),(no genres listed) +174137,McDougal's Rest Farm (1947),(no genres listed) +174139,"Annual Baby Parade, 1904, Asbury Park, N.J. (1904)",(no genres listed) +174141,Belladonna of Sadness (1973),Animation|Drama|Fantasy +174143,The Roller Skate Craze (1907),Comedy +174147,Gymkata (1985),Action|Drama +174149,The Enchanted Sedan Chair (1905),(no genres listed) +174151,Faust in Hell (1903),Fantasy +174153,Bluebeard (1901),Drama|Fantasy|Horror +174155,Faust et Méphistophélès (1903),Fantasy|Horror +174157,The Infernal Caldron (1903),Fantasy|Horror +174159,The Monster (1903),Fantasy|Horror +174161,Apparitions (1903),Comedy|Fantasy +174163,"Bob Kick, the Mischievous Kid (1903)",Comedy +174165,The Oracle of Delphi (1903),Crime|Fantasy +174167,Extraordinary Illusions (1903),Comedy +174169,The Mysterious Box (1903),(no genres listed) +174171,The Kingdom of Fairies (1903),Adventure|Fantasy +174173,The Magic Lantern (1903),Fantasy +174175,Misfortune Never Comes Alone (1903),(no genres listed) +174177,Grandma and the Bad Boys (1900),(no genres listed) +174179,The Merry Frolics of Satan (1906),Comedy|Fantasy|Horror +174181,The Keepers (2017),Crime|Documentary|Drama +174183,The Red Spectre (1907),Fantasy|Horror +174185,The Dancing Pig (1907),Comedy +174187,The Frog (1908),Fantasy +174189,Les papillons japonais (1908),(no genres listed) +174191,Diabolical Pickpocket (1908),Comedy|Crime|Fantasy +174193,The Charmer (1906),Fantasy +174195,The '?' Motorist (1906),Comedy|Fantasy|Sci-Fi +174197,Ali Baba and the Forty Thieves (1902),Fantasy +174199,Easter Eggs (1907),Fantasy +174201,Miniature Theatre (1906),Animation|Comedy +174203,Les tulipes (1907),(no genres listed) +174205,Traveller's Nightmare (1909),Fantasy +174207,The Unskillful Skater (1907),Comedy +174209,The Bewitched Shepherd (1906),Comedy|Fantasy +174211,The Country Doctor (1909),Drama +174213,The Sealed Room (1909),Drama|Horror +174215,A Corner in Wheat (1909),(no genres listed) +174219,What Drink Did (1909),(no genres listed) +174225,Farmer Al Falfa Sees New York (1916),Animation +174227,Heavy Metal Britannia (2010),Documentary +174229,Entre Bateas (2002),Action|Drama +174231,El Violetero (1960),Comedy +174233,Princes of the Yen (2014),Documentary +174235,A Little Princess (1986),Children|Drama +174237,Frog (1987),(no genres listed) +174239,Don't Let Me Drown (2009),Drama|Romance +174241,Life of an American Fireman (1903),Action +174243,Fire! (1901),Action|Drama +174245,The Drunkard's Reformation (1909),(no genres listed) +174247,The Seven Ages (1905),(no genres listed) +174249,History of a Crime (1901),Crime|Drama +174251,The Cure (1924),Animation|Comedy +174253,The Boarding School Girls (1905),(no genres listed) +174255,The Night Before Christmas (1905),Children|Fantasy +174257,New York Subway (1905),Documentary +174261,The Curtain Pole (1909),Comedy +174263,Humorous Phases of Funny Faces (1906),Animation|Comedy +174265,The 'Teddy' Bears (1907),Comedy|Fantasy +174267,Dreams of Toyland (1908),Animation|Drama|Fantasy +174269,Troubles of a Grass Widower (1908),Comedy +174271,A Narrow Escape (1908),(no genres listed) +174273,The Unchanging Sea (1910),Drama +174275,The Vacuum Cleaner (1908),Comedy|Fantasy|Sci-Fi +174277,A Very Fine Lady (1908),Comedy +174279,The Yawner (1907),Comedy +174281,An Awful Symphony (1909),Comedy|Fantasy +174283,The Invisible Thief (1909),Fantasy|Horror +174285,Brains Repaired (1911),Comedy|Fantasy +174287,The Dentures (1909),Comedy +174293,The Cigar Box (1907),Fantasy +174295,Le sculpteur express (1907),(no genres listed) +174297,The Golden Beetle (1907),Fantasy +174299,The Gold Spider (1908),Fantasy +174303,The Flaming Arrow (1912),Adventure|Drama|Western +174307,Her Crowning Glory (1911),(no genres listed) +174309,Enoch Arden: Part I (1911),(no genres listed) +174311,Enoch Arden: Part II (1911),(no genres listed) +174317,Romance with a Double Bass (1911),Comedy +174321,The Lesson (1910),(no genres listed) +174327,The Usurer (1910),(no genres listed) +174329,In the Border States (1910),Drama|War +174331,The Delicious Little Devil (1919),Comedy|Drama +174339,Rose o' Salem Town (1910),Drama +174349,Stop Thief! (1901),Comedy|Crime +174353,The Little Darling (1909),Comedy +174357,The Mender of Nets (1912),(no genres listed) +174359,Heidi (2014),Horror +174361,The Gerber Syndrome: Il Contagio (2011),Horror +174363,UFO Abduction (1989),Horror|Sci-Fi|Thriller +174365,The Summoning (2017),Drama|Mystery|Thriller +174367,Go North (2017),Adventure|Drama|Romance|Thriller +174369,Teenage Graffiti (1977),Comedy +174371,Once Upon a Time in Venice (2017),Comedy +174373,Resurrecting Hassan (2016),Documentary +174375,Hollywood (1980),(no genres listed) +174377,For Love and Honor (2016),(no genres listed) +174379,All Ashore (1953),Comedy +174381,So This Is Paris (1954),Comedy|Romance +174383,Full Of Life (1956),Comedy|Drama +174385,Synanon (1965),Drama +174389,A Talent for Loving (1969),Comedy|Western +174393,Nightmare at Noon (1988),Action|Horror|Thriller +174395,Better Watch Out (2016),Thriller +174397,The Worm Eaters (1977),Comedy|Horror +174399,Daddy's Little Girl (2012),Horror|Thriller +174401,Der große Bagarozy (1999),Drama +174403,The Putin Interviews (2017),(no genres listed) +174405,Gold (2014),Children|Comedy|Drama +174407,An Inconvenient Sequel (2017),Documentary +174409,PsyWar: The real battlefield is your mind (2010),Documentary +174411,My New Partner (1984),Comedy +174413,Friend (1987),Drama +174415,Radiator (2014),Drama +174417,The Law Is the Law (1958),Comedy +174419,The Tattoo (1968),Comedy +174423,Rakka (2017),Action|Sci-Fi +174425,Pharaoh (1966),(no genres listed) +174427,Savage Dog (2017),Action +174429,Agent F.O.X. (2014),Animation +174431,Jawbone (2017),Action|Drama +174433,The Black Connection (1974),Action +174435,Tear Me Apart (2016),Horror|Romance|Thriller +174437,Stress Position (2013),(no genres listed) +174439,Orange Sunshine (2016),Documentary +174441,The Invoking 2 (2015),Horror +174443,American Wrestler: The Wizard (2016),Drama +174445,Blood Hook (1987),Comedy|Horror +174447,A Gray State,(no genres listed) +174449,The Void (2016),Fantasy|Horror|Sci-Fi|Thriller +174451,American Burger (2014),Comedy +174453,Перекресток (1998),Romance +174455,Poor Sasha (1997),Adventure|Children|Comedy +174457,The Enfield Haunting (2015),Drama|Mystery +174459,To the Sea! (2009),Comedy +174461,"Bread, Love and Andalucia (1958)",(no genres listed) +174463,Hitchcocked! (2006),Documentary +174465,Businessmen (1962),Adventure|Comedy|Drama +174467,Soldier Ivan Brovkin (1955),Adventure|Comedy +174469,Flaming Frontier (1965),Adventure|Western +174471,Confidential Assignment (2017),Action|Comedy +174473,Altitude (2017),Action|Thriller +174475,The Dark Below (2016),Thriller +174477,101 Rent Boys (2000),Documentary +174479,Unedited Footage of a Bear (2014),Horror|Thriller +174481,Strong Island (2017),Documentary +174483,This House Has People in It (2016),Comedy|Horror +174485,Salad Fingers,(no genres listed) +174487,"Don't Hug Me, I'm Scared (2011)",Animation|Fantasy|Horror +174489,"Don't Hug Me, I'm Scared II: Time (2014)",Horror +174491,Don't Hug Me I'm Scared 5 (2015),Horror +174493,Cream (2017),Animation|Comedy|Horror|Sci-Fi +174495,Live Forever as You Are Now with Alan Resnick (2013),(no genres listed) +174497,The Salad Mixxxer (2014),Comedy +174499,Vanishing Time: A Boy Who Returned (2016),Drama|Fantasy|Romance +174501,Secret Defense (1998),Crime|Drama +174503,Orbiter 9 (2017),Romance|Sci-Fi +174505,Besetment (2016),Horror|Thriller +174507,Scandalous John (1971),Children|Comedy|Drama|Western +174509,Mama's Dirty Girls (1974),Crime|Thriller +174511,The Practice of Beauty (2011),Comedy +174513,The Devil Makes Three (1952),Crime|Romance|Thriller +174515,Yu-Gi-Oh!: The Dark Side of Dimensions (2016),Adventure|Animation +174517,Bedevil (1993),Horror +174519,Havenhurst (2016),Horror|Mystery|Thriller +174521,"Why, Charlie Brown, Why? (1990)",Animation|Children|Comedy|Drama +174523,Family Possessions (2016),Horror +174525,Vinylmania: When Life Runs at 33 Revolutions Per Minute (2012),Documentary +174527,Chasing Trane: The John Coltrane Documentary (2017),Documentary +174529,The Easter Bunny Is Comin' to Town (1977),Animation|Children|Fantasy|Sci-Fi +174531,Frosty's Winter Wonderland (1976),Animation +174533,Pokémon: Spell of the Unown (2000),Action|Adventure|Animation|Children|Fantasy +174535,Mickey's House of Villains (2001),Animation|Children +174537,Air Bud: Spikes Back (2003),Children|Comedy +174539,Air Bud 3: World Pup (2001),Children|Comedy|Drama +174541,Tarzan & Jane (2002),Animation|Children|Comedy +174543,Pokémon 4Ever: Celebi - Voice of the Forest (2001),Adventure|Animation|Children|Fantasy|Sci-Fi +174545,Pokémon: Destiny Deoxys (2004),Adventure|Animation|Children|Fantasy +174547,The Christmas Tree (1991),Animation|Children +174549,Mutafukaz (2017),Animation|Sci-Fi +174551,Obsession (1965),Comedy +174555,New Chefs on the Block (2016),(no genres listed) +174557,Disturbing the Peace (2016),Documentary +174559,Mauri (1988),(no genres listed) +174561,Mr Perfect (2011),Comedy|Romance +174563,Shwaas (2004),Drama +174565,Abacus: Small Enough to Jail (2017),Documentary +174567,The Soong Sisters (1997),Drama|Romance +174569,Scusate il ritardo (1983),Comedy +174571,Viva l'Italia (2012),Comedy +174575,Hell's Bells (1988),Comedy +174577,Mindfulness and Murder (2011),Drama +174579,Solstorm (2007),Thriller +174581,Drushyam (2014),Drama|Thriller +174583,Drishya (2014),Drama|Thriller +174585,Transformers: The Last Knight (2017),Action|Adventure|Sci-Fi|Thriller +174587,A Woman's Life (2016),Drama +174589,Porn in the Hood (2012),Comedy +174591,Aroused (2013),Documentary +174593,Dark World (2010),Fantasy|Mystery|Thriller +174595,What Men Do! 2 (2015),Comedy +174597,"Mommies, Happy New Year! (2012)",Comedy|Drama +174599,Six Degrees of Celebration 1914 (2014),Comedy +174601,Pregnant (2011),Comedy +174603,What Men Do! (2013),Comedy +174605,The Ghost (2008),Drama|Thriller +174607,Six Degrees of Celebration 3 (2013),Comedy +174609,Montana (2008),Action|Adventure|Crime|Drama +174611,Lovey-Dovey 3 (2011),Comedy|Fantasy +174613,On the Hook! (2011),Comedy|Romance +174615,At the Ends of the Earth (1999),Animation|Comedy +174617,Gagarin (1994),Animation +174619,Satisfaktsiya (2011),(no genres listed) +174621,Unresolved Sexual Tension (2010),Comedy|Romance +174625,The End of a Vacation (1986),(no genres listed) +174627,An Alternative Reality: The Football Manager Documentary (2014),Documentary +174629,Ugly Melanie (2008),Comedy +174631,Becoming Cary Grant (2016),Documentary +174633,Yeast (2008),(no genres listed) +174635,Lad: A Yorkshire Story (2013),(no genres listed) +174637,Ghost Warrior (1986),Action|Crime|Horror|Sci-Fi +174639,Eliminators (1986),Action|Sci-Fi +174641,Octaman (1971),Horror|Sci-Fi +174643,George Best: All By Himself (2016),Documentary +174645,Churchill (2017),Drama|Thriller|War +174647,Cave (2016),Adventure|Thriller +174649,Bullets Over Summer (1999),Action|Thriller +174651,Ecstasy (2011),Comedy|Crime|Romance +174653,Husband Factor (2015),Comedy|Romance +174655,Dina (2017),Documentary +174657,The Movie Orgy (1968),Comedy +174659,Witchtrap (1989),Action|Horror|Thriller +174661,Tubelight (2017),Drama|War +174663,The Hatton Garden Job (2017),Crime +174665,Hampstead (2017),Comedy|Romance +174667,Votez Bougon (2016),Comedy +174669,Very Russian Detective (2008),Comedy|Crime|Mystery +174671,Rugantino (1973),Comedy +174673,Suddenly in the Dark (1981),Horror +174675,The Thing on the Doorstep (2014),Horror|Mystery|Thriller +174677,Curtain (2015),Horror|Mystery|Sci-Fi +174679,1 Night (2017),Drama|Romance +174681,"Oh, Hello: On Broadway (2017)",Comedy +174683,Site Unseen: An Emma Fielding Mystery (2017),Drama|Mystery +174685,The Gathering Storm (2002),Drama +174687,Notte prima degli esami - Oggi (2007),(no genres listed) +174689,My Friends Need Killing (1976),Crime|Drama|Horror +174691,Moka (2016),Drama +174693,Home (2016),Children|Drama|Horror +174695,Luck-Key (2016),Action|Comedy +174697,Savageland (2017),Horror|Mystery +174701,Ava (2017),Drama +174703,I Am So Proud of You (2008),Action|Animation|Sci-Fi|Thriller +174705,Night Skies (2007),Drama|Horror|Mystery|Sci-Fi|Thriller +174707,Le Ride,(no genres listed) +174709,The One Man Band (1970),Comedy +174711,You Get Me (2017),Drama|Romance|Thriller +174713,Grey Lady (2017),(no genres listed) +174715,Australian Rules (2002),Drama +174717,You and Your Stupid Mate (2005),Comedy +174719,Bad Ben (2016),Horror +174721,Pecoross' Mother and Her Days (2013),Comedy|Drama +174723,Island of Lost Women (1959),Adventure|Sci-Fi +174725,La révolution n'est pas un dîner de gala (2015),Comedy|Romance +174727,Good Time (2017),Crime|Drama +174731,Lillian Russell (1940),Drama +174735,Surprise Package (1960),Comedy +174737,Don Camillo in Moscow (1965),Comedy +174739,Garden of the Moon (1938),Comedy|Romance +174741,Spicebush (2005),(no genres listed) +174743,Eat Local (2017),Action|Comedy|Horror +174745,Instant Death (2017),Action|Crime +174749,Sicarivs: The Night and the Silence (2015),Crime|Drama|Thriller +174751,Tuintje in mijn hart (2017),Drama|Romance +174753,Kino-pravda no. 21 - Lenin Kino-Pravda. A Film Poem about Lenin (1925),Documentary +174755,Selfie (2017),Comedy +174757,Three Songs About Lenin (1934),Documentary +174759,"Stride, Soviet! (1926)",Documentary +174761,Kino-pravda no. 22 - Peasant Kino-Pravda. In the Heart of the Peasant Lenin Lives on (1925),Documentary +174763,Kino-pravda no. 23 - Radio pravda (1925),(no genres listed) +174765,Soviet Toys (1924),Animation +174767,Kino-pravda no. 20 - Pioneer Pravda (1924),Documentary +174769,Kino-pravda no. 18 - A Movie Camera Race over 299 metres and 14 Minutes and 50 Seconds in the Direction of Soviet Reality (1924),Documentary +174771,Kino-pravda no. 14 (1923),(no genres listed) +174773,Kino-pravda no. 15 (1925),(no genres listed) +174775,Kino-pravda no. 17 - For the First Agricultural and Cottage Industries Exhibition in the USSR (1923),Documentary +174779,"Kino-pravda no. 13 - Yesterday, Today, Tomorrow. A Film Poem Dedicated to the October Revolution (1922)",Documentary +174783,Kino-pravda no. 11 (1922),(no genres listed) +174785,Kino-pravda no. 10 (1922),(no genres listed) +174787,Kino-pravda no. 9 (1922),(no genres listed) +174789,Kino-pravda no. 8 (1922),(no genres listed) +174791,Kino-pravda no. 1 (1922),Documentary +174793,Crusade in Jeans (2006),Adventure|Fantasy +174795,Duckweed (2017),Comedy|Drama +174797,Kavan (2017),Drama|Thriller +174799,Once More (1988),(no genres listed) +174801,Sadie's Last Days on Earth (2016),Comedy +174803,The Letters (2006),Drama +174805,Hell on Earth: The Fall of Syria and the Rise of ISIS (2017),Documentary +174807,Meet Me in Venice (2015),Drama +174809,The Glove (1979),Action|Adventure|Thriller +174811,Nukie (1988),Children|Sci-Fi +174813,Gor (1987),Action|Adventure|Fantasy|Sci-Fi +174815,The House (2017),Comedy +174817,Femmes femmes (1974),Comedy|Drama +174819,Five Came Back (2017),Documentary|War +174821,The Babymoon (2017),Action|Adventure|Comedy|Drama|Romance +174823,Santoalla (2016),Documentary +174825,Jessi's Girls (1975),Western +174827,Legion of Brothers (2017),Documentary +174829,Ghost in the Shell Arise - Border 5: Pyrophoric Cult (2015),Action|Animation|Sci-Fi +174831,Summer 1993 (2017),Children|Drama +174833,Miss Impossible (2017),Drama +174835,Grimm (2003),Adventure|Comedy|Drama +174837,The Postmaster (1972),(no genres listed) +174839,Two Comrades Were Serving (1968),Action|Drama +174841,Pandora's Box (1992),Drama +174843,Necromancy (1972),Horror +174845,Return to Montauk (2017),Drama +174847,Up There (2012),(no genres listed) +174849,Jane Eyre (1997),Drama|Romance +174851,The Last Rescue (2015),Action|Drama|War +174857,12 Feet Deep (2016),Thriller +174859,120 Beats Per Minute (2017),(no genres listed) +174861,Van Gogh: Painted with Words (2010),Documentary|Drama +174863,Don't Call Me Son (2016),Drama +174865,The Wrong Road (1937),Crime|Drama +174867,The Virginian (1929),Western +174869,San Giovanni decollato (1940),Comedy +174871,I due orfanelli (1947),Comedy +174873,The Crooked E: The Unshredded Truth About Enron (2003),Drama +174875,One Hundred Steps (2000),Crime|Drama +174877,Color of the Ocean (2012),Drama +174879,Three Men and a Leg (1997),Comedy +174881,Tutti gli uomini del deficiente (1999),Comedy +174883,"La leggenda di Al, John e Jack (2002)",Comedy +174885,Death Mills (Die Todesmühlen) (1945),Documentary|War +174887,Chuck (2017),Drama +174889,"Accidental Courtesy: Daryl Davis, Race & America (2016)",Documentary +174891,Murder with Pictures (1936),Crime|Mystery +174893,2:22 (2017),Drama|Thriller +174895,"Totò, Peppino and... the Sweet Life (1961)",Comedy +174897,Neapolitan Turk (1953),Comedy +174899,Totò Sceicco (1950),Comedy +174901,A Bag of Marbles (2017),Drama +174903,7 Days in September (2002),(no genres listed) +174905,5ive Days to Midnight (2004),Action|Drama|Sci-Fi|Thriller +174907,Damocles (2016),Comedy +174909,Logan Lucky (2017),Comedy +174911,Addicted to Porn: Chasing the Cardboard Butterfly (2017),Documentary +174913,Keet & Koen: The Treasure Hunt (2015),Children|Comedy +174915,"Byron, Ballad for a Daemon (1998)",Drama +174917,"Luis Martinetti, Contortionist (1894)",Documentary +174919,Sweet Dreams (2016),Drama +174921,Lasciati andare (2017),Comedy +174923,Che vuoi che sia (2016),Comedy +174925,7 Minutes (2016),Drama +174927,By the Time It Gets Dark (2016),Drama +174929,Ripped (2017),Comedy +174931,The Milkmaid (1953),(no genres listed) +174933,Firebase (2017),Sci-Fi|War +174935,FC Venus (2005),Comedy|Romance +174937,Puolin ja toisin (2013),Comedy +174939,Starving in Suburbia (2014),Drama +174941,Warm Springs (2005),Drama +174943,The Paedophile Hunter (2014),Documentary +174945,If You Were Me (2003),Drama +174949,A Borrowed Life (1994),Drama +174951,Operações Especiais (2015),Action|Thriller +174953,Mundo Cão,(no genres listed) +174955,The mural of Siqueiros (2011),(no genres listed) +174957,Batman Beyond: The Movie (1999),Action|Animation|Children +174959,50 Kilo Albaloo (2016),Children|Comedy|Drama +174961,Hitch Hike to Hell (1977),Crime|Mystery +174963,Dracula 3000 (2004),Horror|Sci-Fi +174965,Loverboy (2005),Drama|Romance +174967,The War Bride (2001),Drama|Romance +174969,The Life (2004),Drama +174971,This Thing of Ours (2005),Action|Drama|Thriller +174973,Partition (2007),Drama|Romance +174975,Beat (2000),Drama +174977,Daybreak (2000),Action|Crime +174979,Risk (2000),Crime|Drama|Thriller +174983,Mr In-Between (2001),Action|Thriller +174989,Cosmopolitan (2003),Drama|Romance +174991,Nemesis Game (2003),Mystery|Thriller +174993,The Job (2003),Action|Crime|Drama +174995,Mind the Gap (2004),Comedy|Drama +174997,Marie Curie (2016),Drama +175001,Marathon (2005),Drama +175003,How to Go Out on a Date in Queens (2006),Comedy|Romance +175005,The Lather Effect (2006),Comedy|Drama +175009,Swinger (2016),Comedy|Romance +175011,La nao Capitana (1947),Adventure +175013,Bittersweet (2008),Drama|Romance +175019,Explicit Ills (2008),Drama +175023,Between Us (2016),Comedy|Drama|Romance +175027,Selling God,Documentary +175029,Truth (2009),(no genres listed) +175031,The Landlady (1998),Horror|Thriller +175033,Virus (1980),Adventure|Drama|Horror|Sci-Fi +175035,Ginger in the Morning (1974),(no genres listed) +175037,Khaled (2001),Drama +175043,Hypothermia (2012),Horror +175045,Jessicka Rabid (2010),Horror +175047,Killer by Nature (2010),Adventure|Crime|Drama|Romance|Thriller +175049,The Cursed (2010),Horror|Thriller +175051,Truth About Kerry (2010),Drama|Mystery|Thriller +175053,Think Of Me (2011),Drama +175055,Be My Teacher (2011),(no genres listed) +175057,Deadrise (2011),Thriller +175059,Hamlet (2012),(no genres listed) +175061,The Bad Penny (2010),Drama|Mystery|Thriller +175063,The Amityville Haunting (2011),Horror +175065,The Fields (2011),Drama|Horror|Mystery|Thriller +175069,You Hurt My Feelings (2012),Drama|Romance +175071,Two Jacks (2012),Comedy|Drama +175073,Cheesecake Casserole (2012),Comedy|Drama +175077,Fatal Call (2012),Thriller +175079,Hidden in the Woods (2012),Action|Drama|Horror|Thriller +175081,Infected (2012),Horror +175083,Look at Me (2012),Comedy|Drama|Romance +175085,New Order (2012),(no genres listed) +175089,Silver Case (2012),(no genres listed) +175093,The Dark Side of Love (2012),Drama +175095,The Exhibitionists (2012),Drama +175097,All the Wrong Reasons (2013),Comedy|Drama +175099,Amelia's 25th (2013),Comedy|Romance +175101,Blue Dream (2013),(no genres listed) +175103,House of Good and Evil (2013),Horror|Thriller +175107,The Man Without a Country (1973),Drama +175109,Prisoners of the Sun (2013),Action|Adventure|Horror|Mystery +175111,Sleeping with the Fishes (2013),Comedy +175113,The Man Without a Country (1917),(no genres listed) +175115,Treading Water (2013),Comedy|Drama +175117,Jesus (1999),Drama +175119,The Cross and The Flame (1957),(no genres listed) +175121,Bigfoot Wars (2014),Sci-Fi +175123,Chu and Blossom (2014),Comedy +175125,Act of God (2009),Thriller +175127,Losing It (2006),Drama +175133,Stitch (2014),Thriller +175135,Wild Rose (1932),Romance +175137,The Making of 'The Terminator': A Retrospective (1992),Documentary +175139,Popeye the Sailor Meets Sindbad the Sailor (1936),Animation|Comedy +175141,City of Ghosts (2017),Documentary +175143,Chasing Coral (2017),Documentary +175145,Whose Streets? (2017),Documentary +175147,This Is Everything: Gigi Gorgeous (2017),Documentary +175149,Fool's Day (2013),Comedy|Drama +175151,78/52 (2017),Documentary +175153,Cries from Syria (2017),Documentary +175155,Unacknowledged (2017),Documentary +175157,Tell Them We Are Rising: The Story of Black Colleges and Universities (2017),Documentary +175159,Water & Power: A California Heist (2017),Documentary +175161,Bobbi Jene (2017),Documentary +175163,Elián,Documentary +175165,What the Health (2017),Documentary +175167,Joshua: Teenager vs. Superpower (2017),Documentary +175169,Rumble: The Indians Who Rocked the World (2017),Documentary +175171,Served Like a Girl (2017),Documentary +175173,Give Me Future: Major Lazer in Cuba (2017),Documentary +175175,Unrest (2017),Documentary +175177,The Force (2017),Documentary +175179,Bill Nye: Science Guy (2017),Documentary +175181,"Hailey Dean Mystery: Murder, With Love (2016)",Mystery +175183,Warwick (2016),Drama +175187,Revolt (2017),Sci-Fi +175189,Swim Team (2016),Children|Documentary|Drama +175191,Hickok (2017),(no genres listed) +175193,Do You Take This Man (2016),Drama +175195,Polaroid (2017),Horror +175197,The Dark Tower (2017),Fantasy|Horror|Sci-Fi|Western +175199,Annabelle: Creation (2017),Horror +175203,Despite the Night (2015),Drama|Horror|Mystery +175205,Soundtrack (2017),Drama +175207,Nowhere Boys: The Book of Shadows (2016),Sci-Fi +175209,Bromance (2016),Comedy|Drama|Romance +175211,Honeytrap (2015),Crime|Drama|Romance +175213,Come What May (2015),Drama|War +175215,Stigma (1972),Drama +175217,Gauche the Cellist (1982),Animation +175219,Le Papillon Fantastique (1909),Fantasy|Horror +175221,The Story of High Noon (2017),Action|Crime +175223,Encounter with Fritz Lang (1964),Documentary +175227,The Delta Factor (1970),Adventure|Drama +175229,Tommy and the Wildcat (1998),Adventure|Children|Drama +175231,Annie (1999),Children|Comedy +175233,Inconceivable (2017),Drama|Thriller +175235,Kites Over Helsinki (2001),(no genres listed) +175237,The Gnomes' Great Adventure (1987),Animation|Children +175239,Bon Cop Bad Cop 2 (2017),Action|Comedy|Crime +175241,The Story of Menstruation (1946),Animation +175243,Security (2017),Action +175245,G:MT Greenwich Mean Time (1999),Crime|Drama +175247,Final Cut: Ladies and Gentlemen (2012),Documentary|Drama|Romance +175249,To Kill a King (2003),Action|Adventure|Drama +175251,Chokeslam (2016),Comedy +175253,Overdrive (2017),Action|Thriller +175255,The Libertine (2000),Comedy +175257,The Famous Box Trick (1898),Fantasy +175259,Adventures of William Tell (1898),Comedy|Fantasy +175261,The Conquest of the Pole (1912),Adventure|Comedy|Sci-Fi +175263,Snow White: The Fairest of Them All (2001),Adventure|Children|Fantasy +175265,That's Cunning! Shijo Saidai no Sakusen? (1996),Comedy +175267,Speech & Debate (2017),Comedy|Drama +175269,Junction 48 (2016),Action|Crime|Drama +175271,Forgiveness (2006),(no genres listed) +175273,Independents' Day (2016),Action|Sci-Fi +175275,The Human Surge (2016),Drama +175277,"Faces, Places (2017)",Documentary +175279,Cop Killers (1973),Action|Thriller +175281,Tour De Pharmacy (2017),Comedy +175283,Death Note: Light Up the New World (2016),Fantasy|Mystery|Thriller +175285,The Zen of Bennett (2012),Documentary +175287,Kerosene Salesman's Wife (1988),Drama +175289,Rumba (2008),Comedy|Drama +175291,Dust (2005),Comedy|Drama|Sci-Fi +175293,Gena the Crocodile (1969),Animation|Children +175297,Der kleine Nazi (2010),(no genres listed) +175299,The Survival Family (2017),(no genres listed) +175301,Lemon (2017),Comedy|Drama +175303,It (2017),Horror +175305,School Life (2016),Documentary +175307,The Perfect Killer (1977),Action|Crime +175309,Ashes and Snow (2005),Documentary +175311,True (2004),Drama +175313,My Good Enemy (2010),Children|Drama +175315,The Adventures of Prince Florisel (1979),Adventure|Comedy|Mystery +175317,When I Will Become a Giant (1978),Children|Romance +175319,George ! (1972),Children|Comedy +175321,My Old Classmate (2014),Romance +175323,Dirty Dancing (2017),Drama|Romance +175325,Bird on a Wire (1974),Documentary +175327,Seinfeld: How It Began (2004),Documentary +175329,Jogwa - The Awakening (2009),Drama|Romance +175331,Secret of the Blackbirds (1983),Mystery|Thriller +175333,Elegy (2014),Sci-Fi +175335,The Garden of Afflictions 2017,(no genres listed) +175337,Sniper 3 (2004),Action|Drama|Thriller +175339,Beast of Blood (1970),Adventure|Horror +175341,The Binding (2016),Drama|Horror|Thriller +175343,A Long and Happy Life (1966),Drama|Romance +175345,Flights in Dreams and in Reality (1982),Drama +175347,Plug (2014),Sci-Fi +175349,Cru (2014),(no genres listed) +175351,Devil's Gate (2017),Sci-Fi|Thriller +175353,Abduction,Drama|Fantasy +175355,Obit (2017),Documentary +175357,Heartworn Highways (1976),Documentary +175359,American Anarchist (2016),Documentary +175361,Tatu and Patu (2016),Children|Comedy +175363,150 Milligrams (2016),Drama +175365,Dansen op de vulkaan (2014),Drama +175367,The Truth Is in the Stars (2017),Documentary +175369,Decanted (2016),(no genres listed) +175371,Other Worlds (1999),Animation|Drama|Romance +175373,The Waiting Room (1996),Comedy +175375,Swineherd and Shepherd (1941),Comedy|Romance +175377,Veruschka: A Life for the Camera (2005),(no genres listed) +175379,God of Love (2010),Comedy|Romance +175381,Ghibli: The Miyazaki Temple (2005),Documentary +175383,And Here's What's Happening to Me (2012),Drama +175385,What War May Bring (2010),Drama +175387,On the Trail of the Bremen Town Musicians (1973),Adventure|Animation|Children +175389,Aquatic Language (2002),(no genres listed) +175391,"I, Pet Goat II (2012)",(no genres listed) +175393,Sebastian's Voodoo (2008),Animation|Horror +175395,8 Dates (2008),Comedy +175397,"In the blue sea, in the white foam. (1984)",Animation|Children|Fantasy +175399,I'm Losing My Temper (1974),Comedy +175401,Wolf and Calf (1984),Animation +175403,Struck (2008),(no genres listed) +175405,The Thirst for Gold (1993),Comedy +175407,Mother For Baby Mammoth (1981),Animation +175409,Nicostratos the Pelican (2011),Comedy|Drama +175411,Surviving Sid (2008),Animation +175413,Likes or Dislikes (2014),Comedy|Romance +175415,But What If This Is Love? (1961),Drama|Romance +175417,Puzzled Love (2010),Comedy|Romance +175419,Trivial (2007),Thriller +175421,I'm Staying (2003),Comedy|Romance +175423,Sunstroke (2014),Drama +175425,Fate (2003),Drama|Thriller +175427,El vendedor de humo (2012),(no genres listed) +175429,On Your Mark (1995),Animation|Sci-Fi +175431,Bobik Visiting Barbos (1977),Animation|Comedy +175433,Get Out (2010),Animation|Comedy +175435,The Magic Ring (1982),Animation|Fantasy +175437,"Water, Wind, Dust (1989)",Drama +175439,The Abduction Club (2002),Comedy +175441,The Black Hole (2008),Comedy|Crime +175443,Buenos Aires 100 KM (2005),Drama +175445,Normal (2009),Crime|Drama|Thriller +175447,Tender Age (2000),Drama|Romance +175449,This Way Up (2008),Animation|Comedy +175451,Mirage (2004),Drama +175453,A Curtain Raiser (2006),Action|Drama +175455,Everything Will Be All Right (1995),Comedy|Drama|Romance +175457,The Groom (2016),Comedy +175459,Lightheaded (2009),(no genres listed) +175461,Tomorrow's Another Day (2000),Comedy +175463,A Real Dad (2008),Comedy +175465,The Blonde with Bare Breasts (2010),Comedy|Drama +175467,Delivery (2005),Animation|Sci-Fi +175469,Minions: Banana (2010),Animation|Children|Comedy +175471,Nocturne (1980),(no genres listed) +175473,Dear Yelena Sergeyevna (1988),Drama +175475,The Emoji Movie (2017),Animation|Children|Comedy +175477,Naruto Shippuden the Movie: Blood Prison (2011),Action|Animation|Comedy|Horror|Mystery|Thriller +175479,Detective Conan: Crimson Love Letter (2017),Action|Adventure|Animation|Children|Crime|Mystery +175481,Comedown (2012),Horror|Thriller +175483,Wolfman (1979),(no genres listed) +175485,Death Note (2017),Horror|Thriller +175487,Bedeviled (2017),Horror|Thriller +175489,The Fighting Kentuckian (1949),Adventure|Western +175491,The Last Command (1955),Drama|Western +175493,Polygon (1977),Animation +175495,First Love (1977),Drama|Romance +175497,A Hunting Accident (1978),Drama|Romance +175499,Cactus (1986),Drama|Romance +175503,Radio Bikini (1988),Documentary +175505,The Saint (2017),Action|Adventure|Crime +175507,Ordinary Wonder (1964),Fantasy|Romance +175509,"I, Zombie: The Chronicles of Pain (1998)",Drama|Horror +175511,Engineering Red,(no genres listed) +175513,Mamma o papà? (2017),Comedy +175515,The Merciless (2017),Action|Crime +175517,Hi-Jack Highway (1955),Drama +175519,Icebreaker (2016),Action|Adventure|Drama +175523,The Great Vazquez (2010),Comedy +175525,Collaborator (2011),Comedy|Drama +175527,The Million Pound Note (1954),Comedy|Romance +175529,Being George Clooney (2016),Documentary +175531,The Hippopotamus (2017),Comedy +175533,Enchiridion (2012),Animation|Drama|Horror +175539,Confessions of a Sorority Girl (1994),Comedy|Drama +175541,Cool and the Crazy (1994),Action|Drama|Romance|Thriller +175543,Digital Man (1995),Action|Sci-Fi|Thriller +175545,Dragstrip Girl (1994),(no genres listed) +175547,Dying to Belong (1997),Drama +175549,Eating (1990),(no genres listed) +175551,Getting Out (1994),Drama|Thriller +175553,Hit Me (1996),Drama|Mystery|Thriller +175555,How to Be Louise (1990),(no genres listed) +175557,Portrait of a '60% Perfect Man': Billy Wilder (1982),Documentary +175559,Aiyyaa (2012),Comedy|Romance +175561,Questa notte è ancora nostra (2008),Comedy +175563,Mind Blown (2016),Action|Sci-Fi|Thriller +175569,Wind River (2017),Action|Crime|Mystery|Thriller +175571,Welcome to Sajjanpur (2008),Comedy +175573,Olga (2004),Drama +175575,They're a Weird Mob (1966),Comedy +175577,Rory Scovel Tries Stand-Up for the First Time (2017),Comedy +175579,The Nile Hilton Incident (2017),Drama|Thriller +175581,Dock Ellis & The LSD No-No (2010),Animation +175583,Blockbuster (2017),Comedy|Crime +175585,Shot Caller (2017),Action|Crime|Drama|Thriller +175587,Nerdland (2016),Animation +175589,Ratchagan (1997),Action|Comedy|Drama|Romance +175591,Brice 3 (2016),Comedy +175593,Mike Birbiglia: Thank God for Jokes (2017),Comedy +175595,Chris D'Elia: Man on Fire (2017),Comedy +175597,3 A.M (2014),Horror|Thriller +175599,A Wolf from Vesyegonsk (2004),Adventure|Drama +175601,Godforsaken! (2003),Thriller +175603,Anti Matter (2016),Sci-Fi +175605,S.W.A.T.: Under Siege,(no genres listed) +175609,"Ja, Ik Wil! (2015)",Comedy|Romance +175611,Lions Love (1969),(no genres listed) +175613,Bleak Street (2015),Drama +175615,Almost Holy (2015),Documentary +175617,Given (2017),Documentary +175619,Extraordinary: The Stan Romanek Story (2013),Documentary +175621,Tonight She Comes (2016),Horror +175623,Drone Wars (2016),Action|Sci-Fi|Thriller +175625,The Dragon Spell (2016),Adventure|Animation|Children|Comedy|Fantasy +175627,July Rain (1966),Drama|Romance +175629,Before the Streets (2016),Drama +175631,"Baby, Baby, Baby (2015)",Comedy|Drama|Romance +175633,Bill Maher: The Decider (2007),Comedy +175635,American Teacher (2011),Documentary +175637,First Round Down (2017),Action|Comedy +175639,Futurama: The Lost Adventure (2008),Animation|Comedy +175641,Asparagus (1979),Animation +175643,Zygote (2017),Horror|Sci-Fi +175647,24×36 (2016),Documentary +175649,Wish Upon (2017),Fantasy|Horror|Thriller +175651,All Superheroes Must Die 2: The Last Superhero,Mystery|Sci-Fi +175653,How to Save Us (2014),Drama|Horror +175655,Girls Trip (2017),Comedy +175657,Landline (2017),Comedy +175659,Detroit (2017),Crime|Drama|Thriller +175661,The Hitman's Bodyguard (2017),Action|Comedy +175663,77 Minutes (2016),Documentary +175665,The Only Living Boy in New York (2017),Drama +175667,Columbus (2017),Drama +175669,Tulip Fever (2017),Drama|Romance +175671,Birth of the Dragon (2017),Action +175673,The Life and Death of John Gotti (2017),Crime|Drama +175675,Autism in Love (2015),Documentary +175677,The Foxy Merkins (2013),Adventure|Comedy +175679,My Sister's Quinceanera (2013),Drama +175681,Betty and Coretta (2013),Drama +175683,Ruckus (1981),Action|Drama|Thriller +175685,A Wanderer's Notebook (1962),Drama +175687,Blood Hunters (2016),Horror|Thriller +175689,The Hope Factory (2014),(no genres listed) +175691,The Boers at the End of the World (2015),Documentary +175693,Rick and Morty: State of Georgia Vs. Denver Fenton Allen (2016),Comedy|Crime +175695,The Misadventures of Rick and Morty,(no genres listed) +175697,Kyaa Super Kool Hain Hum (2012),Drama +175699,Fittest On Earth: A Decade Of Fitness (2017),Documentary +175701,Zero 3 (2017),Thriller +175705,Themroc (1973),Comedy|Horror +175707,A German Life (2016),Documentary +175709,Never Tear Us Apart: The Untold Story of INXS (2014),(no genres listed) +175711,Gangsters and Philantropists (1963),Action|Comedy|Crime +175713,Pairon Talle (2011),(no genres listed) +175715,Dooman River (2010),Drama +175717,Hitler: A Career (1977),Documentary +175719,Adios amigos (2016),Comedy|Drama +175721,Little Tony (1998),Comedy|Drama +175723,Feed (2017),Drama +175725,A Genius Leaves the Hood - The Unauthorized Story of Jay Z (2014),Documentary +175727,Cure for Pain: The Mark Sandman Story (2011),Documentary +175729,Itinéraire bis (2011),Comedy|Romance +175731,The Box (2004),Comedy +175733,Dépression et des Potes (2012),Comedy +175735,Je hais les enfants! (2003),Comedy +175737,Ducoboo (2011),Comedy +175739,Two Women (2014),Drama|Romance +175741,The Girl from the Song (2017),Drama|Romance +175743,Self-criticism of a Bourgeois Dog (2017),Comedy +175745,"Jean Ziegler, l'optimisme de la volonté (2016)",Documentary +175747,Film (1965),Drama +175749,Country Crush (2017),Drama|Romance +175751,Julia Misbehaves (1948),Comedy|Romance +175753,Sahara (2017),Adventure|Animation|Children|Comedy +175755,The Double Lover (2017),Thriller +175757,Schoolgirl Report Part 5: What All Parents Should Know (1973),Drama|Romance +175759,Schoolgirl Report Part 4: What Drives Parents to Despair (1972),Comedy|Drama +175761,Schoolgirl Report Part 2: What Keeps Parents Awake at Night (1971),Drama +175763,Schoolgirl Report Part 3: What Parents Find Unthinkable (1972),Comedy|Drama +175765,Pippi Longstocking (1969),Adventure|Children +175767,Persona 3 the Movie: #1 Spring of Birth (2013),Action|Animation|Drama +175769,Geronimo (2014),Drama +175771,Villa Henriette (2004),Comedy +175773,Muthu (1995),Action|Comedy|Drama +175775,Baasha (1995),Action +175777,Padayappa (1999),Drama +175779,Sivaji: The Boss (2007),Action|Comedy|Drama +175781,Der Herr Karl (1961),Comedy +175783,First Kill (2017),Action|Thriller +175785,Quiz (2012),Drama|Thriller +175787,Minions: Orientation Day (2010),Animation|Children|Comedy +175789,Burden (2016),Documentary +175791,LA 92 (2017),Documentary +175793,A Thousand Times Stronger (2010),Drama +175795,Descendants 2 (2017),Action|Adventure|Children|Comedy +175797,The Astronomer's Dream (1898),Fantasy +175799,Faithfully Yours (1988),Comedy +175801,Harry Benson: Shoot First (2016),Documentary +175803,The Temptation of St. Anthony (1898),Fantasy +175805,An Up-to-Date Conjurer (1899),Comedy +175807,Walking Too Fast (2010),Drama|Thriller +175809,Jungle (2017),Action|Adventure|Drama +175811,Trade Of Innocents (2012),Drama|Thriller +175813,Force Majeure (2014),Comedy|Drama +175815,Finding Sofia (2016),(no genres listed) +175817,Incident Light (2015),Drama +175819,Down Under (2016),Comedy +175821,Ivanka Trump- America's Real First Lady? (2017),Documentary +175823,"Good Guys Go to Heaven, Bad Guys Go to Pattaya (2016)",Comedy +175827,Cedric the Entertainer: Taking You Higher (2006),Comedy +175829,Chris Gethard: Career Suicide (2017),Comedy +175831,Lou (2017),Animation +175833,Final Justice (1988),Action|Comedy|Crime +175835,Hemo The Magnificent (1957),Animation|Children +175837,Tragedy in a Temporary Town (1956),Drama +175839,Carole King: Natural Woman (2016),Documentary +175841,Le Guignolo (1980),Action|Comedy +175843,Terminus (1987),(no genres listed) +175845,The Spider Labyrinth (1988),Horror|Thriller +175847,Black Devil Doll from Hell (1984),Horror +175849,Shirley: Visions of Reality (2013),Drama +175851,Baby sa jakies inne (2011),Comedy|Drama +175853,Snow White and Russian Red (2009),Drama +175855,Hi Way (2006),Comedy|Documentary +175857,Family Life (1971),(no genres listed) +175859,The House of Fools (1985),Comedy|Drama +175861,Illumination (1973),Drama +175863,Code Blue (2011),Drama +175865,Nude Area (2014),Drama|Romance +175867,Gideon's Daughter (2005),Drama +175869,The Art of Loving. Story of Michalina Wislocka (2017),Drama +175871,King Size (1988),Comedy|Fantasy|Sci-Fi +175873,King's Road (2010),Comedy|Drama +175875,Siv Sleeps Astray (2016),Adventure|Children +175877,The Wedding (2004),Comedy|Drama +175879,Hydrozagadka (1971),(no genres listed) +175881,Baby Bump (2015),Comedy|Drama +175883,Les fourmis rouges (2007),Drama +175885,Time to Die (2007),Drama +175887,"Jesus, You Know (2003)",Documentary +175889,Little Moscow (2008),Drama +175891,Nothing Funny (1996),Comedy +175893,Insatiability (2003),Drama +175895,Possibility of an Island (2008),Action|Sci-Fi +175897,Coming Home (2012),Drama|Romance +175899,Upperdog (2009),Comedy|Drama +175901,Mister Blot's Academy (1984),Children|Fantasy +175903,Year of the Devil (2002),Comedy|Documentary +175905,We're All Christs (2006),Drama +175907,Pani z przedszkola (2014),Comedy +175909,Weiser (2001),Mystery +175911,The Good Herbs (2010),Drama +175913,How A Sausage Dog Works (1971),Animation +175915,Między nami dobrze jest (2014),(no genres listed) +175917,Grandma Lo-Fi (2011),(no genres listed) +175919,"Włatcy móch. Ćmoki, Czopki i Mondzioły (2009)",Animation|Comedy +175921,Ostatni dzwonek (1989),Drama +175923,Hijacking Agatha (1993),Comedy|Drama|Romance +175925,Mr. Blot in Space (1988),Children|Fantasy +175927,Friend of the Jolly Devil (1987),Adventure|Children|Fantasy +175929,Enlightened blood (2008),(no genres listed) +175931,Sang Pemimpi (2009),Drama +175933,We Don't Care About Music Anyway (2009),Documentary +175935,History of Cinema in Popielawy (1998),Drama|Fantasy|Romance +175937,The Structure of Crystals (1969),Drama +175939,My Name Is Ki (2011),Drama +175941,Squint Your Eyes (2003),Comedy|Drama +175943,Fry and Laurie Reunited (2010),Comedy|Documentary +175945,The Rendez-Vous of Déjà-Vu (2013),Comedy +175947,Bluebeard's Eighth Wife (1938),Comedy|Romance +175949,"Neger, Neger, Schornsteinfeger (2006)",Drama +175951,Love (1927),Drama +175953,The Last Married Couple in America (1980),Comedy +175955,For Sale By Owner (2009),Drama|Horror|Thriller +175957,Austin Found (2017),Comedy|Drama +175959,The Tenants (2005),Comedy|Drama|Mystery +175961,Texas Heart (2016),(no genres listed) +175963,The Jazz Loft According to W. Eugene Smith (2016),(no genres listed) +175965,Purgatory House (2003),Drama +175967,13 Moons (2002),Comedy|Drama +175969,Leslie Caron: The Reluctant Star (2016),Documentary +175971,The Olive Tree (2016),Comedy|Drama +175973,Bye Bye Germany (2017),Comedy|Drama|War +175975,Little Girls in Pretty Boxes (1997),(no genres listed) +175977,The Devil in a Convent (1899),Comedy|Fantasy|Horror +175979,American Violence (2017),Crime|Drama|Thriller +175981,Twelve Angry Men (1954),Drama +175983,Megaville (1990),Sci-Fi|Thriller +175987,With Open Arms (2017),Comedy +175989,Nude on the Moon (1961),Comedy|Fantasy|Sci-Fi +175991,Scribe (2017),Thriller +175993,Over/Under (2013),Drama +175995,The Visitors: Bastille Day (2016),Comedy +175997,Vampires in Havana (1985),Action|Animation|Comedy|Fantasy|Horror|Sci-Fi +175999,Monster Ark (2008),(no genres listed) +176001,High Plains Invaders (2009),Sci-Fi|Western +176003,Headless Horseman (2007),Horror +176005,Titanic 2 (2010),Action|Adventure|Thriller +176007,Joanna (2010),Drama|War +176009,Rasputin: The Mad Monk (1966),Drama|Horror +176011,A History of Horror with Mark Gatiss (2010),Documentary +176013,House of the Long Shadows (1983),Comedy|Horror|Mystery +176015,Frankenstein Created Woman (1967),Horror|Sci-Fi +176017,Return to the Batcave: The Misadventures of Adam and Burt (2003),Action|Comedy|Documentary +176019,Carry On Follow That Camel (1967),Comedy +176021,Dead and Deader (2006),Action|Comedy|Horror|Sci-Fi +176023,The Witchmaker (1969),Horror|Mystery +176025,Carry On Camping (1969),Comedy +176027,What a Fuck Am I Doing on This Battlefield (2013),(no genres listed) +176029,Up 'n' Under (1998),Comedy +176031,The Airzone Solution (1993),(no genres listed) +176033,The Many Faces of Christopher Lee (1996),(no genres listed) +176035,The Return of Captain Invincible (1983),Action|Comedy|Fantasy|Sci-Fi +176037,She Fought Alone (1995),Drama|Romance +176039,That Riviera Touch (1966),Comedy +176041,Dawn of the Mummy (1981),Horror +176043,The Stranger: Summoned by Shadows (1991),Sci-Fi +176045,The Pope Must Die (1991),Comedy +176047,Carry On England (1976),Comedy +176049,How Most Things Work (2015),Drama +176051,LEGO DC Super Hero Girls: Brain Drain (2017),Animation +176053,Treasure Raiders (2007),Action|Adventure|Drama|Thriller +176055,Foreign Fields (2000),Drama +176057,Take Me (2017),Comedy|Crime +176059,The Disappearance of Finbar (1997),(no genres listed) +176061,A Death in the Gunj (2016),(no genres listed) +176063,Phillauri (2017),Comedy|Drama|Fantasy|Romance +176065,Polar Flight (2013),Comedy|Romance +176067,Simbad e il califfo di Bagdad (1973),Adventure +176069,Black Sun (2005),Documentary +176071,Іван Сила (2013),(no genres listed) +176073,The Incredible Jessica James (2017),Comedy|Romance +176075,The Defiant Ones (2017),Documentary +176077,Apartment 18 (2014),Horror|Mystery|Thriller +176079,Provoked (2016),Horror|Thriller +176081,The Twin Swords (1965),Action +176083,Golden Swallow (1968),Action|Adventure +176085,It Stains the Sands Red (2016),Drama|Horror|Thriller +176087,Lichtspiel opus I (1921),(no genres listed) +176089,Opus II (1921),Animation +176091,Opus III (1924),(no genres listed) +176093,Opus IV (1925),Animation +176095,Sonita (2015),Documentary +176099,The Resurrection of Gavin Stone (2017),Comedy|Drama +176101,Kingsman: The Golden Circle (2017),Action|Adventure|Comedy +176103,The LEGO Ninjago Movie (2017),Action|Animation|Comedy +176105,Flatliners (2017),Drama|Horror|Sci-Fi +176107,Leo and Loree (1980),Drama|Romance +176109,Bloodletting (1997),Horror +176111,Wheeler (2017),Drama +176113,Can't Buy My Love (2017),Romance +176115,Hopeless Romantic (2016),Romance +176117,The Sparrow's Fluttering (1988),Drama|Romance +176119,La peau de chagrin (2010),Drama +176121,Dead Daughters (2007),Drama|Horror +176123,Two in One (2007),(no genres listed) +176125,The Tuner (2004),(no genres listed) +176127,Lauri Mäntyvaaran tuuheet ripset,(no genres listed) +176129,All at Once (2014),Comedy|Crime +176131,Yuri's Day (2008),Drama|Mystery +176133,The Miracle (2009),Drama|Mystery +176135,Corporate Event (2014),Comedy +176137,Travelling with Pets (2007),Drama|Romance +176139,Bedouin (2011),Action|Drama +176141,Daddy (2004),Drama +176143,Cinderella (2012),Comedy|Romance +176145,Suicides (2012),Comedy +176147,Mars (2004),Comedy +176149,Savages (2006),Comedy|Drama +176151,Aprel,Crime|Drama +176153,Swing (2008),Action|Drama|Romance +176155,Pro Lyuboff (2010),Drama|Romance +176157,Kuka (2007),Drama|Romance +176159,Dead Birds (1963),Horror +176161,The Hunters (1957),Documentary +176163,"Whiffles, Cubic Artist (1912)",Comedy +176165,Cop and a Half: New Recruit (2017),Action|Children|Comedy|Crime +176167,Dyketactics (1974),(no genres listed) +176169,Baignade en Mer (1895),Documentary +176171,Arabian Nights (2000),Children|Drama|Fantasy +176173,Killing Ground (2017),Horror|Thriller +176175,Pickpocket (1997),Drama +176177,Antidur (2007),Action|Comedy|Crime +176179,Big Men (2014),Documentary +176181,The Fortunes and Misfortunes of Moll Flanders (1996),Comedy|Drama|Romance +176183,The Prisoner of If Castle (1988),Adventure +176185,"A Black Rose Is an Emblem of Sorrow, a Red Rose an Emblem of Love (1989)",Comedy|Drama|Fantasy|Romance +176187,An American Vampire Story (1997),Comedy|Horror +176189,The Sublet (2017),Drama|Horror|Mystery|Thriller +176191,Fit to Kill (1993),Action|Romance|Thriller +176193,TechnoCalyps (2006),Documentary|Sci-Fi +176195,Starquest II (1996),Sci-Fi|Thriller +176197,Rivers of Sand (1974),Documentary +176199,Altar of Fire (1976),Documentary +176201,Šíleně smutná princezna (1968),Children|Comedy +176203,The Wonders of Aladdin (1961),(no genres listed) +176205,Phobos. Fear Kills (2010),Horror|Thriller +176207,The Final Storm (2010),Action|Horror|Mystery|Thriller +176209,Alice Goodbody (1974),Comedy +176211,In a Heartbeat (2017),Animation|Romance +176213,"Blood, Sweat and Tears (2015)",Drama +176215,Jungle Woman (1944),Drama|Fantasy|Horror +176217,To Be Fat Like Me (2007),Children|Drama +176219,Cadet Kelly (2002),Comedy +176221,The Scheming Gambler's Paradise (1905),(no genres listed) +176223,The Man with the Rubber Head (1901),Comedy|Fantasy|Sci-Fi +176225,The Living Playing Cards (1905),Fantasy +176227,The Hilarious Posters (1906),Comedy|Fantasy +176229,The Devilish Tenant (1909),Comedy|Fantasy +176231,The Untameable Whiskers (1904),(no genres listed) +176233,The Imperceptable Transmutations (1904),(no genres listed) +176235,Pooh's Heffalump Halloween Movie (2005),Animation|Children +176237,The One-Man Band (1900),Action|Fantasy|Thriller +176239,The Fat and Lean Wrestling Match (1900),Comedy|Fantasy +176241,Stones for the Rampart (2014),Drama|War +176243,MLK: The Assassination Tapes (2012),Documentary +176245,Deep Hearts (1981),Documentary +176247,Person to Person (2017),Drama +176249,Mom (2017),Crime|Drama|Thriller +176251,The Morning After (2015),Comedy|Drama +176253,St. Michael Had a Rooster (1972),(no genres listed) +176255,House of Horrors (1946),Horror|Mystery|Thriller +176257,Shadow of the Blair Witch (2000),Horror|Mystery +176259,The Burkittsville 7 (2000),Horror +176261,Demon Hunter (2016),Action|Adventure|Fantasy|Horror|Thriller +176263,Caged Heat 3000 (1995),Sci-Fi +176265,Wild Things 2 (2004),Crime|Drama|Mystery +176267,Robin Hood (1991),Action|Drama|Romance +176269,Subdue,Children|Drama +176271,Century of Birthing (2011),Drama +176273,Betrayal (2003),Action|Drama|Thriller +176275,Satan Triumphant (1917),(no genres listed) +176277,Rebel Rousers (1970),Crime|Drama +176279,Queerama (2017),(no genres listed) +176281,A Short Stay in Switzerland (2009),Drama +176283,Abortion: Stories Women Tell (2016),Documentary +176287,Love Hate Love (2011),Documentary +176289,StalkHer (2015),Comedy|Romance|Thriller +176291,Avanti Popolo (1986),(no genres listed) +176293,Rose Hobart (1936),(no genres listed) +176295,Scooby-Doo! Shaggy's Showdown (2017),Animation|Children|Comedy|Mystery|Western +176297,Lego Scooby-Doo! Blowout Beach Bash (2017),Comedy|Mystery +176299,Tom and Jerry: Willy Wonka and the Chocolate Factory (2017),Adventure|Animation|Children|Comedy +176301,DC Super Hero Girls: Intergalactic Games (2017),Animation|Children +176303,Innocence of Memories: Orhan Pamuk's Museum & Istanbul (2016),Documentary +176305,Please Don't Bury Me Alive! (1976),(no genres listed) +176307,The Way of Peace (1947),Drama +176309,Свадьба (1944),(no genres listed) +176311,Life and Extraordinary Adventures of Private Ivan Chonkin (1993),Comedy|Romance|War +176313,I Am Guilty (2005),Drama +176315,"Suffer, Little Children (1983)",Horror +176317,Lost Command (1966),Action|Drama|War +176319,Soof 2 (2016),Comedy|Romance +176321,Legend of the Dragon (1991),Comedy +176323,Ella - Die Stimme des Jazz (2017),(no genres listed) +176325,Star Leaf (2015),Horror +176327,Joe Mande's Award-Winning Comedy Special (2017),Comedy +176329,Ari Shaffir: Double Negative (2017),Comedy +176331,Jab Harry met Sejal (2017),Drama|Romance +176333,The Black Prince (2017),Drama +176335,"The Drew: No Excuse, Just Produce (2016)",Documentary +176337,Some Freaks (2016),Drama +176339,68 Kill (2017),Comedy|Crime +176341,Albion: The Enchanted Stallion (2016),Adventure|Children|Comedy|Fantasy +176343,A Movie Life (2017),Drama +176345,One Piece: The Movie (2000),Action|Adventure|Animation|Comedy|Fantasy +176347,Philosophy of a Knife (2008),Drama|Horror +176349,Bad Genius (2017),Thriller +176351,The Vault (2017),(no genres listed) +176353,Kids (2008),Drama|Fantasy +176355,The Mountain Between Us (2017),Action|Adventure|Drama +176357,Our Car (1962),Comedy +176359,My Aunt in Sarajevo (2016),Drama +176361,Wings of Glass (2000),Drama|Romance +176363,The Children of the Marshland (1999),Comedy|Drama +176365,Below Her Mouth (2017),Drama|Romance +176367,Stonebridge Park (1981),Thriller +176369,The Clouds (1989),Documentary +176371,Blade Runner 2049 (2017),Sci-Fi +176373,Armed Response (2017),Horror|Thriller +176375,Something Like Summer (2017),Drama|Romance +176379,Unrivaled (2010),Action|Adventure|Drama +176381,When Strangers Marry (1944),Drama|Mystery +176383,Gospel Hill (2008),Drama|Mystery|Thriller +176385,"Nejem, nőm, csajom (2012)",Comedy|Romance +176387,The Last Bullet (1995),Action|Drama|War +176389,The Nut Job 2: Nutty by Nature (2017),Adventure|Animation|Children|Comedy +176391,Sharknado 5: Global Swarming (2017),Sci-Fi +176393,Drunktown's Finest (2014),Drama +176395,House of Saddam (2008),Drama +176397,The Stranger from Afar (2004),Horror +176399,Blondie (1938),Comedy +176401,Blondie Meets the Boss (1939),Comedy +176403,The Divine Order (2017),Drama +176405,Forever Pure (2016),Documentary +176407,The Honored Priest: Confession of a Samurai (2015),Action|Drama +176409,Sensoria (2015),Drama|Horror|Thriller +176411,Class of '74 (1972),Drama|Romance +176413,Bliss (2012),Drama +176415,Alles Inklusive (2014),Comedy|Drama +176417,Before Snowfall (2013),Drama +176419,Mother! (2017),Drama|Horror|Mystery|Thriller +176421,The Sandpit Generals (1971),(no genres listed) +176423,Icarus (2017),Documentary +176425,Xuan Zang (2016),(no genres listed) +176427,La Petite mort 2 : Nasty Tapes (2014),Horror|Thriller +176429,Plain Truth (2004),Crime|Drama|Mystery|Thriller +176431,Harvest of Fire (1996),Crime|Drama +176435,There Is No 13 (1974),Drama|War +176437,England Is Mine (2017),Drama +176439,Bare Essentials (1991),Comedy +176441,Been Rich All My Life (2006),(no genres listed) +176443,Surveillance (2013),Crime|Drama|Thriller +176445,Alice Neel (2007),Documentary +176447,Joan Mitchell: Portrait of an Abstract Painter (1993),(no genres listed) +176449,Chop Suey (2001),Documentary +176451,Le Cirque: A Table in Heaven (2007),Documentary +176453,The Magical Life of Long Tack Sam (2003),Animation|Documentary +176455,Dubravka (1967),Children|Drama|Romance +176457,"Eugene, Little Eugene and Katyusha (1967)",Comedy|Romance|War +176459,S Is for Stanley (2016),Documentary +176461,Duran Duran: Unstaged (2014),(no genres listed) +176463,High Class Call Girls (2015),Documentary +176465,Small is Beautiful: A Tiny House Documentary (2015),Documentary +176467,Respectable: The Mary Millington Story (2016),Documentary +176469,From This Day Forward (2015),Documentary +176471,Love Between the Covers (2015),Documentary +176473,Don't Touch the White Woman! (1974),Comedy|Western +176477,40-Love (2014),Drama +176479,What Have You Done Today Mervyn Day? (2005),(no genres listed) +176481,This Is Tomorrow (2008),(no genres listed) +176483,Devils of Darkness (1965),Horror +176485,Frankenstein and the Vampyre: A Dark and Stormy Night (2014),Documentary +176487,Marjorie Prime (2017),Comedy|Drama|Mystery|Sci-Fi +176489,The Blind Christ (2016),(no genres listed) +176491,Children of God (1994),(no genres listed) +176493,Deprogrammed (2015),Documentary +176495,Celluloid Man (2012),Documentary +176497,The Lion In Your Living Room (2015),(no genres listed) +176499,It Happened in Broad Daylight (1958),Crime|Thriller +176501,Curling King (2011),Comedy +176503,Dirty Like an Angel (1991),Drama|Romance +176505,Necronomicon (1993),Horror +176507,Love at the Christmas Table (2012),Comedy|Romance +176509,I Promise You Anarchy (2015),Drama|Romance +176511,The Miller's Beautiful Wife (1955),Comedy|Romance +176513,Incorrigible Liar (1973),Comedy +176515,Rage (2016),Drama +176517,Venus (2016),Documentary +176519,Fun Mom Dinner (2017),Comedy +176521,The Layover (2017),Comedy +176523,Goodbye Christopher Robin (2017),Children +176525,Jago: A Life Underwater (2015),Documentary +176527,"Me, Grandma, Iliko and Ilarion (1962)",Comedy|Romance +176529,The Idiot (1958),Drama +176531,Keep Smiling (2013),Comedy|Drama +176533,My Happy Family (2017),Drama +176535,The Shogun's Samurai (1978),Action|Adventure|Drama +176537,Herschell Gordon Lewis: The Godfather of Gore (2010),Documentary|Horror +176539,Nastazja (1994),Drama +176541,Malpertuis (1971),Drama|Fantasy|Horror +176543,That's Sexploitation! (2013),Documentary +176545,mon mon mon MONSTERS (2017),Drama|Horror +176547,Sin un adiós (1970),Drama +176549,Hearty Greetings From The Globe (1983),Comedy|Sci-Fi +176551,The Limehouse Golem (2017),Horror|Thriller +176553,Full Circle (1978),Drama|Horror|Mystery +176555,The Possessed (1988),Drama +176557,The Mephisto Waltz (1971),Horror +176559,Heart of Darkness (1994),Drama +176561,"Sister, Sister (1987)",Drama|Mystery|Romance|Thriller +176563,The Creature Below (2016),Horror|Sci-Fi +176565,I Don't Know Jack (2002),Documentary +176567,The Endless (2017),Horror|Sci-Fi|Thriller +176569,Liberation Day (2016),Documentary +176571,Trinity is Still My Name (1971),Comedy|Western +176575,Game Box 1.0 (2004),Horror|Sci-Fi +176577,Heat (1963),Drama +176579,Cage Dive (2017),Drama|Horror|Thriller +176581,Cocaine Cowboys (1979),Crime|Drama +176583,Sanctimony (2000),Mystery|Thriller +176585,Tsunami: The Aftermath (2006),Drama +176587,The Game Changer (2017),Action +176589,Illegitimate (2016),Drama +176591,One Love (2003),Drama|Romance +176593,Home Again (2012),Drama +176595,Autumn Lights (2016),Drama|Mystery +176597,Täällä Pohjantähden alla (1968),(no genres listed) +176599,Naked (2017),Comedy +176601,Black Mirror,(no genres listed) +176603,The Snowman (2017),Crime|Thriller +176605,Menashe (2017),Drama +176607,Thunder County (1974),Action +176609,Final Portrait (2017),Drama +176611,Sweaty Betty (2015),Documentary +176613,Discarded Lovers (1932),(no genres listed) +176615,Bluebeard (2017),Thriller +176617,Zakoldovannyy Malchik (1955),Animation|Fantasy +176619,The Golden Antelope (1954),Animation +176621,Boniface's Holiday (1965),Animation|Children|Comedy|Romance +176623,Manual of Love (2005),Comedy|Drama|Romance +176625,Message from the King (2017),Thriller +176627,Let It Fall: Los Angeles 1982-1992 (2017),Documentary +176629,Une femme piégée (2001),Crime +176631,A Patch of Fog (2015),Thriller +176633,The Pharmacist (2003),Crime|Drama|Horror +176635,Voor Elkaar Gemaakt (2017),Comedy|Romance +176637,Dead Bodies (2003),Drama|Thriller +176639,Headrush (2003),Comedy|Crime +176641,Some of My Best Friends Are (1971),Drama +176643,Night Waitress (1936),Crime|Drama|Romance +176645,The Dog's Birthday (1975),Crime|Drama|Mystery +176647,Magdalena's True Vocation (1972),Comedy +176649,María de mi corazón (1979),(no genres listed) +176651,Time Toys (2017),Children|Sci-Fi +176653,Superman II: The Richard Donner Cut (2006),Action|Adventure|Fantasy|Romance|Sci-Fi +176655,Dragon Swamp (1969),Action|Adventure +176657,The Queen of Spain (2016),Comedy|Drama +176659,Средь бела дня... (1982),Drama +176661,What Taiga Was Silent About (1965),Adventure|Children +176663,Loving Ibiza (2013),Comedy|Romance +176665,Eye Catcher! (2014),Drama|Thriller +176669,Hard Hunted (1992),Action|Thriller +176671,The Racing Scene (1969),Documentary +176673,L.E.T.H.A.L. Ladies: Return to Savage Beach (1998),Action|Thriller +176675,Day of the Warrior (1996),Action|Thriller +176677,Kuso (2017),Horror +176679,Kill and Kill Again (1981),Action +176681,Batman & Harley Quinn (2017),Action|Animation +176683,The Jetsons & WWE: Robo-WrestleMania! (2017),Animation|Children|Comedy +176685,Blind (2017),Drama +176687,Welcome to Hollywood (1998),Comedy +176689,Crazed (1978),Drama|Horror +176691,Yesterday (1985),(no genres listed) +176693,An Off-Day Game (2015),Crime|Drama|Mystery +176697,Lipstick Under My Burkha (2017),Comedy|Drama +176699,Boys in the Trees (2016),Drama +176701,Williams (2017),Documentary +176703,Stalin - Trotsky: A Battle to Death (2015),Documentary +176705,The Choice 2016 (2016),Documentary +176707,Murderlust (1985),Thriller +176709,2nd Serve (2013),Comedy|Drama +176711,Other People's Children (2015),Drama|Romance +176713,Frankenthumb (2002),Animation|Comedy|Horror|Sci-Fi +176715,The Godthumb (2002),Action|Comedy|Thriller +176717,Bat Thumb (2001),Action|Animation|Comedy +176719,The Blair Thumb (2002),Comedy +176721,Weeds on Fire (2016),Drama +176723,Immortal Combat (1994),Action|Adventure +176725,John Caparulo: Come Inside Me (2013),(no genres listed) +176727,Rob Delaney: Live at the Bowery Ballroom (2012),Comedy +176729,John Pinette - Still Hungry (2011),Comedy +176731,Women Who Kill (2013),Comedy +176733,The Original Latin Kings of Comedy (2002),Children|Comedy|Thriller +176735,Steve Byrne: Champion (2014),Comedy +176737,The Three Amigos - Outrageous! (2003),Comedy +176739,Metamorphoses (1912),Fantasy +176741,Scullion's Dream (1908),Comedy|Fantasy +176743,King of Dollars (1905),Fantasy +176745,The Magician from Arabia (1906),Fantasy +176747,L'obsession de l'or (1906),(no genres listed) +176749,Purple State of Mind (2008),Documentary +176751,American Made (2017),Crime|Thriller +176753,Bingo - The King of the Mornings (2017),Comedy|Drama +176755,Hood Movie: Is the City One Only? (2011),Documentary +176757,Mission Control: The Unsung Heroes of Apollo (2017),Documentary +176759,Roujin Z (1991),Animation +176761,Deep (2017),Animation +176763,Lantouri (2016),Drama|Romance +176765,Hailey Dean Mystery: Deadly Estate (2017),Mystery +176767,O Matador (2017),(no genres listed) +176769,Abducted (2013),Sci-Fi|Thriller +176771,Surviving Evil (2009),Action|Horror|Thriller +176773,Appleseed (1988),Animation|Crime|Sci-Fi +176775,The People (1972),Drama|Sci-Fi +176777,The State Within (2006),(no genres listed) +176779,Darkland (2017),Action|Drama|Thriller +176781,Ballad in Blood (2016),Horror +176783,Pornocracy: The New Sex Multinationals (2017),Documentary +176785,The Passion of Michelangelo (2013),(no genres listed) +176787,Djam (2017),(no genres listed) +176789,Fever Mounts at El Pao (1959),Drama +176791,Rembrandt fecit 1669 (1977),Drama +176795,Edge of Darkness (1985),(no genres listed) +176797,Devil in the Flesh (1986),Drama|Romance +176799,Superswede: A Film About Ronnie Peterson (2017),Documentary +176801,Suspiria (2017),Horror|Thriller +176803,What the Waters Left Behind,Horror +176805,Little Boxes (2017),Comedy|Drama +176807,Be Here to Love Me (2004),Documentary +176809,The Summit (2017),Drama +176811,The Off Hours (2011),Drama +176813,I Called Him Morgan (2016),Documentary +176815,Weapons of Mass Distraction (1997),Comedy|Drama +176817,The Refrigerator (1991),Comedy|Fantasy|Horror +176819,The Watcher (2016),Horror|Thriller +176823,Under Milk Wood (1972),Comedy|Drama +176825,The Penitent Man (2010),(no genres listed) +176827,Fragments of Love (2016),Drama|Romance +176829,6 Days (2017),Action +176841,Lobster Man from Mars (1989),Comedy|Sci-Fi +176843,Over-sexed Rugsuckers from Mars (1989),Comedy|Sci-Fi +176845,Train Driver's Diary (2016),Comedy +176847,The Night of Counting the Years (1969),Drama +176849,Roundhay Garden Scene (1888),Documentary +176851,Escape from Polygamy (2013),Drama +176853,Stalked at 17 (2012),Drama|Thriller +176855,As If I'm Crazy (2016),Drama +176857,Ascent to Hell,(no genres listed) +176859,Step (2017),Documentary +176861,The Next Skin (2016),Crime|Thriller +176863,Altersglühen - Speed Dating für Senioren (2014),Comedy +176865,The Blazer Girls (1975),Comedy +176867,Raggedy Ann and Raggedy Andy in the Pumpkin Who Couldn't Smile (1979),Animation|Children +176869,Challenge of the Ninja (1989),Action +176873,Fat Slags (2004),Comedy +176875,"Daniel, the Wizard (2004)",Comedy|Crime|Drama|Fantasy|Horror +176879,ABNKKBSNPLAKo?! (2014),Comedy|Romance +176881,The Small One (1978),Animation|Children +176883,Death on the Nile (2004),Crime +176885,The Hoboken Chicken Emergency (1984),Children|Fantasy +176887,Murder on the Orient Express (2010),Crime|Mystery +176889,Attack of the Killer Donuts (2016),Comedy|Horror +176891,The Good Student (2006),Comedy +176893,Custody (2016),Drama +176897,Those Who Make Revolution Halfway Only Dig Their Own Graves (2016),(no genres listed) +176899,Dangerous for Your Life! (1985),Comedy +176901,Neowolf (2010),Horror|Thriller +176903,Demimonde (2015),Drama|Mystery +176905,Argo (2004),Action|Comedy +176907,My Brilliant Life (2014),Drama +176909,"Diana, Our Mother: Her Life and Legacy (2017)",Documentary +176911,43: The Richard Petty Story (1972),Drama +176915,The Aurora Encounter (1986),Comedy|Sci-Fi|Thriller|Western +176917,All Saints (2017),Drama +176919,Beach Rats (2017),Drama +176921,The Villainess (2017),Action|Drama +176923,Bushwick (2017),Action|Thriller +176925,Year by the Sea (2016),Comedy|Drama|Romance +176927,Woodshock (2017),Drama|Thriller +176929,Happy Death Day (2017),Horror|Mystery|Thriller +176931,Мартынко (1987),Animation +176933,The Foreigner (2017),Action|Thriller +176935,Geostorm (2017),Action +176937,Jigsaw (2017),Horror|Thriller +176939,Gook (2017),Drama +176941,Crown Heights (2017),Drama +176943,Dave Made a Maze (2017),Adventure|Comedy|Horror +176945,The Wound (2017),Drama +176947,The Ghoul (2017),Drama +176949,We're from Jazz (1983),Comedy +176951,Mülheim/Ruhr (1964),Documentary +176953,Heaven Will Wait (2016),Drama +176959,The Chess Game (1994),Comedy|Drama +176961,The Chosen (2016),Drama|Thriller +176963,Friend 2 (2013),Action|Crime|Drama +176965,When a Wolf Falls in Love with a Sheep (2012),Comedy|Romance +176967,Unforgettable (2016),Drama|Romance +176969,Fashion King (2014),Comedy|Romance +176971,The Warring States (2011),Action|Drama|Romance|War +176973,The Spy: Undercover Operation (2013),Action|Comedy +176975,Offending Women Is Not Recommended (2000),Drama|Romance +176977,Close to Eden (1991),Drama +176979,King Arthur and the Knights of the Round Table (2017),Action +176981,Morel's Invention (1974),Mystery|Sci-Fi +176983,Coffee Shop (2014),Comedy|Romance +176987,The Teacher (2016),Comedy|Drama +176989,The Living Dead: Three Films About The Power of the Past (1995),(no genres listed) +176991,A Song For You: The Austin City Limits Story (2016),Documentary +176993,The Whole Gritty City (2013),Documentary +176995,Abolition of property (2013),Drama +176997,Video Game High School (2013),Action|Comedy|Romance|Sci-Fi +176999,14+ (2015),Drama|Romance +177001,Pitch (2016),Comedy|Drama +177003,Madame (2017),Comedy|Drama +177005,The Missing Scarf (2013),(no genres listed) +177007,The External World (2010),Animation|Comedy +177009,My Invisible Friend (2010),Comedy|Drama +177011,Please Say Something (2009),(no genres listed) +177013,Tongues Untied (1989),Documentary +177017,A Simple Death (1985),(no genres listed) +177019,At the End of the Spectra (2006),Horror|Mystery +177021,4 Horror Tales - Hidden Floor (2006),Horror +177023,Cello (2005),Horror +177025,They Came to Rob Las Vegas (1968),Crime|Drama +177027,Amanda (1996),Adventure|Children +177029,Supercon,(no genres listed) +177031,Nova Seed (2016),Animation|Fantasy|Sci-Fi +177033,City of My Dreams (1976),Drama +177035,Welcome to the Hartmanns (2016),Comedy|Drama +177037,Puss in Book: Trapped in an Epic Tale (2017),Adventure|Animation|Children|Comedy|Fantasy +177039,Poisons or the World History of Poisoning (2001),Comedy +177041,В движении (2002),(no genres listed) +177043,Flash.card (2006),Crime|Drama|Thriller +177045,The House of Sun (2009),Romance +177047,Jasper Jones (2017),Drama|Mystery|Thriller +177049,Ask This of Rikyu (2013),Drama|Romance +177053,Alive and Kicking (2017),Documentary +177055,Hapkido (1972),Action +177057,Murderers' Row (1966),Action|Adventure|Drama|Mystery +177059,7 Witches (2017),Horror|Thriller +177061,Brother (2016),Drama|Thriller +177063,Devil in the Dark (2017),Horror|Thriller +177065,"Sisters, or The Balance of Happiness (1979)",Drama +177067,Lapland Odyssey 3 (2017),Adventure|Comedy +177069,The Humpbacked Horse (1975),Animation|Fantasy +177071,House of Cards (1990),(no genres listed) +177073,The Unnamable (1988),Horror +177075,The Unnamable II (1993),Horror +177077,The Music of Erich Zann (1980),Horror +177079,The Little Princess (1997),Children|Drama +177081,Colour from the Dark (2008),Horror +177083,Suddenly Twenty (2016),Children|Comedy|Romance +177085,Jagat (2015),Crime|Drama +177087,The Trail of the Broken Blade (1967),Action|Adventure +177089,Curse of the Undead (1959),Horror|Western +177091,Surf's Up 2: WaveMania (2017),Animation|Children|Comedy +177093,"Black Mama, White Mama (1973)",Action +177095,Hindi Medium (2017),Comedy|Drama +177097,Война Принцессы (2014),(no genres listed) +177099,JoJo's Bizarre Adventure: Diamond Is Unbreakable - Chapter 1 (2017),Action|Adventure +177101,Rememory (2017),Drama|Mystery|Sci-Fi +177103,Paranormal Xperience (2011),Horror +177105,Fan-Fan the Tulip (2003),Adventure|Comedy +177107,Eagles of Death Metal: Nos Amis (Our Friends) (2017),Documentary +177109,Det kom en gäst (1947),(no genres listed) +177111,Poltergay (2006),Comedy +177113,Death Billiards (2013),Animation|Drama|Mystery +177115,Dark Waters (1993),Horror|Mystery +177117,Night Eyes (1990),Thriller +177119,Starship Troopers: Traitor of Mars (2017),Action|Animation|Sci-Fi +177121,Goliath (2017),(no genres listed) +177123,Wonderstruck (2017),Drama +177125,Acting Like Adults (2014),Drama +177127,La cura del gorilla (2006),Comedy|Crime|Thriller +177129,Vita smeralda (2006),Comedy +177131,Strawberries Need Rain (1970),Drama +177133,Beyond Glory (2015),War +177135,The Hamburg Cell (2004),Drama|War +177137,Walking Across Egypt (1999),Children|Comedy|Drama +177139,Bayside Shakedown (1998),Comedy|Crime|Drama +177141,Hidden 3D (2011),Horror|Thriller +177143,Silent Witnesses (1914),(no genres listed) +177145,The Death Collector (1976),Crime +177147,Boggy Creek Monster (2016),Documentary +177149,Firefight (2003),Action|Thriller +177153,Todos somos necesarios (1956),Drama +177155,Will You Be There (2016),Drama|Fantasy +177157,Scales: Mermaids Are Real (2017),Fantasy +177159,Aluna (2012),Documentary +177161,Tall Men (2016),Fantasy|Horror|Thriller +177163,Cord (2015),Horror|Sci-Fi +177165,Black Dragon's Revenge (1975),Action +177167,Nothingwood (2017),Documentary +177169,Men in the City (2013),Comedy|Romance +177171,Men in the City 2 (2015),Comedy|Romance +177173,The Night Shift (2017),(no genres listed) +177175,Massacre on Aisle 12 (2016),Comedy|Horror +177177,Behind 'The Cove' (2015),Documentary +177179,Paid Programming: Icelandic Ultra Blue (2009),Comedy +177181,El Calentito (2005),Animation|Comedy|Drama +177183,The Besieged Fortress (2006),Documentary +177185,Maz Jobrani: Immigrant (2017),Comedy +177187,Women Who Kill (2016),Comedy|Crime|Mystery|Romance|Thriller +177189,Pink Floyd: The Story of Wish You Were Here (2012),Documentary +177191,The Dissidents (2017),(no genres listed) +177193,Unleashed (2016),Comedy|Romance +177195,"Literally, Right Before Aaron (2017)",Comedy|Drama +177197,Sundowners (2017),Comedy +177199,Cartesius (1974),Drama +177201,Sign of Aquarius (1970),Drama|Romance +177203,Bullyparade - Der Film (2017),Comedy +177205,Don't Be a Sucker! (1947),Documentary|War +177207,Bitcoin Heist (2016),Action +177209,Acı Aşk (2009),Drama +177211,God of Gamblers' Return (1994),Action|Comedy +177213,Max Headroom - 20 Minutes into the Future (1985),Comedy|Sci-Fi +177215,Yakuza Weapon (2011),Action|Sci-Fi|Thriller +177217,A Kid (2016),Drama +177219,Dino King (2012),Adventure|Animation|Sci-Fi +177223,The Pretender (1987),Drama +177225,Home Again (2017),Comedy|Drama +177227,9/11 (2017),Action|Drama +177229,Ancien and the Magic Tablet (2017),Animation +177231,Brad's Status (2017),Comedy +177233,Rebel in the Rye (2017),Drama +177235,In Search of Fellini,Adventure|Drama +177237,Battle of the Sexes (2017),Comedy +177239,Stronger (2017),Drama +177241,My Little Pony: The Movie (2017),Adventure|Animation|Children|Fantasy +177243,Marshall (2017),Drama +177245,Same Kind of Different as Me (2017),Drama +177247,Malatesta’s Carnival of Blood (1973),Horror +177249,Louis Theroux: Drinking to Oblivion (2016),Documentary +177251,Louis Theroux: A Different Brain (2016),(no genres listed) +177253,JL Family Ranch (2016),Drama|Western +177255,Soul on a String (2016),(no genres listed) +177257,Poison for the Fairies (1984),Drama|Fantasy|Horror|Thriller +177259,Dear Claudia (1999),Adventure|Comedy|Romance +177261,Jackals (2017),Horror|Thriller +177263,Heartland (2016),Children|Drama|Romance +177265,Checkmate,(no genres listed) +177267,Pitching Tents (2017),Comedy +177269,Get the Girl (2017),Action|Comedy|Crime|Thriller +177271,The Chamber (2016),Thriller +177273,"A Woman, a Part (2016)",Drama +177275,Among Us (2017),Drama|Horror|Thriller +177277,Same Time Next Week (2017),Romance +177279,The Good Nanny (2017),Thriller +177281,Off the Rails (2017),(no genres listed) +177283,Off the Rails (2016),Documentary +177285,Sword Art Online The Movie: Ordinal Scale (2017),Action|Adventure|Animation|Fantasy|Sci-Fi +177287,Little Evil (2017),Comedy|Horror +177289,Vixen: The Movie (2017),Action|Animation +177291,Trinity Seven - Eternity Library & Alchemic Girl (2017),Action|Comedy|Fantasy +177295,Jesús (2016),Children|Drama +177297,Temple (2017),Horror +177299,Kill Me Please (2015),Drama|Thriller +177301,Dolores (2017),Documentary +177303,Mike Boy (2017),Crime|Mystery|Thriller +177305,I Do... Until I Don't (2017),Comedy +177307,Menorca (2016),Drama +177309,Till We Meet Again (2016),Adventure|Drama +177313,After The Wedding (2017),Drama +177315,The Mothman of Point Pleasant (2017),Documentary|Horror +177317,Illicit (2017),Thriller +177319,No Way to Live (2016),Crime|Drama|Thriller +177323,The Gift (2003),(no genres listed) +177325,Hepta: The Last Lecture (2016),Drama|Romance +177327,The Rounders (1914),Comedy +177329,Ambrose's First Falsehood (1914),Comedy +177331,Ping Pong (2002),Comedy|Drama +177335,Dark Rising (2007),Action|Adventure|Comedy|Fantasy|Horror +177337,Bring It On: Worldwide #Cheersmack (2017),Comedy|Romance +177339,Kim Dotcom: Caught in the Web (2017),Documentary +177341,"Cinema, Aspirins and Vultures (2005)",Drama +177343,Valley of Bones (2017),Adventure|Crime|Thriller|Western +177345,Testosteroni (2005),Comedy +177347,Blondie's Blessed Event (1942),Comedy +177349,Blondie in Society (1941),Comedy +177351,Blondie Goes to College (1942),Comedy +177353,Blondie for Victory (1942),Comedy +177355,It's a Great Life (1943),Comedy +177357,Footlight Glamour (1943),Comedy +177359,Leave It to Blondie (1945),Comedy +177361,Life with Blondie (1945),Comedy +177365,Do Not Shoot at White Swans (1980),Drama +177367,Without Witness (1983),Drama|Romance +177369,Three Fat Men (1966),Adventure|Children|Fantasy +177371,"After the Rain, on Thursday (1985)",Adventure|Children|Fantasy|Romance +177373,Wildside (1998),Drama +177375,"Exit the Dragon, Enter the Tiger (1976)",Action +177377,The Clones of Bruce Lee (1981),Action|Sci-Fi +177379,Gogol. The Beginning (2017),Adventure|Thriller +177381,Lost in London (2017),Comedy|Drama +177383,The Story of Will Rogers (1952),Comedy|Drama +177385,Therese (1986),Drama +177387,Pope John Paul II (1985),(no genres listed) +177389,In This House of Brede (1975),Drama +177393,The Fourth Wise Man (1985),Adventure|Drama +177397,Francesco (1989),Drama +177399,When In Rome (1952),Comedy +177401,A Boy Called Po (2016),Drama|Fantasy +177403,Not of this World (1999),Drama +177405,Don Bosco (1988),Adventure +177407,Father Brown (1954),Comedy|Crime +177411,Padre Pio (2000),Drama +177413,Ha! Ha! Ha! (1934),(no genres listed) +177415,The Making of 'Terminator 2: Judgment Day' (1991),Documentary +177417,Preferisco il paradiso (2010),Drama +177419,Sant'Agostino (2010),Drama +177421,Life for a Life (1991),(no genres listed) +177423,Sant'Antonio di Padova (2002),Drama +177425,Maria Goretti (2003),(no genres listed) +177427,La passion de Bernadette (1989),(no genres listed) +177429,A Puppy for Christmas (2016),Children +177431,The Recall (2017),Sci-Fi +177433,Frag (2008),Documentary +177435,Moving (1993),Drama +177437,Canary (2004),Drama +177439,PVC-1 (2007),Drama|Romance|Thriller +177441,El Patrón: Anatomy of a Crime (2014),Crime|Drama +177443,Nat King Cole: Afraid of the Dark (2014),(no genres listed) +177445,The Passage (1986),Drama|Fantasy +177447,Footnotes (2016),Comedy +177449,Atomic Falafel (2015),Comedy +177451,Just Like Our Parents (2017),Drama +177453,"Like Mother, Like Daughter (2017)",Comedy +177455,Hollywood Uncensored (1987),Documentary +177457,T2: More Than Meets the Eye (1993),Documentary +177459,Judas' Kiss (1954),(no genres listed) +177461,Shadow of a Man (1956),Crime|Drama +177463,Rudolf the Black Cat (2016),Adventure|Animation|Comedy +177465,The Long Excuse (2016),Drama +177467,Und abends in die Scala (1958),(no genres listed) +177469,The Last Face (2016),Drama +177471,The Atoning (2017),Drama|Horror|Thriller +177473,spanners (2013),Fantasy|Mystery|Sci-Fi +177475,7 años de matrimonio (2013),Comedy|Romance +177477,Bloomfield (1971),Drama +177479,The Saint Strikes Back (1939),Crime|Drama|Mystery|Romance +177481,Pacific 231 (1949),(no genres listed) +177483,The Strange Thing About the Johnsons (2011),Comedy|Drama +177485,With love,Documentary +177487,Fired! (2007),Comedy|Documentary +177489,Life of Riley (2014),Comedy +177491,The Movie about Alekseev (2014),Drama +177493,Sixteen (1973),Drama +177495,Score: A Film Music Documentary (2017),Documentary +177497,Hostiles (2017),Adventure|Drama|Western +177499,O Último Virgem (2016),Comedy|Romance +177501,Premonitions Following an Evil Deed (1995),Crime|Mystery +177503,Amelia 2.0 (2017),Drama|Sci-Fi +177505,Uomo d'acqua dolce (1996),(no genres listed) +177507,Moby Dick (1930),Adventure|Drama +177511,I Give You My Word (2013),Adventure|Children +177513,Blood Harvest (1987),Horror +177515,The Valdemar Legacy (2010),Horror|Mystery +177517,End Day (2005),Drama|Thriller +177521,Photon (2017),Documentary +177523,El mar la mar (2017),(no genres listed) +177527,Attacking the Devil: Harold Evans and the Last Nazi War Crime (2014),Documentary +177529,Dying Laughing (2017),Documentary +177531,Fast Company (1979),Drama +177533,Cruel (2017),Drama|Thriller +177535,"I, Anna (2012)",Drama|Mystery|Thriller +177539,Nick (2016),Drama|Thriller +177541,"Fell, Jumped or Pushed (2016)",Comedy +177543,Blood Bath (1976),Horror +177545,#realityhigh (2017),Comedy +177547,Come Clean (1931),Comedy +177549,Ziegfeld Girl (1941),Drama|Romance +177551,Victoria (2008),(no genres listed) +177553,New Moon (1940),Adventure|Romance +177555,Ali's Wedding (2017),Comedy +177557,Project Arbiter (2013),Action|Sci-Fi +177559,Suckerfish (1999),Comedy|Drama +177561,Do It Like An Hombre (2017),Comedy +177563,Red Lion (1969),Action|Comedy +177565,Marc Maron: Too Real (2017),Comedy +177567,Gun Shy (2017),Action|Adventure|Comedy +177569,Circus Kane (2017),Horror +177571,All My Good Countrymen (1969),Drama +177573,The Ex-Mrs. Bradford (1936),Comedy|Mystery|Romance +177575,Polina (2017),Drama +177577,King Georges (2015),(no genres listed) +177579,Pitch Black Heist (2011),(no genres listed) +177581,North of the Sun (2012),(no genres listed) +177583,Ostende (2011),(no genres listed) +177585,Star Boys (2017),Drama +177587,L'Ascension (2017),Comedy +177589,The Stone,(no genres listed) +177591,Three Rooms in Manhattan (1965),(no genres listed) +177593,"Three Billboards Outside Ebbing, Missouri (2017)",Crime|Drama +177595,Monster on the Campus (1958),Horror|Sci-Fi +177597,"Hello, Fools! (1996)",Comedy|Romance +177599,Girls in the Sun (1968),Drama|Romance +177601,Western (2017),Drama +177605,Operation Dunkirk (2017),Action|War +177607,American Assassin (2017),Action|Thriller +177609,We Are Mountains (1969),Comedy|Drama +177611,Pyewacket (2017),(no genres listed) +177613,Bad Channels (1992),Sci-Fi|Thriller +177615,Lady Bird (2017),Comedy +177617,Polícia Federal - A Lei é Para Todos (2017),Action|Thriller +177619,Cold Tango (2017),Drama|Romance|War +177621,Castro (2009),Action|Drama +177623,Human Experiments (1979),Crime|Horror +177625,Bigfoot in Europe: Sasquatch Encounters Abroad,Action|Documentary +177627,The Bride (2006),Drama|Romance +177629,"Adventures of Petrov and Vasechkin, Both Usual and Unbelieveable (1983)",Children|Comedy +177631,Slashers (2001),Comedy|Fantasy|Horror +177635,Prank (2014),Comedy|Horror +177637,Funland (1987),Action|Comedy +177639,Out of the Dark (1988),Comedy|Horror|Thriller +177641,The Documentary of Ozbo (2014),(no genres listed) +177643,100 Tears (2007),Horror +177645,ClownTown (2016),Horror|Thriller +177647,The Snake (2006),Thriller +177649,Spanish Movie (2009),Comedy +177651,The Florida Project (2017),Drama +177653,Bis (2015),Comedy +177655,Man in Red Bandana (2017),Documentary +177657,Bullets for the Dead (2015),Horror|Western +177659,The Amazing Nina Simone (2015),Documentary +177661,Nina Simone: The Legend (1992),Documentary +177663,My Little Friend (2011),Comedy|Drama +177665,Minnesota Clay (1964),Action|Romance|War|Western +177667,The Redsin Tower (2006),Horror +177669,Silver Bullets (2011),Horror +177671,The Torture of Silence (1917),Drama +177673,Human (1962),Drama +177677,Mother (1963),(no genres listed) +177679,The Wild Man of the Navidad (2008),Drama|Horror|Mystery +177681,Year Zero (2004),Drama +177683,Sun Scarred (2006),Action|Crime|Drama +177685,Aviya's Summer (1988),Children|Drama +177689,The Killing of a Sacred Deer (2017),Drama|Horror|Mystery|Thriller +177691,In Search of Lovecraft (2008),Horror +177693,I Won't Come Back (2014),Drama +177695,Salvation (2015),(no genres listed) +177697,The Moth (1997),Drama +177699,PLURALITY (2012),Sci-Fi +177701,The Wyvern Mystery (2000),Drama|Mystery|Thriller +177703,The Devil's Whore (2008),Drama|War +177705,Rogue Warrior: Robot Fighter (2017),Action|Sci-Fi +177707,The Parrot and the Swan (2013),(no genres listed) +177709,The B-Side: Elsa Dorfman's Portrait Photography (2017),Documentary +177711,Fictitious Anacin Commercial (1967),(no genres listed) +177713,Absurd Encounter with Fear (1967),Fantasy|Horror +177715,Pierre and Sonny Jim (2001),(no genres listed) +177717,Steve Martin: A Wild and Crazy Guy (1978),Comedy +177719,Dana Gould: I Know It's Wrong (2013),Comedy +177721,Scream of the Banshee (2011),Horror +177723,Jonny's Golden Quest (1993),Adventure|Animation|Children|Mystery +177725,Redoubtable (2017),Drama|Romance +177727,Made in Italy (2015),Documentary +177729,Yamadonga (2007),Drama|Fantasy +177731,The Pointsman (1986),Drama +177735,Cinco de Mayo: La Batalla (2013),Drama|War +177737,Memoir of a Murderer (2017),Crime|Thriller +177739,These Days (2016),(no genres listed) +177741,Ama-San (2016),Documentary +177743,Babo 73 (1964),Comedy +177745,Calcutta (1969),Documentary +177747,Canoa: A Shameful Memory (1976),Adventure|Crime|Drama|Thriller +177749,Carl Th. Dreyer: My Metier (1995),Documentary +177751,Chafed Elbows (1966),(no genres listed) +177753,La chambre (1972),Documentary +177755,Come On Children (1972),Documentary +177757,Lady Snowblood 2: Love Song of Vengeance (1974),Drama|Thriller +177759,Dab6e (2015),Horror +177761,Creepozoids (1987),Horror|Sci-Fi +177763,Murder on the Orient Express (2017),Crime|Drama|Mystery +177765,Coco (2017),Adventure|Animation|Children +177767,The Firefly (2013),Drama|Fantasy|Romance +177769,Euphoria (2017),Drama +177771,Suburbicon (2017),Comedy|Crime|Mystery +177773,The Price of Sugar (2013),Drama +177775,Supernova (2014),Drama +177777,170 Hz (2012),Drama +177779,Dusk (2010),Drama +177781,Catherine The Great (1996),Drama +177783,Shaquille O'Neal All-Star Comedy Jam Live from Atlanta (2013),(no genres listed) +177785,All Star Comedy Jam (2009),Comedy +177787,Chappaquiddick (2017),Drama|Thriller +177789,NHL Greatest Moments (2006),Documentary +177791,Going to Brazil (2017),Comedy +177793,Little Door Gods (2016),Animation|Children|Fantasy +177795,Z-Office (2017),Action|Horror +177797,Predator: Dark Ages (2015),Action +177799,Ограбление по... (1978),Animation +177801,El amante bilingüe (1993),Comedy|Drama +177803,The School Waltz (1977),Children|Drama|Romance +177805,Poor Albert and Little Annie (1972),Drama|Horror|Thriller +177807,Bodied (2017),Comedy|Drama +177809,Jackson (2016),Documentary +177811,Damned River (1989),Action|Thriller +177813,The Book of Revelation (2006),Mystery|Romance|Thriller +177815,Mujhse Fraaandship Karoge (2011),Comedy|Drama|Romance +177817,Jokes My Folks Never Told Me (1978),(no genres listed) +177819,Kiss and Cry (2017),Drama|Romance +177821,Bloody Milk (2017),Comedy|Drama +177823,Hide and Go Shriek (1988),Horror|Thriller +177825,Live Cargo (2016),Drama|Thriller +177827,The Deliberate Stranger (1986),Crime|Drama|Thriller +177829,Ann Rule Presents: The Stranger Beside Me (2003),Crime|Drama|Thriller +177831,Baby Shower (2011),Horror +177833,Torched (2003),Horror +177835,The Killer in the House (2016),Action|Comedy|Horror +177837,The State I Am In (2000),Drama +177839,To Take A Wife (2004),Drama|Romance +177841,The Tapes (2011),Horror +177843,Afterthought (2015),(no genres listed) +177845,Poetry in Motion (1982),Documentary +177847,Seven Steps of Kung Fu (1979),Action +177849,Greed in the Sun (1964),Action|Adventure|Comedy +177851,We Are Not Alone (2016),Horror|Thriller +177853,The Journey Is the Destination (2016),Drama +177855,The Ultimate Guide to Penny Pinching (2011),Documentary +177857,David Gilmour - Live at Pompeii (2017),Documentary +177859,The President (1919),(no genres listed) +177861,Two People (1945),Drama +177863,The Land of the Wandering Souls (2000),(no genres listed) +177865,Un Profil pour deux (2017),Comedy|Romance +177867,Borg vs McEnroe (2017),Drama +177869,Girls und Panzer Movie (2015),Action|Animation|Comedy +177871,Victoria & Abdul (2017),Drama +177873,When Love Happens (2014),Romance +177875,Danger Man in Tokyo (1968),Action|Adventure|Thriller +177877,Slasher.com (2017),Horror|Thriller +177879,Ryan Hamilton: Happy Face (2017),Comedy +177881,Louis Theroux: Louis and the Brothel (2003),Documentary +177883,Jerry Before Seinfeld (2017),Comedy +177887,Beneath (2007),Horror|Mystery|Thriller +177889,Carl (2012),Horror|Thriller +177891,The Helpers (2012),Horror +177893,Imprint (2007),Mystery|Thriller +177895,Dearest (2014),Drama +177897,Eduart (2007),Crime|Drama +177899,The Basement (2011),Horror|Thriller +177901,The Guilty (2000),Crime|Drama|Thriller +177903,Near Death (1989),Documentary +177905,The Mouth Agape (1974),Drama +177907,Entrance (2012),Drama|Horror|Thriller +177909,Showdown at Boot Hill (1958),Western +177911,Tall Man Riding (1955),Action|Western +177913,Back to Burgundy (2017),Drama +177915,Elementary (2017),Comedy|Drama +177917,Papa ou maman 2 (2016),Comedy +177919,The Bride of Glomdal (1926),Drama|Romance +177921,"Gesuzza, La Sposa Garibaldina (1934)",(no genres listed) +177923,Evil Dead Trap (1988),Horror +177925,Medium-Class Train (1933),Drama +177927,Diary (1983),Documentary +177929,The Parson's Widow (1920),Comedy|Drama|Horror +177931,Notes on the Circus (1966),Documentary +177933,Raid on Entebbe (1976),Action|Drama|Thriller +177935,The Iron Fisted Monk (1977),Action +177937,The Human Bullet (1968),Comedy|Drama|War +177939,"The Night Is Short, Walk on Girl (2017)",Animation|Romance +177941,In the Heat of the Sun (1994),Drama +177943,Infiltration (2010),Drama +177945,Diamonds of the Night (1964),Drama|War +177947,Tattoo (1966),Drama|Thriller +177949,Kill or Be Killed (2016),Horror|Mystery|Thriller|Western +177951,Happy! (2017),Fantasy +177953,Radar Men from the Moon (1952),Action|Sci-Fi|Thriller +177955,The Iron Crown (1941),Adventure|Fantasy +177957,The Exchange (2011),Drama +177959,Three Days and a Child (1969),Drama +177961,Big Shots (1982),Crime|Drama +177963,Rumble (2016),Action +177965,The Sleeper (2012),Comedy|Horror|Thriller +177967,Pitchfork (2016),Horror +177969,The Hike (2011),Horror|Thriller +177971,Snake Deadly Act (1980),Action +177973,The Wayward Sun,(no genres listed) +177975,On a Narrow Bridge (1985),(no genres listed) +177977,The Secret Rivals (1976),Action +177979,The Secret Rivals 2 (1977),Action +177981,Sexy Sadie (1996),Comedy|Crime +177983,Long Dream (2000),Horror|Sci-Fi +177985,Dark Age (1987),Adventure|Horror +177987,Humongous (1982),Horror +177989,Oru CBI Diary Kurippu (1988),Crime|Thriller +177991,Anomalous (2016),Fantasy|Horror|Thriller +177993,Escape Room (2017),(no genres listed) +177995,Jungle Assault (1989),Action|War +177999,Raw Justice (1994),Action|Thriller +178001,Rage to Kill (1988),Action|Adventure +178003,Mission Kill (1986),Action|Adventure|Crime +178007,Code Name: Vengeance (1987),Action|Adventure|Thriller +178009,I Know What I Saw (2007),Crime|Thriller +178011,The Dooms Chapel Horror (2016),Horror|Thriller +178013,The Boxer from Shantung (1972),Action +178015,The Slut (2011),Drama +178017,My Pure Joy (2011),Comedy|Horror +178019,Thirst (2004),Documentary +178021,Bazaar Bizarre (2004),Documentary +178023,Adrift (1970),Drama +178025,Sella Turcica (2010),Horror +178027,People That Are Not Me (2016),Drama|Romance +178029,Films to Keep You Awake: To Let (2006),Horror|Thriller +178031,Basic Training (1971),Documentary +178033,Domestic Violence (2001),Documentary +178035,Domestic Violence 2 (2002),(no genres listed) +178037,Essene (1972),Documentary +178039,Sinai Field Mission (1978),(no genres listed) +178041,La Cicciolina. Godmother of Scandal (2017),Documentary +178043,The Finishers (2014),Drama +178045,Another Yeti a Love Story: Life on the Streets (2017),Comedy|Horror +178047,Call of the Wolf (2017),Adventure|Drama|Thriller +178049,Happy-Go-Lucky (1972),Comedy|Drama +178051,Cut (2010),Horror|Mystery|Thriller +178053,Farewells (1958),(no genres listed) +178055,One Room Tenants (1960),Drama +178057,A Boring Story (1983),(no genres listed) +178059,Rowan Atkinson: Not Just a Pretty Face (1992),Comedy +178061,"I, Tonya (2017)",Drama +178063,Zama (2017),Drama +178065,Film pentru prieteni (2011),(no genres listed) +178067,We Don't Belong Here (2017),Children|Drama +178069,What Happened Last Night (2016),Comedy +178071,God of Gamblers III Back to Shanghai (1991),Action|Comedy|Thriller +178073,The White Meadows (2009),Drama +178075,Tenderness of the Wolves (1973),Crime|Drama|Horror +178077,Storm Boy (1976),Drama +178079,Anand (1971),Drama +178081,Massacre Gun (1967),Crime|Drama +178083,Walking Out (2017),Adventure|Drama +178085,November Criminals (2017),Crime|Drama +178087,The Wilde Wedding (2017),Comedy +178089,Josie's Castle (1971),Drama +178091,The Ever After (2015),Drama +178093,I Am (2009),Drama +178095,Du côté d'Orouët (1971),(no genres listed) +178097,The Castaways of Turtle Island (1976),Comedy +178099,Maine-Ocean Express (1986),Comedy +178101,Tam idan hatmimut (2013),Drama +178103,Shrunken Heads (1994),Comedy|Horror|Thriller +178105,Pole to Pole (1992),(no genres listed) +178107,Led Zeppelin: Dazed & Confused (2009),Documentary +178109,Justice Is Done (1950),Drama +178111,"Fireworks, Should We See It from the Side or the Bottom? (2017)",Animation +178113,Filth City (2017),Action|Comedy|Crime|Drama +178115,King Arthur: Excalibur Rising (2017),Action +178119,A Norml Life (2011),Documentary +178121,A River of Waste: The Hazardous Truth About Factory Farms (2009),Documentary +178123,Dabbe: Cin çarpmasi (2013),Horror +178125,D@bbe 2 (2009),Horror|Mystery +178127,Abd El-Kader,(no genres listed) +178129,Adventures in Plymptoons! (2011),Documentary +178135,Alto (2015),Comedy|Crime|Romance +178137,America So Beautiful (2001),Drama +178147,Beatles Stories (2011),Documentary +178149,Becoming Santa (2011),Comedy|Documentary +178151,Bedwin Hacker (2003),Action +178153,Death Trance (2005),Action|Sci-Fi|Thriller +178157,BlueGreen,(no genres listed) +178163,Cannes Man (1996),Comedy|Drama +178167,Citizen Autistic (2013),Documentary +178171,Conventioneers (2005),Comedy|Drama|Romance +178183,Dust of Life (1995),Drama +178185,Dusty's Trail: Summit of Borneo (2013),(no genres listed) +178187,El Superstar,Comedy +178193,The Forgotten Bomb (2012),Documentary +178195,Freedom Fries: And Other Stupidity We'll Have to Explain to Our Grandchildren (2006),Documentary +178201,GasHole (2010),Documentary +178203,Generation Baby Buster (2011),Documentary +178205,Genetic Chile (2010),Documentary +178209,God Went Surfing With The Devil (2010),Documentary +178213,Latino (1985),Drama|War +178217,Hempsters: Plant the Seed (2008),Documentary +178221,I Am The Queen,(no genres listed) +178223,Injecting Aluminum,(no genres listed) +178225,Inside the Circle (2009),Documentary +178233,Little Senegal (2001),Drama +178235,Locked-In Syndrome (1997),(no genres listed) +178239,Lost Angels: Skid Row Is My Home (2012),Documentary +178247,Message From Hiroshima (2015),Documentary +178251,Robert Williams Mr. Bitchin' (2013),(no genres listed) +178255,No Subtitles Necessary: Laszlo & Vilmos (2009),Documentary +178257,Norman Mailer: The American (2012),(no genres listed) +178265,Ptown Diaries (2009),Documentary +178267,Palestine Blues,Documentary|Thriller +178269,POPaganda: The Art & and Crimes of Ron English (2006),Documentary +178271,Pururambo,(no genres listed) +178279,Ride Report (2014),(no genres listed) +178281,Rising Tides (2016),(no genres listed) +178283,Roselyne and the Lions (1989),(no genres listed) +178285,Rotor DR1 (2015),Children|Sci-Fi +178289,A Second Knock at the Door (2012),Documentary|War +178297,SMART: The Documentary (2016),(no genres listed) +178299,Soldiers Pay (2004),Documentary +178311,I See You (2017),Comedy|Romance +178313,Blood Pressure (2013),Drama|Thriller +178315,The Breakup Playlist (2015),Drama|Romance +178317,Justice (2017),Western +178319,Happy Hunting (2017),Horror|Thriller +178321,All My Friends Are Leaving Brisbane (2007),Comedy +178323,Gaga: Five Foot Two (2017),Documentary +178325,Negotiator (2003),(no genres listed) +178327,Provoked: A True Story (2007),Drama +178329,Umrao Jaan (2006),Drama|Romance +178331,Kuch Naa Kaho (2003),Comedy|Drama|Romance +178333,Appointment in Bray (1971),Drama|War +178335,Thelma (2017),Fantasy|Romance|Thriller +178337,Sad Movie (2005),Comedy|Drama|Romance +178339,The Classic (2003),Drama|Romance +178341,Human Flow (2017),Documentary +178343,Mary's Land (2013),Comedy|Documentary|Drama|Mystery +178345,This Is Your Death (2017),Drama +178347,"Alfredo, Alfredo (1972)",Comedy|Romance +178349,Mademoiselle Gobete (1952),Comedy +178351,The Path of Hope (1950),Drama +178353,Nothing But a Man (1964),Drama +178355,Killing Gunther (2017),Action|Comedy +178357,Everlasting (2016),Crime|Drama|Mystery|Romance|Thriller +178359,Sleeping Fist (1979),(no genres listed) +178361,The Top Bet (1991),Action|Comedy|Romance +178363,Just Heroes (1989),Action|Crime +178365,The Rizen (2017),Action|Horror|Sci-Fi +178367,My Best Friend Is a Vampire (1987),Children|Comedy|Horror +178369,Brothers of the Wind (2015),Adventure|Children|Drama +178371,Closeness (2017),Drama +178373,Staircase (1969),Comedy|Drama +178375,Jolly LLB 2 (2017),Comedy|Crime +178379,Beauty and the Dogs (2017),Thriller +178383,Magic Samson (1988),Comedy +178385,Women from the Lake of Scented Souls (1993),(no genres listed) +178387,Grey Owl (1999),Action|Drama|Romance|Western +178391,When Elephants Were Young (2016),Adventure|Children|Documentary|Drama +178393,Diplomaniacs (1933),Comedy +178395,Danger Pays (1962),Comedy|Crime +178397,Jai Ho (2014),Action|Drama +178401,Lucky (2017),Drama +178403,The Forest (2016),(no genres listed) +178407,Lake Alice (2017),Horror +178409,There Is a New World Somewhere (2015),Adventure|Drama|Romance +178411,Thunder Cops II (1989),Crime +178413,Land of Oblivion (2011),Drama +178415,The Ra Expeditions (1972),Documentary +178417,A Lustful Man (1961),Comedy|Drama +178419,Let the Sunshine In (2017),(no genres listed) +178421,The Road Movie (2017),Documentary +178423,Sprawling from Grace,Documentary +178425,Teen a Go Go: A Little Film About Rock and Roll History,(no genres listed) +178429,The Castle Project (2013),(no genres listed) +178437,The Last Hurrah (2009),Comedy|Drama +178439,The Little Bedroom (2011),Comedy|Drama +178445,Too Sane for This World (2011),Documentary +178447,Cult of Chucky (2017),Horror|Thriller +178451,Tre (2006),Drama|Romance +178453,Ukraine on Fire (2016),(no genres listed) +178455,Under the Turban (2016),Documentary +178459,Wet Behind the Ears (2013),Comedy +178461,Will the Real Terrorist Please Stand Up (2010),(no genres listed) +178465,Clowntergeist (2016),Horror +178467,"Duch, Master of the Forges of Hell (2012)",Documentary +178469,Morgiana (1972),Drama|Horror +178471,The Idol (2015),Comedy|Drama +178473,The Settlers (2016),Documentary +178475,Adua and Her Friends (1960),Drama +178477,On the Beach at Night Alone (2017),Drama +178479,The Rats (2002),Horror|Sci-Fi|Thriller +178481,Headwinds (2011),Drama|Mystery +178483,The Marchers (2013),Drama +178485,Rue Mandar (2013),Comedy +178487,The Big Man (1990),Drama +178489,Baar Baar Dekho (2016),Action|Drama|Romance +178491,My Brother's Wedding (1983),Drama +178493,Slow Moves (1983),(no genres listed) +178495,Last Chants for a Slow Dance (1977),(no genres listed) +178497,A Few Hours Of Spring (2012),Comedy|Drama +178499,A View of Love (2010),Drama +178501,House of Others (2016),Drama +178503,Rendez-vous à Kiruna (2013),Drama +178505,Le Paradis des bêtes (2012),Drama +178507,Sounds Like (2006),Horror +178509,Our Souls at Night (2017),Drama +178511,Pornopung (2013),Comedy|Drama +178513,La caja 507 (2002),Action|Drama|Thriller +178517,Sniper: Ultimate Kill (2017),Action|Drama|Thriller +178519,Caged (2011),Drama|Thriller +178521,The Babysitter (2017),Horror +178523,1922 (2017),Crime|Drama|Mystery +178525,The Principles of Lust (2003),Drama +178527,Nitro Rush (2016),Action +178529,Mazes and Monsters (1982),Drama|Fantasy|Sci-Fi +178531,I Was Nineteen (1968),Drama +178533,Bernadette (1988),Drama +178535,September 11: The New Pearl Harbor (2013),Documentary +178537,La Folle histoire d'amour de Simon Eskenazy (2009),Comedy|Romance +178539,Stranger in a Cab (2014),Drama +178541,What Becomes of the Broken Hearted? (1999),Drama +178543,The Long Hot Summer (1985),Drama +178545,One More Chance (2007),Drama|Romance +178547,Point of Origin (2002),Crime|Drama|Thriller +178549,No Big Deal (1983),(no genres listed) +178551,Running Brave (1983),Drama +178553,Guilty by Association (2003),Action|Drama|Thriller +178555,Our Town (1977),(no genres listed) +178557,Vanishing Point (1997),Action|Adventure|Thriller +178559,Sugartime (1995),Crime|Drama|Romance +178561,The Emperor's Shadow (1996),Drama +178563,The Big Bounce (1969),Drama|Romance +178565,Door to Door (2002),Drama +178567,Hop (2002),(no genres listed) +178569,1-Ichi (2003),Action|Thriller +178571,Men at Work (2006),Comedy +178573,The Reunion 3: Baptism (2016),Comedy +178575,Watchtower (2012),Drama +178577,Nieuwe helden (2014),Documentary +178579,Terror in the Aisles (1984),Documentary +178581,40 Days and Nights (2012),Action|Adventure|Sci-Fi|Thriller +178583,Walk Proud (1979),Drama|Romance +178585,Hot Enough for June (1964),Comedy +178587,The Smell of Us (2014),Drama +178589,Death of a Gentleman (2015),Documentary +178591,Nuremberg - Les nazis face à leurs crimes (2006),Documentary +178593,The Prisoner or: How I Planned to Kill Tony Blair (2007),Documentary +178595,J'attends quelqu'un (2007),Comedy|Drama +178597,Deep in the Woods (2010),Drama|Romance +178599,In the Blink of an Eye (2009),Drama|Fantasy|Thriller +178603,Chasing Fifty (2015),Comedy|Romance +178605,Tiger Theory (2016),Comedy|Drama +178607,Red Wood Pigeon (1989),Comedy +178609,Another Silence (2011),Drama +178611,1 Journée (2007),Drama +178613,Dave Chappelle: Killin' Them Softly (2000),Comedy +178615,Front Cover (2016),Comedy|Drama|Romance +178617,Напарник (2017),(no genres listed) +178619,Vilaieha,(no genres listed) +178621,Dogs Without Names (2015),(no genres listed) +178623,Where Children Play (2015),Drama +178625,Semana santa (2015),Drama +178629,Rebecca of Sunnybrook Farm (1917),Comedy|Drama +178633,American Guerrilla in the Philippines (1950),Drama|War +178635,Alice in Wonderland (1949),Children|Fantasy +178637,Date of the Dead (2017),Comedy|Horror +178639,Wolf Warrior 2 (2017),Action +178641,Chasing the Dragon (2017),(no genres listed) +178643,Subterranea (2015),Drama|Mystery +178645,Diana: In Her Own Words (2017),Documentary +178647,Girls in the Dark (2017),Mystery +178649,Wedding Unplanned (2017),Comedy|Romance +178651,Empire of the Sharks (2017),Action|Sci-Fi +178653,Mourning for Anna (2010),Drama +178655,Angel of Death (2002),Action|Thriller +178657,Copyright Criminals (2009),Documentary +178659,In The Morning (2014),Drama +178663,Restless Creature: Wendy Whelan (2017),Documentary +178665,Бабушка лёгкого поведения (2017),Comedy +178667,Gerald's Game (2017),Horror|Thriller +178669,Daphne (2017),Comedy|Drama +178671,Dark Forest (2015),Horror|Thriller +178673,Half Ticket (1962),Comedy +178675,Unsullied (2015),Action|Horror|Thriller +178679,The Eternal Road (2017),Drama|War +178681,Brødrene Dal og vikingsverdets forbannelse (2010),Adventure|Children|Comedy +178683,Danny Boy (2010),Animation|Fantasy +178685,Cromartie High School: The Movie (2005),Comedy +178687,Steele Justice (1987),Action|Drama +178693,Spettacolo (2017),Documentary +178695,No Surrender (2011),Thriller +178697,Chorus (2015),Drama +178699,Queen and Country (2014),Drama +178701,Look Out Officer (1990),(no genres listed) +178703,How to Dance in Ohio (2015),Documentary|Drama +178705,Company: A Musical Comedy (2008),Comedy|Drama +178707,Honnouji Hotel (2017),Comedy|Mystery +178709,Naledi: A Baby Elephant's Tale (2016),Documentary +178711,Gandu (2010),Drama +178713,Bomb Scared (2017),Comedy +178715,Dreamship Surprise - Period 1 (2004),Comedy|Sci-Fi +178717,Otto's Eleven (2010),Comedy +178719,Shock Wave (2017),Action|Crime|Drama +178721,Distance Between Dreams (2016),Action|Adventure|Documentary +178723,Cannibal Diner (2012),Horror|Mystery|Thriller +178725,The Last Confession of Alexander Pearce (2009),(no genres listed) +178727,Everything is Free (2017),Drama +178729,One Piece: Clockwork Island Adventure (2001),Action|Adventure|Animation +178731,The First (2014),Sci-Fi +178733,The Greatest Civil War on Earth (1961),(no genres listed) +178735,Jeff Dunham: Relative Disaster (2017),(no genres listed) +178737,The Last Party (2016),Comedy +178739,Kiss Me Kate (2003),(no genres listed) +178741,La brunante (2007),Comedy|Drama +178743,Dangerous Crossing (1953),Drama|Mystery|Thriller +178745,Two Champions of Shaolin (1980),Action|Drama +178747,Def Comedy Jam 25 (2017),Comedy +178749,Absurd Accident (2016),Comedy|Drama +178751,Decay (2012),Horror|Thriller +178753,Safety First - The Movie (2015),Comedy +178755,November (2003),Comedy|Drama|Thriller +178757,Don't Let Them Shoot the Kite (1989),Drama +178759,Easton's Article (2012),Drama|Sci-Fi|Thriller +178761,The Aviation Cocktail (2012),(no genres listed) +178763,Crosshairs (2013),Action|Drama|Thriller +178765,Last Flight (2014),Action|Thriller +178767,Safehouse (2008),Action|Crime|Drama|Mystery|Romance|Thriller +178769,The Good Soldier Švejk (1956),Comedy|War +178771,Adele Hasn't Had Her Dinner Yet (1978),Comedy|Crime +178773,The Snowdrop Festival (1984),Action|Comedy|Drama +178775,"Four Murders Are Enough, Darling (1971)",Comedy +178777,Habermann's Mill (2010),Drama|War +178779,Dissolved and Effused (1985),Comedy|Crime +178781,"Jara Cimrman Lying, Sleeping (1983)",(no genres listed) +178783,"Marecek, Pass Me the Pen! (1976)",Children|Comedy +178785,"Secluded, Near Woods (1976)",Comedy +178787,An Uncertain Season (1988),Comedy|Drama +178789,Švestka (1997),Comedy +178791,Afrika aneb Češi mezi lidožravci (2002),Comedy +178793,Blaník (1990),Comedy +178795,"Dlouhý, Široký a Krátkozraký (1974)",Comedy +178797,Murder in a Parlor Car Compartment (1997),Comedy +178799,Vyšetřování ztráty třídní knihy (1997),Comedy +178801,Hospoda Na mýtince (1997),Comedy +178803,České nebe (2008),Comedy +178805,A Good Rain Knows (2009),Drama|Romance +178807,Hellbound (1994),Action|Horror|Thriller +178815,The Bounce Back (2016),Romance +178817,Tasmanian Devils (2013),Fantasy|Horror|Sci-Fi +178819,Beforel Orel: Trust (2012),(no genres listed) +178821,Who Shot Patakango? (1989),(no genres listed) +178823,Lift (2001),Crime|Drama +178825,Lommbock (2017),Comedy +178827,Paddington 2 (2017),Adventure|Animation|Children|Comedy +178829,The Man Who Knew a Lot (2014),Comedy|Drama +178831,Go West (2005),Comedy|Drama|War|Western +178833,Someone is Bleeding (1974),Drama|Mystery|Thriller +178835,An Ordinary Man (2017),Action|Drama +178837,Let's Play Two (2017),Documentary +178839,Crooked House (2017),Mystery +178843,Long Shot (2017),Documentary +178845,The Lost City of Cecil B. DeMille,Documentary +178847,Inferno (2014),Drama +178849,Giant from the Unknown (1958),Drama|Horror +178851,Future Zone (1990),Action|Crime|Sci-Fi +178853,Sarah Plays a Werewolf (2017),(no genres listed) +178855,A Ciambra (2017),Drama +178857,Satan's Mistress (1982),Horror +178859,Time of Her Life (2006),Horror|Mystery|Romance +178861,Loving (2017),Drama|Romance|Thriller +178863,Stripped Naked (2010),Crime|Drama|Thriller +178865,I Witness (2003),Action|Adventure|Crime|Drama|Mystery|Thriller +178869,Kojot (2017),(no genres listed) +178873,Slender (2016),Thriller +178875,Rough Stuff (2016),Adventure +178877,John and Mary (1969),Drama|Romance +178879,RSO [Registered Sex Offender] (2008),Comedy +178881,The Visitor (1964),Comedy|Romance +178883,Ghosts of Rome (1961),Comedy|Fantasy +178885,Princess Cyd (2017),Drama +178887,A Free Woman (1972),Drama +178889,The Cat (1971),Drama +178891,When the Cat Comes (1963),Comedy|Fantasy +178893,Là-Bas (2006),Documentary +178895,Veronica (2017),Drama|Mystery|Thriller +178897,That Lovely Girl (2014),Drama +178899,Il dono (2003),Documentary +178901,Next to Her (2014),Drama +178903,The Deliverance (1981),Drama +178905,The President's Barber (2004),Comedy|Drama +178907,Blade Runner: Black Out 2022 (2017),Action|Animation|Sci-Fi +178909,A Carne é Fraca (2004),Documentary +178911,A Dream Walking (1934),Animation|Comedy +178913,Rattle of a Simple Man (1964),Comedy +178915,The Buddha Assassinator (1980),Action +178917,Mad Monkey Kung Fu (1979),Action +178919,A Year of the Quiet Sun (1984),Drama|Romance +178921,Winter Stories (1999),(no genres listed) +178923,Kút (2016),(no genres listed) +178925,Rodrigo D: No Future (1990),Crime|Drama +178927,Beyond Clueless (2014),Documentary +178929,J. Kessels (2015),Comedy|Drama +178931,The Golden Demon (1954),Drama +178933,Newton (2017),Comedy|Drama +178935,Love for an Idiot (1967),Comedy|Drama +178937,Seisaku's Wife (1965),Drama|Romance|War +178939,Swastika (1964),Drama +178941,The Secret Adversary (1983),Action|Adventure|Comedy|Mystery +178943,Shinjuku Underworld: Chinese Mafia War (1995),Action|Thriller +178947,Mystery Liner (1934),Mystery +178949,Entrails of a Beautiful Woman (1986),Horror +178951,An Early Frost (1985),Drama +178953,Our Lady of the Turks (1968),(no genres listed) +178955,Killing Hasselhoff (2017),Comedy +178957,Head of the Family (1996),Comedy|Horror +178959,Ooga Booga (2013),Comedy|Fantasy|Horror +178961,Slumber,(no genres listed) +178963,The Crucifixion (2017),Horror|Mystery|Thriller +178965,Redwood (2017),Horror|Thriller +178967,"The Lion, the Witch and the Wardrobe (1979)",Animation|Children +178969,Wild Side (1995),Action +178971,Guinea Pig 5: Mermaid in the Manhole (1988),Horror +178973,Guinea Pig 3: He Never Dies (1986),Comedy|Horror +178975,Guinea Pig: Android of Notre Dame (1989),Horror +178977,Silent But Deadly (2010),Comedy|Horror +178979,Even the Wind Is Afraid (1968),Drama|Fantasy|Horror|Thriller +178981,Horrors of Malformed Men (1969),Horror|Mystery +178983,Rows (2015),(no genres listed) +178985,Ghost of Hanging in Utsunomiya (1956),Action|Horror +178987,Murder Collection V.1 (2009),Horror +178989,Children of Sorrow (2012),Horror +178991,Love Eternal (2013),Drama|Mystery +178993,Prevertere (2013),Drama +178995,Strike a Pose (2016),Documentary +178997,Batman vs. Two-Face (2017),Animation +178999,Junk Movie (1992),Comedy|Drama +179001,Koudelka Shooting Holy Land,Documentary +179003,Schweigeminute (2016),Drama +179005,Newness (2017),Drama|Romance +179007,Up the Creek (1984),Comedy +179009,Soft for Digging (2001),Drama|Horror|Thriller +179011,Murder-Set-Pieces (2004),Horror|Thriller +179013,Capture Kill Release (2016),Drama|Horror|Thriller +179015,Agitator (2001),Crime|Drama +179017,Campfire (2004),Drama|Romance +179019,Mercy (2012),Thriller +179021,The Strangeness (1985),Horror +179023,Fossil (2014),Drama|Thriller +179025,The Hussy (1979),Drama +179027,The Baby Carriage (1963),Drama +179029,Poor Cow (1967),Drama +179031,ExTerminators (2010),Comedy|Drama +179033,Finally Found Someone (2017),Comedy|Romance +179035,Immigration Game (2017),Action|Drama|Thriller +179037,High Moon (2014),Drama|Sci-Fi|Thriller +179039,No Blood No Tears (2002),Action|Drama +179041,Personal Services (1987),Comedy +179043,La seconda volta (1995),(no genres listed) +179045,For a Cop's Hide (1981),Action|Crime|Mystery|Romance|Thriller +179047,Burning the Future: Coal in America (2008),Documentary +179049,Shifting the Blame (2012),Drama +179051,The Sleeping Voice (2011),Drama|War +179053,2048: Nowhere to Run (2017),Sci-Fi|Thriller +179055,2036: Nexus Dawn (2017),Sci-Fi|Thriller +179057,#Lucky Number (2015),Comedy +179059,Asmaa (2011),Drama +179061,Second Origin (2015),Drama|Sci-Fi +179063,Everybody in Our Family (2012),Drama +179065,Scarred Hearts (2016),Drama +179067,Warring Clans (1963),Action +179069,Lovesick on Nana Street (1996),Comedy|Drama +179073,Male Hunt (1964),Comedy +179075,Doublecrossed (1991),Action|Drama +179077,Prison Heat (1993),Action|Crime|Drama|Thriller +179079,La Sombra del Caminante (2004),Comedy|Drama +179081,Couch (2003),Comedy +179083,Nussknacker und Mausekönig (2015),Children +179085,The Ritual (2017),Horror +179087,65_RedRoses (2009),Documentary +179089,The Hunt (2011),Action|Horror|Thriller +179091,Novitiate (2017),Drama +179093,The Stray (2017),Children|Drama +179095,Neben der Spur - Amnesie (2016),Crime|Thriller +179097,Zero Point (2014),Drama +179099,HHhH (2017),Action|Thriller +179101,Nocturne (2017),Horror +179103,Dying to Know: Ram Dass & Timothy Leary (2014),Documentary +179105,Shovel Buddies (2016),Drama +179107,The Legend of the Titanic (1999),Animation|Children +179109,April's Daughter (2017),Drama +179111,Montparnasse Bienvenüe (2017),(no genres listed) +179113,Close-Knit (2017),Children|Drama +179115,The Workshop (2017),(no genres listed) +179117,I Know My First Name Is Steven (1989),(no genres listed) +179119,The Death of Stalin (2017),Comedy +179121,Damage (2009),Action|Thriller +179127,The Music of Strangers: Yo-Yo Ma and the Silk Road Ensemble (2016),Documentary +179129,The Sound (2017),Horror|Mystery|Thriller +179131,The Devil by the Tail (1969),Comedy +179133,Loving Vincent (2017),Animation|Crime|Drama +179135,Blue Planet II (2017),Documentary +179137,Professor Marston & the Wonder Women (2017),(no genres listed) +179139,Man Divided (2017),Drama|Sci-Fi +179143,Leonard-Cushing Fight (1894),Documentary +179145,Une Femme Coquette (1955),Drama +179147,Imperial Japanese Dance (1894),(no genres listed) +179149,The Hornbacker-Murphy Fight (1894),(no genres listed) +179151,Band Drill (1894),Comedy +179153,The Little Vampire 3D (2017),Animation +179155,Racer and the Jailbird (2017),Crime|Drama +179157,The Death and Life of Marsha P. Johnson (2017),Documentary +179159,Triad Story (1990),Crime|Drama +179161,Lung Fung Restaurant (1990),(no genres listed) +179163,Unicorn Store (2017),Comedy|Drama|Fantasy +179165,Glenroy Brothers (Comic Boxing) (1894),Documentary +179167,Land of Smiles (2017),Adventure|Horror|Thriller +179169,¡Sufre mamón! (1987),Comedy +179171,Mahjong and the West (2014),Drama +179173,Rabbit of Seville (1950),Animation|Comedy +179175,6 Below: Miracle on the Mountain (2017),Drama|Thriller +179177,Reverse Angle (2009),Action|Drama|Mystery +179179,Delibal (2015),(no genres listed) +179181,The Hero (1972),Action +179183,Dragon Lee Vs. The 5 Brothers (1978),Action +179185,Bloodfisted Brothers (1978),Action +179187,Bruce Lee Fights Back from the Grave (1976),Action +179189,"Dragon Bruce Lee, Part II (1981)",(no genres listed) +179191,"Bruce, King of Kung Fu (1980)",Action +179193,Enter the Game of Death (1978),Action +179197,Picture of Beauty (2017),Drama|Romance +179199,Panteon Woods (2015),Horror +179201,Undecided: The Movie (2016),Comedy +179203,The Puppetoon Movie (1987),Animation|Children|Fantasy +179205,What's the Matter with Gerald? (2016),Comedy|Drama|Fantasy +179207,The Summer Is Gone (2016),Drama +179209,Desiree (2016),Crime|Drama|Thriller +179211,Christina P: Mother Inferior (2017),Comedy +179213,After the Fall (2014),Crime|Drama +179215,Siren (2013),Drama|Fantasy +179217,Occupants (2015),Horror|Sci-Fi|Thriller +179219,Cold Moon (2016),Crime|Drama|Horror|Mystery|Thriller +179221,Brawl in Cell Block 99 (2017),Action|Crime|Thriller +179223,The Fantasy Film Worlds of George Pal (1985),Documentary +179225,Mr. Long (2017),Drama +179227,Fray (2014),Drama +179231,The Climbers High (2008),Drama +179233,One Piece: Chopper's Kingdom on the Island of Strange Animals (2002),Action|Adventure|Animation +179235,The Unbroken (2009),Drama +179237,Love by Design (2014),Romance +179239,Artworks (2003),Crime|Drama|Romance +179241,American Gothic (2017),Horror|Thriller +179243,Meetings with Remarkable Men (1979),Drama +179245,Jupiter's Moon (2017),Drama|Sci-Fi +179247,Revenge (2017),Action|Thriller +179249,Marlina the Murderer in Four Acts (2017),Drama|Thriller +179251,To Kill God (2017),(no genres listed) +179253,Dancing Quietly (2017),Comedy|Drama +179255,The Duel of the Century (1981),Action +179257,Street Corner (1953),(no genres listed) +179259,Sleepy Eyes of Death 4: Sword of Seduction (1964),Action +179261,Sleepy Eyes of Death 12: Castle Menagerie (1969),Action|Drama +179263,Fidgety Bram (2012),Children|Comedy +179265,Siberians (1940),Adventure|Children +179267,The Big Brass Ring (1999),Drama|Thriller +179269,The Monolith Monsters (1957),Horror|Sci-Fi +179271,Sleepy Eyes of Death 9: Trail of Traps (1967),(no genres listed) +179273,Cheyenne Warrior (1994),Action|Western +179275,Happy End (2017),Drama +179277,Name Me (2014),Adventure|Drama +179279,Don Giovanni (1970),(no genres listed) +179281,Wrong Side Raju (2016),Drama|Thriller +179283,The Criminal Quartet (1989),Action|Adventure|Crime +179285,Tragedy Girls (2017),Comedy|Horror +179287,Breathe (2017),Drama +179289,Fashionista (2016),Drama|Mystery|Thriller +179291,The Land of Hope (2012),Drama +179293,November (2017),Drama|Fantasy|Romance +179295,My Friend Dahmer (2017),Crime|Drama|Horror|Thriller +179297,The Work (2017),Documentary +179299,Disney's Newsies the Broadway Musical (2017),Romance +179301,Salyut 7 (2017),(no genres listed) +179303,Rabbit (2017),Thriller +179305,The Man in the Shadows (2017),Drama|Horror|Thriller +179307,The Miner (2017),(no genres listed) +179309,Wuthering Heights (1953),Drama|Romance +179311,The Book of Birdie,(no genres listed) +179313,1974: La posesión de Altair (2016),Horror|Mystery +179315,Get My Gun (2017),Horror|Thriller +179317,Clementina,Drama|Horror +179321,The Very Edge (1963),Drama +179325,The Stronghold (2017),(no genres listed) +179327,The Last Days of Patton (1986),Drama|War +179329,Film Stars Don't Die in Liverpool (2017),Drama|Romance +179331,Only the Brave (2017),Drama +179333,Veronica (2017),Horror +179335,Emerald City (1988),Comedy|Drama +179337,Residue (2017),Action|Horror|Thriller +179339,Only God Sees Me (1998),Comedy|Romance +179341,Granny's Funeral (2012),Comedy +179343,The Man from the Future (2016),Comedy +179345,Arrhythmia (2017),Drama +179347,"I, Don Giovanni (2009)",Drama|Romance +179349,Rasputin (2011),(no genres listed) +179351,Sans rancune ! (2009),Comedy +179353,H2Oil (2009),Documentary +179355,Anneliese: The Exorcist Tapes (2011),Horror +179357,Hobbyhorse Revolution (2017),(no genres listed) +179359,Tunnel Vision (1995),Mystery|Thriller +179361,Chronesthesia (2016),(no genres listed) +179363,Interior (2014),Horror|Thriller +179365,A Girl and Her Gun (2015),(no genres listed) +179367,The Attacks Of 26-11 (2013),Crime|Drama|War +179369,Blossoms & Blood (2003),(no genres listed) +179371,The Child in Time (2017),Drama +179373,Sleepwalker (2017),Thriller +179375,Blood Money (2017),Horror|Thriller +179377,The Forest of the Lost Souls (2017),Drama|Horror +179379,My Brother Khosrow,Drama +179381,Budapest Noir (2017),Crime|Drama +179383,When Fortune Smiles (1990),Action|Comedy +179385,Starhops (1978),Comedy +179387,Never Say Die (2017),Comedy +179389,Chef (2017),Children|Comedy|Drama +179391,Detonator (2013),(no genres listed) +179393,You Are Alone (2005),Drama +179395,Judge and Jury (1997),Action|Horror +179397,Secret Superstar (2017),Drama +179399,Minutes Past Midnight (2016),Horror|Thriller +179401,Jumanji: Welcome to the Jungle (2017),Action|Adventure|Children +179403,Ryde (2017),Horror|Thriller +179405,Eastern Business (2016),(no genres listed) +179409,OtherLife (2017),Crime|Mystery|Sci-Fi +179411,Blade of the Immortal (2017),Action|Drama +179413,Island City (1994),Sci-Fi +179415,Wheelman (2017),Action|Thriller +179417,Patton Oswalt: Annihilation (2017),Comedy +179419,Shoes (1916),Drama +179421,The World's Most Beautiful Swindlers (1964),Comedy|Crime +179423,The Hillz (2004),Action|Comedy|Crime|Drama +179425,Dashavatar - Every era has a hero (2008),Animation +179427,Dane Cook: Troublemaker (2014),Comedy +179429,Saving Brinton (2017),Documentary +179431,A Love to Hide (2005),Drama +179433,"Our Friend, Martin (1999)",Animation|Children +179435,The Adventurers (2017),Action|Adventure|Crime|Drama +179437,Bad Match (2017),Horror|Thriller +179439,Dane Cook: Rough Around the Edges (2007),Comedy +179441,Cain's Cutthroats (1970),Action|Comedy|Drama|Western +179443,Tad Jones and the Secret of King Midas (2017),Adventure|Animation|Comedy +179445,Bambule (1969),Drama +179447,Revelation (1999),Action|Horror|Thriller +179449,Marie-Francine (2017),Comedy +179451,Saturday Night Live: The Best of Will Ferrell (2002),Comedy +179453,Saturday Night Live: The Best of Will Ferrell - Volume 2 (2004),Comedy +179455,Gas-s-s-s (1970),Comedy|Drama|Sci-Fi +179457,Tuning In (2008),Documentary +179461,Reconvergence (2012),Documentary|Drama +179463,The Collective Evolution III: The Shift (2014),Documentary|Drama +179475,Kymatica (2009),Documentary +179477,Planetary (2015),Documentary +179479,"Samadhi Part 1: Maya, the Illusion of the Self",Documentary +179481,Paradise or Oblivion (2012),Documentary +179483,"Doing time, Doing Vipassana",Documentary +179485,Ram Dass: Fierce Grace (2001),(no genres listed) +179489,The Living Matrix (2009),Documentary +179491,Mayhem (2017),Action|Horror +179493,Harmony (2015),Animation|Sci-Fi +179495,All I See Is You (2017),Drama|Thriller +179497,Boo 2! A Madea Halloween (2017),Comedy|Horror +179499,Arunachalam (1997),Action|Comedy|Drama +179501,Annamalai (1992),Drama|Romance +179503,Thillu Mullu (1981),Comedy|Romance +179505,Michael Madana Kamarajan (1990),Comedy +179507,Apoorva Sagodharargal (1989),Action|Comedy +179509,Dance Academy: The Movie (2017),Drama +179511,Emerald Green (2016),Adventure|Drama|Fantasy|Romance +179513,Lucky's Treasure (2017),Adventure|Children +179515,A Horse Tail (2015),Children|Drama|Romance +179517,The Horse Dancer (2017),Romance +179519,Spirit Riders (2015),Children +179521,Free Willy: Escape From Pirate's Cove (2010),Action|Adventure|Children|Drama +179523,Spectacular! (2009),Drama +179525,Gibby (2016),Children +179527,Annabelle Hooper and the Ghosts of Nantucket (2016),Children|Mystery +179529,The Reckoning (2015),Romance +179531,Apple of My Eye (2017),Drama +179533,Puppy Love (2012),Children|Comedy|Drama +179535,12 Dogs of Christmas: Great Puppy Rescue (2012),Children|Comedy +179537,A Change of Place (1994),Drama|Romance +179539,Karen Kingsbury's A Time to Dance (2016),Drama +179541,An Uncommon Grace (2017),Drama|Romance +179543,The Art of Us (2017),Comedy|Drama|Romance +179545,Der Froschkönig (2008),Children|Fantasy +179547,Die Gänsemagd (2009),Children|Fantasy +179549,Prinz Himmelblau und Fee Lupine (2016),Children|Fantasy|Mystery +179551,Der Prinz im Bärenfell (2015),Children|Fantasy +179553,Falling for Grace (2006),Comedy|Romance +179555,Cinderella (1960),(no genres listed) +179557,Operation Christmas (2016),Drama|Romance +179559,The Memory Book (2014),Drama|Romance +179561,A Dogwalker's Christmas Tale (2015),Comedy +179563,The Russell Girl (2008),Drama +179565,Love at First Bark (2017),Romance +179567,Change of Plans (2011),Children|Comedy|Drama +179569,Like Cats & Dogs (2017),Comedy|Romance +179571,Hard to Forget (1998),Drama|Mystery|Romance +179573,At the midnight hour (1995),Drama|Romance +179575,Sorority Nightmare (2016),Drama|Thriller +179577,Mommy I Didn't Do It (2017),Drama +179579,Sandra Brown's White Hot (2016),Drama|Mystery +179581,Love Blossoms (2017),Drama|Romance +179583,Love Locks (2017),Drama|Romance +179585,My Christmas Love (2016),Comedy|Romance +179587,A Dash of Love (2017),Romance +179589,Windstorm 2 (2015),Adventure|Children|Drama|Romance +179591,A Royal Winter (2017),Drama|Romance +179593,Passport to Paris (1999),Children|Comedy|Drama +179595,Pride and Prejudice (2003),Action|Adventure|Comedy|Romance +179597,Cindy (1978),Drama +179599,Getting There (2002),Children +179601,Ciske the Rat (1984),Drama +179603,A Boyfriend for Christmas (2004),Children|Comedy|Drama|Romance +179605,Cinderella (1965),Fantasy|Romance +179607,A Moving Romance (2017),Drama|Romance +179609,Love on Ice (2017),Romance +179611,The Perfect Catch (2017),Drama +179613,Summer in the Vineyard (2017),Romance +179615,"Eat, Play, Love (2017)",Comedy|Romance +179617,Dornröschen (2009),Children|Fantasy +179619,König Drosselbart (2008),Fantasy +179621,Frau Holle (2008),Children +179623,Die zertanzten Schuhe (2011),Children|Fantasy +179625,Die Sterntaler (2011),Children|Fantasy +179627,Die kluge Bauerntochter (2009),Children|Fantasy +179629,Tischlein deck dich (2008),Children|Fantasy +179631,The girl With the Sulfur (2013),Children|Fantasy +179633,Das tapfere Schneiderlein (2008),Children|Fantasy +179635,Sechse kommen durch die ganze Welt (2014),Children|Fantasy +179637,Harvest Love (2017),Comedy|Romance +179639,Die Bremer Stadtmusikanten (2009),Children|Fantasy +179641,Der Meisterdieb (2010),Children|Fantasy +179643,Brüderchen und Schwesterchen (2008),Children|Fantasy +179645,Scents and Sensibility (2011),Drama|Romance +179647,The Young Karl Marx (2017),Drama +179649,Horse Crazy (2001),Children|Drama +179651,Dear Dead Delilah (1972),Horror +179653,Bwoy (2016),Drama +179655,The Blues: Another Story of France (2016),Documentary +179657,All I Can (2011),Documentary +179659,Attack of La Niña (2011),Documentary +179661,Days of My Youth (2014),Action|Documentary +179663,Pretty Faces - The Story of a Skier Girl (2014),Documentary +179665,Daughters (1998),Drama|Thriller +179667,Going for Broke,Documentary +179669,Abducted: The Carlina White Story (2012),Drama|Mystery +179671,A Tale of Samurai Cooking - A True Love Story (2013),Drama +179673,The Last Script: Remembering Luis Buñuel (2008),Documentary +179675,Comedy Central Roast of Hugh Hefner (2001),Comedy +179677,The Secret Policeman's Ball (1979),Comedy +179679,The Secret Life of Brian (2007),Documentary +179681,Spaghettiman (2017),Action|Comedy|Crime +179683,Reservoir Cats (2011),Comedy|Crime|Drama +179685,Keep My Grave Open (1976),Horror +179687,Scream (1981),Horror|Mystery +179689,Chervonyy (2017),Drama +179691,Ley Lines (1999),Action|Thriller +179693,A Family Portrait (2009),Animation +179695,Found Footage 3D (2016),Horror +179697,Meri Pyaari Bindu (2017),Drama|Romance +179701,One of Us (2017),Documentary +179703,Their Eyes Were Watching God (2005),Drama|Romance +179705,Pinocchio 3000 (2004),Animation|Children|Sci-Fi +179707,Art Bastard (2015),Documentary +179709,Wonder Wheel (2017),Drama +179711,Les Profs 2 (2015),Comedy +179713,Ponies (2012),Drama +179715,Km 31-2 (2016),Horror|Mystery +179717,Skeleton Coast (1988),Action|Thriller +179719,Sisters of the Groom (2017),(no genres listed) +179721,Belle and the Beast (2007),Drama|Romance +179723,Rapunzel (2009),(no genres listed) +179725,Princess (2008),Children|Fantasy +179727,William & Catherine: A Royal Romance (2011),Drama|Romance +179729,Prince Charming (2001),Adventure|Children|Comedy|Fantasy|Romance|Sci-Fi +179731,Sound of Christmas (2016),Drama +179733,The Prince & Me 4: The Elephant Adventure (2010),Comedy|Romance +179737,New Crime City (1994),Action|Sci-Fi +179739,Left to Die (2012),Drama +179741,Mitch Albom's For One More Day (2007),Drama +179743,Mister Roberts (1984),Comedy +179745,Wolfguy - Enraged Lycanthrope (1975),Action|Horror +179747,Crimea (2017),Action|Drama +179749,Creep 2 (2017),Comedy|Horror +179751,Sexy Durga (2017),Drama +179753,Sweater Girls (1978),Comedy +179755,Blind Dates (2013),Comedy|Drama|Romance +179757,Пасека (2002),Comedy|Thriller +179759,The Lost Letter (1972),Comedy|Fantasy +179761,Treasure Island (1988),Adventure|Animation|Comedy +179763,DRIB (2017),(no genres listed) +179765,Child Bride of Short Creek (1981),(no genres listed) +179767,Barakah Meets Barakah (2016),(no genres listed) +179769,Rey (2017),(no genres listed) +179771,Invasion from Inner Earth (1974),Drama|Sci-Fi +179773,Chance At Romance (2013),Comedy|Romance +179775,Rootin' Tootin' Rhythm (1937),Western +179779,A Taxi Driver (2017),Action|Drama +179781,Elijah (2008),Drama +179783,Let There Be Light (2017),(no genres listed) +179785,Thank You for Your Service (2017),Drama|War +179789,The Divine Tragedies (2015),Drama|Horror|Thriller +179791,Handcuffs (1969),Drama +179793,The Long Farewell (1971),Drama +179795,Joan Didion: The Center Will Not Hold (2017),Documentary +179797,It Was Fifty Years Ago Today! The Beatles: Sgt. Pepper & Beyond (2017),Documentary +179799,Quiet Days in Clichy (1990),Drama +179803,The Adult Swim Golf Classic (2016),Comedy +179805,Totally for Teens (2009),Comedy +179807,Generation Zero (2010),Documentary +179809,The Heyday of the Insensitive Bastards (2016),Comedy|Drama +179811,Last Flag Flying (2017),Comedy|Drama +179813,LBJ (2017),Drama +179815,"Roman J. Israel, Esq. (2017)",Drama|Thriller +179817,Darkest Hour (2017),Drama|War +179819,Star Wars: The Last Jedi (2017),Action|Adventure|Fantasy|Sci-Fi +179821,Acts of Vengeance (2017),Action +179823,Matilda (2017),(no genres listed) +179825,M.F.A. (2017),Thriller +179827,I Am Not a Witch (2017),Drama +179829,She Makes Comics (2014),Documentary +179831,Terrarium (2003),Sci-Fi +179833,Spielberg On Spielberg (2007),(no genres listed) +179835,The Man Who Lost Himself (2005),Drama +179837,Cup of my Blood (2005),Horror +179839,Control Factor (2003),Action|Sci-Fi|Thriller +179841,Canada Russia '72 (2006),Documentary +179843,Camp Hollywood (2004),(no genres listed) +179845,Brackenmore (2017),(no genres listed) +179847,The Future Perfect (2016),Comedy|Drama +179849,It Lives in the Attic (2016),Thriller +179851,Stingray (1978),Action +179853,Sedmero krkavců (2015),Children|Fantasy +179855,Silence of the Sea (2004),Drama|Romance|War +179857,Life with Judy Garland: Me and My Shadows (2001),Drama +179859,Badlands of Kain (2016),Horror|Mystery|Thriller +179861,Big Bang (2007),Action|Comedy|Drama +179863,Radius (2017),Sci-Fi|Thriller +179867,Live-In Fear (2014),Horror +179869,Wolf Mother (2016),(no genres listed) +179871,The Conduit (2016),Horror|Thriller +179873,Sex Guaranteed (2017),Comedy +179875,The Sex Trip (2017),Comedy|Fantasy +179877,Shortwave (2016),Sci-Fi|Thriller +179879,The Crimson Ghost (1946),Action|Adventure|Crime +179881,Downsizing (2017),Comedy|Drama|Sci-Fi +179883,Deadly Sorority (2017),Thriller +179885,Faces of Death V (1995),Documentary|Horror +179889,Insyriated (2017),Drama +179891,Misfortune (2016),Crime|Drama|Thriller +179893,Die Rache der Wanderhure (2012),Drama +179895,Hats Off to Christmas! (2013),Children|Drama|Romance +179897,The Little Match Girl (1928),Drama|Fantasy +179899,Gift From Above (2003),Comedy|Crime|Drama +179901,Mark Felt: The Man Who Brought Down the White House (2017),Drama|Thriller +179903,Charismata (2017),Horror +179905,Tepepa (1969),Western +179907,My Hero (1990),(no genres listed) +179909,Gremlin (2017),Horror +179911,Harvest Lake (2016),Horror +179913,The Drowning (2016),Drama|Thriller +179915,1945 (2017),Drama +179917,Living Dangerously (1987),Comedy +179919,Taipei Story (1985),Drama +179921,Innocent Saturday (2011),Drama +179923,Man and a Baby (2017),Comedy +179925,The Unknown Soldier (2017),Drama|War +179927,So B. It (2016),(no genres listed) +179929,Me late chocolate (2013),Comedy|Romance +179931,The Banned Woman (1997),Comedy|Drama|Romance +179933,The Candidate (2011),Drama|Horror|Sci-Fi +179935,The Pavement (2015),(no genres listed) +179937,The Hangman (1964),Animation +179939,The Stoolie (1972),Comedy|Crime +179941,C'est la vie! (2017),Comedy +179943,Enlighten Us: The Rise and Fall of James Arthur Ray (2016),Documentary +179945,Dr. Feelgood (2016),Documentary +179947,Yogi and the Invasion of the Space Bears (1988),Animation|Children +179949,Targeted: Exposing the Gun Control Agenda (2016),Documentary +179951,Art of Conflict (2012),Documentary +179953,A Bad Moms Christmas (2017),Comedy +179955,L.A. Times (2017),(no genres listed) +179957,Take My Advice: The Ann and Abby Story (1999),Comedy|Drama +179959,Ruin (2012),Animation|Sci-Fi +179961,Broken Down Film (1985),Action|Animation|Comedy|Romance|Western +179963,Memory (1964),Animation|Comedy +179965,Mermaid (1964),Animation +179967,Jumping (1984),Animation|Fantasy +179969,Sunny (2013),(no genres listed) +179971,Thought of You (2010),(no genres listed) +179973,One Day (2012),(no genres listed) +179977,In the Fade (2017),Drama +179979,Heroes Above All (2017),Adventure|Children +179981,The Veil (2017),Action|Adventure|Sci-Fi +179983,Werk ohne Autor (2017),Drama +179985,Romeo Is Bleeding (2017),Documentary +179987,Gushing Prayer: A 15-Year-Old Prostitute (1971),(no genres listed) +179989,Voice Over (2011),Drama|Sci-Fi +179991,Rotor (2015),Drama|Sci-Fi|Thriller +179993,We Were Not Made For This World (2014),(no genres listed) +179995,Copy Shop (2001),(no genres listed) +179997,Myosis (2014),Animation|Drama|Sci-Fi +179999,Trois petits points (2010),Animation +180001,The Cat with Hands (2001),Animation|Fantasy|Horror|Mystery +180003,Oru Burus (2012),(no genres listed) +180005,A Noite da Virada (2014),(no genres listed) +180007,The Smell of Burning Ants (1995),Documentary +180009,Searchers 2.0 (2007),Comedy +180013,Wee Sing in Sillyville (1989),Children +180017,Spyder (2017),Action|Thriller +180019,The Centrifuge Brain Project (2012),Comedy|Sci-Fi +180021,One Last Dive (2013),Horror +180023,Wojtek: The Bear That Went to War (2011),Documentary +180025,Cripple in Love (1975),Drama +180027,Duo (2015),Animation|Drama|Thriller +180029,Rose (2011),Action|Animation|Sci-Fi +180031,The Shape of Water (2017),Adventure|Drama|Fantasy +180033,The Leisure Seeker (2017),Drama +180035,Villaviciosa de al lado (2016),Comedy|Drama|Romance +180037,24 Hours to Live (2017),Thriller +180039,Most Beautiful Island (2017),Drama|Thriller +180041,Holy Camp! (2017),Comedy|Romance +180043,Suck Me Shakespeer 3 (2017),Comedy +180045,Molly's Game (2017),Drama +180047,"Runaway, Runaway (1971)",Drama +180049,Hideous! (1997),(no genres listed) +180051,The Geisha (1983),Drama|Romance|War +180053,Gutboy: A Badtime Story,(no genres listed) +180055,Crestfallen (2013),Drama|Thriller +180057,Copacabana (2010),Comedy +180059,The Unmatchable Match (1990),Action|Crime +180061,Haunted Mansion (2015),Horror|Thriller +180063,Wasteland No. 1: Ardent Verdant (2017),Animation +180065,Three Summers (2017),Comedy +180067,Louis Theroux: Extreme Love - Dementia (2012),Documentary +180069,Love and Goodbye and Hawaii (2017),(no genres listed) +180071,Grazing the Sky (2013),Documentary +180073,The Fury (2016),Comedy|Drama +180075,The Connected Universe (2016),Documentary +180077,The Lifestyle (1999),(no genres listed) +180079,A Thousand Years of Good Prayers (2007),Drama|Romance +180081,Oro (2017),Drama +180083,Geographically Desirable (2015),(no genres listed) +180087,The Prophecy: Uprising (2005),Action|Fantasy|Horror|Thriller +180089,Showgirls 2: Penny's from Heaven (2011),Comedy|Drama|Romance|Thriller +180091,Pokémon the Movie: I Choose You! (2017),Adventure|Animation|Children|Comedy|Drama|Fantasy +180093,Singularity (2017),Sci-Fi +180095,Wonder (2017),Drama +180097,Christmas Crime Story (2017),(no genres listed) +180099,The Big Bad Fox and Other Tales (2017),Animation|Children +180101,Benoît Brisefer : Les taxis rouges (2014),Comedy +180103,The New Adventures of Aladin (2015),Comedy +180105,The Incredible Sarah (1976),(no genres listed) +180107,The Grammar of Happiness (2012),Documentary +180109,Człowiek z magicznym pudełkiem (2017),Romance|Sci-Fi +180111,David Copperfield (1993),Animation|Children +180113,Rise of the Footsoldier Part II (2015),Crime +180115,La luna vale un millón (1945),(no genres listed) +180117,Sesso nero (1980),Drama +180119,"My Country, My Country (2006)",Documentary +180121,The Life-Changing Magic of Tidying Up (2013),Drama +180123,Intimate Stories (2002),Comedy|Drama +180125,Patagonia (2010),Adventure|Drama +180127,Rebellion in Patagonia (1974),Drama +180129,Heidi (2015),Comedy +180131,Dolly the Sheep Was Evil and Died Early (2015),Adventure|Comedy|Romance|Sci-Fi +180133,Big Sonia (2017),Documentary +180135,Romance of a Horsethief (1971),Adventure|Drama +180137,See You Up There (2017),Comedy|Drama +180139,Nothing Left to Do but Cry (1984),Comedy +180141,Family Flaw (2002),Comedy +180143,I Promessi sposi - Secondo il Trio (1989),(no genres listed) +180145,Without Borders (2015),Comedy|Romance +180147,An Unnamed Star (1978),Comedy|Drama|Romance +180149,About Love (2015),Comedy|Drama|Romance +180151,Kikoriki: Team Invincible (2011),Animation +180153,"Happy March 8th, Men! (2014)",Comedy|Romance +180155,The Paris Opera (2017),Documentary +180157,Et les mistrals gagnants (2017),Documentary +180159,Hard Cash (2002),Action|Crime|Thriller +180161,Castello Cavalcanti (2013),Comedy +180163,Stanley Pickle (2010),(no genres listed) +180165,Chinti (2012),Animation +180167,Overtime (2004),(no genres listed) +180169,Daguerréotypes (1976),Documentary +180171,The Incredible Mrs. Ritchie (2004),Children|Drama +180173,Hating Alison Ashley (2005),Comedy|Drama +180175,Kickoff,(no genres listed) +180177,Writer's Block (2013),(no genres listed) +180179,An Object at Rest (2015),(no genres listed) +180181,Umbra (2010),Adventure|Animation|Drama|Fantasy +180183,The Love Butcher (1975),Horror +180185,Comic Book Heaven (2014),Documentary +180187,Rinco's Restaurant (2010),Drama|Fantasy +180191,Bless the Woman (2003),Drama|Romance +180193,Podstrochnik (2009),(no genres listed) +180195,What a wonderful game (1995),(no genres listed) +180197,Charlemagne (1993),Adventure|Drama +180199,S.M.A.R.T. Chase,(no genres listed) +180201,Muay Thai Fighter (2007),Action|Thriller +180203,Los bingueros (1979),Comedy +180205,Dracula (1931),Horror +180207,Gone in a Heartbeat (1996),Drama|Thriller +180209,Life Is Beautiful (2013),Animation|Comedy|Drama +180211,Ghostwatch (1992),Horror +180213,Manners of Dying (2004),(no genres listed) +180215,Talkin' Dirty After Dark (1991),Comedy +180217,Looks and Smiles (1981),Drama +180219,Hallo Bungalow (2015),Comedy +180221,Walk with Me (2017),Documentary +180223,Sexology (2016),Documentary +180225,In the Face of Evil: Reagan's War in Word and Deed (2004),Documentary +180227,God: Serengeti (2017),Comedy +180229,Terror at Red Wolf Inn (1972),Comedy|Horror +180231,Daddy's Home 2 (2017),Comedy|Drama +180233,Avvai Shanmugi (1996),Comedy +180235,Panchathantiram (2002),Action|Comedy +180237,Thiruvilayadal (1965),Fantasy +180239,Sethurama Iyer CBI (2004),Thriller +180241,What Lola Wants (2015),Drama|Western +180243,Rejection (2009),Drama|Sci-Fi|Thriller +180245,Ittefaq: It happened one night (2017),Mystery|Thriller +180247,Where's Willie? (1978),Children|Comedy +180249,"No Date, No Signature (2017)",Drama +180251,Geo-Disaster (2017),Action|Sci-Fi +180253,Gabriel and the Mountain (2017),Comedy|Drama +180255,She Loves Me Not (2013),Comedy|Drama|Romance +180257,Evil Bong II: King Bong (2009),Comedy|Horror +180259,Totem (1999),Horror +180261,The Bookshop (2017),Drama|Romance +180263,The Shining (1997),Drama|Horror|Thriller +180265,Jim & Andy: The Great Beyond (2017),Documentary +180267,Blame (2017),Drama +180269,Hotel Salvation (2016),Comedy|Drama +180273,Liberation: Direction of the Main Blow (1971),War +180275,Liberation: Battle For Berlin (1972),Drama|War +180277,Liberation: The Last Assault (1972),War +180279,Liberation: The Break Through (1970),War +180281,Liberation: The Fire Bulge (1970),Drama|War +180283,Catch the Wind (2017),Drama +180285,The Hitchhikers (1972),Action|Crime|Drama +180289,Burnt by the Sun 2: Citadel (2011),Drama|War +180291,Journey to the West: The Demons Strike Back (2017),Action|Adventure|Fantasy +180293,The Damned Don't Cry (1950),Action|Drama|Romance +180295,Dirty (2016),Thriller +180297,The Disaster Artist (2017),Comedy|Drama +180299,Please Kill Mr. Kinski (1999),(no genres listed) +180301,"Cock Fight, No. 2 (1894)",(no genres listed) +180303,In the Mouth of the Wolf (1988),Action|Drama|War +180305,Paraiso (2010),Drama +180307,Viaje a Tombuctú (2014),Drama +180309,My Pet Dinosaur (2017),Action|Adventure|Children +180311,Poilus (2016),(no genres listed) +180313,Dead West (2010),Action|Horror|Western +180315,Barracuda (1978),Horror|Thriller +180317,The Scarlet Claw (1944),Crime|Mystery|Thriller +180319,Evil Bong 3: The Wrath of Bong (2011),Comedy|Horror|Sci-Fi +180321,Ragdoll (1999),Fantasy|Horror +180323,The Magnificent Scoundrels (1991),Comedy +180325,"I Love You, Daddy (2017)",Comedy|Drama +180327,Fala Comigo (2016),Drama +180331,My Heroes Have Always Been Cowboys (1991),(no genres listed) +180333,Velaikaran (1987),Action|Drama +180335,Manithan (1987),Drama +180337,20 Fingers (2004),Drama +180339,37 Uses for a Dead Sheep (2006),Documentary +180341,A Bloody Aria (2006),Action|Drama|Horror|Thriller +180343,A Connecticut Yankee in King Arthur's Court (1949),Children|Comedy|Fantasy +180345,A Crude Awakening (2006),Documentary +180347,The Ages Of Lulu (1990),Drama +180351,All in Good Time (2012),Comedy|Romance +180353,American Interior (2014),Documentary +180355,Angel on the Right (2002),Comedy|Drama +180357,Anita and Me (2002),Children|Comedy|Drama +180359,Armaan (2003),Drama|Romance +180361,Year of the Nail (2007),Drama|Romance +180363,Bad Behavior (1993),Comedy|Drama +180365,Band Waggon (1940),Comedy +180367,Hot Summer Nights (2017),Drama +180369,Beach Ball (1965),Comedy +180371,Because of Him (1946),Comedy|Romance +180373,Being AP (2015),Documentary +180377,Beyond Hatred (2005),Documentary +180379,Bhumika (1977),Drama +180381,Biddy (1983),Drama +180383,Bitter Sweet (1933),Drama|Romance +180385,Bombay (1995),Drama|Romance +180387,Born and Bred (2006),Drama|Romance +180389,Broadway Gondolier (1935),Comedy|Romance +180391,Building Jerusalem (2015),Documentary +180393,Tower of Terror (1997),Children|Comedy|Horror|Thriller +180395,Stand Up (2008),Animation +180397,The Walrus (2014),(no genres listed) +180399,The Dewberry Empire (2013),(no genres listed) +180401,Träfracken (1966),Drama|Thriller +180403,On the Bride’s Side (2014),Documentary +180405,One Ticket Please (2017),Documentary +180407,Hostile Advances: The Kerry Ellison Story (1996),(no genres listed) +180409,1984 Revolution (2011),Documentary +180411,The Sleep Curse (2017),Horror|Thriller +180413,Kreatura (2017),(no genres listed) +180415,Amok (2017),Crime|Thriller +180417,The Substitute (2015),Fantasy|Horror|Thriller +180419,C'est La Vie (1990),Comedy|Drama +180421,Caravan (1946),Adventure|Drama|Romance +180425,Carry On Sergeant (1958),Comedy|War +180427,Thumper (2017),Crime|Drama|Thriller +180429,Bitch (2017),Children|Comedy|Drama|Thriller +180431,Totem (2017),Horror +180435,Jeepers Creepers 3 (2017),Horror|Mystery|Thriller +180437,Dead Shack (2017),Comedy|Horror +180439,Double Date (2017),Comedy|Horror +180441,Still/Born (2017),Horror|Thriller +180443,Victor Crowley (2017),Comedy|Horror +180445,I Remember You (2017),Drama|Horror|Mystery|Thriller +180447,The Strange Ones (2017),Drama|Thriller +180449,Snowflake (2017),Action|Comedy|Crime|Fantasy|Thriller +180451,Sicilian Ghost Story (2017),Drama|Mystery +180453,Lowlife (2017),Action|Crime|Drama|Thriller +180455,The End?,Horror +180457,Freddy Eddy (2016),Thriller +180461,3rd Night,Horror +180463,Mountain Fever,Thriller +180465,Escape Room (2017),Horror +180467,L'île de Black Mór (2004),Adventure|Animation|Children +180469,I'll Just Live in Bando (2017),Animation|Comedy|Drama +180471,The Venerable W. (2017),Documentary +180473,Barbara (2017),(no genres listed) +180475,Comment j'ai détesté les maths (2013),Documentary|Mystery +180477,"Everybody He Is Nice, Everybody He Is Beautiful (1972)",Comedy +180479,This Is Our Land (2017),Drama +180481,Black Hollow Cage (2017),Drama|Horror|Sci-Fi|Thriller +180483,Le potager de mon grand-père (2016),Documentary +180485,Date with a Kidnapper (1976),Crime|Drama|Romance +180487,"Glenroy Bros., No. 2 (1894)",Comedy +180489,Fire Rescue Scene (1894),Documentary|Drama +180491,Evils of the Night (1985),Horror|Sci-Fi +180493,Pacto de silencio (1949),(no genres listed) +180495,Rojo y Negro (1942),Drama +180497,The Post (2017),Drama|Thriller +180499,Eput the Movie (2016),Documentary +180501,Spirit Hunters (2012),Thriller +180503,Pferd und Reiter Springen Über ein Hindernis (1888),Documentary +180505,Catch Us If You Can (1965),Comedy +180507,Celia (1989),Drama|Fantasy|Horror +180511,Christ Stopped at Eboli (1979),Drama|War +180513,Christie Malry's Own Double-Entry (2000),Thriller +180515,Come on George! (1939),Comedy +180517,Copacabana (1947),Comedy +180519,Cousin Bobby (1992),Documentary +180523,Danzón (1991),Drama +180525,Deep in My Heart (1954),Comedy|Drama +180527,Diameter of the Bomb (2005),Documentary +180531,Invisible (2017),(no genres listed) +180533,Summer of '92 (2015),Drama +180535,Chinese Tea-Set (1999),Adventure|Comedy +180537,Barbie: Dolphin Magic (2017),Adventure|Animation|Children|Fantasy +180539,Bullet Head (2017),(no genres listed) +180543,The Last Note (2017),(no genres listed) +180545,Stone Years (1985),Drama +180547,The Wild Ride (1960),Drama +180549,Le mystère de Fatima (2017),Documentary +180553,Trauma,Horror +180555,Mom and Dad (2017),Horror|Thriller +180557,The Good Postman (2016),Documentary +180559,Winter Brothers (2017),Drama +180561,The Thirsty Dead (1974),Horror +180563,Nightmare on the 13th Floor (1990),Horror|Mystery|Thriller +180565,Starbucking (2006),Documentary +180567,Check Point (2017),Action|Thriller|War +180569,The Star (2017),Adventure|Animation|Comedy +180571,The Mayor (2017),Drama +180573,Riverdance: Live from Geneva (2001),Documentary +180575,Salim (2014),Action|Thriller +180577,Pandiya Naadu (2013),Action|Romance +180579,Naan Mahan Alla (2010),Crime|Drama|Romance +180581,4 Horror Tales - February 29 (2006),Horror +180583,The Statue (1971),Comedy +180585,The Man Who Came to Dinner (2000),(no genres listed) +180587,The Wife (2017),Drama +180589,Leaning Into the Wind: Andy Goldsworthy (2017),Documentary +180591,Jane (2017),Documentary +180593,The Dawning (1988),Drama|Thriller +180595,Dollar Mambo (1993),(no genres listed) +180597,Don Quixote (1973) (1973),(no genres listed) +180599,Down to Earth (1947),Comedy|Fantasy|Romance +180601,Dum (2003),Action|Drama|Romance +180603,Everybody Does It (1949),Comedy +180607,Whatever (1999),Comedy|Drama +180611,Flame (1975),Drama +180615,Four Corners (2014),Crime|Thriller +180617,Francis Goes to the Races (1951),Comedy|Fantasy +180619,Diaz: Don't Clean Up This Blood (2012),Drama +180621,Gaiety George (1946),Drama +180623,George White's Scandals (1945),Comedy +180627,Going Places (1938),Comedy|Romance +180629,Golden Balls (1993),Comedy|Drama +180631,"Good Morning, Boys! (1937)",Comedy +180633,Good-Time Girl (1948),Crime|Drama +180635,Half a Sixpence (1967),Drama|Romance +180637,Happy Landing (1938),Comedy +180639,Hard to Get (1938),Comedy|Romance +180641,Hers to Hold (1943),Drama +180643,Hibiscus Town (1986),Drama|Romance +180645,His Butler's Sister (1943),(no genres listed) +180647,Hitting a New High (1937),Comedy|Romance +180649,The Dark Side of Tomorrow (1970),Drama|Romance +180651,Planeat (2010),Documentary +180653,Vocal Parallels (2006),(no genres listed) +180655,Evil Bong 420 (2015),Comedy|Horror +180659,A Call to Remember (1997),Drama +180663,"Goodbye, Boys! (1964)",Drama +180665,The Man Who Lost His Shadow (1992),(no genres listed) +180667,Hong Kong 1941 (1984),(no genres listed) +180669,The Horse Thief (1986),Drama +180673,I Live For Love (1935),Comedy|Romance +180675,I Love a Man in Uniform (1993),Thriller +180677,Child of Satan (2016),Action|Drama|Horror|Mystery|Thriller +180679,I Married an Angel (1942),Comedy|Fantasy|Romance +180681,I Saw Ben Barka Get Killed (2005),Action|Thriller +180683,I Wonder Who's Kissing Her Now (1947),(no genres listed) +180685,Before the Fall (2016),Comedy|Drama|Romance +180687,I'll See You in My Dreams (1951),Comedy|Drama +180689,I've Heard the Mermaids Singing (1987),Comedy|Drama|Romance +180693,Impulse (1990),Thriller +180695,Corbett and Courtney Before the Kinetograph (1894),(no genres listed) +180697,"In Casablanca, the Angels Don't Fly (2004)",Comedy|Drama +180699,Irish Eyes Are Smiling (1944),(no genres listed) +180701,It Had to Be You (1947),Comedy|Fantasy|Romance +180707,Jamboree! (1957),Romance +180711,Joy of Madness (2004),Documentary +180713,Utopia Blues (2000),(no genres listed) +180715,Kelly + Victor (2013),Drama|Romance +180717,King of Burlesque (1936),Drama +180719,La madre muerta (1993),Drama +180723,Latino Bar (1992),(no genres listed) +180725,Laughing Gravy (1931),Comedy +180727,Le Chignon d'Olga (2002),Comedy|Drama|Romance +180729,Leon The Pig Farmer (1993),Comedy +180731,The Devils (2002),Drama +180733,Three Waltzes (1938),Romance +180735,Hello Again (2017),Drama|Romance +180737,A Christmas Prince (2017),Romance +180743,Let's Face It (1943),Comedy +180745,Project: Metalbeast (1995),Horror|Sci-Fi +180747,Little Old New York (1940),Comedy|Drama|Romance +180749,"Live a Little, Love a Little (1968)",Comedy|Romance +180753,Look For The Silver Lining (1949),Drama|Romance +180757,Cafard (2015),Animation|Drama|War +180759,Louisiana Purchase (1941),Comedy +180763,LoveTrue (2016),Documentary +180765,Lucky Me (1954),Comedy|Romance +180769,Malcolm (1986),Action|Comedy +180771,Mambo (1954),(no genres listed) +180773,Mame (1974),Comedy +180775,Mardi Gras (1958),(no genres listed) +180777,Die Frauen von Ravensbrück (2005),Documentary +180783,Minor Mishaps (2002),Drama +180785,Monsieur N. (2003),Drama|Thriller +180787,Moon Over Miami (1941),Comedy|Romance +180791,Rare and Unseen: The Beatles (2008),Documentary +180793,Evil Bong: High 5 (2016),Comedy|Horror +180795,Mr. Calzaghe (2015),Documentary +180799,My Dream Is Yours (1949),Comedy|Romance +180801,My Lucky Star (1938),Comedy|Romance +180803,Nationale 7 (2000),Comedy|Drama +180805,Naughty But Nice (1939),Comedy +180807,No Limit (1935),Comedy +180811,"Oh, You Beautiful Doll (1949)",Drama +180813,On Your Toes (1939),Comedy +180815,On an Island with You (1948),Comedy|Romance +180817,On The Avenue (1937),Comedy|Romance +180821,One in a Million (1936),Comedy|Romance +180825,Pecking Order (2017),Documentary +180827,Persons Unknown (1996),Action|Thriller +180829,Pin Up Girl (1944),Romance +180833,The Humanity Bureau (2017),Action|Sci-Fi +180835,The Lost Wife of Robert Durst (2017),Crime|Drama|Thriller +180837,Tokyo Project (2017),Drama|Romance +180839,Operation Rogue (2014),Action +180841,Interlude In Prague (2017),(no genres listed) +180843,Schreckenstein Castle (2016),Adventure|Children|Comedy +180845,Phool Aur Patthar (1966),(no genres listed) +180847,Puttin' on the Ritz (1930),(no genres listed) +180849,Rebecca's Daughters (1992),Comedy|Drama +180851,Renaldo and Clara (1978),Drama +180853,Reveille with Beverly (1943),Comedy|Romance +180855,Rigoletto,Drama|Romance +180857,Il mistero di Lovecraft - Road to L. (2005),Horror +180859,Bruce Springsteen: In His Own Words (2016),Documentary +180861,Ceasefire (2017),Drama +180863,Nebraska Supersonic,Comedy +180865,Mission Stardust (1967),Sci-Fi +180867,Raumpatrouille Orion - Rücksturz ins Kino (2003),Sci-Fi +180869,FPS: First Person Shooter (2015),Horror +180871,Rocky Road to Dublin (1968),Documentary +180873,Romuald et Juliette (1989),Comedy +180875,A Room and a Half (2009),Drama +180877,Rose Marie (1954),Adventure|Comedy +180879,Red Kiss (1985),Comedy|Drama +180881,Sally in Our Alley (1931),Comedy|Drama|Romance +180883,"Sally, Irene and Mary (1938)",Comedy|Romance +180885,Satya (1998),Action|Crime|Drama|Thriller +180887,Second Fiddle (1939),Comedy +180889,Secret Wedding (1989),Drama +180891,Seventh Heaven (1937),Drama|Romance +180893,"Shake, Rattle and Rock! (1956)",(no genres listed) +180895,Ship Ahoy (1942),Comedy|Romance +180897,Side Streets (1998),(no genres listed) +180899,Siesta (1987),Drama|Mystery|Thriller +180901,Silence Between Two Thoughts (2003),Drama +180903,Silence...We're Rolling (2001),(no genres listed) +180905,Sing As We Go (1934),(no genres listed) +180907,"Sing, Baby Sing (1936)",(no genres listed) +180909,Sombrero (1953),Romance +180911,Somebody Loves Me (1952),Romance +180913,Son of Man (2006),Drama +180915,Specter of the Rose (1946),Drama|Thriller +180917,Spring In Park Lane (1948),Comedy +180919,Starfish (2016),Drama +180921,Start Cheering (1938),Comedy +180923,Static (1985),(no genres listed) +180927,Swanee River (1939),Drama|Thriller +180929,Sweet Adeline (1934),Romance +180931,Sweet Rosie O'Grady (1943),(no genres listed) +180933,Sweetheart of the Campus (1941),(no genres listed) +180935,Thanks a Million (1935),Comedy|Romance +180939,That Certain Age (1938),Comedy +180941,The Amazing Mrs. Holliday (1943),Comedy|Drama +180943,The Beggar's Opera (1953),Crime +180945,The Belle of New York (1952),Comedy|Romance +180947,The Best Things In Life Are Free (1956),(no genres listed) +180949,The British Guide to Showing Off (2011),Documentary +180951,The Brothers (1947),Drama +180953,The Carer (2016),Comedy +180955,Yakuza Graveyard (1976),Action +180957,Eric Clapton: Life in 12 Bars (2017),Documentary +180959,The Bribe of Heaven (2016),Comedy +180961,Death of a Fisherman (2015),Crime|Drama|Mystery +180963,Metamorphoses (2014),Drama|Fantasy +180965,The Healer (2017),Children|Comedy|Drama +180967,Dr. Caligari (1989),Comedy|Fantasy|Horror|Sci-Fi +180969,The Door with Seven Locks (1940),Horror|Mystery|Thriller +180971,The Meateater (1979),Horror +180973,Memoria (2016),(no genres listed) +180975,Agadah (2017),Adventure|Drama|Fantasy +180977,City of Glass (1998),Drama|Romance +180979,Long Time Running (2017),Documentary +180981,Look & See: A Portrait of Wendell Berry (2017),Documentary +180983,Halloween: 25 Years of Terror (2006),Documentary|Horror +180985,The Greatest Showman (2017),Drama +180987,Ferdinand (2017),Animation|Children|Comedy +180989,Alien Planet (2005),Animation|Documentary|Sci-Fi +180993,Paris by Night (1988),(no genres listed) +180995,The Cat and the Fiddle (1934),Comedy|Drama|Romance +180997,The Confession: Living the War on Terror (2016),Documentary +180999,Cowboy from Brooklyn (1938),Comedy|Western +181003,Duchess Of Idaho (1950),Comedy|Romance +181007,The Eagle (1925),Action|Drama|Romance +181009,The Farmer Takes a Wife (1953),Comedy|Romance +181011,The First Film (2015),(no genres listed) +181013,The Fool (1990),Drama +181015,The Getting of Wisdom (1977),Drama +181017,The Girl Most Likely (1958),Comedy +181019,The Goldwyn Follies (1938),Romance +181021,The Great American Broadcast (1941),Comedy|Romance +181023,The Great Hip Hop Hoax (2013),Comedy|Documentary +181025,The Hard Stop (2015),Documentary +181027,The House in Nightmare Park (1973),Comedy|Horror +181029,The Kid from Spain (1932),Comedy|Romance +181031,The Last Days of Chez Nous (1992),Comedy|Drama|Romance +181033,The Maverick Queen (1956),Western +181035,Youngistaan (2014),Drama|Romance +181037,Maybe Tomorrow (2016),Comedy|Romance +181039,The Music Teacher (1988),(no genres listed) +181041,The Night of the Sunflowers (2006),Crime|Drama|Thriller +181043,The Phantom President (1932),Comedy +181045,Verna (2017),Drama|Thriller +181047,Villain (2017),Action|Crime|Thriller +181049,Seven Hills of Rome (1958),Drama|Romance +181051,Dulhan Hum Le Jayenge (2000),(no genres listed) +181055,The Stork Club (1945),Comedy +181057,The Tit and the Moon (1994),Comedy|Drama +181059,The Tommy Steele Story (1957),Drama +181061,The Unfinished Dance (1947),Drama +181063,The Final Prophecies (2010),Documentary +181065,Jack Whitehall: At Large (2017),Comedy +181067,"¡Bruja, más que bruja! (1976)",Comedy|Crime|Drama|Romance +181069,Birthright: A War Story (2017),Documentary +181071,A Bagful of Fleas (1962),(no genres listed) +181073,Mariah Carey's All I Want for Christmas Is You (2017),Animation|Children +181075,The Man Who Invented Christmas (2017),Drama +181077,Almost Friends (2017),Comedy|Drama +181079,Tumhari Sulu (2017),Comedy|Drama +181081,"Strawberry Shortcake: Berry, Merry Christmas (2003)",Animation|Children +181085,They Shall Have Music (1939),Children|Drama +181089,This Is Not a Love Song (2002),Children|Mystery|Thriller +181091,Love and Fear (1988),Drama +181093,Thrill of a Romance (1945),Comedy|Romance +181095,Pains of Autumn (2009),(no genres listed) +181097,Fear on Film: Inside 'The Fog' (1980),(no genres listed) +181099,A Tree of Palme (2002),Adventure|Animation|Drama|Fantasy|Romance +181101,1982 (2013),Drama +181103,Matrix of Evil (2003),Documentary +181105,Black Water (2017),Horror|Thriller +181107,El precio de la libertad (2011),Drama|Thriller +181111,Theeran Adhigaram Ondru (2017),Action|Thriller +181113,Angelica (2015),Drama|Horror|Thriller +181115,Hangman (2017),Crime|Mystery|Thriller +181117,Arrows Of The Thunder Dragon (2014),(no genres listed) +181119,Nick Off Duty (2016),Action|Comedy|Thriller +181121,A Line Across the Sky (2015),Adventure|Documentary +181123,Slices of Life (2010),Horror|Sci-Fi|Thriller +181125,Jack Reed: A Search for Justice (1994),Crime|Drama|Mystery +181127,Preacherman (1971),Comedy|Drama +181131,"Juliette, or Key of Dreams (1951)",Drama +181133,Whirlpool of Fate (1925),Drama|Romance +181135,A Bad Idea Gone Wrong (2017),Comedy +181137,Rodney Carrington: Here Comes The Truth (2017),Comedy +181139,Lynne Koplitz: Hormonal Beast (2017),Comedy +181141,Trophy (2017),Documentary +181143,Till the Clouds Roll By (1946),(no genres listed) +181147,Traces of a Dragon: Jackie Chan & His Lost Family (2003),Documentary +181149,Transatlantic Merry-Go-Round (1934),Comedy|Mystery +181151,Trouble in Store (1953),Comedy +181153,Twist Around The Clock (1961),(no genres listed) +181155,Gilbert (2017),Documentary +181157,Paradise (2016),Drama +181159,U-Carmen (2005),Drama +181163,Ultranova (2005),(no genres listed) +181169,Untold Scandal (2003),Drama +181171,Versus: The Life and Films of Ken Loach (2016),Documentary +181175,War Requiem (1989),Drama|War +181179,Waveriders (2008),Documentary|Thriller +181181,When My Baby Smiles At Me (1948),(no genres listed) +181183,When the Boys Meet the Girls (1965),(no genres listed) +181187,Wonderful Life (1964),Comedy|Romance +181189,Grandmother (1989),Children|Drama +181191,You Can't Have Everything (1937),Comedy|Romance +181193,You're a Sweetheart (1937),Romance +181195,You're in the Army Now (1941),Comedy +181197,Zubeidaa (2001),Drama|Romance +181201,An Ordinary Execution (2010),Drama +181203,200 Degrees (2017),Thriller +181205,Control (2017),Action|Crime|Drama +181207,Closed For Winter (2009),Drama +181209,Judah Friedlander: America Is the Greatest Country in the United States (2017),Comedy +181211,Vaxxed: From Cover-Up to Catastrophe (2016),Documentary +181213,Aztec Rex (2007),Action|Adventure +181215,The Hatred (2017),Horror +181217,Doctor Who: The Return Of Doctor Mysterio (2016),Adventure|Children|Drama|Sci-Fi +181219,Принцесса и Людоед (1977),Animation +181221,About the Little Red Riding Hood (1977),Adventure|Children|Fantasy +181223,1945: The Savage Peace (2015),Documentary +181225,The Whispering Star (2015),Drama|Sci-Fi +181227,The Grown-Ups (2016),Documentary +181229,Bad Blood: The Movie (2017),Horror +181231,The Medusa Touch (1978),Horror|Sci-Fi|Thriller +181233,Genghis Cohn (1994),Comedy +181235,Hey Arnold! The Jungle Movie (2017),Adventure|Animation|Comedy +181239,Alaska (2015),Drama +181241,The Woman and the Stranger (1985),Drama|War +181243,One Summer of Happiness (1951),Drama|Romance +181245,Toilet - Ek Prem Katha (2017),Comedy|Drama +181247,Yaman (2017),Action|Thriller +181249,Autumn Blood (2013),Drama|Thriller +181251,Gol Maal (1979),Comedy +181255,Hartenstrijd (2016),Comedy|Romance +181257,Cherry Pop (2017),Comedy +181259,The Flight of the Innocent (1993),Drama|Thriller +181261,Charleston Parade (1927),Sci-Fi +181263,Talon Falls (2017),Horror +181265,Motor Psycho (1965),Crime|Thriller +181267,Perfectos desconocidos (2017),Comedy|Drama +181269,Love Wind Love Song (1999),Drama|Romance +181271,Play It Loud: The Story of Marshall (2014),Documentary +181273,Les frères Pétard (1986),Comedy +181275,A Horrible Woman (2017),Drama +181277,Furious (2017),Fantasy +181279,Tutto quello che vuoi (2017),Comedy|Drama +181281,Married Bachelor (1941),Comedy +181283,Mniejsze zło (2009),(no genres listed) +181285,Planet Single (2016),Comedy|Romance +181287,Warsaw by Night (2015),Comedy|Drama|Romance +181289,Blind Date (2010),Comedy|Romance +181291,Secret Wars (2014),Crime|Drama|Mystery|Thriller +181293,Bokser (2012),Drama +181295,Mysteries of the Unseen World (2013),Documentary +181297,Okul (2004),(no genres listed) +181299,Jacquou the Rebel (2007),Adventure|Drama +181301,Sand Dollars (2015),Drama +181303,Horror Europa with Mark Gatiss (2012),Documentary|Horror +181305,Oszukane (2013),Drama +181307,The Holy Quaternity (2012),Comedy +181309,Być jak Kazimierz Deyna (2012),Comedy +181311,George the Hedgehog (2011),Animation|Comedy +181313,Warszawa 1935 (2013),Animation|Documentary +181315,Phantom Thread (2017),Drama|Romance +181317,Last Minute (2013),Comedy +181319,Sep (2013),Action|Thriller +181321,Gladiators of Rome (2012),Animation +181323,Podejrzani zakochani (2013),Comedy +181325,Five Across the Eyes (2006),Horror +181327,Benjamin Sniddlegrass and The Cauldron of Penguins (2011),(no genres listed) +181329,Lucky (2017),Drama +181331,Scream Bloody Murder (1973),Horror +181333,My Father's Bike (2012),Comedy|Drama +181335,Od pełni do pełni (2012),Comedy +181337,Manhunt (2012),Drama|Thriller|War +181339,The Fear of God: 25 Years of The Exorcist (1998),Documentary +181341,Jack Falls (2011),Crime +181343,Komisarz Blond i Oko sprawiedliwości (2012),Action|Comedy|Crime +181345,Benda Bilili! (2010),Documentary +181347,Alien Evolution (2001),Documentary +181349,Darkness Rising (2017),Horror +181351,Fear of Falling (2011),(no genres listed) +181353,Hans Kloss. Stawka większa niż śmierć (2012),Action|War +181355,Robot Chicken: Star Wars Episode II (2008),Comedy|Sci-Fi +181357,Robot Chicken: Star Wars Episode III (2010),Comedy|Sci-Fi +181359,Polish Roulette (2012),Action|Comedy +181361,Ctrl Z (2007),(no genres listed) +181363,Ciacho (2010),Comedy +181365,Monty Python: Parrot Sketch Not Included (1989),Comedy +181367,The Umbilical Brothers: Speedmouse - Live from the Sydney Opera House (2004),Comedy +181369,The Mole (2011),Drama|Thriller +181371,Uwikłanie (2011),Crime|Thriller +181373,Beat the World (2011),Drama +181375,The Winner (2011),(no genres listed) +181377,Erratum (2010),(no genres listed) +181379,Los numeros (2011),Comedy|Crime +181381,Made in Poland (2010),(no genres listed) +181383,Śniadanie do łóżka (2010),Comedy +181385,Weekend (2011),Comedy|Drama|Romance +181387,Zwerbowana miłość (2010),Action|Drama +181389,The Christening (2010),Drama +181391,Holy Business (2010),Comedy +181393,Venice (2010),Drama|Romance +181395,Hel (2009),(no genres listed) +181397,Mystification (2010),(no genres listed) +181399,Little Rose (2010),Drama|Romance +181401,Francuski Numer (2006),(no genres listed) +181403,Richie (2007),Comedy +181405,Obey Giant (2017),Documentary +181407,Prosta historia o miłości,(no genres listed) +181409,"Felix, Net i Nika oraz teoretycznie możliwa katastrofa",(no genres listed) +181411,Piksele (2009),(no genres listed) +181413,Too Funny to Fail: The Life and Death of The Dana Carvey Show (2017),(no genres listed) +181415,Zero (2010),Animation|Drama +181419,Sweet Jane (1998),Drama +181421,"Careful, He Might Hear You (1983)",Children|Drama +181423,A Girl in Black (1956),Drama|Romance +181425,A Knife for the Ladies (1974),Horror|Western +181431,Simba (1955),Drama|Romance +181433,The Kitchen Toto (1988),Drama +181435,Inside John Lennon - Unauthorized,(no genres listed) +181437,I Killed John Lennon (2005),Documentary +181439,Married by Christmas (2016),Comedy|Romance +181441,On Wings of Eagles (2017),Drama +181443,Eternal Family (1997),Animation|Comedy +181445,Juleblod (2017),Horror|Thriller +181447,Dead Man Tells His Own Tale (2016),Comedy|Fantasy|Horror +181449,Mansfield 66/67 (2017),(no genres listed) +181451,Isabella (2006),Drama +181453,Euthanizer (2017),Drama|Thriller +181455,The Shadow of Chikara (1977),Horror|Western +181459,Animals (2017),Drama|Mystery|Thriller +181461,Untitled (2017),Documentary +181463,Equilibrium (2017),(no genres listed) +181465,Dead Again in Tombstone (2017),Western +181467,Ward No. 6 (2009),Drama +181469,Altered Minds (2014),Drama|Thriller +181473,Rendel (2017),Action|Crime|Fantasy +181475,Dismissed (2017),Horror|Thriller +181477,The Roswell Incident (1995),(no genres listed) +181479,The Night Clerk (2011),Drama|Thriller +181481,"Happy Mother's Day, Love George (1973)",Drama|Mystery|Thriller +181483,Flesh and Blood (2017),Drama +181485,Rockshow (1980),Documentary +181487,Killing American Style (1991),Action|Crime|Thriller +181489,"Good Night, Nurse! (1918)",Comedy +181491,Little Gray Neck (1948),Animation|Children +181493,Tale About Czar Pyotr Arranging Arap's Wedding (1976),Comedy|Romance +181495,The Baron Against the Demons (2006),Action|Adventure|Fantasy +181497,Laughter and Grief by the White Sea (1988),Animation|Comedy|Drama +181499,Smetto quando voglio: Ad honorem (2017),Action|Comedy +181501,Golden Exits (2017),Drama +181503,Letters to Santa 2 (2015),Comedy|Romance +181505,"If You're Not In The Obit, Eat Breakfast (2017)",Documentary +181507,From Nowhere (2017),Drama +181509,Clarity (2014),Drama +181511,The Burglar (2016),Drama +181513,Es por tu bien (2017),Comedy +181515,Pop Aye (2017),Drama +181517,ReLIFE (2017),Comedy|Drama|Romance +181519,Satan War (1979),Horror +181521,Manchester: 100 Days After The Attack (2017),Documentary +181523,Karski & The Lords of Humanity (2015),Documentary +181525,Das Himmler Projekt (2000),Documentary +181527,Girl Gets Girl (2015),Comedy +181529,Angels in the Snow (2015),Children|Drama +181531,The Sentinel (1992),Thriller +181533,Alike (2015),(no genres listed) +181535,Ivanov (2009),Comedy|Drama|Romance +181537,The French Detective (1975),Crime|Drama|Thriller +181539,Still Life (2005),Horror|Sci-Fi +181541,The Worthy (2016),Action +181543,Son of Sofia (2017),(no genres listed) +181545,Voyeur (2017),Documentary +181547,House of the Witch (2017),Horror +181549,The Monk (1972),Drama +181551,"Point, Point, Comma... (1972)",Children|Comedy|Romance +181553,Ferrari: Race to Immortality (2017),Documentary +181555,Slamma Jamma (2017),Drama +181559,The Good Cop (2004),Action|Comedy +181563,Bambi (2013),Documentary +181565,Alone (2017),Fantasy|Sci-Fi +181567,La Colle (2017),Comedy +181569,High Desert Kill (1989),Action|Drama|Horror|Sci-Fi +181571,The Witching (2016),Horror +181573,Strange Blood (2015),Horror|Sci-Fi +181575,The 25th Reich (2012),Action|Adventure|Fantasy|Sci-Fi +181577,The Ax Fight (1975),Documentary +181579,August Falls (2017),Drama|Mystery|Thriller +181581,Godless (2015),Children|Drama +181583,Braguino (2017),Documentary +181585,Plug Love (2017),Crime|Drama|Romance +181587,Broadcasting Christmas (2016),Drama|Romance +181589,Revelation: Dawn of Global Government (2016),Documentary +181591,Red Nail Polish (2016),(no genres listed) +181593,Breath (2016),Drama|Fantasy +181595,Sara and Ayda (2017),Children|Drama +181597,The Buffalo (2015),Crime +181599,The Devil's Woods (2015),Horror +181601,Olaf's Frozen Adventure (2017),Adventure|Animation|Children|Comedy|Fantasy +181603,Forbidden Games: The Justin Fashanu Story (2017),Documentary +181605,Miami (2017),Drama +181607,Laerte-se (2017),Documentary +181609,Linnan juhlat (2017),Comedy|Drama +181611,Victoria's Secret Fashion Show 2016 (2016),Documentary +181613,Victoria's Secret Fashion Show 2017 (2017),(no genres listed) +181617,The Victoria's Secret Fashion Show 2014 (2014),Documentary +181619,The Victoria's Secret Fashion Show 2013 (2013),Documentary +181621,The Victoria's Secret Fashion Show 2012 (2012),(no genres listed) +181623,The Victoria's Secret Fashion Show 2011 (2011),(no genres listed) +181625,The Pee Wee 3D: The Winter That Changed My Life (2012),Children|Comedy|Drama +181627,Alien Invasion: S.U.M.1 (2017),Sci-Fi +181629,Prisoner X (2016),Sci-Fi|Thriller +181631,Bruno & Boots: Go Jump in the Pool (2016),Children +181633,Bruno & Boots: This Can't Be Happening at Macdonald Hall (2017),Children +181635,Eating Out: The Open Weekend (2012),Comedy|Romance +181637,Frangi,(no genres listed) +181641,Valsa para Bruno Stein (2007),(no genres listed) +181643,Not of This Earth (1957),Horror|Sci-Fi +181645,Not of This Earth (1995),Horror|Sci-Fi +181647,Dear Other Self (2017),Comedy +181649,100 Poems for Stella (2017),Romance +181651,The Front Line (2009),Comedy|Drama +181653,Titanic (1943),Action|Drama +181655,Detour (2017),Thriller +181659,Craig Ferguson: Tickle Fight (2017),Comedy +181661,Killer's Delight (1978),Drama|Horror|Thriller +181663,Everything Beautiful Is Far Away (2017),Drama|Sci-Fi +181665,Småstad (2017),Drama +181667,The Legend of 420 (2017),(no genres listed) +181669,Inoperable,Horror +181671,The Breadwinner (2017),Animation|Drama|War +181673,Hard Makeup (2014),Drama +181675,Apparition (2014),(no genres listed) +181677,Trial on the Street (2009),Drama +181679,Dancing in the Dust (2003),Drama +181681,marg mahi (2016),Drama +181683,We Will Not Get Used To (2016),(no genres listed) +181685,به نام پدر,(no genres listed) +181687,The Wednesday (2016),Children|Crime|Drama +181689,The Exclusive Path (2014),Comedy|Crime|Drama +181691,The Snowman (1995),Comedy|Drama +181693,The Red Ribbon (1999),(no genres listed) +181695,No Men Allowed (2011),Comedy +181697,The Hidden Half (2001),Drama +181699,Redhat and Cousin (1994),Comedy +181701,Asabani nistam! (2014),(no genres listed) +181703,The Tenants (1986),Comedy|Drama +181705,National Theatre Live: Hamlet (2015),Drama|Romance +181707,The Phantom of the Opera (1998),Drama|Horror|Romance +181709,Spy Games (1999),Action|Comedy|Romance +181711,Akaton mies (1983),Comedy +181713,The Electric Grandmother (1982),Children|Sci-Fi +181715,The Cross and the Switchblade (1970),Drama +181719,Serving in Silence: The Margarethe Cammermeyer Story (1995),(no genres listed) +181721,Late for Dinner (1991),Drama|Romance|Sci-Fi +181723,Blue Ice (1992),Action|Mystery|Thriller +181725,Eat the Rich (1987),Action|Comedy|Crime +181727,Nice Girls Don't Explode (1987),Comedy|Romance|Sci-Fi +181729,Unearthly Stranger (1963),Sci-Fi +181731,Pass the Ammo (1988),Comedy +181733,Journey to the Center of Time (1967),Sci-Fi +181735,Time Travelers (1976),Sci-Fi +181737,Martians Go Home (1990),Comedy|Sci-Fi +181739,The Appearing (2013),Horror|Mystery|Thriller +181741,The Face of Fu Manchu (1965),Crime +181743,Mama Dracula (1980),Comedy|Horror|Thriller +181745,Plump Fiction (1998),Comedy|Crime +181747,I Do... I Did! (2009),Comedy|Romance +181749,Hobgoblins 2 (2009),Horror|Sci-Fi +181751,Lagaan: Once Upon a Time in India (2001),Adventure|Drama|Romance +181753,The Making of 'Jurassic Park' (1995),Documentary +181755,Troops (1997),Comedy|Sci-Fi +181757,Louis Theroux: Louis and the Nazis (2003),(no genres listed) +181759,Mutiny on the Buses (1972),Comedy +181761,Ben and Me (1953),Animation +181763,Frankenstein General Hospital (1988),Comedy|Horror +181765,Forbidden Love: The Unashamed Stories of Lesbian Lives (1992),Documentary +181767,The Trial of Donald Duck (1948),Animation +181769,Donald's Vacation (1940),Animation +181771,Uncle Donald's Ants (1952),Animation|Children +181773,Drip Dippy Donald (1948),Animation|Children|Comedy +181775,The Riveter (1940),Animation +181777,Mr. Duck Steps Out (1940),Animation +181779,Three Little Bops (1957),Animation|Children|Comedy +181781,Teachers are People (1952),Animation +181783,Mickey's Delayed Date (1947),Animation|Comedy +181785,The Truth About Mother Goose (1957),Animation +181787,Chips Ahoy (1956),Animation +181789,Up a Tree (1955),Animation|Children|Comedy +181791,Grin and Bear It (1954),Animation|Children +181793,Dragon Around (1954),Animation|Children +181795,A Cowboy Needs A Horse (1956),Animation +181797,Spare the Rod (1954),Animation|Children|Comedy +181799,No Hunting (1955),Animation +181801,Donald and the Wheel (1961),Animation +181803,In the Bag (1956),Animation +181805,The Flying Squirrel (1954),Animation +181807,Bearly Asleep (1955),Animation +181809,Beezy Bear (1955),Animation +181811,Hooked Bear (1956),Animation +181813,The Story of Anyburg U.S.A. (1957),Animation +181815,How to Have an Accident at Work (1959),Animation +181817,Jack and Old Mac (1956),Animation +181819,Social Lion (1954),Animation +181821,How to Have an Accident in the Home (1956),Animation +181823,I'm No Fool Having Fun (1956),Animation +181825,You and Your Sense of Touch (1955),Animation +181827,You and Your Food (1955),Animation +181829,You the Human Animal (1955),Animation +181831,I'm No Fool with a Bicycle (1956),Animation +181833,I'm No Fool with Fire (1955),Animation +181835,You and your Senses of Smell and Taste (1955),Animation +181837,They're Off (1948),Animation +181839,Corn Chips (1951),Animation|Children +181841,Donald's Dream Voice (1948),Animation +181843,The New Neighbor (1953),Animation +181845,Crazy Over Daisy (1950),Animation +181847,Don's Fountain of Youth (1953),Animation +181849,Working for Peanuts (1953),Animation|Children +181851,Grand Canyonscope (1954),Animation +181853,Father's Day Off (1953),Animation +181855,Hello Aloha (1952),(no genres listed) +181857,The Lone Chipmunks (1954),Animation +181859,Two Chips And A Miss (1952),Animation +181861,Let's Stick Together (1952),Animation +181863,Plutopia (1951),Animation|Children|Comedy +181865,Canvas Back Duck (1953),Animation +181867,Dude Duck (1951),Animation +181869,Donald's Diary (1954),(no genres listed) +181871,Sea Salts (1949),Animation +181873,Two Weeks Vacation (1952),Animation +181875,How to Be a Detective (1952),Animation +181877,Winter Storage (1949),Animation +181879,Rugged Bear (1953),Animation +181881,Bee At The Beach (1950),Animation +181883,Sheep Dog (1949),Animation +181885,All in a Nutshell (1949),Animation +181887,Trailer Horn (1950),Animation +181889,Chicken in the Rough (1951),Animation|Children +181891,Slide Donald Slide (1949),Animation|Children|Comedy +181893,Hold That Pose (1950),Animation|Comedy +181895,The Simple Things (1953),Animation|Children|Comedy +181897,Lucky Number (1951),Animation +181899,Camp Dog (1950),(no genres listed) +181901,Pluto's Sweater (1949),Animation +181903,Three for Breakfast (1948),Animation +181905,Honey Harvester (1949),Animation +181907,Primitive Pluto (1950),Animation +181909,Pluto's Party (1952),Animation +181911,The Greener Yard (1949),Animation +181913,Get Rich Quick (1951),Animation +181915,Pluto's Heart Throb (1950),Animation +181917,Pluto's Purchase (1948),Animation +181919,Cold Storage (1951),Animation|Children|Comedy +181921,Pluto and the Gopher (1950),Animation|Children +181923,"Hook, Lion and Sinker (1950)",Animation +181925,Mickey and the Beanstalk (1947),Adventure|Animation|Fantasy +181927,Chip an' Dale (1947),Animation|Children +181929,Donald's Double Trouble (1946),Animation +181931,Dumbell of the Yukon (1946),Animation +181933,Blame It on the Samba (1948),(no genres listed) +181935,Canine Casanova (1945),Animation +181937,Clown of the Jungle (1947),Animation +181939,Donald's Dilemma (1947),Animation +181941,Donald's Crime (1945),Animation +181943,Old Sequoia (1945),Animation +181945,Wet Paint (1946),Animation|Children +181947,The Clock Watcher (1945),Animation +181949,The Pelican and the Snipe (1944),Animation +181951,All the Cats Join In (1946),Animation +181953,Crazy With The Heat (1947),Animation +181955,Soup's On (1948),Animation +181957,Lighthouse Keeping (1946),Animation +181959,Sleepy Time Donald (1947),Animation|Children|Comedy +181961,Duck Pimples (1945),Animation +181963,Inferior Decorator (1948),Animation +181965,"Rosa la Rose, Public Girl (1986)",Drama +181967,The New Janitor (1914),Comedy +181969,Getting Acquainted (1914),Comedy +181971,Mabel's Strange Predicament (1914),Comedy +181973,Those Love Pangs (1914),Comedy +181975,A Busy Day (1914),Comedy +181977,The Face on the Barroom Floor (1914),Comedy +181979,The Fatal Mallet (1914),Comedy +181981,"Cruel, Cruel Love (1914)",Comedy +181983,Dough and Dynamite (1914),Comedy +181985,His Favorite Pastime (1914),Comedy +181987,White Roses (1943),Drama|Romance +181989,Holiday on the Buses (1973),Comedy +181991,Recovery (2007),Drama +181993,Trombone Trouble (1944),Animation +181995,Old MacDonald Duck (1941),Animation +181997,Donald's Off Day (1944),Animation +181999,Mickey's Birthday Party (1942),Animation|Children|Comedy +182001,The Plastics Inventor (1944),Animation +182003,A Good Time for a Dime (1941),Animation +182005,Donald's Garden (1942),Animation +182007,Donald's Tire Trouble (1943),Animation +182009,The Nifty Nineties (1941),Animation|Children|Comedy +182011,Bellboy Donald (1942),Animation +182013,Donald's Gold Mine (1942),Animation +182015,Early to Bed (1941),Animation +182017,Figaro and Cleo (1943),Animation|Children +182019,Commando Duck (1944),Animation +182021,Symphony Hour (1942),Animation|Children|Comedy +182023,Canine Caddy (1941),Animation +182025,Donald Duck and the Gorilla (1944),Animation +182027,Californy 'Er Bust (1945),Animation +182029,Bootle Beetle (1947),Animation +182031,Canine Patrol (1945),Animation +182033,The Purloined Pup (1946),Animation +182035,Pluto's Kid Brother (1946),Animation +182037,Tea for Two Hundred (1948),Animation|Children|Comedy +182039,Daddy Duck (1948),Animation +182041,Wide Open Spaces (1947),Animation +182043,Straight Shooters (1947),Animation +182045,Dog Watch (1945),Animation +182047,Mickey Down Under (1948),Animation|Children +182049,Bath Day (1946),Animation +182051,A Knight for a Day (1946),Animation +182053,No Sail (1945),Animation +182055,Cured Duck (1945),Animation +182057,Mail Dog (1947),Animation +182059,Billposters (1940),Animation +182061,Donald's Dog Laundry (1940),Animation +182063,Fire Chief (1940),Animation +182065,Beach Picnic (1939),Animation +182067,Officer Duck (1939),Animation +182069,Window Cleaners (1940),Animation|Children +182071,Donald's Happy Birthday (1949),Animation +182073,Donald's Lucky Day (1939),Animation +182075,Chef Donald (1941),Animation +182077,Pluto's Dream House (1940),Animation|Children +182079,Donald's Ostrich (1937),Animation +182081,Modern Inventions (1937),Animation|Children +182083,Health for the Americas: The Unseen Enemy (1945),Animation|Documentary +182085,7 Wise Dwarfs (1941),Animation +182087,Pluto at the Zoo (1942),Animation +182089,Pluto Junior (1942),Animation +182091,Private Pluto (1943),Animation +182093,Pluto and the Armadillo (1943),Animation +182095,Springtime for Pluto (1944),Animation +182097,Lake Titicaca (1942),(no genres listed) +182099,Timber (1941),Animation +182101,The Flying Jalopy (1943),Animation +182103,Contrary Condor (1944),Animation +182105,Fall Out - Fall In (1943),Animation +182107,Donald's Camera (1941),Animation +182109,Moth and the Flame (1938),Animation +182111,Merbabies (1938),Animation +182113,"Wynken, Blynken and Nod (1938)",Animation +182115,The Practical Pig (1939),Animation +182117,Mother Goose Goes Hollywood (1938),Animation +182119,The Barnyard Concert (1930),Animation +182121,Little Black Sambo (1935),(no genres listed) +182123,Polar Trappers (1938),Animation +182125,Donald's Snow Fight (1942),Animation +182127,Newman Laugh-O-Grams (1921),Animation|Comedy +182129,The Four Musicians of Bremen (1922),Animation +182131,Don Donald (1937),Animation +182133,Mickey and the Seal (1948),Animation|Children|Comedy +182135,Little Red Riding Hood (1922),Animation|Children|Comedy +182137,Peter and the Wolf (1946),Animation|Children +182139,The Pet Store (1933),Animation +182141,The Grocery Boy (1932),Animation +182143,Goofy's Glider (1940),Animation|Children|Comedy +182145,Mickey in Arabia (1932),Animation +182147,Camping Out (1934),Animation +182149,Pantry Pirate (1940),Animation +182151,Musical Farmer (1932),Animation +182153,Donald's Cousin Gus (1939),Animation +182155,Donald's Penguin (1939),Animation +182157,The Autograph Hound (1939),Animation +182159,Peculiar Penguins (1934),Animation +182161,Bugs in Love (1932),Animation +182163,Cock o' the Walk (1935),Animation +182165,The Robber Kitten (1935),Animation +182167,Birds in the Spring (1933),Animation|Comedy +182169,The China Shop (1934),Animation +182171,Father Noah's Ark (1933),Animation +182173,Water Babies (1935),Animation +182175,The Cookie Carnival (1935),Animation +182177,Toby Tortoise Returns (1936),Animation +182179,Old King Cole (1933),Animation|Children +182181,King Neptune (1932),Animation +182183,The Country Cousin (1936),Animation +182185,Elmer Elephant (1936),Animation +182187,Broken Toys (1935),Animation +182189,The Pied Piper (1933),Animation|Children +182191,The Wise Little Hen (1934),Animation +182193,The Golden Touch (1935),Animation +182195,The Goddess of Spring (1934),Animation +182197,The Night Before Christmas (1933),Animation +182199,Santa's Workshop (1932),Animation +182201,More Kittens (1936),Animation +182203,Woodland Café (1937),Animation +182205,Mother Pluto (1936),Animation +182207,Farmyard Symphony (1938),Animation +182209,Cannibal Capers (1930),Animation +182211,Hell's Bells (1929),Animation +182213,The Fox Hunt (1931),Animation +182215,The Busy Beavers (1931),Animation +182217,Playful Pan (1930),Animation +182219,The Clock Store (1931),Animation +182221,The Spider and the Fly (1931),Animation +182223,Mother Goose Melodies (1931),Animation +182225,Birds of a Feather (1931),Animation +182227,Egyptian Melodies (1931),Animation +182229,The China Plate (1931),Animation +182231,Lullaby Land (1933),Animation +182233,The Bird Store (1932),Animation +182235,The Bears and Bees (1932),Animation|Children|Comedy +182237,Just Dogs (1932),Animation +182239,The Grasshopper and the Ants (1934),Animation +182241,Arctic Antics (1930),Animation +182243,The Best of All Worlds (2017),Drama +182245,Autumn (1930),Animation +182247,Monkey Melodies (1930),Animation +182249,Night (1930),Animation +182251,Summer (1930),Animation +182253,Midnight in a Toy Shop (1930),Animation +182255,The Merry Dwarfs (1929),Animation +182257,Frolicking Fish (1930),Animation +182259,Winter (1930),Animation +182261,Donald Gets Drafted (1942),Animation +182263,Jungle Jitters (1938),Animation +182265,Pigs in a Polka (1943),Animation|Children|Comedy +182267,Caught in a Cabaret (1914),Comedy +182269,Coal Black and de Sebben Dwarfs (1943),Animation|Comedy +182271,Goldilocks and the Jivin' Bears (1944),Animation|Comedy +182273,Tin Pan Alley Cats (1943),Animation +182275,Sunday Go to Meetin' Time (1936),(no genres listed) +182277,The Isle of Pingo Pongo (1938),Animation +182279,Uncle Tom's Bungalow (1937),(no genres listed) +182281,Angel Puss (1944),Animation +182283,Clean Pastures (1937),Animation|Comedy +182285,All This and Rabbit Stew (1941),Animation|Comedy +182287,Porky in Egypt (1938),Animation|Children|Comedy +182289,Page Miss Glory (1936),Animation|Children|Comedy +182291,Elmer's Candid Camera (1940),Animation +182293,Hare-um Scare-um (1939),Animation|Children|Comedy +182295,Prest-O Change-O (1939),Animation|Children|Comedy +182297,Porky in Wackyland (1938),Animation|Comedy|Fantasy +182299,Porky's Hare Hunt (1938),Animation|Children|Comedy +182301,Tortoise Beats Hare (1941),Animation|Children|Comedy +182303,Hittin' the Trail for Hallelujah Land (1931),Animation|Comedy +182305,El Terrible Toreador (1929),Animation +182307,Funny Little Bunnies (1934),Animation +182309,Springtime (1929),Animation|Children|Comedy +182311,Akallinen mies (1986),(no genres listed) +182313,On the Buses (1971),Comedy +182317,All The Labor: The Story of The Gourds (2013),(no genres listed) +182319,The Tribes of Palos Verdes (2017),Drama +182323,Mum's Guest (Mehman-e Maman) (2004),(no genres listed) +182325,The Jihadis Next Door (2016),Documentary +182327,The Resurrection of a Bastard (2013),Drama +182329,The Long Summer of Theory (2017),(no genres listed) +182331,Parkoló (2015),Drama +182333,Millionen (2014),(no genres listed) +182335,Safari (2016),Documentary +182337,Cinétracts (1968),(no genres listed) +182339,Zokkomon (2011),Sci-Fi +182341,Just Getting Started (2017),Action|Comedy +182343,For Ahkeem (2017),(no genres listed) +182345,Hands of a Murderer (1990),Action|Adventure|Mystery|Thriller +182347,Hollow in the Land (2017),Drama|Thriller +182349,.hack//Beyond the World (2012),Action|Animation|Sci-Fi +182351,Fidelity (2000),Drama +182353,Satan's Slaves (2017),Horror +182355,Station Six-Sahara (1962),Drama +182357,Danger Route (1967),Action|Drama|Thriller +182359,El Camino Christmas (2017),Comedy +182361,Time Rush (2016),Action +182363,A Film Like Any Other (1968),Drama +182365,Grind (2014),(no genres listed) +182367,Out of Thin Air (2017),(no genres listed) +182369,Journey's End (2018),War +182371,Uncertain Glory (2017),Drama +182373,Из Уфы с любовью! (2017),Comedy +182375,God's Bloody Acre (1975),Drama|Horror +182377,Femalien (1996),Romance|Sci-Fi +182379,Kingdom of Us (2017),Documentary +182381,Berlinguer ti voglio bene (1977),Comedy +182383,Tellement proches (2009),Comedy +182385,A Moving Image (2016),Drama +182387,Foxtrot (2017),Drama +182389,Luciferous (2015),Drama|Horror|Thriller +182391,Sammy Stops the World (1978),(no genres listed) +182393,The Death of April (2012),Horror|Mystery +182395,Judwaa 2 (2017),Action|Comedy|Romance +182397,The Vintner's Luck (2009),Drama|Fantasy|Romance +182399,March Goes out Like a Lamb (2017),(no genres listed) +182401,Charles II: The Power & the Passion (2003),Drama|Romance +182403,The Whiskey Bandit (2017),Action|Crime +182407,The Pirates of Somalia (2017),Drama +182409,Ecce bombo (1978),Comedy|Drama +182411,All the Fault of Paradise (1985),(no genres listed) +182413,Tu mi turbi (1983),Comedy +182415,Radio Arrow (1998),Comedy|Drama +182417,Patient Killer (2015),Thriller +182419,The Last Warrior (2017),(no genres listed) +182421,Tales from the Crypt: From Comic Books to Television (2004),Documentary +182423,"Zorro, the Avenger (1959)",Adventure|Western +182425,The 9-11 Hijackers - Inside The Hamburg Cell (2005),Documentary +182427,Сердца трех (1992),(no genres listed) +182429,The Painting Pool (2013),Drama +182431,The Book of Law (2009),(no genres listed) +182433,Lord of the Piercing (2002),(no genres listed) +182435,The Most Wonderful Time of the Year (2008),Drama|Romance +182437,A Miracle on Christmas Lake,(no genres listed) +182439,The Lord of the G-Strings: The Femaleship of the String (2003),Action|Adventure|Fantasy +182441,Rush: Time Stand Still (2016),Documentary +182443,The Very Late Afternoon of a Faun (1983),Comedy +182445,Based on a True Story (2017),Drama|Thriller +182447,Blackhearts (2016),Documentary +182449,The Being (1983),Horror|Sci-Fi +182451,Murder Music: Black Metal (2007),Documentary +182453,Pure Fucking Mayhem (2008),Documentary +182455,I Come with the Rain (2009),Drama|Thriller +182457,The Pearl of Africa (2017),Documentary +182459,The Apostle (2012),(no genres listed) +182461,No Ordinary Hero: The SuperDeafy Movie,(no genres listed) +182463,Bianca Del Rio's Rolodex of Hate (2015),Comedy +182465,Genghis Khan Conquers the Moon (2015),Sci-Fi +182467,Antiporno (2016),Drama +182469,Blood Stalkers (1976),Horror +182471,One last afternoon (2016),Drama +182473,The Candidate (2016),(no genres listed) +182475,The Ballad of Lefty Brown (2017),Western +182477,Bleeding Steel (2017),Action|Comedy|Sci-Fi +182479,Mary and the Witch's Flower (2017),Adventure|Animation +182481,Code of a Killer (2015),Crime|Drama +182483,Love & Saucers (2017),Documentary|Mystery|Romance|Sci-Fi +182485,Cook-Off! (2017),Comedy +182487,Bethany (2017),Horror +182489,12 Men of Christmas (2009),Comedy|Romance +182491,Mado (1976),Drama +182493,Wetlands (2011),Drama +182495,Father and Guns 2 (2017),Comedy|Crime +182497,Avalude Ravukal (1978),Drama|Romance +182501,Amaram (1991),Drama +182503,Oru Vadakkan Veeragatha (1989),Action|Drama +182505,Oru Vadakkan Selfie (2015),Comedy|Drama +182507,Black Water (1996),Action|Drama +182509,Nadodikkattu (1987),Comedy +182511,Guru (1997),Adventure|Drama +182513,Vadakkunokki Yantram (1989),Comedy|Drama +182515,Thoovanathumbikal (1987),Drama|Romance +182517,Rathinirvedam (2011),(no genres listed) +182523,Vaishali (1988),Drama +182525,Krishnanum Radhayum (2011),(no genres listed) +182527,Ciutat morta (2014),Documentary +182529,Eye Myth (1967),(no genres listed) +182531,Bataille de boules de neige (1897),Documentary +182533,Glaze of Cathexis (1990),(no genres listed) +182535,"Arroseur et arrosé, [II] (1896)",(no genres listed) +182537,Demolishing and Building Up the Star Theatre (1901),Documentary +182539,A Colour Box (1935),Animation +182541,The Gay Shoe Clerk (1903),Comedy|Romance +182543,The Little Match Seller (1902),Drama +182545,Zaza (1923),Drama|Romance +182547,Under an Arctic Sky (2017),Adventure|Documentary +182549,Infinity Baby (2017),Comedy +182551,Mr. Roosevelt (2017),Comedy +182553,In the Rough (2004),Animation +182555,LEGO Jurassic World: Indominus Escape (2016),Animation|Children|Comedy +182557,Psych: The Movie (2017),Children|Comedy|Crime +182559,Dawson City: Frozen Time (2016),Documentary +182561,Clean Break (2013),Horror|Thriller +182563,Golmaal Again (2017),Comedy|Drama|Horror +182565,Aspirational (2014),Comedy +182567,Requiem for a Robot (2013),Children|Comedy|Sci-Fi +182569,Arson Mom (2014),Thriller +182573,Ducks and Drakes (1921),Comedy|Romance +182575,The Wizard of Mars (1965),Fantasy|Horror|Sci-Fi +182581,The Cutlass (2017),Drama|Thriller +182585,Dementia 13 (2017),Horror +182587,The Middle Finger (2016),Comedy +182589,Witchcraft 15: Blood Rose (2017),Horror +182591,Witchcraft XIV: Angel of Death (2017),Horror|Mystery +182593,Witchcraft IV: The Virgin Heart (1992),Horror +182595,Witchcraft V: Dance with the Devil (1993),Horror +182597,Witchcraft 666: The Devil's Mistress (1994),Horror +182599,Witchcraft VII: Judgement Hour (1995),Horror +182601,Witchcraft 8: Salem's Ghost (1996),Horror +182605,Witchcraft X: Mistress of the Craft (1999),Horror +182607,Witchcraft XI: Sisters in Blood (2000),Horror +182609,Witchcraft XII: In the Lair of the Serpent (2004),Horror +182611,Witchcraft 13: Blood of the Chosen (2008),Horror|Thriller +182613,Batman: Dead End (2003),Action|Crime +182615,The Landlord (2007),(no genres listed) +182617,Kireedam (1989),Drama +182619,Sankarabharanam (1979),Drama|Romance +182623,Sagara Sangamam (1983),Drama +182625,Chithram (1988),Comedy|Drama +182627,In Harihar Nagar (1990),Comedy|Thriller +182629,Namukku Parkkan Munthiri Thoppukal (1986),(no genres listed) +182631,Ramji Rao Speaking (1989),Comedy|Drama +182633,Kilukkam (1991),Children|Comedy +182635,Bharatham (1991),Drama +182637,The Second Renaissance Part I (2003),Animation|Sci-Fi +182641,Miséricorde (2016),Drama|Mystery +182643,The Cat Piano (2009),Animation|Fantasy +182645,Last Rampage: The Escape of Gary Tison (2017),Drama +182647,Dead Billy (2016),Drama|Horror|Mystery|Thriller +182649,The Psycho Lover (1970),Horror +182651,Blood Mania (1970),Horror +182653,Dream Boat (2017),(no genres listed) +182655,Witchcraft 16: Hollywood Coven (2017),(no genres listed) +182657,Pale (2016),Sci-Fi|Thriller +182659,Once Upon a Time at Christmas (2017),Horror +182661,I'll Be Home for Christmas (2016),Children|Drama +182663,3801 Lancaster: American Tragedy (2015),Documentary +182665,Pravda (1970),(no genres listed) +182667,Serpent (2017),Thriller +182669,Obsession (1997),Drama|Romance|Thriller +182671,Hired Gun (2016),Documentary +182673,The Carmilla Movie (2017),Adventure|Comedy|Fantasy|Romance +182675,"Mary, Mary, Bloody Mary (1975)",Drama|Horror|Mystery +182677,Raven's End (1963),Drama +182679,Christmas Inheritance (2017),Romance +182681,Breaking the Cycle (2017),Documentary +182683,Mortadelo and Filemon: Mission Implausible (2014),Animation|Comedy +182685,April Apocalypse (2013),Comedy|Horror|Romance +182687,Lil' Ainjil (1936),(no genres listed) +182689,Cek Toko Sebelah (2016),Children|Comedy +182691,Philosophy Coffee (2015),Adventure|Drama +182693,"Alice Cooper: Good to See You Again, Alice Cooper (1972)",(no genres listed) +182695,Mimosas (2016),Drama +182697,Hysterical (1983),Children|Comedy|Fantasy|Horror +182699,Tales from the Mist: Inside 'The Fog' (2002),Documentary +182701,The Savage Wild (1970),(no genres listed) +182703,Moscow Zero (2006),Action|Adventure|Crime|Horror +182705,Action Replayy (2010),Comedy|Drama|Romance +182707,Losing In Love (2017),Drama +182709,A Different Kind of Christmas (1996),Drama +182711,The World of Us (2016),Drama +182713,Ex Libris: New York Public Library (2017),Documentary +182715,Annihilation (2018),Adventure|Mystery|Sci-Fi|Thriller +182717,P.S. Jerusalem (2015),Documentary +182719,I Am the People (2014),(no genres listed) +182721,A Mom for Christmas (1990),Comedy|Fantasy +182723,Cosmos: A Spacetime Odissey,(no genres listed) +182725,Hookers on Davie (1984),Documentary +182727,A Christmas Story Live! (2017),(no genres listed) +182729,The Proud Family Movie (2005),Animation|Children|Comedy +182731,Pixel Perfect (2004),Children|Comedy|Sci-Fi +182733,The Dance Exponents: Why Does Love? (2017),Drama +182735,Fuck Off 2 - Images from Finland (2017),Documentary +182737,Youth (2017),Drama +182739,Halloween: A Cut Above The Rest (2003),Documentary +182741,Krampus Unleashed (2016),Horror +182743,Wonderland (2017),Comedy|Drama +182745,Alistair1918 (2016),Sci-Fi +182747,Discovering Bigfoot (2017),(no genres listed) +182749,Judd Apatow: The Return (2017),Comedy +182751,Wat Mannen Willen (2015),Comedy|Romance +182753,Nina's Tragedies (2003),Comedy|Drama +182755,Easy Living (2017),Comedy|Drama|Thriller +182757,Pwera Usog (2017),Horror +182759,Sleep Has Her House (2017),Mystery +182761,Fracture (2004),(no genres listed) +182763,Hornblower: Mutiny (2001),Adventure|Drama|War +182765,Rooster: Spurs of Death!,(no genres listed) +182767,Baader (2002),Action|Crime|Drama +182769,The Anarchists (2000),Action|Thriller +182771,Wild Men (2017),Adventure|Comedy|Horror +182773,The Rendezvous (2016),Action|Adventure +182775,Maze (2017),Adventure|Crime|Drama|Mystery|Thriller +182777,Scissors (1991),Drama|Thriller +182779,"Nico, 1988 (2017)",Drama +182781,Amori che non sanno stare al mondo (2017),Comedy|Drama +182783,The Insult (2017),Drama +182785,Rat Film (2016),Documentary +182787,Cristian e Palletta contro tutti (2016),(no genres listed) +182789,Ali Blue Eyes (2012),(no genres listed) +182791,Il padre d'Italia (2017),Drama +182793,The Purple Sea (2009),Drama +182795,Los dinamiteros (1964),Comedy +182797,The Resurrection of Broncho Billy (1970),(no genres listed) +182799,She's a Sheik (1927),Adventure|Drama|Romance +182801,Miss Bluebeard (1925),(no genres listed) +182803,Reclusion (2016),Horror|Thriller +182805,Plot 35 (2017),Documentary +182811,A Christmas Carol (2015),Drama|Fantasy +182813,Saving Capitalism (2017),Documentary +182815,Russell Howard: Recalibrate (2017),Comedy +182817,Love Is Love (1990),(no genres listed) +182819,Father Figures (2017),Comedy +182821,The Vengeful Beauty (1978),Action|Adventure +182823,Bright (2017),Action|Crime|Fantasy +182825,All the Money in the World (2017),Crime|Drama|Mystery|Thriller +182827,Tender Loving Care (1974),Drama +182829,Pottersville (2017),Comedy +182831,Future Force (1989),Action|Crime|Sci-Fi +182835,The 15:17 to Paris (2018),Drama|Thriller +182837,Hey Bunny (2017),Children|Comedy +182841,Lee & Cindy C. (2015),Comedy|Romance +182843,Harrad Summer (1974),(no genres listed) +182845,The Tale of the White Serpent (1958),Animation|Fantasy +182847,Butterfly (2004),Children|Drama +182849,Rudy Habibie (2016),Drama|Romance +182851,Sgt Pepper's Musical Revolution with Howard Goodall (2017),Documentary +182853,"How Viktor ""The Garlic"" Took Alexey ""The Stud"" to the Nursing Home (2017)",Drama +182855,Time Under Fire (1997),Action|Sci-Fi +182857,Star Wars: The Legacy Revealed (2007),Documentary +182859,My Journey Through French Cinema (2016),Documentary +182861,I Really Hate My Ex (2015),Comedy|Romance +182863,Let Me Eat Your Pancreas (2017),Drama +182865,You Can't Fight Christmas (2017),Comedy +182867,Raam (2005),Action|Drama|Thriller +182869,Mozhi (2007),Comedy|Drama|Romance +182871,The Cyborgs (2017),Action|Drama|War +182873,Warrior (2015),Drama +182875,Snakes on a Train (2006),Action|Horror +182877,Which Way Home (1991),Drama +182885,Fish Don't Blink (2002),Comedy +182887,The Parrot (2016),Thriller +182889,Red Christmas (2016),Horror +182891,Sathuranga Vettai (2014),Comedy|Crime|Thriller +182893,Madras (2014),Action|Drama +182895,Ayirathil Oruvan (2010),Adventure|Fantasy|Mystery|Thriller +182897,Peter Bell (2002),Children +182899,Spin Kick (2004),Action +182901,Tomorrow (1972),Drama|Romance +182903,Boss Nigger (1975),Action|Crime|Western +182905,Renesse (2016),Comedy +182907,Lawless Range (2016),Drama|Western +182909,Ghost mountaineer (2015),(no genres listed) +182911,Barcelona Christmas Night (2015),Comedy|Drama|Romance +182915,In Defense of Food (2015),Documentary +182921,All Girls Weekend (2016),Horror +182923,Elder Island (2016),Horror +182925,A Place in the Caribbean (2017),Drama|Romance +182927,Bat Without Wings (1980),Action|Adventure|Horror +182929,Yaroslav. A Thousand Years Ago (2010),Action|Drama +182931,Carry On Dick (1974),Comedy +182933,Steptoe and Son (1972),Comedy|Drama +182935,Steptoe and Son Ride Again (1973),Comedy|Drama +182937,Peter Bell II: The Hunt for the Czar Crown (2003),Children +182939,The Girl Who Invented Kissing (2017),Drama|Romance +182941,The Motive (2017),Drama|Thriller +182943,Little Houdini (2014),Animation +182945,Mission Pays Basque (2017),Comedy +182947,Islands (1987),Documentary +182949,Sign of Zorro (1963),Adventure|Western +182951,The Woman Who Left (2017),Drama +182955,UFOs: It Has Begun (1979),Documentary +182957,The Kitchen: World Chef Battle (2017),Comedy +182959,To All a Goodnight (1980),Horror +182961,Hemso (2001),(no genres listed) +182963,Dün Gece Bir Rüya Gördüm (2006),(no genres listed) +182965,Cholera Street (1997),Crime|Drama +182967,Devrim Arabaları (2008),Drama +182969,The Bus (1975),Comedy|Drama +182971,Girdap (2008),(no genres listed) +182973,Güneşin Oğlu (2008),Comedy +182975,Dragon Trap (2010),(no genres listed) +182977,Adını Sen Koy (2010),(no genres listed) +182979,Deli Deli Olma (2009),(no genres listed) +182981,Hope (1970),Drama +182983,Ask Your Heart (2010),(no genres listed) +182985,Across the Sea (2014),Drama +182987,Robinson Crusoe and Cuma (2015),Comedy +182989,Yok Artık (2015),(no genres listed) +182991,The Lamb (2015),Comedy|Drama +182993,The Mountain II (2016),Drama|War +182997,Uzhaippali (1993),(no genres listed) +182999,Yejaman (1993),Drama +183001,Pandian (1992),Action|Comedy +183003,Mannan (1992),Drama +183005,Thalapathi (1991),Action|Crime|Drama +183007,Dharma Durai (1991),(no genres listed) +183009,Mappillai (1989),(no genres listed) +183011,The Commuter (2018),Crime|Drama|Mystery|Thriller +183013,I Can No Longer Hear the Guitar (1991),(no genres listed) +183015,Dayveon (2017),(no genres listed) +183017,Strange Weather (2016),Drama +183019,The Three Robbers (2007),Animation +183021,The Twins of the Twin Towers (2011),Documentary +183025,Fissa (2016),Comedy +183027,Water for Maya (2000),(no genres listed) +183029,Crash Pad (2017),Comedy +183031,The Blood of Rebirth (2009),Action|Fantasy|Sci-Fi +183033,Monsters Club (2011),Drama +183035,The Wine of Summer (2013),Drama +183037,We Jam Econo: The Story of the Minutemen (2005),Documentary +183039,The Ganzfeld Haunting (2014),Horror|Thriller +183041,Hard Drive (2014),Drama|Romance +183043,Every Time We Say Goodbye (1986),Drama|Romance|War +183045,Vinyl (1965),Sci-Fi +183047,Awakening the Zodiac (2017),Crime|Drama|Mystery|Thriller +183049,Emmanuel Macron : les coulisses d'une victoire (2017),Documentary +183051,I am Diego Maradona (2015),Children|Crime|Drama +183053,An Insignificant Man (2016),Documentary|Thriller +183055,The Beyond (2018),Horror|Sci-Fi +183057,Goldstein (1965),Comedy +183059,Magic Mirror (2006),Drama +183061,The Fifth Empire (2004),Drama +183063,Trance (2006),Drama +183065,The Mutants (1998),Drama +183067,O Capacete Dourado (2007),(no genres listed) +183069,One Day in August (2002),(no genres listed) +183071,From the Edge of the City (1998),Drama +183073,Mountain (2017),Documentary +183075,100 Yen Love (2014),Comedy|Drama +183077,Cold Skin (2017),Sci-Fi|Thriller +183079,Dara Ju (2017),Crime|Drama +183083,Wild Riders (1971),Crime|Drama|Thriller +183085,That Guy Dick Miller (2014),Documentary +183087,Going Vertical (2017),Drama +183089,Myths (2017),(no genres listed) +183091,Romans (2017),Drama +183101,"Ubalda, All Naked and Warm (1972)",Comedy +183111,Tutti a squola (1979),Comedy +183113,L'Imbranato (1979),(no genres listed) +183117,La gatta da pelare (1981),Comedy +183121,Rapsittie Street Kids: Believe in Santa (2002),Animation|Children|Comedy|Drama +183123,Taboo (2002),Drama|Horror|Mystery|Thriller +183125,Vikram Vedha (2017),Action|Romance|Thriller +183127,The Price of Fame (2015),Drama +183129,Florida (2015),Comedy|Drama +183131,Janosik: A True Story (2009),Drama|Romance|War +183133,The Passover Plot (1976),(no genres listed) +183135,Estamira (2004),Documentary +183137,Our Story (1984),Drama +183139,Permanent (2017),Comedy +183141,Toxic Shark (2017),Horror|Sci-Fi +183143,Planet of Storms (1962),Sci-Fi +183145,Born of Hope (2009),Action|Adventure|Fantasy +183147,Tomorrow Ever After (2017),Comedy|Drama|Fantasy|Sci-Fi +183149,The Ash Lad: In the Hall of the Mountain King (2017),Adventure|Fantasy +183151,Anna and the Apocalypse (2017),Comedy|Horror +183153,Manolesta (1981),Comedy +183155,Lean on Pete (2018),Adventure|Drama +183157,Dark River (2018),Drama|Mystery|Thriller +183159,Sweet Country (2017),Western +183161,Journeyman (2018),Drama +183163,5 Headed Shark Attack (2017),Horror|Sci-Fi +183165,My Michael (1974),Drama +183167,Floch (1972),(no genres listed) +183169,Life According To Agfa (1992),Drama +183171,Halfon Hill Doesn't Answer (1976),Comedy +183173,Erskineville Kings (1999),(no genres listed) +183175,Tale of a Lake (2016),Documentary +183177,Letters to Santa 3 (2017),Comedy|Romance +183179,Popeye the Sailor Meets Ali Baba's Forty Thieves (1937),Animation|Comedy +183181,Amerika Square (2016),Drama +183183,Inheritance (2006),Documentary +183187,American Conjuring (2016),Horror +183189,Bendito Machine III: Obey his commands (2009),Animation +183191,Bendito Machine IV: Fuel the Machines (2012),Animation +183193,Bendito Machine V: Pull the trigger (2014),Animation +183195,Afterimages (2014),Fantasy|Horror|Thriller +183197,Dave Chappelle: Equanimity (2017),Comedy +183199,Quest (2017),Documentary +183201,Finishing the Game: The Search for a New Bruce Lee (2007),Comedy +183203,I Am Another You (2017),Documentary +183205,The Departure (2017),Documentary +183207,Nuts! (2016),Documentary +183209,Malasartes e o Duelo com a Morte (2017),Comedy +183213,Durant's Never Closes (2015),Crime|Drama +183215,F.C. De Kampioenen 2: Jubilee General (2015),Comedy +183217,Trap for Cinderella (2013),Crime|Drama|Thriller +183219,The Christmas Train (2017),Children|Drama|Romance +183221,Veiled Naples (2017),(no genres listed) +183223,Bonne pomme (2017),Comedy +183225,"Ron Goossens, Low Budget Stuntman (2017)",Action|Comedy +183227,Dave Chappelle: The Bird Revelation (2017),Comedy +183229,Nijinsky (1980),Drama|Romance +183231,Trapped (2017),Thriller +183233,The New Gladiators (1988),Action|Adventure|Sci-Fi +183235,Devil's Mistress (2016),Drama|Romance +183237,Infected (2008),Adventure|Sci-Fi|Thriller +183239,Singam II (2013),Action|Comedy|Crime|Thriller +183241,Si 3 (2017),Action|Crime +183243,Swim Little Fish Swim (2014),Comedy|Drama +183245,The Untold Tales of Armistead Maupin (2017),Documentary +183247,Начальник,(no genres listed) +183249,Behind the Door (1919),Drama|War +183251,Scorched Earth (2017),Action|Sci-Fi +183253,Spaceship Terror (2011),(no genres listed) +183255,The Magic Cloak of Oz (1914),Adventure|Children|Fantasy +183257,"Zaytsev, zhgi! Istoriya shoumena (2010)",(no genres listed) +183259,Absolutely Fabulous (2001),Comedy +183261,Sexting in Suburbia (2012),Drama|Thriller +183263,Bury Me Behind the Baseboard (2009),Drama +183265,Park of the Soviet Period (2006),Comedy|Drama|Romance +183267,Children of Don Quixote (1965),Comedy|Drama +183269,The Stolen (2017),Action|Adventure|Drama|Western +183273,Don't Even Think 2: Independence Play (2004),Comedy|Crime +183277,Einstein's God Model (2016),Drama|Sci-Fi|Thriller +183279,Aurore (2017),Comedy +183281,Manbeast! Myth or Monster? (1978),Documentary|Mystery +183283,The Demonic Tapes (2017),(no genres listed) +183285,Infoholic (2017),Comedy +183287,Wives and Daughters (1999),Drama +183289,As Night Falls (2010),Action|Horror +183291,Cantantes en Guerra (2017),Comedy +183293,A Very Country Christmas (2017),Drama +183295,Insidious: The Last Key (2018),Horror|Mystery|Thriller +183297,The Wicked One (2017),Horror|Thriller +183299,Queen: From Rags to Rhapsody (2015),Documentary +183301,The Tale of the Bunny Picnic (1986),Children +183303,You Disappear (2017),Drama +183305,The Nights of Zayandeh-rood (1990),Drama +183307,The Brain Hack (2015),(no genres listed) +183309,Every Day (2018),Children|Drama|Fantasy|Romance +183311,Without Warning! (1952),Crime|Thriller +183313,Non-Transferable (2017),Comedy|Romance +183315,Suck It Up (2017),(no genres listed) +183317,Patti Rocks (1988),Comedy|Drama +183319,Turning to Love (1975),Drama|Romance +183321,The Song of Lunch (2010),Drama +183323,Small Town Crime (2017),Crime|Thriller +183325,Ghost House (2017),Horror|Thriller +183327,Slaughter's Big Rip Off (1973),Action|Thriller +183329,Cuba and the Cameraman (2017),Documentary +183331,8 ½ $ (1999),Comedy|Crime +183333,"O, Luckyman! (2009)",Comedy +183335,The Mysterious Castle in the Carpathians (1981),Adventure|Comedy|Fantasy +183337,Senior Class (2016),Drama|Romance +183339,Earth: One Amazing Day (2017),Documentary +183341,The Banquet (1991),Comedy +183343,Love in USSR (2012),Drama|Romance +183345,American Daughter (1995),Comedy|Drama +183347,Dragnet (1954),Action|Adventure|Crime|Drama|Thriller +183349,Conor McGregor: Notorious (2017),Documentary +183351,Return to Aztlán (1991),(no genres listed) +183353,Proud Mary (2018),Action|Thriller +183355,She Killed in Ecstasy (1971),Horror +183357,Bidder 70 (2013),(no genres listed) +183359,Faustina (1957),Comedy|Drama +183361,Nadja à Paris (1964),Documentary +183363,Impasse du désir (2010),Thriller +183365,A Deadly Obsession (2012),Action +183367,Sticky Notes (2016),Comedy|Drama +183369,Last Men in Aleppo (2017),Documentary +183373,The Patchwork Girl of Oz (1914),Adventure|Children|Comedy|Fantasy +183375,Three Heroes and the Princess of Egypt (2017),(no genres listed) +183377,Separate Vacations (1986),Comedy +183379,Renegades (2017),Action|Thriller +183381,Brand New Yolki (2017),Comedy +183383,Fukrey (2013),(no genres listed) +183385,Fukrey Returns (2017),Comedy|Drama +183387,Sorochinskaya yarmarka (Sorochintsi Fair) (2004),Children +183389,Desire (2017),Drama|Romance +183391,Unwanted (2017),Horror +183393,Bornless Ones (2016),Horror +183395,Anomaly (2016),Horror|Mystery|Sci-Fi +183397,Along with the Gods: The Two Worlds (2017),Drama|Fantasy +183399,"His Majesty, the Scarecrow of Oz (1914)",Adventure|Children|Comedy|Fantasy +183401,From Darkness (2002),Animation +183403,Just to Be Sure (2017),Comedy|Drama +183405,Confessions of a Young American Housewife (1974),Drama +183407,Earthtastrophe (2016),Action|Sci-Fi|Thriller +183409,The Story of 1 (2005),Documentary +183411,The Secret Rules of Modern Living: Algorithms (2015),Documentary +183413,Submergence (2018),Drama|Romance|Thriller +183415,A Fox's Tale (2008),Adventure|Animation|Children +183417,The Battleship Island (2017),Drama|Thriller|War +183419,Acts of Violence (2018),Action +183421,Red Sparrow (2018),Thriller +183423,AlphaGo (2017),Documentary +183425,Go Ask Alice (1973),Drama +183427,Pon un hombre en tu vida (1996),(no genres listed) +183429,Operation Corned Beef (1991),Action|Comedy +183431,Give Me Back My Skin (1980),Comedy|Fantasy +183433,My Life Is Hell (1991),Comedy +183435,The Gang of Oss (2011),Crime|Drama +183437,World of Tomorrow Episode Two: The Burden of Other People's Thoughts (2017),Animation|Sci-Fi +183439,Sarah Millican: Chatterbox Live (2011),Comedy +183441,İftarlık Gazoz (2016),Comedy|Drama +183443,Come due coccodrilli (1994),(no genres listed) +183445,Aile Arasında (2017),Children|Comedy +183447,Land of No Return (1978),Adventure|Children +183449,Living in Bondage (1992),Horror +183451,The Figurine (2009),Drama|Horror|Mystery +183453,The Dreamer of Oz (1990),Children|Drama|Fantasy +183455,Scooby-Doo! & Batman: The Brave and the Bold (2018),Animation +183457,Day of the Dead: Bloodline (2018),Action|Horror +183459,The Midnight Man (2016),Horror +183461,Godless (2017),Crime|Drama|Western +183463,Don't Shoot the Pharmacist (2008),Comedy +183465,Sharks' Treasure (1975),Adventure +183467,Treasure Hounds (2017),Children|Fantasy +183469,Memo (2016),Drama +183471,Correcting Christmas (2014),Children|Drama|Fantasy +183473,Holiday Baggage (2008),(no genres listed) +183475,Abe & Phil's Last Poker Game (2018),Comedy|Drama +183477,Borderline (2008),Drama +183479,Ashes and Embers (1982),Drama +183485,Bowling Balls (2014),Action|Comedy +183487,Valentine's Again (2017),Romance +183489,Life Ahead (2017),Comedy +183491,My Name Is Lenny (2017),Drama +183493,Grey City (2013),Animation|Documentary +183495,Golden Time (2014),Animation +183497,The Polka King (2018),Comedy +183499,Promise at Dawn (2017),Drama +183501,Feral (2012),Animation|Drama|Fantasy|Sci-Fi +183503,I Am Here (2016),Animation +183507,Voldemort: Origins of the Heir (2018),Adventure|Drama|Fantasy +183509,Journey to the West (2014),Drama +183511,Mystery Woman: Mystery Weekend (2005),Crime|Mystery +183513,Mystery Woman: Game Time (2005),(no genres listed) +183515,A Man of Integrity (2018),Drama +183517,Nanami: The Inferno of First Love (1968),Drama|Romance +183519,Kenny (2017),Documentary +183521,Don't Sleep (2017),Horror|Thriller +183523,My Dream is Yours (1988),Comedy +183525,Nothing Really Happened (2017),Drama +183527,Karroll's Christmas (2004),Drama|Fantasy|Romance +183529,Bad Day for the Cut (2017),Thriller +183531,Tenement (1985),Action|Horror|Thriller +183533,Ice Mother (2017),Comedy|Drama|Romance +183535,The God Question (2014),Sci-Fi +183537,Prayer of the Rollerboys (1991),Sci-Fi +183539,Rock 'n' Roll High School Forever (1991),Comedy +183541,Five Superfighters (1979),Action +183543,Flesh Gordon meets the Cosmic Cheerleaders (1990),Comedy|Sci-Fi +183547,T.J. Miller: Meticulously Ridiculous (2017),Comedy +183549,High School of the Dead OVA: Drifters of the Dead (2011),Adventure|Animation|Comedy +183551,Hate Crime (2013),(no genres listed) +183553,Girl from Starship Venus (1975),Comedy|Sci-Fi +183555,The Women of Brewster Place (1989),(no genres listed) +183557,Wide Sargasso Sea (1993),Drama|Romance|Thriller +183559,Jeffrey Dahmer: Confessions Of A Serial Killer (2012),Documentary +183561,The Good Witch's Wonder (2014),Children|Drama|Fantasy +183563,Postmen in the Mountains (1999),Drama +183565,Come un gatto in tangenziale (2017),Comedy +183567,F*&% the Prom (2017),Comedy +183569,Gangsterdam (2017),Action|Comedy +183571,Mystic Game (2017),Adventure|Fantasy +183573,Trafficked (2017),Drama +183575,Painkiller Jane (2005),Action|Drama|Sci-Fi +183577,Bugs Bunny Nips the Nips (1944),(no genres listed) +183579,Airwolf: The Movie (1984),Action|Adventure|Sci-Fi|Thriller +183581,Emmanuelle: First Contact (1994),Drama|Romance|Sci-Fi +183583,The King's Case Note (2017),Action|Adventure|Comedy +183585,Emmanuelle: Queen of Sados (1980),Crime|Drama +183587,The Trial of the Catonsville Nine (1972),(no genres listed) +183589,Fifty Shades Freed (2018),Drama|Romance +183591,Winning Ticket (2018),Comedy|Drama +183593,The Gateway (2017),Sci-Fi +183595,Meow (2017),Children|Comedy|Drama|Fantasy|Sci-Fi +183597,Please Stand By (2017),Comedy|Drama +183599,Dreaming of a Jewish Christmas (2017),Documentary +183601,Contract to Kill (2016),Action|Adventure +183603,The High School Student in the Repeating Class (1978),Comedy +183605,Deportees 1 (2007),Action|Comedy|Drama|War +183607,Negar (2017),Crime|Mystery|Thriller +183609,The Female Brain (2017),Comedy +183611,Game Night (2018),Action|Comedy|Crime|Horror +183613,Thoroughbreds (2018),Drama|Thriller +183615,Boys Like Us (2014),Drama +183619,Den of Thieves (2018),Crime +183621,Danny (2016),Documentary +183623,The Exile (2015),Drama +183625,Gangster Land (2017),Crime|Thriller +183627,Il lupo e l'agnello (1980),(no genres listed) +183629,The Garden Was Full of Moon (2000),Romance +183631,Lover for a Day (2017),Drama +183633,The Final Year (2017),Documentary +183635,Maze Runner: The Death Cure (2018),Action|Mystery|Sci-Fi|Thriller +183637,The Corporal and the Others (1965),Comedy +183639,Balkanisateur (1997),Comedy +183641,Bombshell: The Hedy Lamarr Story (2017),Documentary +183643,The Big Space Travel (1975),Adventure|Children|Romance|Sci-Fi +183645,First Contact: Lost Tribe of the Amazon (2016),Documentary +183647,11 September Vragen (2016),Documentary +183649,Momo (1986),Children|Comedy|Fantasy|Mystery|Sci-Fi +183651,Truth or Dare (2017),Horror +183653,Dating Game Killer (2017),Crime|Thriller +183655,"Sobibor, October 14, 1943, 4 p.m. (2001)",Documentary +183657,Hardcore (2001),Documentary +183659,"Never Steady, Never Still (2017)",Drama +183661,Godzilla: Planet of the Monsters (2017),Animation|Sci-Fi +183663,Nazi Pop Twins (2007),Documentary +183665,The Moors Murders,(no genres listed) +183667,Samurai Wolf II (1967),Action|Adventure|Drama +183669,One In The Other (2017),Comedy +183671,Spielberg (2017),Documentary +183675,Second Nature (2016),Comedy +183677,Night Mail (1936),Documentary +183679,ChickenHawk (1994),Documentary +183681,American Radical: The Trials of Norman Finkelstein (2009),Documentary +183683,The Texas Chainsaw Massacre: A Family Portrait (1988),Documentary +183685,Fractals: The Colors Of Infinity (1996),Documentary +183687,Cemeteries in the Cliff (1951),(no genres listed) +183689,A Castle Within a Castle (1955),Documentary +183695,Marrowbone (2017),Drama|Horror|Thriller +183697,The Secret Number (2012),Drama|Sci-Fi|Thriller +183699,Forgotten (2017),Thriller +183701,12 Strong (2018),Drama|War +183703,Forever My Girl (2018),Romance +183705,Green Grass of Wyoming (1948),Children|Drama|Western +183707,Fulano y Mengano (1956),Comedy +183709,Harvest,Documentary +183711,Sister of Mine (2017),Drama|Thriller +183713,Empire of Dust (2011),Documentary +183715,Happening: A Clean Energy Revolution (2017),Documentary +183717,Om-Dar-Ba-Dar (1988),(no genres listed) +183719,The First Lad (1959),Comedy|Romance +183721,My Dad Is 100 Years Old (2005),Documentary +183723,The Umbrella Man (2011),(no genres listed) +183725,Bequest to the Nation (1973),Drama +183727,The Man from Earth: Holocene (2017),Drama|Sci-Fi +183729,Being Two Isn't Easy (1962),Comedy|Drama +183731,Barbaric Genius (2012),Documentary +183735,Domestic (2012),(no genres listed) +183737,Heads and Tails (1995),Comedy +183739,What Will People Say (2017),Drama +183741,Aruvi (2017),Drama +183743,Khalif The Stork (1981),Animation|Fantasy +183745,Caged No More (2016),Action|Drama|Thriller +183747,Yoga arquitetura da paz (2017),Documentary +183749,Thirty Proof Coil (2011),(no genres listed) +183755,Basmati Blues,Comedy|Romance +183757,For Hire (1999),Thriller +183759,Just Before Losing Everything (2013),Children|Drama +183761,The Hostage (1967),Thriller +183763,The Painting (2001),Drama|Romance +183765,How to Use Guys with Secret Tips (2013),Comedy|Romance +183767,Here's the Plan (2016),Animation|Drama +183771,Directions (2017),Drama +183775,Friend of the Family (1995),Action|Drama|Thriller +183779,The Passion (2010),Comedy +183781,The Forlorned (2017),Horror +183785,Monday at 11:01 A.M. (2016),Horror|Thriller +183787,Watch Over Us (2015),Comedy|Drama|Fantasy +183789,I Know You're in There (2016),Horror +183791,Within the Whirlwind (2009),Drama +183793,Devil's Acid (2017),Horror +183795,The Bachelors (2017),Comedy|Drama +183797,Larceny (2017),Action|Thriller +183799,Eolomea (1972),Drama|Sci-Fi +183801,Love Comes to the Executioner (2006),Comedy|Drama|Romance +183803,Oxidan (2018),Comedy +183805,"The Good, the Bad & the Corny (2017)",Comedy +183807,Tree Man (2016),Children|Documentary|Drama +183809,Disco (2008),Comedy +183811,Mrs. Harris (2006),Drama +183813,Dil Hai Tumhaara (2002),(no genres listed) +183815,The Open House (2018),Horror|Thriller +183817,Le Brio (2017),Comedy +183819,Getaway Plan (2017),Action|Thriller +183821,Kickboxer from Hell (1990),Action|Fantasy|Horror +183823,09:06 (2009),Drama|Thriller +183825,American Romance (2016),Thriller +183827,Lizzie (2018),Crime|Drama +183829,Loveling (2018),Drama +183831,The Lodgers (2017),Horror +183833,Early Man (2018),Animation|Children|Comedy +183835,The Nothing Factory (2017),Drama +183837,The Favourite,Drama +183839,Norfolk (2015),Drama|Thriller +183841,Fate (2017),Drama|Sci-Fi|Thriller +183843,Mandy (2018),Action|Fantasy|Horror +183845,A Fat Wreck (2016),Documentary +183847,Swinging Safari (2018),Comedy|Drama +183849,Now More Than Ever: The History of Chicago (2016),Documentary +183851,Tsuburo no gara (2004),Mystery|Sci-Fi +183853,Sex & Violence (1997),Animation +183855,Terminal,Drama|Thriller +183857,911: The Road to Tyranny (2002),Documentary +183859,Amityville Exorcism (2017),Horror +183861,A Separate Peace (1972),Drama +183863,Mandala (1981),Drama +183865,I Think We're Alone Now (2018),(no genres listed) +183869,Hereditary (2018),(no genres listed) +183871,Functional Fitness,(no genres listed) +183873,Like Me (2017),Crime|Drama +183875,Dead Slow Ahead (2016),Documentary|Drama +183877,Egon Schiele: Death and the Maiden (2016),Drama +183879,Adoption (1975),Drama +183881,A Fan's Notes (1972),(no genres listed) +183885,Wild Horse Hank (1979),Adventure|Drama +183889,Duct Tape Forever (2002),Comedy +183891,Dear Basketball (2017),Animation|Documentary|Drama +183893,Heaven Is a Traffic Jam on the 405 (2016),Documentary +183895,Sinister Squad (2016),Fantasy +183897,Isle of Dogs (2018),Animation|Comedy +183899,Speak No Evil (2013),Horror +183901,#Captured (2017),Horror +183903,El mundo es nuestro (2012),Comedy +183905,"Bless You, Prison (2002)",Drama +183907,American Folk (2018),(no genres listed) +183909,A Futile & Stupid Gesture (2018),(no genres listed) +183911,The Clapper (2018),Comedy +183913,The Firm (1989),Drama +183915,Batman: Gotham by Gaslight (2018),Action|Animation|Sci-Fi|Thriller +183917,Christine (1987),Drama +183919,Contact (1985),Drama +183921,Kings Go Forth (1958),Action|Drama|Romance|War +183923,The Ghost of Kasane (1957),Horror +183925,Black Cat Mansion (1958),Drama|Horror +183927,Imprint (2006),Horror +183929,Unholy Women (2006),Horror +183931,Girl Boss Guerilla (1972),Action +183933,Hans Christian Anderson's The Little Mermaid (1975),Animation|Children|Drama +183935,Made in Italy,(no genres listed) +183937,Women Behind Bars (1975),Crime|Thriller +183939,La española inglesa (2015),Drama +183941,Return of the Blind Dead (1973),Horror +183943,Podium (2004),Comedy +183945,Les Ex (2017),Comedy +183947,NOFX Backstage Passport 2,(no genres listed) +183949,Pennywise: Home Movies (1996),Documentary +183951,Clockwork Orange County (2012),Documentary +183953,Dead Sushi (2012),Comedy +183955,Todd Barry: Spicy Honey (2017),Comedy +183957,Russell Howard: Wonderbox Live (2014),Comedy +183959,Tom Segura: Disgraceful (2018),Comedy +183963,Climats (2012),(no genres listed) +183965,Face 2 Face (2017),Drama +183967,Lupin the Third vs. Detective Conan: The Movie (2013),Action|Animation|Crime|Mystery +183969,Battle of Warsaw 1920 (2011),Drama|War +183971,VHS Forever?: Psychotronic People (2014),Documentary +183973,Room(h)ates (2017),Comedy +183975,Family Party (2015),Children|Drama +183977,The Battle of the Somme (1916),Documentary|War +183979,M.S. Dhoni: The Untold Story (2016),Drama +183981,Cooley High (1975),Comedy|Drama +183983,Hulk: Where Monsters Dwell (2016),Action|Animation|Fantasy|Sci-Fi +183985,Let the Corpses Tan (2017),Thriller +183987,I Am Sam Kinison (2017),Documentary +183989,Creature of Destruction (1967),Horror|Sci-Fi +183991,The Last Egg (2016),Comedy +183993,The Salzburg Connection (1972),Action|Thriller +183995,The Flying Matchmaker (1970),(no genres listed) +183997,Sugar Sand (2017),Drama +183999,From Bedrooms to Billions: The Amiga Years (2016),Documentary +184001,Zafarinas (1995),(no genres listed) +184003,Heroine,(no genres listed) +184005,Electric Nostalgia (2016),Drama|Sci-Fi|Thriller +184007,Ánimas Trujano (1962),Drama +184009,The Cured (2017),Horror +184011,American Satan (2017),Drama|Thriller +184013,Fangs (1974),Horror +184015,When We First Met (2018),Comedy +184017,Mute (2018),Mystery|Sci-Fi|Thriller +184019,A Florida Enchantment (1914),Comedy +184021,The Idea of a Lake (2017),Drama +184023,Unsane (2018),Drama|Horror +184025,Step Sisters (2018),Comedy +184027,La fierecilla domada (1956),(no genres listed) +184029,The Hairy Tooth Fairy (2006),(no genres listed) +184031,Love: Yeu (2015),Romance +184033,Why Me? (2015),Crime|Drama|Thriller +184035,Shaman (1996),Adventure|Drama +184039,Salomy Jane (1914),Romance|Western +184041,A Better Tomorrow (2018),Action|Crime|Drama +184043,Panic Attack (2018),Comedy|Drama +184045,Disappearances (2007),Action|Adventure|Drama +184047,Alien Domicile (2017),Horror +184049,The Mystery of Green Hill (2017),Adventure|Children|Mystery +184051,Bad Frank (2017),Drama|Thriller +184053,Battle Planet (2008),Action|Sci-Fi +184055,The Yearly Harvest (2016),(no genres listed) +184057,The Feather Fairy (1985),Children|Fantasy +184059,The Bouncer (2016),(no genres listed) +184061,God's Neighbors (2012),Drama +184065,Vladimir and Rosa (1971),Drama +184067,Without Name (2017),Drama|Horror|Mystery +184069,Accident Man (2018),Action|Crime|Thriller +184071,Psycho IV: The Beginning (1990),Drama|Horror|Mystery|Thriller +184073,The Psycho Legacy (2010),Documentary +184075,Thank Heaven (2001),(no genres listed) +184077,Anna (1967),Comedy|Romance +184079,Four Against the Bank (2016),Comedy|Crime +184081,Victor XX (2015),Drama +184083,Jordy in Transitland (2016),(no genres listed) +184085,The Violin Player (2018),Drama|Romance +184087,Time Piece (1965),Comedy +184089,Winchester (2018),Fantasy|Horror +184091,Shearing Animation (1961),(no genres listed) +184093,The Boy Downstairs (2017),Comedy|Drama|Romance +184095,Beast Of Burden (2018),Action|Crime|Drama +184097,Curvature (2017),Drama|Sci-Fi +184099,Looking Glass (2018),(no genres listed) +184101,Shiny Shiny Bright New Hole in My Heart (2006),Drama +184103,Come diventare grandi nonostante i genitori (2016),Comedy +184105,You See Me Laughin' (2002),Documentary +184107,Sono tornato (2018),Comedy +184109,A Violent Life (2017),(no genres listed) +184113,Christmas Tango (2011),Drama +184115,Real (2017),Action +184117,Buffet Titanic (1979),Drama +184119,Braven (2018),Action +184123,42 Grams (2017),(no genres listed) +184125,Brave New Jersey (2017),Comedy +184127,How the Beatles Changed the World (2017),Documentary +184129,The Living End (1992),Drama|Romance +184133,Trump: The Art of the Insult (2018),Documentary +184135,Anne Frank: The Whole Story (2001),Drama|War +184137,O Pioneers! (1992),Action|Drama|Romance +184139,I Downloaded a Ghost (2004),Children|Comedy|Fantasy +184141,Roxy Hunter and the Mystery of the Moody Ghost (2007),Children|Mystery +184143,Roxy Hunter and the Myth of the Mermaid (2008),Children|Comedy|Mystery +184145,Roxy Hunter and the Secret of the Shaman (2008),Children|Mystery +184147,Jekyll & Hyde - The Musical (2001),Drama +184149,VeggieTales: Beauty and the Beet (2014),(no genres listed) +184151,VeggieTales: Celery Night Fever (2014),(no genres listed) +184155,An Hour Behind,Drama|Romance +184157,Downrange (2017),Thriller +184159,Chandramukhi (2005),Comedy|Drama|Horror +184161,Königin der Nacht (2016),Drama +184163,Second Wind (1976),Comedy|Drama +184165,Padmaavat (2018),Drama +184167,Letter to Jane: An Investigation About a Still (1972),Documentary +184169,Wild Boys (2017),(no genres listed) +184173,Crossing the Line (2002),Children|Comedy|Drama +184175,Torn Apart (1990),Drama|Romance +184177,Gentleman (1993),Action|Crime +184179,Kadhalan (1994),Action|Drama|Romance +184181,Jeans (1998),Comedy|Drama|Romance +184183,PEZheads - The Movie (2006),Documentary +184187,Model Citizens (2015),Documentary +184189,Mary Magdalene (2018),Drama +184191,The Last Shaman (2017),Documentary +184193,Raees (2017),Action|Crime|Thriller +184195,Humpty Sharma Ki Dulhania (2014),Comedy|Drama|Romance +184197,Main Tera Hero (2014),Comedy|Romance +184199,Any Body Can Dance 2 (2015),Drama +184203,Mr. X (2015),Action|Sci-Fi|Thriller +184205,Ungli (2014),Comedy|Drama|Thriller +184207,Jannat 2 (2012),Action|Romance +184209,Raaz: The Mystery Continues... (2009),Horror +184211,Shaadi Mein Zaroor Aana (2017),Children|Drama|Romance +184213,Bareilly Ki Barfi (2017),Comedy|Romance +184215,Behen Hogi Teri (2017),Comedy|Drama|Romance +184217,Raabta (2017),Comedy|Drama|Mystery|Romance +184219,Break Ke Baad (2010),Comedy|Drama|Romance +184221,Love Aaj Kal (2009),Comedy|Drama|Romance +184223,Heyy Babyy (2007),Comedy|Drama|Romance +184225,What's Your Raashee? (2009),Comedy +184229,Tiger Zinda Hai (2017),Action|Thriller +184231,Jagga Jasoos (2017),Adventure|Comedy|Mystery|Romance +184233,Ek Tha Tiger (2012),Action|Romance|Thriller +184235,Qarib Qarib Singlle (2017),Comedy|Drama|Romance +184237,Uttama Villain (2015),Comedy|Drama|Romance +184239,Peter Rabbit (2018),Animation +184241,Submission (2017),Drama +184243,Musorshik (2001),Romance +184245,De platte jungle (1978),Documentary +184247,Fikkefuchs (2017),Comedy|Drama +184249,El cuaderno de Sara (2018),Adventure +184251,Handia (2017),Drama +184253,The Cloverfield Paradox (2018),Horror|Mystery|Sci-Fi|Thriller +184255,Interview with a Serial Killer (2008),Documentary +184257,Making a Murderer (2015),Crime|Documentary +184259,Road to Salina (1970),Drama +184261,The Night They Saved Christmas (1984),Children|Drama +184263,"7 Rzeczy, Których Nie Wiecie o Facetach (2016)",Comedy +184265,The Mercy (2018),Drama +184267,The Man Who Lies (1968),Drama|War +184269,The Big Gundown (1966),Western +184271,Strayed (2014),(no genres listed) +184273,Bella Donna's (2017),Comedy|Romance +184275,Before We Vanish (2017),Drama|Sci-Fi +184277,"Sabine Kleist, Aged Seven (1982)",Children|Drama +184279,The Age of Consequences (2016),Documentary|War +184285,Under the Hood (2009),Action|Drama|Sci-Fi|Thriller +184287,Woody Woodpecker (2017),Animation|Children|Comedy +184289,Bilal: A New Breed of Hero (2018),Action|Adventure|Animation +184291,Living Among Us (2018),Fantasy|Horror|Sci-Fi|Thriller +184293,Noise Matters (2013),Comedy|Drama +184295,London Heist (2017),Action|Thriller +184299,Freedom on My Mind (1994),Documentary +184301,Yellow (2006),Drama|Romance +184303,The Sports Bar (1983),Comedy +184305,Domani mi sposo (1984),(no genres listed) +184307,Shadowman (2017),Documentary +184309,Piercing I (2009),(no genres listed) +184311,Crosscurrent (2016),Drama +184313,Happy Family (2017),Animation +184315,Hellraiser: Judgment (2018),Horror +184317,The Rat Pack (1998),Drama +184319,Patient Seventeen (2017),Documentary +184321,The Golden Era (2014),Drama +184323,Island Etude (2006),Drama +184325,Miao Miao (2008),Comedy|Drama +184327,Beijing Bubbles (2006),Documentary +184329,Candy Rain (2008),(no genres listed) +184331,Demon Legacy (2014),Horror +184335,Man Camp (2013),Comedy +184337,Her Composition (2015),(no genres listed) +184339,Thirst Street (2017),Drama|Romance|Thriller +184341,Visions of Eight (1973),Documentary +184343,L'altra metà del cielo (1977),Comedy +184345,Crying... Silicon Tears (2001),Comedy +184347,Only Human (2004),Comedy|Drama|Romance +184349,Elsa & Fred (2005),Comedy|Drama|Romance +184351,Pushpak (1987),Comedy +184353,Bomb City (2017),Action|Crime|Drama|Thriller|Western +184357,The Virgin Queen (2005),Drama|Romance +184359,Problemos (2017),Comedy +184361,"Half Sister, Full Love (2016)",Comedy|Drama +184363,The Sense of Wonder (2015),Comedy|Romance +184365,Lego Scooby-Doo!: Haunted Hollywood (2016),Animation|Children +184367,King of Peking (2017),Comedy|Drama +184369,Saturday Church (2017),Drama|Romance +184371,It's Not My Fault and I Don't Care Anyway (2017),Drama +184373,Rojo sangre (2004),Horror +184375,Burst City (1982),Action|Sci-Fi +184379,May It Last: A Portrait of the Avett Brothers (2017),Documentary +184381,Goosed (1999),Comedy +184383,1987: When the Day Comes (2017),Drama|Thriller +184385,Relative Happiness (2014),Comedy|Romance +184387,A Woman's Case (1969),Drama +184389,Under The Greenwood Tree (2005),Drama|Romance +184391,Joe Panther (1976),Drama +184393,The Criminal Excellency Fund (2018),Action|Comedy|Crime +184395,Before Summer Ends (2017),Documentary +184397,Becks (2017),Drama|Romance +184399,Eighth Grade (2018),(no genres listed) +184401,Selfie (2018),(no genres listed) +184403,Suckers (1999),Comedy +184405,Garden Party (2017),Animation +184407,Negative Space (2017),Animation|Drama +184409,Weeds (2017),Animation +184411,All the Right Noises (1971),Comedy|Drama +184413,The Ideal City (2013),Drama|Thriller +184415,The Flirting Scholar (1993),Comedy|Drama|Romance +184417,Residente (2017),Documentary +184421,Épouse-moi mon pote (2017),Comedy +184423,Maigret in Montmartre (2017),Crime|Drama|Mystery +184425,The Hunt (2006),Action|Horror|Sci-Fi|Thriller +184427,Keep Watching (2017),Horror|Thriller +184429,I Love My Wife (1970),Comedy +184431,A Village Affair (1995),Drama|Romance +184433,The Monster Project (2017),Action|Horror +184435,Haunted (2017),Horror|Thriller +184437,Always Worthy (2016),Comedy|Drama +184441,29+1 (2017),Drama +184443,Red Eye (2017),Horror +184445,The Girl in the Fog (2017),Crime|Thriller +184447,A Very Sordid Wedding (2017),Comedy +184449,Addicted To Fame (2012),Comedy|Documentary +184451,Blood Car (2007),Comedy|Horror +184453,He's Way More Famous Than You (2013),Comedy +184455,This is Happening (2015),Comedy|Drama +184459,Phoenix the Warrior (1988),Action|Fantasy|Sci-Fi +184461,Lego DC Comics Super Heroes: The Flash (2018),Animation|Children +184463,The Californians (2005),Comedy|Drama +184467,A Harlot's Progress (2006),Drama +184469,Chris Rock: Tamborine (2018),Comedy +184471,Tomb Raider (2018),Action|Adventure|Fantasy +184473,"Paul, Apostle of Christ (2018)",Drama +184475,Dumm Dumm Dumm (2001),Action|Comedy +184477,Neethaane En Ponvasantham (2012),Drama|Romance +184479,Raja Rani (2013),Comedy|Drama|Romance +184481,Velaiyilla Pattathari (2014),Comedy|Drama|Romance +184483,Particles of Truth (2003),(no genres listed) +184485,Natalee Holloway (2009),Drama|Mystery +184487,Who Is Clark Rockefeller? (2010),Crime|Drama|Horror +184489,Perfect Obedience (2014),Drama +184491,The Wax Mask (1997),Horror|Thriller +184493,Entanglement (2018),Comedy|Drama +184495,The Constant Factor (1980),Drama +184497,The Trader (2016),Documentary +184499,Tati story (2002),(no genres listed) +184501,Samson (2018),Action|Drama +184503,Monster Hunt 2 (2018),Adventure|Comedy|Sci-Fi +184505,The Lucky Guy (1998),Comedy +184507,For Goodness Sake (1993),Comedy +184509,Harmonium (2017),Thriller +184511,Keep Off My Grass! (1975),Comedy +184513,Love Is Evil (1999),Comedy|Romance +184515,Knife Skills (2017),Documentary +184517,National Parks Adventures (2016),Documentary +184519,The Orphan (1979),Horror +184521,Despido procedente (2017),Comedy +184523,Time at the Top (1999),Adventure|Children|Fantasy|Mystery|Sci-Fi +184525,Time for Loving (1983),Comedy|Romance +184527,Millionaire: A Major Fraud (2003),Documentary +184529,Growing Up Brady (2000),Drama +184533,Her Desperate Choice (1996),Drama +184535,Thanksgiving (2014),Drama +184537,Little Galicia (2015),Comedy +184539,Green (2011),Drama +184541,Planeta Petrila (2017),Documentary +184543,Lost in Armenia (2016),Comedy|Drama +184545,These Old Broads (2001),Comedy +184547,Let Me Call You Sweetheart (1932),(no genres listed) +184549,J-Men Forever (1979),Comedy +184551,Aiyaary (2018),Action|Crime|Drama +184553,Smartest Girl in Town (1936),Comedy +184555,Pacala (1974),Comedy +184557,Brigade Miscellaneous in the Mountains and at the Sea (1971),Comedy +184559,Brigade Miscellaneous Steps In (1970),Comedy +184561,Where Is Kyra? (2018),Drama +184563,Special Treatment (2010),Comedy|Drama +184565,Sylvio (2017),Comedy +184567,East Side Story (2006),Comedy|Drama|Romance +184569,Ransom! (1956),Crime|Drama|Thriller +184571,The Silent Child (2017),Drama +184573,DeKalb Elementary (2017),Drama +184575,Watu Wote: All of Us (2017),Drama +184577,The Eleven O'Clock (2016),Comedy +184579,My Nephew Emmett (2017),Drama +184581,We (1981),Drama|Romance|Sci-Fi +184583,Love Per Square Foot (2018),Comedy|Romance +184585,Expo (2012),Drama|Sci-Fi +184587,The Fisherman (2015),Sci-Fi +184589,Mis-drop (2013),Sci-Fi|Thriller +184591,Cockpit: The Rule of Engagement (2012),Action|Horror|Sci-Fi +184593,Star Wars Downunder (2013),Sci-Fi +184595,A Few Cubic Meters of Love (2014),(no genres listed) +184597,Jeff Wayne's Musical Version of the War of the Worlds Alive on Stage! The New Generation (2013),Sci-Fi +184599,The Houses October Built 2 (2017),Horror +184601,The Godmother (2011),Comedy +184603,Crazy Hong Kong (1993),Adventure|Comedy +184605,The Gods Must Be Funny in China (1994),Comedy +184607,A Grim Becoming,(no genres listed) +184609,Beauty (2011),Drama +184611,Temptation Island (1980),(no genres listed) +184613,The Moorside (2017),Crime|Drama +184615,The Tenth Man (2016),Comedy|Drama +184617,The Perfect Daughter (2016),Drama +184619,EMO the Musical (2017),Comedy|Romance +184621,In the Cloud (2018),Thriller +184623,Gringo (2018),Action|Comedy|Drama +184625,The Doll (1919),Comedy|Fantasy +184627,90° South (1933),(no genres listed) +184629,Desistfilm (1954),Drama +184631,Wedlock House: An Intercourse (1959),(no genres listed) +184633,Cœur fidèle (1923),Comedy|Drama +184635,His Wedding Night (1917),Comedy +184637,The Ravenous (2017),Horror +184639,Brazilian Holocaust (2016),Documentary +184641,Fullmetal Alchemist 2018 (2017),Action|Adventure|Fantasy +184643,Relentless (2018),Thriller +184647,Varasto 2 (2018),Comedy +184649,The Scent of Rain & Lightning (2018),Drama|Mystery|Western +184651,Detective Chinatown 2 (2018),(no genres listed) +184653,Hidden City (1987),Mystery|Thriller +184655,Krotoa (2017),Drama|Romance +184657,The Recce (2017),Drama +184659,Birdshot (2016),Drama|Mystery|Thriller +184661,The Last Enemy (2008),Drama|Romance|Thriller +184663,Rosa: The Movie (2007),Children|Comedy +184667,Expedition Happiness (2017),Documentary +184669,Devil's Whisper (2017),Horror +184673,Sinister Minister (2017),Drama|Thriller +184675,Zombi 3 (1988),Action|Horror|Sci-Fi +184677,Little Red Wagon (2012),Drama +184679,Blackmail (2017),Comedy +184681,The Troubles of Alfred (1972),Comedy +184683,Crime of the Century (1996),Crime|Drama +184685,Legend of the Demon Cat (2017),Drama|Fantasy|Mystery +184687,Muse (2017),Thriller +184689,Hostile (2017),Drama|Horror|Romance +184691,Game of Death (2017),Horror|Thriller +184693,It Came from the Desert (2017),Action|Comedy|Horror +184695,Todos tus secretos (2014),Comedy|Thriller +184697,The BBQ (2018),Comedy +184699,Traces of Sin (2017),Thriller +184701,The Girl from the Wardrobe (2013),Comedy|Drama +184703,The Body Tree,Horror|Thriller +184705,You Stupid Man (2002),Comedy|Drama|Romance +184707,Battlecreek (2016),Drama +184709,I Am Elizabeth Smart (2017),Documentary +184713,SPF-18 (2017),Romance +184715,Edith+Eddie (2017),Documentary +184717,Lost Property Office (2017),Animation|Drama +184719,Achoo (2017),Animation|Comedy +184721,First Reformed (2017),Drama|Thriller +184723,Little Boy Blue (2017),Crime|Drama +184725,Traffic Stop (2017),Documentary +184727,Quadroon (1971),Drama +184729,Seeing Allred (2018),Documentary +184731,Nightworld (2017),Horror|Thriller +184733,Blessed (2009),Drama +184735,Angelique (2013),Adventure|Romance +184737,A Leading Man (2014),Drama +184739,Knock (2017),Comedy +184741,Finding Your Feet (2017),Comedy +184743,Bobby (2016),Documentary +184745,Alamara (2017),Children|Comedy +184747,Sakhavu (2017),Drama +184749,Solo (2017),Action|Romance|Thriller +184751,Take Off (2017),Drama|Thriller|War +184753,The Mainour and the Witness (2017),Comedy|Drama|Thriller +184755,Oru Mexican Aparatha (2017),Action|Drama +184757,2 Countries (2015),Comedy|Romance +184759,Karinkunnam 6's (2016),Drama +184761,100 Days Of Love (2015),Romance +184763,Aadu Oru Bheegara Jeevi Aanu (2015),Comedy +184765,Annayum Rasoolum (2013),Drama|Romance +184767,Jacobinte Swargarajyam (2016),Children|Drama +184769,Kismath (2016),Drama|Romance +184771,Kunjiramayanam (2015),Comedy|Drama +184773,Mudhugauv (2016),Action|Comedy +184775,Ore Mukham (2016),Thriller +184777,Vellimoonga (2014),Comedy|Romance +184779,Simran (2017),Crime|Drama|Romance|Thriller +184781,Sachin: A Billion Dreams (2017),Documentary|Drama +184783,The Companion (2016),Drama +184785,Eternal Homecoming (2013),Drama +184787,Avariya - Cop's Daughter (1989),Action|Drama +184789,Anna Pavlova (1983),Drama +184791,Fred Armisen: Standup for Drummers (2018),Comedy +184793,In the Aisles (2018),Drama +184795,The Wizard of Speed and Time (1989),Comedy|Sci-Fi +184797,"Papers, Please: The Short Film (2018)",Drama|Thriller +184799,Deathwatch (1966),Drama +184801,Born Strong (2017),Documentary +184803,Little Bitches (2018),Comedy +184805,Influence (2015),Comedy|Crime|Fantasy +184807,Padman (2018),Comedy|Drama +184809,The Obsessed (1952),Drama|Mystery +184811,The Blue Hour (1971),Drama +184813,The Moonlight Sonata (1988),Comedy|Horror|Thriller +184815,Hunter's Blood (1986),Action|Horror +184817,Lunch Meat (1987),Drama|Horror +184819,Bridge to Nowhere (1986),Drama|Horror|Thriller +184821,The Pulitzer At 100 (2017),Documentary +184823,"Nancy, Please (2012)",Drama +184825,Another Wolfcop (2016),Comedy|Horror +184827,Schwarz und weiß wie Tage und Nächte (1978),(no genres listed) +184829,Zombillénium (2017),Animation|Comedy|Fantasy +184831,Guardians of the Tomb (2018),Action|Adventure|Horror +184833,Hunter in the Dark (1979),Action|Adventure|Drama +184835,Lu Over the Wall (2017),Animation|Children|Fantasy +184839,Sworn to the Drum: A Tribute to Francisco Aguabella (1995),(no genres listed) +184841,Kid Glove Killer (1942),Crime +184845,The Looking Planet (2014),Adventure|Animation +184847,Green Chimneys (1997),(no genres listed) +184849,Time to Run (1974),Children|Drama +184851,"We Are Cheerful, Happy, Talented! (1986)",Comedy|Drama|Romance +184853,Suspension of Disbelief (2012),(no genres listed) +184855,A Gentle Creature (2017),Drama +184857,Contraband (1980),Action|Crime|Drama|Thriller +184859,A Stray (2016),Drama +184861,The Founding Of An Army (2017),Drama +184865,Sherlock Gnomes (2018),Animation|Children|Comedy|Fantasy|Mystery|Romance +184867,People You May Know (2017),Comedy|Drama|Romance +184869,Golden Slumber (2018),Drama|Thriller +184871,Western World (2017),Western +184873,Hello Carter (2013),Comedy|Drama +184875,Breaking the Code (1996),Drama +184877,Playing Doctor (2014),Comedy|Romance +184879,The Taste of Apple Seeds (2014),Drama +184881,Bloody Homecoming (2012),Horror +184883,Song from the Forest (2014),Documentary +184885,Erase and Forget (2017),Documentary +184887,Meditation Park (2017),(no genres listed) +184889,Mary Goes Round (2017),Drama +184891,Don't Talk to Irene (2017),(no genres listed) +184893,Ava (2017),(no genres listed) +184895,The Four Skulls of Jonathan Drake (1959),Horror|Mystery +184897,In-Shadow: A Modern Odyssey (2017),Animation|Mystery +184899,Baroque (1989),Documentary +184901,Living With Lincoln (2015),Documentary +184903,Joy Road (2011),Crime|Drama +184905,Manolo: The Boy Who Made Shoes for Lizards (2017),Documentary|Drama +184907,Half Magic (2018),Comedy|Romance +184909,Operation Red Sea (2018),Action|Adventure +184911,The Red Monks (1988),Horror +184913,Seat 25,(no genres listed) +184915,Daredevils of the Red Circle (1939),Action|Crime +184917,Bowie: The Man Who Changed the World (2016),Documentary +184919,Shake the Dust (2014),Documentary +184921,Love of My Life (2013),Horror|Thriller +184923,A Plastic Ocean (2016),Documentary +184925,Errementari (2018),Fantasy|Horror +184927,Cherchez la Femme (2017),Comedy +184929,Political Animals (2016),Documentary +184931,Death Wish (2018),Action|Crime|Drama|Thriller +184933,Kirk Cameron's Connect (2018),Documentary|Sci-Fi +184935,Nostalgia (2018),Drama +184937,Irreplaceable You (2018),Comedy|Drama|Romance +184939,Broken (2018),Crime|Drama +184941,Sonu Ke Titu Ki Sweety (2018),Comedy|Romance +184943,Oscar Pistorius: Blade Runner Killer (2017),Drama +184945,The Elizabeth Smart Story (2003),Drama +184947,Chatterbox (2009),Children|Comedy +184949,Turbulence (2016),Action|Drama|Thriller +184951,The Twin (2017),Drama|Horror|Mystery|Thriller +184953,A Heavenly Christmas (2016),Drama|Fantasy +184955,November Christmas (2010),Drama +184959,Stubble Trouble (2000),Animation +184961,In Search of Dr. Seuss (1994),Animation|Children|Comedy +184963,Taking Flight (2015),Adventure|Animation|Children +184965,Fatal Games (1984),Horror +184967,Jungle Child (2011),Adventure|Drama +184969,White Fang (1997),(no genres listed) +184971,The Miracle Maker (2000),Animation|Children +184973,Buster & Chauncey's Silent Night (1998),Animation|Children +184975,Sport Goofy in Soccermania (1987),(no genres listed) +184977,And So We Put Goldfish in the Pool (2017),Drama +184979,Big Bear (2017),Comedy +184981,Vampire Vs Vampire (1989),Action|Comedy|Horror +184983,Jess & James (2015),Drama +184985,Loggerheads (1978),Comedy +184987,A Wrinkle in Time (2018),Adventure|Children|Fantasy|Sci-Fi +184989,Dovlatov (2018),Drama +184991,Touch Me Not (2018),Drama +184993,Shubh Mangal Saavdhan (2017),Comedy|Romance +184995,City Lights (2014),Drama|Thriller +184997,"Love, Simon (2018)",Comedy|Drama +184999,Overboard (2018),Comedy|Romance +185001,I Feel Pretty (2018),Comedy +185003,Marlon Wayans: Woke-ish (2018),Comedy +185005,Heartthrob (2017),Thriller +185007,The Contender,Documentary +185009,Octobre (1994),(no genres listed) +185011,The Man Who Would Not Die (1975),Mystery +185013,The Place (2017),Comedy|Drama +185015,Magma: Volcanic Disaster (2006),Action|Thriller +185017,Chasing 3000 (2010),Drama +185019,Infidelity in Suburbia (2017),Thriller +185021,Stacker (2013),Documentary +185025,Beyond the Edge (2018),Adventure|Fantasy +185027,A Winter Rose (2016),Drama +185029,A Quiet Place (2018),Drama|Horror|Thriller +185031,Alpha (2018),Adventure|Thriller +185033,I Kill Giants (2018),Drama|Fantasy|Thriller +185035,Tummy Trouble (1989),Animation|Comedy +185037,Never Here (2017),Drama|Thriller +185039,Roller Coaster Rabbit (1990),Animation|Comedy +185041,Trail Mix-Up (1993),Animation|Comedy +185043,The Joy of Singing (2008),Comedy|Crime +185045,Ringo and His Golden Pistol (1966),Western +185047,Sacrifice (2015),Drama|Thriller +185049,Bandera Bandits (1972),Western +185051,Haunters: The Art of the Scare (2017),Documentary +185053,Kidnapped: The Hannah Anderson Story (2015),Crime|Drama|Thriller +185055,Closed for the Season (2010),Horror +185057,The Mummy Theme Park (2000),Horror +185059,Ghost Game (2005),Comedy|Horror +185061,4 Wedding Planners (2011),Comedy +185063,Dream House (1998),Horror|Sci-Fi|Thriller +185065,Best Player (2011),Children|Comedy +185067,Special Delivery (2008),Comedy +185069,Termination Point (2007),Action|Adventure|Sci-Fi|Thriller +185071,The Cradle Will Fall (2004),Thriller +185073,Stranger with My Face (2009),Drama|Mystery|Thriller +185075,License to Kill (1984),Drama|Thriller +185077,Hanson and the Beast (2017),Comedy|Fantasy +185079,Farewell China (1990),Drama +185081,Annabelle's Wish (1997),Animation|Children +185083,"Classic Albums: Sex Pistols - Never Mind The Bollocks, Here's The Sex Pistols (2002)",Documentary +185085,The Legend of Earl Durand (1980),(no genres listed) +185087,A Trip to the Moon (2017),Drama +185089,This Is How the World Ends (2000),Comedy +185093,Girl on the Run (1953),Crime|Mystery +185095,The Naked Road (1959),Crime +185097,The 7th Commandment (1961),(no genres listed) +185101,Fallguy (1962),Crime +185103,Stark Fear (1962),Drama +185105,Con Man (2018),Drama +185107,Schubert in Love (2016),Comedy +185109,Disobedience (2018),Drama|Romance +185111,Gangsta (2018),Crime +185113,Honor Thy Father (2015),Crime|Drama|Thriller +185115,The City and the Dogs (1985),Drama +185117,Captain Pantoja and the Special Services (2000),Comedy|Drama +185119,Red Ink (2000),Crime|Drama +185121,Gods (2008),Drama +185123,The Bad Intentions (2011),Comedy|Drama +185125,A los 40 (2014),Comedy +185127,Un día sin sexo (2005),Comedy|Drama +185129,Niñas Araña (2017),Drama +185131,Rocanrol 68 (2013),Comedy +185133,Who Killed the White Llama? (2007),(no genres listed) +185137,Nadar solo (2003),Drama +185139,Sightseeing (2009),(no genres listed) +185141,Como un avión estrellado (2005),(no genres listed) +185143,La vida de alguien (2015),(no genres listed) +185145,Gregorio (1982),Drama +185147,Julianne (1988),Children|Drama +185149,Mañana te cuento (2005),Comedy|Drama|Romance +185151,Piratas en el Callao (2005),Adventure|Animation +185153,The Gospel of the Flesh (2013),Drama +185155,Viejos amigos (2014),Adventure|Comedy|Drama +185157,Sigo siendo (2013),Documentary +185159,Videophilia (and Other Viral Syndromes) (2015),(no genres listed) +185161,The Elf (2017),Horror +185163,A Christmas Visitor (2002),Drama +185165,I babysitter (2016),(no genres listed) +185167,Battle of the Drones (2017),Action|Sci-Fi +185169,The Strangers: Prey at Night (2018),Horror|Thriller +185171,The Hurricane Heist (2018),Action|Crime|Thriller +185175,Attenborough's Journey (2010),Documentary +185177,BFF: Best Friends Forever (2009),Comedy +185179,Born to Fly: Elizabeth Streb vs. Gravity (2014),Documentary +185181,Brian Regan: The Epitome of Hyperbole (2008),Comedy +185187,Cirque du Soleil: Journey of Man (2000),Children|Drama +185189,City of God (2011),Crime|Thriller +185191,Contact (1992),(no genres listed) +185193,Creating Freedom: The Lottery of Birth (2013),Documentary +185197,Double Jeopardy (1955),Crime +185199,Earth 2100 (2009),Documentary +185201,Gary Gulman: In This Economy? (2012),Comedy +185205,Free to Be… You and Me (1974),Animation|Children +185207,Germans & Jews (2016),Documentary +185211,Heroes (2008),(no genres listed) +185213,Cirque du Soleil: Alegría (2001),Children|Documentary +185215,iCarly: iGo to Japan (2008),Children|Comedy +185217,Miss Evers' Boys (1997),Drama +185221,Pavilion (2012),Drama +185223,Scalene (2011),Thriller +185225,Taxi Driver (1954),Romance +185227,Brief History of Disbelief (2004),Documentary +185229,The Bad Kids (2016),Documentary +185231,"The Chronicles of Narnia: The Lion, the Witch and the Wardrobe (1988)",Adventure|Children|Fantasy +185233,The Fall (1969),Documentary|War +185235,The Future of Food (2004),Documentary +185237,The Purifiers (2005),Action|Adventure|Sci-Fi +185239,The Quantum Activist (2009),Documentary +185245,Martírio (2017),Documentary +185247,É forte un casino (1982),Comedy +185251,Colpo di fulmine (1985),Comedy +185253,I'm Going to Live by Myself (1982),Comedy +185259,It Happened in Penkovo (1957),Drama|Romance +185261,Number One (2017),Comedy|Drama +185263,Deaf child (2017),Documentary +185265,Mandy (1952),Drama +185267,Paradox (2017),Action|Crime|Drama +185269,My Old Man's Place (1971),Drama|War +185271,The Intruder (2017),Drama +185273,Dead Eyes of London (1961),Crime|Thriller +185275,The Ringer (1964),Crime|Thriller +185277,On Demande une Brute (1934),Comedy +185279,School for Postmen (1947),Comedy +185281,Fun Sunday (1935),Comedy +185283,Evening Classes (1967),Comedy +185285,Ice (2018),Comedy|Romance +185287,Nature Boy (2017),Documentary +185289,Weddings and Other Disasters (2010),Comedy +185291,Lay It Down (2001),(no genres listed) +185293,Ticket to Heaven (1981),Drama +185295,The Outsider (2018),Crime|Drama|Mystery +185297,The Devil's Arithmetic (1999),Drama|Sci-Fi|Thriller +185299,Names in Marble (2002),Drama|Romance|War +185301,Knuckleface Jones (1999),Comedy +185303,The Dead Nation (2017),Documentary +185305,The Lullaby (2017),Horror +185307,Far Cry 5: Inside Eden's Gate (2018),Drama|Mystery +185309,The Cabbage Fairy (1896),Fantasy +185311,The Fixer (2016),Drama +185313,Я худею (2018),Children|Comedy +185315,Gauguin : Voyage de Tahiti (2017),(no genres listed) +185317,The Empty Hands (2017),Drama +185319,Prospect (2018),Sci-Fi|Western +185321,A River Below (2017),Documentary +185323,Yozgat Blues (2013),(no genres listed) +185325,The Wonderful Years That Sucked (1997),Comedy +185329,La tenerezza (2017),(no genres listed) +185331,Girls Alone (2003),(no genres listed) +185335,Bent (2018),Crime|Thriller +185337,Hans Zimmer: Live in Prague (2017),(no genres listed) +185339,The Lost Brother (2017),Crime|Drama|Thriller +185341,Rats (2016),Documentary +185343,Rock Monster (2008),Fantasy|Sci-Fi +185345,Mack the Knife (1989),Comedy|Crime|Romance +185347,About Love. Adults Only (2017),Comedy|Drama|Romance +185349,405 (2000),Action|Comedy|Thriller +185351,Three Sappy People (1939),Comedy +185353,"Ah, L'Amour (1995)",Animation|Comedy +185355,Dancing Ghosts (1992),Comedy|Drama|Romance +185357,Zero,(no genres listed) +185359,The Hunt for Troy (2007),Adventure +185361,Amazons and Gladiators (2001),Action|Adventure|Drama +185363,Instant Dreams (2017),Documentary|Sci-Fi +185365,Good Manners (2017),Drama|Fantasy|Horror +185367,Zapruder Film of Kennedy Assassination (1963),Crime|Documentary +185369,The Enchanted Drawing (1900),Animation|Comedy +185371,Kiri-Kis (1907),Comedy|Fantasy +185373,Muppet Guys Talking: Secrets Behind the Show the Whole World Watched (2017),Documentary +185375,East of Sweden (2018),Drama|Thriller +185377,Deeply (2000),Drama|Mystery|Romance|Thriller +185379,The Farmer (1977),Action +185381,"Damilola, Our Loved Boy (2016)",Crime|Drama|Mystery +185383,My Prostitute Love (1968),Drama|Romance +185385,Midnight Sun (2018),Drama|Romance +185387,Gad Elmaleh: American Dream (2018),Comedy +185389,Natalia Valdebenito : The Special (2018),Comedy +185391,Malena Pichot: Estupidez compleja (2018),Comedy +185393,Adel Karam: Live from Beirut (2018),Comedy +185395,Agustín Aristarán: Soy Rada (2018),Comedy +185397,Kavin Jay: Everybody Calm Down! (2018),Comedy +185399,Sebastián Marcelo Wainraich (2018),(no genres listed) +185401,Mau Nieto: Viviendo sobrio...desde el bar (2018),Comedy +185403,Ricardo Quevedo: Hay gente así (2018),Comedy +185405,Todd Glass: Act Happy (2018),Comedy +185407,Harith Iskander: I Told You So (2018),Comedy +185409,Arango y Sanint: Ríase el show (2018),Comedy +185411,Katt Williams: Great America (2018),Comedy +185413,Alejandro Riaño: Especial de stand up (2018),Comedy +185415,Brian Regan: Nunchucks and Flamethrowers (2017),Comedy +185417,DeRay Davis: How to Act Black (2017),Comedy +185419,Alexis de Anda: Mea Culpa (2017),(no genres listed) +185421,If There Be Thorns (2015),Drama +185423,First Match (2018),Drama +185425,The Titan (2018),Sci-Fi +185427,6 Balloons (2018),Drama +185429,Sun Dogs (2017),Comedy|Drama +185431,Come Sunday (2018),Drama +185433,Benji (2018),Children +185435,"Game Over, Man! (2018)",Action|Comedy +185437,Take Your Pills (2018),Documentary +185439,The Rachel Divide (2018),Documentary +185441,Jewel's Catch One (2016),Documentary +185443,Ricky Gervais: Humanity (2018),Comedy +185445,Traces of Death III (1995),Documentary|Horror +185449,Trail of Tears (1995),Drama +185453,3 Nights (2001),Drama|Thriller +185459,Trimurti (1995),(no genres listed) +185461,The Drinker (1995),Drama +185463,"Der Trip - Die nackte Gitarre 0,5 (1996)",Comedy +185465,Boxer (1995),Comedy +185467,VHS Revolution (2017),Documentary +185469,"Selma, Lord, Selma (1999)",Drama +185471,The Stolen Princess (2018),Adventure|Animation|Comedy +185473,Blockers (2018),Comedy +185475,Custody (2018),Drama +185477,"Georgia, Georgia (1972)",Drama|Romance +185479,Stream of Love (2013),(no genres listed) +185481,Ghostland (2018),Horror +185483,Camera Store (2016),Drama +185485,Nude (2017),Documentary +185487,Hell on Frisco Bay (1955),Crime +185489,To Each His Own (2017),Comedy|Drama +185491,MisLead: America's Secret Epidemic,Documentary|Drama +185493,The Green Lie (2018),Documentary +185497,Brexitannia (2017),Documentary +185499,The Occupation of the American Mind (2016),Documentary +185501,Circle of Poison (2015),(no genres listed) +185503,The Divide (2015),Documentary +185511,Meister des Todes (2015),Thriller +185513,The Chambermaid Lynn (2015),Drama +185515,Defamation (2009),Documentary +185517,Night of 7 Years (2018),(no genres listed) +185519,I Can Speak (2017),Comedy|Drama +185521,Interval (1973),Romance +185523,Swagger (2016),Documentary +185525,The Challenge (2016),Documentary +185527,Status: Available (2016),Comedy|Romance +185531,Suburban Virgin (2003),Drama +185533,Nate and Hayes (1983),Action|Adventure|Comedy +185535,Imperfections (2016),Comedy|Crime|Mystery +185537,Nancy (2018),Thriller +185539,Oh Lucy! (2018),Comedy|Drama +185541,Abandoned (2015),Drama|Thriller +185543,Deception (2004),Drama|Mystery|Romance +185545,The Current War (2018),Drama +185547,Sniffer (2006),Drama +185549,Finding Graceland (1999),Drama +185551,Grillo vs Grillo (2017),Comedy +185553,Alex & Eve (2015),Drama|Romance +185555,Tiger by the Tail (1970),Drama|Thriller +185557,Red Planet Mars (1952),Sci-Fi +185561,Let Joy Reign Supreme (1975),Drama|War +185563,Look Again (2016),Comedy +185565,Congreso en Sevilla (1955),(no genres listed) +185567,El grano de mostaza (1962),Comedy +185569,7 Days in Entebbe (2018),Drama|Thriller +185571,I Can Only Imagine (2018),Children|Drama +185573,"Where Were You, My Son? (2008)",(no genres listed) +185575,Our Own (2004),Action|Drama|War +185577,The Girl Most Likely to... (1973),Comedy +185579,California Typewriter (2017),Documentary +185581,Hello Monkey (1978),(no genres listed) +185583,Valley of Shadows (2017),Horror +185585,Pacific Rim: Uprising (2018),Action|Fantasy|Sci-Fi +185587,Café Derby (2015),Drama +185591,Death of a Poetess (2017),Drama +185593,Magnum Opus (2017),Drama|Thriller +185595,Razor Blade Smile (1998),Horror|Thriller +185597,Dear Dictator (2018),Comedy +185599,Sea of Blood (1969),(no genres listed) +185601,Raid (2018),Crime|Drama|Thriller +185603,Two Down (2015),Comedy|Crime +185605,LEGO DC Comics Super Heroes: Justice League: Cosmic Clash (2016),Action|Adventure|Animation|Children|Comedy +185609,Contemporary Color (2016),Documentary +185611,Hermia & Helena (2017),Drama +185613,Gymnastics for the tail (1979),(no genres listed) +185617,Active Adults (2017),Comedy|Drama +185619,Out in the Silence (2009),Documentary +185621,The Man That Was Turned Into Juice (1981),Drama +185623,High-Rise (2009),Documentary +185625,The Heroes of Evil (2015),Drama +185627,JL's Passion (2016),Documentary +185629,La Bare (2014),Documentary +185631,Making the American Man (2016),Documentary +185633,O Escaravelho do Diabo (2016),Adventure|Mystery +185635,My Enemy's Enemy (2007),Documentary +185637,Crítico (2008),Documentary +185639,Hit and Run (2009),Drama|Thriller +185641,O Estopim (2014),Documentary +185643,WWE: Twist of Fate - The Matt and Jeff Hardy Story (2008),Documentary +185645,Stone Cold Steve Austin: The Bottom Line on the Most Popular Superstar of All Time (2011),Documentary +185647,"WWE: Ladies and Gentlemen, My Name Is Paul Heyman (2014)",Documentary +185649,The History of WWE: 50 Years of Sports Entertainment (2013),Documentary +185651,WWE: Triple H: Thy Kingdom Come (2013),Documentary +185653,WWE: The Top 25 Rivalries in Wrestling History (2013),(no genres listed) +185655,WWE: The Top 100 Moments In Raw History (2012),Documentary +185657,WWE: Greatest Wrestling Stars of the '90s (2009),(no genres listed) +185659,Macho Madness - The Randy Savage Ultimate Collection (2009),(no genres listed) +185661,WWE: Top 50 Superstars of All Time (2010),Documentary +185663,WWE: OMG! The Top 50 Incidents in WWE History (2011),(no genres listed) +185665,WWE: You Think You Know Me? The Story of Edge (2012),Action|Documentary +185667,WWE: 50 Greatest Finishing Moves in WWE History (2012),(no genres listed) +185669,CM Punk: Best in the World (2012),Action|Drama +185671,nWo: The Revolution (2012),Documentary +185673,The Falls: Testament Of Love (2013),Drama +185675,Beneath the Skin (2015),(no genres listed) +185677,Shed My Skin (2016),Drama +185679,The Falls: Covenant of Grace (2016),Drama|Romance +185681,Bruno & Boots: The Wizzle War (2017),Children|Comedy +185683,Screwed (2017),Drama|Romance +185685,O Diário de Tati (2012),Comedy +185687,Dirty Teacher (2013),Thriller +185689,Shalom Italia (2017),Documentary +185691,Lu-To (2013),(no genres listed) +185693,I Love You Renato (2013),Drama|Romance +185695,To Russia With Love (2014),(no genres listed) +185697,The Silence of the Sky (2016),Drama|Thriller +185699,Uma Loucura de Mulher (2016),Comedy|Romance +185701,When I Was Alive (2014),Horror|Thriller +185703,Jonah (2016),Drama|Thriller +185705,McCanick (2014),Crime|Drama|Thriller +185707,Turtle Beach (1992),Drama|Thriller +185709,Rocco (2016),Documentary +185711,Drown (2015),Drama +185713,The Cambridge Squatter (2017),Documentary|Drama +185715,Layla M. (2016),Drama +185717,The Masseur (2005),Drama|Romance +185719,"I Am Nojoom, Age 10 and Divorced (2014)",Drama +185721,Sensitive: The Untold Story,(no genres listed) +185723,Lilith's Awakening (2016),Fantasy|Horror|Thriller +185725,Rezeta (2012),Comedy|Drama +185727,The silence (2015),Drama +185729,Tattoo (2013),Drama +185731,Rock (2017),Adventure|Drama +185733,Furlough (2018),Comedy +185737,"We Love You, Sally Carmichael! (2017)",Comedy|Romance +185739,That’s Not My Dog! (2018),Comedy +185741,Five Fingers for Marseilles (2017),Western +185743,Zaineb Hates the Snow (2016),Documentary +185745,All the Queen's Horses (2017),(no genres listed) +185747,The Electric Chair (1976),Crime|Drama +185749,The Last Horror Film (1982),Comedy|Horror +185751,40 (2009),Action|Drama +185753,Selfie from Hell (2018),Horror|Mystery +185755,Natural Born Pranksters (2016),Comedy +185757,Noroît (1976),Adventure|Drama|Fantasy +185759,Demon House (2018),Documentary|Horror|Thriller +185761,Throne of Elves (2017),Animation|Fantasy +185763,Weg van jou (2017),Comedy|Romance +185765,JourneyQuest (2010),Adventure|Comedy|Fantasy +185767,Coyote's Morning (2001),Action|Comedy|Drama|Romance +185769,Are We Not Cats (2016),Comedy|Horror|Romance +185771,Sidewinder 1 (1977),Action +185773,Jungle Warriors (1984),Action|Adventure +185775,Street Asylum (1990),Action|Sci-Fi +185777,Genesis II (1973),Sci-Fi +185779,"A Minute To Pray, A Second To Die (1968)",Action|Crime|Drama|Western +185781,The Tell-Tale Heart (1971),Crime|Drama|Horror +185783,Eroica (2003),Drama +185785,Apartment 212 (2017),Horror +185787,The Harvest (1992),Thriller +185789,Torapia (2004),Comedy +185791,Dark Night (2018),Drama +185793,Allure (2018),Drama|Romance|Thriller +185795,Toll Booth (2011),Drama +185797,Skyler (2012),(no genres listed) +185799,Arabesque (1989),Comedy|Drama|Fantasy +185803,Ghosted (2009),Drama|Mystery|Romance|Thriller +185807,Naomi (2010),Drama +185809,Chekhovian Motifs (2002),(no genres listed) +185811,Horror Rises from the Tomb (1973),Horror +185813,Vengeance of the Zombies (1973),Horror +185815,Blue Eyes of the Broken Doll (1974),Horror|Mystery|Thriller +185817,The Beasts' Carnival (1985),Crime|Horror +185819,Thirst (2013),(no genres listed) +185821,Winter Journey (2013),Drama|Romance +185823,The Exciled Cow (2014),Children|Comedy|Drama +185825,Eşrefpaşalılar (2010),Comedy|Drama +185827,Aysecik in the Land of the Magic Dwarfs (1971),(no genres listed) +185829,The Tricky Master (1999),Action|Comedy +185831,Sutter's Gold (1936),Western +185835,The Mind's Eye (1990),(no genres listed) +185837,One Life of Two Women (2015),(no genres listed) +185839,Black Level (2017),Drama +185841,Heavy Trip (2018),Comedy +185843,Ammore e Malavita (2017),Comedy|Romance +185845,The Royal Exchange (2017),(no genres listed) +185847,La Vanité (2015),Comedy|Drama +185849,Días contados (1994),Drama|Thriller +185851,The Last Movie Star (2017),Drama +185853,Mustang Island (2017),Comedy|Drama +185855,Boogie Vision (1977),Animation|Comedy +185857,B-Happy (2004),(no genres listed) +185859,Ruben's Place (2012),Children|Drama +185861,Soccer Killer (2017),Action|Comedy|Fantasy +185865,Two Half-Times in Hell (1961),Drama|War +185867,Iron Men (2017),Documentary +185869,10x10 (2018),Thriller +185871,Food Evolution (2016),Documentary +185873,My Christmas Prince (2017),(no genres listed) +185875,Shameless Propaganda (2013),Documentary +185877,Memoirs of a Murderer (2017),Drama|Thriller +185879,Time Out (1985),Animation|Fantasy +185881,Action Man (1967),Crime|Drama +185883,Laugh or Die (2018),Comedy|Drama +185887,Jag älskar dig - En skilsmässokomedi (2016),Comedy|Drama +185889,ארבינקא (1967),Comedy|Crime|Romance +185891,The Big Dig (1969),Comedy +185893,The Fox in the Chicken Coop (1978),Comedy +185895,The Pill (1972),Drama|Fantasy +185897,The Quarry (1990),Drama +185899,Ο Παπαφλέσσας (1971),Drama|War +185901,The Light of the Moon (2017),Drama +185903,La Barracuda (2017),Drama|Thriller +185905,The Third Murder (2017),Drama|Mystery +185909,Richard Peter Johnson (2015),Comedy +185913,Shadows in the Storm (1988),(no genres listed) +185915,"Real, la pelicula (2005)",Documentary +185917,Stories from the Kronen (1995),Drama +185919,Tales of the Stinking Military Service (1994),Comedy +185921,Diary for My Children (1984),Drama +185923,The Best Way to Walk (1976),Drama +185925,Good People (2014),Drama +185927,Wild Wild Country (2018),Documentary +185929,Six Hundred and Sixty-Six (1972),Drama|Sci-Fi +185931,Saint Clara (1996),Drama|Fantasy|Romance +185933,Made in Israel (2001),Drama +185935,The Seven Days (2008),Drama|Thriller|War +185937,Two Moons (1993),Drama +185939,Correo de Indias (1942),(no genres listed) +185941,Death in the Desert (2016),(no genres listed) +185943,La Cucina (2007),Drama +185945,The Illusionists (2015),Documentary +185947,Xibalba (2017),Horror|Sci-Fi +185949,The Rice People (1994),Drama +185951,Coexister (2017),Comedy +185953,My Generation (2000),Documentary +185955,Devil's Freedom (2017),Documentary +185957,I Dream in Another Language (2017),Drama|Fantasy +185959,Wajib (2017),Drama +185961,Airlords of Airia (2013),Sci-Fi +185963,Ghost Town (1988),Horror|Western +185965,Murder on the Cape (2017),Drama +185967,The Hard Road (1970),Drama +185969,Plastic China (2016),Documentary +185971,Fires of Kuwait (1992),Documentary +185973,Breathing Lessons (1994),(no genres listed) +185975,Fast Color (2018),Drama|Sci-Fi|Thriller +185977,Bad Samaritan (2018),Crime|Drama +185979,Ghost Stories (2018),Drama|Horror +185981,Spinning Man (2017),Drama|Mystery|Thriller +185983,Kings (2017),Crime|Drama|Romance +185985,Scott and Sid,Drama +185987,The Rider (2018),Drama +185989,Truth or Dare (2018),Horror|Thriller +185991,The Devil and Father Amorth (2017),Documentary +185993,20 Weeks (2017),Drama|Romance +185995,Tårtgeneralen (2018),Comedy +185997,Life of the Party (2018),Comedy +185999,Beast (2018),Drama +186001,True Crimes (2016),Action|Crime|Thriller +186003,On Chesil Beach (2018),Drama +186005,Book Club (2018),Comedy|Romance +186007,What We Have (2014),(no genres listed) +186009,Retake (2016),Drama|Romance +186011,Rodeo (2018),Documentary +186013,The Story of Richard O (2007),Drama +186015,Anne of Green Gables: A New Beginning (2008),Children|Drama +186017,Hansie (2008),Drama +186021,Scorched (2008),Drama|Sci-Fi|Thriller +186025,Killer nurse (2008),Crime|Horror +186027,The Wiggles Movie (1997),Children +186029,The 414s (2015),Documentary +186033,Lumière ! L'aventure commence (2017),Documentary +186037,Captain Clegg (1962),(no genres listed) +186039,Paranoiac (1963),Drama|Horror|Mystery|Thriller +186041,Night of Fear (1972),Horror +186043,Footrot Flats: The Dog's Tale (1986),Animation|Comedy +186045,Resurrection (1999),Crime|Drama|Horror +186047,Five Time Champion (2012),Drama +186049,Bedways (2010),Drama|Romance +186053,Princess (2014),(no genres listed) +186057,Hemel (2012),Drama +186059,Tag und Nacht (2010),Drama +186061,Save Your Legs! (2013),Comedy +186065,The Ultimate Weapon (1998),Action|Thriller +186067,Before Dawn (2012),Horror +186071,Jappeloup (2013),Drama +186073,Looking for Alibrandi (2000),Drama +186079,Moonlight (2002),(no genres listed) +186081,Thou Wast Mild and Lovely (2014),Comedy|Romance|Thriller +186087,Love Battles (2013),Drama +186091,Black Mask II (2002),Action|Adventure|Drama|Sci-Fi +186093,Tagteam (1991),(no genres listed) +186095,Paranormal Asylum: The Revenge of Typhoid Mary (2013),Horror +186097,A Talking Pony!?! (2013),Children +186101,Ashakara (1991),Drama +186103,Beneath Clouds (2002),Drama|Romance +186105,Black and White (2002),Drama +186107,Ariana's Quest (2002),Action|Fantasy +186109,Kingdom Hospital (2004),Horror +186111,Thomas & Friends: Tale of the Brave: The Movie (2014),Animation|Children +186113,A Tiger's Tail (2014),Children +186117,Fat Pizza vs Housos (2014),(no genres listed) +186119,A Gift Horse (2015),Children +186121,Amateur Teens (2015),Drama +186125,Scooby-Doo! and WWE: Curse of the Speed Demon (2016),Animation +186127,Homesick (2015),Drama +186129,The Secrets of Emily Blair (2016),Thriller +186133,The Nutcracker Sweet (2015),Adventure|Animation|Fantasy +186135,Stormageddon (2015),Action|Drama|Sci-Fi|Thriller +186137,Choose Your Own Adventure - The Abominable Snowman (2006),Children +186139,Gamba (2015),Animation|Children +186145,Kokoda (2006),Action|Drama +186147,The Dread (2007),Horror|Thriller +186151,Robbery Under Arms (1957),Drama|Western +186155,LEGO Friends: Girlz 4 Life (2016),Animation|Children +186157,Diary of a Nudist (1961),Romance +186159,Tangled: Before Ever After (2017),Adventure|Animation|Children|Comedy|Fantasy +186165,Barbie & Her Sisters in a Puppy Chase (2016),Animation|Children +186167,Ice Sharks (2016),Action|Adventure|Horror|Sci-Fi +186169,Jurassic School (2017),Adventure|Children +186171,Barbie Video Game Hero (2017),Animation +186173,Santo and Blue Demon Against the Monsters (1970),Action|Adventure|Fantasy +186175,Fireman Sam: Alien Alert! (2017),Animation +186177,Trolls Holiday (2017),Adventure|Animation|Children|Comedy|Fantasy +186179,Peppa Pig: My First Cinema Experience (2017),Children +186181,Inn of the Damned (1975),Action|Horror +186183,Love Among the Ruins (1975),Drama +186185,The Games of Countess Dolingen (1981),Drama +186187,Manganinnie (1980),Drama +186189,Grunt! The Wrestling Movie (1985),Action +186195,Amityville: The Evil Escapes (1989),Horror +186197,The BFG (1989),Animation|Children|Fantasy +186199,Ice Palace (1987),Drama|Mystery +186201,The Last Border (1993),Action|Drama|Sci-Fi +186203,Hurricane Season (2009),Drama +186205,Altered Hours (2016),Sci-Fi|Thriller +186207,The Ashram (2018),Fantasy|Thriller +186209,Smartass (2017),Comedy|Drama +186211,Avenging Angel (2007),Action|Drama|Thriller|Western +186213,Nokia Mobile - We were connecting people (2017),Documentary +186215,Lajkó - Gypsy in space (2018),Comedy +186217,Hyper Hamster (2018),Children|Fantasy +186219,The Phantom of the Opera (1962),Drama|Horror|Mystery +186221,Seitokai Yakuindomo Movie (2017),Animation|Comedy +186223,The Executioners (2018),Horror|Thriller +186225,The Man Who Saw Too Much (2015),Documentary +186227,Rain Town (2011),Animation|Drama +186229,Cat Girl Kiki (2006),Drama|Sci-Fi +186233,The Scavengers (1970),Drama +186235,Snap (2010),Drama +186237,Pippin (1981),Comedy +186239,Road Movie (1974),Drama +186241,Forgotten Plague (2016),(no genres listed) +186243,Chairmen (1978),Animation +186245,Dirty Pictures (2010),Documentary +186247,Angels Wear White (2017),(no genres listed) +186249,Acrimony (2018),Drama +186251,God's Not Dead: A Light in Darkness (2018),Drama +186253,Snow-White (1933),(no genres listed) +186255,And This Is Free (1965),Documentary +186257,Criminal Talent (1988),Comedy|Crime|Drama +186259,2 Cool 2 Be 4gotten (2016),Drama +186263,Suicide Squad: Hell to Pay (2018),Action|Animation +186265,Family Fever (2014),Comedy|Drama +186267,The Wagoner (1963),Drama +186269,Mikhaylo Lomonosov (1986),Drama +186271,Shizofreniya (1997),Action|Thriller +186273,The Guardian Angel (2018),Crime|Thriller +186275,Emilie Muller (1994),(no genres listed) +186277,Solsidan (2017),Comedy +186279,Atom Age Vampire (1960),Horror +186281,Nunzio (1978),(no genres listed) +186283,20 Years Of Madness (2016),Comedy|Documentary +186285,Addiction Incorporated (2011),Documentary +186287,Bad Grandmas (2017),Action|Comedy|Crime +186289,Kiss Me Softly (2012),Comedy|Drama +186291,Blow Job (1980),Drama|Horror|Mystery +186293,The Rolling Stones - From The Vault - Sticky Fingers Live At The Fonda Theatre 2015 (2017),(no genres listed) +186295,Scorpion Thunderbolt (1988),Action|Horror +186297,Oleg and the Rare Arts (2016),Documentary +186299,Thirty Souls (2017),Documentary +186301,Sweet Dreams (2003),Drama|Romance +186303,Ears (2017),Comedy +186305,Kodachrome (2018),Drama +186309,Naked Ambition 3D (2014),Comedy +186311,The Guernsey Literary and Potato Peel Pie Society (2018),Drama|Romance +186313,As Life Goes By (2003),(no genres listed) +186315,Moscow - Lopushki (2014),Comedy|Romance +186317,Golden Dawn Girls (2018),Documentary +186319,Roof Sex (2002),Animation +186321,Pigeon: Impossible (2009),Action|Animation +186323,Walls (1988),Animation +186325,Early to Bet (1951),(no genres listed) +186327,Mysterious Mose (1930),(no genres listed) +186329,The Wizard of Speed and Time (1979),Animation|Comedy|Fantasy +186331,Status Update (2018),Comedy|Fantasy +186333,Arjun Reddy (2017),Drama|Romance +186335,Eternal Winter (2018),Drama|Romance +186337,Billy (2018),(no genres listed) +186339,Prodigy (2017),Drama|Sci-Fi|Thriller +186341,Minnie the Moocher (1932),Animation|Comedy +186343,My Grandmother Ironed the King's Shirts (1999),Animation +186345,The Danish Poet (2006),Animation|Romance +186347,Extinct Pink (1969),Animation +186349,Big Bang Big Boom (2010),Animation +186351,Wisdom Teeth (2010),Animation|Comedy +186353,Lord Shango (1975),Drama|Horror +186355,China Is Near (1967),(no genres listed) +186357,Cutting It Short (1981),Comedy +186359,The Fight Within (2016),Action|Romance +186361,Me and My Moulton (2014),Animation +186363,The China Hustle (2018),Documentary +186365,Tigers Are Not Afraid (2017),Fantasy|Horror|Thriller +186367,Operation Odessa (2018),Documentary +186369,The Child of Man (1991),Comedy|Drama +186371,The Pleasure Girls (1965),Drama +186373,Nursery Favorites (1913),(no genres listed) +186375,Arafat & I (2008),(no genres listed) +186377,The Rocking Horse (1962),(no genres listed) +186379,Fill your Heart with French Fries (2016),(no genres listed) +186381,Campeones (2018),Comedy|Drama +186383,The Kovak Box (2006),Mystery|Sci-Fi|Thriller +186385,Redskin Blues (1932),(no genres listed) +186387,Taylor Mead's Ass (1965),(no genres listed) +186389,Murder on the Home Front (2013),Crime|Mystery|Thriller +186391,Papy fait de la résistance (1983),Comedy|War +186393,A Day (2017),Drama|Mystery|Thriller +186395,The Ballerina (2018),Drama|Horror|Thriller +186397,Surviving The Wild (2018),Action|Adventure|Children +186399,The Girls from Thunder Strip (1970),Action +186401,Those Left Behind (2017),Drama +186403,Bangkok Love Story (2007),Action|Drama +186405,Ben 10 - Alien Swarm (2009),Adventure +186407,Pelican Blood (2009),Drama|Romance +186409,At the Edge of the World (2008),Documentary +186411,Summer Coda (2010),Drama|Romance +186413,Dancing Across Borders (2010),Documentary +186415,Hideaways (2011),Fantasy +186417,The Road to Coronation Street (2010),Drama +186419,The Life of Fish (2010),Drama|Romance +186421,Worried About the Boy (2010),Drama +186423,Apart (2011),Drama|Mystery|Romance|Thriller +186425,Gracie! (2009),Comedy|Drama +186427,Dark Metropolis (2010),Sci-Fi +186429,Inside North Korea (2006),Documentary +186431,Amanda Knox: Murder on Trial in Italy (2011),Crime|Drama +186433,Be My Slave (2012),Comedy|Drama|Romance +186435,Borstal Boy (2000),Drama +186437,Billion Dollar Limited (1942),(no genres listed) +186439,Wake (2003),Drama +186441,Showdown (1942),(no genres listed) +186443,And Then Came Summer (2000),Drama|Romance +186445,Some Things That Stay (2007),Drama|Romance +186447,The Sweet Sex and Love (2003),Drama|Romance +186449,Volcano (1942),(no genres listed) +186451,L'uomo perfetto (2005),Comedy +186453,Steal Me (2005),Drama +186455,The Colt (2005),Children|Drama|War +186457,The First Time (1969),Comedy +186459,Jack and Jill vs. the World (2008),Comedy|Romance +186461,The White Planet (2006),Documentary +186463,Home of the Giants (2007),Crime|Drama +186465,Normal (2007),Drama +186467,The Meerkats (2008),Documentary +186469,A Girl Like Me: The Gwen Araujo Story (2006),Drama +186471,Battalion (2018),Sci-Fi +186473,Gone Are the Days (2018),Western +186475,Stealing Paradise (2011),(no genres listed) +186477,Apples from the Desert (2014),(no genres listed) +186479,Prey (2007),Adventure|Horror|Thriller +186481,The Violators (2016),Drama +186483,Triloquist (2008),Horror +186485,Newly Single (2017),(no genres listed) +186487,Lane 1974 (2017),Adventure|Drama +186489,Time of Her Time (2000),(no genres listed) +186491,The Dark Place (2014),Mystery|Thriller +186493,A Spectre is Haunting Europe (2013),Comedy|Drama +186495,Jesus Christ Superstar Live in Concert (2018),Children +186497,When Do We Eat (2005),Comedy +186499,Come As You Are (2011),Comedy|Drama +186501,Heimatkunde (2008),Documentary +186503,Civil Courage (2010),Drama +186505,Angst (2003),Drama +186507,Prinzessinnenbad (2007),Documentary +186509,Immer nie am Meer (2007),Comedy +186511,Meer is nich (2007),Drama +186513,Kroko (2003),Drama +186515,Cook Up a Storm (2017),Drama +186517,Mermaid Got Married (1994),Comedy|Romance +186519,Frank Serpico (2017),Documentary +186521,Pawno (2015),Drama +186523,Universal Horror (1998),Documentary +186525,Cruel But Necessary (2005),Drama +186529,Art History (2011),Drama|Romance +186531,Kissing on the Mouth (2005),Drama|Romance +186533,The Miracle Season (2018),Drama +186535,The Brooklyn Banker (2016),Action|Crime|Drama +186537,Sólo mía (2001),Drama|Romance|Thriller +186539,What Men Talk About 3 (2018),Comedy +186541,My Days of Mercy (2017),Drama|Romance +186543,Claire's Camera (2017),(no genres listed) +186545,The Phoenix Lights...We Are Not Alone (2005),Documentary +186547,Model Minority (2012),Drama +186549,George Lucas in Love (1999),Comedy|Drama|Romance +186551,Paradox (2018),Documentary|Western +186553,Pass Over (2018),Drama +186555,The Cleanse (2018),Comedy|Drama|Fantasy +186557,The Exam (2011),Action|Drama +186559,Richard Linklater: Dream Is Destiny (2016),Documentary +186561,Marcelo Zona Sul (1970),Adventure|Comedy|Drama|Romance +186563,Santo and Blue Demon vs. Dr. Frankenstein (1974),Action|Horror +186565,Happy Anniversary (2018),Comedy|Romance +186567,The Girl Who Knew Too Much (1963),Horror|Thriller +186569,Imitation Girl (2017),Drama|Sci-Fi +186571,Jugend ohne Gott (2017),Crime|Drama|Sci-Fi|Thriller +186573,Do You Trust this Computer? (2018),Documentary +186575,Producing Adults (2004),Comedy|Drama|Romance +186577,Ghost in the Machine (2017),Crime|Sci-Fi|Thriller +186579,Rip Tide (2017),Children|Drama +186581,Thawed Carp (2018),Comedy|Drama +186583,Brides to Be (2016),Drama|Horror|Romance +186585,Gogol. Viy (2018),(no genres listed) +186587,Rampage (2018),Action|Adventure|Sci-Fi +186589,Big Time (2017),Documentary +186591,Staying Alive (2015),Comedy +186593,Boro the Caterpillar (2018),Animation +186595,Sekigahara (2017),War +186597,Mix (2017),(no genres listed) +186599,Keep the Change (2017),Comedy +186601,California Scheming (2014),Thriller +186603,Method (2004),Thriller +186605,Paradise 89 (2018),Drama +186607,The Pagan King (2018),Action|Adventure +186609,Blindspot (2008),Drama|Thriller +186611,Kung Fu Traveler (2017),Action|Sci-Fi +186613,25 Ways to Quit Smoking (1989),(no genres listed) +186615,Autumn Mists (1929),Drama +186617,Camera (2000),Comedy +186619,Rūta (2018),(no genres listed) +186621,Worst Friends (2014),Comedy +186623,Watchers Reborn (1998),Horror|Sci-Fi +186625,Game of Aces (2016),Action|Adventure|War +186627,The Sign of Four (1983),Adventure|Crime|Mystery +186629,Zhenshchina zavtrashevo dnya (1914),(no genres listed) +186631,Everybody Knows (2018),Drama +186633,Sudani From Nigeria (2018),Comedy +186635,Meerkat Moonship (2018),Fantasy +186637,Bobby Jasoos (2014),Action|Comedy|Drama +186639,Kuttanadan Marpappa (2018),Comedy +186641,Science Fair (2018),Documentary +186643,LavaKusha (2017),Comedy|Drama +186645,Sherlock Toms (2017),Comedy|Drama +186647,Varnyathil Aashanka (2017),Comedy +186649,DiwanjiMoola Grand Prix (2018),Comedy|Thriller +186651,Pranchiyettan & The Saint (2010),Children|Comedy +186653,Da Thadiya (2012),Comedy|Drama +186655,Salt N' Pepper (2011),Comedy|Romance +186657,Anuraga Karikkin Vellam (2016),Comedy +186659,Carbon (2018),Adventure|Thriller +186661,Hey Jude (2018),Drama|Romance +186663,Njandukalude Naattil Oridavela (2017),Children|Comedy|Drama +186665,Aadhi (2018),Action|Thriller +186667,Neelakasham Pachakadal Chuvanna Bhoomi (2013),Romance|Thriller +186669,Rani Padmini (2015),Adventure|Drama +186671,Iyobinte Pusthakam (2014),Drama|Thriller +186673,Adventures of Omanakuttan (2017),Comedy|Thriller +186675,Ramaleela (2017),Thriller +186677,Thenmavin Kombath (1994),Children|Comedy +186679,Parava (2017),Comedy +186681,Pattana Pravesham (1988),Comedy +186683,Thanmathra (2005),Drama +186685,Aaram Thamburan (1997),Action|Drama +186687,Spadikam (1995),Action|Drama +186689,Ramante Edanthottam (2017),Drama|Romance +186691,Sunday Holiday (2017),Comedy|Romance +186693,Su.. Su... Sudhi Vathmeekam (2015),Comedy|Drama +186695,Pavada (2016),Comedy|Drama +186697,Sapthamashree Thaskaraha (2014),Comedy|Crime|Thriller +186699,Ezra (2017),Horror|Thriller +186701,Kochavva Paulo Ayyappa Coelho (2016),Drama +186703,Oppam (2016),Thriller +186705,Ann Maria Kalippilaanu (2016),Children|Drama +186707,Traffic (2011),Thriller +186709,Ennu Ninte Moideen (2015),Drama|Romance +186711,Classmates (2006),Mystery|Romance +186713,We've Forgotten More Than We Ever Knew (2017),Drama +186715,Neram (2013),Comedy|Thriller +186717,ABCD: American-Born Confused Desi (2013),Comedy +186719,Oru Muthassi Gadha (2016),Adventure|Children|Comedy +186721,Chinthavishtayaya Shyamala (1998),Drama +186723,Udayananu Tharam (2005),Comedy|Drama|Romance +186725,Punjabi House (1998),(no genres listed) +186727,Amar Akbar Anthony (2015),Comedy|Drama +186729,C/O Saira Banu (2017),Children|Drama +186731,How Old Are You (2014),Children|Drama +186733,Mercy (1998),Fantasy +186735,Oru Indian Pranayakadha (2013),Comedy|Romance +186739,22 Female Kottayam (2012),Crime|Drama|Romance|Thriller +186741,Immanuel (2013),Children|Drama +186743,North 24 Kaatham (2013),Adventure|Children|Comedy +186745,Role Models (2017),Comedy +186747,5 Sundarikal (2013),Children|Romance +186749,Hichki (2018),Comedy|Drama +186751,Sideburns (1990),Comedy +186753,Luna Park (1992),(no genres listed) +186755,House Under the Starry Skies (1991),Comedy|Drama|Fantasy|Thriller +186757,Oxygen Starvation (1992),(no genres listed) +186759,The Cannibal (1991),Drama +186761,Promised Heaven (1991),Comedy|Drama +186763,Bespredel (1989),Crime|Drama +186765,Menya zovut Arlekino (1988),Crime|Drama +186767,"Well, Come On, Smile (1985)",Children|Drama +186769,Collapse (1990),Drama +186771,Smirennoye kladbishche (1989),Drama +186773,Chekist (1992),Drama +186775,Упырь (1997),Action|Horror +186777,The Greater Good - Harry Potter Fan Film (2013),Action|Adventure|Fantasy +186779,For Marx... (2013),(no genres listed) +186781,Five Bottles of Vodka (2000),(no genres listed) +186783,A Suitable Girl (2017),Documentary +186785,A Gentleman (2017),Comedy|Romance +186787,Love 65 (1965),Drama +186789,"Fancy, Fancy Being Rich (2002)",(no genres listed) +186791,2017 Oscar Nominated Short Films - Live Action (2017),(no genres listed) +186793,Out of Scale (1951),Animation|Children +186795,Sharqiya (2012),Crime +186797,Strangers (2003),Drama +186799,How to Make Love to a Woman (1995),Animation|Comedy|Drama|Romance +186801,A Tale of Labyrinth (1975),(no genres listed) +186803,Baal (1970),Drama +186805,Birthday Boy (2004),(no genres listed) +186807,When Taekwondo Strikes (1973),Action +186809,The Magnificent Butcher (1979),Action +186811,The Professor (1919),Comedy +186813,A Journey to the Fumigated Towns (2018),Documentary +186815,12 Days (2017),Documentary +186817,Love Me Not (2017),Drama +186819,The Sky Turns (2004),Documentary +186821,Johnny Gaddaar (2007),Comedy|Thriller +186823,The Diplomat (2015),Documentary +186825,Encounter in Space (1963),Sci-Fi +186827,Blood Orange (2016),Thriller +186829,Easy Rider: Shaking the Cage (1999),Documentary +186831,Father's Affair (2003),Action|Drama +186833,The Shooter (2013),Crime|Drama|Mystery|Thriller +186835,Home Sweet Home (1982),(no genres listed) +186837,Grown-Ups (1980),Drama +186839,The 4th Company (2016),Action|Crime|Drama +186841,Keep Quiet (2016),Documentary +186843,Gaz Bar Blues (2003),Comedy|Drama +186845,Counter Clockwise (2016),Comedy|Sci-Fi|Thriller +186847,Neil Stryker and The Tyrant of Time (2017),Comedy|Fantasy|Sci-Fi +186851,House of VHS (2015),Horror|Mystery +186853,Killed the Family and Went to the Movies (1969),Drama +186855,The Angel Was Born (1969),Drama +186857,Brasilianas - A Velha a Fiar (1964),Comedy|Documentary +186859,Zapata (1970),Action|Drama|War +186861,Jeannette: The Childhood of Joan of Arc (2018),Drama +186863,Beirut (2018),Action|Thriller +186865,Io c'è (2018),(no genres listed) +186867,Vegan 2017 (2017),Documentary +186869,Axis (2017),Drama +186871,Heal (2017),Documentary +186873,Shout at the Devil (1976),Action|Adventure|Drama|Thriller|War +186875,MUMON: The Land of Stealth (2017),Action|War +186877,36 Chowringhee Lane (1981),Drama|Romance +186879,The Arch (1969),Drama +186881,Butter on the Latch (2013),Drama|Fantasy|Horror +186883,La musica (1967),Drama +186885,Loving Couples (1964),(no genres listed) +186887,Magdalena Viraga (1986),(no genres listed) +186889,The Nouba of the Women of Mount Chenoa (1978),Drama +186891,Mar de Rosas (1978),(no genres listed) +186893,The Secret (1979),(no genres listed) +186895,Something Different (1963),Drama +186897,Stranded (1965),(no genres listed) +186899,The Ties That Bind (1985),Documentary +186901,Hidden Places (2006),Drama|Romance +186903,Greg Davies: You Magnificent Beast (2018),Comedy +186905,Paterno (2018),Drama +186907,Humor Me (2017),Comedy +186909,Taco Shop,Comedy +186911,Deluge (1933),Sci-Fi +186913,I Hate Love (2012),Romance +186915,The Miracles of the Namiya General Store (2017),Drama|Fantasy +186917,In Search of Balance (2016),Documentary +186919,Unearthed (2010),Action|Adventure|Horror|Sci-Fi +186921,The Sex Machine (1978),Comedy|Sci-Fi +186923,"Arabian Nights: Volume 2, The Desolate One (2015)",Drama +186925,"Arabian Nights: Volume 3, The Enchanted One (2015)",Drama +186927,Blue Tiger (1994),Action|Drama|Thriller +186929,Viva San Isidro (1995),(no genres listed) +186931,What Every Frenchwoman Wants (1986),Comedy|Drama +186933,Paprika (1991),Drama +186935,Gnome Alone (2017),Adventure|Animation|Children +186937,Hypersomnia (2016),Fantasy|Horror|Mystery|Thriller +186939,The Year Dolly Parton Was My Mom (2011),Drama +186941,Golden Years (2016),Comedy|Crime +186943,Crow Hollow (1952),Thriller +186945,Shaggy Christmas Trees (2014),Children|Comedy +186947,I Am Not an Easy Man (2018),Comedy +186949,The Resistance Banker (2018),Drama|War +186951,Fort Maria,(no genres listed) +186953,Hearts Beat Loud (2018),Drama +186955,Deep Blue Sea 2 (2018),Action|Horror|Sci-Fi +186957,A Question of Faith (2017),Drama +186959,The Sign of Zorro (1958),Western +186961,Garden of Evil (1954),Western +186963,Embalming (1999),Drama|Horror|Mystery +186965,An Obsession (1997),Drama +186967,Aardvark (2018),Drama +186969,Big City Blues (1997),Action|Adventure|Comedy +186971,Dead Beat (1994),Drama|Romance|Thriller +186973,Children of the Corn: Runaway (2018),Horror +186975,Love Is a Gun (1994),Crime|Drama|Mystery +186977,The Sender (1998),Action|Sci-Fi|Thriller +186979,The Revival (2017),Drama +186981,Don't Tell (2005),Drama +186983,Three Identical Strangers (2018),Documentary +186985,Batman Ninja (2018),Action|Animation +186989,Secrets in the Fall,(no genres listed) +186991,About Love (2017),Romance +186993,Funny Cow (2018),Comedy|Drama +186995,In the Custody of Strangers (1982),(no genres listed) +186997,Tuviansky (2014),Drama|War +186999,Mazinger Z: Infinity (2017),Action|Animation|Sci-Fi +187001,Wildling (2018),Fantasy|Horror +187003,Der Verdacht (2011),Thriller +187005,Sucker Punch (2008),Action +187007,The Cage (1964),Fantasy +187009,Butterfly (1974),(no genres listed) +187011,Laura (1974),(no genres listed) +187013,Smallpox Tale (1975),(no genres listed) +187015,Boxer (1977),Drama +187017,The Eraser (1977),Drama|Fantasy +187019,Cut from a Different Cloth (2015),Documentary +187021,The Sin (1965),Drama +187023,Andre the Giant (2018),Documentary +187025,Inuyasha the Movie: Affections Touching Across Time (2001),Action|Adventure|Animation|Fantasy +187027,Inuyasha the Movie 3: Swords of an Honorable Ruler (2003),Animation|Fantasy|Sci-Fi +187029,Inuyasha the Movie 4: Fire on the Mystic Island (2004),Action|Adventure|Animation|Sci-Fi +187031,Jurassic World: Fallen Kingdom (2018),Action|Adventure|Drama|Sci-Fi|Thriller +187033,Plan B (2016),Action|Comedy +187035,Ghostkeeper (1981),Horror|Thriller +187037,Ana by Day (2018),Drama +187039,Round Trip (2003),Drama +187041,"Stockholm, My Love (2016)",Documentary|Drama +187043,Faust: Love of the Damned (2001),Action|Drama|Fantasy|Horror|Sci-Fi|Thriller +187045,Falkenberg Farewell (2006),Drama +187047,Blinky Bill (1992),Animation|Children +187049,Manieggs - Revenge of the Hard Egg (2014),Animation +187051,Transit  (2018),Drama +187053,Pushing Dead (2016),Comedy|Drama +187057,The Time of Their Lives (2017),Comedy +187059,Linha de Montagem (1982),(no genres listed) +187065,Attack Of The Southern Fried Zombies (2017),Horror +187067,Super Troopers 2 (2018),Comedy +187069,Traffik (2018),Thriller +187071,Bindlestiffs (2012),Action|Adventure|Comedy +187073,Ninja in the Dragon's Den (1982),Action|Comedy +187075,Cyprien (2009),Comedy +187077,Schnitzel Paradise (2005),Comedy|Romance +187079,The Eyes (2017),Crime|Drama|Mystery|Thriller +187081,The Big Bluff (1955),Thriller +187083,The Happiness of the World (2016),Comedy|Drama +187085,The Debt Collector (2018),Action +187087,Wild Amsterdam (2018),Documentary +187089,The Bottomless Bag (2017),Drama|Mystery +187091,Santo vs. Frankenstein's Daughter (1971),Horror|Sci-Fi +187093,Blurred Lines: Inside the Art World (2017),Documentary +187095,The House by the Sea (2017),Drama +187097,The Chase (2017),Thriller +187099,Three Veils (2011),Drama +187101,Francesca (2015),Crime|Horror|Thriller +187103,Deep Sleep (2013),Horror|Thriller +187107,Eye on Juliet (2017),(no genres listed) +187109,Tremors: A Cold Day in Hell (2018),Action|Horror|Sci-Fi +187111,Mademoiselle Paradis (2018),Drama +187113,Troy the Odyssey (2017),Action|Adventure +187115,Mannequin in Red (1958),Crime|Mystery +187117,The Yellow Car (1963),(no genres listed) +187119,Ryttare i blått (1959),Mystery|Thriller +187121,Damen i svart (1958),Thriller +187123,Backstabbing for Beginners (2018),Thriller +187125,Head Above Water (1993),Comedy|Thriller +187127,David Lynch: The Art Life (2017),Documentary +187129,"Good Bye, Till Tomorrow (1960)",Drama|Romance +187131,The Depot of the Dead (1959),(no genres listed) +187133,Knights of the Teutonic Order (1960),Adventure|Drama +187135,Military Intelligence and You! (2006),Comedy +187137,Pilkarski poker (1989),Action|Comedy|Drama +187139,The Teacher (2017),Comedy|Drama +187141,The Intruder (1975),Horror +187143,Hedi (2016),Drama +187145,Maquia: When the Promised Flower Blooms (2018),Animation +187147,Lea (2011),Drama +187149,So Help Me God (2018),Documentary +187151,Josie (2018),Drama|Thriller +187153,Puzzle of a Downfall Child (1970),Drama +187155,Criminal Justice (2008),(no genres listed) +187157,Cooking with Love (2018),Comedy|Romance +187159,Helium (2013),Children|Drama +187161,Patient (2017),(no genres listed) +187163,Side of the moon (1984),Animation|Comedy +187165,The Jade Raksha (1968),Action|Adventure +187167,Dude (2018),Comedy +187169,The Third Generation (1979),Comedy|Crime +187171,The Swindlers (2017),Crime|Drama +187173,Adventure In The Hopfields (1954),Adventure|Children +187175,Götcher (2015),Horror +187177,Screenagers (2016),(no genres listed) +187179,Kyrsyä: Tuftland (2018),Horror|Mystery +187183,The Book of Mary (1985),Drama +187185,Confessions of a Teenage Jesus Jerk (2017),Comedy|Drama|Romance +187187,This is Bob Hope... (2017),Comedy|Documentary +187189,Nana (2018),Documentary +187191,After Auschwitz (2018),Documentary +187193,Infiltration (2017),Drama|Thriller +187195,alaska.de (2000),Drama +187197,Hitler's Hollywood (2017),Documentary +187199,Devil You Know (2013),Mystery|Thriller +187201,Lyle (2014),Drama|Horror +187203,The Moment (2013),Thriller +187205,Blind Turn (2012),Drama|Mystery|Thriller +187207,Random Encounter (1998),Crime|Thriller +187209,Swingers (2017),(no genres listed) +187211,The Mummy of Tutankhamun (2016),Drama|Romance +187213,Psychokinesis (2018),Action|Adventure|Fantasy +187215,The Seagull (2018),Drama +187217,Bad Lucky Goat (2017),Comedy|Drama +187219,Shanty Tramp (1967),Drama +187221,LEGO Marvel Super Heroes: Avengers Reassembled! (2015),Animation +187223,Night Key (1937),Crime|Sci-Fi +187225,And Then I Go (2017),Drama +187229,Loro - Part 1 (2018),Documentary|Drama +187231,American Animals (2018),Crime|Drama +187235,Fools Die on Fridays (1990),Action|Crime +187237,The Broken Land (1962),Western +187239,Paris Awakens (1991),Drama +187241,"Human, Too Human (1974)",Documentary +187243,The Bear and the Doll (1970),Comedy|Romance +187245,Sgt. Stubby: An American Hero (2018),Adventure|Animation|Children +187247,The Discarnates (1988),Horror|Mystery +187249,Songs (2011),Documentary +187251,Antenna (2004),(no genres listed) +187253,Birth of a Notion (1947),(no genres listed) +187255,Fit to Be Tied (1952),Animation|Comedy +187257,Freestyle: The Art of Rhyme (2000),Documentary +187259,Kickboxer: Retaliation (2018),Action|Drama +187261,Knight-Mare Hare (1955),Animation|Children +187263,Out 1 (1971),Drama +187265,The Accountant (2001),Comedy|Drama +187267,Beware of Barnacle Bill (1935),Animation +187269,Bongo (1947),(no genres listed) +187271,Byzance (1964),Documentary +187273,Charade (1984),(no genres listed) +187275,The Cockpit (1993),Animation|War +187277,Dead of Night (1977),Horror|Mystery|Sci-Fi|Thriller +187279,The Demon (1963),Thriller +187281,The Dover Boys at Pimento University (1942),Animation|Children|Comedy +187283,Drip-Along Daffy (1951),Animation +187285,Goofy Groceries (1941),(no genres listed) +187287,Happy Go Ducky (1958),Animation|Children|Comedy +187289,Hare-Breadth Hurry (1963),Animation|Children +187291,Dead Horizons (1951),Drama +187293,The Horn Blows at Midnight (1945),Comedy|Fantasy +187295,In the Pink of the Night (1969),Animation +187297,The Dreyfus Affair (1899),Drama +187299,Mickey's Garden (1935),Animation +187301,Mississippi Hare (1949),Animation|Comedy +187303,Monster (2005),Horror|Thriller +187305,Mouse Trouble (1944),Animation +187307,The Nose (1963),(no genres listed) +187309,The Week Of (2018),Comedy +187311,Duck Butter (2018),(no genres listed) +187315,Rusty Boys (2017),Comedy|Drama +187317,Silent Night (2017),Comedy|Drama +187319,"Ram Dass, Going Home (2017)",Documentary +187321,The Pink Blueprint (1966),Animation +187323,The Scarlet Pumpernickel (1950),Adventure|Animation|Comedy +187325,Tweety Pie (1947),Animation|Children|Comedy +187327,Avenue de l'opéra (1900),(no genres listed) +187329,Ballet Mécanique (1924),(no genres listed) +187331,Baton Bunny (1959),Animation +187333,Christmas in the Clouds (2001),Children|Comedy|Romance +187335,Good Glue Sticks (1907),Comedy +187337,Pierrette's Escapades (1900),Romance +187339,The End of August at the Hotel Ozone (1967),Sci-Fi +187341,Father's Lion (1952),Animation +187343,A Fractured Leghorn (1950),(no genres listed) +187345,Happy Anniversary (1962),Comedy +187347,Hawaiian Holiday (1937),Animation +187349,Lancement d'un navire (1896),(no genres listed) +187351,Lumber Jack-Rabbit (1954),Animation|Comedy +187353,Mad as a Mars Hare (1963),Animation|Children|Comedy +187355,The Mechanical Monsters (1941),Action|Animation +187357,Night Fishing (2011),Drama +187359,Self Control (1938),Animation +187361,Tuning the Instruments (2000),(no genres listed) +187363,Extreme Happiness (2010),Drama +187365,The Territory (1981),Drama|Horror +187367,My Friends Act II (1982),Comedy +187369,Arrivée d'un train à Perrache (1896),Documentary +187371,La plage (1992),(no genres listed) +187373,Shattered Soul (2006),(no genres listed) +187375,Blitz Wolf (1942),Animation +187377,Car of Tomorrow (1951),Animation +187379,Colleurs d'affiches (1897),Comedy +187381,Strangler vs Strangler (1984),Comedy|Horror|Thriller +187383,The Farm of Tomorrow (1954),Animation +187385,A Game with Stones (1965),Animation +187387,Help! Help! (1912),(no genres listed) +187389,The House of Tomorrow (1949),Animation|Children|Comedy +187391,Little Pancho Vanilla (1938),(no genres listed) +187393,Mechanical Principles (1930),Documentary +187395,The Milky Way (1940),Animation|Fantasy +187397,The Nest (2013),Sci-Fi +187399,Repas des chats (1896),(no genres listed) +187401,Revolution in Russia (1906),(no genres listed) +187403,The Ring Virus (1999),Horror|Thriller +187405,Sunflower (2006),Action|Drama +187407,Super Rhino (2009),Animation|Comedy +187409,T.V. of Tomorrow (1953),Animation +187411,La tía Alejandra (1979),Drama|Horror|Mystery +187413,Black Button (2011),(no genres listed) +187415,The Corpse Vanishes (1942),Horror|Sci-Fi +187417,I Am a Ghost (2012),Drama|Horror|Thriller +187419,The Living World (2003),Drama +187421,Ring: Kanzenban (1995),Horror|Mystery +187423,Our Lady of the Sphere (1972),Animation|Fantasy +187425,The Sailor and the Seagull (1949),Animation|Comedy|War +187427,The Margin (1976),Drama +187429,Saw Rebirth (2005),(no genres listed) +187431,Bad Company (1999),Drama|Romance +187433,Malice in Wonderland (1982),Animation +187435,Disturbed (1990),Horror|Thriller +187437,She Spent So Many Hours Under the Sun Lamps (1985),Drama|Fantasy +187439,Cosmic Princess (1982),Sci-Fi +187441,After Death (1989),Horror +187443,Rot (1997),(no genres listed) +187445,Snuff (1976),Horror|Thriller +187447,It's Alive! (1969),Horror|Sci-Fi +187449,Kevin James: Never Don't Give Up (2018),Comedy +187451,Anthony Joshua: The Road to Klitschko,(no genres listed) +187453,Bhageeratha (2005),Drama +187455,Sobibor (2018),(no genres listed) +187457,The Coach (2018),Drama +187459,All I Wish (2018),Comedy|Drama +187461,Most Likely to Murder (2018),Comedy +187463,Stephanie (2017),Drama|Fantasy|Horror|Mystery +187465,Little Forest (2018),Drama +187467,Tremble All You Want (2017),Comedy|Romance +187469,Smaller and Smaller Circles (2017),Crime +187471,No. 1 Chung Ying Street,(no genres listed) +187473,Love Education (2017),Drama +187475,Diamond Dogs,(no genres listed) +187477,Night Bus (2017),Drama|Thriller +187479,Steel Rain (2017),Action|Drama +187481,The Beach House (2018),Drama|Romance +187483,Spreading Darkness (2017),Comedy|Crime|Drama|Fantasy|Mystery|Thriller +187485,23 Minutes to Sunrise (2013),Drama|Fantasy +187487,The Girl From the Third Row (1949),Comedy|Drama +187489,2 Bedroom 1 Bath (2014),Horror +187493,C'était Un Rendez-Vous (1976),Action|Romance +187495,Candy Jar (2018),Comedy +187497,Primary (2014),Crime|Mystery|Thriller +187499,Last Train Home (1989),Adventure|Children|Drama +187501,Leave No Trace (2018),Drama +187503,I Don't Believe in Anarchy (2014),Documentary +187505,Tully (2018),Comedy +187507,The Problem with Apu (2017),Documentary +187509,Vampire Clay (2018),Horror +187511,The Delinquent Season (2017),Drama +187513,Coming Home (1998),Drama|War +187515,Corporate (2017),Drama +187517,Michelle Wolf: Nice Lady (2017),Comedy +187519,Neon City (1991),(no genres listed) +187521,Hungerford (2014),Horror|Sci-Fi +187523,The Captain (2018),Drama|War +187525,2016 Oscar Nominated Short Films: Live Action (2016),(no genres listed) +187527,All the President's Men Revisited (2013),Documentary +187529,Egg (2018),Comedy|Drama +187531,John Mulaney: Kid Gorgeous at Radio City (2018),Comedy +187533,Cold Tropics (2009),Sci-Fi +187535,Bróder (2010),Drama +187537,Sensitivity Training (2016),Comedy +187539,Aniki Bóbó (1942),Children|Drama +187541,Incredibles 2 (2018),Action|Adventure|Animation|Children +187543,The Nameless Alley (2016),(no genres listed) +187545,The Case of Hana & Alice (2015),Animation|Comedy|Drama +187547,Take Every Wave: The Life of Laird Hamilton (2017),Documentary +187549,Wonderful Losers: A Different World (2017),(no genres listed) +187551,Bille (2018),Children +187553,Zero Patience (1993),Drama|Fantasy|Sci-Fi +187555,Beeba Boys (2015),Crime|Drama|Thriller +187557,Parisienne (2016),Drama +187559,On Her Shoulders (2018),Documentary +187561,Of Fathers and Sons (2017),Documentary +187563,Fruits of Passion (1981),Drama +187565,Video Letter (1983),Documentary|Fantasy +187567,The Bandit (1953),Adventure|Drama +187569,Plan de table (2012),Comedy|Romance +187571,Nerve (2013),Drama|Mystery +187573,Blondie Takes a Vacation (1939),Adventure|Comedy +187575,Blondie Brings Up Baby (1939),Comedy +187577,The Death & Life of John F. Donovan,Drama +187579,A Kid Like Jake (2018),Children|Drama +187581,Ambrosia (2012),Drama +187583,The Game Changers (2018),Documentary +187585,Angel Express (1999),Drama +187587,High Society (2017),Comedy +187589,See How They Dance (2011),Comedy +187591,Drive-In Massacre (1976),Horror|Mystery +187593,Deadpool 2 (2018),Action|Comedy|Sci-Fi +187595,Solo: A Star Wars Story (2018),Action|Adventure|Children|Sci-Fi +187597,Bankable (2012),Comedy +187599,Gloria: In Her Own Words (2011),Documentary +187601,Anon (2018),Sci-Fi|Thriller +187603,Light Up! (2017),Drama +187605,Kryptonite! (2011),Comedy|Drama +187607,Il principe abusivo (2013),Comedy +187609,Amore a prima vista (1999),Drama|Thriller +187611,Adrift (2018),Drama +187613,The Kissing Booth (2018),Comedy|Romance +187615,The Weakness of the Bolshevik (2003),Drama +187617,LEGO DC Super Hero Girls: Super-Villain High (2018),Action|Animation|Children +187619,Kshana Kshanam (1991),Drama|Thriller +187621,Manmadhudu (2002),Comedy|Drama +187623,Mayabazar (1957),Drama|Fantasy +187625,Back Then (2012),Comedy +187627,Auditorium 6 (2017),Comedy|Horror +187629,The Legend of Johnny Lingo (2003),Action|Adventure|Children +187631,Johnny Lingo (1969),Children|Drama +187641,La tribu (2018),Comedy +187643,Juarez 2045 (2017),Action|Adventure|Sci-Fi +187645,Mr. Music (1998),(no genres listed) +187649,Alex & The List (2018),Comedy|Romance +187651,3 Hours till Dead (2017),Horror +187653,Yell for the Blue Sky (2016),Drama +187655,Genesis: The Fall of Eden (2018),Sci-Fi +187657,Daddy I Do (2010),Documentary +187659,The Right to Love: An American Family (2012),Documentary +187661,Daddy (2017),Crime|Drama +187663,Mukkabaaz (2018),Drama +187665,Tongue in Cheek (1989),Comedy +187667,The Skipper 2 (1989),Children|Comedy|Drama +187669,The Skipper (1987),Children|Comedy|Drama +187671,Dead Lucky (2017),Comedy|Horror +187673,Escape from Hell (1980),Adventure|Crime|Thriller +187675,The 72 Desperate Rebels (1978),Action +187677,An Elephant and a Rope (1945),Children|Fantasy +187679,The Village of Simpletons (1981),Comedy +187681,Uunon huikeat poikamiesvuodet maaseudulla (1990),Comedy +187683,Uuno Turhapuro Suomen Tasavallan Herra Presidentti (1992),Comedy +187685,Onks Viljoo Näkyny (1988),(no genres listed) +187687,Bon Jovi: When We Were Beautiful (2009),Documentary +187689,Iron Maiden: Live After Death (2008),(no genres listed) +187691,Iron Maiden: Maiden England (Original Version) (1989),(no genres listed) +187693,Iron Maiden: Death On The Road (2006),(no genres listed) +187695,Iron Maiden: Visions of the Beast (2003),(no genres listed) +187697,"Metallica/Slayer/Megadeth/Anthrax: The Big 4 - Live from Sofia, Bulgaria (2010)",(no genres listed) +187699,Valo (2005),(no genres listed) +187701,Onni von Sopanen (2006),Children +187703,Unna ja Nuuk (2006),(no genres listed) +187705,Mystery of the Wolf (2006),Adventure|Children|Drama +187707,Hayflower and Quiltshoe (2002),Adventure|Children|Comedy +187709,All Summers End (2017),Drama +187711,Näköradiomiehen ihmeelliset siekailut (1969),Comedy +187713,211 (2018),(no genres listed) +187715,Zoo (2018),Children|War +187717,Won't You Be My Neighbor? (2018),Documentary +187719,McQueen (2018),Documentary +187721,Eating Animals (2017),Documentary +187723,Set It Up (2018),Comedy|Romance +187725,Woman Walks Ahead (2018),Drama +187727,Love After Love (2018),Drama +187729,Ab-normal Beauty (2004),Horror +187731,Day-O (1992),Children|Comedy|Fantasy +187733,The Betsy (1978),Drama|Romance +187735,Waste Land (2014),Drama|Thriller +187737,A Very Potter Senior Year (2013),Comedy +187739,Büyük Adam Küçük Aşk (2001),Drama +187741,Lovelorn (2005),Drama +187743,Dumped (2018),Comedy +187745,Tous au Larzac (2011),Documentary +187747,The Avenger with a Flute (1986),Action|Adventure|Fantasy +187749,The Gospel According to André (2018),Documentary +187751,Future World (2018),Sci-Fi +187753,Pope Francis: A Man of His Word (2018),Documentary +187755,The Manor (2018),Horror +187759,Only Decent People (2012),Comedy|Drama +187761,Clara's Summer (2004),Drama|Romance +187763,Les P'tits Lucas (2002),(no genres listed) +187765,Anthrax: Chile On Hell (2014),(no genres listed) +187767,Rush - Rush In Rio (2003),(no genres listed) +187769,Distant Sky - Nick Cave & The Bad Seeds Live in Copenhagen (2018),Documentary +187771,The Herd (1979),Drama +187773,Friend (1975),Drama +187777,Elegy (1972),Drama +187779,The Father (1971),Drama +187781,Anxiety (1974),Drama +187783,Carl Barron: Walking Down the Street (2009),Comedy +187785,The Hopeless Ones (1971),Crime|Drama|Romance +187787,Carl Barron: A One Ended Stick (2013),(no genres listed) +187789,Carl Barron: Whatever Comes Next (2005),Comedy +187791,The Hungry Wolves (1969),Action|Adventure|Drama +187793,The Bride (1973),Drama +187795,City Loop (2000),Comedy|Romance +187797,Depraved (1996),Drama|Thriller +187799,Jeff Buckley - Live in Chicago (2000),(no genres listed) +187801,No Manifesto: A Film About Manic Street Preachers (2015),Documentary +187803,Wifemistress (1977),Comedy|Drama|Romance +187805,Micky Flanagan: Live - The Out Out Tour (2011),Comedy +187807,The Awakening of Gabriella (1999),Drama +187809,Let's All Go to the Lobby (1957),Animation +187811,Killer Looks (1994),Thriller +187813,Rendez-Vous (2015),Romance|Thriller +187815,RBG (2018),Documentary +187819,Kathakali (2016),Action|Romance +187825,Jagadeka Veerudu Athiloka Sundari (1990),(no genres listed) +187827,Murattu Kalai (1980),Action|Romance +187829,Mr. Bharath (1986),Drama +187831,Guru Sishyan (1988),Action|Comedy +187833,Rajathi Raja (1989),Action|Comedy|Drama|Romance +187835,Padikkadavan (1985),Drama +187837,Veera (1994),Children|Comedy +187839,Panakkaran (1990),(no genres listed) +187841,Dharmathin Thalaivan (1988),Children +187843,Sri Raghavendra (1985),Drama +187845,Naan Sigappu Manithan (1985),Action|Drama +187847,Neat: The Story of Bourbon (2018),Documentary +187849,Emperor's Secret (2006),Animation +187851,Rolli - Amazing Tales (1991),Children|Fantasy +187853,Be My Wife (1921),Comedy +187855,August Fools (2013),Comedy +187857,Vivegam (2017),Action|Crime|Thriller +187859,Nuotin vierestä (2016),Comedy|Drama +187861,Brave Men's Blood (2014),Crime|Thriller +187863,Aegan (2008),Action|Romance +187865,My Son (2017),Drama|Thriller +187867,Jailbreak (2017),Action +187869,White Sun (2016),Adventure|Drama +187871,5th Street (2013),Action|Crime +187873,Real Boy (2016),Documentary +187875,Director's Cut (2018),Horror +187877,Sandakozhi (2005),Action|Romance +187879,Thimiru (2006),Action|Romance +187881,Chellamae (2004),Romance|Thriller +187883,Paayum Puli (2015),Action|Drama|Thriller +187885,Siruthai (2011),Action|Comedy|Drama|Thriller +187887,Biriyani (2013),Comedy|Romance|Thriller +187889,Saguni (2012),Drama +187891,Bengal Tiger (2015),Action|Comedy|Romance +187893,Kanden Kadhalai (2009),Romance +187895,Ananda Thandavam (2009),Children|Drama|Romance +187897,Kedi (2006),Romance +187899,Nanban (2012),Action|Comedy|Drama +187901,Theri (2016),Action|Romance +187903,Kaththi (2014),Action|Drama|Romance +187905,Jilla (2014),Action|Comedy|Drama +187907,Thuppakki (2012),Action +187909,Velayudham (2011),Action +187911,Kaavalan (2011),Children|Drama|Romance +187913,Vettaikaaran (2009),(no genres listed) +187915,Pokkiri (2007),Action|Romance +187917,Bagavathi (2002),Action|Romance +187919,Youth (2002),Action|Drama +187921,Ghilli (2004),Action|Adventure|Children|Comedy|Romance +187923,Thirupaachi (2005),Action|Thriller +187925,Sachein (2005),Drama|Romance +187927,Sivakasi (2005),Drama +187929,Thamizhan (2002),Action|Drama +187931,Kushi (2000),Drama|Romance +187933,Priyamanavale (2000),Drama +187935,Badri (2001),Drama +187937,Mug (2018),Drama +187939,Iron Monkey 2 (1996),Action +187941,"Roxanne, Roxanne (2017)",Drama +187943,27: El club de los malditos (2018),Action|Comedy|Crime +187945,Primal Rage: The Legend of Oh-Mah (2018),Horror +187947,Finger of God (2007),Documentary +187949,Furious Love (2010),Documentary +187951,Father of Lights (2012),Documentary +187953,Holy Ghost (2014),Documentary +187955,Holy Ghost Reborn (2015),Documentary +187957,Hari Kondabolu: Warn Your Relatives (2018),Comedy +187959,Gonjiam: Haunted Asylum (2018),Horror|Mystery +187961,Private Peaceful (2012),Drama|Romance|War +187963,Altered Perception (2017),Fantasy|Mystery|Sci-Fi +187965,Sanctuary,(no genres listed) +187967,Miss Dial (2013),Comedy +187969,Bad City (2014),Action|Comedy|Crime +187971,A Noisy Day (1960),Comedy|Drama|Romance +187973,Father Frost and the Summer (1969),Animation +187975,Communists (2014),Drama +187977,Not Cinderella's Type (2018),Romance +187979,Thumbelina (1964),Adventure|Animation|Children|Romance +187981,Song of the Phoenix (2013),Drama +187983,Kin (1982),Comedy|Drama +187985,Story of One Crime (1962),Animation +187987,"Pro Fedota-streltsa, udalogo molodtsa (2008)",Adventure|Animation|Children +187989,About Sidorov Vova (1985),Animation|Children|Comedy +187991,Night Fun (1991),Comedy|Drama +187993,The Old New Year (1981),Comedy +187995,Cat house (1958),Animation|Children +187997,When the Trees Were Tall (1961),Drama|Romance +187999,Fuss of the Fusses (1979),Comedy|Romance +188001,"Barankin, bud chelovekom (1962)",Animation +188003,Solange Leben in mir ist (1965),Drama +188005,The Actress (2007),Comedy|Drama|Romance +188007,Octopus (1976),Animation +188009,The Look of a Killer (2016),Crime|Thriller +188011,Passion of Spies (1967),Animation +188013,The Convoy (2012),(no genres listed) +188015,Лягушка-путешественница (1965),Animation +188017,The Maus (2017),Drama|Fantasy|Horror +188019,Zoando na TV (1999),Comedy|Fantasy +188021,You Choose! (2017),Comedy|Romance +188023,Garde alternée (2017),Comedy +188025,Sparrow (1993),Drama +188027,Lettomania (1976),Comedy +188029,Vive Le Tour ! (1962),(no genres listed) +188031,Petia and Little Red Riding Hood (1958),Animation|Children|Comedy +188033,"Encore, Once More Encore! (1992)",Comedy|Drama|Romance +188035,The Passport (1990),Comedy +188037,"Bezumnyy Den, ili Zhenitba Figaro (1974)",Comedy +188039,A French Lesson (1978),Drama +188041,Woman's Own (1999),Drama|Romance +188043,Rikki-Tikki-Tavi (1965),Animation +188045,В. Давыдов и Голиаф (1985),Comedy +188047,Adam's Rib (1990),Comedy|Drama +188049,Domestic Circumstances (1977),Comedy|Romance +188051,Nosferatu. Uzhas nochi (2010),Animation +188053,Цветик-семицветик (1948),Animation +188055,Umka is Looking for a Friend (1970),Animation +188057,Vassilissa the Beautiful (1977),Animation +188059,Kashtanka (1952),Animation|Children|Fantasy +188061,An Almost Funny Story (1977),Comedy|Romance +188063,"Hey, You Geese (1994)",(no genres listed) +188065,Mister Пронька (1991),Animation +188067,Toc Toc (2017),Comedy +188069,Ladies Invite Gentlemen (1980),Comedy|Romance +188071,Грачи (1983),(no genres listed) +188073,Лабиринт (1971),Animation +188075,The Frog Princess (1954),Animation|Children +188077,Shapoklyak (1974),Animation|Children +188079,Skazka o zolotom petushke (1967),Animation|Children +188081,"Vacation of Petrov and Vasechkin, Usual and Incredible (1984)",Children|Comedy +188083,The Chief of Chukotka (1966),Adventure|Comedy|Drama +188085,Break! (1985),Animation|Comedy +188087,Nepoddayushchiyesya (1959),Comedy +188089,There Is Such a Lad (1964),Comedy|Romance +188091,Аргонавты (1971),Animation +188093,Your Son and Brother (1966),Drama +188095,Shultes (2008),Crime|Drama +188097,Time of Desires (1984),Drama|Romance +188099,Little Boat (1970),Animation|Children +188101,Magic Power (1970),Children|Comedy +188103,Dima Gorin's Career (1961),Comedy +188105,The Last Petal (1977),Adventure|Animation +188107,Blue Puppy (1976),Animation|Children +188109,Cheburashka Goes to School (1983),Animation|Children +188111,Norman Lear: Just Another Version of You (2016),Documentary +188113,A Very Old Story (1968),Children|Fantasy +188115,Zhila-byla Odna Baba (2011),Drama +188117,Hello and Goodbye (1972),Comedy|Romance +188119,Molodilnye yabloki (1974),Animation|Fantasy +188121,The Snow Queen (1966),Adventure|Children|Fantasy +188123,Old Women (2003),Drama +188125,The Heron and the Crane (1974),Animation +188127,Дарю тебе звезду (1975),Animation +188129,Спадок чарівника Бахрама (1975),(no genres listed) +188131,Thirty-three (1965),Comedy +188133,The Adventures of the Yellow Suitcase (1970),Children|Comedy|Fantasy +188135,Brief Encounters (1968),Drama +188137,Одиноким предоставляется общежитие (1983),Comedy|Romance +188139,Leo Da Vinci: Mission Mona Lisa (2018),Adventure|Animation +188141,Fishbowl California (2018),Comedy|Drama +188143,Fedora's sorrow (1973),Animation +188145,The Little Raccoon (1974),Animation +188147,The Odyssey 1989 (2003),Drama +188149,Abracadabra (2017),Comedy +188151,The Company of Heroes (2004),Action|Drama +188153,The Undefeated (2000),Drama|War +188155,The Godfather Legacy (2012),Documentary +188157,Nang-Nak (1999),Drama|Romance|Thriller +188159,The Revelation of the Pyramids (2010),Documentary +188161,Krautrock : The Rebirth of Germany (2009),Documentary +188163,The True Story of the Bridge on the River Kwai (2001),Documentary +188165,El sicario: Room 164 (2010),Documentary +188167,Rabat (2011),Drama +188169,Tokyo Eyes (1998),Romance|Thriller +188171,Dangerous Knowledge (2007),Documentary +188173,The Godfather Family: A Look Inside (1990),Action|Documentary|Drama +188175,The Factory,Thriller +188177,Wolves at the Door (2016),Horror|Thriller +188179,My Perfect Romance (2018),Romance +188181,Re: Born (2016),Action|Crime|Drama|War +188183,Loro 2 (2018),Drama +188185,No Man's Land (2017),Documentary +188187,Breaking In (2018),Thriller +188189,Sorry to Bother You (2018),Comedy|Fantasy|Sci-Fi +188191,The House of Tomorrow (2018),Drama +188193,That's Not Me (2017),Comedy +188195,Saturday's Warrior (1989),Children|Drama +188197,Saturday's Warrior (2016),Children|Drama +188199,Jazzclub - Der frühe Vogel fängt den Wurm (2004),Comedy +188201,Higher Power,(no genres listed) +188203,Parabola (1937),(no genres listed) +188205,The Wasted Times (2016),Drama|Mystery +188207,Cold War (2018),Drama +188209,Dr. Plonk (2007),(no genres listed) +188211,Boom for Real: The Late Teenage Years of Jean-Michel Basquiat (2017),Documentary +188213,The Escape (2018),Drama +188215,Filmworker (2017),Documentary +188217,Summer (2018),Drama +188219,Always at The Carlyle,Documentary +188221,Bigger Fatter Liar (2017),Adventure|Children|Comedy +188223,History and Memory: For Akiko and Takashige (1991),(no genres listed) +188225,All These Small Moments (2018),(no genres listed) +188227,Sailor Suit and Machine Gun (1981),Action|Drama +188229,Whisky Galore (2016),Comedy|Romance +188231,Cut Shoot Kill (2017),Action|Horror|Thriller +188233,Emma (2017),Drama|Romance +188235,Flypaper (1998),Action|Comedy|Romance|Thriller +188237,Serialized (2016),Crime +188239,Mind Ripper (1995),Horror|Sci-Fi +188241,Медвежуть (1988),Animation +188243,Khrabryy zayats (1955),Animation +188245,The Snow Postman (A New Year Tale) (1955),Animation +188247,A Groom from the Right Society (1958),Comedy +188249,The Envy of Gods (2000),Drama|Romance +188251,Adventures of Vasia Kurolesov (1981),Animation|Children|Comedy|Mystery +188253,My Green Crocodile (1966),Animation +188255,Мышонок Пик (1978),Animation +188257,When Bette Met Mae,(no genres listed) +188259,Mothers and Daughters (1974),Drama +188261,The Theme (1979),Drama +188263,Two Soldiers (1943),Comedy|Drama|Romance|War +188265,Проклятие (2012),Romance +188267,"Plumbum, or The Dangerous Game (1987)",Drama +188269,The Big Exchange (1992),Comedy|Crime +188271,Nutcracker (1973),Animation +188273,Fits and Starts (2017),Comedy +188275,Mermaids (2003),Action|Crime|Fantasy|Romance +188277,The Tale of Tsar Saltan (1966),Children|Fantasy +188279,New Year Adventures of Masha and Vitya (1975),Children|Fantasy +188281,Umka (1969),Animation +188283,The Dog In Boots (1981),Adventure|Animation|Children +188285,The Grey Wolf & The Riding Hood (1990),Animation +188287,The Brave Tin Soldier (1976),Animation|Children|Fantasy +188289,General Suvorov (1941),Drama +188291,The Wedding (2000),Comedy|Drama +188293,"Tambourine, Drum (2009)",Drama +188295,Peter on the Way to Heaven (2009),Comedy|Drama +188297,Virginity (2008),Documentary +188299,Whitney (2018),Documentary +188301,Ant-Man and the Wasp (2018),Action|Adventure|Comedy|Fantasy|Sci-Fi +188303,The First Purge (2018),Action|Horror|Sci-Fi|Thriller +188305,"Don't Worry, He Won't Get Far on Foot (2018)",Comedy|Drama +188307,Hotel Transylvania 3: Summer Vacation (2018),Animation|Children|Comedy|Fantasy +188309,Skyscraper (2018),Action|Drama|Thriller +188311,Ideal Home (2018),Comedy|Drama +188313,Black and White Magic (1983),Children|Comedy +188315,Hover (2018),Sci-Fi +188317,Uncle Drew (2018),Comedy +188319,The Magic Swan Geese (1949),Animation +188321,Resurrection (1960),Drama|Romance +188323,Сопілочка і глечик (1950),(no genres listed) +188325,The Inspector-General (1952),Comedy +188327,Neobyknovennyy Match (1955),Animation +188329,Sister Alyonushka and Brother Ivanushka (1953),Animation +188331,The Muslim (1995),Drama +188333,Ландыш серебристый (2000),(no genres listed) +188335,"Mama, Ne Goryuy (1997)",Comedy|Crime +188337,My Dad Baryshnikov (2011),Comedy|Drama +188339,The Magic Pill (2017),Documentary +188341,Outside In (2018),Drama +188343,Nastya (1993),Comedy|Romance +188345,At War as at War (1969),Drama|War +188347,The Girl and the Bugler (1965),Adventure|Children|Drama +188349,The Hot Snow (1972),War +188351,Tough Kids (1983),Drama +188353,Tiger on the Sunflower (1981),Animation|Children +188355,Cheburashka (2014),Animation|Children +188357,American Bet (1997),Drama|Romance +188359,Married for the First Time (1980),Romance +188361,The Lovers (1970),Romance +188363,Маленькие комедии большого дома (1974),Children|Comedy|Drama|Romance +188365,Обезьянки и грабители (1985),Animation +188367,Незнайка учится (1961),(no genres listed) +188369,Alyosha's Love (1960),Comedy|Romance +188371,Cinderella (1979),Animation|Children|Fantasy +188373,Lonely Woman Seeks Life Companion (1986),Comedy|Drama|Romance +188375,In August of 1944 (2001),Drama|War +188377,Free Jimmy (2006),Animation|Comedy +188379,Kicking Off (2013),Drama|Thriller +188381,Classic (1998),Action|Crime|Drama +188383,Time Trap (2017),Action|Adventure|Sci-Fi +188385,Annamayya (1997),Children|Drama +188387,Mahanati (2018),(no genres listed) +188389,Aditya 369 (1991),Sci-Fi +188391,Purgatorio: A Journey Into the Heart of the Border (2013),Documentary +188393,Good Things Await (2014),Documentary +188395,½ Revolution (2011),(no genres listed) +188397,"Workers, Peasants (2002)",Drama +188399,Antigone (1992),Drama +188401,The Death of Empedocles (1987),Drama +188403,Fortini/Cani (1977),Documentary +188405,These Encounters of Theirs (2006),(no genres listed) +188407,Gabrielle (1954),Drama +188411,George Michael: Freedom (2017),Documentary +188413,Thenali (2000),Comedy +188415,Vasool Raja MBBS (2004),Comedy +188417,7333 seconds of Johanna (2017),Drama +188419,808 (2015),Documentary +188421,Grande ourse - La clé des possibles (2009),Mystery|Sci-Fi +188427,Husband & Wife (2017),Comedy +188429,I'm Flash! (2012),Action|Drama +188431,Loom (2012),Sci-Fi +188433,The Scythian Lamb (2018),Crime|Drama +188435,Nightmare Detective 2 (2008),Fantasy|Horror|Thriller +188439,Collage of Our Lives (2003),Comedy|Drama|Romance +188441,The Mohican Comes Home (2016),Comedy +188445,My Little Sweet Pea (2013),Comedy|Drama +188447,"Ah, Vaudeville, Vaudeville... (1979)",Comedy|Romance +188449,Family Blood (2018),Horror|Thriller +188451,Witch-Hunt,Horror|Mystery|Thriller +188453,Another Kind of Wedding (2018),Comedy|Drama +188455,306 Hollywood (2018),Documentary +188457,Farewell to the Ark (1984),Fantasy|Mystery|Romance +188459,Darc (2018),Action|Thriller +188465,Mezzanotte d'amore (1970),Romance +188473,Sign of the Gladiator (1959),Adventure|Drama|Romance +188475,"Aphrodite, Goddess of Love (1958)",Drama +188477,Ali Wong: Hard Knock Wife (2018),Comedy +188479,Detective School Dropouts (1986),Action|Comedy +188483,Yuppies (1986),Comedy +188489,Il premio (2017),(no genres listed) +188491,Desolation (2017),Horror +188493,I Not Stupid (2002),(no genres listed) +188495,I Not Stupid Too (2006),Drama +188497,Ramayanam (1996),Children|Drama +188499,The Ducksters (1950),(no genres listed) +188501,The Sinkholes (2012),Drama +188503,The Diary of a Big Man (1988),Comedy|Romance +188505,The 12th Man (2017),Drama|War +188507,Runway Cop (2012),Comedy|Romance +188509,Donbass (2018),Drama +188511,Sex Doll (2016),Drama|Mystery|Thriller +188513,End Game (2018),Documentary +188515,Friend (2018),Drama +188517,The Batwoman (1968),Adventure|Horror|Sci-Fi +188519,ManHunt (2017),Action +188521,Vento di soave (2017),Documentary +188523,Obscuro Barroco (2018),Documentary +188525,Luk'Luk'I (2017),Drama +188527,The Little Girl Who Was Too Fond of Matches (2017),Drama|Horror +188529,Unarmed Verses (2017),Documentary +188531,You Are Here (2011),Drama|Fantasy|Sci-Fi +188533,Trouble Is My Business (2018),Adventure|Crime +188535,The Honor List (2018),Drama +188537,Intensity (1997),Drama|Horror|Thriller +188539,The Assassin's Code (2018),Thriller +188541,Cargo (2017),Drama|Horror +188543,Missing You (2016),Thriller +188545,Horror Stories (2012),Horror|Thriller +188547,Horror Stories 2 (2013),Horror|Thriller +188549,Horror Stories 3 (2016),Horror|Thriller +188551,Dhuruvangal Pathinaaru (2016),Drama|Thriller +188553,Mersal (2017),Action|Drama|Thriller +188555,Anjaan (2014),Action|Romance|Thriller +188557,Meesaya Murukku (2017),Comedy|Drama|Romance +188559,Kalakalappu 2 (2018),Action|Comedy +188561,Dasavatharam (2008),(no genres listed) +188565,The Teacher (2015),Action|Crime|Drama +188567,Bastards (2000),(no genres listed) +188569,Elizabeth at 90: A Family Tribute (2016),(no genres listed) +188571,Adam Chaplin (2011),Horror +188573,Judy (2014),Horror|Thriller +188575,Zombies (2018),Adventure|Horror +188577,Deep in the Wood (2015),Thriller +188579,Space Invasion of Lapland (1959),Sci-Fi +188581,Las furias (2016),Children|Drama +188583,The Strange Name Movie (2017),Documentary +188585,Enissa Amani: Ehrenwort (2018),Comedy +188587,Another Day (2001),Drama|Sci-Fi|Thriller +188589,Comment ça va? (1976),Drama +188591,Death and the Compass (1992),Crime|Drama|Thriller +188593,"I, Dalio (2015)",(no genres listed) +188595,Bubblegum,(no genres listed) +188597,Embrace (2016),Documentary +188599,Synesthesia (2005),Crime|Horror|Mystery|Thriller +188601,Posición avanzada (1966),(no genres listed) +188603,Breath (2018),Drama +188605,The Sower (2017),Drama +188607,The Green Fog (2017),Mystery +188609,The Snatch Thief (2018),Drama +188611,The Wicked (2014),Horror +188613,Lost in Vagueness (2018),Documentary +188615,Orion's Belt (1985),Action|Adventure|Thriller +188617,Peasants (1935),(no genres listed) +188619,Denmark (2017),Drama +188621,Trotz alledem! (1972),Drama +188623,Burning (2018),Drama|Mystery +188625,Evil Genius: The True Story of America's Most Diabolical Bank Heist (2018),Crime|Documentary +188627,The First Day of Freedom (1964),(no genres listed) +188629,The Reunion (2002),Comedy +188631,Shit Happens (2000),Comedy|Drama +188633,Adam & Eva (1997),Comedy|Drama|Romance +188635,Vuxna människor (1999),Comedy +188637,A for Andromeda (2006),Drama|Sci-Fi|Thriller +188639,French Quarter (1978),Drama +188641,Pilgrimage (2017),Action|Adventure|Drama +188643,The Battle Of Chosin (2016),Documentary +188645,Exorcism (2017),Horror +188647,Durval Records (2002),Comedy|Drama +188649,My Name Ain't Johnny (2008),Crime|Drama +188651,Muita Calma Nessa Hora (2010),Comedy +188653,Muita Calma Nessa Hora 2 (2014),Comedy +188655,Trap.com (2011),Comedy|Romance +188657,Mamma Gógó (2010),Comedy|Drama +188659,Little Woods (2018),Drama|Thriller +188663,Itzhak (2017),Documentary +188665,Last Days in Havana (2016),Drama +188669,Janis et John (2003),Comedy +188671,Glossary of Broken Dreams (2018),Animation|Comedy|Documentary +188673,Your Unknown Brother (1982),Drama +188675,Dogman (2018),Crime|Drama +188677,Wu: The Story of the Wu-Tang Clan (2008),Documentary +188679,Fahrenheit 451 (2018),Drama|Sci-Fi +188681,Fast Film (2003),Adventure|Animation +188685,Nordexpressen (1992),Action|Comedy +188691,Lajja (2001),Drama +188693,Once Upon a Time (2018),Comedy +188695,The Cleaners (2018),Documentary +188697,Happy as Lazzaro (2018),Drama +188699,World Peace and Other 4th Grade Achievements (2010),Documentary +188701,Reaching for the Moon (1917),Adventure +188703,Hole In The Wall (2014),(no genres listed) +188705,Girl in the Bunker (2018),Drama +188707,Kings Ransom (2009),Documentary +188709,Detours (2016),Comedy|Drama +188711,Surviving Family (2014),Drama|Romance +188715,Supercroc (2007),Horror +188723,Trofim (1995),(no genres listed) +188725,Ispoved neznakomtsu (1996),Drama +188731,Taxi 5 (2018),Action|Comedy +188733,Five Cartridges (1960),Drama|War +188735,Alison's Choice (2015),(no genres listed) +188737,Hell (1983),Animation +188739,The Unguarded Moment (1956),Drama|Mystery|Thriller +188741,The Suspicions of Mr Whicher: The Murder in Angel Lane (2013),Drama|Mystery +188743,The Suspicions of Mr. Whicher: The Ties That Bind (2014),Drama +188745,The Locket (1946),Drama +188747,The Adventure Club (2017),Children +188749,The Equalizer 2 (2018),Action|Crime|Thriller +188751,Mamma Mia: Here We Go Again! (2018),Comedy|Romance +188753,Unfriended: Dark Web (2018),Horror +188755,Little Star (2017),Thriller +188757,Generation Wealth (2018),Documentary +188759,Vishwa Vikhyatharaya Payyanma (2017),Comedy +188761,Puzzle (2018),Drama +188763,Chasing Ghosts (2005),Crime|Mystery|Thriller +188765,Polish Legends: Operacja Bazyliszek (2016),Sci-Fi +188767,Polish Legends: Jaga (2016),Sci-Fi +188769,Polish Legends: Twardowsky (2015),Sci-Fi +188771,Polish Legends. Twardowsky 2.0 (2016),Sci-Fi +188773,Shoplifters (2018),Drama +188775,Polish Legends: The Dragon (2015),Sci-Fi +188777,Flock of Dudes (2015),Comedy +188779,Muttertag (1992),Comedy +188781,FAQ: Frequently Asked Questions (2004),Drama|Sci-Fi +188783,Lazer Team 2 (2017),Action|Adventure|Comedy|Sci-Fi +188785,Gewoon Vrienden (2018),Comedy|Drama|Romance +188787,Night and Fog in Japan (1960),Drama +188789,The Cannibal That Walked Free (2007),Documentary +188791,Captain Prabhakaran (1991),Action +188793,Mother (2018),Thriller +188795,The Cow and I (1959),Adventure|Comedy|War +188797,Tag (2018),Comedy +188799,Ten Wanted Men (1955),Western +188801,The Manor (2013),(no genres listed) +188803,Edge of Daybreak (2018),Documentary +188805,Zalacaín el aventurero (1955),(no genres listed) +188807,Night Life (1989),Horror +188809,Star Crystal (1986),Horror|Sci-Fi +188811,Suicide Bus (1998),Comedy|Drama +188813,The Eighth Happiness (1988),Comedy +188815,The Romancing Star (1987),Comedy|Romance +188817,Daffy Duck Slept Here (1948),(no genres listed) +188819,Fractured Follies (1988),Comedy|Drama|Romance +188821,Messengers (1999),Comedy|Drama|Romance +188823,Delirium (2018),Horror|Thriller +188825,Incoming (2018),Action|Sci-Fi|Thriller +188827,Lucia's Grace (2018),Comedy +188829,Capernaum (2018),Drama +188831,The Gentle Indifference of the World (2018),Drama +188833,The Man Who Killed Don Quixote (2018),Adventure|Comedy|Fantasy +188835,A Demon Within (2017),Horror +188837,Inside (2017),Horror|Thriller +188839,Tuscan Wedding (2014),Comedy|Romance +188841,Kammara Sambhavam (2018),Thriller +188843,Bhaagamathie (2018),Crime|Horror|Mystery|Thriller +188845,Portnoy's Complaint (1972),Comedy|Drama +188847,Ho Mann Jahaan (2016),Drama +188849,Mili (2015),Drama +188851,Chandrettan Evideya (2015),Children|Comedy|Drama +188853,Class Reunion 2: A Wedding and a Funeral,Comedy +188855,Orchestra Class (2017),Comedy|Drama +188857,They (2018),Drama +188859,Hagazussa (2017),Horror +188861,I Used to Be Darker (2013),Drama +188863,Louis Theroux: The City Addicted to Crystal Meth (2009),Documentary +188865,Felix in Exile (1994),Animation|Drama +188867,"Sobriety, Obesity & Growing Old (1991)",Animation|Drama +188869,History of the Main Complaint (1996),Animation +188871,Beijing Love Story (2014),Drama|Romance +188873,"Lou Andreas-Salomé, The Audacity to be Free (2016)",Drama +188875,Me and My Mates vs. The Zombie Apocalypse (2015),Comedy|Horror +188877,Us and Them (2017),Crime|Drama|Thriller +188879,Welcome the Stranger (2018),Drama|Mystery|Sci-Fi|Thriller +188881,Habit (2017),Horror +188883,Shapeshifter (1999),Children|Fantasy|Thriller +188885,Boys Cry (2018),Crime|Drama +188887,Agonies (1964),Crime +188889,Gerda malaperis! (2006),Adventure|Drama +188891,The Universal Language (2011),(no genres listed) +188893,Attack of the Moon Zombies (2011),Sci-Fi +188895,The Burned City (1976),Drama +188897,The Late Night Double Feature (2014),Sci-Fi +188899,Déjà Vu (1987),Drama|Horror +188901,"Que será, será (2002)",(no genres listed) +188903,The Pedal Push Car (2004),(no genres listed) +188905,Optocht van voorstanders van het Esperanto (1911),Documentary +188907,Utopia in Four Movements (2010),(no genres listed) +188909,The Sparkling World (1984),Sci-Fi +188911,Sherlock Holmes (1932),Drama|Mystery +188915,Democrats (2014),Documentary +188917,Killing Jesus (2018),Crime|Drama +188919,Billy's Balloon (1998),Animation +188921,A Fine Day (2001),Drama +188925,8 Murders a Day (2011),(no genres listed) +188927,Murder Capital of the World (2012),Documentary +188931,Birdsong (2012),Drama|War +188933,Parade's End (2012),Drama|Romance|War +188935,Earth's Natural Wonders (2016),Documentary +188937,Mad World (2016),Children|Drama +188939,Waru (2017),Drama +188941,Under the Silver Lake (2018),Comedy|Crime|Drama|Mystery|Thriller +188943,Secret Enemies (1942),Crime|Drama +188945,Janeane Garofalo: If You Will (2010),Comedy +188947,The Debutantes (2017),Horror +188949,Soft Matter (2018),Comedy|Horror|Sci-Fi +188951,Guys Reading Poems (2016),Drama|Mystery +188953,Diamantino (2018),Comedy|Drama|Fantasy|Sci-Fi +188957,Kurara: The Dazzling Life of Hokusai's Daughter (2017),Drama +188959,My Uncle (2016),Comedy +188961,A Farewell to Jinu (2015),Comedy +188967,Phone Call to the Bar (2011),Action|Crime|Drama +188973,The Summit: A Chronicle Of Stones to Serenity (2009),Drama +188975,Nobody To Watch Over Me (2008),Drama +188979,Tokyo Serendipity (2007),(no genres listed) +188983,Black Night (2006),Drama|Horror|Sci-Fi|Thriller +188987,Another Heaven (2000),Crime|Horror|Sci-Fi +188995,Over the Fence (2016),Drama +188997,Initiation Love (2015),Mystery|Romance +188999,Sweet Poolside (2014),Romance +189003,Smuggler (2011),Action|Comedy|Drama +189005,Boys Over Flowers: Final (2008),Comedy|Drama|Romance +189007,Waruboro (2007),Comedy +189009,Derrick J's Victimless Crime Spree,(no genres listed) +189011,Measure of a Man (2018),Comedy|Drama +189013,...First Do No Harm (1997),Drama +189015,Girl Lost (2018),Drama +189017,Stone (1974),Action|Crime|Thriller +189019,The Rape of Recy Taylor (2017),Documentary +189021,Vampire Cleanup Department (2017),Action|Comedy|Horror +189023,The Dilapidated Dwelling (2000),(no genres listed) +189025,The Blessed Ones (2016),(no genres listed) +189027,Louis Theroux: Talking to Anorexia (2017),Documentary +189029,House by the Lake (2016),Horror|Thriller +189031,Feral (2018),Action|Drama|Horror|Thriller +189033,Daphne & Velma (2018),Action|Comedy|Crime|Horror +189035,Beauty Mark (2017),Drama +189037,Tig Notaro: Happy To Be Here (2018),Comedy +189039,Hunting Emma (2017),Action|Thriller +189041,Sicario: Day of the Soldado (2018),Action|Crime|Drama|Thriller +189043,Boundaries (2018),Comedy|Drama +189045,Revolver (1973),Action|Crime|Thriller +189047,Veras Mantel,(no genres listed) +189049,Adventures In Public School (2017),Comedy +189051,Run the Tide (2016),Drama +189053,Chamku (2008),Action|Crime|Drama|Romance|Thriller +189055,Pound for Pound (2017),Drama +189057,The Clay Pigeon (1949),Crime +189059,Des Kaisers neue Kleider (2010),Children|Fantasy +189061,In Darkness (2018),Thriller +189063,Brad Paisley's Comedy Rodeo (2017),Comedy +189065,Steve Martin and Martin Short: An Evening You Will Forget for the Rest of Your Life (2018),Comedy +189067,A Haunting in Cawdor (2015),Horror|Thriller +189069,Neighbour No. 13 (2005),Horror|Thriller +189071,The Tale (2018),Drama +189073,Happily Ever After (2016),Drama +189075,Timetrip: The Curse of the Viking Witch (2009),Adventure|Children +189077,Alipato: The Very Brief Life of an Ember (2016),(no genres listed) +189079,God Don't Make the Laws (2011),Drama +189081,Le repas des fauves (1964),Drama +189083,Bitterly! 2 (2014),Comedy +189085,See You Yesterday (2017),Comedy|Drama|Sci-Fi +189087,The Garden (2006),Drama|Horror|Thriller +189089,Behind the Walls (2011),Drama|Horror|Mystery|Thriller +189091,From What Is Before (2014),Drama +189093,Dubrovskiy (2014),Drama +189095,Bhaskar The Rascal (2015),Drama +189097,The Misandrists (2017),Drama +189099,Show Dogs (2018),Comedy +189101,The Desert Bride (2017),Drama +189103,The Guardians (2017),Drama +189105,Class Rank (2018),Comedy +189107,Anything (2017),Drama|Romance +189109,Pandas (2018),Documentary +189111,Spiral (2018),Documentary +189113,Love & Bananas: An Elephant Story (2018),Documentary +189115,The Escape of Prisoner 614 (2018),Adventure|Comedy|Crime +189117,They Remain (2018),Drama|Horror|Mystery|Thriller +189119,Souvenir (2016),Comedy|Drama +189121,Ramen Heads (2017),Documentary +189123,Maineland (2017),Documentary +189125,Izzy Gets the F*ck Across Town (2018),Comedy +189129,What We Started (2018),Documentary +189131,Birthmarked (2018),Comedy +189133,After Louie (2017),Drama|Romance +189137,McKellen: Playing the Part (2018),Documentary +189139,The Door (2012),Drama +189141,Pocket Listing (2016),Action|Comedy|Crime +189143,The Starry Sky Above Me (2018),(no genres listed) +189145,1812. Ballad of the Uhlans (2012),Adventure +189147,V Centuria. Searching For a Charmed Treasure (2010),Adventure|Comedy +189149,Black Water (2018),Action|Drama +189151,Газгольдер: Фильм (2014),Crime +189153,Daring Days (2007),Adventure|Comedy|Crime +189155,Bollywood Evil Dead (2008),Horror +189157,Born in the USSR: 7 Up (1991),Documentary +189159,Born in the USSR: 14 Up (1998),(no genres listed) +189161,Born in the USSR: 21 Up (2005),(no genres listed) +189163,Born in the USSR: 28 Up (2012),(no genres listed) +189165,The Real Tale (2011),Children|Comedy|Fantasy +189167,A Dangerous Son (2018),Documentary +189169,Ugly Nasty People (2017),Comedy +189171,They Still Call Me Bruce (1987),Comedy +189173,A Rough Draft (2018),Fantasy|Sci-Fi +189175,Waxwork II: Lost in Time (1992),Comedy|Fantasy|Horror +189177,Recep İvedik 5 (2017),Comedy +189179,"Mummy, I'm a Zombie (2014)",Animation|Fantasy +189181,The House of the Arrow (1953),Mystery +189183,Scandal Makers (2008),Comedy|Drama +189185,Thunder Run (1986),Action|Thriller +189187,Where Is Winky's Horse? (2007),Children +189189,Wait for Your Laugh (2017),Documentary +189191,Edie (2018),Drama +189193,Cover Versions (2018),Mystery|Thriller +189195,Matriculated (2003),Animation|Drama|Sci-Fi +189197,Revelation Road: The Beginning of the End (2013),Action|Drama|Thriller +189199,Revelation Road 2: The Sea of Glass and Fire (2013),Action|Drama +189201,The Black Rider: Revelation Road (2014),Action|Drama|Fantasy|Thriller +189203,Upgrade (2018),Action|Comedy|Horror|Sci-Fi|Thriller +189205,Action Point (2018),Comedy +189207,Kitty (2016),Fantasy +189209,The Guest House (2017),Thriller +189211,The Redeeming (2018),Drama|Mystery|Thriller +189213,DJ: Duvvada Jagannadham (2017),Action|Comedy +189215,Finding Momo (2017),Comedy +189217,Avengers Grimm: Time Wars (2018),Action|Adventure|Fantasy +189219,Grimm's Snow White (2012),Fantasy +189221,The Toymaker (2017),Horror +189223,Where I Grow Old (2016),Drama +189225,Love And Other Cults (2017),Comedy|Drama +189227,Bronze: Zetsuai Since 1989 (1996),(no genres listed) +189229,Desperate Love (1992),Animation|Drama|Romance +189231,The Curse of Kazuo Umezu (1990),Animation|Horror +189233,Devilman - Volume 1: The Birth (1987),Action|Animation|Fantasy|Horror +189235,A Tale of Two Coreys (2018),Drama +189237,High☆Speed!: Free! Starting Days (2015),Animation +189239,Mommy's Little Girl (2016),Drama +189241,Hotel Artemis (2018),Sci-Fi|Thriller +189243,PQ17: An Arctic Convoy Disaster (2014),Documentary +189245,The Pregnant Papa (1989),Comedy +189247,Confessions of a Porn Addict (2008),Comedy +189249,Damsel (2018),Comedy|Drama|Western +189251,Modern Love Is Automatic (2009),Comedy +189253,Bohemian Nights (1985),Drama +189255,Fursonas (2016),Documentary +189257,Ungodly Acts (2015),Drama +189259,The Missing Girl (2015),Comedy|Drama|Mystery +189261,Vlog (2008),Horror +189263,The Choking Game (2014),Drama +189265,Walking the Halls (2012),Drama|Thriller +189267,Puppylove (2013),Drama|Romance +189269,Don't Need You - The Herstory of Riot Grrrl (2005),Documentary +189271,My Sweet Audrina (2016),Drama|Thriller +189277,The Chart of Love (2014),Drama +189279,Dawn of a Filmmaker: The Keisuke Kinoshita Story (2013),Drama +189281,Petal Dance (2013),Drama +189283,Yellow Elephant (2013),Drama|Romance +189285,My SO Has Got Depression (2011),Comedy|Drama +189289,"Here Comes the Bride, My Mom! (2010)",Drama|Romance +189291,Solanin (2010),Drama|Romance +189293,Brass Knuckle Boys (2008),Comedy +189295,Flowers in the Shadow (2008),Comedy|Drama +189299,Sad Vacation (2007),Drama +189301,Virgin Snow (2007),Romance +189303,"Tokyo Tower: Mom and Me, and Sometimes Dad (2007)",Drama +189307,Su-ki-da (2006),Drama|Romance +189311,Shooting Stars (2002),Comedy +189313,San Antonio (2004),Action|Comedy +189317,French Cuisine (2015),Comedy +189319,"Dude, Where's the Party? (2004)",Comedy +189321,Ten 'til Noon (2006),Crime|Thriller +189323,"Hello, Schoolgirl (2008)",Comedy|Drama +189329,The Catcher Was a Spy (2018),Drama|War +189331,The Spy Who Dumped Me (2018),Action|Comedy +189333,Mission: Impossible - Fallout (2018),Action|Adventure|Thriller +189335,Addio giovinezza! (1918),(no genres listed) +189337,The Early Hatchling Gets The Worm (2016),Animation +189341,Hidden Agenda (1999),Action|Crime|Mystery +189343,Trainer! (2013),Documentary +189345,The Doctor From India,(no genres listed) +189347,Death in Sarajevo (2016),Drama +189349,Adalen 31 (1969),Drama|Romance +189351,The Youth of Maxim (1935),(no genres listed) +189353,Apache Warrior (2017),Documentary +189355,The Cook (1918),Comedy +189357,The Survivor's Guide to Prison (2018),Documentary +189359,Vincent (2014),Adventure|Comedy|Fantasy +189361,The Rape of the Vampire (1968),Horror +189363,Ocean's 8 (2018),Action|Comedy|Crime|Thriller +189365,UV (2007),Drama|Mystery +189367,Sunday's Illness (2018),Drama +189369,From Left to Right (1989),Animation +189371,«5/4» (1990),Animation +189373,Legend (2014),Action|Drama|Romance +189375,Return Move (1981),Action|Adventure|Drama +189377,Pappa pia (2017),Comedy|Romance +189379,The Enchanting Shadow (1960),Drama|Horror +189381,SuperFly (2018),Action|Crime|Thriller +189383,La barra de la esquina (1950),Comedy|Drama +189385,Los muchachos de mi barrio (1970),(no genres listed) +189387,El profesor tirabombas (1972),Comedy +189389,El profesor patagónico (1970),Comedy +189391,El profesor hippie (1969),Comedy +189393,97% Owned (2012),Documentary +189395,"1, 2, 3, voleurs (2011)",Crime +189397,Never Leave Alive (2017),Action|Adventure +189399,Ibiza (2018),Comedy|Romance +189401,Astro (2018),Action|Sci-Fi|Thriller +189403,Tulipani (2017),Comedy|Drama +189405,Holy Goalie (2018),Comedy +189407,Janatha Garage (2016),Action|Drama +189409,Robin des Bois - La véritable histoire (2015),Comedy +189413,The Truce (1974),(no genres listed) +189415,Últimos días de la víctima (1982),Crime|Thriller +189417,"Thi Mai, rumbo a Vietnam (2018)",Comedy +189423,"Human, Space, Time and Human (2018)",Drama +189425,Chasing Cain (2001),Crime|Drama +189427,Harry & Meghan: A Royal Romance (2018),Romance +189429,Royal Matchmaker (2018),(no genres listed) +189431,The Neighbor (2018),Drama|Thriller +189433,Pensé que iba a haber fiesta (2013),(no genres listed) +189435,Vannin' (2013),Documentary +189437,Abeltje (1998),Adventure +189439,Pluk van de Petteflet (2004),Adventure +189441,The Skippers of the Cameleon (2003),Children +189443,Macross: Do You Remember Love? (1984),Action|Adventure|Animation|Drama|Sci-Fi|War +189445,Con il fiato sospeso (2013),Drama +189447,Macross Zero (2002),Action|Animation|Sci-Fi|War +189449,Macross Frontier: The False Songstress (2009),Animation|Drama|Romance|Sci-Fi +189451,Macross: Flash Back 2012 (1987),Animation|Sci-Fi +189453,The Ossuary (1970),Animation|Documentary +189455,Manly Games (1988),Animation +189457,Nollywood Babylon (2009),Documentary +189459,Shoot Me in the Heart (2015),Drama +189461,Midnight Runners (2017),Action|Comedy +189463,Tiramisù (2016),Comedy +189465,Делай - раз! (1989),Drama|War +189467,"Ed, Edd n Eddy's Big Picture Show (2009)",Adventure|Animation|Comedy +189469,Welcome to Nollywood (2007),Documentary +189471,Spivak (2018),Comedy +189473,"Red, Honest, in Love (1984)",Adventure|Children|Fantasy +189475,The Miseducation of Cameron Post (2018),Drama +189477,The Silent Storm (2014),Drama|Romance +189479,The Swan Princess: Royally Undercover (2017),Animation|Children +189481,Stink Bomb (1995),Action|Animation|Comedy +189483,Cannon Fodder (1995),Animation +189485,Global Heresy (2002),Comedy|Drama +189489,Dad in Training (2016),Comedy +189491,Les Gorilles (2015),Comedy +189493,Northern Lights (1978),Drama +189495,Legendary Amazons (2011),Action|War +189497,Reset (2017),Action|Sci-Fi +189499,The Con Artist (2010),Comedy +189501,Superfights (1995),Action +189503,Space Dive (2012),Documentary +189505,The Return of Maxim (1937),(no genres listed) +189507,Craters of the Moon (2014),(no genres listed) +189509,Hollow Creek (2016),Crime|Mystery|Thriller +189511,Dirty Beautiful (2015),Comedy|Drama|Romance +189513,Sunday School Musical (2008),(no genres listed) +189521,Maternal Instincts (1996),Drama|Thriller +189525,The Carter Effect (2017),Documentary +189527,The Net (2016),Drama +189529,The Secret War of Harry Frigg (1968),Comedy|War +189531,Testosterone (2003),Comedy|Drama +189533,The Fall of Sparta (2018),Drama +189535,How Long Will I Love U (2018),Comedy|Fantasy|Romance +189537,Prodigals (2018),(no genres listed) +189539,Demi Lovato: Simply Complicated (2017),Documentary +189541,Fanat (1989),Action|Crime +189545,My Sister My Love (1966),Drama|Romance +189547,Iron Soldier (2010),Action|Sci-Fi +189549,2036 Origin Unknown (2018),Sci-Fi +189553,Macross 7: The Galaxy is Calling Me (1995),Action|Animation|Sci-Fi +189555,Dragon Ball Z - The Fall of Men (2015),Action|Adventure +189557,Gutterdämmerung (2016),(no genres listed) +189559,A Species Odyssey (2003),Documentary +189565,Birds Without Names (2017),Drama|Mystery +189567,Alex Strangelove (2018),Comedy +189569,The Adventurers (2012),Adventure|Comedy +189571,The Reflecting Pool (1979),(no genres listed) +189573,Freshman Father (2010),(no genres listed) +189575,Five Gates to Hell (1959),Adventure|Drama|War +189577,Tau,Sci-Fi|Thriller +189579,Captain Milkshake (1970),Drama +189581,Rikidozan: A Hero Extraordinaire (2004),Drama +189585,The Yellow Scarf (2000),Drama +189589,Rob Schneider: Soy Sauce and the Holocaust (2013),Comedy +189591,Jungle Emperor Leo (1997),Adventure|Animation|Children|Comedy +189593,Four Days In November (1964),Documentary +189595,Alternative Math (2017),Comedy +189597,The Plow That Broke the Plains (1936),(no genres listed) +189599,A Visit to Peek Frean and Co.'s Biscuit Works (1906),Documentary +189601,Power and the Land (1940),Documentary +189603,Meat (1976),Documentary +189605,American Meat (2013),Documentary +189607,Diet for a New America (1992),Documentary +189609,The Price of Sugar (2007),Documentary +189611,Lunch Line (2010),(no genres listed) +189615,Truck Farm (2011),(no genres listed) +189617,Soul Food Junkies (2012),(no genres listed) +189619,The Greenhorns,(no genres listed) +189621,Growing Cities (2013),Documentary +189623,La Camioneta: The Journey of One American School Bus (2012),Documentary +189625,Dirty Computer (2018),Drama|Romance|Sci-Fi +189627,Katie Says Goodbye (2018),(no genres listed) +189633,Yomeddine (2018),Adventure|Comedy|Drama +189635,Le talent de mes amis (2015),Comedy +189637,A Single Life (2014),Animation +189639,Khushi (2001),Action|Drama|Romance +189641,Loving Pablo (2018),Crime|Drama +189643,The Cakemaker (2017),Drama +189645,Sixty Million Dollar Man (1995),Comedy|Fantasy|Sci-Fi +189647,The Forgiven (2018),Thriller +189649,The Boat Race (2009),Drama +189651,Last Days of Coney Island (2015),Animation +189657,Demonwarp (1988),Horror|Sci-Fi +189659,In Your Veins (2009),Drama +189661,Out of Control (1985),Action|Drama +189663,"Those Lips, Those Eyes (1980)",Comedy|Romance +189667,Ayla: The Daughter of War (2017),Drama|War +189669,King Lear (2018),Drama +189671,Big Red (1962),Action|Adventure|Children|Drama +189675,José Rizal (1998),Drama|War +189677,Monster High: New Ghoul at School (2010),Animation|Children +189679,Food Fight (2008),Documentary +189681,Steel and Lace (1991),Action|Horror|Sci-Fi +189683,All I Want (2018),(no genres listed) +189685,Brace for Impact (2016),Thriller +189687,Commando (1988),Action|Drama|Romance +189693,Gurrumul (2018),Documentary +189695,Nothing Like a Dame (2018),Documentary +189697,Twenty Twenty-Four (2017),Drama|Mystery|Thriller +189701,Us and Them (2018),Drama +189703,Four Christmases and a Wedding (2017),(no genres listed) +189707,Super Star (2008),(no genres listed) +189709,PickUp: With no Rules (2009),Comedy|Romance +189711,Pop World (2005),Comedy|Drama +189713,BlacKkKlansman (2018),Comedy|Crime|Drama +189715,Anonymous 616 (2018),Horror|Thriller +189717,Scenario du Film 'Passion' (1982),Documentary +189719,Killer Tongue (1996),Comedy|Horror|Sci-Fi +189721,What Girls are Silent About (2013),Comedy +189723,Last Ones Out (2016),(no genres listed) +189725,Lek and the Dogs (2017),(no genres listed) +189727,House of Z (2016),Documentary +189731,A Blue Automobile (2004),(no genres listed) +189735,The Reason (2004),Crime|Drama|Mystery +189743,Radiance (2017),Drama|Romance +189745,Kevin Smith: Silent but Deadly (2018),Comedy +189747,Why I Did (Not) Eat My Father (2015),Adventure|Animation|Comedy +189749,Attention danger travail (2003),Documentary +189751,Enfin pris ? (2002),Documentary +189753,Deadly Games (1989),Action|Horror|Thriller +189755,Camping (2006),Comedy +189757,Camping 2 (2010),Comedy +189759,Camping 3 (2016),Comedy +189761,Les Tuche 3 (2018),Comedy +189763,Entre amis (2015),Comedy +189765,Tonight I'll Sleep at Yours (2007),Comedy +189767,Fastlife (2014),Comedy +189769,Money (2017),Thriller +189773,Bunks (2013),Comedy +189775,Kissing Candice (2017),Drama|Thriller +189777,The Prayer (2018),Drama +189779,My Brother's Name Is Robert and He Is an Idiot (2018),Drama +189781,Down a Dark Hall (2018),Drama|Fantasy|Thriller +189783,Christopher Robin (2018),Adventure|Animation|Comedy +189785,Charming (2018),Animation|Comedy +189787,The Competition (2018),Comedy|Romance +189791,The Book of Masters (2009),Fantasy +189793,The Bridges of Sarajevo (2014),Documentary|Drama +189795,Eva (2018),Drama +189797,Everyone's Life (2017),Comedy|Romance +189799,Eugenio (2018),Documentary +189801,Agnieszka (2014),Drama +189803,Going West (2018),Comedy|Drama +189805,Papillon (2018),Drama +189807,Millionaire Dogs (1999),Animation|Children +189809,The Night Eats the World (2018),Fantasy|Horror +189811,The Nostril Picker (1988),Comedy|Horror +189815,Bad Blood (2017),Mystery|Thriller +189817,The Unraveling (2015),Crime|Drama|Horror|Thriller +189819,Escape Plan 2: Hades (2018),Action|Crime|Thriller +189821,Firestorm (1997),Action|Sci-Fi|Thriller +189823,Hailey Dean Mystery: Dating is Murder (2017),Mystery +189825,Born in 68 (2008),Drama +189827,Yours in Sisterhood (2018),Documentary +189829,Hackers Are People Too (2008),Documentary +189831,Affairs of State (2018),Drama|Romance|Thriller +189833,Inheritance,(no genres listed) +189835,The Crew (2015),Crime|Drama|Thriller +189837,I Am Yours (2013),Drama +189839,I Wanted to See Angels (1992),Crime|Romance +189841,Treasures O.K. (2013),Adventure|Comedy|Romance +189843,Nine Meals from Chaos (2018),Drama +189845,National Theatre Live: The Curious Incident of the Dog in the Night-Time (2012),(no genres listed) +189847,Don't Leave Your Lovers (1980),Drama|Romance +189849,A Funny Shave (1906),Comedy +189851,Orange (2015),Drama +189853,Studio 54 (2018),Documentary +189855,The Happy Prince (2018),Comedy|Drama +189857,The Little Girl Who Sold the Sun (1999),Children|Drama +189859,Intoxication (2002),Documentary +189861,Hate Story IV (2018),Crime|Thriller +189863,The Silent Revolution (2018),Drama +189865,A Murder in Mansfield (2017),Documentary +189867,"Hale County This Morning, This Evening (2018)",Documentary +189869,Bathtubs Over Broadway (2018),Documentary +189871,Silent Voice (2009),Drama +189873,Bao (2018),Animation +189877,"Mektoub, My Love: Canto Uno (2018)",Drama|Romance +189879,The Children Act (2018),Drama +189881,The Flicker (1966),(no genres listed) +189883,Nibunan (2017),Action|Crime|Thriller +189885,The Guilty (2018),Thriller +189887,Josef Fritzl: The Story of a Monster (2010),Crime|Documentary|Drama +189889,Shirkers (2018),Documentary +189891,Hal (2018),Documentary +189893,Terrifier (2017),Horror|Thriller +189895,Earthrise (2014),Drama|Sci-Fi|Thriller +189897,Martian Land (2015),Action|Adventure|Horror|Sci-Fi +189899,Let My People Go! (2011),Comedy +189901,Who's Gonna Love Me Now? (2016),Documentary +189903,'63 Boycott (2016),Documentary +189905,The Apology King (2013),Comedy +189907,Midsummer's Equation (2013),Crime|Drama|Mystery +189909,A Throw of Dice (1929),Adventure|Drama|Romance +189911,Todd McFarlane's Spawn (1997),Action|Animation|Horror +189913,Todd McFarlane's Spawn 2 (1998),Action|Animation|Horror +189915,Todd McFarlane's Spawn 3: The Ultimate Battle (1999),Action|Animation|Horror +189917,Panama (2015),Drama|Thriller +189919,The President's Mistress (1978),Drama|Mystery|Thriller +189921,Black Water Transit (2009),Crime|Drama +189923,The Scythian (2018),Action|Adventure|Drama|Fantasy +189925,Birth As We Know It (2006),(no genres listed) +189927,A Skin So Soft (2018),Documentary +189929,Distorted (2018),Action|Mystery|Thriller +189931,A Night at the Movies (1937),Comedy +189935,Song at Midnight (1937),Drama|Horror +189937,Stuff (2015),Drama|Romance +189939,Faith (2010),Drama +189941,Camp Cool Kids (2017),Children +189945,Be My Star (2001),Romance +189947,Longing (2006),Drama +189949,The Serpent's Kiss (1997),Drama|Romance +189951,How Sweet It Is (2013),(no genres listed) +189953,To Dust (2018),Comedy +189955,Da Hu Fa (2017),Action|Animation|Drama +189957,The Witness (1969),Comedy|Drama +189959,Le Retour du héros (2018),Adventure|Comedy|Drama +189961,The Unhanged (1971),Comedy +189967,Little Boys (1986),Comedy +189971,Pohjan tähteet (1969),Comedy +189973,Speedy Gonzales – Noin 7 veljeksen poika (1970),Comedy +189983,Sweethearts (1997),Comedy|Drama|Romance +189985,Octavio Is Dead (2018),(no genres listed) +189987,Thundercrack! (1975),Comedy|Horror +189989,True Crime: Safe House (2012),Crime|Drama +189991,The Extraordinary Journey of the Fakir (2018),Comedy|Drama +189995,Sea Sorrow (2017),Documentary +189997,Little Tito and the Aliens (2017),(no genres listed) +190003,Ulysses: A Dark Odyssey (2018),Action|Drama +190007,The Village of No Return (2017),Comedy +190009,Oh mio Dio! (2018),(no genres listed) +190011,Legend of the Naga Pearls (2017),Adventure|Comedy|Fantasy|Romance +190013,Women Kingdom (1967),Drama +190015,Silva (1981),Comedy|Romance +190017,The Death of Superman,Action|Animation|Drama|Sci-Fi +190019,Hill 24 Doesn't Answer (1955),Drama|Romance|War +190021,Cardinals (2017),Crime|Drama|Thriller +190023,At War (2018),Drama +190025,Grief Street (1931),Crime|Mystery|Romance +190027,Sorry Angel (2018),Drama +190029,Beyond The Sky (2018),Horror|Mystery|Sci-Fi|Thriller +190031,We Are Pregnant (2016),Comedy|Drama|Romance +190035,Museum (2016),Crime|Horror|Thriller +190037,Thillana Mohanambal (1968),Drama|Romance +190039,Thevar Magan (1992),Drama +190041,Chronological Order (2010),Sci-Fi +190043,Govindudu Andarivaadele (2014),Drama +190045,Blonde Cobra (1963),(no genres listed) +190047,Hold Me While I'm Naked (1966),Comedy|Drama +190049,Report (1967),(no genres listed) +190051,Favola (2017),Comedy +190053,Everything Must Disappear (1997),Comedy +190055,Love Struck (2014),Comedy|Drama|Romance +190057,Made in Sheffield (2001),Documentary +190059,Prince In Exile (2018),Action|Drama +190061,Process Red (1966),(no genres listed) +190063,Manual of Arms (1966),(no genres listed) +190067,Surface Tension (1968),Documentary +190069,Snowblind (1968),(no genres listed) +190071,Maxwell's Demon (1968),(no genres listed) +190073,Palindrome (1969),(no genres listed) +190077,The Wild Pear Tree (2018),Drama +190079,Baadshah (2013),Action|Drama|Romance +190081,Lucia (1968),Drama +190083,The King (2018),Documentary +190085,How It Ends (2018),Action|Adventure|Mystery|Sci-Fi|Thriller +190087,Lust Stories (2018),Drama|Romance +190089,Hannah Gadsby: Nanette (2018),Comedy +190091,Kid Auto Races at Venice (1914),Comedy +190093,Ombyte av tåg (1943),Drama +190095,Empty Eyes (1953),(no genres listed) +190097,The Charmer (2018),Drama|Thriller +190099,Find This Dumb Little Bitch and Throw Her Into a River (2017),Drama +190101,The Pistol Shrimps (2016),Documentary +190103,Manila in the Claws of Light (1975),Drama|Mystery +190105,My Other Husband (1983),Comedy +190109,Courage fuyons (1979),Comedy +190111,Fantasia chez les ploucs (1971),Comedy +190113,Yuki's Sun (1972),Animation|Drama +190115,Naïs (1945),Drama +190117,To Be Twenty in the Aures (1972),Documentary|Drama +190121,La belle meunière (1948),Comedy +190123,Diamond 13 (2009),Action|Crime|Thriller +190125,The Boneyard (1991),Horror +190127,Arbor Demon (2016),Drama|Horror|Thriller +190129,The Dating Project (2018),Documentary +190131,Lucky Stiff (2014),Comedy +190133,Stranger Fruit (2017),Documentary +190135,Catching Feelings (2017),Comedy|Drama|Romance +190137,1778 Stories of Me and My Wife (2011),Drama +190139,Nobody's Watching (2017),(no genres listed) +190141,Casi 40 (2018),Comedy|Romance +190143,Formentera Lady,(no genres listed) +190145,Los Perros (2017),Comedy|Drama +190147,Jefe (2018),Comedy +190155,The Year of Spectacular Men (2018),Comedy|Drama +190157,Wrath of Silence (2017),Crime|Thriller +190159,The Midnighters,(no genres listed) +190161,Likeness (2013),Drama +190163,Leaning Towards Solace (2012),(no genres listed) +190165,Severus Snape and the Marauders (2016),Adventure|Drama|Fantasy|Mystery +190167,Winter Vacation (2010),Drama +190169,Charlotte for Ever (1986),Drama +190171,The Lion Sleeps Tonight (2018),Drama +190173,Grandeur and Decadence of a Small-Time Filmmaker (1986),(no genres listed) +190175,Hannah (2017),Drama +190177,Insect (2018),Animation|Comedy +190179,Araby (2018),Drama +190181,24 Frames (2017),(no genres listed) +190183,The Darkest Minds (2018),Sci-Fi|Thriller +190185,Spring Fever (2010),Drama|Romance +190187,The Graduation (2017),Documentary +190189,The Boy Whose Skin Fell Off (2004),(no genres listed) +190193,Museum (2018),Crime|Drama +190195,"To Each, Her Own (2018)",Comedy|Romance +190197,LBJ (1968),Documentary +190199,Believer (2018),Documentary +190201,Busjack Returns (2017),Comedy +190203,Kaleidoscope (2017),Thriller +190205,Road (1987),Comedy|Drama +190207,Tilt (2011),Drama|Romance +190209,Jeff Ross Roasts the Border (2017),Comedy +190211,Fast Convoy (2016),Action|Crime|Thriller +190213,John From (2015),Drama +190215,Liquid Truth (2017),Drama +190217,Dearest Sister (2016),Drama|Horror +190219,Bunny (1998),Animation +190221,Hommage à Zgougou (et salut à Sabine Mamou) (2002),Documentary +190223,The Family (2016),Crime|Documentary|Drama +190225,"Salam, New York! (2013)",Comedy|Drama|Romance +190227,Assassin's Creed: Embers (2011),Animation +190229,Police Beat (2005),Drama +190231,Lucky Kids (1936),Comedy|Romance +190233,The Three from the Filling Station (1930),Comedy|Drama +190237,Nude Caboose (2006),(no genres listed) +190239,The World of Stainboy (2000),Animation +190241,The Break-In (2016),Horror +190243,A Family Thanksgiving (2010),Comedy|Fantasy +190245,Loue-moi ! (2017),Comedy +190247,"Sex, Pity and Loneliness (2017)",Comedy|Drama +190249,W. Kamau Bell: Private School Negro (2018),(no genres listed) +190253,Apple Mac: 1984 (1984),Sci-Fi +190255,One Evening After the War (1998),Drama +190257,Genre (1996),Animation +190259,Lily and Jim (1997),Animation|Comedy +190261,Paradise Trips (2015),Comedy|Drama +190263,The Redemption of the Devil (2015),Documentary +190265,It's the Old Army Game (1926),Comedy|Romance +190269,Honey: Rise Up and Dance (2018),Drama +190271,Broken (2016),Drama|Thriller +190273,The Blue Eyes of Yonta (1992),Drama +190275,The Wayward Wife (1953),Comedy|Drama +190277,Abandoned (1955),Drama +190279,Sweet Games of Late Summer (1970),Drama +190281,"No Fear, No Die (1990)",Drama +190283,Apocalypse: Caught in the Eye of the Storm (1998),Thriller +190285,Teenage Mutant Ninja Turtles: The Making of The Coming Out of Their Shells Tour (1990),(no genres listed) +190287,Slender Man (2018),Horror +190289,Nyrölä 3 (2004),(no genres listed) +190291,"Berlin, Schoenhauser Corner (1957)",Drama|Romance +190293,The Unthinkable (2018),Thriller +190297,Lady Chatterley's Lover (2015),Drama|Romance +190299,"I'm Drunk, I Love You (2017)",Romance +190301,Duel to the Death (1983),Action +190303,The O'Briens (2013),Children|Comedy|Drama|Romance +190305,A Prayer Before Dawn (2018),Action|Crime|Drama +190307,October (2018),Drama|Romance +190309,Re Loca (2018),Comedy +190311,La omisión (2018),Drama +190313,The Scourge (2017),(no genres listed) +190315,Las olas (2017),(no genres listed) +190317,Praça Paris (2017),Drama|Thriller +190319,The Exchange (2017),Comedy +190321,Memoir of Pain (2018),Drama +190323,Jalouse (2017),Comedy +190325,Beyond Beyond (2014),Adventure|Animation +190327,In Times of Fading Light (2017),Comedy|Drama +190329,Normandie nue (2018),Comedy|Drama +190331,Dhogs (2017),(no genres listed) +190333,The Night of the Virgin (2016),Comedy|Fantasy|Horror +190335,Diane Has the Right Shape (2017),Comedy +190337,You Shall Not Sleep (2018),Horror|Thriller +190339,White Fang (2018),Animation|Drama +190343,El mundo es suyo (2018),Comedy +190345,Francisca (1981),Drama|Romance +190347,Foam Party! (2017),Comedy|Romance +190349,"Juliet, Naked (2018)",Comedy|Drama +190351,The First Year (2001),Documentary +190353,Tarak (2017),Action|Romance +190355,Rolling to You (2018),Comedy|Romance +190357,Beyond Evil (1980),Horror +190359,Dim the Fluorescents (2017),Comedy|Drama|Romance +190361,My Generation (2018),Documentary +190365,"The Animation Show, Volume 1 (2003)",Animation +190367,The Meaning of Life (2005),Animation +190369,At Full Speed (1982),Drama +190371,A Ilha dos Amores (1982),Drama +190373,Invitation au voyage (1982),Crime|Horror|Mystery|Thriller +190375,Sweet Inquest on Violence (1982),(no genres listed) +190377,The True Story of Ah Q (1982),(no genres listed) +190379,The Wounded Man (1983),Crime|Drama|Romance +190381,Forbidden Relations (1983),(no genres listed) +190383,America As Seen By a Frenchman (1960),(no genres listed) +190385,The Ninth Circle (1960),Drama +190387,12 Jahre (2010),(no genres listed) +190389,"From Mesmer, with Love or Tea for Two (2002)",Drama +190391,Axolotl Overkill (2017),Drama +190395,Frontier (2018),Adventure|Drama|Sci-Fi|War +190397,The Domestics (2018),Horror|Thriller +190399,Animal World (2018),Action|Adventure|Drama +190401,Calibre (2018),Thriller +190403,Throw Me To The Dogs (2015),(no genres listed) +190405,Stalk of the Celery Monster (1979),Animation +190407,Maestro (2005),Animation +190409,Mario Banana I (1964),(no genres listed) +190411,Mario Banana II (1964),Documentary +190413,Rare Exports Inc. (2003),Action|Comedy +190415,Dave Gorman's Googlewhack Adventure (2004),Comedy +190417,Does Your Soul Have a Cold? (2007),Documentary +190419,Beautiful Youth (2014),Drama +190423,Cuatro contra el mundo (1950),(no genres listed) +190425,"My Friend ""A"" (2018)",Drama +190431,The Mole Song: Hong Kong Capriccio (2016),Action|Comedy +190433,64: Part 2 (2016),Mystery +190435,64: Part 1 (2016),Mystery +190445,Nodame Cantabile: The Movie II (2010),Drama|Romance +190447,Nodame Cantabile: The Movie I (2009),Drama|Romance +190451,Dear Doctor (2009),Drama +190459,Nodame Cantabile in Europe (2008),Drama +190463,Believer (2004),(no genres listed) +190465,The Speckled Band (1931),Crime|Drama|Mystery|Romance +190467,All the Reasons to Forget (2018),Comedy|Drama +190469,The Death of Mario Ricci (1983),(no genres listed) +190471,Chicken with Vinegar (1985),Comedy|Crime|Mystery|Romance +190473,The Sea and Poison (1986),(no genres listed) +190475,Evening Bell (1989),(no genres listed) +190477,Adieu Bonaparte (1985),Drama|War +190479,Doors of Glory (2001),Comedy|Drama +190481,Animal Crossing: The Movie (2006),Animation +190483,PLOEY - You Never Fly Alone (2018),(no genres listed) +190485,Don Juan or If Don Juan Were a Woman (1973),Drama +190487,Napalm (2017),Documentary +190489,The Other Love (1947),Drama|Romance +190491,The Policeman's Wife (2013),Drama +190493,Do Over (2016),Comedy +190495,Hot Dog (2018),Action|Comedy +190497,Каникулы президента (2018),Comedy +190499,Buy Me (2017),Drama +190501,Fire on the Amazon (1993),Action|Adventure|Drama +190503,Max My Love (1986),Comedy +190505,Over the Limit (2018),Documentary +190507,Woman at War (2018),Action|Thriller +190509,The Spy Gone North (2018),Thriller +190511,Game Changers (2017),Documentary +190513,Ju-Rei: The Uncanny (2004),Horror +190515,Heroes of Shipka (1954),Drama|War +190519,Bécassine ! (2018),Comedy +190521,Submission: Part I (2004),Drama +190525,Ramen Shop (2018),Drama +190527,Lawrence of Arabia: The Battle for the Arab World (2003),Documentary +190529,This is Congo (2017),Documentary|War +190531,Zora la vampira (2000),Comedy +190533,"Krasner, Norman: Beloved Husband of Irma (1974)",(no genres listed) +190535,Cul-de-Sac (2016),Drama|Mystery +190537,The Bob Zula (2009),Comedy +190539,Odnoklassniki.ru: The Magic Laptop (2013),Comedy|Romance +190541,Far from the Motherland (1960),Drama|Romance|Thriller|War +190543,Brothers' Nest (2018),Comedy|Thriller +190545,Unsound (2015),Comedy|Drama +190547,The Wicked Gift (2017),Horror|Thriller +190551,Blindspotting (2018),Comedy|Drama +190553,Shock and Awe (2018),Drama|Thriller +190555,Searching (2018),Drama +190557,Gasman (1997),Drama +190559,Mario (2018),Drama +190561,The Castle (1968),Drama|Mystery +190565,Chris & Don: A Love Story (2008),Documentary|Romance +190567,Elsa the Rose (1966),Documentary +190569,Paths (2017),Drama +190571,Sunday Morning (2017),Children|Drama|Thriller +190573,My Little Loves (1974),Drama +190575,A Wrinkle in Time (2003),Children|Drama|Sci-Fi +190577,Shorebreak: The Clark Little Story (2016),Documentary +190579,Manmadhan (2004),Thriller +190581,Osthe (2011),Action|Comedy +190583,Goa (2010),Comedy|Romance +190585,Silambattam (2008),Action|Romance +190587,Kaalai (2008),Action +190589,Saravana (2006),Action|Drama|Romance +190591,Kovil (2004),Action|Drama|Romance +190593,Back Soon (2008),Romance +190595,Unfreedom (2015),Crime|Drama|Romance +190599,The Three Kings (2001),Adventure|Comedy|Fantasy +190601,The Life Coach (2009),Comedy +190603,Love Rites (1987),Drama|Mystery +190605,Total Frat Movie (2016),Comedy +190607,Recovery Boys (2018),Documentary +190609,The Tour (2008),Action|Adventure|Comedy +190611,The Long Dumb Road (2018),Comedy +190613,The Commodore Story (2018),Documentary +190615,Mohawk (2018),Action|Drama|Western +190617,Raise The Roof (2015),(no genres listed) +190619,Mindhack: #savetheworld (2017),Sci-Fi +190621,Big Legend (2018),Action|Horror|Thriller +190623,The Legacy of a Whitetail Deer Hunter (2018),Adventure|Comedy|Drama +190625,The Unicorn (2018),Comedy +190627,On the Yeti Trail (2014),Documentary +190629,West of Hell (2018),Fantasy|Horror|Western +190631,Finding Joseph I: The HR from Bad Brains Documentary (2017),Documentary +190633,Celtic Soul (2016),Documentary +190635,How Not to Make a Movie (2013),Documentary +190637,Not Only But Always (2004),Comedy|Drama +190641,Thunder (1983),Action +190643,Thunder II (1987),Action|Drama +190645,Thunder III (1988),Action|Drama +190647,Future '38 (2017),Comedy|Romance|Sci-Fi +190649,Wexford Plaza (2016),Comedy +190651,Under the Tree (2017),Drama +190653,Buffalo Soldiers (1997),Drama|Western +190655,Tomie (1999),Horror +190657,Velaiilla Pattadhari 2 (2017),Action|Comedy|Romance +190665,U Me Aur Hum (2008),Comedy|Drama|Romance +190667,Kuch Khatti Kuch Meethi (2001),Children|Drama +190669,Raju Chacha (2000),(no genres listed) +190673,Hum Aapke Dil Mein Rehte Hain (1999),Children|Drama|Romance +190675,Pyaar To Hona Hi Tha (1998),Comedy|Drama|Romance +190681,Hameshaa (1997),(no genres listed) +190695,Sleepwalking in Suburbia (2017),Drama +190697,Welcome to Willits (2016),Horror|Sci-Fi +190699,Katy Caterpillar (1984),Adventure|Animation|Children +190701,The Angel of Pennsylvania Avenue (1996),(no genres listed) +190703,Miracle on the 17th Green (1999),(no genres listed) +190705,Ryuichi Sakamoto: CODA (2017),(no genres listed) +190707,1968 (2018),(no genres listed) +190709,"Through Fire, Water and... Brass Pipes (1968)",Children|Fantasy +190713,Gallagher: Two Real (1981),(no genres listed) +190715,Gallagher: Mad As Hell (1981),(no genres listed) +190717,Gallagher: Totally New (1982),Comedy +190719,Gallagher: The Maddest (1983),Comedy +190721,Gallagher: Stuck in the Sixties (1983),Comedy +190723,Gallagher: Over Your Head (1984),(no genres listed) +190725,Gallagher: Melon Crazy (1984),(no genres listed) +190727,Gallagher: the Bookkeeper (1985),(no genres listed) +190737,Running for Grace (2018),Children|Romance +190739,UFO (2018),Mystery +190741,Summer of 84 (2018),Drama|Horror|Mystery|Thriller +190743,Support the Girls (2018),Drama +190745,Father of the Year (2018),Comedy +190747,Mara,Crime|Horror|Thriller +190749,Madeline's Madeline (2018),Drama +190751,Pick of the Litter (2018),Documentary +190753,Dog Days (2018),Comedy|Romance +190755,The Little Stranger (2018),Drama|Horror|Mystery +190757,Pickings (2018),Action|Crime|Thriller +190759,Occupation (2018),Action|Sci-Fi +190761,Gurgaon (2017),Crime|Thriller +190763,Race 3 (2018),Action|Thriller +190765,Sanju (2018),Comedy|Drama +190767,Baaghi 2 (2018),Action|Romance +190769,Rocky Handsome (2016),Action|Crime|Thriller +190775,Kobiety mafii (2018),Action|Crime|Drama +190777,Criticsized (2016),Crime|Thriller +190781,The House That Jack Built (1976),Animation +190783,Beggars of Life (1928),Adventure|Drama +190785,The Portal (2010),Horror +190793,Cavedweller (2004),Drama +190797,Rated 'R': Republicans in Hollywood (2004),Documentary +190801,King in the Wilderness (2018),Documentary +190803,Notes on My Father: An Interview with Isabella Rossellini (2005),Documentary +190805,How to Train Your Husband or (How to Pick Your Second Husband First) (2017),Comedy +190809,The Perfect Husband (2014),Drama|Horror|Thriller +190811,"High Heels, Low Tide (2012)",Comedy|Romance +190813,Kin (2018),Action|Sci-Fi +190815,The Testimony (2015),Crime|Documentary +190817,The Miles Davis Story (2001),Documentary +190819,"Trigger, Jr. (1950)",Action|Western +190821,My Name Is Barbra (1965),(no genres listed) +190823,Parmanu: The Story of Pokhran (2018),Action|Drama +190825,Automatic at Sea (2016),Adventure|Drama|Mystery +190827,Erasing Eden (2016),Drama +190829,Veljeni vartija (2018),Documentary|Drama +190831,The Emperor's Wife (2003),Drama +190833,Lola Pater (2017),Comedy +190835,The Miniaturist (2017),Drama +190837,Pin Cushion (2018),Drama +190839,August Underground (2001),Horror +190841,Reality Show (2015),(no genres listed) +190843,"Blow, Wind (1973)",Drama +190845,Nightfall (2000),Drama|Sci-Fi|Thriller +190849,The Angels' Melancholia (2009),Drama|Fantasy|Horror|Mystery|Thriller +190853,Icaros: A Vision (2017),Drama +190855,Without the King (2007),(no genres listed) +190857,The Letter (1970),Animation +190859,Unpaid Vacation (1982),Comedy|Romance +190861,#SCREAMERS (2016),Horror +190863,3 Musketeers (2011),Action|Adventure|Thriller +190865,Addio fottuti musi verdi (2017),Comedy +190867,Walk Like a Panther (2018),Comedy +190869,Owl and the Sparrow (2007),Drama +190871,You Might As Well Live (2009),Comedy +190873,Agni Natchathiram (1988),Action|Romance +190875,Mounam Sammadham (1990),Crime|Drama|Thriller +190877,Dancing Outlaw (1991),Documentary +190879,Kikoriki. Deja Vu (2018),Animation|Children|Comedy +190881,The Boss (2016),Documentary +190883,Cinerama Adventure (2002),Documentary +190885,"Numb, at the Edge of the End (2018)",Action|Drama|Sci-Fi|Thriller +190887,The Perfect Bride (2017),Romance +190889,The Skin of the Wolf (2018),Drama|Romance +190891,Nice Coloured Girls (1987),(no genres listed) +190893,Muse: Drones World Tour (2018),Documentary +190895,Steel (2015),Drama|Romance +190897,A Triumph of the Heart: The Ricky Bell Story,(no genres listed) +190899,Нас венчали не в церкви (1983),Romance +190901,Sniper (1932),War +190903,Dracula in Love (2018),Fantasy|Horror +190905,Give the Devil His Due (1984),Children|Fantasy +190907,Snowdrops and Aces (1983),Children|Comedy +190909,"Once Upon a Time, There Was a King... (1955)",Children|Comedy +190911,Ruffiano and Sweeteeth (1997),Children|Fantasy +190913,Hrátky s čertem (1957),Comedy +190915,Angel (2005),Children|Comedy|Fantasy +190917,Angel 2 (2016),Children|Comedy|Fantasy +190919,The Girl on the Broomstick (1972),Children|Comedy +190921,The Silver Chair (1990),Adventure|Children|Fantasy +190923,Dead Season (2012),Horror +190925,Post impact (2004),Adventure|Sci-Fi +190927,Whitney Cummings: Money Shot (2010),Comedy +190931,Delirium: Photo of Gioia (1987),Horror +190933,2 Jennifer (2016),Action|Horror +190935,The Revolt of Job (1983),Drama +190937,Tell Me Your Name,Horror|Thriller +190939,A Simple Favor (2018),Crime|Mystery|Thriller +190941,A Crooked Somebody (2017),(no genres listed) +190943,Duck Duck Goose (2018),Animation +190945,The Package (2018),Comedy +190947,Mary Queen of Scots (2018),Drama +190949,Sierra Burgess Is a Loser (2018),(no genres listed) +190951,Dark Money (2018),Documentary +190953,7 Splinters in Time (2018),Mystery|Sci-Fi|Thriller +190955,Soorma (2018),Drama +190957,The Devil's Doorway (2018),Horror +190959,A Midsummer Night's Dream (2017),Comedy +190961,Poor Boy,Drama +190963,Keep an Eye Out (2018),Comedy +190965,En Busca del Muñeco Perdido,Adventure|Comedy +190967,We Are Thr3e (2017),(no genres listed) +190969,One Sister (2016),(no genres listed) +190971,Hellacious Acres: The Case of John Glass (2011),(no genres listed) +190973,Hidden Reserves (2017),Drama|Sci-Fi +190975,Chi m'ha visto (2017),Comedy +190977,Moth (2016),Horror|Thriller +190979,Siberia (2018),Crime|Romance|Thriller +190981,Miles from Home (1988),Action|Crime|Drama +190983,Potteries (1981),Drama +190985,My Teacher (2017),Romance +190987,The Top Secret : Murder in Mind (2016),Thriller +190989,Grasshopper (2015),Thriller +190991,Prophecy (2015),Thriller +190995,The Mole Song: Undercover Agent Reiji (2014),Action|Comedy|Crime +190997,The Tale of Genji: A Thousand Year Enigma (2011),Drama|Fantasy +191001,Akihabara@DEEP (2006),Action|Adventure|Drama +191003,Gintama 2 (2018),Comedy +191005,Gintama (2017),Action|Adventure|Comedy|Sci-Fi +191009,Nobunaga Concerto: The Movie (2016),Action|Comedy|Sci-Fi +191011,Galaxy Turnpike (2015),Comedy|Sci-Fi +191013,Lady of the Dynasty (2015),Romance|War +191017,Doraemon: New Nobita's Great Demon - Peko and the Exploration Party of Five (2014),Adventure|Animation|Children +191021,"Rich Man, Poor Woman in New York",(no genres listed) +191025,Bayside Shakedown The Final: The New Hope (2012),Action|Crime +191027,Space Brothers (2012),Comedy|Drama +191029,Arakawa Under the Bridge: The Movie (2012),Comedy +191039,Gokusen The Movie (2009),Comedy|Drama +191041,Kudo Shinichi Returns! Showdown with the Black Organization (2007),Mystery +191043,Detective Conan: Kudo Shinichi's Written Challenge (2006),Mystery +191061,69 (2004),Drama +191069,A Guidebook to Killing Your Ex (2016),Comedy|Drama|Horror +191071,Baba (2002),Action|Drama +191073,Valli (1993),Drama +191075,Paradox (2006),Thriller +191077,Venom and Eternity (1951),(no genres listed) +191081,Nightfall (1988),Mystery|Sci-Fi +191083,Tod Browning's 'Freaks': The Sideshow Cinema (2004),Documentary +191085,"Check It Out, Yo! (2006)",Drama +191087,Krystal (2018),Comedy|Drama +191089,41 (2013),Drama|Sci-Fi +191091,Arcadia (2016),Action|Sci-Fi +191093,5th Passenger (2018),Sci-Fi +191095,The Cage Fighter (2017),Action|Documentary|Drama +191097,Pecore in erba (2015),(no genres listed) +191099,Ratatoing (2007),Animation|Children|Comedy +191101,The Jurassic Games (2018),Sci-Fi|Thriller +191107,West of Her (2016),Drama +191109,Between Something & Nothing (2008),Drama +191111,The Drifter (2017),(no genres listed) +191113,Jim Jefferies: This Is Me Now (2018),Comedy +191119,Juggernaut (2017),Children|Crime|Drama +191123,Dark Harvest (2016),Crime|Drama|Thriller +191125,Pharos of Chaos (1983),Documentary +191127,Best Friends Forever (2013),(no genres listed) +191129,Alleluia! The Devil's Carnival (2016),Horror +191131,Girls Like Magic (2017),Comedy|Romance +191133,Sexual Tension: Volatile (2012),Drama +191135,The Great Land of Small (1987),Adventure|Children|Fantasy|Sci-Fi +191137,La Désintégration (2012),Drama +191139,Mad to Be Normal (2017),Drama +191141,The Honey Killer (2018),Comedy|Drama +191143,The Trial (2018),Documentary +191145,Lucky Stiff (1988),Comedy|Horror +191147,Prescription for Danger (2018),Thriller +191151,Invisible Adversaries (1977),(no genres listed) +191153,Johnny Frank Garrett's Last Word (2016),Horror +191157,Relative Evil (2001),Comedy|Drama|Thriller +191159,Cold Sweat (2010),Action|Horror|Thriller +191161,The Roommate (1984),(no genres listed) +191165,New Alcatraz (2001),Action|Horror|Sci-Fi +191167,Love Strikes! (2011),Comedy|Romance +191169,Absolute Zero (2005),Action|Adventure|Sci-Fi|Thriller +191171,Chasing Asylum (2016),Documentary +191173,Liars Fires and Bears (2012),(no genres listed) +191177,C'est tout pour moi! (2017),Comedy +191179,Maryline (2017),Drama +191181,A Diving Bomber Chronicle (1967),Drama|War +191183,Prince Caspian and the Voyage of the Dawn Treader (1989),Adventure|Children|Fantasy +191185,Storm Watch (2002),Action|Sci-Fi|Thriller +191187,Warbirds (2008),Horror +191189,2 Seconds (1998),Drama|Romance +191191,The Operative (2001),Action|Thriller +191193,Dawn of the Dragonslayer (2011),Action|Adventure|Fantasy +191195,Killer Buzz (2001),Action|Horror|Sci-Fi|Thriller +191197,A Beautiful Demon: Kazuo Koike on Lady Snowblood (2016),Documentary +191199,The Last Sin Eater (2007),Drama +191201,Michael Moore Hates America (2004),Documentary +191203,Ô Jerusalem (2006),Drama +191205,Killer Construction: Norio Osada on Lady Snowblood (2016),Documentary +191207,The Heart of Man (2017),(no genres listed) +191209,A Girl of the Limberlost (1990),Drama +191211,The Inheritance (1997),Drama|Romance +191213,Encounter (2018),Sci-Fi +191215,Existence (2012),Drama +191217,Magellan (2017),Mystery|Sci-Fi|Thriller +191219,Céline (1992),Drama +191221,Toxic Skies (2008),Action|Adventure|Drama|Sci-Fi|Thriller +191223,The Tomorrow Man (2002),Sci-Fi|Thriller +191225,Terminal Error (2002),Action|Sci-Fi|Thriller +191227,Specimen (1996),(no genres listed) +191229,Savage Planet (2007),Sci-Fi +191231,The Vagina Monologues (2002),Comedy +191233,I Fine..Thank You..Love You (2014),Comedy|Romance +191235,GODZILLA: City on the Edge of Battle (2018),Action|Animation|Sci-Fi +191237,All I Need (2016),Horror|Thriller +191239,Threshold (2003),Sci-Fi|Thriller +191241,Kung Fu Traveler 2 (2018),Action|Fantasy|Sci-Fi +191243,The Archer (2017),Action +191245,Number 55 (2014),Drama|War +191247,Alp (2016),Horror +191251,Serene Velocity (1970),(no genres listed) +191253,Billionaire Boys Club (2018),Crime|Drama|Thriller +191255,Hell's Kitty (2018),Comedy|Horror +191257,Treasure of the Hidden Planet (1997),Adventure|Animation|Children|Sci-Fi +191259,Best Intentions (2011),(no genres listed) +191261,Metti la nonna in freezer (2018),Comedy +191263,Carne Y Arena (2017),(no genres listed) +191265,Triassic World (2018),Action|Horror|Sci-Fi +191267,The Chinese Exclusion Act (2017),Documentary +191269,March of the Penguins 2 (2017),Documentary +191271,Underdogs (2013),Children|Drama +191273,So Wrong They're Right (1995),Documentary +191277,Ruin Me (2017),Horror|Thriller +191279,G-Funk (2017),Documentary +191283,Disgraced (2017),Documentary +191289,Follies In Concert (1986),Documentary +191291,Yevadu (2014),Action|Thriller +191293,Dhruva (2016),Action|Crime|Thriller +191295,Naayak (2013),Action|Drama +191297,Bruce Lee - The Fighter (2015),Action|Drama|Romance +191299,Sarrainodu (2016),Action|Drama +191301,Iddarammayilatho (2013),Action|Comedy|Romance +191303,Badrinath (2011),Action +191305,Rudhramadevi (2015),Action|Drama +191307,Phata Poster Nikhla Hero (2013),Action|Comedy +191309,R... Rajkumar (2013),Action|Romance +191311,Force 2 (2016),Action|Crime|Thriller +191313,Balupu (2013),Action|Comedy|Romance +191315,Mirapakay (2011),Action|Drama|Romance +191317,Mirchi (2013),Action|Romance +191319,Sarocharu (2012),Comedy|Drama +191321,Skybound (2017),Action|Thriller +191327,Teenage Zombies (1960),Horror|Sci-Fi +191329,A Mile in His Shoes (2011),Children|Drama +191331,Under the Olive Tree (1950),Drama +191333,Blame It on the Night (1984),Comedy|Drama +191335,The Battle of Kerzhenets (1971),Animation|War +191337,La Otra (1946),Crime|Drama|Mystery|Thriller +191341,Bleacher Bums (2001),(no genres listed) +191343,Killing Moon (1999),Thriller +191345,I'll Believe You (2007),Children|Comedy|Sci-Fi +191347,Моя жизнь (2000),Animation +191349,America The Story of Us (2010),Documentary +191351,To All the Boys I've Loved Before (2018),Comedy|Romance +191353,Examination (1968),(no genres listed) +191355,The Erlprince (2016),Drama +191357,Midnighters (2018),Thriller +191359,Zoe (2018),Romance|Sci-Fi +191361,Cheaters (2000),Drama +191363,Fucking Berlin (2016),Drama|Romance +191365,Indian Horse (2018),Drama +191367,The Predator (2018),Action|Adventure|Horror|Sci-Fi +191369,Pulimurugan (2016),Action|Adventure +191371,Tales From The Far Side (1994),Animation +191373,Poor Cinderella (1934),Animation|Comedy +191375,Ichthys (2005),Animation +191377,Dhadak (2018),Drama|Romance +191381,The Sand Storm (2014),Drama|Sci-Fi +191383,Glory at Sea (2008),Adventure +191385,Odile and Michel (2014),(no genres listed) +191387,Hands of Bresson (2014),Documentary +191389,The Roper (2013),Documentary +191391,Peanut Butter Lips (2011),(no genres listed) +191393,Afterglow (2014),(no genres listed) +191395,U.F.Oh Yeah (2015),Comedy|Sci-Fi +191397,Waterfall (2015),Drama +191399,All Your Favorite Shows! (2015),Animation +191401,Buzz Lightyear of Star Command: The Adventure Begins (2000),Adventure|Animation|Children|Comedy|Sci-Fi +191403,"New Neighbors, Old Fights",(no genres listed) +191405,Bombshell (2013),Drama +191407,The Going Away Party (2015),Drama +191409,Normal Doors (2015),Comedy|Drama +191411,Growth (2015),(no genres listed) +191413,Lorna Doone (2001),Drama|Romance +191415,The Mimic (2017),Horror|Thriller +191417,Trieste Is Ours! (2009),Comedy|Drama +191419,Tottoi (1992),Adventure|Animation|Children +191421,Rosy (2018),Comedy|Romance|Thriller +191423,The Punk Voyage (2017),Documentary +191425,The Courier (2012),Action|Crime +191427,The Other Side of Immigration (2009),Documentary +191431,Nooravathu Naal (1984),Crime|Thriller +191433,Chinna Gounder (1992),(no genres listed) +191435,Aimless Bullet (1961),Drama +191437,Bill Maher: Live From Oklahoma (2018),Comedy +191439,The Con Is On (2018),Comedy +191441,The Happytime Murders (2018),Action|Comedy|Crime +191443,Samsaram Athu Minsaram (1986),(no genres listed) +191445,Parthibhan Kanavu (2003),Drama|Romance +191447,Nammavar (1994),Drama +191449,Singaravelan (1992),Comedy|Romance +191451,Magalir Mattum (1994),Comedy|Drama +191453,Tik Tik Tik (1981),Crime|Drama|Thriller +191455,Thambikku Entha Ooru (1984),Drama +191457,The Juniper Tree (1990),Drama|Fantasy +191459,The Sisters Brothers (2018),Western +191463,The Scarehouse (2014),Horror|Thriller +191465,Black Cop (2017),Drama +191467,Mother Earth (1931),(no genres listed) +191469,Robin Hood (2018),Adventure +191471,The Singles Ward (2002),Children|Comedy|Drama|Romance +191473,The Singles 2nd Ward (2007),Children|Comedy|Drama|Romance +191475,The Best Two Years (2003),Comedy|Drama +191477,The R.M. (2003),Children|Comedy|Crime +191479,Smallfoot (2018),Animation|Comedy +191481,Antonio Lopez 1970: Sex Fashion & Disco (2018),Documentary +191483,The Nun (2018),Horror|Mystery|Thriller +191485,American Chaos (2018),Documentary +191487,God Bless the Broken Road (2018),Drama +191489,Peppermint (2018),Action|Crime|Thriller +191491,City of Lies (2018),Crime|Thriller +191495,White Boy Rick (2018),Crime|Drama +191497,Bisbee '17 (2018),Documentary +191499,Gunde Jaari Gallanthayyinde (2013),Romance +191501,Ishq (2012),Romance +191503,Sye (2004),Drama +191505,Brindaavanam (2010),Action|Drama|Romance +191509,Ghost of Chibusa Enoki (1958),Horror +191511,In the Game (2018),Comedy +191513,American Jihad (2017),Documentary +191515,Female Prisoner Scorpion: Beast Stable (1973),Crime|Drama|Thriller +191517,Female Prisoner Scorpion: Grudge Song (1973),Crime|Drama|Thriller +191521,Une Balle dans le canon (1958),(no genres listed) +191529,Symphonie pour un massacre (1963),Crime|Drama +191541,Angelique: The Road To Versailles (1965),Adventure|Mystery|Romance +191543,Angelique and the King (1966),Adventure|Romance +191549,The Time to Die (1970),(no genres listed) +191557,Hearth Fires (1972),Drama +191559,The Inheritor (1973),Action|Drama|Thriller +191561,Le Complot (1973),Action|Drama +191565,Salut l'artiste (1973),Comedy|Drama +191567,How to Make Good When One Is a Jerk and a Crybaby (1974),Comedy +191571,A Happy Divorce (1975),(no genres listed) +191573,The Toilets Were Closed from the Inside (1976),Comedy|Crime +191575,Death Rite (1976),Drama|Thriller +191579,The Skirt Chaser (1979),Comedy +191583,Un étrange voyage (1981),Drama +191599,Le moustachu (1987),Comedy +191601,Tandem (1987),Comedy +191605,I'm the King of the Castle (1989),Drama|Thriller +191607,El largo invierno (1992),Drama|War +191611,Wild Target (1993),Comedy|Crime|Drama +191631,The Car Keys (2003),Comedy +191635,Pretty Little Dead Girl (2017),Mystery|Thriller +191637,Ayya (2005),(no genres listed) +191639,Traumnovelle (1969),Drama|Mystery +191641,The Man from the Restaurant (1927),(no genres listed) +191643,Little Pink House (2018),Drama +191645,I Was to Blame (1937),(no genres listed) +191647,El Chanfle (1979),Children|Comedy +191649,6 Points About Emma (2011),Drama +191651,Red Istanbul (2017),Drama|Romance +191653,The Envelope (2017),Horror|Thriller +191655,Boulevard Nights (1979),Drama +191657,Memory Hackers (2016),Documentary +191659,Occupy Unmasked (2012),Documentary +191661,Shot! The Psycho-Spiritual Mantra of Rock (2016),Documentary +191663,Apostasy (2017),Drama +191665,A Constant Forge (2000),Documentary +191667,Beastie Boys: Video Anthology (2000),Documentary +191669,The Ice Cream Truck (2017),Comedy|Horror|Thriller +191671,Dark Sands (1937),Adventure|Drama +191673,W.C. Fields: 6 Short Films (2000),Comedy +191675,Eight Hours Don't Make a Day (1972),Drama +191677,The Making of Fanny and Alexander (1986),Documentary +191679,Scotty and the Secret History of Hollywood (2018),Documentary +191681,The Ballad of Gregorio Cortez (1983),Western +191683,Symbiopsychotaxiplasm: Take 2 ½ (2005),Documentary +191685,Paul Robeson: Tribute to an Artist (1979),(no genres listed) +191687,Teen Titans Go! To the Movies (2018),Animation|Children +191689,Математик и чёрт (1972),Sci-Fi +191691,Checkpoint (1998),Drama|War +191693,Five Brides (2011),Comedy|Romance +191695,be vaght sham (2018),(no genres listed) +191697,Lottery,(no genres listed) +191699,Hezarpa (2018),Comedy +191701,National Geographic: Air Force One (2003),Documentary +191703,The Muppets' Wizard of Oz (2005),Adventure|Children|Comedy|Fantasy +191707,The Truth Beneath (2016),Thriller +191709,Yourself and Yours (2016),Comedy|Drama +191711,Fatal Deviation (1998),Action +191713,Noise (2007),Crime|Drama|Thriller +191715,Snake Outta Compton (2018),Comedy|Horror|Sci-Fi +191717,I Had A Bloody Good Time At House Harker (2016),Comedy|Horror +191719,Mercy Christmas (2017),Action|Comedy|Horror +191721,5 Doctors (2016),Comedy +191723,The Day After (2017),Drama|Romance +191725,Makala (2017),Documentary|Drama +191727,Peelers (2016),Horror +191729,Laundry (2002),Drama|Romance +191731,Love in the Time of Monsters (2014),Comedy|Horror +191733,Le passé devant nous (2017),Drama +191735,Wild Berries (2003),Comedy|Drama +191737,Dreams for Sale (2012),Crime|Drama +191739,A Man and a Woman (2016),Drama|Romance +191741,Golden Slumber (2010),Action|Comedy|Drama|Mystery|Thriller +191743,Hahaha (2010),Comedy|Drama|Romance +191745,The Plan Man (2014),Comedy +191747,Lowlife Love (2015),(no genres listed) +191749,La La La at Rock Bottom (2015),Comedy|Drama +191751,My Ordinary Love Story (2014),(no genres listed) +191753,The Curtain Rises (2015),Drama +191755,Destruction Babies (2016),Comedy +191757,A Hustler's Diary (2017),(no genres listed) +191759,Instant Swamp (2009),Comedy +191761,The Extreme Sukiyaki (2013),Drama +191763,Too Young To Die! (2016),Action|Fantasy|Romance +191765,Himeanole (2016),Crime|Thriller +191767,"Balloon Club, Afterwards (2006)",Drama +191769,Permanent Nobara (2010),Comedy|Drama|Romance +191771,"Funuke Show Some Love, You Losers! (2007)",Drama +191773,Up in the Sky (2016),Adventure|Children|Fantasy +191775,Berlin Calling (2008),Comedy|Drama +191777,Revenge: A Love Story (2010),Thriller +191779,10½ (2010),Drama +191781,Gyo: Tokyo Fish Attack (2012),Animation|Horror +191783,The Auteur (2008),Comedy +191785,Rainbow Song (2006),Drama|Romance +191787,Run and Kill (1993),Thriller +191789,PK.COM.CN (2008),Drama +191791,Forgetting Dad (2008),Documentary +191793,Suspension (2008),Action|Drama|Fantasy|Sci-Fi|Thriller +191795,The Weekend (2007),Comedy +191797,Psychic School Wars (2012),Animation|Drama|Romance|Sci-Fi +191799,Extinction (2018),Sci-Fi +191801,Del Playa (2015),Horror|Thriller +191803,Dead Night (2018),Horror +191805,Our House (2018),Drama|Horror|Thriller +191807,Still Alive (2016),Drama +191809,Little World (2013),(no genres listed) +191811,Iliza Shlesinger: Elder Millennial (2018),Comedy +191813,Carlitopolis (2006),(no genres listed) +191815,The Last Race (2018),Documentary +191817,John McEnroe: In the Realm of Perfection (2018),Documentary +191819,Where is Robert Fisher? (2016),(no genres listed) +191821,Cops vs. Thugs (1975),Action|Crime|Drama +191823,Chutney Popcorn (2001),Drama +191829,NetForce (1999),Action|Drama|Sci-Fi|Thriller +191831,Nostradamus (2000),Action|Adventure|Sci-Fi +191833,Den Brother (2010),Children +191835,Good Satan (2012),Comedy +191837,Chrystal (2004),Drama +191839,Moss (2017),Adventure|Drama|Romance +191841,Aadhi (2006),Action|Thriller +191843,Strokes of Genius (2018),Documentary +191845,Dead Sexy (2018),Comedy +191849,Tales Of An Immoral Couple (2016),Comedy +191851,Invasion! (2016),Animation +191853,The Receptionist (2017),Drama +191855,The Rutherford County Line (1988),(no genres listed) +191857,The Bleeding Edge (2018),Documentary +191859,Disaster at Silo 7 (1988),Drama|Sci-Fi|Thriller +191861,"Europe, She Loves (2016)",Documentary +191863,Tamizhuku En Ondrai Azhuthavum (2015),Thriller +191865,Bernard and Huey (2018),Comedy|Drama +191867,Let There Be Light (2017),Documentary +191869,The Old Man and the Gun (2018),(no genres listed) +191871,Holiday Joy (2016),Comedy +191873,The Outlaws (2017),Action|Crime +191875,The April Chill (2010),Drama +191877,Who Killed JonBenet? (2016),Crime +191879,Psycho Sleepover (2008),Horror +191887,No Solicitors (2015),(no genres listed) +191891,Something to Scream About (2003),Documentary +191895,Blue Iguana (2018),Thriller +191897,Cachito (1996),(no genres listed) +191899,No Good Heroes (2018),Comedy|Drama|Horror +191901,Damascus Cover (2018),Thriller +191903,A Dream of Passion (1978),Drama +191905,Budapest Tales (1977),Drama +191907,"Elisa, My Life (1977)",Drama +191909,The House of Steinbrenner (2010),Documentary +191911,The Mansion (2017),Comedy|Horror +191915,The Sea Wall (2008),Drama +191917,The Tailor from Torzhok (1925),(no genres listed) +191919,Tesla (2016),Documentary +191921,Bonnot's Gang (1968),Crime|Drama +191923,All Wifed Out (2013),Comedy|Romance +191925,The Comb (1991),Animation +191927,Shadow of Fear (2004),Thriller +191929,Carlotta (2014),Drama +191931,Ee. Ma. Yau (2018),Comedy|Drama +191933,Abrahaminte Santhathikal (2018),Crime|Thriller +191935,Jo and the Boy (2015),Drama +191937,Mahanadhi (1994),Action|Crime +191939,Since,(no genres listed) +191941,Robin Williams: Come Inside My Mind (2018),Documentary +191943,Schoolhouse Rock: Science (Classroom Edition) (2008),(no genres listed) +191945,In This Tricky Life (2001),Drama +191947,Let's Go with Pancho Villa (1936),Drama|War +191949,A Dot and a Line (2004),Action|Drama +191951,Nasty Love (1995),Drama|Mystery|Thriller +191953,Linda Sara (1995),Comedy|Drama|Romance +191955,Hispaniola (2007),(no genres listed) +191957,Neto's Silence (1994),Drama +191959,Paper Dove (2003),Drama +191961,Raymundo: The Revolutionary Filmmaker's Struggle (2003),(no genres listed) +191963,Memories of Overdevelopment (1984),(no genres listed) +191965,Comedy Central Roast of Bruce Willis (2018),Comedy +191967,Reinventing Marvin (2017),Drama +191969,Beautiful Prison (2016),Drama|Horror|Romance|Thriller +191973,Tamale Road: A Memoir from El Salvador (2012),Documentary|Drama|War +191975,1809-1810: mientras llega el día (2004),Drama +191979,The Word in the Woods (La Palabra en el Bosque) (2011),Documentary +191981,Topo Gigio Is Dead (2011),Drama +191983,Kapalak Kızı (2018),Horror +191985,Spreading the Truth (Difundiendo la verdad) (2004),Documentary +191987,Eternal Fire (Fuego eterno) (2012),Documentary +191989,The Indelible Stain (La mancha indeleble) (2009),Drama|Thriller +191991,The Warning (2018),Drama|Thriller +191993,Ottran (2003),(no genres listed) +191995,Arasatchi (2004),Action|Crime|Drama +191997,The Hounds of Baskerville (2012),Crime|Drama|Mystery +192001,His Last Vow,(no genres listed) +192003,Journey to the Center of the Earth (2008),Action|Adventure|Fantasy|Sci-Fi +192005,Blood Ransom (2014),Fantasy|Horror|Romance +192011,Naan Avan Illai (2007),Comedy|Crime|Drama|Romance +192013,Romina (2018),Horror|Thriller +192015,Wormwood (2017),Documentary +192017,Storytime (1968),Animation +192019,Demon Inside (2013),Horror|Thriller +192021,Neal Brennan: Women and Black Dudes (2014),Comedy +192023,Eat My Shit (2015),Comedy|Drama +192025,Bottle Rocket (1994),Comedy|Crime +192027,The Seagull (1978),Drama +192029,Kadhalikka Neramillai (1964),Comedy|Romance +192031,Athey Kangal (1969),(no genres listed) +192033,Aayirathil Oruvan (1965),Action|Drama|War +192035,There Is No Place Like Home (2018),Comedy +192039,Poveri ma ricchi (2016),Comedy +192041,Rainbow: A Private Affair (2017),War +192043,Red Cow (2018),Drama +192045,If Beale Street Could Talk (2018),Drama|Romance +192047,"Memory for Max, Claire, Ida and Company (2005)",Documentary +192049,Alma de Dios (1923),Drama +192051,Luz (2018),Horror|Mystery|Romance +192053,Bed of the Dead (2016),Horror +192055,Never Goin' Back (2018),Comedy|Drama +192057,Run (2002),Action|Drama|Romance +192059,Dhill (2001),Action|Drama +192061,Gemini (2002),Action|Drama +192063,Dhool (2003),Action|Drama|Romance +192065,M. Kumaran S/O Mahalakshmi (2004),Romance +192067,Something Something... Unakkum Enakkum (2006),Action|Drama|Romance +192069,Boss Engira Bhaskaran (2010),Action|Comedy|Drama +192071,Metamorphosis (2015),Drama +192073,Kanthaswamy (2009),Action|Adventure|Crime +192075,Majaa (2005),Action|Drama|Romance +192077,King (2002),Drama +192079,The Summer House (2014),Drama +192081,Like Father (2018),Comedy +192083,Mutant War (1988),Action|Fantasy|Sci-Fi +192085,Deadly Still (2018),Horror|Thriller +192087,Return from the River Kwai (1989),War +192089,"National Theatre Live: One Man, Two Guvnors (2011)",Comedy +192091,The Royal Hibiscus Hotel (2018),Comedy|Romance +192093,Girl Flu (2016),Comedy +192095,Einstein-Rosen (2016),Comedy|Fantasy +192097,0.5mm (2014),Drama +192099,Vettai (2012),Action|Thriller +192101,Socialist Zombie Massacre (2014),Comedy|Horror +192103,Broken Darkness (2017),Action|Drama|Sci-Fi|Thriller +192105,Black 47 (2018),Drama|Western +192107,Anthropocene (2018),Documentary +192109,Minding the Gap (2018),Documentary +192111,Sound of the Sea (2001),(no genres listed) +192113,Nakimushi Shottan no Kiseki,Drama +192115,Room 205 of Fear (2011),Drama|Horror +192117,Life's a Jungle (2012),Animation|Children +192119,Killer Workout (1987),Horror +192121,Just a Breath Away (2018),Sci-Fi +192123,The Breaker Upperers (2018),Comedy +192125,The Ceiling (2018),(no genres listed) +192127,Aurora Borealis - Northern Light (2017),Drama +192131,36 Vayadhinile (2015),Children|Drama +192133,Bad Influence (2018),Comedy|Drama +192137,Saroja (2008),Comedy|Thriller +192139,Undercity,(no genres listed) +192141,A Reasonable Request (2015),Comedy|Drama +192143,¡Atraco! (2012),Comedy|Thriller +192145,Legal Marriage (1985),Comedy|Drama +192147,Acoustic (2010),Drama +192149,Rough Play (2013),Drama +192151,Be Crazy About Me (2012),Comedy|Romance +192153,Blue Spring Ride (2014),Drama|Romance +192155,Campus Confidential (2013),Comedy|Romance +192157,The Angel (2018),Crime|Drama +192159,Mi obra maestra (2018),Comedy +192161,He Was Cool (2004),Comedy|Romance +192163,An Unexpected Love (2018),Comedy|Romance +192165,No Longer Heroine (2015),Comedy|Drama|Romance +192169,High School Debut (2011),Comedy|Romance +192171,How to Date an Otaku Girl (2009),Comedy|Drama|Romance +192175,The Dread (2017),Documentary +192177,Solo (2018),Thriller +192179,May Who? (2015),Comedy|Romance +192181,Daddy Cool (2017),Comedy +192183,My Mighty Princess (2008),Comedy|Romance +192185,Place publique (2018),Comedy +192187,My Tutor Friend (2003),Comedy +192189,Paradise Kiss (2011),Drama +192191,Project Makeover (2007),Comedy|Romance +192195,Seven Something (2012),Comedy|Drama|Romance +192197,The Row (2018),Thriller +192199,Takumi-kun Series: Details of Beauty (2010),Drama +192201,El club de los buenos infieles (2018),Comedy +192203,"Takumi-kun Series: That, Sunny Blue Sky (2011)",Romance +192205,I'm Not Just Going to Do What Kurosaki kun Says (2016),Comedy|Romance +192207,The Liar and His Lover (2013),Romance +192209,Flavors of Youth (2018),Animation|Drama|Romance +192211,Wolf Girl and Black Prince (2016),Romance +192213,Counterfeiting in Suburbia (2018),Thriller +192215,Forbidden Films (2014),Documentary +192217,We Make Antiques! (2018),Comedy +192219,My Big Gay Italian Wedding (2018),Comedy +192221,Three Days in Moscow (1974),Comedy|Romance +192223,The Apparition (2018),Drama +192225,Redwall The Movie (2000),Animation|Children|Comedy|Fantasy +192227,Dansa först,(no genres listed) +192229,Ctrl+Alt+Dance,(no genres listed) +192231,Malibu Spring Break (2003),Comedy +192233,The Web (2013),Comedy|Drama|Romance|Sci-Fi +192235,Life and Nothing More (2017),Drama +192237,Hello Oksana Sokolova! (2018),Comedy +192239,Ernesto (2017),Drama +192243,Contact (1992),Drama|Horror|Mystery|Thriller +192245,Bad Times at the El Royale (2018),Horror|Thriller +192247,Banshee Blacktop (2016),Drama|Horror +192249,3 Beauties (2015),Comedy|Drama +192251,Rem Koolhaas: A Kind of Architect (2008),Documentary +192253,Monster Camp (2007),Comedy|Documentary +192255,Santa & Andres (2016),Drama +192257,Destiny: The Tale of Kamakura (2017),Drama|Mystery +192259,Tricky Brains (1991),Comedy +192261,Don't Laugh at My Romance (2008),Comedy|Drama +192263,Schramm (1993),Horror +192265,The Witch: Part 1. The Subversion (2018),Action|Mystery +192267,The Last Warning (1929),Horror|Mystery|Thriller +192271,Shanti Nilayam (1972),Drama +192273,Grace Jones: Bloodlight and Bami (2017),Documentary +192275,Farmlands (2018),Crime|Documentary +192277,Kaloyan (1963),(no genres listed) +192279,Chavela (2017),Documentary +192281,Mirror Wars: Reflection One (2005),Action|Thriller +192283,Crazy Rich Asians (2018),Comedy +192285,Birds of Passage (2018),Crime|Drama +192287,Surprise Party (2002),Comedy|Romance +192289,Saving My Hubby (2002),Comedy|Drama +192291,Rift (2017),Drama|Horror|Mystery +192293,Gabriel Iglesias: Aloha Fluffy (2013),Comedy +192295,Seeds of Death: Unveiling the Lies of GMOs (2012),Documentary +192297,Don's Party (1976),Comedy +192299,Fonogramma Strasti (2009),Drama|Romance|Thriller +192301,Night Shift (2018),Comedy +192303,The Lion Has Seven Heads (1970),Drama +192305,Walter Vetrivel (1993),Action|Children|Crime|Drama +192307,The Meg (2018),Action|Horror|Sci-Fi|Thriller +192309,Sivalinga (2017),Horror|Thriller +192311,Paramasivan (2006),Action|Drama|Thriller +192313,Making Out (2016),Comedy|Romance +192315,Slaughterhouse Rulez (2018),Comedy|Horror +192317,Death of a Cheerleader (1994),Drama +192319,Operation Finale (2018),Drama +192321,Hercule & Sherlock (1996),Comedy|Crime +192323,Dog Altogether (2007),Drama +192325,Jazz on a Summer's Day (1960),Documentary +192327,The Man Who Thought Life (1969),Horror|Sci-Fi +192329,Hymn to a Tired Man (1968),Drama +192331,The Hat (1999),Animation +192333,Maradona (2018),Action|Comedy|Thriller +192335,Iru Mugan (2016),Action|Mystery|Sci-Fi|Thriller +192337,Tale of Two Sisters (1989),Drama +192339,The Sign of Three,(no genres listed) +192341,The Public (2018),Drama +192343,Accomplice (1946),Crime +192345,While We Live (2017),Drama +192349,Horrid Henry: The Movie (2011),Adventure|Children|Comedy +192351,Top Secret Rosies: The Female 'Computers' of WWII (2009),Documentary|War +192353,L'essence des formes : Robert Bresson déforme les sens (2010),(no genres listed) +192355,The Hero (2016),Action|Drama|Romance|War +192357,Colette (2018),Drama +192359,Demetri Martin: The Overthinker (2018),Comedy +192361,Royal Hearts (2018),Romance +192363,Sundarapandian (2012),Action|Drama|Romance +192365,A Chinese Odyssey Part One: Pandora's Box (1995),Adventure|Fantasy +192369,Odds Are (2018),Thriller +192371,Movement + Location (2014),Drama|Sci-Fi +192373,Quanto basta (2018),(no genres listed) +192375,Elizabeth Harvest (2018),Sci-Fi|Thriller +192377,Goosebumps: Haunted Halloween (2018),Adventure|Children|Comedy|Fantasy|Horror +192379,First Man (2018),Drama +192381,Apostle (2018),Horror|Thriller +192383,Beautiful Boy (2018),Drama +192385,A Star Is Born (2018),Drama|Romance +192387,Unbroken: Path to Redemption (2018),Drama +192389,Venom (2018),Action|Horror|Sci-Fi|Thriller +192391,Monsters and Men (2018),Drama +192393,Night School (2018),Comedy +192395,Stepsister from Planet Weird (2000),Children|Sci-Fi +192397,Rip Girls (2000),Children|Drama|Romance +192399,Under Wraps (1997),Children|Comedy|Horror +192401,The Westing Game (1997),Children|Horror|Mystery +192403,Ashanti (1979),Action|Adventure|Drama +192405,Cold War (2018),Comedy|Romance +192407,Fear of Water (2015),Drama|Romance +192411,Freaky Friday (2018),Children|Fantasy +192413,Bear Nation (2010),Documentary +192415,Last Hours in Suburbia (2012),Crime|Mystery|Thriller +192417,Hubert Selby Jr: It'll Be Better Tomorrow (2006),Documentary +192419,Panic (2016),(no genres listed) +192421,Poovizhi Vasalile (1987),(no genres listed) +192423,Diverge (2016),Drama|Sci-Fi|Thriller +192425,Neither Seen Nor Recognized (1958),Comedy +192427,Beside Bowie: The Mick Ronson Story (2017),Documentary +192429,Nails (2017),Horror +192431,The Eyes of Orson Welles (2018),Documentary +192433,Red Peony Gambler (1968),Action|Comedy|Drama|Romance|Thriller +192435,Red Peony Gambler: Biographies of a Gambling Room (1969),Action|Drama +192437,Red Peony Gambler: Flower Cards Match (1969),Action +192439,Red Peony Gambler: Oryu's Return (1970),Action|Drama +192441,Red Peony Gambler: Gambler's Obligation (1968),Drama +192443,Red Peony Gambler: Execution of Duty (1972),Action|Drama +192445,Red Peony Gambler: Second Generation Ceremony (1969),Action|Drama +192447,Red Peony Gambler: Here to Kill You (1971),Action|Drama +192449,Anna Karenina (1967),Drama|Romance +192451,Dead Men (2018),Action|Drama|Western +192453,A Dog and Pony Show (2018),Children|Comedy +192455,A. I. Tales (2018),(no genres listed) +192457,Angels in the Infield (2000),Children|Comedy|Fantasy|Sci-Fi +192459,Angels in the Endzone (1997),Children|Drama +192461,MXP: Most Xtreme Primate (2004),Comedy +192463,Sunt o babă comunistă (2013),Comedy|Drama +192465,The Little Bather (1968),Comedy +192467,Ammoru (1995),Fantasy|Horror +192469,Genesis 2.0 (2018),Documentary +192471,Road to Berlin (2015),Drama|War +192473,Sorry If I Call You Love (2014),Drama|Romance +192475,The Exchange Student (1967),Comedy +192477,Vaa Arugil Vaa (1991),Horror +192479,Avicii: True Stories (2017),Documentary +192481,Yavarum Nalam (2009),Drama|Horror|Thriller +192483,Das Lied der Matrosen (1958),Drama +192487,Enter The Wild (2018),Horror +192489,Skate Kitchen (2018),Drama +192491,Blaze (2018),Drama +192493,The Mountains of Mourne (2017),Drama +192495,Big Bad (2016),Action|Adventure|Comedy|Horror|Sci-Fi|Thriller +192497,Swimming with Men (2018),Comedy +192499,Hydrangea (2017),Drama +192501,"It’s All Right, It’s Ok (2017)",Drama +192503,Thunder Road (2018),Comedy|Drama +192509,Sorte Nula (2004),Crime|Mystery +192511,Screamplay (1985),Comedy|Crime|Horror +192513,Billy the Kid (2007),Documentary +192515,Ramaiya Vastavaiya (2013),Action|Comedy|Romance +192517,Mostly Sunny (2017),Documentary +192519,The Architects (1990),Drama +192521,Sisi (2009),Drama|Romance|War +192523,The Locked Room Murders SP (2014),Mystery +192531,The Longest Penalty Shot in the World (2005),Comedy +192533,Fill Me with Life (2000),Drama +192535,Fear and Loathing on the Road to Hollywood (1978),Documentary +192537,Vitamania: The Sense and Nonsense of Vitamins (2018),Documentary +192539,Tonight We'll Celebrate in the Family (1972),Comedy +192541,The Graduates (1986),Comedy|Romance +192543,Fast-Walking (1982),Drama +192545,Pity (2018),Drama +192547,Winter Flies (2018),Comedy|Drama +192549,Lieb Vaterland magst ruhig sein (1976),Thriller +192551,Mile 22 (2018),Action +192553,Battle for the Lost Planet (1986),Action|Adventure|Sci-Fi +192557,Too Late To Die Young (2018),Drama +192559,The House with a Clock in Its Walls (2018),Children|Fantasy|Horror|Mystery|Sci-Fi|Thriller +192561,Hold the Dark (2018),Thriller +192563,Noisy Requiem (1988),Crime|Drama|Horror +192565,We the Animals (2018),Drama +192567,Problem Child: Leslie Jones (2010),Comedy +192571,Who's Your Monkey? (2007),Comedy +192573,Alt-Right: Age of Rage (2018),Documentary +192575,Actor Martinez (2016),Drama +192577,Mad (2016),Comedy|Drama +192579,Johnny English Strikes Again (2018),Action|Adventure|Children|Comedy +192581,The Matchmaker's Playbook (2018),Romance +192583,Night Watcher (2008),Horror|Mystery|Thriller +192587,The Grand Son (2018),Crime|Drama +192589,Doubtful,(no genres listed) +192591,Jadoo (2013),Comedy +192593,The New Romantic (2018),Comedy|Drama +192595,Love and Bruises (2011),Drama|Romance +192597,36 Saints (2013),Thriller +192599,Divorce His - Divorce Hers (1973),Drama|Romance +192601,Blue (2015),Drama|Mystery|Romance +192603,Jake's Closet (2007),Drama|Thriller +192611,Mi primera boda (2011),Comedy|Romance +192613,Vino Para Robar (2013),Comedy|Crime|Romance +192615,Perdida (2018),Crime|Drama|Mystery +192617,Cheese Head (2006),Drama|Romance +192619,20.000 kisses (2013),Comedy|Romance +192623,Park (2017),Drama +192625,Ear Buds: The Podcasting Documentary (2016),Documentary +192627,Judgment (1990),Drama +192635,Star Slammer (1986),Action|Comedy|Sci-Fi +192637,The Dybbuk (1937),Drama|Fantasy +192639,Office Uprising (2018),Action|Comedy|Horror +192641,Committed (2011),Thriller +192643,Spirits (2004),Horror|Thriller +192645,Dorm (2006),Drama|Horror|Thriller +192647,Wizards of the Demon Sword (1991),Action|Fantasy|Sci-Fi +192649,My Hero Academia the Movie: The Two Heroes (2018),Action|Animation +192651,The Nest of the Cuckoo Birds (1965),Drama|Horror +192655,No Contest (1995),Action|Crime|Drama +192659,Liar's Edge (1992),Thriller +192661,"Sex, Marriage and Infidelity (2014)",(no genres listed) +192667,Twisted Justice (1990),Action|Crime|Drama +192669,Hard Vice (1994),Crime|Drama +192671,Liberace: Behind the Music (1988),Drama +192675,Benched (2018),(no genres listed) +192677,The Last Scout (2017),Sci-Fi +192681,Love Under the Date-Tree (1990),(no genres listed) +192683,Verbatim (2014),Comedy|Documentary +192685,The Black Arrow (1948),Adventure +192687,Piché: Entre Ciel et Terre (2010),Adventure|Drama +192689,Two in Love (1965),Drama|Romance +192691,Children of Divorce (1927),Drama|Romance +192693,The Most Unknown (2018),Documentary +192695,In the Gloaming (1997),Drama +192697,Destination Wedding (2018),Comedy|Drama|Romance +192699,Warning Sign (1985),Drama|Sci-Fi|Thriller +192701,The Little Mermaid (2018),Adventure|Fantasy|Romance +192703,The Legacy (2009),Drama +192705,"Please, Please Me! (2009)",Comedy +192707,Dust To Dust (2000),Comedy +192709,All American Bikini Car Wash (2015),Comedy +192711,Misbehaviour (2008),(no genres listed) +192713,Compulsion (2018),Fantasy|Horror|Thriller +192715,A Stitch in Time (1963),Comedy +192717,Live (2014),Comedy|Thriller +192721,Doctor Mack (1995),Comedy|Drama +192723,A Free Bird (2014),(no genres listed) +192727,Penmani Aval Kanmani (1983),Children|Comedy|Drama +192729,If I Leave Here Tomorrow: A Film About Lynyrd Skynyrd (2018),Documentary +192731,Mrs. Hyde (2018),Comedy|Fantasy +192733,The Lighthorsemen (1987),War +192735,Blackburn (2016),Horror +192737,The Ninth Passenger (2018),Horror +192743,Khan Asparukh - Part I - Phanagoria (1981),Drama +192745,The Gnomist (2015),Children|Documentary +192747,The Ruthless Four (1968),Western +192749,Along With the Gods: The Last 49 Days (2018),Action|Adventure|Drama|Fantasy +192751,"Forbidden City, U.S.A. (1989)",Documentary +192753,Domino (2018),Crime|Thriller +192755,Hurricane Bianca: From Russia with Hate (2018),Comedy +192757,As Seen by the Rest (2014),Drama|Romance|Thriller +192759,The Capture (2017),Sci-Fi +192761,Arizona (2018),Comedy|Drama +192763,Devil in My Ride (2013),Comedy|Horror +192765,The Festival (2018),Comedy +192767,Vazante (2017),Drama +192769,Russell Peters: Notorious (2013),Comedy +192771,Russell Peters - Comedy Now! (2004),Comedy +192773,Wajah Tum Ho (2016),Drama|Mystery|Romance|Thriller +192775,Dark Web (2017),Horror +192777,The After Party (2018),Comedy +192783,Headgame (2018),Horror +192785,Never Be Boring: Billy Wilder (2018),Documentary +192787,What Keeps You Alive (2018),Thriller +192789,Future-Kill (1985),Action|Adventure|Comedy|Horror|Sci-Fi|Thriller +192791,Replace (2017),Horror|Sci-Fi|Thriller +192793,Metal Tornado (2011),Action|Sci-Fi|Thriller +192795,Decision: Liquidation (2018),Action|Drama|War +192797,Family Is Family (2018),Comedy +192799,Bad Reputation (2018),Documentary +192801,Hell Mountain (2018),Horror +192803,Bohemian Rhapsody (2018),Drama +192811,The White Dawn (1974),Adventure|Drama +192813,"Bert Rigby, You're a Fool (1989)",Comedy +192815,Icarus (2016),Adventure|Drama|Sci-Fi +192819,The Bare Wench Project 2: Scared Topless (2001),Comedy|Horror +192821,Seed: The Untold Story (2016),Documentary +192823,Crime + Punishment (2018),Documentary +192825,Who We Are Now (2018),Drama +192827,Jawani Phir Nahi Ani 2 (2018),Comedy +192829,Parwaaz Hai Junoon,Adventure|Children|Romance +192831,How He Fell in Love (2015),Drama|Romance +192833,Betrayal (2012),Drama +192835,Lake Placid: Legacy (2018),Horror +192837,One Million Yen Girl (2008),Drama +192839,The Boys Next Door (1996),Comedy|Drama +192841,Das schönste Mädchen der Welt (2018),Comedy +192843,Earth: The Power of the Planet (2007),Documentary +192845,Ecstasy (1933),Drama|Romance +192847,I've Always Liked You (2016),Animation|Comedy|Drama|Romance +192849,Bert Kreischer: Secret Time (2018),Comedy +192851,Love Is All (2007),Comedy|Romance +192853,L'énigme blanche (1985),(no genres listed) +192855,"Happier times, Grump (2018)",Comedy|Drama +192857,Fragment of an Empire (1929),Drama +192859,Bombs for Peace (1959),(no genres listed) +192861,Corbin Nash (2018),Action|Horror|Thriller +192863,Made in China (2014),Drama +192865,Meteors (2017),Drama|Mystery|Sci-Fi +192869,Ma (2015),Drama +192873,Rajaraja Cholan (1973),(no genres listed) +192875,Yardie (2018),Crime|Drama +192877,Sex o no sex (1974),Comedy +192879,Brian and the Boz (2014),Documentary +192881,Brian Regan: Standing Up (2007),Comedy +192883,Beacon Point (2016),Thriller +192885,Buy & Cell (1989),(no genres listed) +192887,Burning Rage (1984),Drama +192889,Liberated: The New Sexual Revolution (2017),Documentary +192891,The Girl with Nine Wigs (2013),Comedy|Drama +192895,The Last Dinosaur (1977),Adventure|Sci-Fi +192897,Revenge (1985),Western +192899,Keep Cool (1997),Comedy +192901,Les Vieux Fourneaux (2018),Comedy +192903,"Tonight, At the Movies (2018)",Drama|Fantasy|Romance +192905,This Man's Navy (1945),Adventure|Drama|War +192907,Bresson: Without a Trace (1965),Documentary +192909,The Road to Bresson (1984),Documentary +192911,A.X.L. (2018),Sci-Fi +192913,"Tom, Dick and Hairy (1993)",Comedy|Romance +192915,Heaven (1987),Documentary +192917,Flying Lessons (2010),Drama +192919,Consommé (2016),Horror|Thriller +192923,The Rocky Mountain Fly Highway (2014),Documentary +192925,The Diabolical Dr. Z (1966),Horror|Sci-Fi +192927,The Last Suit (2017),Drama +192929,A Touch of Spring (2017),Drama +192931,Jan Palach (2018),Drama +192933,Rosie (2018),Drama +192935,Papi Chulo,Comedy|Drama +192937,Woman in Chains (1968),Drama +192939,The Lottery (1969),(no genres listed) +192941,Yonlu (2017),(no genres listed) +192943,Beuys (2017),Documentary +192945,Sollers Point (2017),Drama +192953,Ghost in the Shell: Stand Alone Complex - Individual Eleven (2006),Animation|Sci-Fi +192955,Young Lady Chatterley (1977),Comedy|Drama +192957,Future Boyfriend (2016),Comedy|Sci-Fi +192959,From the Future with Love (2013),Sci-Fi +192961,The Leap (2015),Drama|Sci-Fi|Thriller +192963,FTL (2017),Drama|Sci-Fi +192965,Fishing for Goldfish (1895),Documentary +192967,Football (1897),Documentary +192969,How a Mosquito Operates (1912),Animation|Comedy +192971,Alın Yazısı (1972),(no genres listed) +192973,Hunter Goes to Hollywood (2003),Documentary +192975,Isabelle (2011),Drama|Mystery|Thriller +192979,Documenteur (1981),Drama +192981,Penguin Highway (2018),Adventure|Animation|Children|Comedy|Fantasy +192983,Confetti Harvest (2014),Drama +192985,Roof Culture Asia (2017),Documentary +192987,Storm - Letter of Fire (2017),Adventure|Children +192989,Süskind (2012),Drama|War +192991,Island (1973),Animation +192993,There's Nothing Out There (1991),Comedy|Horror|Sci-Fi +192995,Demon City Shinjuku (1988),Animation|Fantasy|Horror +192997,Border (2018),Fantasy|Thriller +192999,Blood Fest (2018),Comedy|Horror +193001,David Blaine: Real or Magic (2013),Documentary +193003,David Blaine: Street Magic (1997),Documentary +193005,David Blaine: What Is Magic? (2010),Documentary +193007,David Blaine: Beyond Magic (2016),Documentary +193009,The Pass (1988),Animation|Sci-Fi +193011,The Bobot (2018),Adventure|Children|Sci-Fi +193013,Première année (2018),(no genres listed) +193015,Rust (2018),Drama +193017,Earth and Ashes (2004),Drama +193019,Threesome Dance (2011),(no genres listed) +193021,The Mermaid: Lake of the Dead (2018),Fantasy|Horror|Romance +193023,Spitfire 944 (2006),Documentary +193025,Hyperlight (2018),Sci-Fi +193027,Soul Kicking (2006),Drama +193031,The Rape of Richard Beck (1985),Crime|Drama +193033,"No Pussy, No Groupie (2017)",Comedy|Drama +193035,Under Western Eyes (1936),Drama +193037,Startling Proofs (1995),Documentary +193039,Lakshmi (2006),Drama +193041,One Cut of the Dead (2017),Comedy|Horror +193043,Friends of Friends (2013),Comedy +193045,French Dressing (1964),Comedy|Drama +193047,High Fantasy (2017),Comedy|Drama +193049,All You Can Eat Buddha (2017),Comedy|Drama|Fantasy +193051,Spin (1995),Documentary +193053,"Sex, Death and Bowling (2015)",Comedy|Drama +193055,Street Level (2016),Action +193059,Easy (2017),Comedy +193061,Zu Warriors (2001),Action|Fantasy +193063,Ana & Bruno (2017),(no genres listed) +193065,Roma (2018),Drama +193067,The Mountain (2018),Drama +193069,Close Enemies (2018),Drama +193071,The Coiling Prankster (1988),Animation +193073,Stree (2018),Horror +193075,Woodpeckers Don't Get Headaches (1974),Children|Drama|Romance +193077,Cigarette Soup (2017),Action +193087,Broken Vows (1987),Drama|Mystery|Romance|Thriller +193089,The Bushido Blade (1981),Action|Drama +193091,Bushido: The Cruel Code of the Samurai (1963),Action|Drama +193095,Male Companion (1964),Comedy +193097,The Life and Assassination of the Kingfish (1977),(no genres listed) +193099,Arletty: A Guilty Passion (2015),Drama +193101,Whale Music (1994),Comedy|Drama +193107,Je suis Charlie (2015),Documentary +193109,Ach śpij kochanie (2017),Crime|Thriller +193113,Little by Little (1970),Drama +193115,The Curse of the Dragon (1993),Documentary +193117,"Fat, Bald, Short Man (2012)",(no genres listed) +193119,Perfect Bid: The Contestant Who Knew Too Much (2017),Documentary +193121,South of Pago Pago (1940),Adventure +193123,Death Laid an Egg (1968),Thriller +193125,Nobody Runs Forever (1968),Action|Drama|Thriller +193127,Ordinary Magic (1993),Drama +193129,Edge of the Garden (2011),Drama|Fantasy +193131,Mary & Tim (1996),(no genres listed) +193133,Alien Siege (2018),Sci-Fi +193135,The Lady Refuses (1931),Drama|Romance +193137,Reprisal (2018),Action|Crime|Thriller +193139,Satyameva Jayate (2018),Action|Thriller +193143,Agony (2016),Drama|Thriller +193145,La Bolduc (2018),Drama +193147,The House That Jack Built (2018),Drama|Horror|Thriller +193149,¿Qué te juegas?,(no genres listed) +193155,Let the Game Begin (2010),Comedy|Romance +193157,Eternal (2004),Drama|Horror|Mystery|Thriller +193161,Once a Jolly Swagman (1949),Drama|Romance +193163,What the Snow Brings (2005),(no genres listed) +193165,The Great Moment (1944),Comedy|Drama +193169,Chateau De Sable (2015),Action|Animation|Fantasy +193171,The Foxes of Harrow (1947),Drama|Romance +193175,Mowgli (2018),Adventure|Drama +193177,Djon África (2018),Crime|Drama +193179,Making the Connection: Untold Stories of 'The French Connection' (2001),Documentary +193181,Corrections Class (2014),Drama +193183,Death of a Nation (2018),Documentary +193185,Fahrenheit 11/9 (2018),Documentary +193187,The History of the World in 2 Hours (2011),Documentary +193189,Contact (1978),Animation|Sci-Fi +193191,Intercessor: Another Rock 'N' Roll Nightmare (2005),(no genres listed) +193193,Omoo-Omoo the Shark God (1949),Action|Adventure +193195,Tintorera: Killer Shark (1977),Drama|Romance|Thriller +193197,Shark Alarm (2004),Horror|Thriller +193199,Shark Hunter (2001),Action|Adventure|Horror|Sci-Fi|Thriller +193201,RX 100 (2018),Action|Drama|Romance +193203,Две сказки (1962),Animation|Children +193205,The Cave of the Golden Rose 2 (1992),Adventure|Children|Fantasy|Romance +193209,Questione di karma (2017),Comedy +193211,Чьи в лесу шишки? (1965),(no genres listed) +193213,Forget About It (2006),Comedy|Drama +193215,The Honor Farm (2017),Thriller +193217,Foul Hunting (1947),Animation|Comedy +193219,(Girl)Friend (2018),Comedy|Romance +193221,Trench 11 (2017),Thriller|War +193223,Breaking & Exiting (2018),Comedy +193225,Sleeping Car To Trieste (1948),Thriller +193227,Sick For Toys (2018),Horror +193229,The Dawnseeker (2018),Sci-Fi +193231,The Cave of the Golden Rose 3 (1993),Adventure|Children|Fantasy|Romance +193233,Off Limits (2010),Crime|Drama|Thriller +193235,The Confession (2017),Drama +193237,Blood of the Tribades (2016),Horror +193239,The Origins of Wit and Humor (2015),Comedy +193241,Brokedown (2018),Thriller +193243,Next Gen (2018),Action|Adventure|Animation +193245,Westwood: Punk. Icon. Activist. (2018),Documentary +193247,Kästner And Little Tuesday (2016),Drama +193249,Have You Seen Andy? (2007),(no genres listed) +193251,Mechanical Suite (2001),Comedy|Drama +193253,Active Measures (2018),Documentary +193255,"Once Upon a Time, Cinema (1992)",Comedy|Fantasy +193257,Familie Brasch (2018),Documentary +193259,Gundermann (2018),Drama +193261,The Most Assassinated Woman in the World (2018),Mystery|Thriller +193263,Her Worst Nightmare (2018),Thriller +193265,Why Men Don't Listen and Women Can't Read Maps (2007),Comedy +193267,RedBad (2018),Adventure +193269,The River (2018),(no genres listed) +193271,American Dharma (2018),Documentary +193273,Manta Ray (2018),(no genres listed) +193275,José (2018),(no genres listed) +193277,Your Face (2018),Documentary +193279,Pearl (2018),Drama +193281,Emma Peeters (2018),(no genres listed) +193283,102 Not Out (2018),Children|Comedy|Drama +193285,Gaston Lagaffe (2018),Comedy +193287,The World Is Yours (2018),Comedy|Crime|Drama +193289,The Optimists (2013),Documentary +193291,Big is Beautiful (2012),Comedy +193293,Spiritual Boxer II (1979),Action +193295,Hurricane (2018),War +193297,Scooby-Doo! and the Gourmet Ghost (2018),Adventure|Animation|Crime +193299,44 Pages (2018),Documentary +193303,Celestial Clockwork (1995),(no genres listed) +193305,Cirque Du Soleil: Kooza (2008),Documentary +193307,María by Callas (2017),Documentary +193309,Bar Starz (2005),Comedy +193315,Five Came Back (1939),Adventure|Drama|Thriller +193321,Pledges (2018),Comedy|Horror +193323,Puppet Master: The Littlest Reich (2018),Horror +193325,LasseMajas detektivbyrå - Det första mysteriet (2018),Children +193327,Best F(r)iends: Volume One (2018),Comedy|Drama|Thriller +193329,Grandfather and grandson (1950),Animation +193331,Последняя невеста Змея Горыныча (1978),Animation|Fantasy +193333,The Cave of the Golden Rose 4 (1994),Adventure|Children|Fantasy|Romance +193335,Caught (2017),Horror +193337,Escape from the Palace (1975),Adventure|Children +193339,X Moor (2014),Horror|Thriller +193341,Leopard (2016),Drama|Romance|Thriller +193343,Ben & Gunnar (1999),Comedy|Drama +193345,BBS: The Documentary (2005),Documentary +193347,Wallander 01 - Innan Frosten (2005),(no genres listed) +193349,Shaolin Fighters vs. Ninja (1981),Action +193351,The Wind-of-Youth Group Crosses the Mountain Pass (1961),Action|Comedy +193353,Out Live (2000),Action|Drama|Fantasy +193355,Yesterday (2002),Action|Crime|Sci-Fi|Thriller +193357,Gnomes (1981),Animation|Children|Fantasy +193359,Denial (1998),Comedy|Romance +193361,Lansky (1999),Crime|Drama +193363,The Ninja Mission (1984),Action|Drama +193365,The Incorrigible (1963),(no genres listed) +193369,Starie znakomie (1956),Animation +193371,Leading Lady Parts (2018),Comedy +193373,Derren Brown: Miracle (2016),Documentary +193375,The Watcher in the Woods (2017),Horror +193377,Strange Girl (1962),Drama|Romance +193379,The Meeting Point (1989),Comedy|Drama|Fantasy +193381,National Class Category Up to 785ccm (1979),Comedy|Drama +193383,Seduction by the Sea (1963),Drama +193385,And Love Has Vanished (1961),Drama|Romance +193387,Days (1963),Drama +193389,Sunstroke (2010),Drama +193391,Brotherhood of the Rose (1989),(no genres listed) +193393,Polly of the Circus (1917),Drama +193395,Slice (2018),Comedy|Horror +193397,Hikers (1997),Drama|Romance +193399,The Under-Gifted In Vacation (1982),Comedy +193401,Son of Fury: The Story of Benjamin Blake (1942),Action|Drama|Romance +193403,A Talking Cat!?! (2013),Children|Comedy|Fantasy +193405,Peterloo (2018),Drama +193407,Mr. Know-It-All (2018),Comedy +193409,Acid (2018),Drama +193411,Как один мужик двух генералов прокормил (1965),Animation +193413,99 Dizengoff Street (1979),Drama|Romance +193415,"The Show of Shows: 100 Years of Vaudeville, Circuses and Carnivals (2015)",Documentary +193417,The Laws of Thermodynamics (2018),Comedy|Romance +193419,Bad Girls from Valley High (2005),Comedy|Thriller +193421,Gurov & Anna (2014),Drama|Romance +193423,Emptying the Skies (2015),Documentary +193425,Camion (2012),Drama +193427,Sarah Prefers to Run (2013),Drama +193429,Henri Henri (2014),Comedy|Drama +193431,Trash (2011),Drama +193435,We All Fall Down (2016),(no genres listed) +193437,Jack & Me (1973),(no genres listed) +193439,On My Skin (2018),Drama +193441,The Crescent (2018),Horror|Mystery +193443,Wall,(no genres listed) +193445,Assassination Nation (2018),Thriller +193447,The Angel (2018),Action|Drama|Thriller|War +193449,Mid90s (2018),Comedy|Drama +193451,Lords of Chaos (2018),Drama|Horror|Thriller +193455,Aniara (2018),Sci-Fi +193457,Somewhere Else Tomorrow (2013),Documentary +193459,Love Circles Around the World (1985),(no genres listed) +193461,Madame Solario (2012),Drama +193463,Bitter Sweet (2016),Comedy|Romance +193465,Boarding School (2018),(no genres listed) +193467,A Cheerful Gang Turns the Earth (2006),Comedy|Crime|Drama +193469,The Happy Sad (2013),(no genres listed) +193471,The Inhabitant (2018),Horror +193473,Warning Shot (2018),(no genres listed) +193475,Goodachari (2018),Action|Thriller +193477,Outlaw King (2018),Action|Drama|War +193479,Mercury 13 (2018),Documentary +193481,Rangasthalam (2018),Action|Drama +193483,A Loving Husband (2016),Drama +193485,Just a Little Chemistry (2015),Comedy|Romance +193487,Entre ríos: todo lo que no dijimos (2014),Children|Comedy|Drama +193489,Three Dancing Slaves (2004),Drama +193491,A Little Lust (2015),Comedy +193493,Jonathan (2016),Drama +193495,Burn Your Name (2016),(no genres listed) +193497,So auf Erden (2017),Drama +193499,The City of the Future (2016),Drama|Romance +193501,FIT (2010),Comedy|Drama +193503,Redwoods (2009),Children|Drama|Romance +193505,The Delta (1996),Drama +193507,Where's The Money? (2017),Comedy +193509,How to Get Girls (2018),(no genres listed) +193511,Public Disturbance (2018),Comedy +193515,An Almost Perfect Country (2016),Comedy +193517,The Magic Treasure (1950),Animation|Children +193519,My Name Is Modesty: A Modesty Blaise Adventure (2004),Action|Thriller +193521,Santa & Cie (2017),Comedy +193523,Bharat Ane Nenu (2018),Action|Drama +193525,Ossan's Love (2016),(no genres listed) +193527,The Enclosed Valley (1995),(no genres listed) +193529,Traces of Smoke (1992),(no genres listed) +193531,Freedom's Fury (2006),Documentary +193533,Bleach (2018),Action|Fantasy +193535,Brothers Liu (1953),Animation|Children +193537,The Little Mermaid (1968),Animation|Fantasy +193539,The Cave of the Golden Rose 5 (1996),Adventure|Children|Fantasy +193541,Sunburn (1999),Comedy|Drama +193543,The Surrounding Game (2018),Documentary +193545,Primas (2017),(no genres listed) +193547,Pet Names (2018),Comedy|Drama +193549,Anote's Ark (2016),Documentary +193551,"Look, Stranger (2010)",Drama +193553,Women's Prison (1955),Drama +193555,Man in the Dark (1953),Crime|Thriller +193559,Cargo (2017),Drama +193561,55 Steps (2018),Drama +193563,Gutland (2018),Drama|Mystery|Thriller +193565,Gintama: The Movie (2010),Action|Animation|Comedy|Sci-Fi +193567,anohana: The Flower We Saw That Day - The Movie (2013),Animation|Drama +193569,Enchanted Princess (2018),Animation|Children|Fantasy +193571,Silver Spoon (2014),Comedy|Drama +193573,Love Live! The School Idol Movie (2015),Animation +193575,Another Time (2018),Comedy|Drama|Romance|Sci-Fi +193577,The Oslo Diaries (2018),Documentary +193579,Jon Stewart Has Left the Building (2015),Documentary +193581,Black Butler: Book of the Atlantic (2017),Action|Animation|Comedy|Fantasy +193583,No Game No Life: Zero (2017),Animation|Comedy|Fantasy +193585,Flint (2017),Drama +193587,Bungo Stray Dogs: Dead Apple (2018),Action|Animation +193589,Boy Erased (2018),Drama +193591,John Paul Jones (1959),Adventure +193593,The Happy Thieves (1962),Comedy|Crime|Drama +193595,The Land of Steady Habits (2018),Comedy|Drama +193597,I Do Not Care If We Go Down in History as Barbarians (2018),Drama +193599,Climax (2018),Drama|Horror +193603,A Faithful Man (2018),Comedy|Drama +193605,In Fabric (2018),Comedy|Horror +193607,Wunderland (2018),War +193609,Andrew Dice Clay: Dice Rules (1991),Comedy +193611,IMAX - The Magic of Flight (1996),Documentary +193613,Honor and Glory (1993),Action +193615,Brother's Keeper (2002),Crime|Drama|Thriller +193617,Nelly & Simon: Mission Yeti (2018),Adventure|Animation|Children +193619,Buffalo Girls (1995),Western +193623,Bundy: An American Icon (2008),Crime|Drama|Horror|Thriller +193629,Slut In A Good Way (2018),Comedy|Drama +193631,"Hochelaga, Terra das Almas (2017)",Adventure|Drama +193633,Bulbul Can Sing (2018),Drama +193635,Manto (2018),Drama +193637,Giant Little Ones (2018),Drama +193639,The Winter's Tale (1981),Animation +193641,When the Trees Fall (2018),Drama +193643,Unreal Love (2014),Comedy|Romance +193645,Little Annie Rooney (1925),Comedy|Drama +193647,The Girl in the Spider's Web (2018),Crime|Drama|Mystery|Thriller +193649,PSV Garuda Vega (2017),Action|Comedy|Thriller +193651,The Horse That Cried (1957),(no genres listed) +193653,Большой Ух (1989),Animation|Children +193655,Barmaley (1941),Animation +193657,A Kiss of Chaos,Action|Drama|Thriller +193659,Dad on the run (2000),(no genres listed) +193661,Two Weeks in Hell (2009),Documentary +193663,Camp 14: Total Control Zone (2012),Documentary +193665,Beyond the Steppes (2010),Drama +193667,Convict Cowboy (1995),Action|Drama|Western +193669,Venom Islands (2012),Documentary +193671,The Picture of Dorian Gray (1973),Horror +193673,Raza (1942),Drama|War +193675,The Big Call (2017),Action|Thriller +193677,Shéhérazade (2018),Drama +193679,Someone (2016),Drama +193681,The Big Take (2018),Thriller +193683,Alien Code (2017),Mystery|Sci-Fi|Thriller +193685,A Woman's Devotion (1956),Drama|Mystery +193687,Когда зажигаются ёлки (1950),Animation +193689,Labour of Love (2014),Drama +193691,Craving (2018),Comedy|Drama +193693,Üç Harfliler: Beddua (2018),(no genres listed) +193695,Raccoon Valley (2018),Drama|Horror|Thriller +193697,High Life (2018),Drama|Horror|Mystery|Sci-Fi +193699,Tougher Than Leather (1988),Crime|Drama +193701,American Shaolin (1992),Action +193705,Crystal Swan (2018),Comedy +193707,Graveyard of Honor (1975),Action|Drama|Thriller +193709,Стрекоза и муравей (1961),(no genres listed) +193713,Fall Guy (1982),Comedy|Drama +193715,Black Rose Mansion (1969),Drama +193719,The Mistletoe Inn (2017),Drama|Romance +193721,Терем-теремок (1971),Animation +193723,Vorwärts immer! (2017),Comedy +193725,Where Hands Touch (2018),Drama|Romance|War +193727,Still Burning (2016),Drama +193729,A Single Rider (2017),Drama|Mystery +193731,The Fencing Master (1992),Adventure|Thriller +193737,iGirlfriend (2017),Comedy +193739,The Crazy World of Julius Vrooder (1974),Comedy|Drama +193743,Sunshine Girl and The Hunt For Black Eyed Kids (2012),Adventure|Horror|Thriller +193745,State Zero (2015),Sci-Fi +193747,The Carrier (2015),Action|Drama|Sci-Fi|Thriller +193749,Final Score (2018),Action +193751,The Riot Act (2018),Thriller +193753,Uncle Ow (1979),Animation +193755,Blood Feast (2016),Horror +193757,Francis Bacon: A Brush with Violence (2017),Documentary +193759,Power of Grayskull: The Definitive History of He-Man and the Masters of the Universe (2017),Documentary +193761,Bel Canto (2018),Drama|Thriller +193763,Assassination Classroom: Graduation (2016),Action|Comedy|Sci-Fi +193765,Habitat (1997),Horror|Sci-Fi +193767,Double Agent (2003),Action|Thriller +193769,A Boy. A Girl. A Dream: Love on Election Night (2018),Romance +193771,Little Italy (2018),Comedy|Romance +193773,Bloody Spear at Mount Fuji (1955),Adventure|Drama +193775,La tour 2 contrôle infernale (2016),Comedy +193777,Almost Home (2014),Adventure|Animation|Sci-Fi +193779,We Have Always Lived in the Castle (2018),Drama|Mystery|Thriller +193781,Matangi / Maya / M.I.A. (2018),Documentary +193783,Brian Banks,(no genres listed) +193785,The Society of the Spectacle (1973),Documentary +193787,"Refutation of All the Judgements, Pro or Con, Thus Far Rendered on the Film ""The Society of the Spectacle"" (1975)",(no genres listed) +193789,On the Passage of a Few People through a Relatively Short Period of Time (1959),(no genres listed) +193791,Hurlements en faveur de Sade (1952),(no genres listed) +193793,Empowered (2018),Comedy +193795,Forgiving the Franklins (2006),Comedy|Drama|Romance +193797,Curse of the Nun (2018),Horror +193799,Lupin the Third: Daisuke Jigen's Gravestone (2014),Action|Adventure|Animation|Comedy +193801,Lupin the Third: The Blood Spray of Goemon Ishikawa (2017),Action|Animation|Crime +193803,Bleach: Memories of Nobody (2006),Animation|Fantasy|Sci-Fi +193805,95 (2017),Comedy|Drama +193807,"Cor, Blimey! (2000)",Comedy|Documentary|Drama|Romance +193809,The Stone Killer (1973),Action|Adventure|Crime +193811,Burning Shadow (2018),Thriller +193813,"Love, Gilda (2018)",Documentary +193815,Tempting Fate (1998),(no genres listed) +193819,Kuhle Wampe oder: Wem gehört die Welt? (1932),Drama +193821,Nappily Ever After (2018),Comedy|Romance +193823,Beyond the Pale (2014),Crime|Drama|Mystery +193825,The Police Are Blundering in the Dark (1975),Mystery|Thriller +193827,The Murderers Are Coming (1944),Drama|War +193829,Complicity (2000),Romance|Thriller +193831,Earthbound (2013),Comedy|Fantasy|Romance|Sci-Fi +193833,Blood Hunt (2016),Horror|Thriller +193835,Lavell Crawford: Can a Brother Get Some Love? (2011),Comedy +193837,Lily C.A.T. (1987),Animation|Horror|Sci-Fi +193839,Hot Thrills and Warm Chills (1967),Drama +193841,The Precipice Game (2017),Horror +193843,Raazi (2018),Action|Drama|Thriller +193847,The Butler (2018),Drama +193849,Rafinha Bastos: Ultimatum (2018),(no genres listed) +193851,U: July 22 (2018),Drama|Thriller +193853,Wu Kong (2017),Action|Adventure|Fantasy +193855,"Spring Night, Summer Night (1967)",(no genres listed) +193859,"You, Me and Him (2018)",Comedy +193861,Cold Harvest (1998),Action|Sci-Fi|Thriller +193863,Cocaine Godmother (2017),Documentary|Drama +193864,No somos de piedra (1968),Comedy +193866,Tales from the Hood 2 (2018),Horror +193868,Dos tipos de cuidado (1953),Comedy|Drama|Romance|Western +193872,Room Laundering (2018),Drama +193874,Blondie's Big Moment (1947),Comedy +193876,The Great Glinka (1946),(no genres listed) +193878,Les tribulations d'une caissière (2011),Comedy +193880,Her Name Was Mumu (2016),Drama +193882,Flora (2017),Adventure|Drama|Horror|Sci-Fi +193884,Another Day of Life (2018),Animation +193886,Leal (2018),Action|Crime|Drama +193888,Through Black Spruce,Drama +193894,King of Thieves (2018),Crime|Drama +193896,Залётчики (2014),Comedy +193898,Life Itself (2018),Drama|Romance +193900,22 July (2018),Drama +193902,Been So Long (2018),Drama +193904,Illang: The Wolf Brigade (2018),Action|Sci-Fi|Thriller +193906,The Night Comes For Us (2018),Action|Crime|Thriller +193910,The King of the Hill (2008),Action|Thriller +193912,Spring 1941 (2007),Drama|Romance|War +193914,Take (2008),Crime|Drama|Thriller +193916,Mirai (2018),Animation|Fantasy +193918,Smoke 'Em If You Got 'Em (1988),Comedy +193920,Goodbye Mr. Christie (2011),Animation +193922,The Lotus Gun (2015),Drama|Western +193924,Kazablan (1974),Comedy|Drama|Romance +193926,Ormie (2010),Animation|Children +193928,Simon Amstell: Do Nothing - Live (2010),Comedy +193930,Simon Amstell: Numb - Live at the BBC (2012),Comedy +193932,Children (1976),(no genres listed) +193934,Madonna and Child (1980),Drama +193936,Death and Transfiguration (1983),Drama +193938,The Terence Davies Trilogy (1983),Drama +193940,The Burnt House (2009),Drama|Horror|Thriller +193942,Instant Family (2018),Comedy +193944,The Ballad of Buster Scruggs (2018),Comedy|Drama|Western +193946,Ladies in Black (2018),(no genres listed) +193950,Free Solo (2018),Documentary +193952,Hunter Killer (2018),Action +193954,The Nutcracker and the Four Realms (2018),Adventure|Children|Fantasy +193956,The Grinch (2018),Animation|Children|Comedy +193958,Creed II (2018),Drama +193960,Wildlife (2018),Drama +193962,Book of Dragons (2011),Action|Animation|Comedy|Fantasy +193964,The Jade Pendant (2017),Drama +193966,The Merger (2018),Comedy +193968,M (2018),Mystery +193970,Happy Times (2015),Comedy|Romance +193972,Two for Joy (2018),Drama +193974,Clergy (2018),Drama +193976,Man of Music (1952),(no genres listed) +193978,Living the Light - Robby Müller (2018),Documentary +193980,Any Bullet Will Do (2018),Western +193982,À double tour (1959),Drama +193986,Don’t Leave Home (2018),Mystery|Thriller +193988,The Gardener (2017),Documentary +193990,Night Howl (2017),Horror +193992,Iguana (1988),Drama|Horror|Thriller +193994,Clawed (2017),Horror +193998,Love Clinic (2015),Comedy|Drama +194000,A Pain in the Ass (1973),Comedy|Crime +194004,Halloween (2018),Horror +194006,Replicas (2018),Sci-Fi|Thriller +194008,Floating! (2015),Comedy|Drama|Romance +194010,Sunset (2018),Drama|Thriller +194012,Level 16 (2018),Drama|Sci-Fi +194014,Riding in Vans with Boys (2003),Documentary +194016,Ralph Breaks the Internet (2018),Animation|Children +194018,Faithfull (2017),(no genres listed) +194020,Away from All Suns (2013),Documentary +194022,Making Montgomery Clift (2018),Documentary +194024,8 Bit Generation: The Commodore Wars (2016),Documentary +194026,The Man Who Killed Hitler and Then the Bigfoot (2018),Drama +194028,Owned: A Tale of Two Americas (2018),Documentary +194030,The Murder Farm (2009),Drama|Thriller +194032,Nightclub Secrets (2018),Thriller +194034,Survivor (1987),Action|Adventure|Sci-Fi +194036,Kékszakállú (2016),Drama +194038,The Balcony (1963),Drama +194042,Missing Person (1957),Action|Drama|War +194044,Joe Rogan: Strange Times (2018),Comedy +194046,A Woman's Name (2018),Drama +194048,School of Life (2017),Comedy|Drama +194050,The Settlement (1999),(no genres listed) +194052,At Eternity's Gate (2018),Drama +194054,Osa (1986),Sci-Fi +194056,Frauds (1993),Comedy|Crime +194058,London Fields (2018),Crime|Drama|Mystery|Thriller +194060,Uninvited (1988),Horror|Sci-Fi +194062,Second Sight (1989),Comedy +194064,Cold Dog Soup (1990),Comedy +194066,The Revolution That Wasn't (2008),(no genres listed) +194068,The Panama Deception (1992),Documentary +194070,Live (2018),Horror|Thriller +194072,The Dead Mountaineer Hotel (1979),Crime|Mystery|Sci-Fi +194074,The Hate U Give (2018),Crime|Drama +194076,The Outing (1987),Horror +194078,Suckerfish (1999),(no genres listed) +194080,Drawing Flies (1996),Comedy|Drama|Thriller +194082,Meet the Hollowheads (1989),Comedy|Sci-Fi +194084,Terrorgram (1988),Fantasy|Horror +194086,Rising Storm (1989),Action|Comedy|Sci-Fi +194088,Marvel Rising: Secret Warriors (2018),Action|Animation|Comedy +194090,Nat Turner: A Troublesome Property (2003),Documentary +194092,Butch Jamie (2007),Comedy|Documentary|Romance +194094,Songbird (2018),Drama +194096,Doctor Blood's Coffin (1961),Horror +194098,Happy Hell Night (1992),Horror|Mystery|Thriller +194100,Ederlezi Rising (2018),Sci-Fi +194102,Mother Goose Rock 'N Rhyme (1990),Adventure|Children|Fantasy +194104,Student Athlete (2018),Documentary +194106,Iceman (2017),Adventure|Drama +194108,Replay (2001),Drama|Romance +194110,Lawyer Lawyer (1997),Comedy +194112,Maktub (2017),Comedy|Drama +194114,Freakshow (1989),Horror +194116,Dead Man Walking (1988),Action|Sci-Fi +194118,Mold! (2012),Drama +194120,Sons of Steel (1989),Sci-Fi +194122,Cellar Dweller (1988),Fantasy|Horror +194124,Future Shock (1994),Horror|Sci-Fi +194126,BuyBust (2018),Action|Drama|Thriller +194128,The Trump Prophecy (2018),Drama +194130,The 3rd Eye (2017),Horror|Thriller +194132,Postcards from London (2018),Comedy|Drama|Romance +194134,Knife + Heart (2018),Drama +194136,Angel Face (2018),Drama +194138,Demi-sœurs (2018),Comedy +194140,Sauvage (2018),Drama +194142,Comment tuer sa mère (2018),Comedy +194144,Mademoiselle de Joncquières (2018),Drama|Romance +194146,The Bachelor (1997),Drama|Romance +194148,Lethal Admirer (2018),Thriller +194152,Sleep No More (2018),Horror +194154,Hard Rock Zombies (1985),Comedy|Horror +194156,Thriller Zone (1995),Horror +194158,Mausoleum (1983),Horror +194160,The Carrier (1988),Drama|Horror|Thriller +194162,Bread and Circus (2003),Adventure|Comedy|Fantasy|Horror +194164,Winterbeast (1992),Horror +194166,CreepTales (1989),Comedy|Fantasy|Horror +194168,Kamillions (1989),Comedy|Horror|Romance|Sci-Fi +194170,The Return of James Battle (2004),Adventure|Comedy|Horror +194172,The Lost Empire (1984),Action|Adventure|Comedy|Drama|Horror +194174,Death Wish Club (1984),Comedy|Crime|Horror +194176,Deadline (1984),Action|Drama|Horror|Thriller +194178,Split (1989),Drama|Sci-Fi +194180,Skinned Deep (2004),Comedy|Horror +194182,Attack of the Beast Creatures (1985),Horror +194184,Warriors of the Apocalypse (1985),Action|Sci-Fi +194186,Diesel (1985),(no genres listed) +194188,The Hollow Child (2018),Horror|Thriller +194190,"Shoot Loud, Louder... I Don't Understand (1966)",Comedy|Crime|Fantasy +194192,The Real Inglorious Bastards (2012),Documentary +194194,Tholi Prema (2018),Comedy|Romance +194196,Song of Russia (1944),Drama|Romance|War +194198,La profezia dell'Armadillo (2018),(no genres listed) +194200,Hell Fest (2018),Horror +194202,Betrayed (2018),(no genres listed) +194204,Alterscape (2017),Sci-Fi +194206,Await Further Instructions (2018),Mystery|Thriller +194208,Arthur Miller: Writer (2017),Documentary +194212,Social Life of Small Urban Spaces (1988),(no genres listed) +194214,When the Raven Flies (1984),Action|Drama +194216,The Giant Spider (2013),Sci-Fi +194218,Wickie the Viking (2009),Action|Adventure|Children|Comedy +194220,Wickie and the Treasure of the Gods (2011),Action|Adventure|Children|Comedy +194222,Der Wixxer (2004),Comedy|Crime +194224,Müllers Büro (1986),Comedy +194226,Alles Isy (2018),Drama +194228,The Iron Man (1974),Action|Comedy|Fantasy +194230,Bayou Caviar (2018),Crime|Thriller +194232,The Body,(no genres listed) +194234,China Salesman (2017),Action|Thriller +194236,Run Like Hell (1995),Sci-Fi|Thriller +194238,Malevolent (2018),Horror +194240,The Slayer (1982),Horror +194242,Social Animals (2018),Comedy|Romance +194244,High Resolution (2018),Drama|Romance +194248,The Business of Amateurs (2016),Documentary +194252,Tsukiji Wonderland (2016),Documentary +194254,In the Hood (2018),Drama +194256,A Charlie Brown Thanksgiving (1973),Animation|Children|Comedy +194258,Charlie Brown's All-Stars (1966),Animation|Children|Comedy +194260,"It's Flashbeagle, Charlie Brown (1984)",Animation +194262,"It's Magic, Charlie Brown (1981)",Animation|Children +194264,Pioneer (2011),(no genres listed) +194266,A Young Couple (2009),Documentary|Drama +194268,Farming (2018),Drama +194270,Bloodrunners (2017),Crime|Horror +194274,Gehenna: Where Death Lives (2016),Horror|Mystery|Sci-Fi|Thriller +194276,Nail Gun Massacre (1985),Horror +194278,How to Build a Time Machine (2016),Documentary +194280,Panic (1982),Horror|Sci-Fi +194282,Quarries (2016),Drama|Horror|Thriller +194284,VooDoo (2017),Horror +194286,Devil's Tree: Rooted Evil (2018),Horror|Thriller +194288,The Monkey King 3 (2018),Action|Adventure|Fantasy +194290,Risk of Acid Rain (2015),Drama +194292,"Tuya, Mía... Te la apuesto (2018)",Comedy +194294,The Legend of Halloween Jack (2018),Horror +194296,Galaxy of Horrors (2017),Horror|Sci-Fi +194298,Dracula of Exarcheia (1983),Comedy|Horror +194300,Evil (2005),Horror +194306,Dawning of the Dead (2017),Horror +194308,Ride (2018),Thriller +194310,Blood in the Water (2016),Crime|Mystery|Thriller +194312,Private Life (2018),Comedy|Drama +194314,Billy Bishop Goes to War (2010),(no genres listed) +194316,Skypemare (2013),Horror +194318,My Little Pony: The Movie (1986),Animation|Children +194320,The Fruit Machine (2018),Documentary +194322,Death Warmed Up (1985),Horror|Sci-Fi +194324,Red Blooded American Girl (1990),(no genres listed) +194326,Rejuvenator (1988),Horror|Sci-Fi +194328,Bloodeaters (1980),Horror +194330,Habana Eva (2010),Comedy|Romance +194332,Muchas gracias de nada (1980),Comedy +194334,Les Luthiers: El Grosso Concerto (2001),(no genres listed) +194336,Blue Night (2018),Drama|Romance +194338,Don't Go to Sleep (1982),Drama|Horror|Mystery +194340,The Eternal Feminine (2018),Drama +194342,Time Share (2018),Drama +194344,"João, O Maestro (2017)",Documentary +194346,The Vanished (2018),Thriller +194348,Can You Ever Forgive Me? (2018),Comedy|Crime|Drama +194350,"Monrovia, Indiana (2018)",Documentary +194352,Feminists: What Were They Thinking? (2018),Documentary +194354,Nickel and Dime (2003),Comedy|Drama +194356,Oru Naal Koothu (2016),Comedy|Drama|Romance +194358,Threesomething (2018),Comedy +194360,Varathan (2018),Thriller +194362,Mangalyam Thanthunanena (2018),Comedy|Drama +194364,Ranam : Detroit Crossing (2018),Action +194366,Kolamavu Kokila (2018),Comedy|Thriller +194368,Oru Pazhaya Bomb Kadha (2018),Comedy|Romance +194370,Dominion (2014),Action|Sci-Fi|Thriller +194372,The Seasons in Quincy: Four Portraits of John Berger (2017),Documentary +194374,Adele: Live at the Royal Albert Hall (2011),(no genres listed) +194380,Subterano (2003),Sci-Fi +194382,Henri Langlois: The Phantom of the Cinémathèque (2005),Documentary +194386,Samurai Cat: The Movie (2014),Action|Comedy +194388,Gamera: Guardian of the Universe (1995),Action|Adventure|Drama|Fantasy|Sci-Fi|Thriller +194390,Lake of Dracula (1971),Horror +194394,"His Motorbike, Her Island (1986)",(no genres listed) +194396,Overlord (2018),Action|Horror|Sci-Fi|Thriller|War +194398,Dead in a Week (Or Your Money Back) (2018),Action|Comedy|Drama +194400,Widows (2018),Crime|Drama|Thriller +194402,Quincy (2018),Documentary +194404,Night Angel (1990),Horror +194406,Ozone (1995),Action|Adventure|Crime|Horror|Sci-Fi +194408,Aswang (1994),(no genres listed) +194410,Dark Sanity (1982),Horror +194412,Ogroff (1983),Horror +194414,Scalps (1983),Horror +194416,A Polish Vampire in Burbank (1983),Comedy|Horror +194418,Thou Shalt Not Kill... Except (1985),Action|Adventure|Crime|Horror|Thriller +194420,Breeders (1986),Horror|Sci-Fi|Thriller +194422,Evil Spawn (1987),Horror|Sci-Fi +194424,Open House (1987),Horror +194426,Terror Squad (1988),(no genres listed) +194428,Curse II: The Bite (1989),Horror +194430,Retribution (1987),Horror +194432,Below the Sahara (1953),Documentary +194434,Adrenaline (1990),(no genres listed) +194436,Blood Salvage (1990),Comedy|Horror +194438,Democracy - Im Rausch der Daten (2015),Documentary +194440,The Last Sharknado: It's About Time (2018),Action|Adventure|Comedy|Fantasy|Sci-Fi|Thriller +194442,The Vampire's Ghost (1945),Horror +194448,Green Book (2018),Comedy|Drama +194450,Her Smell (2018),Drama +194452,The Tokyo Night Sky Is Always the Densest Shade of Blue (2017),Drama +194454,Firebird 2015 A.D. (1981),Action|Romance|Sci-Fi +194456,Angel of H.E.A.T. (1983),Action|Thriller +194458,Future Schlock (1984),Comedy|Sci-Fi +194460,The Killing Edge (1984),Sci-Fi +194462,Space Rage (1985),Sci-Fi|Western +194464,Sky Pirates (1986),Adventure|Sci-Fi +194466,Interzone (1987),Action|Comedy|Sci-Fi +194468,Sleepless Nights (2016),Horror +194472,The Creepy Line (2018),Documentary +194474,A Chinese Odyssey Part Two: Cinderella (1995),Comedy +194476,Honey Badgers: Masters of Mayhem,(no genres listed) +194478,TED: The Future We Will Create (2007),Documentary +194480,I Have Never Forgotten You: The Life & Legacy of Simon Wiesenthal (2007),Documentary +194482,Loreena McKennitt: Nights from the Alhambra (2007),(no genres listed) +194486,Stomp Live (2009),(no genres listed) +194490,A Walk to Beautiful (2007),Documentary +194492,Fighting the Sky (2018),Sci-Fi +194494,Girls Always Happy (2018),Drama +194496,M/M (2018),Thriller +194498,Faust (2018),Fantasy|Horror +194500,Genesis (2018),Drama +194502,A Land Imagined (2018),Mystery +194504,Eldorado (2018),Documentary +194506,Everything Outside (2018),(no genres listed) +194508,The Proposal (2018),Documentary +194510,People's Republic of Desire (2018),Documentary +194512,Petra (2018),Drama +194514,Barefoot (2017),Comedy|Drama +194516,The Heiresses (2018),Drama +194518,United Skates (2018),Documentary +194520,Profile (2018),Thriller +194522,Introduzione all'oscuro (2018),Documentary +194526,The Image You Missed (2018),(no genres listed) +194528,Volcano (2018),Crime|Drama +194530,Hell House LLC II: The Abaddon Hotel (2018),Horror +194532,He's Out There (2018),Horror|Thriller +194534,Decoy (2010),Crime|Drama|Romance +194536,The New Life of Paul Sneijder (2016),Drama +194538,Gyeongju (2014),Comedy|Drama|Romance +194540,K - Shop (2016),Crime|Horror|Thriller +194542,Conrad & Michelle: If Words Could Kill (2018),Drama +194544,Trouble (2017),Thriller +194546,Sheikh Jackson (2017),Drama +194548,Personal Problems (1980),Drama +194550,Doom Asylum (1987),Horror +194552,Harmony Lessons (2013),Drama +194554,The Turning Point (1945),(no genres listed) +194556,Terrified (2017),Drama|Horror +194558,Lead Us Not Into Temptation (2011),Drama +194560,Zohar (1993),(no genres listed) +194562,No Harm in Dreaming (2005),(no genres listed) +194564,Mega Time Squad (2018),Comedy|Sci-Fi +194566,Prometeo deportado (2009),Comedy|Drama +194568,"Traces, empreintes de femmes (2003)",Documentary +194570,Haunted (2017),Crime|Drama|Horror +194574,The Worlds of Philip K. Dick (2016),Documentary|Sci-Fi +194576,No Reason (2010),Horror|Thriller +194578,Mirror of Holland (1950),Documentary +194580,Motta Shiva Ketta Shiva (2017),Action|Comedy|Drama|Romance +194582,Bergman: A Year in a Life (2018),Documentary +194584,FAR. The Story of a Journey around the World (2017),Documentary +194586,IUVENTA (2018),Documentary +194588,The Last Supper (1976),Drama +194590,Территория Джа,Comedy|Fantasy|Sci-Fi +194592,Seventeen Years (1999),Drama +194594,Solid Geometry (2002),Drama|Mystery +194596,Being Bucky (2009),Documentary +194598,Man in the Well (2016),Drama +194600,The Village (1993),Animation +194602,Dying to Survive (2018),Comedy|Drama +194604,Fairytale (2012),Documentary +194606,Forever Young (2018),Drama|Romance|War +194608,The Black Book (2018),Drama|Romance +194610,Dead Pigs (2018),Children|Comedy|Drama +194612,Dreaming Murakami (2018),Documentary +194614,The Ten Steps (2004),Horror|Thriller +194616,The Quest of Alain Ducasse (2017),Documentary +194618,Gosnell: The Trial of America's Biggest Serial Killer (2018),Drama +194620,X&Y (2018),Drama +194622,Sunday in the Park with George (1986),(no genres listed) +194624,Rush: Snakes & Arrows Live (2008),(no genres listed) +194626,Salt on Our Skin (1992),Drama|Romance +194628,Der Junge muss an die frische Luft (2018),Drama +194632,25 km/h (2018),Comedy +194634,The Amityville Murders (2018),Horror +194636,I Still See You (2018),Thriller +194638,The Kindergarten Teacher (2018),Drama +194640,Cry of the Werewolf (1944),Horror +194642,The Last Ones (2018),Horror +194644,The Nanny (2018),Fantasy|Horror|Sci-Fi|Thriller +194646,Tyrel (2018),Comedy|Drama +194648,Tilt (2017),Drama|Horror|Thriller +194652,Simple Things (2007),Drama +194654,Tale of the Navajos (1949),(no genres listed) +194656,Night Comes On (2018),Drama +194658,Heroes (1977),Comedy|Drama|Romance +194660,Badou Boy (1970),Comedy|Drama +194662,Jailhouse Socrates (2017),Documentary +194664,They Shall Not Grow Old (2018),Documentary|War +194666,Roads in February (2018),Drama +194668,Johnson County War (2002),(no genres listed) +194670,The Unborn (1991),Horror|Sci-Fi +194674,A Christmas Memory (1966),Drama +194678,Taste of Cement (2017),(no genres listed) +194680,Twisted Pair (2018),Action|Sci-Fi|Thriller +194682,Uma Vida Sublime (2018),Thriller +194684,Checking Out (1989),Comedy +194686,Black Tide (2018),Thriller +194690,Desiring Julia (1986),Drama|Romance +194692,Boar (2018),Horror +194694,Blood Lust (2016),Horror|Mystery +194696,Andhadhun (2018),Mystery|Romance|Thriller +194698,Guilty Conscience (1985),Drama|Mystery|Thriller +194700,Dreamland (2013),Drama +194704,Listen to Me (1989),Drama|Romance +194706,My Birthday Song (2018),Thriller +194708,The Dark Power (1985),Comedy|Fantasy|Horror +194710,Scream and Scream Again (1970),Crime|Horror +194712,Possessed (2009),Horror|Mystery +194714,In the Intense Now (2017),Documentary +194716,Terror at Tenkiller (1986),Horror +194718,Space Babes from Outer Space (2017),Comedy|Sci-Fi +194720,When the Clouds Roll By (1919),Action|Comedy|Romance +194722,Look Away (2018),Horror|Thriller +194724,Ray & Liz (2018),Drama +194726,The Happiest Place on Earth (2015),Drama|Mystery +194728,The Price of Everything (2018),Documentary +194729,The Oath (2018),Comedy +194732,Black Code (2016),Documentary +194734,Camarón: The Film (2018),Documentary +194736,Halley (2012),Drama|Horror +194738,Galveston (2018),Drama|Thriller +194740,Heights (2017),Comedy|Drama +194744,Mind Killer (1987),Horror|Sci-Fi +194746,Rolling Kansas (2003),Comedy +194748,The Hazing (2004),Horror +194750,Deathrow Gameshow (1987),Comedy|Crime|Horror|Sci-Fi|Thriller +194752,Ready to Run (2000),Children +194760,You Wish! (2003),Children +194762,The Clovehitch Killer (2018),Horror|Thriller +194764,Anna Karenina. Vronsky's Story (2017),Drama|Romance +194766,Yes & Yes (2014),Drama +194768,Step Across the Border (1990),Documentary +194770,Raging Sharks (2005),Horror|Sci-Fi +194772,The Witch in the Window (2018),Drama +194773,Negatives (1968),(no genres listed) +194775,Paradox Alice (2012),Sci-Fi +194777,The House of Violent Desire (2017),Horror|Mystery|Thriller +194779,An American in Texas (2017),Drama +194781,Bloodlines (2010),Crime +194783,"Ron White: If You Quit Listening, I'll Shut Up (2018)",Comedy +194785,Living in the Future's Past (2018),Documentary +194787,Undercover Grandpa (2017),Children|Comedy +194789,The End of Meat (2017),Documentary +194793,The Barbarian and the Geisha (1958),Action|Adventure|Drama +194795,Middle Class Abbayi (2017),Action|Children|Comedy +194797,Godzilla: Eater of Stars (2018),Animation +194799,Derren Brown: Sacrifice (2018),Documentary +194801,My Dinner With Hervé (2018),Drama +194811,A Man is Dead (2018),Animation|Drama +194813,Bloody Moon (1981),Horror|Mystery|Thriller +194815,Nirvana Island: The Last 47 Days (2016),Thriller +194817,Kuro (2012),Drama|Romance +194819,The Super (2017),Thriller +194821,The Liberation of Skopje (2016),Drama +194823,Genghis Khan (2018),Action|Adventure|Fantasy +194825,The Supernaturals (1986),Horror +194827,Hotel Gagarin (2018),Comedy +194829,The Unseen (2016),Action|Drama|Horror|Sci-Fi +194831,Killer Kate! (2018),Horror +194833,Effedia - Sulla mia cattiva strada (2008),Documentary +194835,Without Me (2018),Drama|Thriller +194837,Batti Gul Meter Chalu (2018),Comedy|Drama +194839,Caddie (1976),Drama|Romance +194843,9 Satra (2018),Animation|Fantasy +194845,Delirium (2018),Horror|Thriller +194847,The Haunted Hotel (1907),Horror +194849,La Course aux potirons (1907),(no genres listed) +194851,The Ouija Board (1920),Animation|Comedy|Horror +194853,L7: Pretend We're Dead (2017),Documentary +194855,First-Year Student (1948),Adventure|Children|Comedy +194857,Stagecoach (1986),Action|Western +194859,Menneskesmuglerne,(no genres listed) +194861,A Twelve-Year Night (2018),Crime|Drama +194863,The Mouth of the Wolf (2009),(no genres listed) +194865,My Little Pony: A Very Pony Place (2007),(no genres listed) +194867,My Little Pony Live! The World's Biggest Tea Party (2008),(no genres listed) +194869,Monsters Wanted (2013),Documentary +194871,Possum (2018),Drama|Horror|Thriller +194873,Vaurien (2018),(no genres listed) +194875,As Simple as That (2008),(no genres listed) +194877,The Hunted (1948),Crime|Drama +194881,Meant to Be (2012),Drama +194883,The Go-Betweens: Right Here (2017),Documentary +194885,Big Gold Dream: Scottish Post-Punk and Infiltrating the Mainstream (2015),Documentary +194889,Teenage Superstars (2017),Documentary +194891,The Forgotten Colours of Dreams (2018),Drama|Fantasy +194893,The Devonsville Terror (1983),Horror +194895,Small Fry (1939),(no genres listed) +194897,Jungle Drums (1943),Animation +194899,Boo Moon (1954),Animation +194903,One Small Step (2018),Animation|Drama +194905,His Nickname Is Beast (1990),Action|Crime|Drama +194907,Mouth to Mouth (2005),Drama +194909,Tafanos - Killer Mosquitos,(no genres listed) +194911,This Crazy Heart (2017),Drama +194913,The Promise (2017),Drama|Horror|Thriller +194915,Bad Dads (2011),Comedy +194917,The Satellite Girl And Milk Cow (2014),Animation +194919,What They Had (2018),Drama +194921,Moscow Never Sleeps (2015),Comedy|Drama|Romance +194925,Cottonpickin' Chickenpickers (1967),Comedy +194927,An Evening with Beverly Luff Linn (2018),Comedy +194929,Constantine: City of Demons - The Movie (2018),Animation +194931,The Dark (2018),Horror +194933,Funeralopolis : A Suburban Portrait (2017),(no genres listed) +194935,Smuggling Hendrix (2018),Comedy|Drama +194937,Atomic Homefront (2017),Documentary +194941,Solitary (2016),Documentary +194943,Divine Divas (2016),Documentary +194945,Our Struggles (2018),Drama +194947,Cam (2018),Horror|Thriller +194949,X - The eXploited (2018),Crime +194951,Bird Box (2018),Drama|Sci-Fi|Thriller +194953,Who's Watching Oliver (2018),Drama|Horror +194955,Ted - Show Me Love (2018),Drama +194957,Expect the Unexpected (1998),Action|Crime +194959,Destroyer (2018),Crime|Drama|Thriller +194961,Joe & Caspar Hit the Road (2015),Comedy +194963,"Burn Motherfucker, Burn! (2017)",Documentary +194965,Unseen (2016),(no genres listed) +194967,An Interview with God (2018),Drama +194969,Adam Sandler: 100% Fresh (2018),Comedy +194973,Shogun (1980),Action|Adventure|Drama|Romance +194975,Vox Lux (2018),Drama +194977,3 Faces (2018),Drama +194979,Gamera 2: Attack of the Legion (1996),Action|Drama|Fantasy|Horror|Sci-Fi|Thriller +194981,Why Knot (2014),Documentary +194983,Air Strike (2018),Action|Adventure|Drama|War +194985,Solis (2018),Sci-Fi +194987,Don't Go (2018),Mystery +194989,Reversing Roe (2018),Documentary +194991,Between Worlds (2018),Action|Mystery|Thriller +194993,Attrition (2018),Action +194995,Spitfire (2018),Documentary +194997,The Last Witness (2018),Thriller +194999,Mapplethorpe (2018),Drama +195001,Behind the Curve (2018),Documentary +195003,Shattered (2017),Drama +195005,Free and Easy (2017),Comedy +195007,Bad Ben - The Mandela Effect (2018),Comedy|Horror +195009,Black Panthers (1968),Documentary +195013,Mr. Donkey (2016),Comedy +195017,Homestay (2018),Fantasy|Thriller +195019,The Keeping Hours (2017),Drama|Fantasy|Horror +195021,Mad World (2018),Sci-Fi +195023,The Manual (2017),Sci-Fi +195025,Lemming's First Case (2009),Comedy|Crime +195027,Otto - The Romance Film (1992),Comedy +195029,Otto - The Disaster Movie (2000),Comedy +195031,Emil and the Detectives (2001),Children|Comedy +195033,The Basement (2018),Horror +195037,Anna (2015),Crime|Drama|Thriller +195041,Girl (2018),Drama +195043,Deadly Crossing (2011),Action|Crime|Drama|Thriller +195045,The Wind (2018),Horror|Western +195047,The Real Rocky (2011),Documentary +195049,Fractured (2018),Horror|Thriller +195051,The Thinning: New World Order (2018),Action +195053,Lone Wolf (1988),Horror|Sci-Fi +195057,"If You Die, I'll Kill You (2011)",Comedy|Drama +195059,Sisters of War (2010),Drama|War +195063,Magnificent Desolation: Walking on the Moon (2005),Documentary +195065,1985 (2018),Drama +195067,Welcome Home (2018),Thriller +195069,Liv (1967),Drama +195071,The Scorpion King: Book of Souls (2018),Action|Adventure|Fantasy +195073,The Dig (2017),(no genres listed) +195075,Piercing (2018),Thriller +195077,Halvdan Viking (2018),Children +195079,Boys (2016),(no genres listed) +195081,Ága (2018),(no genres listed) +195083,When Knighthood Was in Flower (1922),Drama|Romance +195085,Darth Maul: Apprentice (2016),Action|Fantasy|Sci-Fi +195087,Ana e Vitória (2018),Comedy|Romance +195089,1 Out of 7 (2012),Drama +195091,The Negotiation (2018),Crime +195093,Blanche (1972),Drama +195095,The Realm (2018),Drama|Mystery|Thriller +195097,Seven Days in January (1979),Drama +195099,Dancing Barefoot (1995),(no genres listed) +195101,Saurora (2016),Sci-Fi +195103,Ignatius of Loyola (2016),Action|Drama|Romance|War +195105,Empsillnes (2015),Sci-Fi +195107,The Narrow World (2017),Sci-Fi +195109,The iMom (2014),Drama|Sci-Fi +195111,Telescope (2013),Sci-Fi +195113,The Chocolate War (1988),Drama +195115,Uncanny Valley (2015),Animation|Sci-Fi +195117,Bilocation (2013),Horror +195119,Welcome (2015),(no genres listed) +195121,No Escape Room (2018),Horror|Thriller +195123,Death Kiss (2018),Action|Thriller +195125,Jack Irish: Dead Point (2014),Crime|Drama +195127,Jack Irish: Bad Debts (2012),Crime|Drama|Mystery +195129,7 and 8 (2007),Comedy +195131,Dead Heart (1996),Drama|Mystery|Thriller +195133,Dead Man Out (1989),(no genres listed) +195135,Knuckleball (2018),Thriller +195139,Loophole (1981),Adventure|Crime|Drama +195141,Nyitva (2018),Comedy +195147,Dead Solid Perfect (1988),(no genres listed) +195149,Ronnie Coleman: The King (2018),Documentary +195151,The Days of Being Dumb (1992),Drama|Romance +195153,Deadline (1987),Action|Drama|War +195155,B&B (2017),Thriller +195157,Crazy About Tiffany's (2016),Documentary +195159,Spider-Man: Into the Spider-Verse (2018),Action|Adventure|Animation|Sci-Fi +195161,Mary Poppins Returns (2018),Children|Fantasy +195163,Bumblebee (2018),Action|Adventure|Sci-Fi +195165,Holmes and Watson (2018),Adventure|Comedy|Mystery +195167,On the Basis of Sex (2018),Drama +195169,Niet Schieten (2018),(no genres listed) +195171,Making Fun: The Story of Funko (2018),Documentary +195173,Defying the Nazis: The Sharps' War (2016),Documentary +195175,Monster Party (2018),Horror +195177,Eyes of the Werewolf (1999),Horror +195179,O'Mast (2011),(no genres listed) +195181,Honeyglue (2015),Drama|Romance +195183,Dead Squad: Temple of the Undead (2018),Horror +195185,Project A-Ko (1986),Action|Animation|Comedy|Sci-Fi +195187,The 14 Amazons (1972),Action|Adventure +195189,The Biggest Heroes (1996),Comedy|Drama +195191,The Invitation (1973),Comedy +195193,The Limousine (2014),Comedy +195195,The Badger Game (2014),Crime|Drama|Thriller +195197,Singularity (2015),Action|Sci-Fi +195199,Singular (2014),Sci-Fi +195201,Sad Hill Unearthed (2018),Documentary +195203,Prism (2015),Drama|Sci-Fi +195205,The Light Princess (1978),Animation|Fantasy +195207,Code 8 (2016),Action|Sci-Fi +195211,Junk (2012),Comedy +195213,The Night Crew (2014),Action|Mystery|Thriller +195215,After the Sun Fell (2017),Drama +195217,Star Wars: Dresca,Sci-Fi +195219,Lunatique (2017),(no genres listed) +195225,Red Mission (2015),Sci-Fi|Thriller +195227,Krishnarjuna Yudham (2018),Action|Romance|Thriller +195229,The Man Who Surprised Everyone (2018),Drama +195231,His Master's Voice (2018),(no genres listed) +195233,One Day (2018),Drama +195235,The Banquet (1948),Drama +195237,The Girl in the Bathtub (2018),(no genres listed) +195239,Florianópolis Dream (2018),Comedy|Drama +195241,En tierra extraña (2014),Documentary +195243,काशी - In Search of Ganga (2018),Drama|Thriller +195245,Lupin the Third: The Fuma Conspiracy (1987),Action|Adventure|Animation|Comedy +195247,Carbone (2017),Crime|Thriller +195249,The Secret of Steel City (1979),Drama|Fantasy|Sci-Fi +195251,The Holiday Calendar (2018),Children|Comedy|Romance +195253,Marrying the Mafia II (2005),Action|Comedy|Crime|Romance +195255,They'll Love Me When I'm Dead (2018),Documentary +195257,Seven in Heaven (2018),Horror +195259,Be Afraid (2017),Horror|Mystery|Thriller +195261,Death Bed: The Bed That Eats (1977),Comedy|Horror +195263,God Knows Where I Am (2016),Documentary|Drama|Mystery +195265,"Roll, Freddy, Roll! (1974)",Comedy +195267,Flight 666 (2018),Horror +195269,Hearts of Kyber (2017),Sci-Fi +195271,Believe in Me (2006),Children|Drama +195273,Happy Ending (2010),Comedy +195275,White Lily (2016),Drama|Sci-Fi +195277,Heart Blackened (2017),Crime|Drama|Thriller +195279,Alice: Boy from Wonderland (2015),Fantasy|Horror|Romance +195281,Chasing Tyson (2015),Documentary +195283,Caroline (2018),Drama +195285,Hope (2016),Sci-Fi +195287,Blue Velvet Revisited (2016),Documentary +195289,Last Child (2018),Drama +195291,"Happy New Year, Colin Burstead (2018)",Comedy|Drama +195293,The Front Runner (2018),Drama +195295,Dragged Across Concrete (2018),Action|Crime|Drama|Thriller +195297,Long Day's Journey Into Night (2018),Drama|Mystery +195299,I Used to Be Normal: A Boyband Fangirl Story (2018),Documentary +195301,Benjamin (2018),(no genres listed) +195303,Shadow (2018),Action|Drama +195305,Stan & Ollie (2018),Comedy|Drama +195307,Non-Fiction (2018),Comedy +195309,30 Door Key (1991),Drama +195311,Monsieur Papa (2011),Comedy +195313,Conspiracy Theory (2016),Horror|Sci-Fi|Thriller +195315,Le Grand Bain (2018),Comedy|Drama +195317,D.L. Hughley: Contrarian (2018),Comedy +195319,Rahasya (2015),Mystery|Thriller +195321,Sweet Water (2016),Sci-Fi +195323,The Albatross (2016),(no genres listed) +195325,Robot & Scarecrow (2017),Animation|Drama|Romance +195327,Francis (2013),Animation|Drama|Mystery|Thriller +195329,From Zero to Ten (2002),Comedy|Drama +195331,Basette (2008),(no genres listed) +195333,Tiger Boy (2012),Drama +195335,Io sono Tempesta (2018),Comedy|Drama +195337,Believe (2013),Drama +195339,Ratsasan (2018),Action|Drama|Thriller +195343,Rampant (2018),Action +195345,Free to Rock (2017),(no genres listed) +195347,Ghatel-e Ahli (2017),Drama|Thriller +195349,Lifechanger (2018),Horror +195351,Perfect (2018),Sci-Fi|Thriller +195355,Mary Forever (1989),Crime|Drama +195357,Lucky Jo (1964),(no genres listed) +195359,Los tres García (1947),Comedy|Romance +195361,She Demons (1958),Horror|Sci-Fi +195363,Room to Move (1987),Children|Drama +195365,Jane Fonda in Five Acts (2018),Documentary +195367,Cursed Seat (2018),Horror +195369,Reich (2001),Action +195371,B-Day! (2018),Comedy +195373,The Fool Killer (1965),Adventure|Drama|Mystery +195375,They Caught the Ferry (1948),(no genres listed) +195377,The Adventures of Dollie (1908),(no genres listed) +195379,Fakkah Fuzz: Almost Banned (2018),Comedy +195381,Baltic Deputy (1937),Drama +195383,The Saint In Palm Springs (1941),Crime|Mystery +195385,Gun City (2018),Action|Thriller +195387,The Prince and the Dybbuk (2017),Documentary +195389,The Lady and the Beard (1931),Comedy|Romance +195391,Kusama - Infinity (2018),Documentary +195395,Postcards from the Zoo (2012),Drama +195399,The Stylist (2016),Drama|Horror +195401,Zombiebox (2018),Comedy +195403,The Little Prince (1966),Children|Fantasy +195405,On the Seventh Day (2017),Drama +195407,Seminary Girls (1897),Comedy +195409,Loss Prevention (2015),Action +195411,Sound and Fury (1988),Drama +195415,The Ranger (2018),Horror +195417,The Prime of Life (1967),Comedy|Drama +195419,Children of the Air (2012),(no genres listed) +195421,The Tigers of Scotland (2017),Documentary +195423,Mad Max Renegade (2011),Action|Adventure|Sci-Fi|Thriller +195425,Our Deal (2011),Drama|Romance +195427,The Witch Files (2018),Fantasy|Mystery +195429,Becoming Astrid (2018),Drama +195431,This Mountain Life (2018),Adventure|Documentary +195433,"Baikonur, Earth",Documentary +195435,Serengeti Rules (2018),Documentary +195437,Hondros (2018),Documentary|War +195439,Mass for Shut-Ins (2017),(no genres listed) +195441,Angkor Awakens: A Portrait of Cambodia (2017),Documentary +195443,Caniba (2017),Documentary +195445,Almost Perfect (2012),Comedy|Romance +195447,I'm Not a Rebel (2017),Comedy +195449,The Network of Freedom (2017),Drama +195451,Budapest (2018),Comedy +195453,Derailroaded (2005),Documentary +195455,White Orchid (2018),Drama|Thriller +195457,The History of White People in America (1985),Comedy +195459,The Island (2011),Drama|Mystery|Romance|Thriller +195461,River Runs Red (2018),Thriller +195463,In a Relationship (2018),Romance +195465,Heart of Stone (2016),Drama|Fantasy|Romance +195467,Soltera Codiciada (2018),Comedy +195469,The Wandering Image (1920),(no genres listed) +195471,Four Around a Woman (1921),Drama +195473,Les Invisibles (2019),(no genres listed) +195475,The Address (2014),Documentary +195477,"For Us, the Living: The Story of Medgar Evers (1982)",(no genres listed) +195479,9 Fingers (2018),Crime|Mystery +195481,Dharma Guns (La Succession Starkov) (2011),Drama|Thriller +195483,Summer '82: When Zappa Came to Sicily (2014),Documentary +195485,Time Freak (2018),Comedy|Drama|Sci-Fi +195487,Lez Bomb (2018),Comedy|Drama +195489,Sadie (2018),Drama +195491,In Pursuit of Silence (2016),Documentary +195495,Familia (2005),Drama +195497,Vice (2018),Comedy|Drama +195499,Nina (2018),Drama +195503,Occult (2009),(no genres listed) +195505,Space Probe Taurus (1965),Horror|Sci-Fi +195507,No Regrets (2001),Comedy|Drama +195509,Learning to Lie (2003),Comedy|Drama +195511,Distant Lights (2003),Drama +195513,Anleitung zur sexuellen Unzufriedenheit (2002),Comedy +195515,The Ghost of Lord Farquaad (2003),Animation|Children|Comedy|Fantasy|Sci-Fi +195517,Saint-Jacques... La Mecque (2005),Comedy|Drama +195519,Back to Gaya (2004),Animation|Fantasy +195521,About the Looking for and the Finding of Love (2005),Comedy|Drama +195523,Indivisible (2018),(no genres listed) +195525,She Male Snails (2012),Documentary +195527,Something Must Break (2014),Drama +195529,Mushishi: The Shadow That Devours the Sun (2014),Adventure|Animation|Fantasy +195533,Ophelia (2018),Drama|Romance +195535,The Padre (2018),Drama +195537,The Dandelions (2012),Children|Comedy +195543,Los últimos cristeros (2011),(no genres listed) +195545,Broadway Love (1918),Romance +195547,The Dallas Connection (1994),Action +195549,The Monster of Phantom Lake (2006),Comedy|Horror +195551,Ash Is Purest White (2018),Crime|Drama|Romance +195553,Unforgiven (2018),Drama +195555,Shame (1988),Drama +195559,Wildflower (1991),Drama +195561,The Hummingbird Project (2018),(no genres listed) +195563,Pas très catholique (1994),Comedy +195565,Advantage (1977),Drama +195567,Swiped: Hooking Up in the Digital Age (2018),Documentary +195573,The Tragedy of Man (2011),Animation|Drama +195575,Marvel Mon Amour,Documentary +195577,20 30 40 (2004),Drama|Romance +195581,A Woman Captured (2017),Documentary +195583,Mosadere (2018),Comedy|Drama +195585,Eternal Life of Aleksandr Khristoforov (2018),Adventure|Comedy +195587,Dangerous Encounters of the First Kind (1980),Action|Crime|Thriller +195589,Last Letter (2018),Drama|Romance +195591,Patron (2013),Documentary +195593,Wilbur Falls (1998),Comedy|Drama +195595,Blue My Mind (2018),Drama|Fantasy +195597,The Dance of the Paroxysms (1929),Drama +195601,Shinjuku Swan II (2017),Action +195603,Shirome (2010),Horror +195605,Shinjuku Swan (2015),Action|Crime +195607,Boiler Maker (2008),Drama +195609,Kingdom of Felony (2008),Drama +195611,Undeserved (2016),Drama +195613,Recess: All Growed Down (2003),Animation|Children|Comedy +195615,Recess: Taking the Fifth Grade (2003),Animation|Children|Comedy +195617,Recess Christmas: Miracle On Third Street (2001),Animation|Comedy +195619,Kim Possible Movie: So the Drama (2005),Action|Adventure|Animation|Children|Drama +195621,Too Wise Wives (1921),Drama +195623,Ta'ang (2016),Documentary +195625,Deadly Betrayal (2003),Drama|Romance|Thriller +195627,Starcrossed (2005),Drama +195629,Corporal vs. Napoleon (2012),Comedy +195631,Naa Peru Surya - Naa Illu India (2018),Action|Romance +195633,"Veritas, Prince of Truth (2007)",Adventure|Children|Fantasy +195635,Did You Wonder Who Fired the Gun? (2017),Documentary +195637,Three for the Road (1987),Comedy +195639,The Princess Switch (2018),Comedy|Romance +195641,Final Recourse (2013),Drama|Thriller +195643,Darkness Reigns (2017),Horror +195647,The Ark (2015),Drama +195649,Quién te cantará (2018),Drama|Mystery +195651,Balançoires (1896),Documentary +195653,A Night with Lou Reed (1983),Documentary +195655,Night on Bald Mountain (1933),Animation +195659,Vidar the Vampire (2017),Comedy|Fantasy|Horror +195661,Blue Hole (2012),Fantasy|Horror +195663,Enter the Devil (1972),Drama|Horror +195665,Island Zero (2018),Horror +195667,Elementary My Dear Watson: The Man Behind Sherlock Holmes (2009),(no genres listed) +195669,Coldplay: A Head Full of Dreams (2018),Documentary +195671,An Elephant Sitting Still (2018),Drama +195673,Cat Collection's House (2017),Comedy|Drama +195675,A Crimson Man (2017),Sci-Fi +195679,By the Will of Chingis Khan (2009),Action|Adventure|Drama|War +195681,Dear Ex (2018),Comedy|Romance +195683,Mom and Other Loonies in the Family (2015),Drama +195685,Başka Semtin Çocukları (2008),Drama +195687,The Moonstone (1997),Crime|Mystery +195689,What Still Remains (2018),Drama|Thriller +195691,A Simple Story (1960),Drama|Romance +195693,A Lullaby for Men (1977),Children|Drama|Romance +195695,Rhythm Thief (1994),Drama +195697,Das Fest des Huhnes (1992),Comedy|Documentary +195699,"Dunkles, rätselhaftes Österreich",Comedy|Documentary +195701,All Hallows' Eve 2 (2015),(no genres listed) +195703,Valmentaja (2018),Drama +195705,La permission (2015),Drama +195707,Relaxer (2018),Comedy|Fantasy +195709,Slaughterbots (2017),Sci-Fi +195713,Jonathan (2018),Drama|Sci-Fi +195715,The House I Live In (1957),Drama +195717,La palabra de Pablo (2017),Drama|Thriller +195719,Core of the World (2018),Drama +195721,Porcupine Lake (2017),Drama|Romance +195723,96 (2018),Action|Romance +195725,Geetha Govindam (2018),Romance +195727,Secret Ingredient (2017),Comedy|Drama +195729,Balcony (2015),Drama +195731,The Great Buddha Plus (2017),Comedy|Drama +195733,Trevor Noah: Son of Patricia (2018),Comedy +195735,The Vampire Doll (1970),Horror +195739,Speed Kills (2018),Crime|Drama|Thriller +195741,Seam (2017),Sci-Fi +195743,Machan (2008),Comedy|Drama +195745,A Private War (2018),Drama|War +195747,Le Pont des Arts (2004),Drama +195749,Trezor (2018),Thriller +195751,The Sun at Midnight (2016),Adventure|Drama +195753,King Cohen: The Wild World of Filmmaker Larry Cohen (2017),Documentary +195755,The Great Buster: A Celebration (2018),Documentary +195757,The Possession of Hannah Grace (2018),Horror +195759,"You, Me & the Circus (2012)",(no genres listed) +195761,The World Before Your Feet (2018),Documentary +195763,The Unkindness of Ravens (2016),Drama|Horror +195765,Clinch (2015),Drama +195767,Christmas Wedding Planner (2017),Romance +195769,Mouse (2017),(no genres listed) +195773,Les Flâneries du voyant,(no genres listed) +195775,Du jour au lendemain (2006),Comedy +195777,Mortal Engines (2018),Sci-Fi +195779,The Silence of Others (2018),Documentary +195781,Playing with Dolls: Bloodlust (2016),Horror +195783,Playing with Dolls: Havoc (2017),Horror|Thriller +195785,Playing with Dolls (2015),Horror +195787,Ayka (2018),Drama +195795,The Blues Accordin' to Lightnin' Hopkins (1969),Documentary +195797,In Search for Captain Grant (1985),Adventure +195805,The Price of Success (2017),Comedy|Drama +195809,Living Room Coffin (2018),Comedy|Drama +195811,This Is Home: A Refugee Story (2018),Documentary +195813,Dalya's Other Country,Documentary +195815,The Storyteller,Drama +195817,Dating My Mother (2017),Comedy +195819,Abulele (2015),Adventure|Children|Fantasy +195821,Grand Unified Theory,(no genres listed) +195823,The Christmas Chronicles (2018),Adventure|Children|Comedy|Fantasy +195825,The Final Project (2016),Horror|Thriller +195827,Radio Dreams (2016),Comedy +195831,Thoroughbred (2016),Thriller +195835,Riddle Room (2016),Horror +195837,Wishing Well (2018),(no genres listed) +195839,A Place in Hell (2018),Horror|Thriller +195841,The Bride's Journey (1997),Comedy +195843,Couple Therapy for Cheaters (2017),Comedy +195847,A Christmas Prince: The Royal Wedding (2018),Romance +195849,Dumplin' (2018),Comedy|Drama +195851,Lady-Like (2017),(no genres listed) +195853,Traveling Companion (1996),Drama +195855,Death Race 4: Beyond Anarchy (2018),Action +195859,Terror (1978),Horror +195861,Just Charlie (2017),Drama +195863,The Old Man of the Mountain (1933),(no genres listed) +195865,The Christmas Project (2016),(no genres listed) +195867,The Fitzroy (2016),Comedy|Sci-Fi +195869,The So-Called Caryatids (1984),Documentary +195871,An Ethics Lesson (2013),Drama|Thriller +195873,The Fever (2004),Drama +195875,Ex-Shaman (2018),Documentary +195877,A Family Tour (2018),Drama +195879,Make Us Dream (2018),Documentary +195881,LEGO DC Super Heroes - Aquaman: Rage Of Atlantis (2018),Action|Animation|Children +195885,The Hoard (2018),Comedy|Horror +195887,Every Day is Christmas (2018),Drama +195889,Kushat podano! (2006),(no genres listed) +195891,Bibinur (2009),Drama +195893,Water (2006),Documentary +195895,Alarm (2009),Animation +195897,Out of Sight (2010),Animation +195899,Пес Барбос и необычный кросс (1961),Comedy +195901,Дом для Кузьки (1984),Animation|Children +195903,Kitten from Lizyukova Street (1988),Animation|Children +195905,Fool's Day (2014),Adventure|Comedy +195907,Champs-Élysées (1896),(no genres listed) +195909,Strange Colours (2017),Drama +195911,Christmas at the Palace (2018),Romance +195913,American Guinea Pig: The Song of Solomon (2017),Horror +195915,In Search of Greatness (2018),(no genres listed) +195917,The Fidel Castro Tapes (2014),Documentary +195919,Choices (1986),Drama +195921,The Mule (2018),Crime|Drama|Thriller +195923,Laura (1979),Drama|Romance +195925,Bunker of the Dead (2016),Action|Comedy|Horror +195927,The Deminer (2017),Documentary +195929,Lords of the Deep (1989),Sci-Fi|Thriller +195931,Jim Gaffigan: Noble Ape (2018),Comedy +195933,Grüne Hochzeit (1989),Drama|Romance +195937,The Chinese Widow (2017),Drama|Romance|War +195939,Alcatraz (2018),Action|Crime +195941,Maximum Impact (2017),Action|Comedy +195943,Assassins Revenge (2018),Sci-Fi +195945,A Testimony as an Image (2012),Documentary +195947,House of Purgatory (2016),Horror|Thriller +195949,Success Story (2017),Comedy|Drama +195953,Pupendo (2003),Comedy|Drama +195955,#Female Pleasure (2018),Documentary +195957,Forbidden Voices (2012),(no genres listed) +195959,Life Tracker (2013),Sci-Fi +195961,Godsend (2013),Drama +195963,Kung Fu Elliot (2014),Comedy|Documentary|Drama +195965,Talisman (1998),Horror|Sci-Fi +195967,Aero-Troopers: The Nemeclous Crusade (2003),Animation +195969,[Cargo] (2018),Crime|Horror|Thriller +195971,Blood Brother (2018),(no genres listed) +195973,The Meadow (2015),Documentary +195975,I Signed the Petition (2018),Documentary +195977,The Prison (2017),Action|Crime +195979,Notti Magiche (2018),(no genres listed) +195981,Scrat's Continental Crack-Up (2010),Animation +195983,Aria (2001),(no genres listed) +195985,American Valhalla (2017),Documentary +195987,DriverX (2018),Drama +195989,Family in Transition (2018),Documentary +195991,Between Two Waters (2018),(no genres listed) +195993,Avenging Force (1986),Action|Drama|Thriller +195995,Dofus - Book I: Julith (2016),Animation|Comedy|Fantasy +195997,Elijah's Ashes (2017),(no genres listed) +195999,R.L. Stine's Monsterville: The Cabinet of Souls (2015),Comedy|Horror +196001,My Life with James Dean (2017),Comedy +196003,Play the Devil (2016),Drama +196005,My Best Friend (2018),Drama +196009,Sparkle (2007),Comedy|Romance +196011,Agent Mr. Chan (2018),Action|Comedy +196013,Поздняя встреча (1979),Romance +196015,Сельский врач (1952),Drama +196017,Satellite Boy (2012),Adventure|Children|Drama +196019,The Lotus (2018),Action|Horror|Sci-Fi +196021,The Quake (2018),Action|Drama|Thriller +196023,Reaching Distance (2018),Drama|Mystery|Thriller +196025,To Hare Is Human (1956),Animation|Comedy +196027,Damned Summer (2017),Drama +196029,"No, or the Vain Glory of Command (1990)",Drama|War +196031,Peregrinação (2017),Adventure|Drama +196033,Um Adeus Português (1986),Drama +196035,Tell It to the Bees (2018),Drama|Romance +196037,Monstrum (2018),Action|Fantasy +196039,On Your Wedding Day (2018),Romance +196041,Gogol. A Terrible Vengeance (2018),Horror|Mystery|Thriller +196043,Lazy Hazy Crazy (2015),Drama|Romance +196045,MAID-DROID (2008),Drama|Sci-Fi|Thriller +196047,The Toybox (2018),Horror|Thriller +196049,Ferie d'agosto (1996),(no genres listed) +196051,Sugar Sweet (2001),Comedy +196053,May the Devil Take You (2018),Horror|Thriller +196055,Girls Night Out (2017),Thriller +196057,Backgammon (2016),Drama|Mystery +196061,The Beautiful Washing Machine (2004),(no genres listed) +196063,The Indecent Family,(no genres listed) +196065,Permanent Green Light (2018),Drama +196067,The Dawn Wall (2018),Adventure|Documentary +196071,"Bah, Humduck!: A Looney Tunes Christmas (2006)",Animation|Children|Comedy +196073,Tumbbad (2018),Horror|Thriller +196075,Nargess (1992),Drama +196077,Motherland Hotel (1987),(no genres listed) +196079,A Fire (1961),Documentary +196081,Ben Is Back (2018),Drama +196083,Lone Star State of Mind (2002),Comedy|Crime +196085,Dara Ó Briain: Craic Dealer (2012),Comedy +196087,Burn the Stage: The Movie (2018),Documentary +196089,Guilty or Innocent: The Sam Sheppard Murder Case (1975),(no genres listed) +196091,Children of the Sun (2007),Documentary +196093,Time Jumpers (2018),Action|Drama|Sci-Fi +196095,Swiped (2018),Comedy|Drama +196097,The Zen Diaries of Garry Shandling: Parts 1 & 2,Comedy|Documentary +196101,Alone We Fight (2018),War +196103,Crested Ibis (2017),Drama +196105,Wolfgang A. Mozart (1994),(no genres listed) +196107,A Chance of Snow (1998),(no genres listed) +196111,14 Cameras (2018),Horror|Thriller +196113,Kursk (2018),Drama +196115,Prosecuting Evil: The Extraordinary World of Ben Ferencz (2018),Documentary +196117,Clara (2018),Sci-Fi +196119,Tristan (2003),Thriller +196121,Hotel by the River (2018),Drama +196123,The Neighborhood (2017),Drama +196125,The Shelter (2015),Drama|Horror|Thriller +196127,Sound It Out (2011),Documentary +196129,Helen Keller vs. Nightwolves (2015),Action|Comedy|Horror +196131,Jake Squared (2014),Comedy|Drama +196135,Behind the Clouds (2016),(no genres listed) +196137,Brillantissime (2018),Comedy +196139,Anna to the Infinite Power (1983),(no genres listed) +196141,The Tolstoy Defence (2018),Drama +196143,Key (2011),(no genres listed) +196145,Jordan (2010),(no genres listed) +196147,Let's Not Meet (2018),Horror +196149,The Sleeping Room (2014),Horror +196153,Urusei Yatsura: Only You (1983),Animation +196155,Urusei Yatsura 3: Remember My Love (1985),Animation|Comedy|Fantasy|Sci-Fi +196157,Urusei Yatsura 4: Lum the Forever (1986),Animation|Comedy|Fantasy|Sci-Fi +196159,Urusei Yatsura: The Final Chapter (1988),Action|Adventure|Animation|Comedy +196161,Urusei Yatsura: Always My Darling (1991),Action|Adventure|Animation|Comedy +196163,March's Child (1958),Comedy +196165,Late Summer Blues (1987),Drama|Romance +196167,Eastern Condors (1987),Action|War +196169,Tiger on the Beat (1988),Action|Comedy|Crime +196171,Prison on Fire (1987),Crime|Thriller +196173,The Bride with White Hair 2 (1993),Action|Fantasy +196175,Welcome to Marwen (2018),Animation|Comedy|Drama|Fantasy +196181,The Wacky Wabbit (1942),Animation|Children|Comedy +196183,None Shall Escape (1944),Drama|War +196185,Hell's Ground (2007),Action|Adventure|Horror|Sci-Fi +196187,The Halfway House (1944),Drama|Fantasy|Mystery +196191,Nothing to Hide (2018),Comedy|Drama +196195,Twice Dead (1988),Horror +196197,Cancer is Curable NOW (2011),Documentary +196199,Wolfhound of the Grey Dog Clan (2006),Fantasy +196201,Девочки,(no genres listed) +196203,1210 (2012),Drama +196205,HERRliche Zeiten (2018),Comedy +196209,Icebox (2018),Drama +196211,Guard Dog (2004),Animation +196213,Guide Dog (2006),Animation|Comedy +196215,Rabbit's Feat (1960),Animation|Children|Comedy +196217,Porky's Bear Facts (1941),Animation|Comedy +196219,The Hell with Heroes (1968),Drama +196223,Hellboy (2019),Action|Adventure|Fantasy +196225,Talking Head (1992),Drama|Romance +196227,The Horde (2012),Drama +196229,Full of Grace (2015),Drama +196231,Dark Figure of Crime (2018),Crime|Drama|Thriller +196233,Inuyashiki (2018),Action +196235,The Golden Mean (2010),Adventure +196237,Aziris Nuna (2006),Adventure|Children|Sci-Fi +196239,The American Meme (2018),Documentary +196241,The Adventures of Young Indiana Jones: Adventures in the Secret Service (1999),Action|Adventure|Drama +196243,ReMastered: Tricky Dick & The Man in Black (2018),Documentary +196245,The Calligrapher (1991),Animation +196247,Assault Girls (2009),Action|Sci-Fi +196249,Brotherhood of Blades II: The Infernal Battlefield (2017),Action|Romance +196251,Laplace's Witch (2018),Drama|Mystery|Thriller +196255,Searching for Ingmar Bergman (2018),Documentary +196257,You Might Be the Killer (2018),Comedy|Horror +196259,The Power of the Witch: Real or Imaginary? (1971),Documentary +196261,Why Wouldn't We Send... a Messenger? (1998),Adventure|Comedy|Drama +196263,Made in USSR (1981),Drama +196265,"You Are a Widow, Sir (1971)",Comedy|Sci-Fi +196267,The Trouble with You (2018),Comedy +196269,Cats Don't Have Verigo (2014),Comedy|Drama +196271,Jaime (1999),Drama +196273,O Leão da Estrela (2015),Comedy +196275,Lisbon Song (2016),Comedy|Romance +196277,Embargo (2010),Comedy|Drama +196281,Sem Sombra de Pecado (1983),Drama +196283,Ice (2016),Drama|Fantasy|Romance +196285,Captain Falcon (2015),Comedy +196287,The Face You Deserve (2005),Comedy|Fantasy +196289,Lá Fora (2004),Drama +196291,Perdidos (2017),Adventure|Drama|Thriller +196293,The Looming Storm (2017),Crime|Mystery|Thriller +196295,Fucking Bunnies (2017),Comedy +196297,Dolphins (2018),Children|Documentary +196301,Vares - The Sheriff (2015),Crime +196303,Peshavarskiy vals,(no genres listed) +196305,The Role (2013),Drama +196307,Flight of the Conchords: Live in London (2018),Comedy +196309,4 Days in May (2011),Drama|War +196311,Twilight Portrait (2011),Drama +196313,Truce (2010),Drama +196315,Heroes of the East (1978),Action +196317,The Heroic Trio (1993),Action|Fantasy|Sci-Fi +196319,The Invisibles (2017),Documentary|Drama +196321,Nazi Overlord (2018),Action|Horror|Mystery +196325,The Burglar (1987),(no genres listed) +196327,Bunch of Five (1998),Crime|Drama +196329,Sons of Norway (2011),Drama +196331,Eyewitness (1956),(no genres listed) +196333,Destination Earth (1956),Animation +196335,The Day Time Ended (1980),Sci-Fi|Thriller +196337,Courier X (2016),Drama +196339,Sabrina (2018),Horror +196341,Second Act (2018),Comedy|Romance +196343,Amazing Grace (2018),Documentary +196345,Jonestown: Terror in the Jungle (2018),Documentary|Drama +196347,The Sacred Science (2011),Adventure|Documentary|Drama +196349,Memorias de un hombre en pijama (2018),Animation +196351,Разжалованный (2009),Drama|War +196353,Crush (2009),Romance|Thriller +196357,The Song of Sway Lake (2017),Drama +196359,Ana Maria in Novela Land (2015),Comedy|Drama|Fantasy|Romance +196363,The Pink Cloud Syndrome (2018),Drama +196365,Battle (2018),Drama|Romance +196367,Walt: The Man Behind the Myth (2001),Documentary +196369,Pixie Hollow Games (2011),Animation|Children +196371,A German Youth (2015),Documentary +196373,The Appearance (2018),Horror|Thriller +196375,The Dream Lady (1918),Mystery +196377,Robinson Crusoe (2003),Adventure|Children|Drama +196379,Hypnotized and Hysterical (Hairstylist Wanted) (2002),Comedy +196381,Leprechaun Returns (2018),Comedy|Fantasy|Horror +196383,Where's Firuze? (2004),Comedy|Drama +196385,Propaganda (1999),Comedy|Drama|Romance +196387,New Battles Without Honor and Humanity 1 (1974),Action|Crime|Drama +196389,The Warrior's Brother (2002),Adventure|Drama +196391,Жёлтый карлик (2002),(no genres listed) +196393,Pilots Scientific Section (1996),Mystery|Thriller +196395,Big Brother (2018),Action|Drama +196397,The Interpreter (2018),Comedy|Drama +196399,When Jeff Tried to Save The World (2018),Comedy|Drama +196401,Why Hide? (2018),Comedy|Horror +196403,Dennis Hopper: Uneasy Rider (2016),Documentary +196405,No Sleep 'Til Christmas (2018),Comedy|Romance +196407,The Emperor of Paris (2018),Action|Crime|Thriller +196409,To My Great Chagrin (2007),Documentary +196411,Darken (2017),Fantasy|Sci-Fi +196413,Street (2015),Action +196415,Backwater (2013),(no genres listed) +196417,How to Train Your Dragon: The Hidden World (2019),Adventure|Animation|Children +196419,Tillie and Gus (1933),(no genres listed) +196421,The Bouncer (2018),Action|Drama +196423,Commediasexi (2006),Comedy +196425,"Club de Cuervos Presents: I, Potro (2018)",Comedy +196427,The Party's Just Beginning (2018),Comedy|Drama +196429,The Betrothed (1941),Drama +196431,Cumali Ceber: Allah Seni Alsin (2017),(no genres listed) +196433,Luciferina (2018),Horror|Mystery +196435,Nasreddin in Bukhara (1943),Comedy|Romance +196437,Bob Lazar: Area 51 and Flying Saucers (2018),Documentary +196439,"How to Drown Dr. Mracek, the Lawyer (1975)",Children|Comedy +196441,The Broken Key (2017),Sci-Fi|Thriller +196443,Matthew Bourne's Swan Lake (2012),Drama +196445,Island of Rusty General (1988),Children|Sci-Fi +196447,Wolf's Hole (1987),Adventure|Drama|Horror +196449,The ROH Live: Swan Lake (2009),(no genres listed) +196451,A Bride for Henry (1937),Comedy +196453,Муми-дол: Всё дело в шляпе (1980),Animation +196455,Moomintroll and the Comet (1978),Animation|Children +196457,"Tomorrow, on April 3rd... (1969)",Children|Drama +196459,I Loved You... (1967),Children|Comedy|Romance +196461,Once Upon a Girl (1944),Children|Drama|War +196463,Missing Mom (2016),Documentary +196465,The Terry Kath Experience (2016),Documentary +196467,"Moscow, I Love You! (2010)",Comedy|Romance +196469,"Ужас, который всегда с тобой (2007)",(no genres listed) +196471,Przyjecie na 10 osob plus 3,(no genres listed) +196473,Confessions of a Hitman (1994),Crime|Drama +196475,Frameup (1993),Crime|Drama|Romance +196477,The Interview (1997),(no genres listed) +196479,Wildwitch (2018),Adventure|Children|Fantasy|Sci-Fi +196481,Mercenary (2005),Animation|Drama|Thriller +196483,Gypsy: Live from the Savoy Theatre (2015),Comedy|Drama +196485,12 Citizens (2014),Crime|Drama +196487,Reign of the Supermen (2019),Action|Animation|Sci-Fi +196489,Survival Knife (2016),Horror|Thriller +196491,Asterix: The Magic Potion ’s Secret (2018),Animation +196493,Vampires of Geona (1991),Animation|Sci-Fi +196495,Leningrad. November (1990),Drama +196497,Temptation of B. (1991),Drama|Sci-Fi +196499,Земляничный дождик (1990),Animation +196501,The Guard (1990),Drama +196503,Astral (2018),Drama|Sci-Fi|Thriller +196505,Charlie and Hannah's Grand Night Out (2017),Comedy +196507,"Finest, the Brave Falcon (1975)",Children|Fantasy +196509,The Kidnapping of a Wizard (1989),Sci-Fi +196511,Springsteen On Broadway (2018),(no genres listed) +196513,The Seven Brides of Lance-Corporal Zbruyev (1970),Comedy|Romance +196515,The Master of Taiga (1968),Crime|Drama|Mystery +196517,To Love (1968),Drama|Romance +196519,A Winter Morning (1967),Children|Drama|War +196521,The Man from Nowhere (1961),Comedy|Fantasy +196523,Scarlet Sails (1961),Drama|Fantasy|Romance +196525,Tiger Girl (1954),Action|Comedy|Romance +196527,Those Who Are Fine (2017),Drama +196529,Arlo and Julie (2014),Comedy +196531,After Everything (2018),Comedy|Drama|Romance +196533,Dreams (1993),Comedy|Fantasy +196535,Bolero (1993),(no genres listed) +196537,Here There Be Tygers (1989),(no genres listed) +196539,Contract (1985),Animation|Sci-Fi +196541,Makar - Pathfinder (1984),Adventure|Children +196543,Илья Муромец и Соловей Разбойник (1978),Animation +196545,The Bronze Bird (1974),Adventure|Children +196547,The Deerslayer (1990),Action|Adventure|Western +196549,Making Babies (2018),Comedy +196551,Raising Flagg (2006),Comedy|Drama +196553,Ikar and Sages (1976),Animation +196555,The Arrows of Robin Hood (1976),Adventure +196557,Adventures of Mowgli: Return to Mankind (1971),Adventure|Animation|Children +196559,Adventures of Mowgli: Akela's Last Hunt (1969),Adventure|Animation|Children +196561,Adventures of Mowgli: The Fight (1970),Adventure|Animation|Children +196565,Clara's Ghost (2018),Children|Comedy|Drama|Thriller +196567,Wild Rose (2019),Comedy|Drama +196569,Miss Me This Christmas (2017),Comedy +196573,College Boys Live (2009),Documentary +196575,Step Up to the Plate (2012),Documentary +196577,Annie Leibovitz: Life Through a Lens (2007),Documentary +196579,Honor Flight (2012),Documentary +196583,Oma & Bella (2012),(no genres listed) +196585,Lost and Found in Armenia (2012),Comedy +196587,Sophia Grace & Rosie's Royal Adventure (2014),Adventure|Children|Comedy +196589,We Love Paleo (2016),Documentary +196591,A Matter of Taste: Serving Up Paul Liebrandt (2011),Documentary +196593,Ouroboros (2017),(no genres listed) +196597,Nobody's Fool (2018),Comedy +196599,The Red Stallion (1947),Western +196601,Tactical Guerrilla (1974),Drama|Thriller|War +196603,Mother Ghost (2002),Comedy|Drama +196607,Genesis: A History (1991),(no genres listed) +196609,Bigfoot The Movie (2015),Comedy|Horror +196611,Ellen DeGeneres: Relatable (2018),Comedy +196613,Party Central (2014),Animation|Children|Comedy|Fantasy +196615,Absentees (1996),Drama +196617,Three Friends (1958),Drama|Romance +196619,Shrek Retold (2018),Adventure|Animation|Comedy|Fantasy +196621,Bloody Ballet (2018),Horror +196627,Malicious (2018),Horror|Thriller +196629,I am Vengeance (2018),Action +196631,Red Is the Color of (2007),Comedy|Drama|Romance +196635,Santo vs. the Diabolical Hatchet (1965),Action +196637,The Breakup Girl (2015),Comedy|Drama +196639,Blind Spot (2018),Drama +196641,Young and Alive (2018),(no genres listed) +196645,Path of Blood (2013),Action|Adventure|Animation +196647,One in a Billion (2016),Documentary +196651,Women Who Passed My Way (2018),Comedy +196653,Street Racer (2008),Action|Crime +196655,Hostage to the Devil (2016),Documentary|Horror|Mystery +196659,Dance of the Dead (2005),Horror|Sci-Fi +196661,Speak of the Devil (1995),Documentary +196665,Incident On and Off a Mountain Road (2005),Horror +196667,Nightshift (2018),Horror +196671,Entrepreneur (2018),Documentary +196675,Why Are We Creative? The Centipede's Dilemma (2018),(no genres listed) +196677,It Came Upon the Midnight Clear (1984),Drama +196679,Shallow Ground (2005),Horror +196681,Keep in Touch (2015),Comedy|Drama|Romance +196683,Pet Shop (1995),Children|Comedy|Sci-Fi +196685,Submerged (2000),(no genres listed) +196687,Air Strike (2004),Action|Adventure|Thriller|War +196689,Pick Me Up (2006),Horror +196691,Rabarber (2014),Children|Drama +196693,Dragons: Dawn Of The Dragon Racers (2014),Adventure|Animation|Children|Comedy|Fantasy +196695,All the Creatures Were Stirring (2018),Horror +196697,Eye in the Labyrinth (1972),Horror|Thriller +196699,The Trouble with Spies (1987),Comedy +196701,Tiger Girl (2017),Action +196703,Molly (2017),Action|Sci-Fi +196705,Karwaan (2018),Adventure|Comedy +196707,Badhaai Ho (2018),Comedy|Drama|Romance +196709,Welcome 2 Karachi (2015),Comedy +196715,Two Balloons (2017),Animation +196717,Bernard and the Genie (1991),Comedy|Drama|Fantasy +196719,An American Christmas Carol (1979),Children|Drama +196721,Flemish Heaven (2016),Drama +196723,Husband of His Wife (1961),Comedy +196725,My Santa (2013),Children|Fantasy|Romance +196727,Marry Me at Christmas (2017),Romance +196729,A Christmas Carol (1954),Children +196733,The Cabin (2018),Thriller +196737,My Effortless Brilliance (2008),Comedy|Drama +196739,If There's a Hell Below (2016),Drama|Mystery|Thriller +196741,Visions of Sugarplums (2001),Comedy|Drama +196743,Hello Mr. Billionaire (2018),Comedy +196745,The Island (2018),Comedy|Drama|Mystery +196747,Where Is the Third King? (1966),Crime|Mystery +196751,Age of Sail (2018),Animation +196753,A Flintstone Family Christmas (1993),(no genres listed) +196755,A Flintstone Christmas (1977),Animation|Children|Comedy +196757,My Dead Dad's Porno Tapes (2018),Documentary +196759,The Book of Stone (1969),Drama|Fantasy|Horror|Thriller +196761,Highway (2002),Action|Adventure|Drama +196767,"No Pay, Nudity (2016)",Comedy|Drama +196769,Incident by a Bank (2009),Crime +196771,A Holy Mess (2015),Comedy|Drama +196773,Der Vorname (2018),Comedy +196775,Christmas Getaway (2017),Romance +196777,The Christmas Contract (2018),Romance +196779,Undercover Christmas (2003),(no genres listed) +196781,Friesennot (1935),Drama +196783,G.P.U. (1942),Drama +196785,Lasso (2018),Horror|Thriller +196787,The Law and the Fist (1964),Drama|War +196793,Ghostbox Cowboy (2018),Comedy|Drama +196795,Don Camillo's Last Round (1955),Comedy +196799,To Want to Fly (1991),Comedy|Fantasy +196801,"Ruben Brandt, Collector (2018)",Action|Animation|Thriller +196803,Hired to Kill (1990),Action|Thriller +196805,Close Range Love (2014),Drama|Romance +196807,Love for Beginners (2012),Comedy|Romance +196809,Strobe Edge (2015),Drama|Romance +196811,The Hillside Strangler (2004),Drama|Horror|Mystery|Thriller +196813,Killer Diller (2004),Drama +196815,High Tide (1987),Drama +196821,High Noon (2000),Action|Drama|Western +196823,Velaikkaran (2017),Action|Drama|Thriller +196825,Working Tra$h (1990),Comedy +196827,Everything's Gone Green (2006),Comedy +196829,Witness Protection (1999),Crime|Drama +196831,"On the Other Hand, Death (2008)",Crime|Drama|Mystery|Thriller +196833,Cradle to Grave,Documentary +196835,Violent Shit (1989),Horror +196837,Joulukuusivarkaat (2009),Drama +196839,Involution (2018),Drama|Sci-Fi|Thriller +196841,Monte Walsh (1970),Western +196845,Journey to the Christmas Star (2012),Adventure|Children|Fantasy +196847,Alien Predator (2018),Action|Sci-Fi +196849,Moschettieri del Re (2018),(no genres listed) +196851,A Christmas Tree Miracle (2013),Children|Drama +196853,Ewa Wants to Sleep (1958),Comedy +196855,Christmas All Over Again (2016),Children|Comedy +196857,Bolshe vita (1996),(no genres listed) +196859,Only the Dead Can Answer (1969),Crime +196861,Putin's Witnesses (2018),(no genres listed) +196863,Dealt (2017),Documentary +196865,Stomp the Yard 2: Homecoming (2010),Drama +196867,Guys & Balls (2004),Comedy|Romance +196869,Third Man Out (2005),Action|Crime|Drama|Mystery|Thriller +196871,Shock to the System (2006),Crime|Drama|Mystery|Thriller +196877,Repeat Performance (1947),Drama|Mystery +196879,War of the Worlds the True Story (2012),Action|Horror|Sci-Fi +196883,Somm 3 (2018),Documentary +196885,Sportowiec mimo woli (1940),Comedy +196887,What Men Want (2019),Comedy|Fantasy|Romance +196889,Glass (2019),Drama|Horror|Mystery|Sci-Fi|Thriller +196891,The Lego Movie 2: The Second Part (2019),Action|Adventure|Animation|Children|Comedy +196893,Cold Pursuit (2019),Action|Drama|Thriller +196895,Serenity (2019),Drama|Thriller +196897,Christmas Crush (2012),Comedy|Drama +196899,Tortured for Christ (2018),Children|Documentary +196901,I Am Paul Walker (2018),Documentary +196903,Angela's Christmas (2018),Animation|Children +196905,Cannibals and Carpet Fitters (2017),Comedy|Horror +196907,Amityville Death House (2015),Horror +196909,Amityville: Vanishing Point (2016),Horror +196911,Amityville: No Escape (2016),Horror +196913,Death by Invitation (1971),Horror +196915,Thin (2006),Documentary +196917,Ice Blues (2008),Crime|Drama|Mystery|Thriller +196919,Pulse 3 (2008),Horror|Thriller +196921,Alien Boy: The Life and Death of James Chasse (2013),Documentary +196925,The Whore's Son (2004),Drama +196929,H.G. Wells' The War of the Worlds (2005),Sci-Fi|Thriller +196931,The Biggest Little Farm (2018),Documentary +196933,The Other Side of Everything (2017),Documentary +196935,"Take the Ball, Pass the Ball (2018)",Documentary +196937,Dragon Ball Super: Broly (2018),Action|Animation|Sci-Fi +196939,The Human Part (2018),Comedy|Drama +196943,The Bachelor 3 (2018),Action +196945,And Breathe Normally (2018),Drama +196947,A Moment in the Reeds (2018),Drama|Romance +196949,Retablo (2018),Drama +196951,Tucked (2018),Comedy|Drama +196953,Anchor and Hope (2017),Comedy|Drama|Romance +196957,Stronger Than The World: The Story of José Aldo (2016),Drama +196959,I Am JFK Jr. (2016),(no genres listed) +196961,50 Ways of Saying Fabulous (2005),Drama +196963,Camp Slaughter (2005),Comedy|Horror +196965,Fate/Stay Night: Unlimited Blade Works (2010),Action|Animation|Fantasy +196967,"Hello, It's Me! (1966)",Drama|Romance +196969,Master Z: Ip Man Legacy (2018),Action +196971,Vele hemels boven de zevende (2017),Drama +196973,The Shivering Truth (2018),Animation|Comedy +196975,Sky Hunter (2017),Action|Drama|War +196979,Andover (2018),Comedy|Romance|Sci-Fi +196981,American Umpire (2016),Documentary +196983,Hello Gangster (2016),Action|Comedy|Crime +196985,Classical Period (2018),Drama +196987,Far from the Tree (2017),Documentary +196989,First Period (2013),Comedy +196991,The Wonder Year (2011),Documentary +196995,The Wayman Tisdale Story (2011),(no genres listed) +196997,Black Mirror: Bandersnatch (2018),Drama|Mystery|Sci-Fi|Thriller +196999,The Granny (1995),Horror +197001,50 Ways to Leave Your Lover (2004),Comedy|Romance +197003,"The Last Cartridge, an Incident of the Sepoy Rebellion in India (1908)",Drama +197005,Bewitched (1981),Comedy|Fantasy|Horror|Romance|Sci-Fi +197007,Night Out (2018),Comedy +197009,Struggle: The Life and Lost Art of Szukalski (2018),Documentary +197011,Grass (2018),Drama +197013,"One Nation, One King (2018)",Drama +197015,Pool Party Massacre (2017),Horror +197017,Looping (2016),Drama +197019,Derren Brown: Pushed to the Edge (2016),Documentary +197023,Death of a Tea Master (1989),Drama +197025,The Skull (1965),Horror|Thriller +197027,Nowhere Mind (2018),Thriller +197029,Freak Show (2018),Comedy|Drama +197031,The Shanty Where Santy Claus Lives (1933),Animation|Children|Comedy|Fantasy +197033,Blood Is Blood (2016),(no genres listed) +197035,Alien Rising (2013),Action|Sci-Fi|Thriller +197037,Fidaa (2017),Comedy|Drama|Romance +197039,Arif V 216 (2018),Adventure|Comedy|Sci-Fi +197041,Double King (2017),Animation +197043,Blind Malice (2014),Thriller +197045,Dealer/Healer (2017),Action|Drama +197047,F.R.E.D.I. (2018),Adventure|Children|Sci-Fi +197049,After the Screaming Stops (2018),Documentary +197051,Mysterious Island of Beautiful Women (1979),(no genres listed) +197053,Hard Women (1970),(no genres listed) +197063,Savage (1996),Action +197065,Big in Bollywood (2011),(no genres listed) +197067,At First Light (2018),Drama|Sci-Fi|Thriller +197069,The 100 Years Show (2015),(no genres listed) +197071,Bad Seeds (2018),Comedy +197073,Bees Make Honey (2018),Comedy|Drama|Mystery|Romance +197075,Kadaikutty Singam (2018),Action|Children|Comedy|Romance +197077,One Week Friends (2017),Drama|Romance +197079,Killing (2018),Action|Drama +197081,BÚÉK,Comedy|Drama +197083,Imprisoned (2015),Drama +197085,Ladies First (2017),Documentary +197087,Daughter of Mine (2018),Drama +197089,The Story of Bohemian Rhapsody (2004),Documentary +197091,How to Be Really Bad (2018),Comedy +197093,Ragged Life of Juice Leskinen (2018),Drama +197095,From Other Worlds (2004),Comedy|Sci-Fi +197097,The Ghost of Sierra de Cobre (1964),Horror|Thriller +197101,B.C. Butcher (2016),(no genres listed) +197103,Be with You (2018),Drama|Romance +197105,Vechera na khutore bliz Dikanki (2001),Children +197109,Moulin Rouge (1928),Drama +197111,Psychonautics: A Comic's Exploration of Psychedelics (2018),(no genres listed) +197113,Сверчок за очагом (2001),(no genres listed) +197117,The Bill Murray Stories: Life Lessons Learned from a Mythical Man (2018),Documentary +197119,Jinn (2018),Drama +197121,Igelak (Frogs) (2016),Comedy +197123,Taylor Swift: Reputation Stadium Tour (2018),Documentary +197125,Aquaman (2006),Action|Adventure +197127,Nota (2018),Action|Romance +197129,Kaala (2018),Action|Drama +197131,Humidity (2016),Drama|Mystery +197133,Hospitality (2018),Thriller +197135,Old Man,(no genres listed) +197137,The Disobedient (2014),Drama +197139,Love in Thoughts (2004),Drama +197141,The Standoff at Sparrow Creek (2019),Drama|Mystery|Thriller +197143,Donnybrook (2019),Drama +197145,The Lost Strait (2018),War +197147,Israfil (2017),Children|Drama +197149,Aba Jan (2017),Children|Drama +197151,Istanbul Junction (2018),Action|Drama +197153,Delam Mikhad (2018),Comedy +197155,Emkane Mina (2016),Drama|Romance +197157,Standing in the Dust (2016),Drama|War +197159,Intimate Strangers (2018),Comedy|Drama +197161,A Requiem For Bobby Fischer (2010),(no genres listed) +197167,Losing Control (2012),Comedy|Romance +197169,The Perfect You (2002),Comedy|Romance +197173,Away (2016),Drama +197175,Alita: Battle Angel (2019),Action|Romance|Sci-Fi|Thriller +197177,Richard Says Goodbye (2018),(no genres listed) +197179,Chaos Walking (2019),Sci-Fi +197181,The Council of Birds (2014),(no genres listed) +197183,Still Life (2014),Thriller +197185,Cocaine Wars (1985),Action|Drama +197187,A Christmas for the Books (2018),Romance +197189,The Cult of JT LeRoy (2014),Documentary +197191,An Impossible Love (2018),Drama +197195,Miss Bala (2019),Action|Drama|Thriller +197197,The Report (2019),Drama +197199,Isn't It Romantic (2019),Comedy|Fantasy|Romance +197201,Fighting with My Family (2019),Comedy|Drama +197203,Triple Frontier (2019),Crime|Thriller +197205,Ashes in the Snow (2018),Drama|Romance +197207,Arctic (2018),Drama|Thriller +197209,The Last Laugh (2019),Comedy +197211,Manhattan Undying (2016),Drama|Mystery|Romance +197215,Alternate Realities (2015),Drama|Sci-Fi|Thriller +197217,The Chosen Ones (2015),Drama +197219,Crazy Wedding (2018),Comedy +197221,L'Animale (2018),Drama +197223,Jake Speed (1986),Action|Comedy|Thriller +197225,T-34 (2018),Adventure|Drama|War +197227,The Gilligan Manifesto (2018),Documentary +197231,The Harrow (2016),Crime|Drama|Mystery|Romance|Thriller +197235,Confessions of the Boston Strangler (2014),Crime|Documentary +197237,"Real Killer, Fake Nose: Richard Fleischer's 'The Boston Strangler' Remembered (2013)",Documentary +197239,Combat Academy (1986),Comedy +197241,Let There Be Light: The Odyssey of Dark Star (2010),Documentary|Sci-Fi +197243,Railway Romance (2003),Drama|Romance +197245,Who Will Save The Roses? (2017),(no genres listed) +197247,Bravo Virtuoso (2018),Action|Comedy|Crime +197249,Barça Dreams (2015),Documentary +197251,The Number on Great-Grandpa's Arm (2018),Documentary +197253,Diana and I (2017),Drama +197255,Octav (2017),Drama +197257,Love at Sea (2018),Romance +197259,Waterboys (2016),Comedy|Drama +197261,Her Sketchbook (2017),(no genres listed) +197263,Dance Baby Dance (2018),Drama +197265,Couch Potatoes (2017),Comedy +197267,Cuibul de viespi (1987),Comedy|Romance +197269,With You The World Is Fun (1982),Children|Comedy +197271,Threesome (2017),Comedy +197273,Ghost Patrol (2016),Animation|Children +197275,5 Star Christmas (2018),Comedy +197277,Bilby (2019),Animation|Children|Comedy +197279,Bird Karma (2018),(no genres listed) +197281,Lost & Found (2018),Animation +197283,Late Afternoon (2018),(no genres listed) +197285,One Song a Day Takes Mischief Away (1970),Comedy|Drama +197287,Miss Baek (2018),Crime|Drama|Thriller +197289,Meteo (1990),Drama|Mystery|Sci-Fi +197295,L'amour est une fête (2018),Comedy +197297,The Lockpicker (2018),Drama +197299,Detective Downs (2013),Comedy|Crime +197301,The Soul Conductor (2018),Horror|Thriller +197303,Gamera 3: Revenge of Iris (1999),Fantasy|Horror|Sci-Fi +197305,Maddman: The Steve Madden Story (2017),Documentary +197307,The Lion Woman (2017),Drama +197309,Stripped to Kill (1987),Crime|Drama +197311,"Into the Dark: New Year, New You (2018)",Drama|Horror +197313,A Geisha (1953),Drama +197315,Two Monks (1934),Drama|Mystery|Romance +197317,Moromete Family: On the Edge of Time (2018),Drama +197321,One Step Behind the Seraphim (2017),Drama +197325,Lemonade (2018),Drama +197327,Infinite Football (2018),Documentary +197329,Alice T. (2018),Drama +197331,XTC: This Is Pop (2017),Documentary +197333,Celebration (2019),Comedy +197335,Where God Left His Shoes (2008),Drama +197337,Cape of Good Hope (2004),Comedy|Drama|Romance +197343,Escape Room (2019),Action|Horror|Thriller +197349,Sing My Life (2016),Comedy|Drama|Fantasy +197351,The Last Hangover (2018),Comedy +197353,Time Burst: The Final Alliance (1989),Action|Fantasy|Horror|Sci-Fi +197355,Once Upon a Ladder (2016),Comedy|Romance +197357,Near Death Experience (2014),Drama +197359,The Witches Cave (1989),Adventure|Fantasy|Romance|Sci-Fi +197363,Open My Eyes (2014),(no genres listed) +197365,Lionheart (2018),Drama +197367,State Like Sleep (2019),Drama +197369,Golden Shoes (2015),Children +197371,Witnesses (2003),Drama|War +197373,Liyana (2018),Animation|Documentary +197377,Tenacious D: Post-Apocalypto (2018),Comedy +197379,Don't Hug Me I'm Scared 6 (2016),Animation|Horror +197381,Iravukku Aayiram Kangal (2018),Action|Crime|Thriller +197383,A Real Vermeer (2016),Drama|Romance +197385,Drama (2018),Comedy +197387,Tower of London (1939),Drama +197389,Rust Creek (2019),Drama|Thriller +197393,The Take Down (2017),Action +197395,Grandpa Walrus (2017),Animation|Drama +197397,Weekends (2017),Animation|Drama +197399,Agenda: Payback (2018),Action|Crime|Drama +197403,My Fairy Tail Love Story (2018),Fantasy|Romance +197405,The Haunted Hotel (1906),Horror +197407,Suite Dreams (2006),Comedy|Drama|Romance +197409,Please Accuse Klava K. of My Death (1979),Children|Drama|Romance +197411,All Is True (2018),Drama +197413,The Science Of Fasting (2013),Documentary +197415,All About Nina (2018),Comedy|Drama +197417,48 Christmas Wishes (2017),(no genres listed) +197419,The Vanishing (2018),Drama|Thriller +197423,Klippers (2018),Action|Drama|Thriller +197425,Operator (2015),Drama +197427,Stressed (2019),Documentary +197429,Pinoy Sunday (2009),Comedy|Drama +197431,Shiro and Marilyn (1988),(no genres listed) +197433,Temporary Difficulties (2018),Drama +197435,Amateurs (2018),Comedy +197439,The Great St. Louis Bank Robbery (1959),Crime|Thriller +197441,A Man Called Jon (2015),Drama +197443,American Hangman (2019),Thriller +197449,Tea Pets (2017),Adventure|Animation|Children +197453,303 (2018),Drama +197455,Meatball Machine Kodoku (2018),Horror|Sci-Fi +197457,The Wind in the Willows (2006),Children|Drama +197463,The Blue Bird (1976),Adventure|Children|Drama|Fantasy +197465,Cleopatra (1970),Animation|Comedy|Fantasy|Sci-Fi +197467,A Connecticut Yankee in King Arthur's Court (1970),(no genres listed) +197469,Lift (2016),(no genres listed) +197471,Journey Back to Oz (1974),Animation|Children|Fantasy +197473,Marco Polo Junior Versus the Red Dragon (1972),Animation +197475,Mazinger Z vs. Devilman (1973),Action|Adventure|Animation +197477,Mazinger Z vs The Great Dark General (1974),Action|Adventure|Animation +197481,Black Lizard (1981),Action|Drama +197483,Captain Nemo (1975),Action|Adventure|Sci-Fi +197485,The Car: Road to Revenge (2019),Action|Horror|Thriller +197489,3/4 (2017),Drama +197491,Brexit: The Uncivil War (2019),Drama +197493,"Spirits of the Air, Gremlins of the Clouds (1989)",Adventure|Sci-Fi +197495,MARS: Inside SpaceX (2018),Documentary +197497,Follow The River (1995),Action|Drama +197499,The Sixth Sense (1929),Drama +197501,El misterio de la Puerta del Sol (1929),(no genres listed) +197505,Chaplin in Bali (2017),Documentary +197507,He Knows Your Every Move (2018),(no genres listed) +197509,One Last Deal (2019),Drama +197513,The Quatermass Experiment (2005),Drama|Sci-Fi|Thriller +197515,The Messenger (2015),Drama|Horror|Mystery +197517,Stubborn (2015),Comedy|Drama|Romance +197523,Summer '03 (2018),Comedy +197525,American Dream/American Knightmare (2018),Documentary +197527,The Song of the Siren (1994),Comedy|Romance +197529,The Upside (2019),Comedy|Drama +197531,Webcast (2018),Horror|Thriller +197533,Leonor (1975),Drama|Fantasy|Horror +197537,Velvet Buzzsaw (2019),Crime|Drama|Horror|Mystery|Thriller +197539,Wheely (2018),Adventure|Animation|Children|Comedy +197541,Atlantis (1913),Drama +197547,The Farm (2018),Horror|Mystery|Thriller +197549,"My Tomorrow, Your Yesterday (2016)",Drama|Romance +197551,Mail Order Monster (2018),Children|Drama|Sci-Fi +197553,Buffalo Boys (2018),Action|Drama|Western +197557,Simmba (2018),Action|Comedy|Drama +197559,Façades (2017),Drama +197561,When Things Happen (2007),(no genres listed) +197563,Los caifanes (1967),Comedy|Drama +197565,Fanged Up (2017),Comedy|Horror +197567,The Term. Beginning of a Big Story (2014),Documentary +197569,Chained Girls (1965),Documentary +197571,Knifer (2010),Drama +197573,Village Rockstars (2018),Drama +197575,Thugs of Hindostan (2018),Action|Adventure +197577,Megalodon (2018),Action|Horror|Sci-Fi +197579,Pledge (2019),Horror|Thriller +197583,Heartland (1979),Action|Drama|Romance +197585,Psychopaths (2017),Horror +197587,Scarred But Smarter: Life N Times of Drivin N Cryin,(no genres listed) +197589,Once Upon a Time... (2013),(no genres listed) +197591,A Dog's Way Home (2019),Children|Drama +197593,Elephants Can Play Football (2018),Drama|Romance +197595,Pitbull: Last Dog (2018),Action|Crime|Drama|Thriller +197597,K.G.F: Chapter 1 (2018),Action +197599,Zero (2018),Comedy|Drama|Romance +197601,Baazaar (2018),Crime|Drama|Thriller +197603,Belmonte (2018),Drama +197605,The Dead Center (2018),Thriller +197607,Blanka (2015),Drama +197611,Henchmen (2018),Animation +197613,All the Devil's Men (2018),Action +197615,Santa Jaws (2018),Action|Comedy|Fantasy +197617,The Troubleshooter (2018),Comedy +197619,Hot Rod (1950),Action|Drama +197621,Pit Stop (1969),Action|Drama +197623,Curmudgeons (2016),Comedy +197625,Ajin: Demi-Human (2017),Action|Horror|Mystery +197627,Haunted Summer (1988),Drama|Romance +197629,Lifeboat (2018),Documentary +197631,Out of Print (2013),(no genres listed) +197633,Even Stilte (1963),(no genres listed) +197635,The Blind Child (1964),Documentary +197637,Beppie (1965),Documentary +197639,Blind Child 2 (1966),(no genres listed) +197643,Big Ben: Ben Webster in Europe (1967),Documentary +197645,Sunday in Peking (1956),Documentary +197647,Polina,(no genres listed) +197649,Hanover Street (1979),Drama|Romance|War +197651,The King,Drama +197657,Happy Hour (2015),Drama +197659,Apocalypse After (2018),(no genres listed) +197661,Fear Level (2018),Horror +197663,Happy Death Day 2U (2019),Horror|Mystery|Thriller +197665,Truth or Double Dare (2018),Horror +197667,Entangled (2014),Drama +197669,Another Fine Mess (1930),Comedy +197671,Hank Aaron: Chasing the Dream (1995),(no genres listed) +197673,Caffeine (2007),Comedy +197675,Bad Meat (2011),Comedy|Horror +197677,Into the Dark: Pooka! (2018),Horror|Thriller +197679,Backtrace (2018),Crime|Drama +197681,Petta (2019),Action|Drama +197683,Bigger (2018),(no genres listed) +197685,Jalebi (2018),Drama|Romance +197687,All Square (2018),Comedy|Drama +197689,Polar (2019),Action +197691,FYRE: The Greatest Party That Never Happened (2019),Documentary +197693,Centrespread (1981),Drama|Sci-Fi +197695,King of Crime (2018),Crime +197697,Once Upon a Deadpool (2018),Action|Comedy +197699,The Truth About Killer Robots (2018),Documentary +197703,"Man, Woman and Child (1983)",Drama +197705,Guyana: Crime of the Century (1979),Drama|Thriller +197707,IO (2019),Sci-Fi +197709,The Hole in the Ground (2019),Horror +197711,Us (2019),Horror|Thriller +197713,The Great Battle (2018),Action +197715,Don't Come Back from the Moon (2019),Drama +197717,Ascharya Fuck It (2018),Drama|Thriller +197719,Taramani (2017),Drama|Romance +197721,Orange Mittai (2015),Comedy|Drama +197723,Nasha (2013),Drama|Romance|Thriller +197725,Theeya Velai Seiyyanum Kumaru (2013),Comedy|Drama|Romance +197727,Mater (2017),Drama +197729,Vada Chennai (2018),Action|Crime +197731,Sila Samayangalil (2016),Drama +197733,The Handsome Suit (2008),Comedy|Drama|Romance +197735,Paddle to the Sea (1966),(no genres listed) +197737,A Bread Factory Part One: For the Sake of Gold (2018),Comedy|Drama +197739,A Bread Factory Part Two: Walk with Me a While (2018),Comedy|Drama +197741,Malila: The Farewell Flower (2017),Drama +197743,Here Comes the Grump (2018),Adventure|Animation|Children|Comedy|Fantasy +197745,Primary Russia (1986),Drama +197747,Your Lie in April (2016),Drama|Romance +197749,A Bill of Divorcement (1932),Drama +197751,Mixtape (2009),Comedy|Drama +197753,Diaoyu Islands: The Truth (2014),Documentary +197755,Bugs and Thugs (1954),Animation +197757,"Duck! Rabbit, Duck! (1953)",Animation +197759,Going! Going! Gosh! (1952),Animation +197761,"Beep, Beep (1952)",Animation|Children|Comedy +197763,"Water, Water Every Hare (1952)",Animation|Children|Comedy +197765,The Two Mouseketeers (1952),Animation +197767,Magical Maestro (1952),Animation|Comedy +197769,Cheese Chasers (1951),Animation +197771,Long-Haired Hare (1949),Animation|Children|Comedy +197773,Symphony in Slang (1951),Animation +197775,Bunny Hugged (1951),Animation +197777,Tom and Jerry in the Hollywood Bowl (1950),Animation +197779,What's Up Doc? (1950),Animation|Children|Comedy|Romance +197781,Homeless Hare (1950),Animation|Children +197783,Mutiny On The Bunny (1950),Animation|Comedy +197785,Rabbit Hood (1949),Animation|Children|Comedy +197787,Heavenly Puss (1949),Animation|Children +197789,High Diving Hare (1949),Animation +197791,Inspiration (1949),Animation|Drama|Fantasy|Romance +197793,Scaredy Cat (1948),Animation|Comedy|Horror +197795,Daffy Dilly (1948),(no genres listed) +197797,Bugs Bunny Rides Again (1948),Animation|Western +197799,Buccaneer Bunny (1948),Animation|Comedy +197801,Rabbit Punch (1948),Animation|Children +197803,A Pest in the House (1947),Animation|Comedy +197805,Rhapsody Rabbit (1946),Animation|Children|Comedy +197807,The Big Snooze (1946),Animation +197809,Racketeer Rabbit (1946),(no genres listed) +197811,Solid Serenade (1946),Animation +197813,Hair-Raising Hare (1946),Animation|Comedy +197815,Baseball Bugs (1946),Animation|Children|Comedy +197817,Quiet Please! (1945),Animation +197819,Wild and Woolfy (1945),Animation +197821,Stage Door Cartoon (1944),Animation|Comedy +197823,The Old Grey Hare (1944),Animation|Children|Comedy|Sci-Fi +197825,Little Red Riding Rabbit (1944),Animation|Comedy +197827,Chicken Little (1943),Animation|Children +197829,Who Killed Who? (1943),Animation|Comedy|Mystery +197831,Red Hot Riding Hood (1943),Animation +197833,Dumb-Hounded (1943),Animation +197835,To Duck.... Or Not to Duck (1943),Animation|Comedy +197837,My Favorite Duck (1942),Animation|Comedy +197839,A Tale of Two Kitties (1942),Animation|Children|Comedy +197841,Mysteries of Love (2002),Documentary +197843,A Wild Hare (1940),Animation|Children|Comedy +197845,You Ought to Be in Pictures (1940),Animation|Children|Comedy +197847,Rainbow Dance (1936),Animation +197849,I Love to Singa (1936),Animation|Children|Comedy +197851,Greedy Humpty Dumpty (1936),(no genres listed) +197853,The Idea (1932),Animation +197855,Bimbo's Initiation (1931),Animation|Comedy +197857,The Growing Pains Movie (2000),Children|Comedy +197859,The Ground Truth (2006),Documentary|War +197861,The Secret Life of Kyle (2017),Animation|Children|Comedy +197863,Gunmen (1993),Action|Comedy|Crime|Thriller +197865,22 Chaser (2018),Crime|Drama +197869,The Machine Stops,Sci-Fi +197871,A Simple Event (1974),Drama +197873,Still Life (1974),Drama +197875,"Extremely Wicked, Shockingly Evil and Vile (2019)",Crime|Thriller +197877,American Factory (2019),Documentary +197879,Apollo 11 (2019),Documentary +197881,Brittany Runs a Marathon (2019),(no genres listed) +197883,The Farewell (2019),Comedy +197885,Honey Boy (2019),Drama +197887,Towed in a Hole (1932),Comedy +197889,Close (2019),Action|Thriller +197891,Wonders of the Sea 3D (2018),Documentary +197895,American Nightmares (2018),Comedy|Horror +197897,ReMastered: Who Killed Jam Master Jay? (2018),Documentary +197899,Catwalk: Tales from the Catshow Circuit (2018),Documentary +197901,Seven Days: Monday - Thursday (2015),Comedy +197903,Seven Days: Friday - Sunday (2015),Romance +197905,John Lives Again (2017),Comedy|Romance +197907,Busy Bodies (1933),Comedy +197909,Fyre Fraud (2019),Documentary +197911,Okresní přebor - Poslední zápas Pepika Hnátka (2012),(no genres listed) +197913,Scream for Me Sarajevo (2018),Documentary|War +197915,La araucana (1971),Drama|War +197917,Sui Dhaaga (2018),Children|Comedy|Drama +197919,Histoire(s) du Cinéma: All the (Hi)stories (1988),Documentary +197921,2 x 50 Years of French Cinema (1995),Documentary +197923,Histoire(s) du Cinéma: Deadly Beauty (1997),Documentary +197925,Histoire(s) du Cinéma: The Coin of the Absolute (1998),Documentary +197927,Histoire(s) du Cinéma: The Control of the Universe (1998),Documentary +197929,Histoire(s) du Cinéma: A New Wave (1998),Documentary +197931,Histoire(s) du Cinéma: The Signs Among Us (1998),Documentary +197933,Claws for Alarm (1954),Animation|Comedy +197935,Histoire(s) du Cinéma: A Single (Hi)story (1989),Documentary +197937,"Oscar Saa, Technician of the Stars (2010)",Documentary +197939,María Teresa and the Brown Dwarf (2010),Documentary +197941,"Chile, a Galaxy of Problems (2010)",(no genres listed) +197943,Doug Stanhope: The Comedians' Comedian's Comedians (2017),Comedy +197945,Mai Mai Miracle (2009),Animation +197947,The Invisible Boy: Second Generation (2018),Action|Adventure|Fantasy +197949,Origins of the 21st Century (2000),Documentary +197953,Bronx Executioner (1989),(no genres listed) +197955,Storm Boy (2019),Children|Drama +197957,Edmond (2019),Drama +197959,Winterkartoffelknödel (2014),Comedy|Crime +197961,"Heroin: Cape Cod, USA (2015)",Documentary +197963,Stop! Look! and Hasten! (1954),(no genres listed) +197965,Sebastian Maniscalco: Stay Hungry (2019),Comedy +197967,The 6th Friend (2017),Horror +197969,Sweet Smell of Spring (2016),Comedy +197973,Longwave (2013),Comedy +197979,Jack Irish: Black Tide (2012),Crime|Drama +197981,Wuthering Heights (1998),Drama|Romance +197983,"A Galaxy Far, Far Away (2001)",Documentary +197987,Horror Noire: A History of Black Horror (2019),Documentary +197989,The River King (2005),Drama|Mystery|Thriller +197991,Prom Wars: Love Is a Battlefield (2008),Comedy|Romance +197993,Orphan Horse (2018),Children|Drama +197997,Reparation (2016),Drama|Thriller +198003,U.S. Go Home (1994),Drama +198005,Smoke Gets in Your Eyes (2009),Comedy|Drama|Romance +198007,Nobody's Business (1996),Documentary +198009,Eamon (2010),Comedy|Drama|Romance +198011,Palavra (En)Cantada (2009),Documentary +198013,Behold Homolka (1969),Comedy +198021,A Marvada Carne (1987),Comedy +198025,Simonal - Ninguém Sabe o Duro que Dei (2009),Documentary +198027,The Woman of Everyone (1969),Comedy|Drama|Fantasy +198029,Before the World Ends (2010),Adventure|Drama +198031,Terror in Mumbai (2009),Documentary +198033,The Tenants (2009),Drama +198035,Brownian Movement (2010),Drama|Romance +198039,Bornova Bornova (2009),(no genres listed) +198041,Monica & David (2010),Documentary +198047,Dos Hermanos (2010),(no genres listed) +198051,Violence (2015),Drama +198057,The Secret Face (1991),Drama|Romance +198059,L Storm (2018),Action|Crime +198061,A Night in 67 (2010),Documentary +198063,Virgin Tales (2012),Documentary +198065,Salvador Dalí: In Search of Immortality (2018),Documentary +198067,Total Dhamaal (2019),(no genres listed) +198071,Root Cause (2019),Documentary +198073,The Coverup (2008),Crime|Drama +198075,Unplanned (2019),(no genres listed) +198077,Mon Ket (2018),Comedy +198079,The Raft (2018),Documentary +198081,Sensation Hunters (1945),Drama +198083,Strange Illusion (1945),Drama|Mystery|Thriller +198085,Train in the Snow (1976),Adventure|Children +198087,Non ci resta che il crimine (2019),Comedy +198089,The Night Stalker (1987),Crime|Drama|Thriller +198091,Taxi Driver (2015),(no genres listed) +198095,Wonderful Town (2007),Drama|Romance +198097,Just Desserts: The Making of 'Creepshow' (2007),Documentary|Horror +198099,The Brawler (2019),Crime|Drama|Romance +198101,Journal 64 (2018),Crime|Mystery|Thriller +198103,Let the Girls Play (2018),Comedy +198105,Mirror (1994),Drama +198107,Outrage Coda (2017),Action|Crime|Drama +198109,Synevir (2013),Drama|Horror +198111,Paradise Hills,Fantasy +198113,Space Coast (1979),(no genres listed) +198115,Revenger (2019),Action|Crime +198117,Charleen or How Long Has This Been Going On? (1980),Documentary +198119,Beyond White Space (2018),Sci-Fi|Thriller +198121,The Image Book (2018),Drama +198123,Killer High (2018),Comedy|Horror +198125,The Power (1984),Horror +198127,Steven Banks: Home Entertainment Center (1989),Comedy +198129,The Kid Who Would Be King (2019),Action|Adventure|Children|Fantasy +198131,The Prince and the Pauper (1942),Adventure|Children +198133,Road to Life (1931),Drama +198135,Beanstalk Bunny (1955),(no genres listed) +198137,I'm All Good (2008),Comedy +198139,The Last Six Degrees of Celebration (2018),Comedy +198141,Nomis (2018),Action|Thriller +198143,Then Came You (2019),Adventure|Comedy|Drama +198145,The Perfect Date,Romance +198147,Five Feet Apart (2019),Drama|Romance +198149,Wicked,Drama|Fantasy|Romance +198151,Uncharted: Drake's Fortune,Action|Adventure +198153,The Beach Bum (2019),Comedy +198155,The Wedding Year,Comedy|Romance +198157,A Rainy Day in New York,Comedy|Romance +198159,White Right: Meeting the Enemy (2017),Documentary +198161,Mur Murs (1981),Documentary +198163,Freddie Mercury: The Great Pretender (2012),Documentary +198165,Ánimas (2018),Horror|Thriller +198167,Diary of a Necromancer (2017),Horror +198169,KickOff (2011),Comedy +198171,Celluloid (2014),Drama|Thriller +198173,Downriver (2015),Drama +198177,Say You Will (2017),Drama +198179,Hacked (2016),Documentary +198181,Guide (1965),Drama|Romance +198183,The Caretaker (1963),Drama +198185,Twin Peaks (1989),Drama|Mystery +198187,Yongsoon (2017),Comedy|Drama +198189,Viper Club (2018),Drama|Thriller +198191,March Comes in Like a Lion (1991),Drama +198193,The Nightingale's Prayer (1959),Drama|Romance +198195,Pathey Holo Deri,Drama|Romance +198197,Extremity (2018),Horror +198199,Season's Greetings (1986),Comedy|Drama +198201,The Middleman (1976),Drama +198203,Love Sonia (2018),Drama +198205,The Spring River Flows East (1947),Drama +198207,Shackled (2013),Mystery|Thriller +198209,When the Tenth Month Comes (1984),Drama|War +198211,The Sun in a Net (1963),Drama +198213,The Name of a River (2002),Drama +198215,The Pearl (1929),Fantasy +198217,I Am Sun Mu (2015),Animation|Documentary +198219,New Year's Day (2001),Drama +198221,Woh Kaun Thi? (1964),Mystery +198223,Once Upon a Prince (2018),Romance +198227,The Man with a Shotgun (1961),Action|Crime +198229,Mr. Fish: Cartooning from the Deep End (2017),Documentary +198231,Historia de la frivolidad (1967),Comedy +198233,El televisor (1974),Drama|Horror +198237,Dope Sick Love (2005),Documentary +198239,Edge of the Knife (2018),Drama +198241,Anemic Cinema (1926),(no genres listed) +198243,Who Will Write Our History? (2019),Documentary +198245,Slaughter in San Francisco (1974),Action|Drama +198247,A Flea Market Documentary (2001),Documentary +198249,Sune vs Sune (2018),Children|Comedy +198251,Eyes Behind the Stars (1978),Mystery|Sci-Fi|Thriller +198253,The Bride from Hell (1972),Fantasy|Horror +198255,Best F(r)iends: Volume 2 (2018),Action|Comedy|Thriller +198257,Low Cost (2011),Comedy +198259,Bon Voyage! (1962),Children|Comedy +198261,Unstoppable (2018),Action|Crime +198263,Ready.. Set.. Zoom! (1955),(no genres listed) +198265,The Wandering Earth (2019),Sci-Fi +198267,Black Sheep (2018),Documentary +198269,García (2010),Drama +198271,Fauve (2018),Drama +198273,A Night at The Garden (2017),Documentary +198275,Universe (1960),Documentary +198277,Too Bad She's Bad (1955),Comedy|Romance +198279,The Hippie Temptation (1967),Documentary +198283,Gundello Godari (2013),Drama +198285,The End of the Chain (2017),Drama +198287,Without Apparent Motive (1971),Crime +198289,Demonia Undertaker (2017),Action|Drama|Sci-Fi +198291,Aurora (2019),Comedy|Drama|Romance +198293,Underneath,(no genres listed) +198295,"Gabriel ""Fluffy"" Iglesias: One Show Fits All (2019)",Comedy +198297,Robin Hood: The Rebellion (2018),Action|Adventure +198299,Desolation (2018),Thriller +198301,Jumpin' Jupiter (1955),Animation|Comedy|Sci-Fi +198303,An Ant's Life (1998),Children +198305,The 3 Little Pigs: The Movie (1996),Children +198307,Tokyo Woes (1945),(no genres listed) +198309,Scrub Me Mama with a Boogie Beat (1941),Animation|Children|Comedy +198311,Werewolf (2017),Drama +198313,Low Blow (1986),Action|Drama +198315,Blood Debts (1985),Action|Thriller +198317,Cookin' with Gags (1955),(no genres listed) +198319,Buddy in Africa (1935),(no genres listed) +198321,Viva Buddy (1934),(no genres listed) +198323,Buddy of the Apes (1934),(no genres listed) +198325,Goin' to Heaven on a Mule (1934),(no genres listed) +198327,Buddy the Gob (1934),(no genres listed) +198329,Buddy's Show Boat (1933),(no genres listed) +198331,Buddy's Day Out (1933),(no genres listed) +198333,Mickey's Mellerdrammer (1933),Animation +198335,You're Too Careless with Your Kisses! (1932),Animation|Comedy +198337,"Crosby, Columbo, and Vallee (1932)",Animation|Comedy +198339,Shuteye Popeye (1952),Animation +198341,Which Is Witch (1949),(no genres listed) +198343,The Good Egg (1945),(no genres listed) +198345,Operation Snafu (1945),Animation +198347,A Few Quick Facts: Fear (1945),Animation|Comedy|War +198349,Slightly Daffy (1944),Animation +198351,Private Snafu vs. Malaria Mike (1944),Animation +198353,A Few Quick Facts: Inflation (1944),Animation|Comedy|War +198355,The Dizzy Acrobat (1943),Animation +198357,Hop and Go (1943),Animation|Comedy +198359,Tokio Jokio (1943),Animation +198361,Gopher Goofy (1942),(no genres listed) +198363,Inki and the Lion (1941),Animation +198365,Confederate Honey (1940),Animation +198367,A-Lad-In Bagdad (1938),(no genres listed) +198369,Dog Daze (1937),(no genres listed) +198371,Toy Town Hall (1936),(no genres listed) +198373,When I Yoo Hoo (1936),(no genres listed) +198375,The Lady in Red (1935),(no genres listed) +198377,Buddy Steps Out (1935),(no genres listed) +198379,Buddy's Bug Hunt (1935),(no genres listed) +198381,Into Your Dance (1935),(no genres listed) +198383,Buddy of the Legion (1935),(no genres listed) +198385,Buddy's Theatre (1935),(no genres listed) +198387,Country Boy (1935),(no genres listed) +198389,Buddy the Dentist (1934),(no genres listed) +198391,Buddy's Circus (1934),(no genres listed) +198393,Buddy the Woodsman (1934),(no genres listed) +198395,Shake Your Powder Puff (1934),(no genres listed) +198397,Buddy's Bearcats (1934),Animation +198399,Buddy's Trolley Troubles (1934),(no genres listed) +198401,Those Were Wonderful Days (1934),(no genres listed) +198403,Beauty and the Beast (1934),Animation|Children|Comedy +198405,Buddy's Garage (1934),(no genres listed) +198407,Pettin' in the Park (1934),Animation|Children|Comedy +198409,The Merry Old Soul (1933),Animation +198411,Shuffle Off to Buffalo (1933),Animation|Comedy +198413,Beau Bosko (1933),(no genres listed) +198415,Wake Up the Gypsy in Me (1933),Animation +198417,Young and Healthy (1933),Animation|Comedy +198419,Three's a Crowd (1932),Animation|Children|Comedy +198421,Bosko's Dizzy Date (1932),Animation|Comedy +198423,Trader Mickey (1932),Animation +198425,Bosko's Store (1932),Animation|Comedy +198427,I Love a Parade (1932),Animation|Comedy +198429,Bosko at the Beach (1932),Animation|Comedy +198431,Bosko and Honey (1932),Animation|Comedy +198433,Bosko's Party (1932),Animation|Comedy +198435,Big-Hearted Bosko (1932),Animation|Comedy +198437,Freddy the Freshman (1932),Animation|Comedy +198439,Pagan Moon (1932),Animation|Comedy +198441,Bosko's Soda Fountain (1931),Animation|Comedy +198443,The Tree's Knees (1931),Animation|Comedy +198445,Yodeling Yokels (1931),Animation|Comedy +198447,End of Summer (2017),Drama +198449,Knife in the Clear Water (2018),Drama +198451,The Woman with Red Boots (1974),Comedy|Drama|Fantasy +198453,The Second Awakening of Christa Klages (1978),Drama +198455,Conny Plank - The Potential of Noise (2017),Documentary +198457,Endless Waltz (1995),Drama +198459,Make Me Up (2018),Sci-Fi +198461,Un día vi 10000 elefantes (2015),Documentary +198463,"Lots of Kids, a Monkey and a Castle (2017)",Documentary +198465,The Widowed Witch (2017),Comedy|Drama|Fantasy +198467,Wretch (2019),Horror +198469,The Little Witch (2018),Children|Comedy|Drama +198471,Designs on Jerry (1955),Animation|Children|Comedy +198475,Treasures from the Wreck of the Unbelievable (2017),Documentary +198477,Raid in St. Pauli (1932),Crime +198479,Razzia (2018),Drama +198481,The Homeboy (2018),Comedy|Drama +198483,Amnesia (2015),Drama +198485,Tiempo de silencio (1986),(no genres listed) +198487,Breakaway (1966),(no genres listed) +198489,Frightmare (1983),Horror +198491,Backyard (1984),Documentary +198493,The Least of These (2019),(no genres listed) +198495,Rigged (2008),Action|Crime|Drama|Thriller +198497,The Golem (2018),Horror +198499,Untogether (2019),Comedy|Drama +198501,"Berlin, I Love You (2019)",Drama +198503,The Isle (2018),Horror +198505,"Love, Cecil (2017)",Documentary +198507,Feral (2018),Documentary|Horror +198509,Sergio Leone - Une Amérique de légende (2018),Documentary +198511,Single AF (2018),Horror|Thriller +198513,Armenian Haunting (2018),Horror +198515,Twisted Obsession (1989),Mystery|Thriller +198517,Death Metal (2016),Comedy|Horror +198519,Mod Fuck Explosion (1994),Comedy|Horror +198521,The Great New Wonderful (2005),Comedy|Drama +198523,Born of Fire (1987),Drama|Fantasy|Horror +198525,Hostile Takeover (1988),Crime|Horror +198527,Drift (2017),Drama +198529,Rag Tale (2005),(no genres listed) +198531,The King and I (2018),Drama +198535,Trick: The Movie (2002),Comedy|Crime|Mystery +198537,A Useful Life (2010),Comedy|Drama|Romance +198543,Gotham (1988),Crime|Mystery|Thriller +198545,The Heifer (1985),Comedy|War +198547,By God's Grace (2014),(no genres listed) +198549,Berlin Troika (2014),Comedy|Drama +198551,The Final Test (1953),Comedy|Drama +198553,The Devout (2015),Drama +198555,Relations (2006),Drama +198557,Cold Comfort (1989),Drama|Thriller +198559,Gypsy Princess (1971),Comedy|Drama +198561,Eine Nacht in Venedig (1974),(no genres listed) +198567,Cuerdas (2013),Animation +198569,Seder-Masochism (2018),Animation +198571,Varan (1958),Horror|Sci-Fi +198573,Weenie (2016),Animation +198575,An Affair to Die For (2019),Thriller +198577,Braid (2019),Drama|Horror|Thriller +198579,The 9th Guest (1934),Horror|Mystery +198581,High Society (2018),Drama +198583,Swing Kids (2018),Drama|War +198585,Franco ...ese hombre (1963),(no genres listed) +198587,Skarpretteren (1973),(no genres listed) +198589,The Search (1970),(no genres listed) +198591,Yellow Is the New Black (2018),Animation|Children|Comedy|Crime +198593,Extracurricular Activities (2019),Comedy|Drama|Romance +198595,Jane and the Lost City (1987),Adventure +198597,Six O'Clock News (1997),Documentary +198599,Time Indefinite (1993),Documentary +198601,Earthwork (2011),Drama +198603,Butterfly Caught (2017),Drama +198605,L'autre Rio (2018),Documentary +198607,The Egg and Jerry (1956),Animation|Comedy +198609,Il Primo Re (2019),Action +198611,I Want to Eat Your Pancreas (2018),Animation|Drama +198615,Fixed (2018),Comedy +198617,No Resolution (2016),Drama +198619,Greener Grass (2019),Comedy +198621,Like.Share.Follow. (2017),Horror|Romance|Thriller +198623,For All Time (2000),Drama|Sci-Fi +198625,Rock Steady Row (2018),Drama +198627,Spellbinder (1988),Horror|Mystery|Romance|Thriller +198629,Wallabout (2016),Drama +198633,West of Sunshine (2017),Drama +198635,Nothing But Time (1926),Documentary|Drama +198637,Shaandaar (2015),Comedy|Romance +198639,Gee Whiz-z-z-z-z-z-z (1956),Animation +198641,Assault and Flattery (1956),Animation|Children|Comedy +198643,Living On Soul (2017),(no genres listed) +198645,1 Buck (2017),Drama|Thriller +198647,The Collection (2018),Drama +198649,"Ray Romano: Right Here, Around the Corner (2019)",Comedy +198651,Russell Brand: Re:Birth (2018),Comedy +198653,Sharkenstein (2016),Horror +198655,Auld Lang Syne (2016),Comedy +198657,Manikarnika (2019),Action|Drama +198659,Red Hook (2010),Comedy|Drama|Horror|Thriller +198665,Christus (1916),Drama +198667,Abducted in Plain Sight (2017),Documentary +198669,Haram (2015),Drama +198673,Into the Dark: Down (2019),Horror +198675,Wah Do Dem (2009),Drama +198677,Une Intime Conviction (2019),Drama +198681,Gone Are the Days! (1963),Drama +198683,Blood Bound (2019),Horror|Thriller +198685,Awaken the Shadowman (2017),Horror|Mystery|Thriller +198687,Balance of Power (1996),Action|Thriller +198689,The Art of McCartney,(no genres listed) +198691,Cheerleader Ninjas (2002),Action|Comedy +198693,"Deduce, You Say (1956)",Animation +198695,Yankee Dood It (1956),Animation|Comedy +198697,The Invincibles (1994),Action|Drama|Thriller +198699,Extraordinary (2017),(no genres listed) +198701,Agatha and the Truth of Murder (2018),Crime|Mystery +198703,High Flying Bird (2019),Drama +198705,Mo Amer: The Vagabond (2018),Comedy +198707,To Life! (2014),Drama +198709,Menendez: Blood Brothers (2017),Drama +198711,Ms J Contemplates Her Choice (2014),Crime|Drama|Thriller +198713,You & I (2015),Drama|Romance +198715,After Porn Ends 3 (2018),Documentary +198717,Майский дождь (2012),(no genres listed) +198719,Alone (2017),(no genres listed) +198721,Open at Night (2017),Comedy|Drama +198723,I Don't Scare (1956),(no genres listed) +198727,Blood Honey (2017),Drama|Horror|Mystery|Thriller +198729,Perfect Skin (2018),Thriller +198731,The Final Wish (2019),Horror +198733,Woven (2016),Crime|Drama +198735,Antariksham 9000 KMPH (2018),Sci-Fi|Thriller +198737,Hirokin: The Last Samurai (2012),Action|Adventure|Drama|Sci-Fi +198741,The Tree of Blood (2018),Drama|Mystery +198743,Inner Sanctum (1948),Mystery|Thriller +198745,Bed and Sofa (1927),Comedy|Drama +198747,40 Minutes of Hell (2012),Documentary +198749,Blood Money (1988),Action|Thriller +198751,On the Edge (2011),Drama +198753,Cloudburst (1951),Mystery|Thriller +198755,David Attenborough's Tasmania (2018),Documentary +198757,Co-ed Call Girl (1996),Crime|Drama +198761,Back Roads (2018),Drama|Thriller +198763,"Hannah, Queen of the Vampires (1973)",Horror +198765,"The Bold, the Corrupt and the Beautiful (2017)",Mystery|Thriller +198767,Islam and the Future of Tolerance (2018),Documentary +198769,My First Time (2012),Drama|Romance +198771,The Silent One (1973),Drama|Thriller +198773,Inhibitions (1976),Drama +198775,Apple Pie (1976),Comedy +198779,Isolated (2014),Adventure|Drama|Thriller +198781,Uri: The Surgical Strike (2019),Action|Drama +198783,The Merry Maids of Madness (2016),Comedy|Fantasy +198785,Sarkar (2018),Action|Drama +198787,Beyond the Woods (2018),Horror +198789,2.0 (2018),Action|Sci-Fi +198791,The Queen's Corgi (2019),Animation|Children|Comedy +198793,Jo's Boy (2011),Comedy|Drama +198795,No Half Measures: Creating the Final Season of Breaking Bad (2013),Documentary +198797,Bhavesh Joshi Superhero (2018),Action|Drama +198799,Coming Out Under Fire (1994),Documentary|War +198801,Mr. Jones (2019),Drama|Thriller +198803,Atlantic Rim: Resurrection (2018),Action +198805,The Comeback Kid (1980),Comedy|Romance +198807,7-Man Army (1976),War +198809,The Creep Behind the Camera (2015),Comedy|Documentary|Drama +198811,All at Once (2016),Drama +198813,Aynabaji (2016),Crime|Mystery|Thriller +198815,HK: Hentai Kamen - Abnormal Crisis (2016),Action|Comedy +198817,Payday (2018),Action|Drama|Mystery|Thriller +198819,Friends: Naki on Monster Island (2011),Animation|Children|Comedy +198821,Europe in the Raw (1963),Documentary +198823,Brij Mohan Amar Rahe! (2018),Comedy|Drama +198825,Deadly Switch (2019),Thriller +198827,The Last Boy (2019),Drama|Sci-Fi +198829,Blood Theatre (1984),Horror +198831,The Golden Glove (2019),Drama|Horror|Thriller +198833,Project Gutenberg (2018),Action|Crime +198835,The Greatest Czechs (2010),Comedy +198837,Feedin' the Kiddie (1957),Animation +198839,Le nid (2018),Drama|Thriller +198841,White Room (1990),Drama +198843,Candiland (2016),Drama|Horror|Thriller +198847,Gaspard at the Wedding (2017),Comedy|Drama +198849,After You're Gone (2016),Drama +198851,4/20 Massacre (2018),Action|Horror +198853,Steal Wool (1957),Animation +198855,The Visitants (1986),Comedy|Sci-Fi +198857,The Axiom (2018),Horror +198859,Kíla: Pota Óir (2017),Documentary +198861,What Makes a Psychopath? (2017),Documentary +198863,Secrets of the Solar System (2015),Documentary +198865,Period. End of Sentence. (2018),Documentary +198867,Animal Behaviour (2018),Animation|Comedy +198869,Daughters of the Sexual Revolution: The Untold Story of the Dallas Cowboys Cheerleaders (2018),Documentary +198871,Candelaria (2018),Drama +198873,The Full House (2018),Comedy +198875,Dolphin Man (2017),Documentary +198877,A Gentle Night (2018),(no genres listed) +198879,Half a Life (1982),Documentary +198881,True to the Game (2017),Drama +198883,Losing Sight of Shore (2017),Documentary +198885,The Devil's Game (2008),Drama|Thriller +198887,The Truck (2008),Thriller +198889,Iris: The Movie (2010),Action|Adventure|Drama|Romance +198891,A Blood Pledge (2009),Horror +198893,Paradise Murdered (2007),Mystery|Thriller +198895,Death Bell 2 (2010),Horror +198897,Desire To Kill (2010),Thriller +198899,Hello Murderer (2010),Comedy|Thriller +198901,The Showdown (2011),Action|Drama +198903,Dead Mine (2012),Action|Horror +198905,The Bromley Boys (2018),Comedy +198907,Worm (2014),Horror|Romance|Sci-Fi +198909,After Darkness (2019),Children|Drama|Sci-Fi|Thriller +198911,Ordinary Person (2017),Action|Crime|Drama +198913,Inside Einstein's Mind: The Enigma of Space and Time (2015),Documentary +198915,Dinner for Few (2015),Animation|Drama +198917,The Uncomfortable Truth (2018),Documentary +198919,A Modern Hero (1934),Drama|Romance +198921,Watch If You Dare (2018),Horror +198923,Char Man (2019),Horror|Thriller +198925,Dead Cert (2010),Action|Horror|Thriller +198929,Endless Loop (2018),(no genres listed) +198931,A Cool Fish (2018),Comedy|Thriller +198933,Confession of Pain (2006),Crime|Drama|Thriller +198935,The Age of Blood (2017),Action +198937,Golden Job (2018),Action|Adventure|Crime +198939,Always Be with You (2017),Horror|Mystery +198941,Colour of the Game (2017),Action|Crime|Drama|Thriller +198943,The Brink (2017),Action|Crime|Thriller +198945,The Fortress (2017),Action|Drama|War +198947,Believer (2018),Action|Crime +198949,The Sheriff In Town (2017),Comedy|Crime|Drama +198951,House of the Disappeared (2017),Fantasy|Horror +198953,Part-time Spy (2017),Action|Comedy +198955,Blood of Youth (2016),Action|Thriller +198957,The Heretics (2017),Fantasy|Horror +198959,Missing (2016),Drama|Mystery|Thriller +198961,Followers (2017),Thriller +198963,My War (2016),War +198965,All Light Will End (2018),Horror|Thriller +198967,Warriors of the Dawn (2017),Action|Adventure|War +198969,The Circuit (2016),Comedy|Drama +198971,One Night Only (2016),Action|Crime|Drama +198973,Hide and Seek (2016),Mystery|Thriller +198975,Battle of Memories (2017),Drama|Mystery|Sci-Fi|Thriller +198977,One-Line (2017),Crime +198979,Who Killed Cock Robin (2017),Crime|Mystery|Thriller +198981,The Boys Who Cried Wolf (2015),Crime|Drama +198983,Frat Pack (2018),Comedy +198985,Art of Fighting (2006),Action|Comedy +198987,Shadowless Sword (2005),Action +198989,Gloves Off (2017),Comedy +198991,The Wig (2005),Drama|Horror|Mystery +198993,"Murder, Take One (2005)",Comedy|Crime +198995,Carter & June (2018),Action|Comedy +198997,The Good Catholic (2017),Comedy|Drama +198999,Voice (2005),Horror +199003,WTF! (2017),Horror +199005,My Brother (2004),Action|Drama +199007,Koma (2004),Drama|Horror|Thriller +199009,Arahan (2004),Action|Comedy|Fantasy|Thriller +199011,The Devil We Know (2018),Documentary +199013,Amundsen (2019),Drama +199015,Pothole Wars (2019),(no genres listed) +199017,The Panama Papers (2018),Documentary +199019,Wishing Box (2017),Animation|Comedy +199021,Tweet-Tweet (2018),Animation +199023,Real Cases of Shadow People: The Sarah McCormick Story (2019),Horror|Mystery|Thriller +199025,Blood Beat (1983),Horror +199027,Emperor of the Bronx (1990),Action|Crime +199029,Organize İşler 2: Sazan Sarmalı (2019),Action|Comedy|Crime +199031,The Bachelor 2 (2017),Comedy +199033,Tinker' (2018),Drama|Fantasy|Sci-Fi +199035,Blood Money (2017),Drama|Thriller +199037,Sword in the Moon (2003),Action|Adventure|Drama +199039,Silver Hawk (2004),Action|Adventure|Thriller +199041,Before Someone Gets Hurt (2018),Horror +199043,Black & White: The Dawn of Justice (2014),Action +199045,Tube (2003),Action|Thriller +199047,Tough as Iron (2013),Crime|Drama|Romance +199049,The After (2014),Drama|Fantasy|Mystery +199051,Public Enemy (2002),Action|Drama +199053,Out of Inferno (2013),Action +199055,Friend (2001),Action|Drama +199057,Bug (2002),Comedy +199059,Music and Apocalypse (2019),Comedy +199061,Ruslan and Ludmila (1972),Adventure|Children|Fantasy +199063,"Ali, the Goat and Ibrahim (2017)",Drama|Fantasy +199065,Synonyms (2019),Drama +199067,Still Green (2009),Drama +199069,Rejected (2018),Fantasy +199071,Under the Eiffel Tower (2019),Romance +199073,Captive State (2019),Sci-Fi|Thriller +199075,Gloria Bell (2019),Drama|Romance +199077,The Great Meaulnes (2006),Drama +199079,Ether (2019),Drama +199081,Jellyfish (2018),Drama +199083,El Libro de Lila (2018),(no genres listed) +199085,Hello I Love You (2018),Comedy +199087,A Reckoning (2018),Western +199089,Damsel (2017),Comedy|Drama +199091,Nun (2017),Horror|Mystery|Thriller +199093,Teen Bride (2017),Comedy|Drama|Romance +199095,Gully Boy (2019),Drama +199097,Amphetamine (2010),Drama +199099,I Feel Good (2018),Comedy|Drama +199101,The Prodigy (2019),Horror +199105,Unveiled (2005),Drama +199107,Purgatory Road (2017),Crime|Horror +199109,My Hindu Friend (2015),Drama +199111,The Past (2007),Drama|Romance +199113,Coffee and Cigarettes (1986),Comedy +199115,Passions (1994),(no genres listed) +199117,Three Stories (1997),(no genres listed) +199119,Order of Chaos (2010),Thriller +199121,Til Death Do Us Part (2011),Drama|Romance +199123,Aquarelle (1958),Comedy|Drama +199125,Cut (2011),Drama +199127,Everybody's Gone (2013),(no genres listed) +199129,The Blues (2003),(no genres listed) +199131,Soldiers of Salamina (2003),Drama|War +199133,Sinatra: The Classic Duets (2003),(no genres listed) +199135,Endorphine (2015),Drama +199137,The Certificate (2005),(no genres listed) +199139,By the Ravine (1962),Drama|War +199141,Dreaming of Julia (2003),Comedy|Drama +199143,Second Class Citizens (2001),Comedy|Drama|Romance +199145,She Doesn't Want to Sleep Alone (2012),Drama +199147,Letter to America (1999),Comedy|Drama +199149,Summer Soldiers (1972),Drama|War +199151,The Sentimental Policeman (1992),(no genres listed) +199153,Jimi Hendrix at the Isle of Wight (1996),Documentary +199155,Собака Павлова (2005),Comedy|Drama|Romance +199157,Je n'aime que toi (2004),Drama +199159,Moon in a Bottle (2007),Comedy|Romance +199161,L'avant dernier (1981),Action|Drama|Fantasy|Sci-Fi +199163,Favourites of the Moon (1985),Crime|Drama +199165,Change of Fortune (1987),(no genres listed) +199167,Final Recipe (2013),(no genres listed) +199169,The Mangler 2 (2001),Horror|Sci-Fi +199171,Waiting for the Messiah (2000),Drama|Romance +199173,Sergio and Sergei (2018),Drama +199175,Butterfly Kisses (2018),Documentary|Horror +199177,Bornholmer Straße (2014),Drama +199179,"Madagascar, a Journey Diary (2010)",Animation +199181,Fox and the Whale (2016),Animation +199183,Hybrids (2017),Animation +199185,The Brave Heart or (The day we enabled the sleepwalking protocol) (2018),Animation|Comedy +199187,Hoaxed (2019),(no genres listed) +199189,The Attic: The Hiding of Anne Frank (1988),Drama|War +199191,Bleeders (1997),Horror|Sci-Fi +199193,Bad Man from Red Butte (1940),Western +199197,The Old Chisholm Trail (1942),Action|Western +199199,Gnarly in Pink (2014),(no genres listed) +199201,Kids on the Slope (2018),Children|Comedy|Drama|Romance +199203,Detainment (2018),Crime|Drama +199205,"Ken Jeong: You Complete Me, Ho (2019)",Comedy +199207,The Curse of La Llorona (2019),Horror|Thriller +199209,Minha Fama de Mau (2019),Drama +199213,Tomorrow is Another Day (2017),Drama +199217,Mother (2017),Drama|Thriller +199219,I See You (2019),Thriller +199223,Pet Sematary (2019),Horror|Thriller +199225,Swoon (2019),Drama|Romance +199227,Penda's Fen (1974),Drama|Fantasy +199229,Freehold (2017),Comedy|Thriller +199231,River's Edge (2018),Mystery +199233,The Money Trap (1965),Crime|Drama|Thriller +199235,The Third Wife (2019),Drama +199237,Paddleton (2019),Drama +199239,Troubled Waters (2007),Action|Crime|Mystery|Thriller +199241,Huisvrouwen bestaan niet (2017),Comedy +199243,Zoo Quest in Colour (2016),Documentary +199245,Sun Seekers (1972),Drama +199247,Marguerite (2017),Drama +199249,Skin (2018),Drama +199251,The Goose Steps Out (1942),Comedy +199253,Lupin the Third: Princess of the Breeze - Hidden City in the Sky (2013),Action|Animation|Comedy +199255,The Kid (2019),Drama|Western +199257,Raiders of San Joaquin (1943),Western +199259,Graveyard Disturbance (1987),Horror +199261,Werewolf (2018),Drama +199263,"Run Away, Catch, Fall in Love (2015)",Comedy|Romance +199265,The Fall of the American Empire (2018),Drama +199267,The Fox with Nine Tails (1994),Fantasy|Horror +199269,After the Rain (2018),Drama|Romance +199271,Hinokio: Inter Galactic Love (2005),Drama|Sci-Fi +199273,Aya (2012),Drama +199275,Displacement (2017),Sci-Fi|Thriller +199277,Yucatán (2018),Comedy +199279,Never-Ending Man: Hayao Miyazaki (2017),Documentary +199281,Russian Psycho (2019),Comedy|Drama|Thriller +199283,Finding Camille (2017),Comedy|Drama +199285,Viswasam (2019),Action|Children|Romance +199289,Run the Race (2019),Drama +199291,Paris Is Us (2019),Drama +199295,Antes que cante el gallo (2016),Drama +199299,The Dirty Sanchez (1999),Comedy +199301,Compromising Positions (1985),(no genres listed) +199303,Sons of Provo (2004),Comedy +199305,Office Space (1991),(no genres listed) +199307,Greta (2019),Drama|Thriller +199309,The Great Adventure of Zorro (1976),Action|Adventure|Children +199311,Nicky Larson et le Parfum de Cupidon (2019),Adventure|Comedy +199315,Berlin am Meer (2007),Drama|Romance +199317,Being Frank: The Chris Sievey Story (2018),Documentary +199319,Out of Blue (2019),Crime|Drama +199325,Americana (2016),Drama +199331,Couples Counseling (2016),Comedy|Romance +199333,Balloon (2018),Thriller +199335,What Really Frightens You? (2009),Horror|Mystery|Thriller +199337,The Keeper (2019),(no genres listed) +199339,América (2018),Documentary +199340,Who You Think I Am (2019),Drama +199342,It's a Hard Truth Ain't It (2018),Documentary +199344,The Humorist (2019),Drama +199346,I See You (2019),Thriller +199348,The Purple Heart (1944),Action|Drama +199350,Kitbull (2019),Animation|Children +199352,Trading Paint (2019),Action +199354,Uncertain Terms (2014),Drama +199356,Love Is Now (2014),Drama|Romance +199358,Heavenly Sword (2014),Action|Adventure|Animation|Fantasy +199360,Travelling Light (2003),(no genres listed) +199364,The Mass Is Over (1985),Comedy|Drama +199366,Teenage Sex Report (1971),Drama +199370,Abundant Acreage Available (2017),Drama +199374,Duress (2009),Thriller +199382,Lovelife (1997),Comedy|Drama|Romance +199386,Facade (1999),Action|Thriller +199388,Welcome to Curiosity (2018),Thriller +199390,The Truth About Lies (2017),Comedy|Romance +199394,Alad'2 (2018),Comedy +199398,A Girl Like Grace (2015),Drama +199402,Tu hijo (2018),Drama +199412,Night of the Demons III (1997),Horror +199414,Prehistoric Beast (1985),Animation +199418,Night of the Living Dead: Re-Animation (2012),Horror +199420,The Amityville Legacy (2016),(no genres listed) +199422,Against The Night (2017),Horror|Mystery|Thriller +199424,No Postage Necessary (2018),Comedy|Drama +199426,The Endless Film (2018),Documentary|Fantasy +199428,The Troupe (1978),Drama +199430,Svaha : The Sixth Finger (2019),Mystery|Thriller +199432,A Madea Family Funeral (2019),Comedy +199434,The Battle Over Citizen Kane (1996),Documentary +199436,Luka Chuppi (2019),Comedy|Romance +199438,Late Shift (2016),Crime|Thriller +199440,Sandakozhi 2 (2018),Action|Children|Romance +199442,Thimiru Pudichavan (2018),Action|Drama +199444,Psychic Wars (1991),Animation +199446,The Detained (2017),Horror +199448,666 Revealed (2006),Documentary +199450,Champions (1998),Action|Thriller +199452,Road House 2: Last Call (2006),Action|Adventure|Crime|Thriller +199454,Revenge Porn (2015),Documentary +199456,Tomorrow Is Forever (1946),Drama|Romance|War +199460,Lose My Self (2014),Drama +199462,The Trailer Park Boys Xmas Special (2004),Comedy +199464,The Perfect Weapon (2016),Action|Sci-Fi +199466,Pedal the World (2014),Documentary +199468,Saamy² (2018),Action|Thriller +199470,The Wolf's Call (2019),Drama|Thriller +199476,The Boy Who Harnessed the Wind (2019),Drama +199478,Dead Body (2017),Horror +199484,Toy Gun (2018),Action|Comedy|Crime +199488,The Laplace's Demon (2017),Horror|Mystery|Sci-Fi|Thriller +199492,Stray (2019),Action|Crime|Fantasy|Thriller +199494,Brats (1930),Comedy +199496,Girls of the Sun (2018),Drama +199498,Blade of the Phantom Master (2004),Adventure|Animation|Fantasy|Sci-Fi +199500,One Last Shot (1998),(no genres listed) +199502,Forced To Fight (2011),Action|Thriller +199504,Warriors of the Rainbow: Seediq Bale - Part 2: The Rainbow Bridge (2011),Action|Drama +199508,Kizi mizi (2007),Animation|Romance +199510,Room for Rent (2017),Comedy|Mystery +199512,Two Trams (2017),Animation +199514,All the Colors of Giallo (2019),Documentary +199516,Kiss the Blood Off My Hands (1948),Drama +199518,Cosmic Slop (1994),Sci-Fi +199520,Big Meat Eater (1982),Comedy|Sci-Fi +199522,Terror on Tape (1985),Horror +199524,Arise! SubGenius Recruitment Film #16 (1992),Comedy|Documentary +199526,"Fear, Anxiety & Depression (1989)",Comedy +199528,Terror Tract (2001),Comedy|Horror|Thriller +199530,Moron Movies (1985),Comedy +199532,Love at First Sight (1977),Comedy|Romance +199534,The Abomination (1986),Horror +199536,Nightwish (1989),Horror|Sci-Fi +199538,Leaving Neverland (2019),Documentary +199540,Pinocchio (2008),Adventure|Drama|Fantasy +199542,Bad Apple (2016),Children|Drama +199544,No Witness (2004),Thriller +199546,Solace (2013),(no genres listed) +199548,Congratulations! (2013),(no genres listed) +199550,Against the Wall (1994),Drama +199552,The New Adventures of Pinocchio (1999),Children +199556,Home (2016),Drama +199558,Divine Being : Essere Divina (2018),(no genres listed) +199560,Bajo la rosa (2017),Crime|Drama|Mystery|Thriller +199562,Chronus (2014),Animation|Fantasy +199564,Weeping for a Bandit (1964),Drama +199566,The Aftermath (2019),Drama|Romance|War +199568,Shy Boys: IRL (2011),Documentary +199570,The Unwilling (2017),Horror|Thriller +199572,Love+Sling (2018),Comedy|Drama +199574,Romeo Akbar Walter,(no genres listed) +199576,Dokunmayın Şabanıma (1979),Comedy +199578,King of Kings (2014),Action|Comedy +199580,Maiden (2019),Documentary +199584,The Good Girls (2018),Drama +199586,Midnight Traveler (2019),Documentary +199588,Styx (2019),Drama +199592,Vultures (2018),Thriller +199594,Los Silencios (2019),Drama +199596,Toni Morrison: The Pieces I Am (2019),Documentary +199598,In the Name of Honor (2015),(no genres listed) +199600,The Computer Wore Tennis Shoes (1995),(no genres listed) +199610,Hutsul girl Ksenia (2019),(no genres listed) +199612,Black Sabbath: Never Say Die (1978),Documentary +199614,David Searching (1997),Drama|Romance +199622,Scooby-Doo! and the Curse of the 13th Ghost (2019),Adventure|Animation|Children|Comedy|Mystery +199626,The Photographer of Mauthausen (2018),Drama|Thriller +199628,"Mirror, Mirror II: Raven Dance (1994)",Horror +199634,Miami Supercops (1985),Action|Comedy +199636,Meet the Trumps: From Immigrant to President (2017),Documentary +199638,Conspiracy of Hearts (1960),Drama|War +199640,Rajamanikyam (2005),Action|Comedy +199642,Adanga Maru (2018),Action|Romance|Thriller +199646,Crazy Moon (1987),Comedy|Drama|Romance +199648,Kim Possible (2019),Action|Adventure|Children|Comedy +199650,Tales of the Brothers Quay (1987),Animation|Documentary +199652,Alternative Rebellion: The Beginning of Britain's Alternative Comedy Scene (2007),Documentary +199654,Fleisch ist mein Gemüse (2008),Comedy|Drama +199656,Río Escondido (1948),Drama +199660,Anna di Brooklyn (1958),Comedy|Romance +199662,Falling from the Sky: Flight 174 (1995),Drama +199664,Wabbit Twouble (1941),Animation|Children|Comedy +199666,False Hare (1964),Animation|Comedy +199668,Brave Little Tailor (1938),Animation|Children|Fantasy +199670,Strawberry Days (2017),Drama|Romance +199672,Ouaga Girls (2017),Documentary +199674,The Unpromised Land (2019),Comedy|Drama +199676,What Walaa Wants (2018),Documentary +199682,The Making of 'The Young Ones' (2007),Documentary +199684,Legatee (2012),(no genres listed) +199686,Panic in the Mailroom (2013),Animation|Children|Comedy|Sci-Fi +199688,Puppy (2013),Animation|Children|Comedy|Sci-Fi +199690,Minions: Training Wheels (2013),Adventure|Animation|Children|Comedy|Sci-Fi +199692,Home Makeover (2010),Animation|Children|Comedy +199694,Despicable Me Presents: Minion Madness (2010),Adventure|Animation|Children|Comedy +199696,Competition (2015),Animation|Children +199698,Cro Minion (2015),Animation|Children +199700,Lila (2014),(no genres listed) +199702,DZIDZIO Contrabass (2017),Comedy +199704,Trick Riding (1895),(no genres listed) +199706,The Photographical Congress Arrives in Lyon (1895),(no genres listed) +199708,Les Forgerons (1895),Documentary +199710,L'arroseur arrosé (1897),(no genres listed) +199712,Saut à la couvert (1896),(no genres listed) +199714,Cordeliers' Square in Lyon (1895),Documentary +199716,Boat Leaving the Port (1895),Documentary|Drama +199718,The Mechanical Butcher (1895),Comedy|Sci-Fi +199724,Crimes at the Dark House (1940),Crime|Drama +199728,Cry of the Innocent (1980),Action|Crime|Drama|Thriller +199730,Heaven's Lost Property the Movie: The Angeloid of Clockwork (2011),Animation|Comedy|Fantasy|Romance +199732,Heaven's Lost Property Final: Eternal My Master (2014),Action|Animation|Romance +199734,Naruto: The Lost Story: Mission : Protect the Waterfall Village (2003),Animation +199736,Naruto the Movie: Legend of the Stone of Gelel (2005),Adventure|Animation|Comedy|Drama|Fantasy|Sci-Fi +199738,Naruto the Movie: Guardians of the Crescent Moon Kingdom (2006),Action|Adventure|Animation +199740,Masterpiece (2017),Action|Thriller +199744,Diary of a Pregnant Woman (1958),Documentary +199746,In Our Nature (2012),Drama +199748,The Drug King (2018),Action|Crime|Drama +199750,"Pepe, der Paukerschreck (1969)",Comedy +199752,Zur Hölle mit den Paukern (1968),Comedy +199754,Morgen fällt die Schule aus (1971),Comedy +199756,Zum Teufel mit der Penne (1968),Comedy +199758,Wir hau'n die Pauker in die Pfanne (1970),Comedy +199760,"Hurrah, the School Is Burning (1969)",Comedy +199762,Der letzte Fußgänger (1960),Comedy +199764,Kimono (2000),Drama +199768,The New Math(s) (2000),(no genres listed) +199770,Germany from Above (2012),Documentary +199772,Message Man (2018),Action|Crime|Thriller +199774,NYC 3/94 (1994),(no genres listed) +199776,Opera No. 1 (1994),(no genres listed) +199778,Juanita (2019),Comedy|Romance +199780,Sundays (2018),Comedy|Drama +199782,The Storm Riders (1998),Action|Adventure|Fantasy +199784,The Red Shoes (1990),Animation +199786,The Mad Monk (1993),Action|Comedy +199788,Demolition High (1996),Action +199790,Queens of Langkasuka (2008),Action|Adventure|Fantasy|Sci-Fi +199792,Comedy (2002),Action|Animation|Drama|Fantasy|Horror +199794,The Six Degrees of Helter Skelter (2009),Documentary +199796,Men of Crisis: The Harvey Wallinger Story (1971),Comedy|Documentary +199800,Chunin Exam on Fire! and Naruto vs. Konohamaru! (2004),Animation +199802,"Yes, Virginia (2009)",Animation|Children +199804,The Assassins (2012),Drama +199806,Push (1987),Animation +199808,The Drop (1965),Animation +199810,Male (1962),Animation +199812,The Challenger (2015),Action|Drama +199814,Erasing Hate (2011),Documentary +199816,Bangkok Revenge (2011),Action|Drama +199818,The Man with Half a Body,(no genres listed) +199820,BKO: Bangkok Knockout (2010),Action|Thriller +199822,Belle's Magical World (1998),Animation|Children +199824,Da Vinci: The Lost Treasure (2011),Documentary +199826,Muramasa (1987),Animation +199828,The Bear Who Slept Through Christmas (1973),Animation|Children +199830,This Girl Is Bad-Ass!! (2011),Action|Comedy +199832,How to Train Your Dragon - Legends (2010),Adventure|Animation|Children +199834,Room on the Broom (2012),Animation|Children +199836,Dear Dracula (2012),Animation|Children +199838,Titanoboa: Monster Snake (2012),Documentary|Sci-Fi +199840,Genesis (1968),Animation|Comedy +199842,Stellaluna (2004),Animation|Children +199844,Resident Evil 4D: Executer (2000),Animation|Horror +199846,The Cart Boy (1995),(no genres listed) +199848,Vengeance of an Assassin (2014),Action|Thriller +199850,My Online Bride (2014),Documentary +199852,Junk Town (2006),Animation|Sci-Fi +199854,Beyond (2002),Animation +199856,End of the World (2002),Animation +199858,Professor Dan Petory's Blues (2002),Animation +199860,Resident Evil: The Nightmare of Dante (2013),Action|Horror +199862,Misfire (2014),Action|Thriller +199864,"My Teacher, My Obsession (2018)",Drama|Thriller +199866,Deadpool: No Good Deed (2017),Action|Comedy|Crime +199868,Broken Sword Hero (2017),Action +199870,Sock 'Em Dead (2015),Comedy|Horror +199872,Naruto: Find the Crimson Four-leaf Clover! (2003),(no genres listed) +199874,KKK: The Fight for White Supremacy (2015),Documentary +199876,Street Fighter Alpha: Generations (2005),Action|Animation +199878,Kakurenbo: Hide and Seek (2005),Animation|Horror +199880,Self Portrait (1988),(no genres listed) +199882,The Redeemed and the Dominant: Fittest on Earth (2018),Documentary +199884,The Littlest Angel (1997),(no genres listed) +199886,Kid with the Golden Arm (1979),Action +199888,The Nurse (2017),Horror +199890,Swamp Ape (2017),Comedy|Horror|Thriller +199892,The Three Heroes: The Heiress to the Throne (2018),Animation|Children +199894,A Moment of Romance (1990),Action|Crime|Drama|Romance +199898,Rebelles (2019),Comedy +199900,Wide Load (2019),Comedy +199902,30 Miles from Nowhere (2018),Comedy|Horror +199904,Goyo: The Boy General (2018),Action|War +199906,Gorath (1962),Sci-Fi|Thriller +199908,A Tuba To Cuba (2018),Documentary +199910,The Professor and the Madman (2019),Drama +199912,Into the Dark: Flesh & Blood (2018),Horror|Thriller +199914,Trust Machine: The Story of Blockchain (2018),Documentary +199916,Savage (2011),Horror|Sci-Fi|Thriller +199918,Rainbow Magic: Return to Rainspell Island (2010),Adventure|Animation|Children +199920,Loving Cuba (2019),Comedy|Romance +199922,Bon Bini Holland 2 (2018),Comedy +199924,Vicious (2019),Thriller +199926,Bobby en de Geestenjagers (2013),Children|Fantasy +199928,My Extraordinary Summer with Tess (2019),Children +199930,Sheep Hero (2019),Documentary +199932,Vechtmeisje (2018),Action|Children|Drama +199934,Incontrol (2017),Drama|Sci-Fi|Thriller +199936,The Other Also (1997),(no genres listed) +199938,The Sisters of Mercy (2004),(no genres listed) +199940,The Changeover (2017),Fantasy +199942,A View from a Hill (2005),Drama|Horror +199944,Big Kill (2018),Action|Western +199948,Never Grow Old (2019),Western +199950,La monnaie de leur pièce (2018),Comedy +199952,Savva. Heart of the Warrior (2015),Adventure|Animation|Fantasy +199958,"Yes, God, Yes (2017)",Comedy|Drama +199960,Khook (2018),Comedy|Drama +199964,By The Grace of God (2019),Drama +199966,System Crasher (2019),Drama +199968,Piranhas (2019),Drama +199970,"God Exists, Her Name is Petrunya (2019)",Drama +199974,Hotel Mumbai (2019),Drama|Thriller +199976,SideFX (2005),Horror +199978,Dimension 5 (1966),Action|Sci-Fi +199980,Cult (2013),Fantasy|Horror +199982,The Wedding Guest (2019),Drama +199984,eHero (2018),Drama +199986,Camera Shy (2012),Comedy +199988,Ninjas vs. Vampires (2010),Action|Comedy|Horror|Thriller +199990,The White City (2014),Drama +199992,Extreme Job (2019),Comedy|Mystery +199994,A Royal Scandal (1997),Comedy|Drama +199996,Still River (2019),Drama +199998,Holiday (2018),Drama +200000,Anatolian Trip,Documentary +200002,The Film of Her (1996),(no genres listed) +200004,The Mechanical Man (1921),Comedy|Sci-Fi +200006,The 120 Days of Bottrop (1997),Comedy +200008,After (2019),Drama|Romance|Thriller +200010,Nudist (2010),Drama +200012,The Man Who Feels No Pain (2019),Action|Comedy +200014,The Crossing (2018),Drama +200016,The Nagano Tapes (2018),Documentary +200018,4D Man (1959),Sci-Fi +200020,New Wave: Dare to be Different (2018),Documentary +200022,A Thief in the Night (1972),Drama|Fantasy|Horror +200024,The Celestine Prophecy (2006),Adventure|Drama|Romance +200026,Home Run Showdown (2012),Children +200028,Fun Size Horror: Volume One (2015),Horror +200030,Dead Souls (2018),Documentary +200032,Shockheaded (2002),Horror +200034,The Way We Weren't (2019),Comedy +200036,The Red Collar (2018),Drama +200038,Seven Dinners (2019),Comedy +200040,Four White Shirts (1967),Drama +200042,The Mustang (2019),Drama +200044,KSI: Can't Lose (2018),Documentary +200046,Haunting on Fraternity Row (2018),Horror +200048,Gorshochek Kashi (1984),Adventure|Animation +200050,The Daughter (2012),Crime|Drama +200052,Pokémon the Movie: The Power of Us (2018),Adventure|Animation|Children|Fantasy +200054,The Inventor: Out for Blood in Silicon Valley (2019),Documentary +200056,Story Of Queen: Mercury Rising (2011),Documentary +200060,An American in Paris: The Musical (2018),Romance +200062,Charlie Says (2019),Crime|Drama +200074,The Old Guard (1960),Comedy +200076,A Cage of Nightingales (1945),Drama +200078,The Colossus of New York (1958),Horror|Sci-Fi +200080,Starfish (2018),Drama|Horror|Sci-Fi +200082,Palm Swings (2017),Comedy|Drama|Romance +200086,2BPerfectlyHonest (2004),(no genres listed) +200088,Little Loopers (2015),(no genres listed) +200090,Uriyadi (2016),Action|Thriller +200092,Circle of Danger (1951),Thriller +200094,The Atomic City (1952),Drama|Thriller +200096,Eyes Behind the Wall (1977),(no genres listed) +200098,Two Weeks (2006),Comedy|Drama +200100,Rage (2018),Drama +200102,Momenti di trascurabile felicità (2019),(no genres listed) +200104,Luontosinfonia (2019),Documentary +200106,The Best That Never Was (2010),Documentary +200108,Daydreamer (2007),Drama|Mystery|Thriller +200110,The Dirt (2019),Comedy|Drama +200112,Invasion 1897 (2014),Documentary +200114,The Footballest (2018),Comedy +200116,Turkish for Beginners (2012),Comedy +200118,Amy Schumer: Growing (2019),Comedy +200120,For Love or Money (2019),Comedy +200122,Goodland (2018),Crime|Mystery|Thriller +200124,Beneath The Leaves (2019),Thriller +200126,Marking Out (2016),Documentary +200128,What Lies Ahead (2019),Thriller +200130,Sonicsgate: Requiem For A Team (2009),Documentary|Drama +200132,Against the Clock (2019),Thriller +200134,The Night Watchmen (2015),Drama +200136,Brecht (2019),Documentary|Drama +200138,Into the Dark: Treehouse (2019),Horror +200140,Vinterviken (1996),Crime|Drama +200142,Välkommen till festen (1997),Drama +200144,"Young, Single & Angry (2006)",Comedy|Romance +200146,Ebba the Movie (1982),Documentary +200148,The Knight of Shadows: Between Yin and Yang (2019),Action|Fantasy +200150,El mejor verano de mi vida (2018),Children|Comedy +200152,ABBA - The Last Video (2004),Animation|Comedy +200154,Beck 10 - Mannen utan ansikte (2001),(no genres listed) +200156,Eva & Adam: Four Birthdays and a Fiasco (2004),Children|Romance +200158,Lynyrd Skynyrd - Freebird... The Movie (1996),Documentary +200160,Kidz in da Hood (2006),Children|Comedy|Drama +200162,Jag vill inte leva detta livet (2008),Documentary +200164,Punkspark (2007),(no genres listed) +200166,In Bed With Santa (2000),Comedy +200168,Övertidskrig (2012),(no genres listed) +200170,A Summer Tale (2000),Comedy|Drama|Romance +200172,Du ritar fult (2010),Drama +200174,A Decent Life (1979),Documentary +200176,Festival (2001),Drama +200178,G (1983),Comedy|Drama +200180,Access Code (1984),Action|Adventure|Sci-Fi +200182,Kuken brinner (2011),(no genres listed) +200184,Nakenlekar (2010),Comedy +200186,Mystic Nights and Pirate Fights (1998),(no genres listed) +200188,Ta mig (2010),Comedy +200190,Bombay Dreams (2006),Comedy|Drama +200192,Den frusna leoparden (1986),(no genres listed) +200194,Tough Luck (2004),Action|Adventure|Thriller +200196,Mulk (2018),Drama +200198,Fragments of Truth (2018),Documentary +200200,Mirage (2018),Drama|Sci-Fi|Thriller +200204,A Good Funeral (2009),Drama +200206,Racing for Time (2008),Drama +200210,My Brother's War (1997),(no genres listed) +200222,Those Who Work (2018),Drama +200224,Book of Monsters (2018),Comedy|Horror +200232,The Bodyguard (2004),Action|Comedy|Thriller +200234,The Bodyguard 2 (2007),Action|Adventure|Comedy +200236,The Belly of the Whale (2018),Crime|Drama +200238,Love at First Sight (2017),Animation|Children|Comedy|Romance +200240,System Error (2018),Documentary +200242,Gunter Babysits (2017),Animation|Comedy +200244,Καζαντζάκης (2017),(no genres listed) +200246,People of the Po Valley (1947),Documentary +200248,Walter (2019),Comedy +200250,Leon Must Die (2017),Sci-Fi +200252,The Ethereal Melancholy of Seeing Horses in the Cold (2012),(no genres listed) +200254,Serial (Bad) Weddings 2 (2019),Comedy|Drama +200256,Dumbo (2019),Adventure|Children|Fantasy +200264,Defective (2017),Action|Sci-Fi|Thriller +200266,Nate Bargatze: The Tennessee Kid (2019),(no genres listed) +200268,The Marine 6: Close Quarters (2018),Action|Drama +200270,Luis and the Aliens (2018),Adventure|Animation|Children|Comedy|Sci-Fi +200272,Nancy Drew and the Hidden Staircase (2019),Children|Comedy|Crime|Mystery +200274,Billy Boy (2018),Crime|Drama|Thriller +200276,"I'm Looking at You, Mary (2000)",(no genres listed) +200278,Louder Than Bombs (2001),Comedy|Drama|Romance +200280,Assumed Killer (2013),Drama|Mystery|Thriller +200282,The Dark Kingdom (2018),Adventure|Fantasy|Sci-Fi +200286,The Flower (2019),Drama|Fantasy +200288,The Ungodly (2007),Horror|Thriller +200290,Female Human Animal (2018),Thriller +200296,The Control Group (2014),Horror +200300,Triple Threat (2019),Action|Thriller +200302,The Obscure Spring (2014),Drama +200304,Void (2018),Comedy|Drama|Romance +200306,Booksmart (2019),Comedy +200312,Sharon 1.2.3. (2018),Comedy|Romance +200314,The Portuguese Kid (2018),(no genres listed) +200316,First We Take Brooklyn (2018),Crime|Drama +200318,1991 (2018),Comedy|Drama +200320,Hallelujah the Hills (1963),Comedy|Romance +200322,The Hustle (2019),Comedy +200324,Teen Spirit (2019),Drama +200326,Little (2019),Comedy|Fantasy +200328,All the Bright Places (2019),Drama|Romance +200332,Rocketman (2019),Drama +200334,North Korea: The Parade (1989),Documentary +200336,7 Emotions (2018),Comedy|Drama +200338,Nocna zmiana (1995),Documentary +200340,From a Night Porter's Point of View (1979),Documentary +200342,Full Metal Jacket: Between Good and Evil (2007),(no genres listed) +200344,Kamper (2016),Comedy|Drama +200346,My Grandfather's Memory Book (2018),Documentary +200348,Colonel Kwiatkowski (1996),Comedy +200350,Copenhagen Dreams (2010),(no genres listed) +200352,Zion (2018),Documentary +200354,The Highwaymen (2019),Crime|Drama|Mystery|Thriller +200356,BearCity (2010),Comedy|Romance +200358,Entry Level (2007),Comedy|Drama +200360,Your Move (2017),Action|Thriller +200362,Bone Dry (2007),Action|Drama|Thriller +200368,Superlópez (2018),Action|Comedy +200370,Amateur (2018),Drama +200372,Knight Rider 2000 (1991),Action|Sci-Fi +200374,Grilled (2006),Action|Comedy|Drama +200376,Blockbuster (2017),Comedy +200378,Counterpunch (2017),Documentary +200380,Crossroads: One Two Jaga (2018),Action|Crime|Drama +200382,Point Blank (1998),Action|Crime|Drama +200384,Detective Conan: The Darkest Nightmare (2016),Adventure|Animation|Mystery +200386,Detective Conan: Sunflowers of Inferno (2015),Adventure|Animation|Crime|Mystery +200388,Detective Conan: The Dimensional Sniper (2014),Action|Animation|Drama|Mystery +200390,Detective Conan: Private Eye in the Distant Sea (2013),Action|Animation|Drama +200392,Detective Conan: The Eleventh Striker (2012),Action|Animation|Mystery +200394,Detective Conan: Quarter of Silence (2011),Action|Animation|Crime|Mystery +200396,Detective Conan: The Lost Ship in the Sky (2010),Action|Adventure|Animation|Crime +200398,Detective Conan: The Raven Chaser (2009),Animation|Crime|Mystery|Thriller +200400,Detective Conan: Full Score of Fear (2008),Action|Animation|Crime|Mystery +200402,Detective Conan: Jolly Roger in the Deep Azure (2007),Adventure|Animation +200404,Detective Conan: The Private Eyes' Requiem (2006),Animation|Mystery +200406,Detective Conan: Strategy Above the Depths (2005),Animation|Mystery +200408,Detective Conan: Magician of the Silver Key (2004),Animation|Mystery +200410,Detective Conan: Crossroad in the Ancient Capital (2003),Animation|Mystery +200412,Detective Conan: The Phantom of Baker Street (2002),Adventure|Animation|Mystery +200414,Case Closed: Countdown to Heaven (2001),Action|Animation|Crime|Drama|Mystery +200416,Detective Conan: Captured in Her Eyes (2000),Animation|Crime|Thriller +200418,Detective Conan: Skyscraper on a Timer (1997),Adventure|Animation|Comedy|Mystery +200420,Orcs! (2011),Action|Horror +200422,"Musik, Musik - da wackelt die Penne (1970)",Comedy +200424,Libero (1973),Drama +200426,Love Camp (1981),Crime +200428,Strippers Vs. Werewolves (2012),Comedy|Horror +200430,Lord of the Elves (2012),Fantasy +200432,Roots of Evil (1979),Action|Crime +200434,Sunshine Reggae auf Ibiza (1983),Comedy +200436,Wenn die tollen Tanten kommen (1970),Comedy +200438,Bułgarski Pościkk (2001),Action|Comedy +200440,Sztos (1997),Action|Comedy|Crime|Drama +200442,Ksiadz (2017),Drama +200444,The Great Challenge (2004),Action|Adventure|Drama +200446,"Karol: The Pope, The Man (2006)",Drama +200448,Justice League vs. the Fatal Five (2019),Action|Animation|Sci-Fi +200450,Breaking the Limits (2017),Drama +200452,Testosteron (2007),Comedy +200454,Mama Jack (2005),Comedy +200456,Nad Życie (2012),Drama +200458,Nie kłam kochanie (2008),Comedy +200460,Kac Wawa (2012),Comedy +200462,Above and Beyond: NASA's Journey to Tomorrow (2018),Documentary +200464,Nine Letters to Bertha (1966),Drama +200466,Smoking Room (2002),Comedy|Drama +200468,Astronautas (2003),Drama +200470,Solitary Fragments (2007),Drama +200472,The Legend of Time (2006),(no genres listed) +200476,B (2015),Crime|Drama +200478,Tres dies amb la família (2009),Drama +200480,La barraca (1945),Drama +200482,Mr. Gaga (2015),Documentary +200484,Torero (1957),Documentary|Drama +200486,Bobby Robson: More Than a Manager (2018),Documentary +200488,"Raza, el espíritu de Franco (1977)",Documentary +200490,The Prodigious Life of Father Vincent (1978),(no genres listed) +200492,"Atilano, presidente (1998)",Comedy +200494,Diamond Flash (2012),Drama|Fantasy|Thriller +200496,The Legend of Cocaine Island (2019),Documentary +200498,Lucky (2006),Action|Crime|Drama +200500,ReMastered: The Miami Showband Massacre (2019),Documentary +200502,Omerta (2008),(no genres listed) +200506,The Doll (2017),Horror +200508,Matriarch (2018),Horror|Thriller +200510,Where Man Returns (2019),Documentary +200512,Weaving the Past: Journey of Discovery (2014),(no genres listed) +200514,Full Contact (1992),Action|Crime|Thriller +200516,An Honorable Young Man (1963),Adventure|Crime|Drama +200518,The Pact (2018),Drama|Horror|Thriller +200520,Microhabitat (2018),Drama|Romance +200522,Snapshots (2018),Drama +200524,Tempting Devils (2018),Drama +200526,The Burial of Kojo (2018),Drama +200528,The Russian Bride (2019),Horror|Thriller +200530,Diane (2019),Drama +200534,Vampires: Los Muertos (2002),Action|Horror|Thriller +200536,Painted Faces (1988),Drama +200538,"Dark, Almost Night (2019)",Crime|Drama|Thriller +200540,Aladdin (2019),Adventure|Fantasy|Romance +200542,Necromancer (1988),Horror|Thriller +200544,Blood Tracks (1985),Horror +200546,The Nesting (1981),Horror +200548,Th'dread Rattlin' (2018),Horror +200550,Paranormal Investigation (2018),Horror +200552,Milada (2017),Drama +200556,Cry Danger (1951),Crime|Drama|Thriller +200558,Deutschland 09 - 13 kurze Filme zur Lage der Nation (2009),Drama +200562,A Fine Step (2014),Drama +200566,Firehead (1991),Action|Sci-Fi|Thriller +200568,Balkan Line (2019),Action|Drama +200570,The Kate Logan affair (2010),Drama|Thriller +200572,Lost Airmen of Buchenwald (2011),Documentary|War +200574,The Student (2017),Thriller +200576,11/8/16 (2017),Documentary +200578,Pimp (2018),Drama +200580,The Feels (2017),Comedy|Drama|Romance +200582,Chef Flynn (2018),Documentary +200584,Krakatit (1948),Sci-Fi|Thriller +200586,The Soul of a Monster (1944),Horror +200588,Twelve (2019),(no genres listed) +200590,We Die Young (2019),Drama +200592,Cataclysm (1980),Horror +200594,Kumu Hina (2014),Documentary +200598,The Best of Enemies (2019),Drama +200602,Hounds (2007),Drama +200604,Carmen and Lola (2018),Drama|Romance +200606,En fumée (2018),Comedy +200608,Death in Gaza (2004),Documentary +200610,Cup Final (1991),Drama +200612,The Department (2015),Action|Drama +200614,Wonder Park (2019),Adventure|Animation|Children|Comedy|Fantasy +200616,Disgruntled (2008),Horror +200618,Blondie's Anniversary (1947),Comedy +200620,Blondie's Reward (1948),Comedy +200622,Blondie's Secret (1948),Comedy +200624,Blondie's Big Deal (1949),Comedy +200626,Blondie Hits the Jackpot (1949),Comedy +200630,Missing Link (2019),Adventure|Animation|Children|Comedy|Fantasy +200632,"Die Nibelungen, Teil 2: Kriemhilds Rache (1967)",Adventure|Drama|Fantasy +200634,Eddie's Life Coach (2017),Animation|Children +200638,Tolkien (2019),Drama +200640,Vaya (2017),Drama +200642,Johnny Cash: American Rebel (2015),Documentary +200644,The Einstein of Sex: Life and Work of Dr. M. Hirschfeld (2000),Drama +200646,Into the Dark: I'm Just F*cking With You (2019),Comedy|Horror|Thriller +200648,Left of the Dial (2005),Documentary +200650,The Big Job (1965),Action|Comedy|Mystery +200652,Milla (2018),Drama +200654,George Stevens: A Filmmaker's Journey (1985),Documentary +200656,George Wallace (1997),Drama +200658,Geronimo (1993),War|Western +200660,Porndemic (2018),Documentary +200662,Silencio (2018),Drama|Mystery|Thriller +200664,Break a Leg (2005),Comedy|Drama|Thriller +200668,Sometimes Always Never (2019),Comedy|Drama +200670,Glory! Glory! (1989),(no genres listed) +200672,G-Men from Hell (2000),Action|Comedy +200676,Ramayana: The Epic (2010),Animation +200678,A Vigilante (2019),Drama|Thriller +200682,The Prom (2014),Comedy +200684,The Land of Good Little Kids (2013),Adventure|Children +200686,The Head Hunter (2019),Fantasy|Horror +200690,Paul Sanchez is back! (2018),Thriller +200692,Guy (2018),Comedy|Drama +200694,Cold Sweat (2018),Drama +200696,The Warlord: Battle for the Galaxy (1998),Sci-Fi +200698,The Spy Who Fell to Earth (2019),Documentary +200700,Thunder Road (1958),Action|Drama|Thriller +200702,From Here To Eternity: The Musical (2014),Drama|War +200704,Rams (2018),Documentary +200708,Elephant Path – Njaia Njoku (2018),Documentary +200710,The Hidden City (2018),Documentary +200712,Reunion (2009),Drama +200714,Don't Worry Baby (2016),Comedy|Drama +200716,The Great & The Small (2016),Drama +200718,African Violet (2019),Drama +200720,The Cycle (1978),Drama +200722,Calder's Circus (1961),Documentary +200724,Along for the Ride (2017),Documentary +200726,The Graduates (1995),Children|Drama +200728,Il pesce innamorato (1999),(no genres listed) +200730,Kemper (2008),Horror|Mystery|Thriller +200732,Native Son (2019),Drama +200736,J'veux du soleil (2019),Documentary +200738,Crossing (2008),Drama +200740,Antiquities (2019),Comedy +200742,Mantera (2012),Action|Sci-Fi +200744,Beyond Boundaries: The Harvey Weinstein Scandal (2018),Documentary +200746,A Soldier's Story (2015),Action|Drama +200748,The Manster (1959),Horror +200750,City of Missing Girls (1941),Crime|Mystery +200754,Awful Nice (2013),Comedy +200756,Living & Dying (2007),Action|Crime|Thriller +200760,The Class Reunion 3: Godfathers (2019),(no genres listed) +200762,The Night Before Halloween (2016),Horror|Thriller +200764,Camera Obscura (2017),Horror|Thriller +200766,The White Crow (2019),Drama +200768,Loudspeaker (2019),Comedy +200770,İksir (2014),Animation|Children|Comedy +200772,Against the Wild II: Survive the Serengeti (2016),Adventure +200776,Among the Living (2014),Horror|Mystery|Thriller +200778,Cici Babam (2018),Comedy +200780,The Terror Beneath (2011),Action|Sci-Fi +200782,Shred (2008),Comedy +200784,Ailecek Şaşkınız (2018),Comedy +200786,Kaçma Birader (2016),Comedy +200788,Αιγαίο SOS (2018),Action|Comedy +200790,Goldeneye (1989),Drama +200792,Blast-Off Girls (1967),Action|Comedy|Drama +200794,Asako I & II (2018),Drama +200796,Uncle Yanco (1967),Documentary +200798,Blow Up My Town (1968),Drama +200800,An Exercise in Discipline: Peel (1982),Drama +200802,Norm of the North: Keys to the Kingdom (2018),Animation|Children|Comedy +200804,The Two Faces of Fear (1972),Thriller +200806,Love at Second Sight (2019),Comedy +200808,The Wedding Party (2016),Comedy|Romance +200810,"Hi, A.I. (2019)",Documentary +200812,The Trap (2019),Comedy +200814,The Silence (2019),Horror +200816,Bright Eyes (1921),Comedy +200818,John Wick: Chapter 3 – Parabellum (2019),Action|Crime|Thriller +200820,Godzilla: King of the Monsters (2019),Action|Sci-Fi|Thriller +200822,Dark Phoenix (2019),Action|Sci-Fi +200824,The Secret Life of Pets 2 (2019),Adventure|Animation|Children|Comedy +200826,Adieu Galaxy Express 999 (1981),Animation|Sci-Fi +200828,Life-Size 2 (2018),Children|Fantasy +200830,Please Be Normal (2015),(no genres listed) +200832,Abduction (2019),Action|Sci-Fi +200834,Split Lip (2019),Action +200836,Ferrari (2003),Drama +200838,Pokémon: Detective Pikachu (2019),Action|Children|Crime|Fantasy|Mystery +200840,The Dude in Me (2019),Comedy|Fantasy +200842,A Dog's Journey (2019),Children +200844,Feng Shui (2018),Drama +200846,Van Morrison: Another Glorious Decade (2014),Documentary +200848,Angry Inuk (2016),Documentary +200850,Tusen bitar (2014),Documentary +200852,Start All Over Again (1985),Comedy|Drama +200854,Rodin (2017),Drama|Romance +200856,Suzzanna: Buried Alive (2018),Drama|Horror +200858,The Arbitration (2016),(no genres listed) +200860,Yearbook (2014),Animation|Comedy +200864,Batman: Hush (2019),Action|Animation|Crime|Mystery +200866,Monos (2019),Drama|Thriller +200872,School of Babel (2014),Documentary +200874,South (1999),Documentary +200876,The Swallow and the Titmouse (1920),Drama +200878,The Pit and the Pendulum (1964),Drama|Horror +200880,The Crimson Curtain (1953),Drama +200882,Choo-choo (1997),Animation +200884,Quad (1982),(no genres listed) +200886,Stranded (2009),Drama +200888,Leave 'Em Laughing (1928),Comedy +200890,The Finishing Touch (1928),Comedy +200892,Sherlok Kholms i doktor Vatson (2005),Animation|Crime|Mystery +200894,The Italian Straw Hat (1941),Comedy +200896,Son of Samson (1960),Action|Adventure|Drama|Romance +200898,Harlequin's Story (1907),Adventure|Drama|Fantasy|Romance +200900,La sociologie est un sport de combat (2001),Documentary +200902,Le Caravage (2015),(no genres listed) +200904,His Prehistoric Past (1914),Comedy +200906,Who Killed Santa Claus? (1941),Crime +200908,The Adventures of Pinocchio (1975),Children|Fantasy +200910,Tintin and the Blue Oranges (1964),Adventure|Children|Comedy +200912,Maigret and the St. Fiacre Case (1959),Crime|Drama|Mystery|Thriller +200914,Reset (2017),Documentary +200916,Délits flagrants (1994),Documentary +200918,Urgences (1988),Documentary +200920,Les Charlots contre Dracula (1980),Comedy|Fantasy +200922,Family Life (1985),Comedy|Drama +200924,"You, Me and Us (2012)",Comedy +200926,French Cinema Mon Amour (2015),Documentary +200928,Les casse-pieds (1948),Comedy +200930,C'est quoi la vie? (1999),Drama +200932,"Tramp, Tramp, Tramp (1926)",Comedy +200934,The General Line (1929),Drama +200936,A Dirty Story (1977),(no genres listed) +200938,The Dead Don't Die (2019),Comedy|Horror +200940,Strong as a Lion (2003),Adventure|Children|Drama +200942,The Waiter (2018),(no genres listed) +200944,Freddie Mercury: The Untold Story (2000),Documentary +200948,Jimmy Carr: The Best of Ultimate Gold Greatest Hits (2019),Comedy +200950,Game of Thrones - Conquest & Rebellion (2017),Animation|Fantasy +200952,Gbomo Gbomo Express (2015),Drama +200962,Cento giorni a Palermo (1984),Crime|Drama +200964,Maigret Sees Red (1963),Crime|Drama|Mystery +200966,Misdeal (1928),(no genres listed) +200968,Edgar Allan Poe (1909),Drama +200970,Charge! (2000),(no genres listed) +200972,Bonne chance (1935),Comedy|Romance +200974,Je l'ai été trois fois (1952),Comedy +200976,Le trésor de Cantenac (1950),(no genres listed) +200978,Playing Hard (2018),Documentary +200980,"The Mayo Clinic, Faith, Hope and Science (2018)",Documentary +200982,Guava Island (2019),Comedy|Thriller +200984,Making 'Badlands' (2013),Documentary +200986,Super Deluxe (2019),Drama|Thriller +200988,The Agro Rebel: Permaculture in the Salzburg Alps (2001),Documentary +200990,A Is For Acid (2002),Crime|Drama|Mystery|Thriller +200992,The Browsing Effect (2018),(no genres listed) +200994,All the Corners of the World (1989),Drama +200998,Malgré-elles (2012),Drama|War +201000,"You're So Cool, Brewster! The Story of Fright Night (2016)",Documentary +201002,Alien Warfare (2019),Action|Sci-Fi +201004,Insecticidal (2005),Horror|Sci-Fi|Thriller +201006,Beautiful People (2014),Horror|Sci-Fi +201008,I'm Just F*cking with You (2019),Comedy|Horror +201010,Pinot Simple Flic (1984),Comedy +201012,The Mystery of the Yellow Room (1930),Crime|Mystery +201014,Τα Δάκρυα του Βουνού (2019),Drama +201016,The Haunting of Sharon Tate (2019),Drama|Horror|Thriller +201018,The Billposters (1970),Drama +201020,The Foetus (1997),(no genres listed) +201022,Watch Your Stern (1960),Comedy +201024,Sound of Horror (1966),Horror +201026,Mia and the White Lion (2018),Adventure +201030,The Stone Flower (1946),Children|Fantasy +201032,Three Wise Cousins (2016),(no genres listed) +201034,Yao (2019),Comedy|Drama +201036,Aki and Peter (2018),Documentary +201038,Helldriver (2010),Horror|Sci-Fi +201040,The Slave (1962),Adventure|Drama +201042,A Date with Miss Fortune (2015),Comedy|Romance +201044,Bayonet (2018),Drama +201046,Wife of an Important Man (1988),Drama|Thriller +201048,Dallos Special (1983),Animation|Sci-Fi +201050,Zombie Hunter (2013),Action|Comedy|Sci-Fi|Thriller +201052,House of Angels: The Second Summer (1994),Comedy|Drama +201054,To the Limit (1995),Action|Adventure +201056,Frostbite (2005),Comedy +201058,Death to the Supermodels (2005),Comedy|Horror +201060,Beck 21 - Den japanska shungamålningen (2007),(no genres listed) +201062,The House at the Edge of the Galaxy (2013),Drama|Mystery +201064,The Bloom of Yesterday (2017),Comedy|Drama|Romance +201066,Dark Obsession (1989),Drama|Thriller +201068,Darkness (1993),Horror +201070,The Day Reagan Was Shot (2001),Drama +201072,Hail Satan? (2019),Documentary +201074,Beats (2019),Drama +201076,Dorm Daze 2 (2006),Comedy +201078,Göta Kanal 2 - kanalkampen (2006),Comedy +201080,The Threat (2004),Drama|Thriller +201082,Wit's End (1971),(no genres listed) +201084,Sugar Cookies (1973),Drama +201086,Video Vixens (1975),Comedy +201088,Great White Death (1981),Documentary +201090,Ferocious Female Freedom Fighters (1982),Action|Comedy +201092,That's My Baby! (1984),(no genres listed) +201094,Dreams Come True (1984),Fantasy|Romance +201096,Igor and the Lunatics (1985),Horror +201098,When Nature Calls (1985),Comedy +201100,Deadly Daphne's Revenge (1987),Drama|Horror +201102,Story of a Junkie (1987),(no genres listed) +201104,Blades (1989),Comedy|Horror +201106,Jakarta (1988),Thriller +201108,Bloodbath in Psycho Town (1989),Horror|Mystery +201110,Beware: Children At Play (1989),Horror +201112,Fortress of Amerikkka (1989),Action|Comedy +201114,The House on Tombstone Hill (1989),Horror +201116,Bugged (1997),(no genres listed) +201118,Vegas in Space (1991),Sci-Fi +201120,Frostbiter: Wrath of the Wendigo (1995),Horror +201122,Viewer Discretion Advised (1998),Comedy|Horror +201124,Fag Hag (1998),Comedy +201126,Dumpster Baby (2000),(no genres listed) +201128,Parts of the Family (2003),Comedy|Horror +201130,Hectic Knife (2016),Comedy +201132,Spidarlings (2016),Comedy|Horror|Thriller +201134,Dolcezza Extrema (2015),Animation|Sci-Fi +201136,Klepto (2003),Comedy|Crime|Drama|Thriller +201138,Closing Escrow (2007),Comedy +201140,Kiltro (2006),Action|Adventure +201142,Severed Ways: The Norse Discovery of America (2009),Adventure|Drama +201144,The Perfect Sleep (2009),Action|Adventure|Drama|Thriller +201146,Demon Warriors (2007),Horror +201148,Mirageman (2007),Action|Adventure|Sci-Fi +201150,Dangerous Flowers (2006),Action|Comedy|Drama|Thriller +201152,Harlem Aria (1999),Drama +201154,Muay Thai Giant (2008),Action|Comedy +201156,Chaw (2009),Comedy|Horror|Thriller +201158,Run-Off (2016),Drama +201160,Ukraine Is Not a Brothel (2013),Documentary +201162,Divide and Conquer: The Story of Roger Ailes (2018),Documentary +201164,Vendetta (1995),Action|Thriller +201166,Generation Iron 3 (2018),Documentary +201168,Bunch of Kunst (2017),Documentary +201170,The Trial of Ratko Mladic (2018),Documentary +201172,There Is a Man in Our House (1961),Drama|Thriller +201174,#SquadGoals (2018),Drama|Thriller +201176,Land of Fear (1999),Drama|Thriller +201180,The Peddler (1987),Crime|Drama +201182,Jonaki (2018),Drama +201184,My Father Is on the Tree (1969),Comedy|Drama +201186,Love and Dance (2009),Comedy|Drama +201188,Thriller (2018),Horror +201190,The Hound of the Baskervilles (1929),(no genres listed) +201192,Cerni baroni (1992),Comedy +201194,Penguins (2019),Children|Documentary +201196,Airborne (1998),Action +201198,Inconceivable (2008),Comedy|Drama +201200,Someone Great (2019),Comedy|Romance +201202,Joseph Campbell and the Power of Myth (1988),Documentary +201204,Web of Evidence (1959),Mystery +201208,The Ruthless (2019),Crime +201212,Chamber of Horrors (1966),Horror +201216,Death of a Centerfold: The Dorothy Stratten Story (1981),Drama +201218,Twilight Zone: Rod Serling's Lost Classics (1994),Fantasy|Horror|Mystery|Thriller +201222,Scream for Help (1984),Crime|Horror|Mystery|Thriller +201226,Days of Power (2018),Action|Drama +201228,Bol Bachchan (2012),Comedy +201230,Dalecarlians (2004),Comedy|Drama +201232,Midvinterduell (1983),Comedy|Drama +201234,Pistvakt (2005),Comedy +201236,Rosaura at 10 O'Clock (1958),Drama|Mystery +201238,"Call Sign ""Banderas"" (2018)",Drama|Thriller|War +201240,The Brink (2019),Documentary +201242,The Perfection (2018),Drama|Horror|Thriller +201244,Our Departures (2018),Drama +201246,Abgeschnitten (2018),Action|Crime|Horror|Mystery|Thriller +201248,Tiny Shoulders: Rethinking Barbie (2018),Documentary +201250,Dabbe 5: Zehr-i Cin (2014),Horror +201254,Zoey to the Max (2015),Drama +201256,Into Temptation (2009),Drama|Mystery|Thriller +201258,It's Us (2016),Comedy|Drama|Romance +201262,Dreams in the Witch House (2005),Horror|Thriller +201264,A Esmorga (2014),Drama +201266,A Fortunate Man (2018),Drama +201268,Mary Christmas (2002),Children|Drama +201270,Remi Nobody's Boy (2018),Comedy|Drama +201272,In Like Flynn (2018),Action|Adventure +201274,1000 Rupee Note (2016),Drama +201276,Jim Button and Luke the Engine Driver (2018),Adventure|Children|Fantasy +201278,Wild Tales From The Village (2016),Documentary +201280,Wrestle (2018),Documentary +201282,Alanis (2017),Drama +201284,Once Upon a Time in London (2019),Crime +201286,Jenifer (2005),Horror +201288,Life in Overtime (2018),Comedy|Drama +201290,Entropy (1999),Comedy|Drama|Romance +201292,Chocolate (2005),Horror +201294,Homecoming (2005),Horror|Thriller +201300,Discarnate (2019),Horror|Thriller +201302,The Champion (2019),(no genres listed) +201304,Stockholm (2019),Crime|Drama +201306,I Trapped The Devil (2019),Horror +201308,Body at Brighton Rock (2019),Thriller +201310,J.T. LeRoy (2019),Drama +201312,El Chicano (2018),Drama +201314,Wine Country (2019),Comedy +201316,The Souvenir (2019),Drama|Mystery|Romance +201318,Deer Woman (2005),Comedy|Horror +201320,Red Joan (2019),Drama|Thriller +201322,Poop Talk (2018),Documentary +201328,Nonfilm (2002),(no genres listed) +201330,Hanele (1999),Drama|Romance +201332,White Lies (2013),Drama +201334,Bucking Broadway (1917),Western +201336,Train Station (2015),Comedy|Crime|Drama +201338,Uncorked (2010),Drama|Romance +201340,The Lighthouse (2019),Drama|Fantasy|Horror +201344,A Boy Called Sailboat (2018),Comedy|Drama +201346,The Guy Who Didn't Like Musicals,(no genres listed) +201348,Combat Obscura (2018),Documentary +201350,Happy Face Killer (2014),Crime|Drama|Thriller +201352,Patrick (2018),Children|Comedy +201354,Machorka-Muff (1963),(no genres listed) +201356,Crypto (2019),Crime|Drama|Thriller +201358,The Fair Haired Child (2006),Horror +201360,Sick Girl (2006),Horror +201364,"Tanguy, le retour (2019)",Comedy +201366,Haeckel's Tale (2006),Horror +201368,Long Shot (2019),Comedy +201370,Tangent Room (2017),Sci-Fi|Thriller +201372,Tan Lines (2005),Drama|Romance +201374,Sebastian (1995),Drama +201376,The Fire That Burns (1997),Drama +201378,Soundless Wind Chime (2009),Drama|Romance +201380,Curious (2006),Drama +201382,Is It Just Me? (2010),Comedy|Drama|Romance +201384,The Truth About Alex (1986),Drama +201386,Be Mine (2009),(no genres listed) +201388,The Wishmakers (2011),Comedy|Romance +201390,Forgive and Forget (2000),Drama +201392,West Hollywood Motel (2013),Comedy +201394,Poster Boy (2004),Comedy|Drama|Romance +201396,Flyover Country (2014),(no genres listed) +201398,An Unusual Affair (2002),Drama|Romance +201400,Throuple (2015),(no genres listed) +201402,The Last Year (2002),Drama +201404,Kept Boy (2017),Comedy +201406,Evening Shadows (2018),Drama +201408,Code Name: Dynastud (2018),Action|Comedy|Sci-Fi +201410,The Rainbow Bridge Motel (2018),Comedy +201412,Bitter Melon (2018),Comedy|Crime +201414,Ode to Billy Joe (1976),Drama|Romance +201416,Consenting Adult (1985),Drama +201418,Friends Forever (1987),Drama +201420,Present Laughter (2017),Drama +201422,In Her Defense (1999),Thriller +201424,The Stolen Caravaggio (2018),Drama +201426,The Vice of Hope (2018),Drama +201428,Resina (2018),Drama +201430,DC Showcase: The Spectre (2010),Animation|Crime|Mystery +201432,Jacquot de Nantes (1991),Drama +201434,Tested (2015),Documentary +201436,What We Left Behind: Looking Back at Star Trek: Deep Space Nine (2018),Documentary +201440,Pit Fighter (2005),Action|Drama|Thriller +201442,The Opposite of Love (2011),Comedy|Romance +201444,Knock Down the House (2019),Documentary +201446,Hidden Man (2018),Action|Adventure|Romance +201450,Buñuel in the Labyrinth of the Turtles (2019),Animation +201452,A March to Remember (2019),Drama +201462,Homo Erectus (2007),Comedy +201466,Slaughter Daughter (2012),Horror +201468,Bereave (2015),Drama +201470,Last Sunrise (2019),Adventure|Drama +201472,Cousin Ben Troop Screening (2012),(no genres listed) +201474,Do You Like to Read? (2012),Animation|Comedy|Fantasy +201476,Drunk Parents (2019),Comedy +201478,Dirty God (2019),Drama +201480,Creep Nation (2019),(no genres listed) +201482,A Holiday to Remember (1995),Drama|Romance +201484,Debbie Does Dallas Uncovered (2005),Documentary +201486,Family (2018),Comedy +201488,Modest Heroes (2018),Adventure|Animation|Fantasy +201498,Blood Red (2014),Crime +201500,Laaf Wa Dawaraan (2016),Comedy|Drama +201502,Zëiram (1991),Action|Adventure|Comedy|Sci-Fi +201504,The Satanic Nun (2018),Horror +201506,The Outer Wild (2018),Adventure|Drama|Fantasy +201508,Alien Expedition (2018),Sci-Fi +201512,Devlin (1992),Action|Drama +201514,Ouija House (2018),Horror +201516,Bodyguards: Secret Lives from the Watchtower (2016),Documentary +201518,Numb (2015),Mystery|Thriller +201522,Mackie Messer - Brechts Dreigroschenfilm (2018),Drama +201524,Revisiting 'Fail-Safe' (2000),Documentary +201526,Colombia: Wild Magic (2015),Documentary +201528,I Spit on Your Grave: Deja Vu (2019),Horror|Thriller +201530,Age of Summer (2018),Comedy +201532,Quitters (2015),Comedy|Drama +201534,The Damned Thing (2006),Horror +201536,1% (2019),Drama +201538,Steel Country (2019),Mystery|Thriller +201540,Last Breath (2019),Documentary +201542,The Ghost Comes Home (1940),Comedy|Drama|Romance +201544,Timid Tabby (1957),Animation|Children|Comedy +201546,Family (2006),Horror +201548,Persian Series #1 (1999),(no genres listed) +201550,The V Word (2006),Horror +201552,Persian Series #2 (1999),(no genres listed) +201554,Persian Series #3 (1999),(no genres listed) +201556,Persian Series #4 (1999),(no genres listed) +201558,Persian Series #5 (1999),(no genres listed) +201560,Persian Series #6 (2000),(no genres listed) +201562,Persian Series #7 (2000),(no genres listed) +201564,Persian Series #8 (2000),(no genres listed) +201566,Persian Series #9 (2000),(no genres listed) +201568,Persian Series #10 (2000),(no genres listed) +201570,Persian Series #11 (2000),(no genres listed) +201572,Persian Series #12 (2000),(no genres listed) +201574,Persian Series #13 (2001),(no genres listed) +201576,Persian Series #14 (2001),(no genres listed) +201578,Persian Series #15 (2001),(no genres listed) +201580,Persian Series #16 (2001),(no genres listed) +201582,Persian Series #17 (2001),(no genres listed) +201584,Persian Series #18 (2001),(no genres listed) +201586,Men in Black: International (2019),Action|Adventure|Comedy|Sci-Fi +201588,Toy Story 4 (2019),Adventure|Animation|Children|Comedy +201592,Doomsday Gun (1994),Action|Drama|Thriller +201594,Brightburn (2019),Drama|Horror|Sci-Fi|Thriller +201596,Tabasco Road (1957),Animation|Children|Comedy +201598,A Fire in a Burlesque Theatre (1904),Action|Drama +201600,My Name Is Bach (2004),Drama +201602,Ninah's Dowry (2012),Drama +201604,The Quietude (2018),Drama|Thriller +201608,Deepwater (2005),Mystery|Romance|Thriller +201610,Yippie (1968),Comedy +201612,Good Morning Tri-State (2013),Comedy +201614,Gorilla My Dreams (1948),Animation +201616,Rise of the Superheroes (2019),Documentary +201618,The Unshrinkable Jerry Mouse (1964),(no genres listed) +201620,Diamond Dust (2018),Drama|Mystery|Thriller +201622,Belief: The Possession of Janet Moses (2015),Documentary +201624,The Workers Cup (2017),Documentary +201626,Half the Picture (2018),Documentary +201628,Pro-Life (2006),Horror|Thriller +201630,Me the Terrible (2012),Adventure +201632,Slaughtered Vomit Dolls (2006),Horror +201634,Sweet Anna (1958),Drama +201636,Junoon (1992),Horror +201638,The History of Time Travel (2014),Documentary|Drama +201640,Wasted! The Story of Food Waste (2017),Documentary +201642,On the Balcony (2019),Drama +201644,Them That Follow (2019),(no genres listed) +201646,Midsommar (2019),Drama|Horror|Mystery +201648,Carry on Jatta (2012),(no genres listed) +201652,Tel Aviv On Fire (2018),Comedy +201654,The Intruder (2019),Drama|Thriller +201656,My Dinner with Jimi (2003),Drama +201658,White Boy (2017),Documentary +201660,Marie et Madeleine (2008),(no genres listed) +201662,The Last Summer (2019),Comedy|Romance +201664,Into the Dark: All That We Destroy (2019),Horror +201666,Top End Wedding (2019),Comedy +201668,Oba: The Last Samurai (2011),Drama|War +201672,Top Knot Detective (2017),Action|Comedy|Crime|Drama|Mystery +201674,Wot a Night (1931),Animation|Children +201676,Pigs Is Pigs (1937),Animation|Comedy +201678,Ombline (2012),Drama +201680,Stepan's Remembrance (1976),Children|Fantasy +201682,The Legend of Rockabye Point (1955),Animation|Comedy +201684,Kamarinskaja (1895),Documentary +201686,ReMastered: Devil at the Crossroads (2019),Documentary +201688,Swell (2019),(no genres listed) +201690,The Defenders: Choice of Evils (1998),Drama +201692,Team Hurricane (2017),Drama +201694,Delta Heat (1992),Action|Drama +201700,Let's Dance (2007),Comedy +201702,China's Van Goghs (2016),Documentary +201704,Liz and the Blue Bird (2018),Animation|Drama +201706,Riding a Wave with You (2019),Animation|Comedy|Romance +201712,Violentia (2018),Drama|Sci-Fi +201715,Path of Blood (2018),Documentary +201723,While the Wolf's Away (2017),Drama|Mystery|Thriller +201725,Bloodline (2018),Horror +201727,I'll Take Your Dead (2018),Crime|Horror +201729,Ma (2019),Horror|Thriller +201731,Dominion (2018),Documentary +201733,Depraved (2019),Horror +201737,The Lodge (2019),Drama|Horror +201739,Wounds (2019),Drama|Horror|Mystery +201741,Private Violence (2014),Documentary +201745,The Originals (2017),Comedy|Drama|Mystery|Thriller +201747,Trial by Fire (2019),Drama +201749,Murder Mystery (2019),Comedy|Crime +201751,"Rupert, Rupert & Rupert (2019)",Comedy|Drama +201753,Bunny the Killer Thing (2015),Action|Comedy|Horror +201757,A Place of Truth,(no genres listed) +201759,At the Heart of Gold: Inside the USA Gymnastics Scandal (2019),Documentary +201761,Pelts (2006),Horror +201763,Backdraft 2 (2019),Action|Crime|Drama +201765,The Reports on Sarah and Saleem (2018),Drama +201767,Long Lost (2019),Drama|Mystery|Thriller +201769,Policeman's Diary (1955),Drama +201773,Spider-Man: Far from Home (2019),Action|Adventure|Sci-Fi +201775,Rattlesnakes (2019),Thriller +201777,Freispiel (1995),(no genres listed) +201779,The Screwfly Solution (2006),Horror +201781,Dawning (2009),Horror|Thriller +201783,7 from Etheria (2017),Horror +201787,Lost Cat Corona (2017),Comedy +201789,Sol de medianoche (2017),Drama +201793,After Party (2017),Comedy|Drama +201795,Unless (2016),Drama +201797,Paranormal Island (2014),Horror|Thriller +201801,Beware of Blondie (1950),Comedy +201803,Pictures at an Exhibition (1966),Animation|Comedy +201805,The Legend of Timm Thaler or The Boy Who Sold His Laughter (2017),Adventure|Children|Drama +201807,Tracey Ullman: Live and Exposed (2005),Comedy|Documentary +201809,Bundy and the Green River Killer (2019),Crime|Horror +201811,Yesterday (2019),Comedy|Romance +201815,Despite Everything (2019),Comedy +201817,Spotswood (1992),Comedy +201819,Two Graves (2018),Thriller +201821,Civilisation (1969),(no genres listed) +201823,O.G. (2018),Drama +201825,Sog (2017),Animation|Drama +201827,Dreams of the Rarebit Fiend: The Pet (1921),Animation|Fantasy +201829,Joan of Arc (1935),Drama +201831,Black Site (2018),Action|Horror +201833,Chronicle of a Boy Alone (1965),Drama +201835,Haunting of Winchester House (2009),Horror|Thriller +201839,Valerie on the Stairs (2006),Horror +201847,The Field Guide to Evil (2018),Horror +201849,Finding Steve McQueen (2019),Crime|Romance +201851,Right to Die (2007),Horror|Thriller +201855,"Pierre Étaix, un destin animé (2011)",Documentary +201859,Bolden (2019),Drama +201861,Don't Hug Me I'm Scared 4 (2015),Animation|Fantasy|Horror +201863,Poms (2019),Comedy +201865,Strange Confession (1945),Crime|Drama|Horror|Mystery +201867,Amanda (2018),Drama +201869,Prairie Dog (2015),Adventure|Drama|Fantasy|Horror|Thriller +201875,Running Red (2000),Action|Adventure|Thriller +201883,Ghostline (2015),Horror +201887,Better Start Running (2018),Comedy|Drama +201889,100 Dinge (2018),Comedy +201901,White Rush (2003),Action|Crime|Thriller +201905,Mercy Black (2019),Horror|Mystery|Thriller +201907,The Night Visitor 2: Heather's Story (2016),(no genres listed) +201911,Death House (2018),Action|Crime|Horror|Sci-Fi|Thriller +201915,Painless (2017),Drama|Thriller +201917,4Closed (2013),Thriller +201919,The Spider Woman (1943),Crime|Drama|Mystery|Thriller +201921,City of Joy (2016),Documentary +201923,"Friends, Foes & Fireworks (2017)",(no genres listed) +201925,The Ascent (2017),Horror +201927,Paskal (2018),Action +201929,Hansel Vs. Gretel (2015),Horror +201931,Jackie Chan: My Story (1998),Documentary +201933,Love Is Thicker Than Water (2017),Comedy|Drama|Romance +201935,The Waldheim Waltz (2018),Documentary +201937,Love O2O (2016),Comedy|Drama|Romance +201939,Doctor Who: Dreamland (2009),Sci-Fi +201943,Witchblade (2000),Action|Fantasy|Mystery +201945,"Мiсто, в якому не ходять грошi",Adventure|Drama|Thriller +201947,Earthflight (2013),Documentary +201949,The Drifting Classroom (1987),Horror|Mystery|Sci-Fi +201951,Expedition China (2017),(no genres listed) +201953,Alice in the Jungle (1925),Animation +201957,Operation Valkyrie (2004),Drama +201959,D-Day: The Total Story,(no genres listed) +201967,Deceptions (1985),Drama|Mystery|Romance +201969,Battle Scars (2017),Drama|War +201971,Grindstone Road (2008),Thriller +201975,Action Figures (2015),Documentary +201977,Action Figures 2 (2018),Action +201979,Little House: Bless All the Dear Children (1984),Children|Drama +201981,Little House: Look Back to Yesterday (1983),Children|Drama|Romance|Western +201983,Little House: The Last Farewell (1984),(no genres listed) +201993,And Then We Danced (2019),(no genres listed) +201995,Ins Blaue hinein (1931),Comedy +201999,Finish Line (2008),Action|Crime|Thriller +202005,Diverted Eden (2018),Action|Crime|Drama +202007,The Silent Thief (2012),Thriller +202009,Tomorrow is Today (2008),Drama|Romance +202011,Life Blood (2009),Horror +202013,The Governor's Wife (2008),Crime|Mystery|Thriller +202015,Raoul Taburin (2019),Comedy +202017,Nous finirons ensemble (2019),Comedy +202021,Hell's Half Acre (1954),Drama|Mystery|Thriller +202023,The Dorm That Dripped Blood (1982),Horror|Mystery|Thriller +202025,Olivia (1983),Crime|Drama|Horror|Romance +202033,Dracula (2006),Drama|Horror +202035,Pretty Broken (2018),Comedy|Drama +202037,Human Nature (2019),Documentary +202041,Dr. Brinks & Dr. Brinks (2017),Comedy|Drama +202043,A Different Loyalty (2004),Action|Drama|Mystery|Romance|Thriller +202045,Athlete Swinging a Pick (1880),Documentary +202047,Diary of a Teenage Hitchhiker (1979),(no genres listed) +202049,Rough Draft (1998),Drama|Thriller +202051,Room for Rent (2019),Thriller +202053,A Gay Girl in Damascus: The Amina Profile (2015),(no genres listed) +202055,Flytrap (2014),Sci-Fi +202057,One Child Nation (2019),Documentary +202061,Brutal (2017),Horror +202063,Doc & Darryl (2016),Documentary +202067,Die Partei (2009),Documentary +202069,Josephine (2016),(no genres listed) +202071,Sgt. Will Gardner (2019),Action|Adventure|Drama +202073,We All Scream for Ice Cream (2007),Horror +202075,Traficant: The Congressman of Crimetown (2015),Documentary +202077,The Seventh Curse (1986),Action|Fantasy|Horror +202081,Slipstream (2005),Sci-Fi +202083,Die Männer der Emden (2013),Drama|War +202085,Lost City Raiders (2008),Action|Adventure|Sci-Fi|Thriller +202087,Angamaly Diaries (2017),Action|Drama +202089,Oh Mercy (2019),(no genres listed) +202091,Swing Away (2017),Comedy|Drama +202093,Leaving Afghanistan (2019),Action|Drama +202095,Uyare (2019),Drama +202099,Batman vs. Teenage Mutant Ninja Turtles (2019),Action|Animation|Children +202101,Stuber (2019),Action|Comedy +202103,I Am Mother (2019),Sci-Fi|Thriller +202105,Girls Beware (1961),Crime|Drama +202109,"Simon, King of the Witches (1971)",Drama|Horror +202111,Skeletons in the Closet (2018),Horror +202113,The Voracious Ones (1973),Crime|Drama +202119,Taeter City (2012),Action|Horror|Sci-Fi|Thriller +202123,The Girl from Rio (1969),Action|Adventure +202133,The Police Connection (1973),Crime|Drama|Thriller +202135,The Majorettes (1987),Action|Crime|Horror +202137,The Black Cat (2007),Horror +202139,The Washingtonians (2007),Horror +202141,Cleveland Versus Wall Street (2010),Documentary +202143,Dream Cruise (2007),Horror +202145,Little Women (2018),Drama +202147,The Last (2019),(no genres listed) +202151,7 jours pas plus (2017),Comedy|Drama +202153,In Family I Trust (2019),Children|Comedy +202155,The Art of Self-Defense (2019),Comedy +202157,Rojo (2018),Drama|Mystery|Thriller +202159,Crawl (2019),Action|Horror|Thriller +202161,Naisen logiikka (1999),Comedy +202163,"The Shakers: Hands to Work, Hearts to God (1985)",Documentary +202165,"Bound for the Fields, the Mountains, and the Seacoast (1986)",Drama +202167,Beijing Watermelon (1989),Drama +202169,Switching - Goodbye Me (2007),Comedy|Drama|Fantasy +202171,Bates Motel (1987),Drama|Horror +202173,The Rats Are Coming! The Werewolves Are Here! (1972),Horror +202175,Throwback (2013),Action|Adventure|Horror +202177,Transformations (1988),Horror|Sci-Fi +202179,Trick or Treats (1982),Horror +202181,Warlock Moon (1973),Horror|Thriller +202187,The Sun Is Also a Star (2019),Drama|Romance +202189,Chasing Bullitt (2018),Action|Drama +202191,ReMastered: Massacre at the Stadium (2019),Documentary +202193,"Footprints, the Path of Your Life (2016)",Documentary +202195,See You Yesterday (2019),Drama|Sci-Fi +202197,Class of '44 (1973),Drama +202199,An Angel for May (2002),Children|Drama +202201,Princes in the Tower (2005),(no genres listed) +202203,Je vais mieux (2018),Comedy +202205,Le Cœur des hommes 3 (2013),Comedy +202207,Experiment of the Cross (1995),(no genres listed) +202209,"Alexandria, Again and Forever (1990)",Drama +202211,Spike (2008),Fantasy|Horror|Romance|Sci-Fi +202213,The Children (1980),Horror|Sci-Fi +202215,Twisted Nightmare (1987),Horror +202221,Domino (1988),(no genres listed) +202225,Something (2018),Drama|Horror|Mystery +202227,Morir para contar (2018),Documentary +202229,Wild Nights with Emily (2019),Comedy|Drama +202231,Foster (2018),Documentary +202233,Chasing Niagara (2016),Documentary +202235,Kidnep (2015),Adventure|Children +202237,Pain and Glory (2019),Drama +202245,Three Examples of Myself as Queen (1994),Fantasy +202247,Mugamoodi (2012),Action|Drama +202249,Peach Girl (2017),Comedy|Drama|Romance +202251,Pink and Gray (2016),Drama|Thriller +202253,Signature Move (2017),Comedy|Drama|Romance +202255,Unlovable (2018),Comedy|Drama +202263,In the Year 2889 (1967),Horror|Sci-Fi +202265,Unspeakable (2003),Horror|Thriller +202267,The Dotted Line (2011),Documentary +202269,Kid Brother,(no genres listed) +202271,The Invisible Witness (2018),Thriller +202273,The Challenger Disaster (2019),Drama +202275,Crazy Alien (2019),Comedy|Sci-Fi +202277,Superargo and the Faceless Giants (1968),Adventure|Sci-Fi +202281,Dying God (2008),Horror|Thriller +202287,Pegasus (2019),Action|Comedy +202289,Space Chicken (2017),Action|Adventure|Animation|Children|Comedy|Sci-Fi +202291,La venganza de Ira Vamp (2010),Comedy|Horror +202293,John & Yoko: Above Us Only Sky (2018),Documentary +202297,Thomas the Impostor (1965),(no genres listed) +202299,Head Against the Wall (1959),Drama +202301,Therese (1962),Drama +202303,The Golden Boat (1990),Comedy|Drama +202305,In Embryo (2016),(no genres listed) +202315,Hard to Die (1993),Action|Comedy|Thriller +202317,Ghost Town Anthology (2019),Drama +202319,The Lies She Loved (2018),Drama|Mystery +202321,My Name Is Salt (2013),Documentary +202323,Chernobyl: 30 Years On (2015),Documentary +202325,The Whistlers (2019),Comedy|Drama|Thriller +202327,Breaking the Huddle: The Integration of College Football (2008),(no genres listed) +202329,Dr. Strange (1978),Action|Adventure|Fantasy|Sci-Fi +202331,The Hard Way (2019),Action +202333,Funny story (2018),Comedy|Drama +202335,The Mystery of Henri Pick (2019),Drama +202341,Einstein and Einstein (2013),Children|Drama +202343,Dracula Rising (1993),Horror +202345,Cyborg 2087 (1966),Drama|Sci-Fi +202349,Stickman (2017),Horror|Thriller +202355,Puppet Master: Axis Termination (2017),Fantasy|Horror +202357,A Brother (2018),Drama|Romance +202359,Homecoming: A Film by Beyoncé (2019),Documentary +202361,15 Minutes of War (2019),Action|Drama|War +202363,Kevin Hart: Irresponsible (2019),Comedy +202365,Dragnet (1969),Crime +202369,Eros Hotel (1979),Comedy +202371,The Saint Lies In Wait,(no genres listed) +202373,Gran Casino (1947),Comedy|Drama +202375,Nochnoy ekipazh (1987),Crime|Drama +202377,White Moss (2014),Drama +202379,Spring Transformations (1974),Children|Drama|Romance +202381,A Little Doll (1988),Drama|Romance +202383,Stepfather III (1992),Horror|Thriller +202389,Kingdom (2019),Action|War +202391,Malibu Rescue (2019),Children|Comedy +202393,Always Be My Maybe (2019),Comedy|Romance +202395,The Cabinet of Dr. Caligari (2005),Mystery|Thriller +202397,To the Ends of the World (2018),Drama|War +202399,Extras: The Extra Special Series Finale (2007),Comedy +202401,The Hypnotist (2001),Comedy|Drama +202403,Ex-Patriot (2017),Thriller +202405,Marriage of the Blessed (1989),Crime|Drama|War +202407,"Darling, I Am Going Out For Cigarettes and I Will Be Right Back (2011)",(no genres listed) +202409,One Day (2017),Drama|Fantasy +202411,The Shameless (2015),Drama|Romance +202413,Punch (2011),Drama +202415,When Angels Sleep (2018),Drama|Thriller +202417,Northanger Abbey (1987),Drama|Romance +202419,Rum Runners (1971),Adventure|Comedy +202421,Rim of the World (2019),Action|Adventure|Comedy|Sci-Fi +202423,Wanda Sykes: Not Normal (2019),Comedy +202425,Joy (2018),Drama +202427,Breakthrough (2019),Drama +202429,Once Upon a Time in Hollywood (2019),Comedy|Drama +202431,Queen of Hearts (2019),Drama +202433,A Hidden Life (2019),Drama|War +202435,Beanpole (2019),Drama|War +202437,The Climb (2019),(no genres listed) +202439,Parasite (2019),Comedy|Drama +202441,Mia Martini - I Am Mia (2019),Documentary +202443,The Invisible Life of Eurídice Gusmão (2019),Drama +202445,Fire Will Come (2019),(no genres listed) +202447,On a Magical Night (2019),Comedy +202449,A Brother's Love (2019),Drama +202451,Corpsing (2013),Horror +202453,Hellbent (1988),Drama|Fantasy|Horror|Mystery +202455,High Moon (2019),Action|Horror|Western +202465,Pope Vs. Hitler (2017),Documentary|War +202467,School's Out (2019),Drama|Thriller +202469,A Date in 2025 (2017),Comedy|Drama +202471,The Arrival (2017),Comedy +202473,Whenever You're Ready (2018),(no genres listed) +202475,Cul-De-Sac (2016),Comedy|Drama +202477,I Know You from Somewhere (2017),Comedy|Drama +202479,Assimilate (2019),Horror|Sci-Fi|Thriller +202481,Cabin Fever (2000),(no genres listed) +202483,Chetzemoka's Curse (2001),(no genres listed) +202487,Walking with Cavemen (2003),(no genres listed) +202489,Wings of Life (2011),Documentary +202491,Vándorszínészek (2018),Comedy|Drama +202493,Once Upon a Time in China IV (1993),Action +202495,Avengement (2019),Action|Crime +202497,Les Misérables (2019),Crime|Drama +202499,Atlantics (2019),Drama +202501,Elvira's Haunted Hills (2002),Comedy|Horror +202509,The Legend of 5 Mile Cave (2019),Western +202511,Photograph (2019),Drama|Romance +202513,Winnie the Pooh: A Very Merry Pooh Year (2002),Animation|Children +202515,The Price of Honor (2014),(no genres listed) +202517,Kung Fu Panda: Secrets of the Scroll (2016),Action|Adventure|Animation|Children|Comedy +202519,Child's Play (2019),Comedy|Horror +202529,The Last Best Sunday (1999),Drama|Romance +202531,The Last Resort (2018),Documentary +202533,Game of Thrones: The Last Watch (2019),Documentary +202535,India's Most Wanted (2019),Action|Mystery|Thriller +202537,Othon (1971),Drama +202539,Cinderella and the Secret Prince (2018),Adventure|Animation|Children|Fantasy +202541,Plan Bee (2007),Animation +202543,Little Bee (2007),Animation|Children|Comedy +202545,La duquesa roja (1997),Comedy +202547,Good Sam (2019),Drama|Romance +202549,Caroline and Jackie (2013),Drama +202551,Psychic (2018),(no genres listed) +202553,Ghosts of Sugar Land (2019),(no genres listed) +202555,Snare (2019),Comedy|Drama +202557,The Phantom 52 (2019),Animation +202559,Nureyev (2018),Documentary +202561,Furie (2019),Action +202563,The Ballad of Josie (1967),Comedy|Western +202565,Kopy Kings,Comedy +202567,Let Me Die a Woman (1977),Documentary +202569,Dependent's Day (2016),Comedy +202575,Late Night (2019),Comedy|Drama +202577,In the mighty jungle (2019),Documentary +202581,Prometo no enamorarme (2018),Drama|Romance +202583,Camp Manna (2018),Comedy +202585,The Blind Spot (2017),Action|Crime|Drama|Thriller +202595,Ode to the Goose (2018),Drama +202597,Home on the Rails (1981),Animation|Comedy +202599,Enron: The Smartest Guys in the Room (2005),Documentary +202603,Shameless (2008),Comedy|Romance +202605,The Man Who Would Be Polka King (2009),Crime|Documentary +202615,"Sun, Hay and a Couple of Slaps (1989)",Comedy +202619,Lucky Loser (2012),Children|Comedy|Fantasy +202625,Akt (1997),Comedy +202627,Lijavec (1982),Comedy +202635,Záskok (1994),Comedy +202641,"Dumb Bobes, or Czech Tarzan (1971)",Comedy +202643,One Hand Can't Clap (2003),Comedy +202645,Smart Philip (2003),Comedy|Crime|Mystery +202665,A Nice Plate of Spinach (1977),Comedy|Sci-Fi +202671,How to Wake a Princess (1978),Children|Fantasy +202673,The Three Veterans (1984),Children +202677,Václav (2007),(no genres listed) +202695,Secrets of Henry VIII's Palace: Hampton Court (2013),Documentary +202697,Un Beau voyou (2019),Comedy +202699,Zoo (2019),Comedy|Drama|Horror|Romance +202701,Любить по-русски (1995),Drama|Romance +202703,Guru (1989),Action|Crime|Drama +202705,Crime Wave (2018),Comedy|Crime +202711,Deadwood: The Movie (2019),Western +202713,Voltaire (1933),Drama +202715,General Commander (2019),Action +202717,I Hate Kids (2019),Comedy +202719,Vellai Pookal (2019),Drama|Thriller +202721,M (2017),Drama +202723,Fury of the Dragon (1976),Action|Adventure|Crime +202725,"I Am an Ox, I Am a Horse, I Am a Man, I Am a Woman (1988)",Documentary +202727,Getting to Know the Big Wide World (1980),Drama +202729,Sunday (1961),(no genres listed) +202731,Among Grey Stones (1983),Drama +202733,All the Ships at Sea (2004),(no genres listed) +202735,Psychophobia (1982),Drama|Horror +202737,O Costa do Castelo (1943),Comedy|Romance +202741,Betting On The Bride (2017),Romance +202745,pickAxe (1999),Documentary +202747,St. Agatha (2019),Horror +202749,Portrait of a Lady on Fire (2019),Drama|Romance +202751,Guarapo (1989),Drama +202753,The Big Apartment (2006),Comedy +202755,Duane Hopwood (2005),Comedy|Drama +202757,Drop Squad (1994),Comedy|Drama +202759,Vampires on Bikini Beach (1988),Horror +202761,High Tech Soul: The Creation of Techno Music (2006),Documentary +202763,"Pioneers of Electronic Music, Volume 1: Richie Hawtin (2006)",Documentary +202765,Dollhouse (2012),Drama +202767,Dysmorphia (2014),Comedy|Horror|Sci-Fi +202769,RWBY: Volume 5,(no genres listed) +202773,Three (1969),Drama +202775,Adam & Evelyn (2019),Drama +202779,Cleo (2019),Comedy +202781,Ever After (2018),Horror +202783,In My Room (2018),(no genres listed) +202787,Only God Can Judge Me (2018),Drama|Thriller +202793,The Laughing Man (1966),Documentary +202795,Dreaming About You (1992),Comedy|Romance +202797,No Mercy (2019),Action +202799,The Poison Rose (2019),Crime|Mystery +202801,Atone (2019),Action|Thriller +202803,Anthony Jeselnik: Fire in the Maternity Ward (2019),Comedy +202805,Audre Lorde - The Berlin Years 1984 to 1992 (2012),Documentary +202807,Panic: The Untold Story of the 2008 Financial Crisis (2018),Documentary +202809,Child of Divorce (1946),Drama +202811,Yours (1997),(no genres listed) +202813,Football Stars (1974),Animation +202815,Radical Jack (2001),Action +202817,House of Deadly Secrets (2017),Thriller +202819,The Merry Wives of Windsor (1982),Comedy +202823,An Eastern Westerner (1920),Comedy|Western +202825,Exposé (1976),Thriller +202828,Dead Ant (2017),Comedy|Horror +202830,Lust in the Dust (1985),Action|Comedy|Western +202832,Bad (1977),Comedy|Crime|Horror +202834,The Prey (1984),Horror|Thriller +202836,Angel III: The Final Chapter (1988),Action|Thriller +202838,Burke & Hare (1972),Comedy|Horror +202840,The Annihilators (1985),Action|Crime|Drama +202842,Night of the Cobra Woman (1972),Horror|Thriller +202844,The Killing Time (1987),Action|Mystery|Romance|Thriller +202846,Alone in the T-Shirt Zone (1986),Comedy|Drama +202848,I Am Not a Freak (1987),Documentary +202850,Beethoven's Nephew (1985),Drama +202852,Home for Christmas (1990),Children|Drama|Fantasy +202854,Hard Traveling (1986),(no genres listed) +202856,Outcast (1990),Horror|Sci-Fi +202858,Beginner's Luck (1986),Comedy +202860,Place of Weeping (1986),(no genres listed) +202862,Among the Cinders (1985),Drama +202864,Reno and the Doc (1984),Comedy|Drama +202866,Roger Corman: Hollywood's Wild Angel (1978),Documentary +202868,Tenth of a Second,Thriller +202870,Time of tears,(no genres listed) +202872,"Monsters, Madmen & Machines: 25 Years of Science Fiction (1984)",Adventure|Documentary|Sci-Fi +202874,The Gunrunner (1983),Crime|Drama +202876,Roller Blade (1986),Action|Sci-Fi +202878,The Prize Fighter (1979),Children|Comedy|Crime +202880,Elisa & Marcela (2019),Drama +202882,Richard's Things (1980),Drama +202884,Creature with the Blue Hand (1967),Crime|Horror +202886,Heart of the Stag (1984),(no genres listed) +202888,Cleo/Leo (1989),(no genres listed) +202890,Die Watching (1993),Crime|Horror +202892,Apprentice to Murder (1988),Horror|Mystery +202894,Blonde in Black Leather (1975),Comedy|Drama|Thriller +202896,The Vineyard (1989),Horror|Sci-Fi +202898,Knights Of The City (1986),Action +202900,The Big Bust Out (1972),Crime +202902,The Sin of Adam and Eve (1969),(no genres listed) +202904,The Zoo Gang (1985),Drama +202906,Last Plane Out (1983),(no genres listed) +202908,Dead Men Don't Die (1990),Comedy|Crime|Horror +202910,Scream of the Demon Lover (1970),Horror +202912,The Cremators (1972),Sci-Fi +202914,Cross Country (1983),Crime|Horror|Thriller +202916,Beast of the Yellow Night (1971),Horror +202918,Covergirl (1984),(no genres listed) +202920,In the Aftermath (1989),(no genres listed) +202922,Uphill All The Way (1986),Comedy +202924,The Funny Farm (1983),Comedy|Drama +202926,Delivery Boys (1985),(no genres listed) +202928,Omega Syndrome (1986),Action +202930,Miss Mary (1986),(no genres listed) +202932,The Big Trip (2019),Adventure|Animation|Children|Comedy +202934,Anna (2019),Action|Thriller +202936,ReMoved (2013),Drama +202938,Raw Courage (1984),Action|Adventure|Horror|Thriller +202940,Two Idiots in Hollywood (1988),Comedy +202942,Tadpole and the Whale (1987),Adventure|Children +202944,Lumière (1976),(no genres listed) +202946,Curfew (1989),Horror|Thriller +202948,The Highest Honor (1982),Drama|War +202950,Eat and Run (1987),Comedy|Horror|Sci-Fi +202952,Deadly Harvest (1977),Drama|Sci-Fi +202954,Leopard in the Snow (1979),(no genres listed) +202956,Heart (1987),(no genres listed) +202958,I Believe in Santa Claus (1984),Children|Fantasy +202960,Hostage (1983),Drama +202962,Invasion Earth: The Aliens Are Here (1988),Comedy|Horror|Sci-Fi +202964,In 'N Out (1984),(no genres listed) +202966,Torment (1986),Crime|Horror|Mystery|Thriller +202968,L'addition (1984),Drama|Thriller +202970,Shadow Play (1986),Horror|Mystery +202972,City of Shadows (1987),Action|Thriller +202974,The Personals (1982),(no genres listed) +202976,Remember My Story - ReMoved Part 2 (2015),(no genres listed) +202978,Love is Never Wasted (2018),(no genres listed) +202980,Twisted Romance (2008),Drama|Romance +202982,A Trip (2012),Drama +202984,You I Love (2004),Comedy +202986,"Where Are You Going, Habibi? (2015)",Comedy|Drama|Romance +202988,4 Days (2017),Drama +202990,Caught in a Landslide (2018),(no genres listed) +202992,Thirty Years of Adonis (2017),Drama +202994,Marilyn (2018),Drama +202996,Paradise Lost (2018),Drama|Romance +202998,How to Get from Here to There (2019),Drama|Sci-Fi +203000,Give Me Your Hand (2008),Drama +203002,Isle of Dogs (2011),Action|Crime|Thriller +203006,The Outsider (2002),Action|Drama|Romance|Western +203010,Mystify: Michael Hutchence (2019),Documentary +203014,Man's First Friend,Documentary +203016,Squad Leader TD-73028 Soliloquy (2018),Drama|Sci-Fi +203018,7A (2018),Drama +203020,Funan (2019),Animation +203022,"Oh, Ramona! (2019)",Comedy|Romance +203024,Playing Hard (2019),Drama +203026,Mollywood (2019),Horror|Thriller +203028,Red Room (2017),Horror|Thriller +203030,Love for Sale (2018),Drama|Romance +203032,Death Zone: Cleaning Mount Everest (2018),Documentary +203034,The River and the Wall (2019),Documentary +203036,Twenty One Points (2018),Animation|Comedy +203038,The Final Land (2019),Drama|Sci-Fi +203040,Pachamama (2018),Adventure|Animation|Children|Fantasy +203042,Olen i volk (1950),Animation +203044,My Best Friend's Wife (2001),Comedy|Romance +203048,Diego Maradona (2019),Documentary +203050,Get Squirrely (2015),Animation|Children|Comedy +203052,Gone with the Bullets (2014),Action|Adventure|Comedy|Drama|Romance +203054,Eddie Izzard: Definite Article (1996),Comedy +203056,Eddie Izzard: Live at Madison Square Garden (2011),Comedy +203058,Edge of Honor (1991),Action|Adventure|Drama|Thriller +203060,Worlds of Ursula K. Le Guin (2018),Animation|Documentary +203062,Babes In Toyland (1987),Adventure|Children|Drama|Fantasy +203064,The Hotshots (1968),Comedy +203066,Light from Light (2019),(no genres listed) +203068,Get Big (2017),Comedy +203072,I Am Evidence (2017),Documentary +203074,Going Away (2013),Drama +203076,Deja Vu (2018),Mystery|Thriller +203078,Door Lock (2018),Thriller +203080,Hit-and-Run Squad (2019),Action|Crime +203082,Nora Prentiss (1947),Drama +203084,Flower and Snake (1974),Drama|Thriller +203086,Truth and Justice (2019),Drama +203090,The Announcement (2018),Drama +203110,Head Count (2018),Horror|Mystery|Thriller +203112,Walk. Ride. Rodeo. (2019),Drama +203118,Henry VIII (1979),Drama +203124,Loss of Feeling (1935),Fantasy|Sci-Fi +203126,No Vacancy (1999),Comedy|Drama|Romance +203128,I Was a Winner (2016),Documentary +203130,Cutterhead (2018),Thriller +203132,The Tomorrow Man (2019),Drama|Romance +203134,Curiosa (2019),Drama +203136,The Heart of Nuba (2016),Documentary +203138,Pressure Cooker (2008),Documentary +203140,Hard Justice (1995),Action +203142,The Sovereign's Servant (2007),Action|Adventure +203144,The Cleaning Lady (2018),Horror|Thriller +203146,The Last Whistle (2018),Drama +203148,Old Boys (2018),Comedy +203152,The Pool (2018),Action|Thriller +203154,Rolling Thunder Revue: A Bob Dylan Story by Martin Scorsese (2019),Documentary +203156,Love's Brother (2004),Romance +203158,Wild Honey (2017),(no genres listed) +203160,The Last Black Man in San Francisco (2019),Drama +203162,Fishing Without Nets (2014),Thriller +203164,Dublin Oldschool (2018),Drama +203166,Dog and Cat (1955),Animation|Children +203168,Снежные дорожки (1963),Animation +203170,Secrets in the Sky: The Untold Story of Skunk Works (2019),Documentary +203172,The Thief of Time (1992),Thriller +203174,Dusky Paradise (2016),Comedy|Drama +203176,Cinderella Pop (2019),Comedy|Romance +203180,Ducoboo 2: Crazy Vacation (2012),Comedy +203182,Desperate Remedies (1993),Drama +203184,Project Ithaca (2019),Sci-Fi|Thriller +203186,Ahockalypse (2018),Comedy|Horror +203188,I Hate Christian Laettner (2015),Documentary +203190,16 Sunrises (2018),Documentary +203192,Comme un seul homme (2019),Documentary +203196,The Fall of the Romanov Dynasty (1927),Documentary +203198,History Lessons (1972),Drama +203200,So You Want a Television Set (1953),(no genres listed) +203202,Killer Bean Forever (2009),Action|Animation +203204,Angel Dust (1994),Drama|Horror|Romance +203206,This Is Not Berlin (2019),Drama +203208,Scary Stories to Tell in the Dark (2019),Horror +203212,Deep Murder (2019),Comedy|Horror +203214,The Criminal and the Lady (1963),Crime|Mystery|Thriller +203218,Good Boys (2019),Comedy +203220,Being Frank (2019),Comedy +203222,The Lion King (2019),Adventure|Animation|Children|Drama +203224,Dora and the Lost City of Gold (2019),Adventure|Children|Comedy +203226,Two Ships (2012),Comedy|Drama +203228,Daughter of the Wolf (2019),Action|Thriller +203230,Submission (2019),Drama +203232,Bharat (2019),Action|Drama +203234,The Baader-Meinhof Gang on Trial (1986),Drama +203236,Cat Fishin' (1947),Animation|Comedy +203238,Deconstructing the Beatles' White Album (2016),Documentary +203240,Banket (1986),Animation +203242,Framing John DeLorean (2019),Documentary|Drama +203244,Shaft (2019),Action|Crime +203246,ReBoot - My Two Bobs (2001),Animation|Fantasy|Sci-Fi +203248,Like Grains of Sand (1995),Drama +203250,Tout ce qu'il me reste de la révolution (2019),Comedy|Drama +203252,Yocho (2018),Sci-Fi|Thriller +203254,Loqueesha (2019),Comedy|Drama +203256,Chopsticks (2019),Comedy|Drama +203258,The Calling (2000),Horror +203264,Ivashko i Baba-Yaga (1938),(no genres listed) +203266,Rodents of Unusual Size (2017),Documentary +203268,Lupt (2018),Horror|Thriller +203270,Aval (2017),Horror|Thriller +203272,Timon of Athens (1981),Drama +203274,You Never Know Women (1926),Drama|Romance +203278,Plus One (2019),Comedy|Romance +203280,Ask Dr. Ruth (2019),Documentary +203282,The School (2018),Horror|Mystery|Thriller +203284,Virgins from Hell (1987),Action|Crime +203286,Black Tight Killers (1966),Action|Crime|Drama|Thriller +203288,Summer Vacation 1999 (1988),(no genres listed) +203290,Check to the Queen (1969),Drama|Romance +203292,Inga (1968),Drama +203296,Purl (2019),Animation|Comedy +203298,Checkered Ninja (2018),Adventure|Animation|Comedy +203300,Infinity (1992),(no genres listed) +203302,The Black Godfather (2019),Documentary +203304,Andrew Bird: Fever Year (2011),(no genres listed) +203306,Vault (2019),Crime|Drama +203308,The Miracle of P. Tinto (1998),Comedy|Fantasy +203310,Excursion (2018),Mystery|Sci-Fi|Thriller +203312,The Way Things Go (1987),Documentary +203314,Dragonfyre (2013),Action|Adventure|Fantasy +203316,My Brother the Time Traveler (2017),Children|Comedy +203318,Waterloo po česku (2003),(no genres listed) +203320,The 3rd Eye 2 (2019),(no genres listed) +203322,The Peanut Butter Falcon (2019),Adventure +203324,The Perfume of Yvonne (1994),Drama|Romance +203326,Angelo My Love (1983),Drama +203328,Born Guilty (2017),Comedy|Drama|Romance +203330,The Awareness (2014),Drama|Sci-Fi +203334,16 Shots (2019),Documentary +203336,My Art (2016),(no genres listed) +203338,Life Overtakes Me (2019),Documentary +203340,Aristide and the Endless Revolution (2005),(no genres listed) +203348,Butterfly Sword (1993),Action|Adventure|Fantasy +203358,Working Slowly (2004),(no genres listed) +203360,Lucio (2007),(no genres listed) +203364,La malcasada (1927),Drama +203368,The Accused (2018),Thriller +203369,A Ship to India (1947),Drama +203371,Christmas with a View (2018),Children|Romance +203373,The Cold Blue (2018),Documentary|War +203375,Ford v. Ferrari (2019),Action|Drama +203379,Out of the Cradle (2018),Documentary +203381,Manhatta (1921),Documentary +203383,Skyscraper Symphony (1929),Documentary +203385,Un homme pressé (2018),Comedy +203387,A Bronx Morning (1931),Documentary +203389,Lot in Sodom (1933),Drama +203391,Живая игрушка (1982),Animation +203393,Escape Plan: The Extractors (2019),Action|Thriller +203395,Pavarotti (2019),Documentary +203397,Jo Koy: Comin’ In Hot (2019),Comedy +203399,Adam Devine: Best Time of Our Lives (2019),Comedy +203401,Fred 2: Night of the Living Fred (2011),Adventure|Children|Comedy|Horror +203403,Fred 3: Camp Fred (2012),Children +203405,Let's Kill Grandpa (2017),Comedy|Thriller +203407,The Tobacconist (2018),Drama +203409,The Attic Expeditions (2001),Comedy|Horror|Mystery|Thriller +203411,Ballets Russes (2005),Documentary +203413,The Russian Five (2018),Documentary +203417,#FollowMe (2019),Horror|Thriller +203419,A Deal With The Universe (2019),(no genres listed) +203421,The Night Sitter (2018),Comedy|Horror +203423,The Light Shines Only There (2014),Drama +203425,Keep Up the Good Work (2013),Comedy|Documentary +203429,Kiss Tomorrow Goodbye (1950),Crime|Thriller +203431,Sultry (2018),(no genres listed) +203433,TAD: Busted Circuits and Ringing Ears (2008),(no genres listed) +203435,Boots on the Ground (2017),(no genres listed) +203437,The Dark Mile (2017),(no genres listed) +203439,Pressing On: The Letterpress Film (2017),(no genres listed) +203441,Jewel Thief (1967),Crime|Drama|Mystery|Thriller +203443,Nero's Guests (2009),Documentary +203445,The Wannsee Conference (1987),Drama +203447,Salkım Hanım'ın Taneleri (1999),(no genres listed) +203449,The Lonely Island Presents: The Unauthorized Bash Brothers Experience (2019),Comedy +203451,The Capture (1950),Action|Drama|Western +203453,Remélem legközelebb sikerül meghalnod :) (2018),Thriller +203455,Shiritsu Bakaleya Koukou Movie (2012),Comedy|Romance +203457,An Assassin (2011),(no genres listed) +203459,Monsterz (2014),Horror|Sci-Fi|Thriller +203461,K: Missing Kings (2014),Action|Animation|Fantasy +203463,Hwang Jin Yi (2007),Drama|Romance +203465,"Fly, Daddy, Fly (2006)",Action|Drama +203467,Cinderella (2006),Drama|Horror|Mystery|Thriller +203469,The Case of Itaewon Homicide (2010),Crime|Mystery|Thriller +203471,Gabi (2012),Drama +203473,The Grand Heist (2012),Comedy +203475,Love in Magic (2005),Comedy|Romance +203477,Fasten Your Seatbelt (2013),Comedy +203479,The Magician (2015),Drama|Fantasy|Romance +203481,Endless Night (1972),Crime|Mystery|Thriller +203483,In Safe Hands (2018),Drama +203485,French Tour (2016),Comedy|Drama +203487,Age of Panic (2013),Comedy|Drama +203491,Best Intentions (2018),Comedy|Drama +203495,Sibyl (2019),Drama +203497,Zebra Stripes (2014),Comedy +203499,J'ai perdu Albert (2018),Comedy +203501,Catholics vs. Convicts (2016),Documentary +203503,Deerskin (2019),Comedy|Crime +203505,"Cassandro, the Exotico! (2018)",Documentary +203509,FP2: Beats of Rage (2018),(no genres listed) +203511,The Uncovering (2018),Drama|Thriller +203513,Annabelle Comes Home (2019),Horror +203515,French for Beginners (2006),Comedy|Romance +203517,The Angry Birds Movie 2 (2019),Action|Adventure|Animation|Children|Comedy +203519,Fast & Furious Presents: Hobbs & Shaw (2019),Action +203521,A Translator (2019),Drama +203523,Nightmare Cinema (2019),Horror +203525,Kate Can’t Swim (2017),Comedy|Drama +203527,Quicksand (1950),Crime|Drama|Romance +203529,Hold Back the Night (1956),Drama|War +203531,Vybíjená (2015),Comedy|Drama +203533,All Good (2018),Drama +203535,P.K. and the Kid (1987),Drama +203537,Vidas Partidas (2016),Drama +203539,Heel Kick! (2017),Comedy +203541,Thiruvilaiyadal Aarambam (2006),Comedy|Drama|Romance +203543,Kanda Naal Mudhal (2005),Comedy|Romance +203545,The House of Bernarda Alba (1987),Drama +203547,A Doll's House (1973),Comedy|Drama +203553,Curious Worlds: The Art & Imagination of David Beck (2015),Documentary +203557,Fisherman's Friends (2019),Comedy|Drama +203559,The Warden (2019),Drama|Mystery|Romance +203561,The Plagiarists (2019),Comedy|Drama +203563,Ambivalence (2019),Drama|Thriller +203565,Desert Age: A Rock and Roll Scene History (2016),Documentary +203569,Hunting the Phantom (2014),Action|Adventure|Sci-Fi +203571,The Weasel's Tale (2019),Comedy|Drama +203573,Moon Child (1989),Drama|Fantasy|Sci-Fi +203577,The Fall of Berlin (1945),Documentary|War +203583,Madrid (1987),Drama|Romance|War +203585,Avalanche (2019),(no genres listed) +203589,"Vente a Alemania, Pepe (1971)",Sci-Fi +203591,A Bomb Was Stolen (1961),Comedy|Fantasy|Sci-Fi +203593,Mike Epps: Only One Mike (2019),Comedy +203595,Gaijin: A Brazilian Odyssey (1980),Drama +203597,True to Life (1943),Comedy +203599,Northwest Hounded Police (1946),Animation +203601,Buck Benny Rides Again (1940),Comedy|Western +203603,Memory Games (2018),Documentary +203613,The Beau Brummels (1928),Comedy +203615,Nekrotronic (2018),Comedy|Horror|Sci-Fi +203617,Nudist Colony of the Dead (1991),Comedy|Horror +203619,ANIMA (2019),Romance +203621,Set Me Free (2014),Drama +203623,Default (2018),Drama +203627,The World of Silence (2006),Thriller +203629,Breakthrough (2005),Drama|War +203631,Muscle (1989),Drama|Horror|Thriller +203633,The Bribe (2018),Comedy|Crime +203635,Gol Kralı (1980),(no genres listed) +203637,Hostile Waters (1997),Drama|Thriller|War +203639,Yellowstone Cubs (1963),(no genres listed) +203641,Madcap Ambrose (1916),Comedy +203643,Body of the Prey (1970),Horror|Sci-Fi +203645,The New King of Comedy (2019),Comedy +203647,Ensign Pulver (1964),Comedy +203649,Beats (2019),Children|Drama +203651,Making Coco: The Grant Fuhr Story (2018),Documentary +203653,Interference (2018),Crime|Drama|Mystery +203655,Queen of Spades: Through the Looking Glass (2019),Horror|Thriller +203657,The Butt (1974),Children|Comedy|Drama +203659,Edge of Isolation (2018),Horror +203661,Dunya & Desie (2008),Drama +203663,The Lucky Dog (1921),Comedy +203667,Junglee (2019),Action|Adventure +203669,Viagem ao Fim do Mundo (1968),Drama +203671,Nowhere (2019),Drama|Thriller +203673,Favela Gay (2014),Documentary +203675,Adam and Eve (1983),Adventure|Romance +203677,VHS Lives: A Schlockumentary (2017),(no genres listed) +203679,Yves Saint Laurent: 5 avenue Marceau 75116 Paris (2002),Documentary +203681,Racetrack (1985),Documentary +203683,Killers Anonymous (2019),Action|Crime|Mystery|Thriller +203685,Tales of Poe (2014),Horror +203687,The Lady and the Monster (1944),Horror|Sci-Fi +203689,Imbued Life (2019),Animation +203691,The Edge of Democracy (2019),Documentary +203693,Working Woman (2019),Drama +203695,The Big Swindle (2004),Action +203697,Holy Lands (2019),Drama +203699,Dead Trigger (2017),Action|Horror +203701,Happy End (2009),Drama|Sci-Fi +203703,Mr. Rossi Looks for Happiness (1976),Animation|Children +203705,Perú: Tesoro Escondido (2017),Documentary +203707,"The Husbands, the Wives, the Lovers (1989)",Comedy|Drama +203709,Run After Me Until I Catch You (1976),Comedy +203711,Kalank (2019),Drama|Romance +203713,The End (2000),Comedy|Documentary +203715,Uptight (1968),Drama|Thriller +203717,Knox: The Life and Legacy of Scotland's Controversial Reformer,(no genres listed) +203719,Go With Le Flo (2014),(no genres listed) +203721,Enemy Gold (1993),Action|Adventure|Thriller +203723,The Enemy Within (1994),Drama|Thriller +203727,England Made Me (1973),Drama +203729,"Enola Gay: The Men, the Mission, the Atomic Bomb (1980)",War +203733,The House Where the Mermaid Sleeps (2018),Drama +203735,Masquerade Hotel (2019),(no genres listed) +203737,Amaya (1952),Drama +203739,Erotique (1995),Drama +203741,Escape: Human Cargo (1998),Action|Drama +203743,Into The Forest (2019),Horror +203745,Turma da Mônica: Laços (2019),Adventure|Children|Comedy +203747,Hanalei Bay (2018),Drama +203749,Heroic Losers (2019),Adventure|Comedy|Drama +203751,Katherine Ryan: Glitter Room (2019),Comedy +203753,Far from the Madding Crowd (1998),Drama|Romance +203757,"So Long, My Son (2019)",Children|Drama +203759,Four in the Afternoon (1951),(no genres listed) +203761,Abstronic (1952),(no genres listed) +203763,Bells of Atlantis (1952),(no genres listed) +203765,Gyromorphosis (1954),(no genres listed) +203767,"Hurry, Hurry! (1957)",(no genres listed) +203769,"N.Y., N.Y. (1957)",Documentary +203771,9 Variations on a Dance Theme (1967),(no genres listed) +203773,Castro Street (1966),(no genres listed) +203775,Guns of the Trees (1961),Drama +203777,"Love It, Leave It (1973)",(no genres listed) +203779,DL2 (Disintegration Line #2) (1970),(no genres listed) +203781,Transport..... (1970),(no genres listed) +203783,Sappho and Jerry (Parts I - III) (1978),(no genres listed) +203785,Ch'an (1983),(no genres listed) +203787,Seasons... (2002),(no genres listed) +203789,Left-Handed Fate (1965),Drama +203797,Excessive Force (1993),Action +203799,Cold Blood (2019),Action|Thriller +203801,Broken Hill Blues (2013),Drama +203803,Jimmie (2018),Drama +203805,Divine Love (2019),Drama|Sci-Fi +203807,Exiled (1998),Crime|Drama +203809,Attenborough's Life That Glows (2016),Documentary +203811,The Tattooed Stranger (1950),Crime|Drama +203813,Prince Vladimir (2006),Animation|Drama +203815,Guests (2019),Horror|Romance|Thriller +203817,Sisters of Death (1976),Horror|Mystery|Thriller +203819,In Praise of Nothing (2019),Documentary +203821,Virginia Minnesota (2019),Comedy|Drama +203823,Glory (2017),Drama +203825,Cassidy Way (2016),Drama|Thriller +203827,Getting Over (2018),Documentary +203829,Slaughterhouse Rock (1988),Horror +203831,Anabolic Life (2017),Thriller +203833,Landing Up (2017),Drama +203835,You Can't Watch This (2019),Documentary +203837,The Third Secret (1964),Crime|Drama|Thriller +203839,Wild Tango (1993),Drama +203847,Kumbalangi Nights (2019),Comedy|Drama|Romance +203849,Ishq (2019),Drama|Romance|Thriller +203853,The Clouded Yellow (1950),Crime|Drama|Mystery +203855,Saint Judy (2019),Drama +203857,They Made Me a Killer (1946),Drama|Thriller +203863,A Loaf of Bread (1960),War +203865,Girl Hate (2015),Comedy +203867,Carmine Street Guitars (2018),Documentary +203869,Saving Leningrad (2019),Action|Drama|War +203877,Suburban Sasquatch (2004),Horror +203879,The Nobodies (2018),Comedy|Drama|Horror +203881,Aziz Ansari: RIGHT NOW (2019),Comedy +203882,Dead in the Water (2006),Horror +203884,Emil and the Detectives (1964),Action|Adventure|Comedy|Crime +203886,Soul to Keep (2018),Horror|Thriller +203890,Manmadhan Ambu (2010),Comedy +203892,Double Nickels (1977),Action +203894,The African Lion (1955),Children|Documentary +203896,Streaker (2017),Comedy +203898,"I Love You, Now Die: The Commonwealth Vs. Michelle Carter (2019)",Documentary +203902,Simulacra (2014),Animation|Fantasy +203904,Blinded by the Light (2019),Comedy|Drama +203906,Satan's Blade (1984),Horror +203912,Who's Crazy? (1966),Drama +203914,The Rest Is Silence (2007),Comedy|Drama +203916,Brigade Miscellaneous on Alert (1971),Action|Comedy +203922,Sherlock: The Blind Banker,Crime|Mystery +203926,Five Million Dollar Life (2019),Mystery +203928,Echo in the Canyon (2019),Documentary +203930,Deadly Assistant (2019),Drama +203934,Freaks (2019),Sci-Fi|Thriller +203936,Zombies (2019),(no genres listed) +203938,China Not China (2018),Documentary +203940,Zeroville (2019),Comedy|Drama +203942,The Watchers: Beginning (2015),Adventure|Comedy|Crime +203946,Real Love (2019),Drama +203948,Kayak to Klemtu (2018),Adventure|Children +203950,Our Brand Is Crisis (2005),Documentary|Thriller +203952,The Watchers: The Last Hero (2015),Crime|Romance +203954,Take Me Somewhere Nice (2019),Drama +203956,Soul Mate (2016),Drama|Romance +203958,İlişki (1983),Drama +203960,South of St. Louis (1949),Western +203962,Go Back to China (2019),Drama +203964,The Wonderful Land of Oz (1969),Fantasy +203966,Kidnapping Stella (2019),Thriller +203970,The Last Hit Man (2008),Action|Crime|Thriller +203972,Parchís: The Documentary (2019),Documentary +203974,Okko's Inn (2018),Animation +203976,Masks (2011),Horror|Mystery|Thriller +203978,Attack of The Dead: Osovets (2018),War +203980,Immortality Corridor (2019),Drama|War +203982,Kesari (2019),Action|Drama +203984,The Conquest Of Siberia (2019),Drama +203986,Cobra Gypsies (2015),Documentary +203988,Ibiza (2019),Comedy +203996,Darvinte Parinamam (2016),Comedy|Drama +204002,Anarkali (2015),Romance|Thriller +204004,Jomonte Suvisheshangal (2017),Children|Comedy|Drama +204012,Kick That Habit (1989),(no genres listed) +204014,Blank Generation (1980),Romance +204016,Of Gods and the Undead (1970),Drama +204018,Point Blank (2019),Action|Thriller +204020,Malandro (1986),Comedy|Drama +204022,The Fall (1976),(no genres listed) +204026,Anna Boleyn (1920),Drama +204028,Sumurun (1920),Adventure|Drama|Romance +204030,Share (2019),Drama|Thriller +204034,The Scoundrel (1988),Comedy|Drama +204036,The Engagement Ring (1991),Comedy +204038,All For The Best (1997),Comedy|Drama +204040,Dressage (2018),Drama +204044,Zombiepura (2018),Comedy|Horror +204052,The Informer (1929),Drama +204054,Revenge of the Spacemen (2014),Comedy|Horror|Sci-Fi +204056,Lying and Stealing (2019),Crime|Drama +204058,Cyber Bandits (1995),Action|Sci-Fi|Thriller +204060,Francis Joins the WACS (1954),Comedy|Fantasy +204062,Redcon-1 (2018),Action|Horror +204064,"Frankenstein's Monster's Monster, Frankenstein (2019)",Comedy +204066,Terry the Tomboy (2014),(no genres listed) +204068,Jack of all Trades (2018),Documentary +204070,Wobble Palace (2018),Comedy|Drama|Romance +204072,Vinicius (2005),Documentary +204074,Innocent Witness (2019),Drama +204076,That Summer (2017),Documentary +204078,The Show Must Go On (2007),Action|Drama +204080,Crossroads (1937),(no genres listed) +204082,Return of the Kung Fu Dragon (1976),(no genres listed) +204084,Long Live the Mistress! (1947),(no genres listed) +204086,Early Spring (1963),Children|Drama|Romance +204090,Woman Basketball Player No. 5 (1957),Drama|Romance +204092,The Eternal Wave (1958),(no genres listed) +204094,Five Golden Flowers (1959),(no genres listed) +204096,Toki no Tabibito: Time Stranger (1986),Adventure|Animation|Romance|Sci-Fi +204098,Critters Attack! (2019),Comedy|Horror|Sci-Fi +204102,Ganja & Hess (1973),Drama|Horror +204104,Nannu Dochukunduvate (2018),Romance +204106,I Am Nero (2016),Drama +204110,Miracles of Thursday (1957),Children|Comedy|Fantasy +204114,Le glaive et la balance (1963),(no genres listed) +204116,Frenzy (2018),Horror|Thriller +204118,cursor,Sci-Fi +204120,The Science of Interstellar (2014),Documentary +204122,This Old Machine (2017),Thriller +204124,Still on the Run: The Jeff Beck Story (2018),Documentary +204126,Lies We Tell (2018),Crime|Romance|Thriller +204128,Best Before (2013),Comedy|Drama +204132,Secret Obsession (2019),Drama|Thriller +204134,Il padrone e l'operaio (1975),Comedy +204138,Love on the Vines (2017),Romance +204142,Qui m'aime me suive ! (2019),Comedy +204146,A Peacock's Tail (1946),Animation|Children +204150,Uncle Tom's Cabin (1927),Drama +204152,Vivarium (2019),Sci-Fi|Thriller +204154,Thunder and Lightning (1977),Action|Thriller +204156,Golden Youth (2019),Comedy|Drama +204158,Weathering with You (2019),Animation|Drama|Fantasy|Romance +204160,Naked Alibi (1954),Crime +204162,Little Ghost (1997),Adventure|Children|Fantasy +204164,Whispering City (1947),Drama|Thriller +204166,Monster Island (2019),Action|Sci-Fi +204168,Capri-Revolution (2018),Drama +204172,Super Cyclone (2012),Action|Sci-Fi +204176,Return to Horror Hotel (2019),Comedy|Horror|Sci-Fi +204178,Rome Express (1932),Thriller +204180,Goalie (2019),Drama +204182,Herbert West: Re-Animator (2017),Drama|Horror|Sci-Fi +204184,Ivy (1984),Drama +204186,Tylko nie mów nikomu (2019),Documentary +204188,UglyDolls (2019),Adventure|Animation|Children|Comedy|Fantasy +204190,Father (1966),Drama +204196,Fast Sofa (2001),Adventure|Comedy|Drama +204198,DeadTectives (2018),Comedy|Horror +204200,Pihu (2018),Drama|Thriller +204202,The Dark Within (2019),Horror +204204,Journey Through the Black Sun (1982),Sci-Fi +204206,THE BEKSIŃSKIS. A Sound and Picture Album (2017),Documentary +204208,Handle with Care (2017),Drama +204210,"Excuse Me, Is It Here They Beat Up People? (1976)",Action|Comedy|Crime +204212,End of the century (2019),Drama +204214,Burn Out (2017),Action|Thriller +204216,Inside Job (1946),Crime|Drama +204218,Roundabout American (2012),Comedy +204220,Deadly Pickup (2016),Thriller +204222,The Far Green Country (2018),Documentary +204224,07/27/1978 (2017),Comedy|Documentary +204226,The Extreme Adventures of Super Dave (2000),Action|Comedy +204228,No Contest II (1997),Action|Crime|Thriller +204230,Shut Up and Play the Piano (2018),Documentary +204232,Hollywood and Vine (1945),Comedy|Drama +204234,Hallowed Ground (2019),Horror +204236,Sunset Murder Case (1938),Crime|Drama|Mystery +204238,Fabiola (1949),Drama +204240,The F Word (2005),Drama +204246,Sword of Trust (2019),Comedy|Drama +204248,Waiting for the Storm,(no genres listed) +204250,The Summer of All My Parents (2016),Comedy|Drama +204252,Deadpool Musical: Beauty and the Beast Gaston Parody (2017),Comedy|Romance +204254,Schlock (1973),Comedy|Horror|Sci-Fi +204256,Whistle Stop (1946),Crime|Drama +204258,Wiretapper (1955),(no genres listed) +204260,Asher (2018),Action|Drama|Thriller +204264,Supervized (2019),Comedy +204266,First Time Felon (1997),Drama +204268,Rambo: Last Blood (2019),Action +204270,Romeo and Juliet: Shakespeare's Globe Theatre (2010),Drama|Romance +204272,The Vultures on the Road (1990),Action|Crime|Thriller +204274,Manhandled (1949),Crime|Drama +204276,Vita segreta di Maria Capasso (2019),Crime|Drama|Romance +204278,The Cry Baby Killer (1958),Crime +204284,Shadows Run Black (1984),Horror +204288,Open Secret (1948),Crime|Mystery|Thriller +204290,Eyes of the Beholder (1992),Horror|Mystery +204292,Aaliyah: The Princess of R&B (2014),Drama +204294,The Great Hack (2019),Documentary +204296,Shame of the Jungle (1975),Adventure|Animation|Comedy +204298,Walk the Dark Street (1956),Crime|Drama +204302,Ek Ladki Ko Dekha Toh Aisa Laga (2019),Comedy|Drama|Romance +204304,Leningrad: Kolshik (2017),Action|Comedy +204308,Above the Shadows (2019),Fantasy +204310,A Few Kilos of Dates for a Funeral (2006),Drama +204312,Only You (2019),Drama|Romance +204316,Transatlantic (1931),Comedy|Drama|Thriller +204318,The Nightingale (2019),Drama +204320,Space Fury (1999),Action|Adventure|Sci-Fi +204322,Alien Intruder (1993),Sci-Fi +204324,Finish Line (1989),Drama +204326,A*P*E (1976),Adventure|Horror|Sci-Fi +204328,After the Wedding (2019),Drama +204330,Park (2006),Comedy +204334,The Room (2019),Fantasy|Thriller +204336,Secret Origin: The Story of DC Comics (2010),Documentary +204338,White Nights (2003),(no genres listed) +204340,Our Time (2018),Drama +204342,General Magic (2019),Documentary +204344,Come Together (2008),(no genres listed) +204346,The Curious Adventures of Mr Wonderbird (1952),Animation|Fantasy +204350,Blessings: The Tsoknyi Nangchen Nuns of Tibet (2009),Documentary +204352,Ad Astra (2019),Adventure|Drama|Mystery|Sci-Fi|Thriller +204354,Mondo Elvis (1984),Documentary +204356,Billion (2019),Action|Comedy +204358,Fog Island (1945),Horror|Mystery|Thriller +204360,Johnny Come Lately (1943),(no genres listed) +204362,Our Shining Days (2017),Comedy|Drama|Romance +204364,La fête des mères (2018),Comedy|Drama +204366,One Piece: Baron Omatsuri and the Secret Island (2005),Action|Animation|Comedy +204370,Night Must Fall (1964),Thriller +204372,The Olsen Gang in a Fix (1969),Children|Comedy|Crime +204374,The Olsen Gang's Big Score (1972),Children|Comedy|Crime +204376,The Olsen Gang Goes Crazy (1973),Children|Comedy|Crime +204380,The Olsen Gang Outta Sight (1977),Children|Comedy|Crime +204384,The Olsen Gang Goes to War (1978),Children|Comedy|Crime +204386,The Last Exploits of the Olsen Gang (1974),Children|Comedy|Crime +204388,Honeyland (2019),Documentary +204390,Captain Black (2019),Drama +204394,Our New President (2018),Documentary +204396,Blonde Animals (2019),Comedy|Drama +204398,Yara (2018),Drama +204400,The Disappearance of My Mother (2019),Documentary +204406,"Murder Me, Monster (2019)",Horror +204410,Anjaneya (2003),Action|Thriller +204420,Game Changers: Inside the Video Game Wars (2019),Documentary +204422,Voyage to Metropolis (2010),Documentary|Drama|Sci-Fi +204430,Sources of Life (2013),(no genres listed) +204436,Chuchotage (2018),Comedy|Drama|Romance +204438,Gone with the Woman (2007),Comedy|Drama|Thriller +204440,A Place On Earth (2013),Drama +204442,Puss 'N Boots Travels Around the World (1976),Adventure|Animation|Comedy +204444,Kharms (2017),Drama +204446,Extraction Day (2014),Action +204448,Fail State (2018),Documentary +204450,Strawinsky and the Mysterious House (2012),Animation|Children +204452,Netflix Live (2017),(no genres listed) +204458,Кикос (1979),(no genres listed) +204466,Wavelength (1983),Sci-Fi +204470,Much Ado About Nothing: Shakespeare's Globe Theatre (2012),Comedy|Drama +204472,Animals (2019),Comedy|Drama +204474,The Chambermaid (2019),Drama +204478,Accumulator 1 (1994),Comedy|Fantasy +204480,Nineteen Eighty-Four (1954),Drama|Sci-Fi +204482,Julia Is (2017),Drama +204488,The Lurking Man (2018),Drama|Fantasy|Horror +204490,Drifters (1929),(no genres listed) +204492,The Nutt House (1992),(no genres listed) +204494,On Any Sunday II (1981),Comedy|Documentary|Romance +204496,Skin (2019),Drama +204498,Island of the Dead (2000),Horror|Thriller +204500,A Bluebird in My Heart (2018),Thriller +204504,Marvel Rising: Heart of Iron (2019),Action|Animation|Sci-Fi +204506,The Dip Run (2018),(no genres listed) +204508,The Unforgiving (2010),Horror|Thriller +204510,Darker than Night (2018),Thriller +204512,Amityville: Mt Misery Road (2018),Horror +204514,Demons (2017),Horror +204516,The Last Prosecco (2017),Comedy|Mystery +204518,The Chaos Class Is Fretting Over (1978),(no genres listed) +204520,"Parole, Inc. (1948)",Crime|Drama|Thriller +204522,The Son (2019),Thriller +204524,Jinpa (2019),Drama +204526,Baby (2008),Crime|Drama|Thriller +204528,All Summer in a Day (1982),Children|Sci-Fi +204530,Girls with Balls (2019),Comedy|Horror +204534,Northern Wind (2018),Drama +204536,Les Affamés (2018),Comedy +204538,Bottom of the 9th (2019),Crime|Drama +204540,1st Summoning (2019),Horror +204542,It: Chapter Two (2019),Horror +204546,Money Madness (1948),Thriller +204548,Whitney Cummings: Can I Touch It? (2019),Comedy +204552,Hormigas (2019),(no genres listed) +204554,A Life at Stake (1955),Drama +204556,Otherhood (2019),Comedy +204558,The Red Sea Diving Resort (2019),Drama|Thriller +204560,Avisa a Curro Jiménez (1978),(no genres listed) +204562,The Dwarves of Demrel (2018),Fantasy|Horror|Thriller +204564,Нехочуха (1986),Animation +204566,Summer Snow (1995),Comedy|Drama +204568,Confusion of Genders (2000),Comedy|Drama|Romance +204570,Early One Morning (2011),Drama +204572,Netherbeast Incorporated (2007),Comedy|Drama|Horror +204574,All That She Wants (2008),Drama +204576,Hi Stranger (2017),Animation +204578,The Green Book: Guide to Freedom (2019),Children|Drama +204580,Martial Law II: Undercover (1991),Action|Crime +204582,Life in a... Metro (2007),Drama|Romance +204584,Belzebuth (2019),Horror +204586,The Noonday Witch (2016),Horror|Thriller +204588,Young Rebels (1989),Action +204590,Campus Special Investigator Hikaruon (1987),Action|Animation|Sci-Fi +204592,Man Underground (2017),Drama|Sci-Fi +204594,Promises! Promises! (1963),Comedy|Romance +204596,Agent of Influence (2002),Thriller +204598,The Same Blood (2019),Drama|Mystery|Thriller +204600,Shed No Tears (1948),Crime|Drama +204602,Fly By Night (2019),Action|Crime|Mystery|Thriller +204606,Obey (2018),Drama +204608,Me and My Sister (2004),Comedy|Drama +204610,Children of the Sea (2019),Animation|Drama|Fantasy +204612,Kızım İçin (2013),Drama +204614,The Kindly Lion (1970),Animation|Children +204616,Running on Empty (1982),Action|Drama +204618,L'Enfant Secret (1979),Drama +204620,Into the Dark: School Spirit (2019),Horror +204622,Girl from Phantasia (1993),Animation|Comedy|Drama|Fantasy|Romance +204624,The Return of Godzilla (1984),Action|Sci-Fi +204626,Dead Space (1991),Horror|Sci-Fi +204628,Elvis Presley: The Searcher (2018),Documentary +204630,Coyote Lake (2019),Thriller +204632,Technological Threat (1988),Animation +204634,Foes (1977),Sci-Fi +204636,Crystal's Shadow (2019),Sci-Fi +204638,Jeremy Scott: The People's Designer (2015),Documentary +204640,Grappler Baki (1994),Action|Animation +204642,Genesis (2004),Documentary +204644,Mikhael (2019),Action|Children|Thriller +204646,The Man from Majorca (1984),Action|Crime|Thriller +204648,Witch Hunt (1994),Crime|Horror|Mystery +204652,Abuzer Kadayıf (2000),Comedy|Drama +204654,Chase (2019),Action|Thriller +204656,A Score to Settle (2019),Action|Drama|Thriller +204658,Daughter of the Dragon (1931),Crime|Drama +204662,Gude Crest: The Emblem of Gude (1990),Adventure|Animation|Fantasy +204664,Hanappe Bazooka (1992),Action|Animation|Comedy +204672,Gwen (2019),Drama|Mystery +204674,Snake and Whip (1986),Drama|Thriller +204676,Hoshizora Kiseki (2006),Animation|Fantasy|Sci-Fi +204678,Hotori - The Simple Wish for Joy (2005),Animation|Drama|Sci-Fi +204680,Mickey Cuts Up (1931),Animation +204684,The Fourth Man (2007),Action|Mystery|Thriller +204688,The Informer (2019),Crime|Drama +204690,Eli,(no genres listed) +204692,In the Tall Grass,Drama|Horror|Thriller +204694,Spies in Disguise (2019),Action|Adventure|Animation +204696,Brahms: The Boy II (2019),Horror|Mystery|Thriller +204698,Joker (2019),Crime|Drama|Thriller +204700,Jacob's Ladder (2019),Horror +204702,"Where'd You Go, Bernadette (2019)",Comedy|Drama +204704,Ready or Not (2019),Comedy|Horror|Thriller +204710,Extra Ordinary. (2019),Comedy|Fantasy +204712,Marianne & Leonard: Words of Love (2019),Documentary +204714,The Man with My Face (1951),Mystery|Thriller +204720,Writers Retreat (2015),(no genres listed) +204722,The Bead Game (1977),Animation +204724,Eyes of the Underworld (1942),Crime|Drama +204730,Bad Parents (2012),Comedy|Drama +204732,Selling Isobel (2018),Drama|Thriller +204734,Anna e Yusef (2015),Drama +204736,The Bloody Brood (1959),Crime|Drama|Thriller +204740,Miss Arizona (2018),Comedy|Drama +204750,Ode to Joy (2019),Comedy +204752,Shadows on the Stairs (1941),Mystery|Thriller +204754,Nobuko (1940),Drama +204756,Strange Gardens (2003),Comedy|Drama +204764,The Black Doll (1938),Crime|Mystery +204766,Journey on the Plain (1995),Drama +204768,Land of Hope and Glory (2017),Documentary +204770,1013 Briar Lane,Horror +204772,The Doors: Mr. Mojo Risin' - The Story of LA Woman (2012),Documentary +204774,A Haunting On Dice Road 2: Town of the Dead (2017),Documentary|Drama|Horror +204776,A Haunting on Dice Road: The Hell House (2016),Documentary|Drama|Horror +204778,A Haunting on Hamilton Street 2: The Stable (2011),Documentary|Drama|Horror +204780,Voilà l'enchaînement (2014),Drama +204782,Interview with a Poltergeist (2007),Documentary +204786,Jaulas (2018),Thriller +204788,Changeland (2019),Comedy|Drama +204790,Michael Jackson: Searching for Neverland (2017),Drama +204794,Diggerz: Black Lung Rises (2019),Horror +204796,The Sun Sets at Dawn (1950),Crime|Drama +204798,Street of Chance (1942),Mystery +204802,The Family (2019),Documentary +204804,Bob Saget: Zero to Sixty (2017),Comedy +204806,Barbarossa (2009),Drama +204808,Ramy Youssef: Feelings (2019),Comedy +204810,Digimon Adventure Tri. - Chapter 1: Reunion (2015),Adventure|Animation +204812,Digimon Adventure Tri. - Chapter 2: Determination (2016),Adventure|Animation +204814,Digimon Adventure Tri. - Chapter 3: Confession (2016),Adventure|Animation +204816,Digimon Adventure Tri. - Chapter 4: Loss (2017),Action|Adventure|Animation +204818,Digimon Adventure Tri. - Chapter 5: Coexistence (2017),Adventure|Animation +204820,Digimon Adventure Tri. - Chapter 6: Future (2018),Animation +204822,Magical Sisters Yoyo & Nene (2013),Adventure|Animation|Fantasy +204824,The Lieutenant Wore Skirts (1956),Comedy +204826,The Kitchen (2019),Crime|Drama +204830,The Case of the Morituri Divisions (1985),Crime|Drama|Sci-Fi +204832,Rocko's Modern Life: Static Cling (2019),Animation|Comedy +204834,Danger Close: The Battle of Long Tan (2019),Action|Drama|War +204836,The Art of Racing in the Rain (2019),Comedy|Drama +204838,Derren Brown: The Great Art Robbery (2013),Documentary +204840,The Operative (2019),Thriller +204842,Jinxed (2013),Children|Comedy|Fantasy +204844,Winter Ridge (2018),Thriller +204846,Fair of the Dove (1963),Comedy +204848,American Rescue Squad (2015),Action|Comedy +204850,Fukushima: A Nuclear Story (2015),Documentary +204852,Adriano Olivetti – The Strength of a Dream (2013),Drama +204854,Toxic Crusaders: The Movie (1997),Animation|Comedy +204856,On the Trail of Igor Rizzi (2006),(no genres listed) +204858,Izzy & Moe (1985),Comedy|Crime +204864,Plunder Road (1957),Crime|Drama +204866,I Am. (2012),Documentary +204868,Light of My Life (2019),Drama +204874,Inside Planet Earth (2009),Documentary +204876,Transfert per camera verso Virulentia (1967),Documentary +204878,Dolemite Is My Name (2019),Comedy|Drama +204880,Go Orgonauts! (1970),Sci-Fi +204882,Peer Gynt (1934),(no genres listed) +204890,The Singularity Is Near (2010),Documentary +204892,World Without Sun (1964),Documentary +204896,Ne skazhu (2010),(no genres listed) +204898,Burdock,(no genres listed) +204900,The Spot (2005),Drama +204902,Moscow Gigolo (2008),Drama +204910,The Second Front (2005),Action|Romance|War +204912,The Return of Musketeers or the Treasure of Cardinal Mazarini (2009),Adventure|Sci-Fi +204914,The Stone (2011),(no genres listed) +204916,"Walker, Texas Ranger Trial by Fire (2005)",Action|Thriller +204918,Bride at any Cost (2009),Comedy|Romance +204920,"Careful, monkeys! (1984)",Animation +204924,The Ancient Woods (2018),Documentary +204926,"Bomb, Yek Asheghaneh (2018)",Drama|War +204928,Discovery Nazis: The Occult Conspiracy (1998),Documentary +204936,Pirates of Ghost Island (2007),Horror +204938,Netherworld (1992),Horror +204942,The Emperor of Peru (1982),(no genres listed) +204946,Rolling Vengeance (1987),Action|Drama|Thriller +204948,Rope of Sand (1949),Action|Drama|Thriller +204954,Il grande freddo (1971),(no genres listed) +204966,Luce (2019),Drama +204970,The Middle of the World (1974),Drama|Romance +204972,Zeitgeist: Beyond The Pale (2012),Documentary +204974,Десять минут первого,Comedy +204976,Think Big (1989),Comedy +204980,Roll Red Roll (2019),Documentary +204982,9 (2009),Comedy +204986,Slippery Slope (2006),Comedy|Romance +204990,Building Star Trek (2016),Documentary +204992,Estar o no estar (2015),(no genres listed) +204994,Iceman: The Time Traveler (2018),Action|Comedy +204996,Anarchist from Colony (2017),Drama +204998,Land of the Bears (2014),Documentary +205002,The Irony of Love (2010),Comedy|Romance +205004,Startup (2014),Drama +205006,Gutter King (2010),Action +205008,All Stars (2013),Children|Comedy +205010,The Evil Spirit of Yambuy (1977),Adventure|Drama +205012,Breaking Loose (2014),Action|Romance +205014,Some Like It Cold (2014),Comedy|Romance +205016,Reshala (2012),Crime|Drama +205018,Lost in Siberia (1991),Drama|Romance +205020,Everything Is Simple (2012),Comedy|Drama|Romance +205022,With Left Hand Only (2015),Comedy|Fantasy|Romance +205024,Reed Paradise (1989),Action|Drama|Thriller +205026,Savoy (1990),Action +205028,My Universities (1940),(no genres listed) +205030,Watchmaker (2013),Action|Crime|Drama +205034,The Alphabet Murders (1965),Comedy|Crime|Mystery +205036,The Ground Beneath My Feet (2019),Drama +205038,1/1 (2018),Drama +205040,Stagecoach: The Texas Jack Story (2016),Western +205042,The Blue Years (2017),(no genres listed) +205044,I Needed Color (2017),Documentary +205046,Hells (2008),Action|Animation|Comedy|Fantasy +205048,21 Bridges (2019),Action|Crime|Thriller +205052,Flowers from Another World (1999),Comedy|Drama|Romance +205054,Hustlers (2019),Comedy|Crime|Drama +205058,Everybody in The Place: An Incomplete History of Britain 1984-1992 (2018),(no genres listed) +205060,Meow Wolf: Origin Story (2018),Documentary +205062,Buffalo Boy (2005),Drama +205064,Driven (2019),Drama|Thriller +205066,Nezha (2019),Animation|Comedy|Fantasy +205068,The French Revolution (2005),Documentary +205070,Yuli (2018),Drama +205072,Zombieland: Double Tap (2019),Action|Comedy|Horror +205074,Falling Inn Love,Comedy|Romance +205076,Downton Abbey (2019),Drama +205078,Comingled Containers (1997),(no genres listed) +205080,"Ay, mi madre! (2019)",Comedy +205082,Invader ZIM: Enter the Florpus (2019),Animation|Children|Comedy|Sci-Fi +205090,Eerie (2018),Crime|Horror|Thriller +205094,El Americano: The Movie (2016),Animation|Children +205102,Te Ata (2017),Drama +205106,Can You Keep a Secret? (2019),Comedy|Romance +205108,I Hope for You (1992),Drama|Romance +205110,Yarik (2008),Drama +205112,Belaja strela (2007),Action|Crime|Drama +205114,Out Stealing Horses (2019),Drama +205116,Slide (2013),Action|Crime|Drama +205118,Cracking the Da Vinci Code (2004),Documentary +205120,An Easy Life (1964),Comedy|Romance +205122,"Geek, and You Shall Find (2019)",Documentary +205124,Pele Forever (2004),Documentary +205126,Authentic (2012),(no genres listed) +205128,Sherlock: The Empty Hearse (2013),(no genres listed) +205130,The Death of Dick Long (2019),Comedy|Crime|Drama +205132,"I, Dolours (2018)",Documentary +205134,The Amazing Johnathan Documentary (2019),Comedy|Documentary +205136,From Hell to the Wild West (2017),Western +205140,Kuroido Goroshi (2018),(no genres listed) +205142,Cold Case Hammarskjöld (2019),Documentary +205144,La capture (2007),Drama +205146,Sextuplets (2019),Comedy +205148,Blurt! (2018),Children|Comedy +205150,His Wooden Wedding (1925),Comedy +205152,Ma and Pa Kettle (1949),Comedy +205154,Snow (1963),Documentary +205156,Jojo Rabbit (2019),Comedy|War +205158,Wonder Garden (2013),Animation|Fantasy +205160,Woodstock: Three Days that Defined a Generation (2019),Documentary +205162,Je promets d'être sage (2019),Comedy +205164,Grauzone (1979),(no genres listed) +205166,Death Row Diner (1988),Horror +205168,Sticky Fingers (1988),Comedy +205170,Traxx (1988),Action|Comedy +205172,That's Adequate (1989),Comedy +205174,Minutes to Midnight (2018),Action|Horror +205176,Future Shock (1972),Documentary +205178,Odd Jobs (1986),Comedy +205180,Time Troopers (1985),Action|Sci-Fi +205182,Programmed to Kill (1987),Action|Horror|Sci-Fi +205184,Curse of the Queerwolf (1988),Comedy|Horror +205186,Monolith (1993),Action|Sci-Fi +205188,Henri 4 (2010),Drama|War +205190,Mike Wallace Is Here (2019),Documentary +205192,White Chamber (2018),Drama|Sci-Fi +205194,Stripper (1986),Documentary +205196,Men Must Fight (1933),Drama|Sci-Fi|War +205198,Horrible Histories: The Movie - Rotten Romans (2019),Children|Comedy +205200,Master Spy (2016),Adventure|Children +205205,47 Meters Down: Uncaged (2019),Adventure|Horror|Thriller +205257,63 Up (2019),Documentary +205259,Monty Python: The Meaning of Live (2014),Comedy|Documentary +205261,Mister Rogers: It's You I Like (2018),Documentary +205263,Atlantis of the Russian North (2015),Documentary +205265,Unmasking Jihadi John: Anatomy of a Terrorist (2019),Documentary +205267,The Aspern Papers (2019),Drama +205269,Horror in the East: Japan and the Atrocities of World War II (2000),Documentary|War +205271,Black Mother (2018),Documentary +205273,Running with Beto (2019),Documentary +205275,Camp wedding (2019),Comedy|Horror|Mystery +205277,Inside Out (1991),Comedy|Drama|Romance +205279,The Passion of Martin (1991),Comedy +205281,The Nightshifter (2018),Horror|Thriller +205283,The Kaos Brief (2016),Horror|Sci-Fi +205285,4x4 (2019),Thriller +205287,Bacurau (2019),Action|Adventure|Drama|Mystery +205289,West and Soda (1965),Animation|Comedy|Western +205291,Badla (2019),Crime|Drama|Mystery|Thriller +205293,Polar Bear: Spy on the Ice (2011),Documentary +205295,No Beast So Fierce (2016),Drama|Thriller +205297,Gemini Man (2019),Action|Drama|Sci-Fi|Thriller +205299,Whistle (2002),Drama|Sci-Fi|Thriller +205301,Running Out of Time (2018),Thriller +205303,Sherlock: The Abominable Bride (2016),Crime|Drama|Mystery +205305,Sherlock: The Reichenbach Fall (2012),(no genres listed) +205309,Explosion of a Motor Car (1900),Comedy|Horror +205311,The Soul-Mate (2018),Comedy|Crime|Fantasy +205313,The Witness (2018),Thriller +205315,Money (2019),Crime +205321,Awe! (2018),Action|Drama|Romance +205323,Adyutant ego prevoskhoditelstva (1970),Adventure|Romance|War +205325,Jim Gaffigan: Quality Time (2019),Comedy +205327,Motherless Brooklyn (2019),Crime|Drama +205329,"The Gangster, The Cop, The Devil (2019)",Action|Crime +205331,Sekreter (1985),(no genres listed) +205333,The Pied Piper of Hamelin (1957),Fantasy +205335,Scared Topless (2015),Comedy|Horror|Mystery|Romance +205337,Momentum Generation (2018),Documentary +205339,Tone-Deaf (2019),Comedy|Horror|Thriller +205341,Island: Wedding of the Zombies (2010),Comedy|Horror +205345,Payback (2007),Crime|Drama +205351,Sex After Kids (2013),Comedy +205357,For My Brother (2014),Drama +205359,Ball Lightning (1979),Comedy +205361,Simon Amstell: Set Free (2019),Comedy +205365,Prelude (2019),Drama +205367,The Market: A Tale of Trade (2008),(no genres listed) +205369,22nd of May (2010),Drama|Fantasy|Thriller +205371,Black Sabbath: The End of The End (2017),Documentary +205373,Escape from Afghanistan (2002),Action|War +205375,The Colour Merchant (1998),Documentary +205377,Jo Koy: Live from Seattle (2017),Comedy +205379,Article 15 (2019),Crime|Drama +205381,The Lumber Baron (2019),Drama +205383,El Camino: A Breaking Bad Movie (2019),Crime|Drama|Thriller +205385,Tremors (2019),Drama +205387,Mountains of the Wolf (2003),Documentary +205389,Japan's War In Colour (2003),Documentary|War +205391,Sleepwalking Land (2008),Drama +205393,Gates of Hell 2: Dead Awakening (1988),Horror +205395,Raatchasi (2019),Drama|Thriller +205397,The Device (2014),Horror|Sci-Fi|Thriller +205399,Sherlock: The Lying Detective (2017),(no genres listed) +205403,Teacher (2019),(no genres listed) +205405,Inventing Tomorrow (2019),Documentary +205407,Day Zero (2007),Drama +205413,The Laurel-Hardy Murder Case (1930),Comedy|Crime +205415,Calum Von Moger: Unbroken (2019),Documentary +205417,Hot Air (2018),Drama +205419,RSC Live: King Lear (2016),Drama +205421,The Banana Splits Movie (2019),Action|Comedy|Horror|Mystery +205423,Out of Time (2000),Drama|Fantasy +205425,Dave Chappelle: Sticks & Stones (2019),Comedy +205427,Islam: Empire of Faith (2001),Documentary +205429,The Real Life of Johannes Pääsuke (2019),Adventure|Comedy|Documentary +205431,Garry Winogrand: All Things Are Photographable (2018),Documentary +205433,Alone in Four Walls (2008),Documentary +205435,On Ice (1935),Animation +205437,Soekarno (2013),Documentary|Drama +205439,Armstrong (2019),Documentary +205441,Marriage Story (2019),Comedy|Drama +205443,D-Day Assassins (2019),War +205445,Dilili in Paris (2018),Animation +205447,Saga of Tanya the Evil Movie (2019),Animation +205449,Walkover (1965),(no genres listed) +205451,Diamanti (2018),Crime|Drama|Thriller +205453,The Good Fight: The Abraham Lincoln Brigade in the Spanish Civil War (1984),Documentary +205455,When the Mountains Tremble (1983),Documentary +205457,Vietnam: The Secret Agent (1983),(no genres listed) +205459,Seventeen (1984),Documentary +205461,#Stuck (2014),Comedy|Drama|Romance +205463,Jurassic Predator (2018),Action|Adventure|Comedy +205465,Student of the Year 2 (2019),Comedy|Drama|Romance +205469,Yugotrip (2004),Drama +205473,Bait (2019),Drama +205475,Killing Michael Jackson (2019),Documentary +205479,Hunting the KGB Killers (2017),Documentary +205481,Eye of the Beholder: The Art of Dungeons & Dragons (2018),(no genres listed) +205483,Uncorked (1999),Comedy|Romance +205485,Gideon of Scotland Yard (1958),Action|Crime|Drama +205489,Great Guns (1927),Animation +205491,All Wet (1927),Animation +205493,100 Yards (2019),Drama +205499,Getting an Eyeful (1938),(no genres listed) +205501,Free of Eden (1999),(no genres listed) +205503,Clown (2019),Horror +205505,Rival Romeos (1928),Animation +205507,The Monk of Monza (1963),Comedy +205509,The Goldfinch (2019),Drama +205511,Present.Perfect. (2019),Documentary +205513,Angelo (2019),Drama +205515,The Wild Goose Lake (2019),Crime|Drama +205517,"Harri Pinter, Drecksau (2017)",Comedy +205523,13 Graves (2019),Horror +205525,The Odd Way Home (2013),Drama +205527,Women He's Undressed (2015),Documentary +205529,Hotel Splendide (2000),Comedy +205531,Hitler in Colour (2005),Documentary|War +205535,L'Isola di Medea (2016),(no genres listed) +205537,Mon frère (2019),Drama +205539,Lupin the Third: Lie of Fujiko Mine (2019),Action|Animation|Crime +205541,Fire and Ice: The Winter War of Finland and Russia (2006),Documentary +205543,The King of Communism: The Pomp & Pageantry of Nicolae Ceausescu (2002),Documentary +205545,Official Secrets (2019),Drama|Romance|Thriller|War +205547,The Heckling Hare (1941),Animation|Comedy +205551,The Fellowship of the Farmers,(no genres listed) +205557,Tit for Tat (1935),Comedy +205559,Overcomer (2019),Drama +205561,The Gatling Gun (1971),Action|Western +205563,Love Is Love (2012),Comedy|Drama +205573,Travis Scott: Look Mom I Can Fly (2019),Documentary +205575,Angel of Mine (2019),Drama|Thriller +205577,The Night My Number Came Up (1955),Thriller +205583,Satanic Panic (2019),Horror +205589,Suddenly Seventeen (2016),Comedy|Romance +205591,The Uninvited (2003),Action|Horror|Thriller +205595,The Approach of Autumn (1960),Drama +205599,"Come, Come, Come Upward (1989)",Drama +205605,"Little Angel, Make Me Happy (1993)",Drama +205613,Catimini (2013),Drama +205615,Como Se Tornar o Pior Aluno da Escola (2017),Comedy +205617,Comrade Kim Goes Flying (2012),Comedy +205619,She's Dating the Gangster (2014),Comedy|Drama|Romance +205621,Can't Help Falling in Love (2017),Comedy|Romance +205623,Césio 137 - O Pesadelo de Goiânia (1990),Drama +205625,The Great Duel (1964),Action|Drama +205629,Doutores da Alegria (2005),Documentary +205633,Early Winter (2015),(no genres listed) +205635,El Chanfle 2 (1982),Children|Comedy +205637,Low Heights (2002),Action|Adventure|Drama|Thriller +205639,Foster Child (2007),Drama +205645,To the Starry Island (1993),Drama|Fantasy +205647,Once in a Summer (2006),Drama|Romance +205649,Too Beautiful to Lie (2004),Comedy|Romance +205651,A Petal (1996),Drama +205657,Hula Girls (2006),Children|Comedy|Drama +205659,"São Paulo, Sociedade Anônima (1965)",Drama +205661,Maleficent: Mistress of Evil (2019),Fantasy +205663,Rocket-bye Baby (1956),Animation|Children|Comedy|Sci-Fi +205665,Find Me (2018),Drama +205667,Till the End of the World (2018),Adventure|Drama|Romance +205671,The Tale of Iya (2013),Drama +205673,Eleven Samurai (1967),Action|Adventure|Drama +205675,Once Upon a Time... This Morning (1994),Drama +205677,Shady (2012),Drama|Horror|Thriller +205679,Our Homeland (2012),Drama +205681,Code Name K.O.Z. (2015),(no genres listed) +205683,Durian Durian (2000),Drama +205685,"Lula, the Son of Brazil (2010)",Drama +205687,"You Shoot, I Shoot (2001)",Action|Comedy|Crime +205689,Scarlet Innocence (2014),Drama|Romance +205691,Mai Ratima (2012),Drama|Romance +205697,The Nutty Boy: A Film (1995),Adventure|Children|Comedy +205699,Nothing to Lose (2018),Drama +205707,I Am Not Your Friend (2009),Drama +205713,Perfect Blue: Yume Nara Samete (2002),Drama|Thriller +205715,Reis (2017),(no genres listed) +205717,Rosa Morena (2011),Drama +205719,Sandcastle (2010),Drama +205721,Welcome to the Quiet Room (2007),Drama +205723,The Two Deaths of Quincas Wateryell (2010),Comedy|Drama +205727,"Goodbye, Someday (2010)",Drama|Romance +205729,Smother (2008),Comedy|Drama|Romance +205741,Threshold (1982),Drama +205743,There Is No Lid on the Sea (2015),Drama +205745,A Week Alone (2007),Drama +205749,Misbehavior (2017),Drama +205753,Meet Me in the Dream: Wonderland (1996),(no genres listed) +205755,"I Killed Einstein, Gentlemen (1970)",Comedy|Sci-Fi +205761,Rebirth (2011),Crime|Drama +205763,Swing Girls (2004),Comedy +205765,Midori: The Camellia Girl (2016),Drama|Horror +205767,Comrade Drakulich (2019),Comedy +205769,Dogs Don't Wear Pants (2019),Drama +205771,Freak City (1999),(no genres listed) +205773,"Mektoub, My Love: Intermezzo (2019)",Comedy|Drama +205777,The Raging Moon (1971),Drama|Romance +205779,Whindersson Nunes: Adult (2019),Comedy +205797,Exit Strategy (2018),Sci-Fi|Thriller +205799,The Sailor Takes a Wife (1945),Comedy|Romance +205805,The Girlfriend Experience (2014),(no genres listed) +205807,Pink Grapefruit (2015),(no genres listed) +205809,Wonder Woman: Bloodlines (2019),Action|Animation +205811,Breakfast Wine (2013),Comedy|Drama +205815,Justice League: Dawn of Apokolips (2017),Action +205817,Full Disclosure (2005),(no genres listed) +205819,Meth Head (2013),Drama +205827,Fanatic (2019),Thriller +205829,The Wrecking Season (2004),Documentary +205831,Elephants: Spy in the Herd (2003),Documentary +205833,Polar Bears: A Summer Odyssey (2012),Documentary +205835,Mafia (2011),Action|Crime +205837,Dreaming Under Capitalism (2018),Documentary +205839,About Endlessness (2019),Comedy|Drama +205841,Don't Let Go (2019),Horror|Sci-Fi|Thriller +205843,The Call of the Wild (2007),Documentary +205845,Demons in the Garden (1982),Drama +205847,Ferocious (1984),Fantasy +205849,Las largas vacaciones del 36 (1976),Drama +205851,"Speak, Silent One (1973)",Drama +205855,Living in Shadows (1949),Drama +205857,Judy (2019),Drama|Romance +205859,Todos estamos invitados (2008),Drama|Thriller +205861,Song of Tibet (2000),Drama +205863,The Girl from Hunan (1988),Drama +205865,A Mongolian Tale (1995),(no genres listed) +205867,Poachers (1975),Drama +205869,Dossiê Jango (2013),Documentary +205871,Young Americans (1967),(no genres listed) +205873,Cinderella (1922),Animation|Children|Fantasy +205889,Thumbelina (1954),Animation|Fantasy +205893,The Painted Bird (2019),Drama|War +205895,The Three Wishes (1954),Animation|Fantasy +205897,The Caliph Stork (1954),Animation|Fantasy +205899,Black Litter (1977),Drama +205907,Trout (1978),Comedy +205909,Your Next Life (2004),Drama +205913,The Pluto Moment (2018),Drama +205917,Chess Fever (1925),Comedy +205919,City of Photographers (2006),Documentary +205921,24 Weeks (2016),Drama +205923,3 Lives (2019),Thriller +205925,Siccin 4 (2017),Horror|Thriller +205929,Pacific Destiny (1956),(no genres listed) +205931,"Le Cri du cormoran, le soir au-dessus des jonques (1971)",Comedy|Crime +205933,August in the Water (1995),Drama|Fantasy|Sci-Fi +205935,Girl Slaves of Morgana Le Fay (1971),Drama|Fantasy +205937,Seeing Heaven (2011),Drama|Fantasy +205939,Super 8½ (1994),(no genres listed) +205941,Back to School (2019),Comedy +205943,Delitto quasi perfetto (1966),(no genres listed) +205945,Steven Universe: The Movie (2019),Adventure|Animation|Children|Comedy +205947,The Howlin' Wolf Story: The Secret History of Rock & Roll (2003),Documentary +205949,Taken by Storm: The Art of Storm Thorgerson and Hipgnosis (2011),Documentary +205951,Dora or The Sexual Neuroses of Our Parents (2015),Drama|Romance +205953,Octocat Adventures (2008),(no genres listed) +205955,Memory: The Origins of Alien (2019),Documentary +205957,Lifepod (1981),Sci-Fi|Thriller +205963,Skaterdater (1966),Drama|Romance +205965,For Ladies Only (1981),Drama +205967,My Young Auntie (1981),Action|Comedy +205969,Earth Star Voyager (1988),Adventure|Sci-Fi +205975,Put the Camera on Me (2003),Documentary +205982,Kardec (2019),Drama +205984,Vortex (2019),Action|Crime|Drama +205986,Survival Box (2019),Thriller +205988,My Brothers and Sisters in the North (2016),Documentary +205990,The Beauty of the Devil (1950),Comedy|Drama +205992,K-12 (2019),Drama|Fantasy|Horror +205994,They Come Knocking (2019),Horror +205998,Culture Shock (2019),Horror|Thriller +206000,76 (2016),(no genres listed) +206002,The CEO (2016),Mystery +206004,How Fernando Pessoa Saved Portugal (2018),(no genres listed) +206006,Richie (2017),Action|Crime|Drama +206008,2040 (2019),Documentary +206010,Life in the Doghouse (2018),Documentary +206012,Fathers are People (1951),Animation +206014,The Little House (1952),Animation +206016,The Last Trick (1964),Animation +206018,The Fanatic (2019),Thriller +206020,Brief Encounter (1974),Drama +206022,The Mystery of the Dragon’s Seal (2019),Adventure|Fantasy +206024,The Swallows of Kabul (2019),Animation +206026,Uniform (2003),Drama|Thriller +206028,The Hole (1962),Animation +206030,Даешь воздух! (1923),Documentary +206036,Into the Dark: Pure (2019),Horror +206040,A Yellow Bird (2016),Drama +206042,Gammera the Invincible (1966),Horror|Sci-Fi +206044,Invisible Ink (1921),Animation|Comedy +206046,Finding His Voice (1929),(no genres listed) +206048,"Congo: White King, Red Rubber, Black Death (2004)",Documentary +206050,Popeye the Sailor (1933),Animation +206052,Blunder Below (1942),Animation +206054,Baby Wants a Bottleship (1942),Animation +206056,Time for Revenge (1981),Crime|Drama|Thriller +206058,Lemebel (2019),Documentary +206060,Spider (2019),Crime|Drama|Thriller +206062,Neptune's Feast (1986),Comedy +206064,Secret Millionaire (2018),Romance +206066,Cosmonauts: How Russia Won the Space Race (2014),Documentary +206068,Hoax (2019),Horror +206071,David Crosby: Remember My Name (2019),Documentary +206073,Solace (2017),Animation|Sci-Fi +206075,Executive Power (1997),Thriller +206077,She and He (1963),Drama +206083,The Morning Schedule (1972),Drama +206087,Gorbaciof (2010),Drama|Romance +206089,Speechless (2017),(no genres listed) +206091,Little Spirou (2017),Comedy +206093,Enter the Anime (2019),Documentary +206095,The Prisoner of the Iron Bars (2004),Documentary +206097,After My Death (2018),Drama|Mystery +206099,Brakes (2017),Comedy +206101,Tigers of the Snow (1997),Documentary +206103,Screwball (2019),Documentary +206105,Serra Pelada - A Lenda da Montanha De Ouro (2013),Documentary +206107,Mosul (2019),Drama|War +206109,Avenues (2019),Drama +206111,Baby Steps (2015),Comedy|Drama +206115,Chiara Ferragni - Unposted (2019),Documentary +206117,The Lonely Island Presents: The Unauthorized Bash Brothers Experience (2019),Comedy +206119,The Long Way Home (2015),Action|Drama|War +206121,Zilla and Zoe (2017),Comedy|Horror +206123,F.U.B.A.R. (2019),Comedy|Horror +206125,Lost & Found (2018),Comedy|Drama +206127,The Chain (2019),Thriller +206129,Take Point (2018),Action +206131,Saving Zoë (2019),Drama|Mystery +206133,Burn (2019),Thriller +206135,The Odds (2019),Horror +206137,Knife Edge (2009),Horror|Mystery|Thriller +206139,The Scoundrels (2018),Action|Crime +206141,The Big Shot (2019),Action|Crime +206143,William Gibson: No Maps for These Territories (2000),Documentary +206145,Mon Amour Mon Parapluie (2001),Comedy +206147,The Cult of the Suicide Bomber (2005),Documentary +206150,Lucy in the Sky (2019),Drama|Sci-Fi +206152,Raise Hell: The Life & Times of Molly Ivins (2019),Documentary +206164,Cyberpunk (1990),Documentary +206174,NOVA: Prediction by the Numbers,Documentary +206176,The Truth About Alcohol (2016),Documentary +206178,Louis Prima: The Wildest! (1999),Documentary +206180,Warren Ellis: Captured Ghosts (2011),Documentary +206184,Confidence (1980),Drama +206190,6-Headed Shark Attack (2018),Action|Horror|Sci-Fi +206192,Shoot the Moon Right Between the Eyes (2018),Comedy +206194,Fiddler: A Miracle of Miracles (2019),Documentary +206196,Crazy Famous (2017),Action|Comedy +206198,The Night Bulletin,Horror|Thriller +206200,Ema (2019),Drama +206202,7 Main Wishes (2013),Comedy|Fantasy|Romance +206204,Morning Sun (2003),Documentary +206206,The Devil's Disciple (1959),Comedy|Drama|War +206208,Bill Burr: Paper Tiger (2019),Comedy +206210,Captain Hagen's Bed & Breakfast (2019),Comedy +206212,Evaru (2019),Crime|Thriller +206214,Two Catalonias (2018),Documentary +206216,Billion Dollar Bully (2019),Documentary +206218,No Doubt (2019),Comedy|Romance +206226,53 Wars (2018),Drama +206242,The Truth on the Savolta Affair (1980),(no genres listed) +206244,Deep Space (2018),Sci-Fi +206250,Signs of Life (1989),Drama +206252,8 Remains (2018),Mystery|Thriller +206254,Fly Colt Fly (2014),(no genres listed) +206260,The (Silent) War (2019),Action|Thriller|War +206262,Eye for an Eye (2019),Thriller +206264,Saaho (2019),Action|Thriller +206268,Linda Ronstadt: The Sound of My Voice (2019),Documentary +206270,Cygnus (2018),Sci-Fi +206272,Haunt (2019),Horror|Thriller +206274,Gags The Clown (2019),Horror|Thriller +206276,Guadalquivir (2013),Documentary +206278,Classic Albums: Cream - Disraeli Gears (2006),Documentary +206280,Classic Albums: Nirvana - Nevermind (2005),Documentary +206282,Rocca verändert die Welt (2019),Children +206285,A Night of Horror Volume 1 (2015),Horror|Thriller +206287,The Sensei (2008),Action|Drama +206289,Storm Seekers (2010),Action|Thriller +206291,7 Reasons to Run Away (from Society) (2019),Comedy|Horror +206293,Tall Girl (2019),Comedy|Drama|Romance +206295,Young Ahmed (2019),Drama +206297,Incitement (2019),Drama +206299,Fly Me To The Saitama (2019),Comedy +206301,Cities of Light: The Rise and Fall of Islamic Spain (2007),Documentary +206303,The Crimes That Bind (2018),Mystery|Thriller +206305,The Divine Fury (2019),Action|Horror +206307,Miles Davis: Birth of the Cool (2019),Documentary +206309,Film Study (1926),(no genres listed) +206311,Blood Machines (2019),Sci-Fi +206313,Hard Men (1996),Action|Crime +206315,Classic Albums: Motörhead - Ace of Spades (2005),Documentary +206317,Chongqing Blues (2010),Drama +206319,In Love We Trust (2008),Drama +206323,Dragon Ball Z: Broly – Second Coming (1994),Action|Animation|Sci-Fi +206325,A.M.I. (2019),Horror +206327,Scanners: The Showdown (1995),Horror|Sci-Fi +206329,3 from Hell (2019),Horror +206337,Angel of Nanjing (2015),Documentary +206339,Vortex (1982),(no genres listed) +206341,Talking to Strangers (1988),Drama +206343,Pink Floyd: The Dark Side of the Moon (2003),Documentary +206345,The Sound of Silence (2019),Drama +206347,Nocturne (1946),Crime|Drama|Mystery +206349,Down To The Earth's Core (2012),Documentary +206351,The Intent (2016),Crime|Drama +206353,L'ex-femme de ma vie (2004),Comedy +206355,438 Days (2019),Drama +206357,In the Shadow of the Towers: Stuyvesant High On 9/11 (2019),Documentary +206359,House of Blackmail (1953),Drama +206361,Michelangelo Eye to Eye (2004),Documentary +206363,My Very Best Friend (2008),Comedy +206365,Sex Files: Alien Erotica II (2000),Romance|Sci-Fi +206369,The Cursed Village (1930),Drama +206371,Future Baby (2016),Documentary +206373,A Haunting at the Rectory (2015),Horror +206377,A Lesson in Cruelty (2018),Comedy +206383,Palm Beach (2019),Comedy|Drama +206385,Au nom de la terre (2019),Drama +206387,Variações (2019),Drama +206389,Photo de famille (2018),Comedy|Drama +206391,Lola et ses frères (2018),Comedy +206393,Promare (2019),Action|Animation|Sci-Fi +206395,The Comedy Central Roast of Alec Baldwin (2019),Comedy +206399,For Sama (2019),Documentary +206401,When the Moors Ruled in Europe (2005),Documentary +206403,Vita & Virginia (2019),Drama|Romance +206407,The Lion Hunters (1967),Documentary +206409,Royal Shakespeare Company: The Tempest,(no genres listed) +206411,Oscar Niemeyer: Life is a Breath of Air (2010),Documentary +206415,The Corrupted (2019),Crime|Thriller +206417,Hellmington (2018),Horror|Mystery|Thriller +206419,The Two Popes (2019),Drama +206423,Our Godfather (2019),Crime|Documentary +206425,"Adeus, Pai (1996)",Drama|Romance +206429,A Young Man With High Potential (2019),Crime|Drama +206431,"Love, Antosha (2019)",Documentary +206433,American Fright Fest (2018),Horror +206435,A Colony (2019),Drama +206447,Classic Albums: Lou Reed - Transformer (2001),Documentary +206449,Saint Maud (2019),Horror +206451,Bad Education (2019),Comedy|Drama +206453,Ironfinger (1965),Action|Adventure|Comedy +206455,Lion and Bull (1984),Animation +206457,Ms. Purple (2019),Drama +206459,Breslin and Hamill: Deadline Artists (2018),Documentary +206461,Children and Matches (1969),Animation +206463,Seasons (1969),Animation|Romance +206465,In Touch (2018),Documentary +206467,The Right to Win (2004),Documentary +206471,Man in the Frame (1966),Animation|Drama +206477,There Lived Kozyavin (1966),Animation +206479,Dinosaur's Hill (1967),Animation +206481,Ball of Yarn (1968),Animation|Fantasy +206483,Kyaa Kool Hain Hum 3 (2016),Comedy +206487,The Nun and the Devil (1973),Drama +206489,Adrenochrome (2018),Action|Fantasy|Horror|War +206491,Teenage Wolfpack (1956),Drama|Thriller +206497,Where's My Roy Cohn? (2019),Documentary +206499,Between Two Ferns: The Movie (2019),Comedy +206501,Ambition (2019),Thriller +206503,Suspiria 25th Anniversary (2001),Documentary +206505,Phone Swap (2012),(no genres listed) +206507,Bagboy (2015),Comedy +206509,Dream Girl (2019),Comedy|Romance +206511,Silvia Prieto (1999),Comedy|Drama +206515,Aircraft Carrier: Guardian of the Seas (2016),Documentary +206517,Adults in the Room (2019),Drama +206519,Agent Ranjid rettet die Welt (2012),Comedy +206521,Dolce Fine Giornata (2019),Drama +206523,VeggieTales: The Wonderful World Of Auto-tainment! (2004),(no genres listed) +206525,Ramekin (2018),Comedy|Horror +206527,Inside Man: Most Wanted (2019),Action|Thriller +206529,Hidden Love (2007),Drama +206531,Sons of Denmark (2019),Drama|Thriller +206533,Diane (2017),Crime|Drama|Horror|Mystery|Thriller +206535,Hotel Monterey (1972),Documentary +206537,Anton Tchekhov 1980 (2015),Drama +206565,Destiny (1997),Drama|Romance +206625,Le château perdu (1973),(no genres listed) +206633,Strange But True (2019),Thriller +206637,Only Girls (2003),Comedy +206639,Odessa (2019),Drama +206641,Egy másik életben,(no genres listed) +206643,Mubarakan (2017),Comedy|Drama +206645,Snow White and Rose Red (1954),Animation|Fantasy +206647,Hansel and Gretel (1955),Animation|Fantasy +206649,Papicha (2019),Drama +206651,Of Love and Lies (2019),Comedy|Drama +206653,Villains (2019),Comedy|Crime|Thriller +206658,Love on a Leash (2011),Comedy|Drama|Fantasy|Romance +206662,Ice Queen (2005),Horror|Thriller +206666,Dry Martina (2018),Comedy|Drama +206668,Goliath (2019),Drama +206670,Running with the Devil (2019),Crime|Drama|Thriller +206672,The Last Tree (2019),Drama +206674,Camino (2016),Comedy +206676,Governor Gabbi (2017),(no genres listed) +206678,Unknown World (1951),Adventure|Sci-Fi +206680,Shanghai Fortress (2019),Sci-Fi|War +206682,Dalekmania (1995),Documentary +206684,The Science of Doctor Who (2013),Documentary +206686,Doctor Who: The Curse of Fatal Death (1999),Comedy|Sci-Fi +206688,13 Demons (2016),Thriller +206694,Alpha Wolf (2018),Horror|Thriller +206696,Invisible Avenger (1954),Mystery|Sci-Fi|Thriller +206698,Crown Vic (2019),(no genres listed) +206700,Hex (2019),Horror|Thriller +206702,Doom: Annihilation (2019),Action|Horror|Sci-Fi +206704,Still Human (2018),Drama +206706,Jo Pil-ho: The Dawning Rage (2019),Action|Crime|Drama +206708,Madness in the Method (2019),(no genres listed) +206710,Spider in the Web (2019),Thriller +206712,American Woman (2019),(no genres listed) +206714,Abominable (2019),Adventure|Animation|Children|Comedy +206717,Evil Bong 777 (2018),Comedy|Fantasy|Horror +206719,The Man Who Bottled Clouds (2008),Documentary +206721,Oblivion Verses (2018),Drama +206723,The Touchables (1968),Comedy +206727,Jeff Dunham: Beside Himself (2019),Comedy +206729,I Am Zozo (2012),Horror|Thriller +206731,Malevolence (2004),Crime|Horror|Thriller +206733,The Evil Down the Street (2019),Drama|Horror|Thriller +206735,The Art Of Waiting (2019),Drama +206737,Trouble (2019),Animation|Children|Comedy +206741,EXIT (2019),Action|Comedy +206743,Black Jack (1979),Adventure +206747,Behind the White Glasses (2015),Documentary +206749,Aquarela (2019),Documentary +206751,Love Asia (2006),(no genres listed) +206755,Corporate Animals (2019),Comedy|Horror +206757,Twice,(no genres listed) +206759,Mothers' Instinct (2019),Thriller +206761,The Empire of Scents (2014),Documentary +206765,Oru Kaidhiyin Diary (1984),Action|Romance +206769,Operation Christmas List (2015),Children|Comedy +206771,Long Way Home (2019),Drama +206773,Barabbas (2019),Drama +206775,Girl From Nowhere (2017),Thriller +206777,Dream the Impossible (2017),Documentary +206779,Secrets from Another Place: Creating Twin Peaks (2007),(no genres listed) +206781,The Black Legend of Mexican Cinema,(no genres listed) +206783,Wormholes (1992),Animation +206785,Deadly Signal (2016),Crime|Drama|Horror|Mystery|Sci-Fi|Thriller +206789,Recovery (2016),Horror|Thriller +206791,Dangerous Partners (1945),Adventure|Mystery +206793,A Slice of Lynch (2007),Documentary +206795,The Day Shall Come (2019),Comedy +206797,"Empathy, Inc. (2018)",Drama|Sci-Fi +206799,Return to 'Twin Peaks' (2007),Documentary +206801,Agur Etxebeste (2019),(no genres listed) +206803,Cucciolo (1998),Comedy +206805,In the Shadow of the Moon (2019),Crime|Mystery|Sci-Fi +206807,Strangler of the Swamp (1946),Fantasy|Horror|Sci-Fi +206809,Our House (2017),Mystery +206811,Chef vs. Science: The Ultimate Kitchen Challenge,(no genres listed) +206815,SafeWord (2015),(no genres listed) +206817,Paranormal Farm (2017),(no genres listed) +206819,Anna (2017),Horror +206821,Awaiting (2015),Drama|Horror|Thriller +206823,Wake the Witch (2010),Horror|Thriller +206825,6-5=2 (2013),Adventure|Horror|Mystery +206827,Classic Albums: The Doors - The Doors (2008),Documentary +206829,Classic Albums: The Beach Boys - Pet Sounds (2010),Documentary +206833,Senta a Pua! (1999),Documentary +206837,Falling Camellia (2018),Drama +206839,The Further Adventures of Tennessee Buck (1988),Action|Adventure|Comedy|Horror +206841,The Huntress: Rune of the Dead (2019),Adventure|Horror +206843,Intermissions (2004),Documentary +206845,The Laundromat (2019),Comedy|Crime|Drama +206847,Paris to Pittsburgh (2018),Documentary +206849,Öldür Beni Sevgilim (2019),Comedy|Romance +206851,Full Fathom Five (1990),Action|Adventure +206855,Don't Look (2018),Horror +206857,The Irishman (2019),Crime|Drama +206859,Jimi Hendrix: Electric Ladyland (2008),Documentary +206861,"Live Like a Cop, Die Like a Man (1976)",Action|Crime|Drama|Thriller +206863,Sturgill Simpson Presents Sound & Fury (2019),Animation +206865,"China, o Império do Centro (1987)",Documentary +206867,The Ideal Palace (2019),Drama +206869,Port Authority (2019),Drama +206881,Classic Albums: Queen - A Night at the Opera (2006),Documentary +206883,Dear Etranger (2017),Drama +206885,Jesus Shows You the Way to the Highway (2019),Comedy|Sci-Fi|Thriller +206887,Little Joe (2019),Sci-Fi|Thriller +206889,Samurai Marathon (2019),Action|Drama +206891,Tehran: City of Love (2018),Romance +206893,Matthias & Maxime (2019),Drama +206895,Jonathan Agassi Saved My Life (2018),Documentary +206899,Charlie's Angels (2019),Action|Adventure|Comedy +206901,Garfield Goes Hollywood (1987),Animation|Children|Comedy +206905,Garfield on the Town (1983),Animation|Children +206907,Чудесный колокольчик (1949),Animation +206909,Garfield in the Rough (1984),Animation|Children +206911,Garfield's Thanksgiving (1989),Animation +206915,Garfield In Paradise (1986),Animation|Comedy +206919,Garfield: His 9 Lives (1988),Adventure|Animation|Comedy +206921,Garfield's Feline Fantasies (1990),Adventure|Animation|Comedy +206923,Normal (2019),Documentary +206925,The Plague (2006),Documentary +206927,Before You Know It (2019),Comedy +206929,Classic Albums: Bob Marley & the Wailers - Catch a Fire (2000),Documentary +206931,While at War (2019),Drama|War +206933,Love. Love. Love. (2013),(no genres listed) +206935,The Heat: A Kitchen (R)evolution (2018),Documentary +206937,Bliss (2019),Horror +206939,Undone (2019),Animation|Drama|Sci-Fi +206943,Cássia (2015),Documentary +206945,Boonie Bears: Blast into the Past (2019),(no genres listed) +206947,Kingdoms (2018),Drama|Romance +206949,Untouchable (2019),Documentary +206953,An Accidental Studio (2019),Documentary +206955,You Are Not Alone (1978),Drama|Romance +206957,Through The Fire (2018),Drama +206959,Frozen II (2019),Adventure|Animation|Children|Comedy|Fantasy +206961,Hubble's Cosmic Journey (2015),Documentary +206963,The Yellow Brick Road and Beyond (2009),(no genres listed) +206967,Final Cut: The Making and Unmaking of Heaven's Gate (2004),Documentary +206969,Brave New World (1980),Sci-Fi +206971,Inside the Living Body (2007),Documentary +206973,The Pillar of Fire (1899),Fantasy +206975,The Mysterious Portrait (1899),(no genres listed) +207021,Tropical Virus (2017),Animation|Drama +207023,10 Minutes Gone (2019),Action|Crime|Mystery|Thriller +207025,The Young Cannibals (2019),Horror|Thriller +207027,The Death and Return of Superman (2019),Action|Adventure|Animation +207029,Night Music (1986),(no genres listed) +207031,Ensemble for Somnambulists (1951),(no genres listed) +207033,Rhythm 21 (1923),Animation +207035,Studies in Transfalumination (2008),Documentary +207037,Beast of the Water (2017),Adventure +207039,The Calamari Wrestler (2004),Comedy +207041,Bled White (2012),(no genres listed) +207043,Sarbjit (2016),Drama +207045,Yaariyan (2014),Drama|Romance +207047,Cristiano Ronaldo: World at His Feet (2014),Documentary +207049,Placebo (2014),Documentary +207051,Counting from Infinity: Yitang Zhang and the Twin Prime Conjecture (2015),(no genres listed) +207053,The Trap (2014),Drama +207055,Rebellious Flower (2016),(no genres listed) +207057,Waiting (2016),Comedy|Drama +207059,Soni (2019),Crime|Drama +207061,Nadia (1984),Drama +207065,Minuscule 2: Mandibles From Far Away (2019),Adventure|Animation|Children|Comedy +207067,The Starfish (1928),Romance +207071,Meditation on Violence (1949),Documentary +207075,Mister America (2019),Comedy +207077,Roger Waters: Us + Them (2019),Documentary +207079,The Prince and the Pauper (1972),Adventure|Children|Comedy +207087,The Triangle (2016),Horror|Mystery +207089,Zombi Child (2019),Fantasy +207091,Midnight Oil: 1984 (2018),(no genres listed) +207093,Walt Disney (2015),Documentary +207095,Windy City Heat (2003),Comedy|Documentary +207097,Veslemøy's Song (2018),Drama +207101,VS. (2018),Drama +207103,The Other Side (2014),Drama|Horror|Thriller +207107,Smile (2009),Horror|Thriller +207109,Hotel Camarillo,(no genres listed) +207111,The Mad Whale (2017),Drama|Thriller +207113,The 1st (2018),Comedy +207115,Wrinkles the Clown (2019),Documentary +207117,Jay and Silent Bob Reboot (2019),Comedy +207119,Jango (1984),Documentary +207121,Nikki Glaser: Bangin' (2019),Comedy +207129,Zonjusha (2016),Comedy|Crime +207133,Episode 50 (2011),Horror|Mystery|Thriller +207135,The Evil Inside,Drama|Horror +207139,Dear Comrade (2019),Action|Drama|Romance +207141,Life Like (2019),Sci-Fi|Thriller +207143,Brizola - Tempos de Luta (2007),(no genres listed) +207145,Michael Jackson's Thriller (1983),Horror +207147,From the Rough (2013),Drama +207149,The Ultimate Legacy (2015),Adventure|Comedy|Drama +207151,Morning Glory (1993),Drama|Romance +207153,Buffering (2011),Comedy +207155,The Love of Jeanne Ney (1927),Drama +207157,BlackRock - Investors that Rule the World (2019),Documentary +207159,Poinsettias for Christmas (2018),Romance +207161,The JK Years: A Political Trajectory (1980),Documentary +207163,Oleg (2019),Drama +207165,Uncanny Annie (2019),Horror +207167,Fragmentos de una amiga desconocida (2019),Documentary +207169,The Storm Within (1948),Drama +207171,Socrates (1971),Drama +207173,The Saint Bernard Syndicate (2018),Comedy +207181,A Girl Named Sooner (1975),Drama +207185,Inspetor Faustão e o Mallandro: A Missão (Primeira e Única) (1991),Comedy|Crime|Thriller +207187,Westside vs the World (2019),Documentary +207189,The Addams Family (2019),Animation|Children|Comedy|Fantasy|Horror +207191,The Merchant of Venice (2001),Drama +207193,All's Well That Ends Well: Shakespeare's Globe Theatre (2012),Comedy|Drama +207195,"Pericles, Prince of Tyre (1984)",Drama +207197,Collider (2018),Sci-Fi +207199,Along Came the Devil 2,Horror|Thriller +207201,Scottsboro: An American Tragedy (2000),Documentary +207203,La Vie scolaire (2019),Comedy|Drama +207205,Perfect Plan (2010),Thriller +207209,Ravenswood (2017),Horror|Thriller +207211,American Exorcism (2017),Horror +207213,The Traitor (2019),Crime|Drama|Thriller +207215,An Almost Ordinary Summer (2019),Comedy +207217,Ring Ring (2019),Comedy|Horror +207223,Good Times (1967),Comedy|Western +207225,The Lost Gods of Easter Island (2000),Documentary +207227,Harpoon (2019),Comedy|Drama|Thriller +207229,Jexi (2019),Comedy +207231,Amy Winehouse: Back to Black (2018),Documentary +207235,Deadly Reunion (2019),Horror|Thriller +207237,The Murder of Emmett Till (2003),(no genres listed) +207239,Living Dark: The Story of Ted the Caver (2017),Horror +207243,Deon Cole: Cole Hearted (2019),Comedy +207249,American Woman (2019),Drama +207255,The Great Journey (2004),Drama +207259,Thamizh Padam (2010),Comedy +207261,Tamizh Padam 2 (2018),Comedy +207263,Junga (2018),Action|Comedy +207265,Dharmadurai (2016),Action|Drama +207269,The Magic Life of V (2019),Documentary +207271,The Paradise Virus (2003),Action|Thriller +207273,The Collini Case (2019),Crime|Drama|Thriller +207277,Chained (2019),(no genres listed) +207279,Peaches & Cream (2019),(no genres listed) +207281,Classic Albums: Elvis Presley - Elvis Presley (2001),Documentary +207283,Sunk into The Womb (2013),Crime|Drama|Thriller +207287,ami. exe (2017),Sci-Fi +207289,Take Me to the Moon (2017),Drama|Romance +207291,Another Man's Wife (2011),Thriller +207293,Isabelle (2019),Horror +207295,Ouija Seance: The Final Game (2018),Horror +207297,First Love (2019),Action|Comedy|Crime|Romance +207299,Child by Children (2008),Drama +207303,Les yeux dans les bleus (1998),Documentary|Drama|Romance +207307,Pingu's The Thing (2012),Animation|Comedy|Horror|Sci-Fi +207309,Fractured (2019),Thriller +207311,Last Christmas (2019),Comedy|Romance +207313,Knives Out (2019),Comedy|Crime|Drama|Mystery|Thriller +207315,Illusions (2017),Mystery|Sci-Fi|Thriller +207317,Overkill (2004),Action|Comedy +207319,Sesión salvaje (2019),Documentary +207321,Snow Chick - A Penguin's Tale (2015),Documentary +207323,The 8-Year Engagement (2017),Drama|Romance +207325,The Secret Life of Cats (2014),Documentary +207329,John Denver: Country Boy (2013),Documentary +207331,Pacarrete (2019),Drama +207333,Miracle Rising: South Africa (2013),Documentary +207335,The Lady Shogun and Her Men (2010),Drama|Sci-Fi +207337,Liberia: An Uncivil War,Documentary +207339,Venus in Furs (1969),Horror|Thriller +207341,The Forest (2018),Drama +207343,The Forest of Love (2019),Drama|Horror|Mystery|Thriller +207345,Into the Amazon (2018),Documentary +207347,Spread Your Wings (2019),Adventure|Children +207349,Judy & Punch (2019),Drama +207357,The Rising Hawk (2019),Action|Drama +207359,Lucky Day (2019),Action|Crime|Thriller +207361,Boro in the Box (2011),Drama|Fantasy +207363,Strays (1991),Horror +207365,Guidable - The Real History of Ratos de Porão (2008),Documentary +207367,Little Monsters (2019),Comedy|Horror +207369,Selfie (2019),Documentary +207371,La leyenda de la Nahuala (2007),Animation|Children|Fantasy +207375,La leyenda de las momias de Guanajuato (2014),Animation +207387,Luz,(no genres listed) +207401,Businessmen (2018),Crime|Drama +207403,"Someone, Somewhere (2019)",Drama +207405,Doctor Sleep (2019),Horror +207409,Deserted (2016),Drama|Thriller +207415,The Boat (2019),Mystery|Thriller +207417,Mary (2019),Drama|Horror +207419,So You Think You're Not Guilty (1950),Comedy +207423,The Centaurs (1921),Animation|Fantasy|Romance +207425,Dyuba-Dyuba (1993),Drama|Romance +207429,Aurora (2018),Horror|Thriller +207431,They Don't Wear Black Tie (1980),Drama +207433,Curse of Bigfoot (1978),Horror +207435,Where the Light Is: John Mayer Live in Los Angeles (2008),(no genres listed) +207437,John Mayer: Any Given Thursday (2003),(no genres listed) +207439,Virus (2019),Drama|Thriller +207441,Mail Order Wife (2004),Comedy|Documentary|Romance +207443,Les grands moyens (1978),(no genres listed) +207445,The King (1930),Comedy +207447,Classic Albums: Metallica - Metallica (2001),Documentary +207451,Birthday Card (2016),Drama +207453,Tuna Girl (2019),Drama +207457,LEGO DC: Batman - Family Matters (2019),Animation|Children +207461,Shakti (2019),Comedy|Drama +207465,Give Me a Complaints Book (1964),Comedy +207467,The Monkey's Paw (1948),Thriller +207469,Sweetheart (2019),Horror +207473,The Automatic Moving Company (1910),Animation|Comedy +207475,Starting a Skyscraper (1902),(no genres listed) +207477,The Cook in Trouble (1904),Comedy|Fantasy +207479,A Gesture Fight in Hester Street (1900),(no genres listed) +207481,The First World War From Above (2010),Documentary +207483,The Secret of a Leader (2019),Children|Crime|Drama +207487,Auggie (2019),Drama|Sci-Fi +207493,Pray for Rain (2017),Drama|Mystery|Thriller +207497,The Rogue Stallion (1990),(no genres listed) +207499,The Winter Stallion (1992),Children +207501,Lovely Trash (2019),Comedy|Drama|Fantasy|War +207503,Unearthed & Untold: The Path to Pet Sematary (2017),Documentary +207507,Fingerpori (2019),Comedy +207509,Now Something Is Slowly Changing (2019),Documentary +207514,Hard Paint (2019),Drama +207516,May (2008),Drama +207518,The Immortal Woman (1993),Children|Comedy|Fantasy +207530,Boys Will Be Boys (1976),Adventure|Children|Comedy +207532,"Halt, Or I'll Miss! (1998)",Comedy|War +207534,Odcházení (2011),Comedy|Drama +207544,Kristián (1939),Comedy|Romance +207546,"Sun, Hay, Erotics (1991)",Comedy +207556,Krakonoš a lyžníci (1981),Adventure|Children|Comedy +207568,Imperial and Royal Field Marshal (1930),Comedy +207576,The Good Soldier Svejk (1955),Animation|Comedy +207584,Snowboarďáci (2004),Comedy +207588,The Magic Quill (2018),Children|Fantasy +207592,Homeward (2019),Drama +207594,The Border Fence (2018),Documentary +207596,In This Gray Place (2019),Drama|Romance|Thriller +207598,Knife in the Head (1978),Drama +207600,Cinderela Baiana (1998),Drama +207602,Eleições (2018),Documentary +207604,Trespassers (2018),Thriller +207606,The Fall of Fujimori (2006),Documentary +207610,Batla House (2019),Action|Drama|Thriller +207612,Tell Me Who I Am (2019),Documentary +207614,Os Saltimbancos Trapalhões (1981),Adventure|Children|Comedy +207616,Os Trapalhões no Reino da Fantasia (1985),Adventure|Children|Comedy|Fantasy +207618,Os Fantasmas Trapalhões (1987),Children|Comedy +207620,O Casamento dos Trapalhões (1988),Children|Comedy +207622,A Princesa Xuxa e os Trapalhões (1989),Adventure|Children|Comedy|Sci-Fi +207624,O Noviço Rebelde (1997),Children|Comedy +207626,"Simão, o Fantasma Trapalhão (1998)",Children|Comedy|Fantasy|Mystery +207628,Didi e o Segredo dos Anjos (2014),(no genres listed) +207630,Someone Behind the Door (1971),Thriller +207632,An Officer and a Spy (2019),Drama +207634,Scotch: A Golden Dream (2019),Documentary +207638,La belle époque (2019),Comedy|Drama +207640,Vision Portraits (2019),Documentary +207642,Kabir Singh (2019),Action|Drama|Romance +207644,Stupid Young Heart (2018),Drama +207646,Miss Virginia (2019),Drama +207648,Claire Darling (2019),Drama +207650,The Mask of Diijon (1946),Drama|Horror|Mystery +207652,The Psychotronic Man (1980),Horror|Sci-Fi +207654,Ghost Ship (2015),Horror +207656,Kill Chain (2019),Thriller +207658,Other People's Money (1978),Drama +207660,24 Frames Per Second (1977),(no genres listed) +207662,Haphead (2015),Sci-Fi +207666,Private Road (1971),Drama +207668,Searching Eva (2019),Documentary +207672,Bajo el mismo techo (2019),Comedy +207674,Hungry for Monsters (2004),(no genres listed) +207678,The Wolf House (2018),Animation|Drama|Horror +207680,My Best Holidays (2012),Children|Comedy +207682,Le Temps des Forêts (2018),Documentary +207684,Lucero (2019),Horror|Mystery +207688,Taris (1931),Documentary +207690,Seventeen (2019),Drama +207692,Breakable You (2017),Comedy|Drama +207694,"Takumi - A 60,000 hour story on the survival of human craft. (2019)",Documentary +207698,Netizens (2018),Documentary +207700,True Fiction (2018),Thriller +207702,A Cinderella Story: Christmas Wish (2019),Comedy|Romance +207706,Little Miss Dolittle (2018),Children|Comedy|Crime|Fantasy +207708,Pariyerum Perumal (2018),Drama|Romance +207710,Another Child (2019),Drama +207712,93 Days (2016),(no genres listed) +207714,Tales of Found Footage,(no genres listed) +207718,Our Time Is Up (2004),Comedy +207722,Give Me Liberty (2019),Comedy|Drama +207726,Annie Oakley (2006),Documentary +207734,Coney Island (1991),Documentary +207738,The American Experience: FDR (1994),Documentary +207782,The Donner Party (1992),Documentary +207796,The Aeronauts (2019),Action|Adventure|Drama|Thriller +207802,Classic Albums: Elton John - Goodbye Yellow Brick Road (2001),Documentary +207808,Classic Albums: Paul Simon - Graceland (1997),Documentary +207810,Classic Albums: Steely Dan - Aja (1999),(no genres listed) +207812,Classic Albums: Stevie Wonder - Songs in the Key of Life (1997),Documentary +207814,The Nude Vampire (1970),Horror|Sci-Fi +207818,"Trailer Park Boys: Drunk, High and Unemployed: Live In Austin (2015)",Comedy +207824,Fidelity (2019),Drama +207826,The Relative Worlds (2019),Animation|Drama|Romance +207828,Birthday Wonderland (2019),Animation|Fantasy +207830,Terminator: Dark Fate (2019),Action|Sci-Fi +207834,Jenny Slate: Stage Fright (2019),Comedy|Documentary +207848,Hush... Girls Don't Scream (2013),(no genres listed) +207850,Gasht-e 2 (2017),Comedy +207852,Sperm Whale (2015),Comedy +207854,Sperm Whale: Roya's Selection (2017),Comedy +207856,6.5 Toman Per Meter (2019),Drama +207858,Chahar Changooli (2008),Comedy +207860,On Happiness Road (2018),Animation|Drama +207862,Hedi Schneider Is Stuck (2015),Comedy|Drama +207868,Freeze Die Come to Life (1990),Drama +207874,Martin Eden (2019),Drama +207876,The Wheel (2019),Action|Sci-Fi +207878,5 in the Afternoon (2017),Comedy|Drama +207880,Зайчонок и муха (1977),Animation +207882,Quanta (2019),Drama|Sci-Fi +207884,Enduring Destiny,(no genres listed) +207888,Black and Blue (2019),Action|Crime|Drama +207890,Countdown (2019),Horror|Thriller +207892,Western Stars (2019),Documentary +207898,The Useless Girl (1982),Children|Drama +207900,Berserker (2004),Action|Adventure|Fantasy +207902,Alien Outlaw (1985),Comedy|Horror|Mystery|Sci-Fi|Western +207906,Woman Haters (1934),Comedy +207908,Tsar to Lenin (1937),(no genres listed) +207912,Hour of Death (1964),Western +207914,All Creatures Here Below (2019),Drama +207926,The Harrowing (2017),Thriller +207928,The Templar Code: Crusade of Secrecy (2005),Documentary +207930,Rattlesnake (2019),Drama|Horror|Mystery|Thriller +207944,Prey (2019),Adventure|Horror|Thriller +207946,Women of Mafia 2 (2019),Action|Crime|Drama +207976,51 Nevada (2018),Horror|Sci-Fi +207984,Low Tide (2019),Drama|Thriller +207986,Ready to Mingle (2019),Comedy +207996,The Parting Glass (2019),Drama +207998,Hyperspace (1984),Comedy|Sci-Fi +208000,"Love, Fall & Order (2019)",Romance +208002,The Kill Team (2019),Drama|War +208006,Chhichhore (2019),Comedy|Romance +208008,Clownado (2019),Comedy|Horror +208012,Goodbye Trainmen (1992),Drama +208014,The Wonderland (2016),Children|Comedy +208016,Bad at Dancing (2015),Comedy|Drama +208024,"Goodnight, My Love (1972)",Comedy|Crime|Mystery +208026,Vincent (2016),Comedy|Drama +208028,La vie nous appartient (2016),Drama +208030,Dog in a Sidecar (2007),Drama +208032,A Tiger in Winter (2018),Drama +208034,Warehoused (2015),(no genres listed) +208036,Kaappaan (2019),Action|Drama +208038,Teen Titans Go! vs. Teen Titans (2019),Action|Animation +208040,Sorry We Missed You (2019),Drama +208042,Text (2019),Drama|Thriller +208044,Maniac Farmer (2019),Comedy|Horror|Thriller +208046,Täydellinen joulu (2019),Comedy +208058,The Middle Distance (2015),Drama +208062,Are You in the House Alone? (1978),Drama|Horror|Mystery|Thriller +208064,Bog (1979),Horror +208076,Hana's Miso Soup (2015),Children|Drama +208078,Phil (2019),Comedy|Drama +208080,Bruja (2019),Drama|Fantasy|Thriller +208082,Dark Encounter (2019),Horror|Sci-Fi +208086,Silicon Valley (2013),Documentary +208090,The Fallen of World War II (2015),Documentary|War +208092,The Machine That Made Us (2008),Documentary +208094,Richard III: The King in the Car Park (2013),Documentary +208096,Harriet (2019),Drama +208098,Обратная связь (1978),Drama +208100,The Chairman (1964),Drama +208104,Portals (2019),Horror|Sci-Fi +208110,A Shaun the Sheep Movie: Farmageddon (2019),Animation|Children|Comedy +208112,Rudolph the Red-Nosed Reindeer & the Island of Misfit Toys (2001),Animation|Children +208114,Cricket on the Hearth (1967),Animation|Children +208116,Everything Is Terrible! Presents: The Great Satan (2017),Comedy|Fantasy|Horror +208118,Einstein (2008),Documentary +208120,Fahim (2019),Drama +208122,Christmas Wishes & Mistletoe Kisses (2019),Romance +208148,The Reincarnate (1971),Horror +208150,Burning Cane (2019),Drama +208152,Ghost Tropic (2019),(no genres listed) +208156,Paul McCartney In Red Square (2003),(no genres listed) +208158,Instinct (2019),Drama +208160,Balablok (1972),Animation +208162,Overture (1965),Documentary +208164,The Family of Chimps (1984),Documentary +208166,The Road Home for Christmas (2019),Drama +208168,The Search for the Northwest Passage (2005),Documentary +208170,Arsenio Hall: Smart and Classy (2019),Comedy +208172,Notes from Dad (2013),(no genres listed) +208178,The Zone (2011),Drama +208181,The Head (2004),(no genres listed) +208183,Thiruda Thirudi (2003),Action|Comedy|Drama|Romance +208185,Azhagiya Tamil Magan (2007),Action|Drama +208187,The Monkey Folk (1989),(no genres listed) +208189,The Invasion of Carol Enders (1973),Drama|Horror +208195,Brian Regan: I Walked on the Moon (2004),Comedy +208199,Rufus (2013),Drama +208201,Freshwater (2016),Horror|Thriller +208213,A Visitor from the Living (1999),Documentary +208215,L'Amour flou (2018),Comedy +208217,The Brain (2008),Documentary +208219,Lens (2016),Thriller +208221,Devil Bat's Daughter (1946),Horror +208225,Stalin: Inside the Terror (2003),Documentary +208229,Mi marido y sus complejos (1969),(no genres listed) +208231,1066: A Year to Conquer England (2017),Documentary|Drama +208233,Ein Sommer in Salamanca (2019),Drama +208235,Brazil: A Report on Torture (1971),Documentary +208237,Nostalgic Christmas (2019),Romance +208239,S.S. Doomtrooper (2006),Action|Horror|Sci-Fi +208241,White Snake (2019),Animation|Fantasy|Romance +208247,The Awakening of Motti Wolkenbruch (2018),Comedy +208249,Bobby Yeah (2011),Animation|Horror +208253,A Wind Named Amnesia (1990),Adventure|Animation|Drama +208255,Das perfekte Geheimnis (2019),(no genres listed) +208259,Semper Fi (2019),Action|Drama +208265,Rolli and the Golden Key (2013),Adventure +208267,Ella and Friends (2012),Adventure|Children|Comedy +208269,Princess Lillifee (2009),Children +208271,Princess Lillifee and the Little Unicorn (2011),Animation|Children +208273,JerryMaja's Detective Agency - Shadows of Valleby (2014),Children +208275,Ella and Friends 2 - Paterock (2013),Children|Comedy +208277,Kadonnut: Joulupukki (2014),Children|Fantasy +208279,"Mayflower, Quiltshoe & The Rubens Brothers (2017)",Children|Comedy +208291,G Affairs (2018),Crime|Drama|Mystery +208293,The Seven Deadly Sins: Prisoners of the Sky (2018),Action|Adventure|Animation|Fantasy +208295,Playing with Fire (2019),Comedy +208297,"""BLOW THE NIGHT!"" Let's Spend the Night Together (1983)",Documentary|Drama +208319,Flores (2017),(no genres listed) +208341,Badland (2019),Western +208351,Recall (2018),Drama +208353,Laundry Show (2019),Comedy|Drama +208355,Whistleblower (2019),Mystery +208367,Up North (2018),Drama +208377,Adopt a Highway (2019),Drama +208381,We Who Stayed Behind (2008),(no genres listed) +208383,Why Don't You Just Die! (2018),Comedy +208385,Holiday in the Wild (2019),Drama|Romance +208389,Tomme tønner (2010),Action|Comedy +208391,Omnivores (2013),Horror|Thriller +208393,Sin Reaper (2013),Horror|Thriller +208395,The Haunting (2009),Horror|Mystery +208397,Joshua (2006),Horror +208399,Fangoria: Blood Drive II (2005),Horror +208401,Fangoria: Blood Drive (2004),Horror +208403,One Hell of a Christmas (2002),Action|Comedy|Crime +208405,Scream - Because I Will Kill You! (1999),Horror +208407,Angel of the Night (1998),Horror +208409,Lady of the Lake (1998),(no genres listed) +208411,Eternal Blood (2002),Action|Horror|Thriller +208413,Big Business (1929),Comedy +208415,The Student of Prague (1926),Horror +208417,Waterwalker (1984),(no genres listed) +208419,Mokalik (Mechanic) (2019),(no genres listed) +208421,Prelude (2013),Drama +208423,Sudden Fury (1975),Crime|Drama|Thriller +208425,Ville-Marie (2015),Drama|Thriller +208427,10 jours en or (2012),Comedy|Drama +208431,American Experience: 1964 (2014),Documentary +208433,War (2019),Action|Thriller +208435,Super 30 (2019),Drama +208443,The Elephant Queen (2019),Documentary +208445,Mickey and the Bear (2019),Drama +208447,"I Was at Home, But (2019)",Drama +208453,New Money (2018),Fantasy +208455,Terrifier (2011),Horror +208457,Taxi a Gibraltar (2019),Comedy +208465,Jallikattu (2019),Action|Crime|Drama|Thriller +208467,The Judge and the General (2008),(no genres listed) +208471,Kullanari Koottam (2011),Romance +208473,Meeting Gorbachev (2019),Documentary +208475,Cry of the Wild (1973),Documentary +208477,Kaithi (2019),Action|Thriller +208479,Land of São Saruê (1971),Documentary +208495,American Son (2019),Drama +208497,Marilyn Monroe Declassified (2015),Documentary +208499,"Dennis Miller: Fake News, Real Jokes (2018)",Comedy|Documentary +208501,Beasts Of The Bible (2013),(no genres listed) +208503,Endless Desire (1958),Drama +208505,O Velho - A História de Luiz Carlos Prestes (1997),(no genres listed) +208507,Darlin' (2019),Horror|Thriller +208513,Wilderness Survival for Girls (2004),Drama|Horror|Thriller +208515,The Pining (2019),Horror +208529,Staline: Le tyran rouge (2007),Documentary +208531,Earthquake Bird (2019),Crime|Drama|Mystery +208545,Eminence Hill (2019),Western +208563,The Note (2007),Drama|Romance +208565,St. Roz (2010),Children|Comedy|Drama +208567,"Filhos de João, O Admirável Mundo Novo Baiano (2009)",Documentary +208569,After Hitler (2016),Documentary +208573,The Cat Creeps (1946),Horror|Mystery +208575,Hajen som visste för mycket (1989),(no genres listed) +208577,Nattbuss 807 (1997),(no genres listed) +208579,Babas bilar (2006),Action|Comedy +208581,30 Nights (2018),Comedy +208591,The Kingmaker (2019),Documentary +208597,Punk the Capital: Building a Sound Movement,Documentary +208599,The Eagle and the Lion: Hitler vs Churchill (2017),Documentary|War +208603,The World According to Xi Jinping (2018),Documentary +208605,Voyager: To the Final Frontier (2012),Documentary +208607,Our Time Will Come (2017),Drama +208609,The Norliss Tapes (1973),Horror|Thriller +208611,Sökarna (1993),Action|Crime|Drama|Thriller +208613,Untitled (A Film) (2017),Thriller +208615,Botinada: A Origem do Punk no Brasil (2006),Documentary +208617,Kingdom of the Blue Whale (2009),Documentary +208623,Hollywood Harry (1986),Comedy|Crime|Thriller +208639,The Village in the Woods (2019),Horror|Thriller +208651,Image Makers: The Adventures of America’s Pioneer Cinematographers (2019),Documentary +208655,The Coldest Game (2019),(no genres listed) +208679,Deer Boy (2017),Drama|Fantasy +208681,Hockey Night (1984),Drama +208683,The Man Without Gravity (2019),Fantasy +208689,Lo nunca visto (2019),Comedy +208691,Chinatown Squad (1935),Action|Crime +208693,Pippi Longstocking (1997),Adventure|Animation|Children|Comedy +208695,Vi på Saltkråkan (1968),Children +208697,Tjorven and Skrallan (1965),Children +208699,Tjorven and Mysak (1966),Children +208701,Pippi i Söderhavet (1999),Animation|Children +208705,Fra Thailand Til Thy (2007),Documentary +208707,Pillertrillaren (1994),Comedy|Romance +208709,The Dog Trick (2002),Comedy|Drama|Romance +208711,Seth Meyers: Lobby Baby (2019),Comedy +208715,Let It Snow (2019),Comedy|Romance +208717,Zagros (2017),Drama +208727,Bangla (2019),(no genres listed) +208731,The Vampires of Poverty (1977),Documentary +208733,Valley of the Zombies (1946),Horror +208735,Invasion (2014),Documentary|War +208737,Midway (2019),Action|Drama|War +208741,Let Her Cry (2016),Drama +208743,Judgment Day: The John List Story (1993),Crime|Drama +208745,Hell House LLC III: Lake of Fire (2019),Horror +208747,The Good Liar (2019),Drama|Mystery +208749,Clive Davis: The Soundtrack of Our Lives (2017),Documentary +208751,Strange Bedfellows (2004),Comedy +208763,Yosemite: The Fate of Heaven,(no genres listed) +208765,Picture a Perfect Christmas (2019),Romance +208767,Mobile Suit Gundam I (1981),Action|Adventure|Animation|Drama|Sci-Fi|War +208769,Pressure Point (1997),Action|Thriller +208773,I Lost My Body (2019),Animation|Drama +208779,Emu Runner (2018),Children|Drama +208783,A Dragonfly for Each Corpse (1975),Crime|Mystery|Thriller +208785,Winston Churchill: A Giant in the Century (2014),Documentary|War +208787,Marvel Renaissance (2014),Documentary +208789,The Nerd's Confession (2016),Drama +208791,Last Screening (2011),Drama|Horror +208793,Watchman (2019),Drama|Thriller +208795,Zana (2019),Drama +208799,Head (2015),Comedy|Horror +208800,Lady and the Tramp (2019),Comedy|Romance +208802,Minion Scouts (2019),(no genres listed) +208804,Spell (2018),Comedy|Drama|Thriller +208806,First Man on the Moon (2012),Documentary +208809,National Geographic: Incredible Human Machine (2007),Documentary +208811,If You Believe (1999),Drama +208813,Noelle (2019),Children +208815,The Life and Times of Frida Kahlo (2005),Documentary +208819,Short and Suite (1959),Animation +208821,"Fireworks, Should We See It from the Side or the Bottom? (1995)",Drama|Romance +208823,The Third Reich In Color (1998),Documentary +208837,Hurricane Smith (1992),Action|Drama +208843,An Acceptable Loss (2019),Drama|Thriller +208855,Dad's Dead (2002),(no genres listed) +208857,Bottle (2011),Animation +208859,Screen Play (1992),(no genres listed) +208861,Next (1990),Animation +208863,Homicide: The Movie (2000),Crime|Drama +208869,Hostage Flight (1985),(no genres listed) +208887,The Specials (2019),Comedy +208889,Whoopi Goldberg: Direct from Broadway (1985),(no genres listed) +208893,Trackman (2007),Horror|Thriller +208901,"Carlota Joaquina, Princess of Brazil (1995)",(no genres listed) +208905,Minha Vida em Marte (2018),Comedy|Romance +208907,Till Luck Do Us Part 2 (2013),Comedy +208909,Super Xuxa Contra o Baixo Astral (1988),Children|Comedy|Fantasy +208911,Cheating in Chains (2006),Comedy +208913,Apollo: The Forgotten Films (2019),Documentary +208915,Undercover Brother 2 (2019),Action|Comedy +208917,Caicedo (with Pole) (1894),Documentary +208919,Indian Day School (1898),(no genres listed) +208921,A Street Arab (1898),Documentary +208923,The Magic Book (1900),(no genres listed) +208933,The Devil's Partner (1961),Horror +208939,Klaus (2019),Adventure|Animation|Children|Comedy +208941,"Maria, Mirabella (1981)",Animation|Children|Comedy +208943,Acceleration (2019),(no genres listed) +208945,Powder (2019),Comedy|Drama +208955,Nadide's Life (2015),Comedy|Drama +208967,Ochberg's Orphans (2008),(no genres listed) +208973,The Falklands War: The Untold Story,(no genres listed) +209005,Paris The Luminous Years (2010),Documentary +209007,The Queen of Trees (2005),Documentary|Drama +209035,time for sushi (2017),Animation|Comedy +209037,Our Wonderful Nature - The Common Chameleon (2016),(no genres listed) +209041,Yamasong: March of the Hollows (2017),Animation|Fantasy +209049,No Safe Spaces (2019),Documentary +209051,Jeff Garlin: Our Man in Chicago (2019),(no genres listed) +209053,Bowling (2012),Comedy +209055,"Very Well, Thank You (2007)",Comedy|Drama +209057,The Somme (2005),Drama +209063,The Prep School Negro (2012),(no genres listed) +209065,Aladdin and His Wonder Lamp (1906),(no genres listed) +209067,Sousse: Marché aux charbons (avec chameaux) (1896),(no genres listed) +209069,Snapshots (2002),Drama|Romance +209073,The Arbalest (2016),Drama +209075,Monkey Love Experiments (2014),Animation|Drama +209079,Call of Cuteness (2017),Animation +209085,The Mistletoe Secret (2019),Romance +209089,An Impossible Balancing Feat (1902),(no genres listed) +209101,Hua yang de nian hua (2001),(no genres listed) +209103,Tsar Ivan the Terrible (1991),(no genres listed) +209119,Up to the World (2014),Comedy|Drama +209121,Adrenalin: The BMW Touring Car Story (2014),Documentary +209123,Square Roots: The Story of SpongeBob SquarePants (2009),Documentary +209129,Destination Titan (2011),Documentary +209131,Last Days of the Arctic (2011),Documentary +209133,The Riot and the Dance (2018),(no genres listed) +209135,Jane B. by Agnès V. (1988),Documentary|Fantasy +209137,The Reward's Yours... The Man's Mine (1969),Western +209139,Rimsky-Korsakov (1953),Drama +209141,And They Lived Happily Ever After (1976),Comedy +209143,The Painting (2019),Animation|Documentary +209145,Liberté (2019),Drama +209147,The Carpet of Horror (1962),Crime|Horror +209151,Mao Zedong 1949 (2019),(no genres listed) +209153,Happy Flight (2008),Comedy|Drama +209155,Santosh Subramaniam (2008),Action|Comedy|Romance +209157,We (2018),Drama +209159,Window of the Soul (2001),Documentary +209163,Bad Poems (2018),Comedy|Drama +209169,A Girl Thing (2001),(no genres listed) +209171,Women of Devil's Island (1962),Action|Adventure|Drama diff --git a/unsupervised-predict-streamlit-teames2/resources/data/rated_movies.csv b/unsupervised-predict-streamlit-teames2/resources/data/rated_movies.csv new file mode 100644 index 00000000..9f6e1778 --- /dev/null +++ b/unsupervised-predict-streamlit-teames2/resources/data/rated_movies.csv @@ -0,0 +1,8863 @@ +movieId,rating,title,genres +1,3.8724696356275303,Toy Story (1995),Adventure|Animation|Children|Comedy|Fantasy +2,3.4018691588785046,Jumanji (1995),Adventure|Children|Fantasy +3,3.1610169491525424,Grumpier Old Men (1995),Comedy|Romance +4,2.3846153846153846,Waiting to Exhale (1995),Comedy|Drama|Romance +5,3.267857142857143,Father of the Bride Part II (1995),Comedy +6,3.8846153846153846,Heat (1995),Action|Crime|Thriller +7,3.2830188679245285,Sabrina (1995),Comedy|Romance +8,3.8,Tom and Huck (1995),Adventure|Children +9,3.15,Sudden Death (1995),Action +10,3.4508196721311477,GoldenEye (1995),Action|Adventure|Thriller +11,3.6890243902439024,"American President, The (1995)",Comedy|Drama|Romance +12,2.861111111111111,Dracula: Dead and Loving It (1995),Comedy|Horror +13,3.9375,Balto (1995),Adventure|Animation|Children +14,3.4516129032258065,Nixon (1995),Drama +15,2.3181818181818183,Cutthroat Island (1995),Action|Adventure|Romance +16,3.9488636363636362,Casino (1995),Crime|Drama +17,3.9244186046511627,Sense and Sensibility (1995),Drama|Romance +18,3.2884615384615383,Four Rooms (1995),Comedy +19,2.597826086956522,Ace Ventura: When Nature Calls (1995),Comedy +20,2.5384615384615383,Money Train (1995),Action|Comedy|Crime|Drama|Thriller +21,3.536842105263158,Get Shorty (1995),Comedy|Crime|Thriller +22,3.3552631578947367,Copycat (1995),Crime|Drama|Horror|Mystery|Thriller +23,3.090909090909091,Assassins (1995),Action|Crime|Thriller +24,3.0441176470588234,Powder (1995),Drama|Sci-Fi +25,3.742574257425743,Leaving Las Vegas (1995),Drama|Romance +26,4.1,Othello (1995),Drama +27,3.142857142857143,Now and Then (1995),Children|Drama +28,4.083333333333333,Persuasion (1995),Drama|Romance +29,4.025,"City of Lost Children, The (Cité des enfants perdus, La) (1995)",Adventure|Drama|Fantasy|Mystery|Sci-Fi +30,4.05,Shanghai Triad (Yao a yao yao dao waipo qiao) (1995),Crime|Drama +31,3.1785714285714284,Dangerous Minds (1995),Drama +32,3.923469387755102,Twelve Monkeys (a.k.a. 12 Monkeys) (1995),Mystery|Sci-Fi|Thriller +34,3.6013513513513513,Babe (1995),Children|Drama +35,3.5454545454545454,Carrington (1995),Drama|Romance +36,3.9375,Dead Man Walking (1995),Crime|Drama +37,2.0,Across the Sea of Time (1995),Documentary|IMAX +38,2.0,It Takes Two (1995),Children|Comedy +39,3.55,Clueless (1995),Comedy|Romance +40,3.9166666666666665,"Cry, the Beloved Country (1995)",Drama +41,4.021739130434782,Richard III (1995),Drama|War +42,2.3333333333333335,Dead Presidents (1995),Action|Crime|Drama +43,3.625,Restoration (1995),Drama +44,2.6973684210526314,Mortal Kombat (1995),Action|Adventure|Fantasy +45,3.5232558139534884,To Die For (1995),Comedy|Drama|Thriller +46,3.1666666666666665,How to Make an American Quilt (1995),Drama|Romance +47,4.034825870646766,Seven (a.k.a. Se7en) (1995),Mystery|Thriller +48,2.9262295081967213,Pocahontas (1995),Animation|Children|Drama|Musical|Romance +49,4.0,When Night Is Falling (1995),Drama|Romance +50,4.370646766169155,"Usual Suspects, The (1995)",Crime|Mystery|Thriller +52,3.6372549019607843,Mighty Aphrodite (1995),Comedy|Drama|Romance +53,5.0,Lamerica (1994),Adventure|Drama +54,3.6666666666666665,"Big Green, The (1995)",Children|Comedy +55,3.3333333333333335,Georgia (1995),Drama +57,3.142857142857143,Home for the Holidays (1995),Drama +58,4.0,"Postman, The (Postino, Il) (1994)",Comedy|Drama|Romance +59,4.0,"Confessional, The (Confessionnal, Le) (1995)",Drama|Mystery +60,2.828125,"Indian in the Cupboard, The (1995)",Adventure|Children|Fantasy +61,3.5714285714285716,Eye for an Eye (1996),Drama|Thriller +62,3.689655172413793,Mr. Holland's Opus (1995),Drama +63,2.8333333333333335,Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996),Comedy|Crime +64,2.4,Two if by Sea (1996),Comedy|Romance +65,2.025,Bio-Dome (1996),Comedy +66,2.0,Lawnmower Man 2: Beyond Cyberspace (1996),Action|Sci-Fi|Thriller +68,3.5,French Twist (Gazon maudit) (1995),Comedy|Romance +69,3.8181818181818183,Friday (1995),Comedy +70,3.0208333333333335,From Dusk Till Dawn (1996),Action|Comedy|Horror|Thriller +71,2.4285714285714284,Fair Game (1995),Action +72,3.1666666666666665,Kicking and Screaming (1995),Comedy|Drama +73,4.115384615384615,"Misérables, Les (1995)",Drama|War +74,3.026315789473684,Bed of Roses (1996),Drama|Romance +76,3.3333333333333335,Screamers (1995),Action|Sci-Fi|Thriller +77,4.0,Nico Icon (1995),Documentary +78,3.2,"Crossing Guard, The (1995)",Action|Crime|Drama|Thriller +79,2.9615384615384617,"Juror, The (1996)",Drama|Thriller +80,4.625,"White Balloon, The (Badkonake sefid) (1995)",Children|Drama +81,3.25,Things to Do in Denver When You're Dead (1995),Crime|Drama|Romance +82,3.8,Antonia's Line (Antonia) (1995),Comedy|Drama +83,3.0,Once Upon a Time... When We Were Colored (1995),Drama|Romance +84,4.0,Last Summer in the Hamptons (1995),Comedy|Drama +85,4.0625,Angels and Insects (1995),Drama|Romance +86,3.764705882352941,White Squall (1996),Action|Adventure|Drama +87,1.6666666666666667,Dunston Checks In (1996),Children|Comedy +88,2.891304347826087,Black Sheep (1996),Comedy +89,3.4411764705882355,Nick of Time (1995),Action|Thriller +92,3.5416666666666665,Mary Reilly (1996),Drama|Horror|Thriller +93,2.227272727272727,Vampire in Brooklyn (1995),Comedy|Horror|Romance +94,3.5681818181818183,Beautiful Girls (1996),Comedy|Drama|Romance +95,3.1774193548387095,Broken Arrow (1996),Action|Adventure|Thriller +96,1.0,In the Bleak Midwinter (1995),Comedy|Drama +97,3.875,"Hate (Haine, La) (1995)",Crime|Drama +98,3.0,Shopping (1994),Action|Thriller +99,2.75,Heidi Fleiss: Hollywood Madam (1995),Documentary +100,3.4285714285714284,City Hall (1996),Drama|Thriller +101,3.8823529411764706,Bottle Rocket (1996),Adventure|Comedy|Crime|Romance +102,2.590909090909091,Mr. Wrong (1996),Comedy +103,4.0,Unforgettable (1996),Mystery|Sci-Fi|Thriller +104,3.2925531914893615,Happy Gilmore (1996),Comedy +105,3.1145833333333335,"Bridges of Madison County, The (1995)",Drama|Romance +107,3.462962962962963,Muppet Treasure Island (1996),Adventure|Children|Comedy|Musical +108,4.0,Catwalk (1996),Documentary +110,3.9451754385964914,Braveheart (1995),Action|Drama|War +111,4.22457627118644,Taxi Driver (1976),Crime|Drama|Thriller +112,3.295918367346939,Rumble in the Bronx (Hont faan kui) (1995),Action|Adventure|Comedy|Crime +113,3.2,Before and After (1996),Drama|Mystery +114,3.0,Margaret's Museum (1995),Drama +116,4.75,Anne Frank Remembered (1995),Documentary +117,3.0,"Young Poisoner's Handbook, The (1995)",Crime|Drama +118,2.8,If Lucy Fell (1996),Comedy|Romance +119,3.0,"Steal Big, Steal Little (1995)",Comedy +121,3.8,"Boys of St. Vincent, The (1992)",Drama +122,3.0526315789473686,Boomerang (1992),Comedy|Romance +123,4.0,Chungking Express (Chung Hing sam lam) (1994),Drama|Mystery|Romance +124,3.0,"Star Maker, The (Uomo delle stelle, L') (1995)",Drama +125,3.7142857142857144,Flirting With Disaster (1996),Comedy +126,2.7,"NeverEnding Story III, The (1994)",Adventure|Children|Fantasy +129,3.0,Pie in the Sky (1996),Comedy|Romance +130,4.5,Angela (1995),Drama +131,2.0,Frankie Starlight (1995),Drama|Romance +132,2.875,Jade (1995),Thriller +135,3.0,Down Periscope (1996),Comedy +137,1.0,Man of the Year (1995),Documentary +140,3.4782608695652173,Up Close and Personal (1996),Drama|Romance +141,3.5806451612903225,"Birdcage, The (1996)",Comedy +144,3.326923076923077,"Brothers McMullen, The (1995)",Comedy +145,3.2790697674418605,Bad Boys (1995),Action|Comedy|Crime|Drama|Thriller +146,4.333333333333333,"Amazing Panda Adventure, The (1995)",Adventure|Children +147,3.642857142857143,"Basketball Diaries, The (1995)",Drama +148,4.0,"Awfully Big Adventure, An (1995)",Drama +149,4.333333333333333,Amateur (1994),Crime|Drama|Thriller +150,3.9025,Apollo 13 (1995),Adventure|Drama|IMAX +151,3.5625,Rob Roy (1995),Action|Drama|Romance|War +152,3.8333333333333335,"Addiction, The (1995)",Drama|Horror +153,2.7829457364341086,Batman Forever (1995),Action|Adventure|Comedy|Crime +154,3.8125,Beauty of the Day (Belle de jour) (1967),Drama +155,3.0555555555555554,Beyond Rangoon (1995),Adventure|Drama|War +156,3.9545454545454546,Blue in the Face (1995),Comedy|Drama +157,2.375,Canadian Bacon (1995),Comedy|War +158,2.8706896551724137,Casper (1995),Adventure|Children +159,3.9375,Clockers (1995),Crime|Drama|Mystery +160,2.3412698412698414,Congo (1995),Action|Adventure|Mystery|Sci-Fi +161,3.83125,Crimson Tide (1995),Drama|Thriller|War +162,4.136363636363637,Crumb (1994),Documentary +163,3.515873015873016,Desperado (1995),Action|Romance|Western +164,3.5576923076923075,Devil in a Blue Dress (1995),Crime|Film-Noir|Mystery|Thriller +165,3.443661971830986,Die Hard: With a Vengeance (1995),Action|Crime|Thriller +166,3.0,"Doom Generation, The (1995)",Comedy|Crime|Drama +167,4.0,Feast of July (1995),Drama +168,3.116279069767442,First Knight (1995),Action|Drama|Romance +169,2.5625,Free Willy 2: The Adventure Home (1995),Adventure|Children|Drama +170,3.2884615384615383,Hackers (1995),Action|Adventure|Crime|Thriller +171,4.333333333333333,Jeffrey (1995),Comedy|Drama +172,2.5729166666666665,Johnny Mnemonic (1995),Action|Sci-Fi|Thriller +173,2.5642857142857145,Judge Dredd (1995),Action|Crime|Sci-Fi +174,2.25,Jury Duty (1995),Comedy +175,3.9565217391304346,Kids (1995),Drama +176,3.7777777777777777,Living in Oblivion (1995),Comedy +177,2.8846153846153846,Lord of Illusions (1995),Horror +178,4.7,Love & Human Remains (1993),Comedy|Drama +179,3.5,Mad Love (1995),Drama|Romance +180,3.3068181818181817,Mallrats (1995),Comedy|Romance +181,1.8,Mighty Morphin Power Rangers: The Movie (1995),Action|Children +183,5.0,Mute Witness (1994),Comedy|Horror|Thriller +184,4.5,Nadja (1994),Drama +185,3.1029411764705883,"Net, The (1995)",Action|Crime|Thriller +186,2.875,Nine Months (1995),Comedy|Romance +187,2.8333333333333335,Party Girl (1995),Comedy +188,3.125,"Prophecy, The (1995)",Fantasy|Horror|Mystery +189,4.0,Reckless (1995),Comedy|Fantasy +190,3.8333333333333335,Safe (1995),Thriller +191,3.0,"Scarlet Letter, The (1995)",Drama|Romance +193,2.3142857142857145,Showgirls (1995),Drama +194,4.291666666666667,Smoke (1995),Comedy|Drama +195,3.2142857142857144,Something to Talk About (1995),Comedy|Drama|Romance +196,2.809090909090909,Species (1995),Horror|Sci-Fi +198,3.441860465116279,Strange Days (1995),Action|Crime|Drama|Mystery|Sci-Fi|Thriller +199,3.3333333333333335,"Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964)",Drama|Musical|Romance +200,4.0,"Tie That Binds, The (1995)",Thriller +201,4.0,Three Wishes (1995),Drama|Fantasy +202,3.0,Total Eclipse (1995),Drama|Romance +203,3.3043478260869565,"To Wong Foo, Thanks for Everything! Julie Newmar (1995)",Comedy +204,3.0,Under Siege 2: Dark Territory (1995),Action +205,4.0,Unstrung Heroes (1995),Comedy|Drama +206,3.6,Unzipped (1995),Documentary +207,3.375,"Walk in the Clouds, A (1995)",Drama|Romance +208,2.752212389380531,Waterworld (1995),Action|Adventure|Sci-Fi +209,2.6,White Man's Burden (1995),Drama +211,3.3333333333333335,"Browning Version, The (1994)",Drama +213,4.222222222222222,Burnt by the Sun (Utomlyonnye solntsem) (1994),Drama +214,3.0,Before the Rain (Pred dozhdot) (1994),Drama|War +215,3.7222222222222223,Before Sunrise (1995),Drama|Romance +216,3.0238095238095237,Billy Madison (1995),Comedy +217,2.7142857142857144,"Babysitter, The (1995)",Drama|Thriller +218,3.3333333333333335,Boys on the Side (1995),Comedy|Drama +219,4.25,"Cure, The (1995)",Drama +220,3.0,Castle Freak (1995),Horror +222,3.9318181818181817,Circle of Friends (1995),Drama|Romance +223,3.963302752293578,Clerks (1994),Comedy +224,3.6,Don Juan DeMarco (1995),Comedy|Drama|Romance +225,3.173076923076923,Disclosure (1994),Drama|Thriller +227,3.15625,Drop Zone (1994),Action|Thriller +228,2.0,Destiny Turns on the Radio (1995),Comedy +229,4.083333333333333,Death and the Maiden (1994),Drama|Thriller +230,3.7,Dolores Claiborne (1995),Drama|Thriller +231,3.1107594936708862,Dumb & Dumber (Dumb and Dumber) (1994),Adventure|Comedy +232,4.208333333333333,Eat Drink Man Woman (Yin shi nan nu) (1994),Comedy|Drama|Romance +233,4.269230769230769,Exotica (1994),Drama +234,2.75,Exit to Eden (1994),Comedy +235,3.9038461538461537,Ed Wood (1994),Comedy|Drama +236,3.3583333333333334,French Kiss (1995),Action|Comedy|Romance +237,3.1911764705882355,Forget Paris (1995),Comedy|Romance +238,3.0,Far From Home: The Adventures of Yellow Dog (1995),Adventure|Children +239,2.933333333333333,"Goofy Movie, A (1995)",Animation|Children|Comedy|Romance +240,3.4,Hideaway (1995),Thriller +241,3.5,Fluke (1995),Children|Drama +242,3.75,Farinelli: il castrato (1994),Drama|Musical +243,4.0,Gordy (1995),Children|Comedy|Fantasy +244,3.0,Gumby: The Movie (1995),Animation|Children +245,3.0,The Glass Shield (1994),Crime|Drama +246,4.040983606557377,Hoop Dreams (1994),Documentary +247,3.6511627906976742,Heavenly Creatures (1994),Crime|Drama +248,3.1538461538461537,Houseguest (1994),Comedy +249,3.375,Immortal Beloved (1994),Drama|Romance +250,3.25,Heavyweights (Heavy Weights) (1995),Children|Comedy +251,3.0,"Hunted, The (1995)",Action +252,3.0609756097560976,I.Q. (1994),Comedy|Romance +253,3.396,Interview with the Vampire: The Vampire Chronicles (1994),Drama|Horror +254,3.0,Jefferson in Paris (1995),Drama +255,2.2,"Jerky Boys, The (1995)",Comedy +256,2.7023809523809526,Junior (1994),Comedy|Sci-Fi +257,3.576923076923077,Just Cause (1995),Mystery|Thriller +258,2.5,"Kid in King Arthur's Court, A (1995)",Adventure|Children|Comedy|Fantasy|Romance +259,3.7,Kiss of Death (1995),Crime|Drama|Thriller +260,4.221649484536083,Star Wars: Episode IV - A New Hope (1977),Action|Adventure|Sci-Fi +261,3.715686274509804,Little Women (1994),Drama +262,3.85,"Little Princess, A (1995)",Children|Drama +263,3.0,Ladybird Ladybird (1994),Drama +264,4.5,"Enfer, L' (1994)",Drama +265,3.879032258064516,Like Water for Chocolate (Como agua para chocolate) (1992),Drama|Fantasy|Romance +266,3.4863013698630136,Legends of the Fall (1994),Drama|Romance|War|Western +267,2.730769230769231,Major Payne (1995),Comedy +268,4.25,Little Odessa (1994),Crime|Drama +269,3.6666666666666665,My Crazy Life (Mi vida loca) (1993),Drama +270,3.2222222222222223,Love Affair (1994),Drama|Romance +271,3.5,Losing Isaiah (1995),Drama +272,4.0,"Madness of King George, The (1994)",Comedy|Drama +273,3.1296296296296298,Mary Shelley's Frankenstein (Frankenstein) (1994),Drama|Horror|Sci-Fi +274,2.6666666666666665,Man of the House (1995),Comedy +275,2.8,Mixed Nuts (1994),Comedy +276,2.8636363636363638,Milk Money (1994),Comedy|Romance +277,3.357142857142857,Miracle on 34th Street (1994),Drama +278,3.0,Miami Rhapsody (1995),Comedy +279,2.875,My Family (1995),Drama +280,4.113636363636363,Murder in the First (1995),Drama|Thriller +281,3.861111111111111,Nobody's Fool (1994),Comedy|Drama|Romance +282,3.284090909090909,Nell (1994),Drama +283,3.0,New Jersey Drive (1995),Crime|Drama +285,4.0,Beyond Bedlam (1993),Drama|Horror +287,3.2,Nina Takes a Lover (1994),Comedy|Romance +288,3.336448598130841,Natural Born Killers (1994),Action|Crime|Thriller +289,3.4642857142857144,Only You (1994),Comedy|Romance +290,3.9375,Once Were Warriors (1994),Crime|Drama +292,3.309090909090909,Outbreak (1995),Action|Drama|Sci-Fi|Thriller +293,4.071969696969697,Léon: The Professional (a.k.a. The Professional) (Léon) (1994),Action|Crime|Drama|Thriller +294,3.3333333333333335,"Perez Family, The (1995)",Comedy|Romance +295,3.0,"Pyromaniac's Love Story, A (1995)",Comedy|Romance +296,4.256172839506172,Pulp Fiction (1994),Comedy|Crime|Drama|Thriller +299,3.75,Priest (1994),Drama +300,3.75,Quiz Show (1994),Drama +301,5.0,Picture Bride (Bijo photo) (1994),Drama|Romance +302,3.7142857142857144,"Queen Margot (Reine Margot, La) (1994)",Drama|Romance +303,3.1875,"Quick and the Dead, The (1995)",Action|Thriller|Western +304,3.3333333333333335,Roommates (1995),Comedy|Drama +305,2.75,Ready to Wear (Pret-A-Porter) (1994),Comedy +306,4.171875,Three Colors: Red (Trois couleurs: Rouge) (1994),Drama +307,4.145161290322581,Three Colors: Blue (Trois couleurs: Bleu) (1993),Drama +308,4.159090909090909,Three Colors: White (Trzy kolory: Bialy) (1994),Comedy|Drama +309,5.0,"Red Firecracker, Green Firecracker (Pao Da Shuang Deng) (1994)",Drama +312,3.6,Stuart Saves His Family (1995),Comedy +313,2.7142857142857144,"Swan Princess, The (1994)",Animation|Children +314,3.9411764705882355,"Secret of Roan Inish, The (1994)",Children|Drama|Fantasy|Mystery +315,2.909090909090909,"Specialist, The (1994)",Action|Drama|Thriller +316,3.3689655172413793,Stargate (1994),Action|Adventure|Sci-Fi +317,2.9642857142857144,"Santa Clause, The (1994)",Comedy|Drama|Fantasy +318,4.487138263665595,"Shawshank Redemption, The (1994)",Crime|Drama +319,3.973684210526316,Shallow Grave (1994),Comedy|Drama|Thriller +320,2.75,Suture (1993),Film-Noir|Thriller +321,3.642857142857143,Strawberry and Chocolate (Fresa y chocolate) (1993),Drama +322,3.642857142857143,Swimming with Sharks (1995),Comedy|Drama +324,3.3333333333333335,"Sum of Us, The (1994)",Comedy|Drama +325,3.0,National Lampoon's Senior Trip (1995),Comedy +326,4.071428571428571,To Live (Huozhe) (1994),Drama +327,2.75,Tank Girl (1995),Action|Comedy|Sci-Fi +328,3.625,Tales from the Crypt Presents: Demon Knight (1995),Horror|Thriller +329,3.3508771929824563,Star Trek: Generations (1994),Adventure|Drama|Sci-Fi +330,2.7,Tales from the Hood (1995),Action|Crime|Horror +331,3.0,Tom & Viv (1994),Drama +332,3.2,Village of the Damned (1995),Horror|Sci-Fi +333,3.32,Tommy Boy (1995),Comedy +334,3.0714285714285716,Vanya on 42nd Street (1994),Drama +335,3.0,Underneath (1995),Mystery|Thriller +336,3.0,"Walking Dead, The (1995)",Drama|War +337,3.7954545454545454,What's Eating Gilbert Grape (1993),Drama +338,2.8,Virtuosity (1995),Action|Sci-Fi|Thriller +339,3.4405940594059405,While You Were Sleeping (1995),Comedy|Romance +340,3.0,"War, The (1994)",Adventure|Drama|War +341,4.5,Double Happiness (1994),Drama +342,3.4375,Muriel's Wedding (1994),Comedy +343,3.0,"Baby-Sitters Club, The (1995)",Children +344,2.8714285714285714,Ace Ventura: Pet Detective (1994),Comedy +345,3.75,"Adventures of Priscilla, Queen of the Desert, The (1994)",Comedy|Drama +346,3.0,Backbeat (1993),Drama|Musical +347,3.857142857142857,Bitter Moon (1992),Drama|Film-Noir|Romance +348,3.9375,Bullets Over Broadway (1994),Comedy +349,3.7869565217391306,Clear and Present Danger (1994),Action|Crime|Drama|Thriller +350,3.3285714285714287,"Client, The (1994)",Drama|Mystery|Thriller +351,3.1923076923076925,"Corrina, Corrina (1994)",Comedy|Drama|Romance +352,3.357142857142857,Crooklyn (1994),Comedy|Drama +353,3.58955223880597,"Crow, The (1994)",Action|Crime|Fantasy|Thriller +354,3.5,Cobb (1994),Drama +355,2.2051282051282053,"Flintstones, The (1994)",Children|Comedy|Fantasy +356,4.05425219941349,Forrest Gump (1994),Comedy|Drama|Romance|War +357,3.6844262295081966,Four Weddings and a Funeral (1994),Comedy|Romance +358,2.4285714285714284,Higher Learning (1995),Drama +360,2.5,I Love Trouble (1994),Action|Comedy +361,3.38,It Could Happen to You (1994),Comedy|Drama|Romance +362,3.45,"Jungle Book, The (1994)",Adventure|Children|Romance +363,4.5,"Wonderful, Horrible Life of Leni Riefenstahl, The (Macht der Bilder: Leni Riefenstahl, Die) (1993)",Documentary +364,3.7775,"Lion King, The (1994)",Adventure|Animation|Children|Drama|Musical|IMAX +365,3.0,Little Buddha (1993),Drama +366,3.272727272727273,"Wes Craven's New Nightmare (Nightmare on Elm Street Part 7: Freddy's Finale, A) (1994)",Drama|Horror|Mystery|Thriller +367,3.070063694267516,"Mask, The (1994)",Action|Comedy|Crime|Fantasy +368,3.535211267605634,Maverick (1994),Adventure|Comedy|Western +369,3.0555555555555554,Mrs. Parker and the Vicious Circle (1994),Drama +370,3.0522388059701493,Naked Gun 33 1/3: The Final Insult (1994),Action|Comedy +371,3.25,"Paper, The (1994)",Comedy|Drama +372,3.0588235294117645,Reality Bites (1994),Comedy|Drama|Romance +373,4.138888888888889,Red Rock West (1992),Thriller +374,2.1,Richie Rich (1994),Children|Comedy +375,3.6666666666666665,Safe Passage (1994),Drama +376,3.425531914893617,"River Wild, The (1994)",Action|Thriller +377,3.566666666666667,Speed (1994),Action|Romance|Thriller +378,3.25,Speechless (1994),Comedy|Romance +379,3.261904761904762,Timecop (1994),Action|Sci-Fi|Thriller +380,3.515151515151515,True Lies (1994),Action|Adventure|Comedy|Romance|Thriller +381,3.1379310344827585,When a Man Loves a Woman (1994),Drama|Romance +382,3.1052631578947367,Wolf (1994),Drama|Horror|Romance|Thriller +383,3.1153846153846154,Wyatt Earp (1994),Western +384,3.25,Bad Company (1995),Action|Crime|Drama +387,3.6666666666666665,"Low Down Dirty Shame, A (1994)",Action|Comedy +388,3.6666666666666665,Boys Life (1995),Drama +389,4.0,"Colonel Chabert, Le (1994)",Drama|Romance|War +390,4.1,Faster Pussycat! Kill! Kill! (1965),Action|Crime|Drama +391,3.0,Jason's Lyric (1994),Crime|Drama +392,2.6666666666666665,"Secret Adventures of Tom Thumb, The (1993)",Adventure|Animation +393,2.1,Street Fighter (1994),Action|Adventure|Fantasy +401,4.0,Mirage (1995),Action|Thriller +405,2.3125,Highlander III: The Sorcerer (a.k.a. Highlander: The Final Dimension) (1994),Action|Fantasy +407,3.05,In the Mouth of Madness (1995),Horror|Thriller +408,3.0,8 Seconds (1994),Drama +409,2.5,Above the Rim (1994),Crime|Drama +410,3.1506849315068495,Addams Family Values (1993),Children|Comedy|Fantasy +412,3.54,"Age of Innocence, The (1993)",Drama +413,2.3076923076923075,Airheads (1994),Comedy +414,2.5,"Air Up There, The (1994)",Comedy +415,2.8333333333333335,Another Stakeout (1993),Comedy|Thriller +416,3.25,Bad Girls (1994),Western +417,3.6153846153846154,Barcelona (1994),Comedy|Romance +418,3.0,Being Human (1993),Drama +419,2.6,"Beverly Hillbillies, The (1993)",Comedy +420,2.6315789473684212,Beverly Hills Cop III (1994),Action|Comedy|Crime|Thriller +421,3.0,Black Beauty (1994),Adventure|Children|Drama +422,3.7222222222222223,Blink (1994),Thriller +423,3.392857142857143,Blown Away (1994),Action|Thriller +424,3.0,Blue Chips (1994),Drama +425,3.875,Blue Sky (1994),Drama|Romance +426,3.1666666666666665,Body Snatchers (1993),Horror|Sci-Fi|Thriller +427,2.4285714285714284,Boxing Helena (1993),Drama|Mystery|Romance|Thriller +428,3.717391304347826,"Bronx Tale, A (1993)",Drama +429,2.5555555555555554,Cabin Boy (1994),Comedy +431,3.671875,Carlito's Way (1993),Crime|Drama +432,2.6507936507936507,City Slickers II: The Legend of Curly's Gold (1994),Adventure|Comedy|Western +433,2.857142857142857,Clean Slate (1994),Comedy +434,3.0849056603773586,Cliffhanger (1993),Action|Adventure|Thriller +435,2.463636363636364,Coneheads (1993),Comedy|Sci-Fi +436,2.2,Color of Night (1994),Drama|Thriller +437,2.75,Cops and Robbersons (1994),Comedy +438,3.0,"Cowboy Way, The (1994)",Action|Comedy|Drama +439,1.0,Dangerous Game (1993),Drama +440,3.561111111111111,Dave (1993),Comedy|Romance +441,3.6621621621621623,Dazed and Confused (1993),Comedy +442,2.968421052631579,Demolition Man (1993),Action|Adventure|Sci-Fi +443,2.6666666666666665,"Endless Summer 2, The (1994)",Adventure|Documentary +444,3.0,Even Cowgirls Get the Blues (1993),Comedy|Romance +445,3.111111111111111,Fatal Instinct (1993),Comedy +446,4.0,Farewell My Concubine (Ba wang bie ji) (1993),Drama|Romance +447,4.0,"Favor, The (1994)",Comedy|Romance +448,3.590909090909091,Fearless (1993),Drama +449,3.5,Fear of a Black Hat (1994),Comedy +450,3.4375,With Honors (1994),Comedy|Drama +451,3.4285714285714284,Flesh and Bone (1993),Drama|Mystery|Romance +452,4.0,Widows' Peak (1994),Drama +453,2.4,For Love or Money (1993),Comedy|Romance +454,3.4727272727272727,"Firm, The (1993)",Drama|Thriller +455,2.838709677419355,Free Willy (1993),Adventure|Children|Drama +456,3.3333333333333335,Fresh (1994),Crime|Drama|Thriller +457,3.9530516431924885,"Fugitive, The (1993)",Thriller +458,3.75,Geronimo: An American Legend (1993),Drama|Western +459,3.5,"Getaway, The (1994)",Action|Adventure|Crime|Drama|Romance|Thriller +460,2.5,Getting Even with Dad (1994),Comedy +461,3.3,Go Fish (1994),Drama|Romance +463,3.4285714285714284,Guilty as Sin (1993),Crime|Drama|Thriller +464,3.111111111111111,Hard Target (1993),Action|Adventure|Crime|Thriller +465,3.5,Heaven & Earth (1993),Action|Drama|War +466,3.169491525423729,Hot Shots! Part Deux (1993),Action|Comedy|War +467,3.3333333333333335,Live Nude Girls (1995),Comedy +468,3.303030303030303,"Englishman Who Went Up a Hill But Came Down a Mountain, The (1995)",Comedy|Romance +469,3.125,"House of the Spirits, The (1993)",Drama|Romance +470,2.0,House Party 3 (1994),Comedy +471,3.877551020408163,"Hudsucker Proxy, The (1994)",Comedy +472,3.5,I'll Do Anything (1994),Comedy|Drama +473,1.0,In the Army Now (1994),Comedy|War +474,3.8625,In the Line of Fire (1993),Action|Thriller +475,4.209677419354839,In the Name of the Father (1993),Drama +476,4.0,"Inkwell, The (1994)",Comedy|Drama +477,3.59375,What's Love Got to Do with It? (1993),Drama|Musical +479,3.25,Judgment Night (1993),Action|Crime|Thriller +480,3.7062043795620436,Jurassic Park (1993),Action|Adventure|Sci-Fi|Thriller +481,3.34375,Kalifornia (1993),Drama|Thriller +482,2.85,Killing Zoe (1994),Crime|Drama|Thriller +483,2.75,King of the Hill (1993),Drama +484,2.75,Lassie (1994),Adventure|Children +485,2.8867924528301887,Last Action Hero (1993),Action|Adventure|Comedy|Fantasy +486,2.5,Life with Mikey (1993),Comedy +487,3.5,Lightning Jack (1994),Comedy|Western +488,3.125,M. Butterfly (1993),Drama|Romance +489,2.625,Made in America (1993),Comedy +490,3.4285714285714284,Malice (1993),Thriller +491,3.2857142857142856,"Man Without a Face, The (1993)",Drama +492,3.738095238095238,Manhattan Murder Mystery (1993),Comedy|Mystery +493,3.3043478260869565,Menace II Society (1993),Action|Crime|Drama +494,3.4754098360655736,Executive Decision (1996),Action|Adventure|Thriller +495,3.8125,In the Realm of the Senses (Ai no corrida) (1976),Drama +496,2.6666666666666665,What Happened Was... (1994),Comedy|Drama|Romance|Thriller +497,3.9833333333333334,Much Ado About Nothing (1993),Comedy|Romance +498,2.6666666666666665,Mr. Jones (1993),Drama|Romance +499,3.0,Mr. Wonderful (1993),Comedy|Romance +500,3.4673202614379086,Mrs. Doubtfire (1993),Comedy|Drama +501,4.1,Naked (1993),Drama +502,2.4375,"Next Karate Kid, The (1994)",Action|Children|Romance +504,3.2,No Escape (1994),Action|Drama|Sci-Fi +505,2.7142857142857144,North (1994),Comedy +506,3.111111111111111,Orlando (1992),Drama|Fantasy|Romance +507,3.5,"Perfect World, A (1993)",Crime|Drama|Thriller +508,3.6686046511627906,Philadelphia (1993),Drama +509,3.75,"Piano, The (1993)",Drama|Romance +510,2.3,Poetic Justice (1993),Drama +511,3.0,"Program, The (1993)",Action|Drama +512,3.5,"Puppet Masters, The (1994)",Horror|Sci-Fi +513,2.5,Radioland Murders (1994),Comedy|Mystery|Romance +514,3.6470588235294117,"Ref, The (1994)",Comedy +515,4.043478260869565,"Remains of the Day, The (1993)",Drama|Romance +516,2.923076923076923,Renaissance Man (1994),Comedy|Drama +517,3.09375,Rising Sun (1993),Action|Drama|Mystery +518,2.1363636363636362,"Road to Wellville, The (1994)",Comedy +519,2.3958333333333335,RoboCop 3 (1993),Action|Crime|Drama|Sci-Fi|Thriller +520,3.0615384615384613,Robin Hood: Men in Tights (1993),Comedy +521,3.6,Romeo Is Bleeding (1993),Crime|Thriller +522,2.8333333333333335,Romper Stomper (1992),Action|Drama +523,3.3333333333333335,Ruby in Paradise (1993),Drama +524,3.5555555555555554,Rudy (1993),Drama +526,1.0,"Savage Nights (Nuits fauves, Les) (1992)",Drama +527,4.30327868852459,Schindler's List (1993),Drama|War +528,2.5,"Scout, The (1994)",Comedy|Drama +529,3.933333333333333,Searching for Bobby Fischer (1993),Drama +531,3.564516129032258,"Secret Garden, The (1993)",Children|Drama +532,3.25,Serial Mom (1994),Comedy|Crime|Horror +533,3.3333333333333335,"Shadow, The (1994)",Action|Adventure|Fantasy|Mystery +534,4.2,Shadowlands (1993),Drama|Romance +535,3.8846153846153846,Short Cuts (1993),Drama +536,2.25,"Simple Twist of Fate, A (1994)",Drama +537,3.05,Sirens (1994),Drama +538,3.9,Six Degrees of Separation (1993),Drama +539,3.428,Sleepless in Seattle (1993),Comedy|Drama|Romance +540,2.6944444444444446,Sliver (1993),Thriller +541,4.037671232876712,Blade Runner (1982),Action|Sci-Fi|Thriller +542,2.736842105263158,Son in Law (1993),Comedy|Drama|Romance +543,3.3461538461538463,So I Married an Axe Murderer (1993),Comedy|Romance|Thriller +544,2.611111111111111,Striking Distance (1993),Action|Crime +546,1.7352941176470589,Super Mario Bros. (1993),Action|Adventure|Children|Comedy|Fantasy|Sci-Fi +547,3.0,Surviving the Game (1994),Action|Adventure|Thriller +548,3.0,Terminal Velocity (1994),Action|Mystery|Thriller +549,4.125,Thirty-Two Short Films About Glenn Gould (1993),Drama|Musical +550,3.272727272727273,Threesome (1994),Comedy|Romance +551,3.65,"Nightmare Before Christmas, The (1993)",Animation|Children|Fantasy|Musical +552,3.14,"Three Musketeers, The (1993)",Action|Adventure|Comedy|Romance +553,3.482456140350877,Tombstone (1993),Action|Drama|Western +554,3.0,Trial by Jury (1994),Crime|Drama|Thriller +555,3.8857142857142857,True Romance (1993),Crime|Thriller +556,3.9,"War Room, The (1993)",Documentary +558,2.6666666666666665,"Pagemaster, The (1994)",Action|Adventure|Animation|Children|Fantasy +559,5.0,"Paris, France (1993)",Comedy +561,3.0,Killer (Bulletproof Heart) (1994),Drama|Thriller +562,3.716666666666667,Welcome to the Dollhouse (1995),Comedy|Drama +563,3.0,Germinal (1993),Drama|Romance +564,3.0,Chasers (1994),Comedy +565,4.5,Cronos (1993),Drama|Horror +567,4.0,Kika (1993),Comedy|Drama +568,3.5,Bhaji on the Beach (1993),Comedy|Drama +569,2.5,Little Big League (1994),Comedy|Drama +571,4.0,"Wedding Gift, The (1994)",Drama|Romance +573,1.0,"Ciao, Professore! (Io speriamo che me la cavo) (1992)",Drama +574,3.3333333333333335,Spanking the Monkey (1994),Comedy|Drama +575,3.5714285714285716,"Little Rascals, The (1994)",Children|Comedy +577,2.0,Andre (1994),Adventure|Children|Drama +580,3.0,Princess Caraboo (1994),Drama +581,4.235294117647059,"Celluloid Closet, The (1995)",Documentary +582,4.0,Métisse (Café au Lait) (1993),Comedy|Drama +585,3.073170731707317,"Brady Bunch Movie, The (1995)",Comedy +586,3.112403100775194,Home Alone (1990),Children|Comedy +587,3.3253968253968256,Ghost (1990),Comedy|Drama|Fantasy|Romance|Thriller +588,3.6744186046511627,Aladdin (1992),Adventure|Animation|Children|Comedy|Musical +589,4.006329113924051,Terminator 2: Judgment Day (1991),Action|Sci-Fi +590,3.717821782178218,Dances with Wolves (1990),Adventure|Drama|Western +592,3.3979591836734695,Batman (1989),Action|Crime|Thriller +593,4.1381578947368425,"Silence of the Lambs, The (1991)",Crime|Horror|Thriller +594,3.6619718309859155,Snow White and the Seven Dwarfs (1937),Animation|Children|Drama|Fantasy|Musical +595,3.75,Beauty and the Beast (1991),Animation|Children|Fantasy|Musical|Romance|IMAX +596,3.5833333333333335,Pinocchio (1940),Animation|Children|Fantasy|Musical +597,3.360544217687075,Pretty Woman (1990),Comedy|Romance +599,4.035714285714286,"Wild Bunch, The (1969)",Adventure|Western +600,4.0,Love and a .45 (1994),Action|Comedy|Crime +603,3.0,"Bye Bye, Love (1995)",Comedy +605,3.3421052631578947,One Fine Day (1996),Drama|Romance +606,2.75,Candyman: Farewell to the Flesh (1995),Fantasy|Horror +608,4.256696428571429,Fargo (1996),Comedy|Crime|Drama|Thriller +609,3.107142857142857,Homeward Bound II: Lost in San Francisco (1996),Adventure|Children +610,3.3484848484848486,Heavy Metal (1981),Action|Adventure|Animation|Horror|Sci-Fi +611,3.0,Hellraiser: Bloodline (1996),Action|Horror|Sci-Fi +612,2.6666666666666665,"Pallbearer, The (1996)",Comedy +613,3.5,Jane Eyre (1996),Drama|Romance +614,1.5,Loaded (1994),Drama|Thriller +615,3.5,Bread and Chocolate (Pane e cioccolata) (1973),Comedy|Drama +616,3.4642857142857144,"Aristocats, The (1970)",Animation|Children +617,1.0,"Flower of My Secret, The (La flor de mi secreto) (1995)",Comedy|Drama +619,2.125,Ed (1996),Comedy +620,3.25,Scream of Stone (Cerro Torre: Schrei aus Stein) (1991),Drama +621,3.3333333333333335,My Favorite Season (1993),Drama +626,2.0,"Thin Line Between Love and Hate, A (1996)",Comedy +627,3.3333333333333335,"Last Supper, The (1995)",Drama|Thriller +628,3.88,Primal Fear (1996),Crime|Drama|Mystery|Thriller +630,3.5,Carried Away (1996),Drama|Romance +631,3.25,All Dogs Go to Heaven 2 (1996),Adventure|Animation|Children|Fantasy|Musical|Romance +632,4.5,Land and Freedom (Tierra y libertad) (1995),Drama|War +633,4.0,Denise Calls Up (1995),Comedy +635,3.857142857142857,"Family Thing, A (1996)",Comedy|Drama +637,2.7586206896551726,Sgt. Bilko (1996),Comedy +638,4.0,Jack and Sarah (1995),Romance +639,3.2,Girl 6 (1996),Comedy|Drama +640,3.3333333333333335,Diabolique (1996),Drama|Thriller +647,3.629032258064516,Courage Under Fire (1996),Action|Crime|Drama|War +648,3.5327380952380953,Mission: Impossible (1996),Action|Adventure|Mystery|Thriller +650,3.1875,Moll Flanders (1996),Drama +651,1.0,"Superweib, Das (1996)",Comedy +653,3.1129032258064515,Dragonheart (1996),Action|Adventure|Fantasy +656,3.0,Eddie (1996),Comedy +659,4.25,Purple Noon (Plein soleil) (1960),Crime|Drama|Thriller +661,3.6320754716981134,James and the Giant Peach (1996),Adventure|Animation|Children|Fantasy|Musical +662,3.111111111111111,Fear (1996),Thriller +663,3.411764705882353,Kids in the Hall: Brain Candy (1996),Comedy +664,3.5,Faithful (1996),Comedy +665,3.4,Underground (1995),Comedy|Drama|War +667,3.6666666666666665,Bloodsport 2 (a.k.a. Bloodsport II: The Next Kumite) (1996),Action +668,4.0,Song of the Little Road (Pather Panchali) (1955),Drama +670,3.1666666666666665,"World of Apu, The (Apur Sansar) (1959)",Drama +671,4.03030303030303,Mystery Science Theater 3000: The Movie (1996),Comedy|Sci-Fi +673,2.68,Space Jam (1996),Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi +674,2.6904761904761907,Barbarella (1968),Adventure|Comedy|Sci-Fi +678,3.8333333333333335,Some Folks Call It a Sling Blade (1993),Drama|Thriller +679,4.0,"Run of the Country, The (1995)",Drama +680,3.9166666666666665,"Alphaville (Alphaville, une étrange aventure de Lemmy Caution) (1965)",Drama|Mystery|Romance|Sci-Fi|Thriller +681,3.0,Coup de torchon (Clean Slate) (1981),Crime +685,3.125,It's My Party (1996),Drama +687,3.0,Country Life (1994),Drama|Romance +688,2.45,Operation Dumbo Drop (1995),Action|Adventure|Comedy|War +690,4.0,"Promise, The (Versprechen, Das) (1995)",Drama|Romance +691,3.357142857142857,Mrs. Winterbourne (1996),Comedy|Romance +692,2.0,Solo (1996),Action|Sci-Fi|Thriller +694,2.85,"Substitute, The (1996)",Action|Crime|Drama +695,4.0,True Crime (1996),Mystery|Thriller +696,2.0,Butterfly Kiss (1995),Drama|Thriller +697,3.3333333333333335,Feeling Minnesota (1996),Drama|Romance +698,3.0,Delta of Venus (1995),Drama +700,3.142857142857143,Angus (1995),Comedy +702,5.0,Faces (1968),Drama +703,3.0,Boys (1996),Drama +704,3.0,"Quest, The (1996)",Action|Adventure +705,2.8333333333333335,Cosi (1996),Comedy +707,3.111111111111111,Mulholland Falls (1996),Crime|Drama|Thriller +708,3.401639344262295,"Truth About Cats & Dogs, The (1996)",Comedy|Romance +709,2.875,Oliver & Company (1988),Adventure|Animation|Children|Comedy|Musical +710,1.5,Celtic Pride (1996),Comedy +711,3.2222222222222223,Flipper (1996),Adventure|Children +714,3.5454545454545454,Dead Man (1995),Drama|Mystery|Western +715,2.6666666666666665,"Horseman on the Roof, The (Hussard sur le toit, Le) (1995)",Drama|Romance +718,3.0,"Visitors, The (Visiteurs, Les) (1993)",Comedy|Fantasy|Sci-Fi +719,2.8088235294117645,Multiplicity (1996),Comedy +720,4.0,Wallace & Gromit: The Best of Aardman Animation (1996),Adventure|Animation|Comedy +721,4.0,Halfmoon (Paul Bowles - Halbmond) (1995),Drama +722,4.0,"Haunted World of Edward D. Wood Jr., The (1996)",Documentary +724,3.111111111111111,"Craft, The (1996)",Drama|Fantasy|Horror|Thriller +725,2.375,"Great White Hype, The (1996)",Comedy +726,3.0,Last Dance (1996),Drama +728,3.96875,Cold Comfort Farm (1995),Comedy +731,2.75,Heaven's Prisoners (1996),Crime|Thriller +733,3.737037037037037,"Rock, The (1996)",Action|Adventure|Thriller +735,4.125,Cemetery Man (Dellamorte Dellamore) (1994),Horror +736,3.25,Twister (1996),Action|Adventure|Romance|Thriller +737,2.3666666666666667,Barb Wire (1996),Action|Sci-Fi +741,4.148148148148148,Ghost in the Shell (Kôkaku kidôtai) (1995),Animation|Sci-Fi +742,2.75,Thinner (1996),Horror|Thriller +743,2.6818181818181817,Spy Hard (1996),Comedy +745,4.193548387096774,Wallace & Gromit: A Close Shave (1995),Animation|Children|Comedy +746,2.0,Force of Evil (1948),Film-Noir +747,2.75,"Stupids, The (1996)",Comedy +748,3.272727272727273,"Arrival, The (1996)",Action|Sci-Fi|Thriller +750,4.20952380952381,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964),Comedy|War +753,3.5,"Month by the Lake, A (1995)",Comedy|Drama|Romance +754,3.6666666666666665,Gold Diggers: The Secret of Bear Mountain (1995),Adventure|Children +755,2.0,Kim (1950),Children|Drama +756,3.0,Carmen Miranda: Bananas Is My Business (1994),Documentary +757,4.0,Ashes of Time (Dung che sai duk) (1994),Drama +759,5.0,Maya Lin: A Strong Clear Vision (1994),Documentary +760,3.3333333333333335,Stalingrad (1993),Drama|War +761,3.111111111111111,"Phantom, The (1996)",Action|Adventure +762,2.4615384615384617,Striptease (1996),Comedy|Crime +764,5.0,Heavy (1995),Drama|Romance +765,2.8055555555555554,Jack (1996),Comedy|Drama +766,4.222222222222222,I Shot Andy Warhol (1996),Drama +767,4.0,"Grass Harp, The (1995)",Comedy|Drama +769,3.0,Marlene Dietrich: Shadow and Light (1996),Documentary +775,2.0,Spirits of the Dead (1968),Horror|Mystery +778,4.141129032258065,Trainspotting (1996),Comedy|Crime|Drama +779,2.625,'Til There Was You (1997),Drama|Romance +780,3.4839449541284404,Independence Day (a.k.a. ID4) (1996),Action|Adventure|Sci-Fi|Thriller +781,3.75,Stealing Beauty (1996),Drama +782,3.3333333333333335,"Fan, The (1996)",Drama|Thriller +783,3.357142857142857,"Hunchback of Notre Dame, The (1996)",Animation|Children|Drama|Musical|Romance +784,2.5508474576271185,"Cable Guy, The (1996)",Comedy|Thriller +785,3.3333333333333335,Kingpin (1996),Comedy +786,3.108695652173913,Eraser (1996),Action|Drama|Thriller +787,4.5,"Gate of Heavenly Peace, The (1995)",Documentary +788,3.0808823529411766,"Nutty Professor, The (1996)",Comedy|Fantasy|Romance|Sci-Fi +793,4.0,My Life and Times With Antonin Artaud (En compagnie d'Antonin Artaud) (1993),Drama +798,3.4166666666666665,Daylight (1996),Action|Adventure|Drama|Thriller +799,3.2291666666666665,"Frighteners, The (1996)",Comedy|Horror|Thriller +800,4.071428571428571,Lone Star (1996),Drama|Mystery|Western +801,3.2083333333333335,Harriet the Spy (1996),Children|Comedy +802,3.326388888888889,Phenomenon (1996),Drama|Romance +803,4.25,Walking and Talking (1996),Comedy|Drama|Romance +804,2.892857142857143,She's the One (1996),Comedy|Romance +805,3.7653061224489797,"Time to Kill, A (1996)",Drama|Thriller +806,2.888888888888889,American Buffalo (1996),Crime|Drama +808,3.25,Alaska (1996),Adventure|Children +809,2.75,Fled (1996),Action|Adventure +810,2.0,Kazaam (1996),Children|Comedy|Fantasy +813,2.6666666666666665,Larger Than Life (1996),Comedy +816,3.0,Two Deaths (1995),Drama +818,2.607142857142857,"Very Brady Sequel, A (1996)",Comedy +820,5.0,"Death in the Garden (Mort en ce jardin, La) (1956)",Drama +824,3.0,Kaspar Hauser (1993),Drama|Mystery +828,3.375,"Adventures of Pinocchio, The (1996)",Adventure|Children +829,1.0,Joe's Apartment (1996),Comedy|Fantasy|Musical +830,3.1346153846153846,"First Wives Club, The (1996)",Comedy +831,3.5,Stonewall (1995),Drama +832,3.5657894736842106,Ransom (1996),Crime|Thriller +833,2.625,High School High (1996),Comedy +834,3.0,Phat Beach (1996),Comedy +835,3.1666666666666665,Foxfire (1996),Drama +836,2.576923076923077,Chain Reaction (1996),Action|Adventure|Thriller +837,3.6666666666666665,Matilda (1996),Children|Comedy|Fantasy +838,3.817073170731707,Emma (1996),Comedy|Drama|Romance +839,3.272727272727273,"Crow: City of Angels, The (1996)",Action|Thriller +840,3.5,House Arrest (1996),Children|Comedy +841,3.7142857142857144,"Eyes Without a Face (Yeux sans visage, Les) (1959)",Horror +842,2.3333333333333335,Tales from the Crypt Presents: Bordello of Blood (1996),Comedy|Horror +844,3.0,"Story of Xinghua, The (Xinghua san yue tian) (1994)",Drama +845,5.0,"Day the Sun Turned Cold, The (Tianguo niezi) (1994)",Drama +846,4.0,Flirt (1995),Drama +848,3.4545454545454546,"Spitfire Grill, The (1996)",Drama +849,2.6964285714285716,Escape from L.A. (1996),Action|Adventure|Sci-Fi|Thriller +850,4.5,Cyclo (Xich lo) (1995),Crime|Drama +851,3.0,Basquiat (1996),Drama +852,3.2596153846153846,Tin Cup (1996),Comedy|Drama|Romance +854,4.0,"Ballad of Narayama, The (Narayama Bushiko) (1958)",Drama +858,4.4875,"Godfather, The (1972)",Crime|Drama +861,3.5,Supercop (Police Story 3: Supercop) (Jing cha gu shi III: Chao ji jing cha) (1992),Action|Comedy|Crime|Thriller +864,3.5,"Wife, The (1995)",Comedy|Drama +865,4.0,Small Faces (1996),Drama +866,3.8703703703703702,Bound (1996),Crime|Drama|Romance|Thriller +867,3.0,Carpool (1996),Comedy|Crime +869,2.75,Kansas City (1996),Crime|Drama|Musical|Thriller +870,1.6666666666666667,Gone Fishin' (1997),Comedy +872,5.0,Vive L'Amour (Ai qing wan sui) (1994),Drama +875,4.0,Nothing to Lose (1994),Action|Crime|Drama +876,5.0,Supercop 2 (Project S) (Chao ji ji hua) (1993),Action|Comedy|Crime|Thriller +879,3.3,"Relic, The (1997)",Horror|Thriller +880,2.38,"Island of Dr. Moreau, The (1996)",Sci-Fi|Thriller +881,3.0,First Kid (1996),Children|Comedy +882,2.6666666666666665,"Trigger Effect, The (1996)",Drama|Thriller +885,2.0,Bogus (1996),Children|Drama|Fantasy +886,1.5,Bulletproof (1996),Action|Comedy|Crime +889,4.0,1-900 (06) (1994),Drama|Romance +891,2.2222222222222223,Halloween: The Curse of Michael Myers (Halloween 6: The Curse of Michael Myers) (1995),Horror|Thriller +892,3.7857142857142856,Twelfth Night (1996),Comedy|Drama|Romance +893,4.666666666666667,Mother Night (1996),Drama +896,3.6666666666666665,Wild Reeds (Les roseaux sauvages) (1994),Drama +897,3.625,For Whom the Bell Tolls (1943),Adventure|Drama|Romance|War +898,4.351351351351352,"Philadelphia Story, The (1940)",Comedy|Drama|Romance +899,4.1953125,Singin' in the Rain (1952),Comedy|Musical|Romance +900,3.9545454545454546,"American in Paris, An (1951)",Musical|Romance +901,3.9166666666666665,Funny Face (1957),Comedy|Musical +902,3.590909090909091,Breakfast at Tiffany's (1961),Drama|Romance +903,4.22463768115942,Vertigo (1958),Drama|Mystery|Romance|Thriller +904,4.315217391304348,Rear Window (1954),Mystery|Thriller +905,4.38,It Happened One Night (1934),Comedy|Romance +906,3.6538461538461537,Gaslight (1944),Drama|Thriller +907,4.090909090909091,"Gay Divorcee, The (1934)",Comedy|Musical|Romance +908,4.2701149425287355,North by Northwest (1959),Action|Adventure|Mystery|Romance|Thriller +909,3.803030303030303,"Apartment, The (1960)",Comedy|Drama|Romance +910,3.946969696969697,Some Like It Hot (1959),Comedy|Crime +911,4.111111111111111,Charade (1963),Comedy|Crime|Mystery|Romance|Thriller +912,4.235042735042735,Casablanca (1942),Drama|Romance +913,4.387096774193548,"Maltese Falcon, The (1941)",Film-Noir|Mystery +914,3.6470588235294117,My Fair Lady (1964),Comedy|Drama|Musical|Romance +915,3.891304347826087,Sabrina (1954),Comedy|Romance +916,4.019230769230769,Roman Holiday (1953),Comedy|Drama|Romance +917,3.6875,"Little Princess, The (1939)",Children|Drama +918,3.5714285714285716,Meet Me in St. Louis (1944),Musical +919,3.9572649572649574,"Wizard of Oz, The (1939)",Adventure|Children|Fantasy|Musical +920,4.044117647058823,Gone with the Wind (1939),Drama|Romance|War +921,3.9,My Favorite Year (1982),Comedy +922,4.294871794871795,Sunset Blvd. (a.k.a. Sunset Boulevard) (1950),Drama|Film-Noir|Romance +923,4.2,Citizen Kane (1941),Drama|Mystery +924,3.886178861788618,2001: A Space Odyssey (1968),Adventure|Drama|Sci-Fi +926,4.434210526315789,All About Eve (1950),Drama +927,4.5,"Women, The (1939)",Comedy +928,4.173913043478261,Rebecca (1940),Drama|Mystery|Romance|Thriller +929,3.8,Foreign Correspondent (1940),Drama|Film-Noir|Mystery|Thriller +930,4.119047619047619,Notorious (1946),Film-Noir|Romance|Thriller +931,3.8125,Spellbound (1945),Mystery|Romance|Thriller +932,3.59375,"Affair to Remember, An (1957)",Drama|Romance +933,3.9655172413793105,To Catch a Thief (1955),Crime|Mystery|Romance|Thriller +934,3.5833333333333335,Father of the Bride (1950),Comedy +935,4.083333333333333,"Band Wagon, The (1953)",Comedy|Musical +936,3.6923076923076925,Ninotchka (1939),Comedy|Romance +937,3.8,Love in the Afternoon (1957),Comedy|Romance +938,3.8181818181818183,Gigi (1958),Musical +939,4.0,"Reluctant Debutante, The (1958)",Comedy|Drama +940,3.9722222222222223,"Adventures of Robin Hood, The (1938)",Action|Adventure|Romance +941,3.875,"Mark of Zorro, The (1940)",Adventure +942,3.8846153846153846,Laura (1944),Crime|Film-Noir|Mystery +943,4.0,"Ghost and Mrs. Muir, The (1947)",Drama|Fantasy|Romance +944,3.0,Lost Horizon (1937),Drama +945,4.0,Top Hat (1935),Comedy|Musical|Romance +946,4.3,To Be or Not to Be (1942),Comedy|Drama|War +947,3.6818181818181817,My Man Godfrey (1936),Comedy|Romance +948,3.590909090909091,Giant (1956),Drama|Romance|Western +949,3.59375,East of Eden (1955),Drama +950,4.205882352941177,"Thin Man, The (1934)",Comedy|Crime +951,4.211538461538462,His Girl Friday (1940),Comedy|Romance +952,3.357142857142857,Around the World in 80 Days (1956),Adventure|Comedy +953,4.152777777777778,It's a Wonderful Life (1946),Children|Drama|Fantasy|Romance +954,4.225806451612903,Mr. Smith Goes to Washington (1939),Drama +955,4.066666666666666,Bringing Up Baby (1938),Comedy|Romance +956,3.1666666666666665,Penny Serenade (1941),Drama|Romance +957,4.0,"Scarlet Letter, The (1926)",Drama +960,2.5,Angel on My Shoulder (1946),Crime|Drama +961,5.0,Little Lord Fauntleroy (1936),Drama +962,3.0,They Made Me a Criminal (1939),Crime|Drama +963,3.0,"Inspector General, The (1949)",Musical +964,2.5,Angel and the Badman (1947),Romance|Western +965,3.84375,"39 Steps, The (1935)",Drama|Mystery|Thriller +966,4.0,A Walk in the Sun (1945),Drama|War +968,4.111111111111111,Night of the Living Dead (1968),Horror|Sci-Fi|Thriller +969,4.42,"African Queen, The (1951)",Adventure|Comedy|Romance|War +970,3.5,Beat the Devil (1953),Adventure|Comedy|Crime|Drama|Romance +971,3.7941176470588234,Cat on a Hot Tin Roof (1958),Drama +972,2.5,"Last Time I Saw Paris, The (1954)",Drama +973,4.285714285714286,Meet John Doe (1941),Comedy|Drama +976,3.0,"Farewell to Arms, A (1932)",Romance|War +980,1.0,"Yes, Madam (a.k.a. Police Assassins) (a.k.a. In the Line of Duty 2) (Huang gu shi jie) (1985)",Action +981,1.0,Dangerous Ground (1997),Drama +982,3.0,Picnic (1955),Drama +984,4.5,"Pompatus of Love, The (1996)",Comedy|Drama +986,3.5357142857142856,Fly Away Home (1996),Adventure|Children +987,3.0,Bliss (1997),Drama|Romance +988,3.75,Grace of My Heart (1996),Comedy|Drama +990,2.5,Maximum Risk (1996),Action|Adventure|Thriller +991,3.5,Michael Collins (1996),Drama +992,2.5,"Rich Man's Wife, The (1996)",Thriller +994,4.25,Big Night (1996),Comedy|Drama +996,3.25,Last Man Standing (1996),Action|Crime|Drama|Thriller +997,2.6666666666666665,Caught (1996),Drama|Thriller +998,3.6666666666666665,Set It Off (1996),Action|Crime +999,3.34375,2 Days in the Valley (1996),Crime|Film-Noir +1003,3.0,Extreme Measures (1996),Drama|Thriller +1004,2.5,"Glimmer Man, The (1996)",Action|Thriller +1005,2.5,D3: The Mighty Ducks (1996),Children|Comedy +1006,3.0,"Chamber, The (1996)",Drama +1007,2.727272727272727,"Apple Dumpling Gang, The (1975)",Children|Comedy|Western +1008,3.5,"Davy Crockett, King of the Wild Frontier (1955)",Adventure|Western +1009,3.25,Escape to Witch Mountain (1975),Adventure|Children|Fantasy +1010,3.0294117647058822,"Love Bug, The (1969)",Children|Comedy +1011,3.611111111111111,Herbie Rides Again (1974),Children|Comedy|Fantasy|Romance +1012,3.6052631578947367,Old Yeller (1957),Children|Drama +1013,3.380952380952381,"Parent Trap, The (1961)",Children|Comedy|Romance +1014,3.3,Pollyanna (1960),Children|Comedy|Drama +1015,3.260869565217391,Homeward Bound: The Incredible Journey (1993),Adventure|Children|Drama +1016,3.1,"Shaggy Dog, The (1959)",Children|Comedy +1017,3.264705882352941,Swiss Family Robinson (1960),Adventure|Children +1018,3.4,That Darn Cat! (1965),Children|Comedy|Mystery +1019,3.6621621621621623,"20,000 Leagues Under the Sea (1954)",Adventure|Drama|Sci-Fi +1020,3.3275862068965516,Cool Runnings (1993),Comedy +1021,3.1785714285714284,Angels in the Outfield (1994),Children|Comedy +1022,3.5636363636363635,Cinderella (1950),Animation|Children|Fantasy|Musical|Romance +1023,4.088235294117647,Winnie the Pooh and the Blustery Day (1968),Animation|Children|Musical +1024,3.25,"Three Caballeros, The (1945)",Animation|Children|Musical +1025,3.5961538461538463,"Sword in the Stone, The (1963)",Animation|Children|Fantasy|Musical +1026,2.5,So Dear to My Heart (1949),Children|Drama +1027,3.1136363636363638,Robin Hood: Prince of Thieves (1991),Adventure|Drama +1028,3.8141025641025643,Mary Poppins (1964),Children|Comedy|Fantasy|Musical +1029,3.7023809523809526,Dumbo (1941),Animation|Children|Drama|Musical +1030,3.2222222222222223,Pete's Dragon (1977),Adventure|Animation|Children|Musical +1031,3.5,Bedknobs and Broomsticks (1971),Adventure|Children|Musical +1032,3.6122448979591835,Alice in Wonderland (1951),Adventure|Animation|Children|Fantasy|Musical +1033,3.5238095238095237,"Fox and the Hound, The (1981)",Animation|Children|Drama +1034,3.95,Freeway (1996),Comedy|Crime|Drama|Thriller +1035,3.94375,"Sound of Music, The (1965)",Musical|Romance +1036,3.8642384105960264,Die Hard (1988),Action|Crime|Thriller +1037,2.8333333333333335,"Lawnmower Man, The (1992)",Action|Horror|Sci-Fi|Thriller +1040,4.0,"Secret Agent, The (1996)",Drama +1041,3.8653846153846154,Secrets & Lies (1996),Drama +1042,3.489795918367347,That Thing You Do! (1996),Comedy|Drama +1043,2.375,To Gillian on Her 37th Birthday (1996),Drama|Romance +1044,3.0,Surviving Picasso (1996),Drama +1046,3.875,Beautiful Thing (1996),Drama|Romance +1047,3.216666666666667,"Long Kiss Goodnight, The (1996)",Action|Drama|Thriller +1049,3.619047619047619,"Ghost and the Darkness, The (1996)",Action|Adventure +1050,3.5555555555555554,Looking for Richard (1996),Documentary|Drama +1051,3.0,Trees Lounge (1996),Drama +1053,2.0,Normal Life (1996),Crime|Drama|Romance +1054,1.5,Get on the Bus (1996),Drama +1055,2.0,Shadow Conspiracy (1997),Thriller +1056,4.0,Jude (1996),Drama +1057,3.823529411764706,Everyone Says I Love You (1996),Comedy|Musical|Romance +1059,3.5258620689655173,William Shakespeare's Romeo + Juliet (1996),Drama|Romance +1060,4.226190476190476,Swingers (1996),Comedy|Drama +1061,3.5454545454545454,Sleepers (1996),Thriller +1063,4.333333333333333,Johns (1996),Drama +1066,4.409090909090909,Shall We Dance (1937),Comedy|Musical|Romance +1067,4.0,"Damsel in Distress, A (1937)",Comedy|Musical|Romance +1068,3.5,Crossfire (1947),Crime|Film-Noir +1069,3.6666666666666665,"Murder, My Sweet (1944)",Crime|Film-Noir|Thriller +1073,3.7533783783783785,Willy Wonka & the Chocolate Factory (1971),Children|Comedy|Fantasy|Musical +1076,3.75,"Innocents, The (1961)",Drama|Horror|Thriller +1077,4.051282051282051,Sleeper (1973),Comedy|Sci-Fi +1078,3.8421052631578947,Bananas (1971),Comedy|War +1079,3.9719101123595504,"Fish Called Wanda, A (1988)",Comedy|Crime +1080,3.857142857142857,Monty Python's Life of Brian (1979),Comedy +1081,3.6724137931034484,Victor/Victoria (1982),Comedy|Musical|Romance +1082,3.6875,"Candidate, The (1972)",Drama +1083,3.0,"Great Race, The (1965)",Comedy|Musical +1084,3.875,Bonnie and Clyde (1967),Crime|Drama +1085,3.5,"Old Man and the Sea, The (1958)",Adventure|Drama +1086,3.9423076923076925,Dial M for Murder (1954),Crime|Mystery|Thriller +1087,3.75,Madame Butterfly (1995),Musical +1088,3.358490566037736,Dirty Dancing (1987),Drama|Musical|Romance +1089,4.162878787878788,Reservoir Dogs (1992),Crime|Mystery|Thriller +1090,3.9338235294117645,Platoon (1986),Drama|War +1091,2.6296296296296298,Weekend at Bernie's (1989),Comedy +1092,3.294642857142857,Basic Instinct (1992),Crime|Mystery|Thriller +1093,3.111111111111111,"Doors, The (1991)",Drama +1094,3.92,"Crying Game, The (1992)",Drama|Romance|Thriller +1095,3.8703703703703702,Glengarry Glen Ross (1992),Drama +1096,4.038461538461538,Sophie's Choice (1982),Drama +1097,3.76875,E.T. the Extra-Terrestrial (1982),Children|Drama|Sci-Fi +1099,3.5454545454545454,"Christmas Carol, A (1938)",Children|Drama|Fantasy +1100,2.5789473684210527,Days of Thunder (1990),Action|Drama|Romance +1101,3.324324324324324,Top Gun (1986),Action|Romance +1103,3.9375,Rebel Without a Cause (1955),Drama +1104,3.9125,"Streetcar Named Desire, A (1951)",Drama +1105,1.75,Children of the Corn IV: The Gathering (1996),Horror +1111,3.9375,Microcosmos (Microcosmos: Le peuple de l'herbe) (1996),Documentary +1112,3.6666666666666665,Palookaville (1996),Action|Comedy|Drama +1113,2.4285714285714284,"Associate, The (1996)",Comedy +1114,3.1666666666666665,"Funeral, The (1996)",Crime|Drama +1120,3.621212121212121,"People vs. Larry Flynt, The (1996)",Comedy|Drama +1123,4.0,"Perfect Candidate, A (1996)",Documentary +1124,3.607142857142857,On Golden Pond (1981),Drama +1125,3.4107142857142856,"Return of the Pink Panther, The (1975)",Comedy|Crime +1126,2.727272727272727,Drop Dead Fred (1991),Comedy|Fantasy +1127,3.612676056338028,"Abyss, The (1989)",Action|Adventure|Sci-Fi|Thriller +1128,3.4166666666666665,"Fog, The (1980)",Horror +1129,3.3125,Escape from New York (1981),Action|Adventure|Sci-Fi|Thriller +1130,3.75,"Howling, The (1980)",Horror|Mystery +1131,4.088235294117647,Jean de Florette (1986),Drama|Mystery +1132,3.65625,Manon of the Spring (Manon des sources) (1986),Drama +1133,3.0,Talking About Sex (1994),Comedy|Drama +1135,3.347826086956522,Private Benjamin (1980),Comedy +1136,4.224137931034483,Monty Python and the Holy Grail (1975),Adventure|Comedy|Fantasy +1137,4.0,Hustler White (1996),Romance +1145,3.0,Snowriders (1996),Documentary +1147,4.4375,When We Were Kings (1996),Documentary +1148,4.093333333333334,Wallace & Gromit: The Wrong Trousers (1993),Animation|Children|Comedy|Crime +1150,3.8,"Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)",Drama +1151,4.0,Lesson Faust (1994),Animation|Comedy|Drama|Fantasy +1152,3.0,He Walked by Night (1948),Crime|Film-Noir|Thriller +1153,3.0,Raw Deal (1948),Film-Noir +1154,1.0,T-Men (1947),Film-Noir +1161,4.0625,"Tin Drum, The (Blechtrommel, Die) (1979)",Drama|War +1162,3.6,"Ruling Class, The (1972)",Comedy|Drama +1163,2.5,Mina Tannenbaum (1994),Drama +1164,1.0,2 ou 3 choses que je sais d'elle (2 or 3 Things I Know About Her) (1967),Drama +1165,1.5,"Bloody Child, The (1996)",Drama|Thriller +1167,2.0,Dear God (1996),Comedy +1168,3.0,Bad Moon (1996),Action|Adventure|Horror +1169,4.0,American Dream (1990),Documentary +1171,3.5806451612903225,Bob Roberts (1992),Comedy +1172,4.260869565217392,Cinema Paradiso (Nuovo cinema Paradiso) (1989),Drama +1173,3.210526315789474,"Cook the Thief His Wife & Her Lover, The (1989)",Comedy|Drama +1174,3.0,Dead Tired (Grosse Fatigue) (1994),Comedy +1175,4.166666666666667,Delicatessen (1991),Comedy|Drama|Romance +1176,3.7777777777777777,"Double Life of Veronique, The (Double Vie de Véronique, La) (1991)",Drama|Fantasy|Romance +1177,3.769230769230769,Enchanted April (1992),Drama|Romance +1178,4.366666666666666,Paths of Glory (1957),Drama|War +1179,3.85,"Grifters, The (1990)",Crime|Drama|Film-Noir +1180,3.6666666666666665,Hear My Song (1991),Comedy +1181,4.0,"Shooter, The (1997)",Western +1183,3.6013513513513513,"English Patient, The (1996)",Drama|Romance|War +1184,4.0,Mediterraneo (1991),Comedy|Drama +1185,3.75,My Left Foot (1989),Drama +1186,3.6379310344827585,"Sex, Lies, and Videotape (1989)",Drama +1187,3.5,Passion Fish (1992),Drama +1188,3.3970588235294117,Strictly Ballroom (1992),Comedy|Romance +1189,4.0,"Thin Blue Line, The (1988)",Documentary +1190,2.1,Tie Me Up! Tie Me Down! (¡Átame!) (1990),Crime|Drama|Romance +1191,3.55,Madonna: Truth or Dare (1991),Documentary|Musical +1192,4.388888888888889,Paris Is Burning (1990),Documentary +1193,4.256944444444445,One Flew Over the Cuckoo's Nest (1975),Drama +1194,3.7333333333333334,Cheech and Chong's Up in Smoke (1978),Comedy +1196,4.232905982905983,Star Wars: Episode V - The Empire Strikes Back (1980),Action|Adventure|Sci-Fi +1197,4.208588957055214,"Princess Bride, The (1987)",Action|Adventure|Comedy|Fantasy|Romance +1198,4.193181818181818,Raiders of the Lost Ark (Indiana Jones and the Raiders of the Lost Ark) (1981),Action|Adventure +1199,4.032258064516129,Brazil (1985),Fantasy|Sci-Fi +1200,3.924,Aliens (1986),Action|Adventure|Horror|Sci-Fi +1201,3.93859649122807,"Good, the Bad and the Ugly, The (Buono, il brutto, il cattivo, Il) (1966)",Action|Adventure|Western +1202,3.642857142857143,Withnail & I (1987),Comedy +1203,4.304054054054054,12 Angry Men (1957),Drama +1204,4.215686274509804,Lawrence of Arabia (1962),Adventure|Drama|War +1206,4.0,"Clockwork Orange, A (1971)",Crime|Drama|Sci-Fi|Thriller +1207,4.18125,To Kill a Mockingbird (1962),Drama +1208,4.138392857142857,Apocalypse Now (1979),Action|Drama|War +1209,4.21875,Once Upon a Time in the West (C'era una volta il West) (1968),Action|Drama|Western +1210,4.059907834101383,Star Wars: Episode VI - Return of the Jedi (1983),Action|Adventure|Sci-Fi +1211,4.2105263157894735,"Wings of Desire (Himmel über Berlin, Der) (1987)",Drama|Fantasy|Romance +1212,4.25,"Third Man, The (1949)",Film-Noir|Mystery|Thriller +1213,4.202290076335878,Goodfellas (1990),Crime|Drama +1214,3.9881889763779528,Alien (1979),Horror|Sci-Fi +1215,3.8173076923076925,Army of Darkness (1993),Action|Adventure|Comedy|Fantasy|Horror +1216,2.9,"Big Blue, The (Grand bleu, Le) (1988)",Adventure|Drama|Romance +1217,4.423076923076923,Ran (1985),Drama|War +1218,4.214285714285714,"Killer, The (Die xue shuang xiong) (1989)",Action|Crime|Drama|Thriller +1219,4.253246753246753,Psycho (1960),Crime|Horror +1220,3.893617021276596,"Blues Brothers, The (1980)",Action|Comedy|Musical +1221,4.385185185185185,"Godfather: Part II, The (1974)",Crime|Drama +1222,4.033653846153846,Full Metal Jacket (1987),Drama|War +1223,4.089743589743589,"Grand Day Out with Wallace and Gromit, A (1989)",Adventure|Animation|Children|Comedy|Sci-Fi +1224,4.181818181818182,Henry V (1989),Action|Drama|Romance|War +1225,4.155,Amadeus (1984),Drama +1226,3.576923076923077,"Quiet Man, The (1952)",Drama|Romance +1227,4.181818181818182,Once Upon a Time in America (1984),Crime|Drama +1228,4.35,Raging Bull (1980),Drama +1230,4.09375,Annie Hall (1977),Comedy|Romance +1231,3.911111111111111,"Right Stuff, The (1983)",Drama +1232,3.85,Stalker (1979),Drama|Mystery|Sci-Fi +1233,4.166666666666667,"Boot, Das (Boat, The) (1981)",Action|Drama|War +1234,4.015873015873016,"Sting, The (1973)",Comedy|Crime +1235,3.784090909090909,Harold and Maude (1971),Comedy|Drama|Romance +1236,3.8,Trust (1990),Comedy|Drama|Romance +1237,4.28125,"Seventh Seal, The (Sjunde inseglet, Det) (1957)",Drama +1238,4.147058823529412,Local Hero (1983),Comedy +1240,3.9588607594936707,"Terminator, The (1984)",Action|Sci-Fi|Thriller +1241,3.0,Dead Alive (Braindead) (1992),Comedy|Fantasy|Horror +1242,3.836206896551724,Glory (1989),Drama|War +1243,4.045454545454546,Rosencrantz and Guildenstern Are Dead (1990),Comedy|Drama +1244,3.962962962962963,Manhattan (1979),Comedy|Drama|Romance +1245,3.8518518518518516,Miller's Crossing (1990),Crime|Drama|Film-Noir|Thriller +1246,3.7842105263157895,Dead Poets Society (1989),Drama +1247,4.123595505617978,"Graduate, The (1967)",Comedy|Drama|Romance +1248,4.2368421052631575,Touch of Evil (1958),Crime|Film-Noir|Thriller +1249,3.91025641025641,"Femme Nikita, La (Nikita) (1990)",Action|Crime|Romance|Thriller +1250,4.138461538461539,"Bridge on the River Kwai, The (1957)",Adventure|Drama|War +1251,3.825,8 1/2 (8½) (1963),Drama|Fantasy +1252,4.3355263157894735,Chinatown (1974),Crime|Film-Noir|Mystery|Thriller +1253,3.8,"Day the Earth Stood Still, The (1951)",Drama|Sci-Fi|Thriller +1254,4.3,"Treasure of the Sierra Madre, The (1948)",Action|Adventure|Drama|Western +1255,3.5416666666666665,Bad Taste (1987),Comedy|Horror|Sci-Fi +1256,4.132352941176471,Duck Soup (1933),Comedy|Musical|War +1257,3.8125,Better Off Dead... (1985),Comedy|Romance +1258,4.02970297029703,"Shining, The (1980)",Horror +1259,4.09375,Stand by Me (1986),Adventure|Drama +1260,4.261904761904762,M (1931),Crime|Film-Noir|Thriller +1261,3.787878787878788,Evil Dead II (Dead by Dawn) (1987),Action|Comedy|Fantasy|Horror +1262,3.9489795918367347,"Great Escape, The (1963)",Action|Adventure|Drama|War +1263,3.8645833333333335,"Deer Hunter, The (1978)",Drama|War +1264,4.285714285714286,Diva (1981),Action|Drama|Mystery|Romance|Thriller +1265,3.8393939393939394,Groundhog Day (1993),Comedy|Fantasy|Romance +1266,3.8859649122807016,Unforgiven (1992),Drama|Western +1267,4.122448979591836,"Manchurian Candidate, The (1962)",Crime|Thriller|War +1268,3.4705882352941178,Pump Up the Volume (1990),Comedy|Drama +1269,3.945945945945946,Arsenic and Old Lace (1944),Comedy|Mystery|Thriller +1270,4.015486725663717,Back to the Future (1985),Adventure|Comedy|Sci-Fi +1271,3.7,Fried Green Tomatoes (1991),Comedy|Crime|Drama +1272,4.1,Patton (1970),Drama|War +1273,3.736842105263158,Down by Law (1986),Comedy|Drama|Film-Noir +1274,3.838235294117647,Akira (1988),Action|Adventure|Animation|Sci-Fi +1275,3.4285714285714284,Highlander (1986),Action|Adventure|Fantasy +1276,4.271739130434782,Cool Hand Luke (1967),Drama +1277,4.0,Cyrano de Bergerac (1990),Comedy|Drama|Romance +1278,4.087837837837838,Young Frankenstein (1974),Comedy|Fantasy +1279,3.75,Night on Earth (1991),Comedy|Drama +1280,4.157894736842105,Raise the Red Lantern (Da hong deng long gao gao gua) (1991),Drama +1281,4.043478260869565,"Great Dictator, The (1940)",Comedy|Drama|War +1282,3.7578125,Fantasia (1940),Animation|Children|Fantasy|Musical +1283,4.119047619047619,High Noon (1952),Drama|Western +1284,3.984375,"Big Sleep, The (1946)",Crime|Film-Noir|Mystery +1285,3.80327868852459,Heathers (1989),Comedy +1286,3.638888888888889,Somewhere in Time (1980),Drama|Romance +1287,3.891304347826087,Ben-Hur (1959),Action|Adventure|Drama +1288,4.085365853658536,This Is Spinal Tap (1984),Comedy +1289,3.923076923076923,Koyaanisqatsi (a.k.a. Koyaanisqatsi: Life Out of Balance) (1983),Documentary +1290,3.5833333333333335,Some Kind of Wonderful (1987),Drama|Romance +1291,4.017006802721088,Indiana Jones and the Last Crusade (1989),Action|Adventure +1292,4.089285714285714,Being There (1979),Comedy|Drama +1293,3.9782608695652173,Gandhi (1982),Drama +1295,3.1176470588235294,"Unbearable Lightness of Being, The (1988)",Drama +1296,3.8225806451612905,"Room with a View, A (1986)",Drama|Romance +1297,3.375,Real Genius (1985),Comedy +1298,3.6458333333333335,Pink Floyd: The Wall (1982),Drama|Musical +1299,4.271428571428571,"Killing Fields, The (1984)",Drama|War +1300,4.052631578947368,My Life as a Dog (Mitt liv som hund) (1985),Comedy|Drama +1301,3.8333333333333335,Forbidden Planet (1956),Drama|Sci-Fi +1302,3.574626865671642,Field of Dreams (1989),Children|Drama|Fantasy +1303,3.933333333333333,"Man Who Would Be King, The (1975)",Adventure|Drama +1304,4.173333333333333,Butch Cassidy and the Sundance Kid (1969),Action|Western +1305,4.291666666666667,"Paris, Texas (1984)",Drama|Romance +1306,2.857142857142857,Until the End of the World (Bis ans Ende der Welt) (1991),Adventure|Drama|Sci-Fi +1307,3.9195402298850577,When Harry Met Sally... (1989),Comedy|Romance +1310,4.5,Hype! (1996),Documentary +1311,0.5,Santa with Muscles (1996),Comedy +1312,5.0,Female Perversions (1996),Drama +1317,4.0,I'm Not Rappaport (1996),Comedy +1320,3.1818181818181817,Alien³ (a.k.a. Alien 3) (1992),Action|Horror|Sci-Fi|Thriller +1321,3.6315789473684212,"American Werewolf in London, An (1981)",Comedy|Horror|Thriller +1322,2.5,Amityville 1992: It's About Time (1992),Horror +1323,2.25,Amityville 3-D (1983),Horror +1324,1.0,Amityville: Dollhouse (1996),Horror +1325,1.0,Amityville: A New Generation (1993),Horror +1326,2.6666666666666665,Amityville II: The Possession (1982),Horror +1327,3.1153846153846154,"Amityville Horror, The (1979)",Drama|Horror|Mystery|Thriller +1328,1.0,"Amityville Curse, The (1990)",Horror +1329,3.0,Blood for Dracula (Andy Warhol's Dracula) (1974),Horror +1330,3.4285714285714284,April Fool's Day (1986),Horror +1331,2.3333333333333335,Audrey Rose (1977),Horror +1332,3.5,"Believers, The (1987)",Horror|Thriller +1333,3.7549019607843137,"Birds, The (1963)",Horror|Thriller +1334,3.1333333333333333,"Blob, The (1958)",Horror|Sci-Fi +1335,4.0,Blood Beach (1981),Horror|Mystery +1336,3.5,Body Parts (1991),Horror|Thriller +1337,2.8333333333333335,"Body Snatcher, The (1945)",Drama|Horror|Thriller +1339,3.298076923076923,Dracula (Bram Stoker's Dracula) (1992),Fantasy|Horror|Romance|Thriller +1340,3.75,"Bride of Frankenstein, The (Bride of Frankenstein) (1935)",Drama|Horror|Sci-Fi +1341,4.0,Burnt Offerings (1976),Horror +1342,3.0588235294117645,Candyman (1992),Horror|Thriller +1343,3.7435897435897436,Cape Fear (1991),Thriller +1344,3.6315789473684212,Cape Fear (1962),Crime|Drama|Thriller +1345,3.675675675675676,Carrie (1976),Drama|Fantasy|Horror|Thriller +1346,3.111111111111111,Cat People (1982),Drama|Fantasy|Horror +1347,3.28125,"Nightmare on Elm Street, A (1984)",Horror|Thriller +1348,3.8095238095238093,"Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)",Horror +1349,4.5,Vampire in Venice (Nosferatu a Venezia) (Nosferatu in Venice) (1986),Horror +1350,3.36,"Omen, The (1976)",Horror|Mystery|Thriller +1351,4.0,Blood and Wine (Blood & Wine) (1996),Crime|Drama|Thriller +1352,3.5,Albino Alligator (1996),Crime|Thriller +1353,2.9615384615384617,"Mirror Has Two Faces, The (1996)",Comedy|Drama|Romance +1354,3.975,Breaking the Waves (1996),Drama|Mystery +1355,2.5,Nightwatch (1997),Horror|Thriller +1356,3.8780487804878048,Star Trek: First Contact (1996),Action|Adventure|Sci-Fi|Thriller +1357,3.945945945945946,Shine (1996),Drama|Romance +1358,3.8863636363636362,Sling Blade (1996),Drama +1359,2.1363636363636362,Jingle All the Way (1996),Children|Comedy +1361,4.153846153846154,Paradise Lost: The Child Murders at Robin Hood Hills (1996),Documentary +1363,3.357142857142857,"Preacher's Wife, The (1996)",Drama +1365,3.6,Ridicule (1996),Drama +1366,3.9615384615384617,"Crucible, The (1996)",Drama +1367,2.9594594594594597,101 Dalmatians (1996),Adventure|Children|Comedy +1369,2.5,I Can't Sleep (J'ai pas sommeil) (1994),Drama|Thriller +1370,3.287878787878788,Die Hard 2 (1990),Action|Adventure|Thriller +1371,3.0531914893617023,Star Trek: The Motion Picture (1979),Adventure|Sci-Fi +1372,3.265957446808511,Star Trek VI: The Undiscovered Country (1991),Action|Mystery|Sci-Fi +1373,2.78,Star Trek V: The Final Frontier (1989),Action|Sci-Fi +1374,3.75,Star Trek II: The Wrath of Khan (1982),Action|Adventure|Sci-Fi|Thriller +1375,3.314814814814815,Star Trek III: The Search for Spock (1984),Action|Adventure|Sci-Fi +1376,3.5,Star Trek IV: The Voyage Home (1986),Adventure|Comedy|Sci-Fi +1377,3.0859375,Batman Returns (1992),Action|Crime +1378,3.25,Young Guns (1988),Action|Comedy|Western +1379,2.8214285714285716,Young Guns II (1990),Action|Western +1380,3.477777777777778,Grease (1978),Comedy|Musical|Romance +1381,2.4473684210526314,Grease 2 (1982),Comedy|Musical|Romance +1382,2.0,Marked for Death (1990),Action|Drama +1384,4.0,"Substance of Fire, The (1996)",Drama +1385,3.0,Under Siege (1992),Action|Drama|Thriller +1387,3.7777777777777777,Jaws (1975),Action|Horror +1388,2.759259259259259,Jaws 2 (1978),Horror|Thriller +1389,1.7916666666666667,Jaws 3-D (1983),Action|Horror +1390,3.5,My Fellow Americans (1996),Comedy +1391,2.99375,Mars Attacks! (1996),Action|Comedy|Sci-Fi +1392,3.375,Citizen Ruth (1996),Comedy|Drama +1393,3.69811320754717,Jerry Maguire (1996),Drama|Romance +1394,3.95,Raising Arizona (1987),Comedy +1395,3.4285714285714284,Tin Men (1987),Comedy|Drama +1396,3.6176470588235294,Sneakers (1992),Action|Comedy|Crime|Drama|Sci-Fi +1397,3.0,Bastard Out of Carolina (1996),Drama +1398,3.5,In Love and War (1996),Romance|War +1399,3.5,Marvin's Room (1996),Drama +1401,3.5,Ghosts of Mississippi (1996),Drama +1404,2.75,Night Falls on Manhattan (1996),Crime|Drama +1405,3.032608695652174,Beavis and Butt-Head Do America (1996),Adventure|Animation|Comedy|Crime +1406,3.25,La Cérémonie (1995),Crime|Drama|Mystery|Thriller +1407,3.410958904109589,Scream (1996),Comedy|Horror|Mystery|Thriller +1408,3.616279069767442,"Last of the Mohicans, The (1992)",Action|Romance|War|Western +1409,2.984848484848485,Michael (1996),Comedy|Drama|Fantasy|Romance +1410,2.75,"Evening Star, The (1996)",Comedy|Drama +1411,4.16,Hamlet (1996),Crime|Drama|Romance +1413,3.5,"Whole Wide World, The (1996)",Drama +1414,3.7,Mother (1996),Comedy +1415,3.5,"Thieves (Voleurs, Les) (1996)",Crime|Drama|Romance +1416,3.1818181818181817,Evita (1996),Drama|Musical +1417,2.0,"Portrait of a Lady, The (1996)",Drama +1419,3.6,Walkabout (1971),Adventure|Drama +1420,5.0,Message to Love: The Isle of Wight Festival (1996),Documentary +1422,3.1,Murder at 1600 (1997),Crime|Drama|Mystery|Thriller +1423,4.25,Hearts and Minds (1996),Drama +1425,2.9444444444444446,Fierce Creatures (1997),Comedy +1427,3.2,Turbulence (1997),Action|Thriller +1428,5.0,Angel Baby (1995),Drama +1429,3.6538461538461537,First Strike (Police Story 4: First Strike) (Ging chaat goo si 4: Ji gaan daan yam mo) (1996),Action|Adventure|Comedy|Thriller +1430,2.5,Underworld (1996),Comedy|Thriller +1431,2.7222222222222223,Beverly Hills Ninja (1997),Action|Comedy +1432,3.4,Metro (1997),Action|Comedy|Crime|Drama|Thriller +1433,3.0,The Machine (1994),Horror|Sci-Fi|Thriller +1437,3.5,"Cement Garden, The (1993)",Drama +1438,2.6818181818181817,Dante's Peak (1997),Action|Thriller +1440,3.0,Amos & Andrew (1993),Comedy +1441,3.375,Benny & Joon (1993),Comedy|Romance +1442,2.5,Prefontaine (1997),Drama +1444,4.0,Guantanamera (1994),Comedy +1445,2.0,McHale's Navy (1997),Comedy|War +1446,3.8333333333333335,Kolya (Kolja) (1996),Comedy|Drama +1447,2.8333333333333335,Gridlock'd (1997),Crime +1449,3.8793103448275863,Waiting for Guffman (1996),Comedy +1450,5.0,Prisoner of the Mountains (Kavkazsky plennik) (1996),War +1453,2.357142857142857,"Beautician and the Beast, The (1997)",Comedy|Romance +1454,3.0,SubUrbia (1997),Comedy|Drama +1455,5.0,Hotel de Love (1996),Comedy|Romance +1456,1.5,"Pest, The (1997)",Comedy +1457,3.05,Fools Rush In (1997),Comedy|Drama|Romance +1458,3.0,Touch (1997),Drama|Fantasy|Romance +1459,3.05,Absolute Power (1997),Mystery|Thriller +1460,3.3333333333333335,That Darn Cat (1997),Children|Comedy|Mystery +1461,2.7142857142857144,Vegas Vacation (National Lampoon's Las Vegas Vacation) (1997),Comedy +1463,4.5,That Old Feeling (1997),Comedy|Romance +1464,3.7,Lost Highway (1997),Crime|Drama|Fantasy|Film-Noir|Mystery|Romance +1465,4.0,Rosewood (1997),Action|Drama +1466,3.8846153846153846,Donnie Brasco (1997),Crime|Drama +1468,2.3333333333333335,Booty Call (1997),Comedy|Romance +1472,4.0,City of Industry (1997),Crime|Thriller +1473,2.0,Best Men (1997),Action|Comedy|Crime|Drama +1474,1.6666666666666667,Jungle2Jungle (a.k.a. Jungle 2 Jungle) (1997),Children|Comedy +1475,4.0,Kama Sutra: A Tale of Love (1996),Romance +1476,3.5217391304347827,Private Parts (1997),Comedy|Drama +1479,3.0714285714285716,"Saint, The (1997)",Action|Romance|Sci-Fi|Thriller +1480,3.5833333333333335,Smilla's Sense of Snow (1997),Drama|Thriller +1482,3.0,"Van, The (1996)",Comedy|Drama +1483,3.2777777777777777,Crash (1996),Drama|Thriller +1484,3.8333333333333335,"Daytrippers, The (1996)",Comedy|Drama|Mystery|Romance +1485,3.1901408450704225,Liar Liar (1997),Comedy +1487,3.1875,Selena (1997),Drama|Musical +1488,3.0,"Devil's Own, The (1997)",Action|Drama|Thriller +1489,3.5,Cats Don't Dance (1997),Animation|Children|Musical +1490,0.75,B*A*P*S (1997),Comedy +1493,4.0,Love and Other Catastrophes (1996),Romance +1495,1.0,Turbo: A Power Rangers Movie (1997),Action|Adventure|Children +1497,2.8333333333333335,Double Team (1997),Action +1498,3.0,Inventing the Abbotts (1997),Drama|Romance +1499,2.017857142857143,Anaconda (1997),Action|Adventure|Thriller +1500,3.96875,Grosse Pointe Blank (1997),Comedy|Crime|Romance +1501,3.0,Keys to Tulsa (1997),Crime +1502,1.75,Kissed (1996),Drama|Romance +1503,2.6666666666666665,8 Heads in a Duffel Bag (1997),Comedy +1504,4.5,Hollow Reed (1996),Drama +1507,3.0,Paradise Road (1997),Drama|War +1508,3.3333333333333335,Traveller (1997),Drama +1513,3.2555555555555555,Romy and Michele's High School Reunion (1997),Comedy +1515,2.95,Volcano (1997),Action|Drama|Thriller +1516,4.0,Children of the Revolution (1996),Comedy +1517,3.378504672897196,Austin Powers: International Man of Mystery (1997),Action|Adventure|Comedy +1518,3.230769230769231,Breakdown (1997),Action|Thriller +1523,4.0,"Truth or Consequences, N.M. (1997)",Action|Crime|Romance +1525,1.5,Warriors of Virtue (1997),Action|Adventure|Children|Fantasy +1526,2.1666666666666665,Fathers' Day (1997),Comedy +1527,3.6779661016949152,"Fifth Element, The (1997)",Action|Adventure|Comedy|Sci-Fi +1529,3.8333333333333335,Nowhere (1997),Comedy|Drama +1531,5.0,Losing Chase (1996),Drama +1532,2.5,Sprung (1997),Comedy +1535,3.8,Love! Valour! Compassion! (1997),Drama|Romance +1537,3.9722222222222223,Shall We Dance? (Shall We Dansu?) (1996),Comedy|Drama|Romance +1539,1.0,Twin Town (1997),Comedy|Crime +1541,2.875,Addicted to Love (1997),Comedy|Romance +1542,3.8,Brassed Off (1996),Comedy|Drama|Romance +1543,5.0,"Designated Mourner, The (1997)",Drama +1544,2.888059701492537,"Lost World: Jurassic Park, The (1997)",Action|Adventure|Sci-Fi|Thriller +1545,4.25,Ponette (1996),Drama +1546,2.5,Schizopolis (1996),Comedy +1549,2.0,Rough Magic (1995),Drama|Romance +1550,3.0,Trial and Error (1997),Comedy|Romance +1552,3.26271186440678,Con Air (1997),Action|Adventure|Thriller +1554,3.3333333333333335,"Pillow Book, The (1996)",Drama|Romance +1555,4.0,"To Have, or Not (En avoir (ou pas)) (1995)",Drama +1556,1.6521739130434783,Speed 2: Cruise Control (1997),Action|Romance|Thriller +1562,2.148936170212766,Batman & Robin (1997),Action|Adventure|Fantasy|Thriller +1563,5.0,Dream With the Fishes (1997),Drama +1564,4.5,For Roseanna (Roseanna's Grave) (1997),Comedy|Drama|Romance +1566,3.5,Hercules (1997),Adventure|Animation|Children|Comedy|Musical +1569,3.298076923076923,My Best Friend's Wedding (1997),Comedy|Romance +1570,2.5,Tetsuo II: Body Hammer (1992),Horror|Sci-Fi +1571,1.0,When the Cat's Away (Chacun cherche son chat) (1996),Comedy|Romance +1572,4.166666666666667,"Contempt (Mépris, Le) (1963)",Drama +1573,3.4518072289156625,Face/Off (1997),Action|Crime|Drama|Thriller +1575,5.0,Gabbeh (1996),Drama +1580,3.663157894736842,Men in Black (a.k.a. MIB) (1997),Action|Comedy|Sci-Fi +1581,2.0,Out to Sea (1997),Comedy +1582,3.5,Wild America (1997),Adventure|Children +1583,1.5,"Simple Wish, A (1997)",Children|Fantasy +1584,3.7282608695652173,Contact (1997),Drama|Sci-Fi +1586,2.759259259259259,G.I. Jane (1997),Action|Drama +1587,3.3333333333333335,Conan the Barbarian (1982),Action|Adventure|Fantasy +1588,3.088235294117647,George of the Jungle (1997),Children|Comedy +1589,3.3947368421052633,Cop Land (1997),Action|Crime|Drama|Thriller +1590,2.9565217391304346,Event Horizon (1997),Horror|Sci-Fi|Thriller +1591,2.7,Spawn (1997),Action|Adventure|Sci-Fi|Thriller +1592,2.7857142857142856,Air Bud (1997),Children|Comedy +1593,2.7857142857142856,Picture Perfect (1997),Comedy|Romance +1594,3.4285714285714284,In the Company of Men (1997),Comedy|Drama +1595,1.8333333333333333,Free Willy 3: The Rescue (1997),Adventure|Children|Drama +1596,2.3333333333333335,Career Girls (1997),Drama +1597,3.352272727272727,Conspiracy Theory (1997),Drama|Mystery|Romance|Thriller +1598,3.75,Desperate Measures (1998),Crime|Drama|Thriller +1599,1.75,Steel (1997),Action +1600,2.125,She's So Lovely (1997),Drama|Romance +1601,3.5,Hoodlum (1997),Crime|Drama|Film-Noir +1602,1.0,Leave It to Beaver (1997),Comedy +1603,2.4,Mimic (1997),Horror|Sci-Fi|Thriller +1604,3.0,Money Talks (1997),Action|Comedy +1605,2.8,Excess Baggage (1997),Adventure|Romance +1606,2.25,Kull the Conqueror (1997),Action|Adventure +1608,3.2642857142857142,Air Force One (1997),Action|Thriller +1609,3.0,187 (One Eight Seven) (1997),Drama|Thriller +1610,3.8969072164948453,"Hunt for Red October, The (1990)",Action|Adventure|Thriller +1611,4.083333333333333,My Own Private Idaho (1991),Drama|Romance +1612,3.0,"Kiss Me, Guido (1997)",Comedy +1613,3.0,Star Maps (1997),Drama +1614,3.36,In & Out (1997),Comedy +1615,3.65,"Edge, The (1997)",Adventure|Drama +1616,3.5357142857142856,"Peacemaker, The (1997)",Action|Thriller|War +1617,4.12,L.A. Confidential (1997),Crime|Film-Noir|Mystery|Thriller +1619,3.4473684210526314,Seven Years in Tibet (1997),Adventure|Drama|War +1620,3.375,Kiss the Girls (1997),Crime|Drama|Mystery|Thriller +1621,3.0,Soul Food (1997),Drama +1623,2.3,Wishmaster (1997),Horror +1624,4.0,"Thousand Acres, A (1997)",Drama +1625,3.9210526315789473,"Game, The (1997)",Drama|Mystery|Thriller +1626,1.6666666666666667,Fire Down Below (1997),Action|Drama|Thriller +1627,2.8636363636363638,U Turn (1997),Crime|Drama|Mystery +1629,3.4,"MatchMaker, The (1997)",Comedy|Romance +1631,3.5,"Assignment, The (1997)",Action|Thriller +1632,2.5,"Smile Like Yours, A (1997)",Comedy|Romance +1633,3.375,Ulee's Gold (1997),Drama +1635,3.823529411764706,"Ice Storm, The (1997)",Drama +1636,1.0,Stag (1997),Action|Thriller +1639,3.5692307692307694,Chasing Amy (1997),Comedy|Drama|Romance +1640,1.0,How to Be a Player (1997),Comedy +1641,3.7734375,"Full Monty, The (1997)",Comedy|Drama +1642,2.375,Indian Summer (a.k.a. Alive & Kicking) (1996),Comedy|Drama +1643,4.05,"Mrs. Brown (a.k.a. Her Majesty, Mrs. Brown) (1997)",Drama|Romance +1644,2.5166666666666666,I Know What You Did Last Summer (1997),Horror|Mystery|Thriller +1645,3.4583333333333335,The Devil's Advocate (1997),Drama|Mystery|Thriller +1646,2.5714285714285716,RocketMan (a.k.a. Rocket Man) (1997),Children|Comedy|Romance|Sci-Fi +1647,2.6666666666666665,Playing God (1997),Crime|Drama|Thriller +1648,3.1666666666666665,"House of Yes, The (1997)",Comedy|Drama +1649,3.8333333333333335,"Fast, Cheap & Out of Control (1997)",Documentary +1652,4.0,Year of the Horse (1997),Documentary +1653,3.6785714285714284,Gattaca (1997),Drama|Sci-Fi|Thriller +1654,3.5,FairyTale: A True Story (1997),Children|Drama|Fantasy +1655,3.5,Phantoms (1998),Drama|Horror|Thriller +1657,3.0,Wonderland (1997),Comedy|Documentary +1658,3.375,"Life Less Ordinary, A (1997)",Romance|Thriller +1660,3.0,Eve's Bayou (1997),Drama +1661,3.125,Switchback (1997),Crime|Mystery|Thriller +1663,3.7,Stripes (1981),Comedy|War +1665,3.25,Bean (1997),Comedy +1667,2.75,Mad City (1997),Action|Drama +1668,1.8333333333333333,One Night Stand (1997),Drama +1669,4.0,"Tango Lesson, The (1997)",Romance +1670,3.8,Welcome to Sarajevo (1997),Drama|War +1671,3.5,Deceiver (1997),Crime|Drama|Thriller +1672,3.6666666666666665,"Rainmaker, The (1997)",Drama +1673,3.9193548387096775,Boogie Nights (1997),Drama +1674,4.044642857142857,Witness (1985),Drama|Romance|Thriller +1676,3.0972222222222223,Starship Troopers (1997),Action|Sci-Fi +1678,3.738095238095238,"Joy Luck Club, The (1993)",Drama|Romance +1680,3.6923076923076925,Sliding Doors (1998),Drama|Romance +1681,1.8888888888888888,Mortal Kombat: Annihilation (1997),Action|Adventure|Fantasy +1682,3.886861313868613,"Truman Show, The (1998)",Comedy|Drama|Sci-Fi +1683,3.75,"Wings of the Dove, The (1997)",Drama|Romance +1684,3.4,Mrs. Dalloway (1997),Drama|Romance +1686,3.6,Red Corner (1997),Crime|Thriller +1687,2.9523809523809526,"Jackal, The (1997)",Action|Thriller +1688,3.6818181818181817,Anastasia (1997),Adventure|Animation|Children|Drama|Musical +1689,3.2916666666666665,"Man Who Knew Too Little, The (1997)",Comedy|Crime|Thriller +1690,3.033333333333333,Alien: Resurrection (1997),Action|Horror|Sci-Fi +1692,5.0,Alien Escape (1995),Horror|Sci-Fi +1693,3.66,Amistad (1997),Drama|Mystery +1694,3.8125,"Apostle, The (1997)",Drama +1696,2.0,Bent (1997),Drama|War +1699,3.6666666666666665,"Butcher Boy, The (1997)",Comedy|Drama +1701,3.5,Deconstructing Harry (1997),Comedy|Drama +1702,2.90625,Flubber (1997),Children|Comedy|Fantasy +1703,2.6,For Richer or Poorer (1997),Comedy +1704,4.140127388535032,Good Will Hunting (1997),Drama|Romance +1707,2.2222222222222223,Home Alone 3 (1997),Children|Comedy +1711,3.375,Midnight in the Garden of Good and Evil (1997),Crime|Drama|Mystery +1713,2.5,Mouse Hunt (1997),Children|Comedy +1715,3.0,Office Killer (1997),Thriller +1717,3.0,Scream 2 (1997),Comedy|Horror|Mystery|Thriller +1719,4.195652173913044,"Sweet Hereafter, The (1997)",Drama +1721,3.332317073170732,Titanic (1997),Drama|Romance +1722,3.2857142857142856,Tomorrow Never Dies (1997),Action|Adventure|Thriller +1726,1.9285714285714286,"Postman, The (1997)",Action|Adventure|Drama|Sci-Fi +1727,3.0,"Horse Whisperer, The (1998)",Drama|Romance +1728,4.0,"Winter Guest, The (1997)",Drama +1729,3.692982456140351,Jackie Brown (1997),Crime|Drama|Thriller +1730,3.9,Kundun (1997),Drama +1731,1.0,Mr. Magoo (1997),Comedy +1732,3.995833333333333,"Big Lebowski, The (1998)",Comedy|Crime +1733,2.0,Afterglow (1997),Drama|Romance +1734,3.8461538461538463,My Life in Pink (Ma vie en rose) (1997),Comedy|Drama +1735,2.933333333333333,Great Expectations (1998),Drama|Romance +1739,0.75,3 Ninjas: High Noon On Mega Mountain (1998),Action|Children|Comedy +1744,2.5,Firestorm (1998),Action|Adventure|Thriller +1746,2.5,Senseless (1998),Comedy +1747,3.457627118644068,Wag the Dog (1997),Comedy +1748,3.676470588235294,Dark City (1998),Adventure|Film-Noir|Sci-Fi|Thriller +1750,2.0,Star Kid (1997),Adventure|Children|Fantasy|Sci-Fi +1752,2.9285714285714284,Hard Rain (1998),Action|Crime|Thriller +1753,3.0,Half Baked (1998),Comedy +1754,3.8076923076923075,Fallen (1998),Crime|Drama|Fantasy|Thriller +1755,3.0,Shooting Fish (1997),Comedy|Romance +1756,3.5,"Prophecy II, The (1998)",Horror +1757,3.5,Fallen Angels (Duo luo tian shi) (1995),Drama|Romance +1759,4.5,"Four Days in September (O Que É Isso, Companheiro?) (1997)",Drama +1760,1.8076923076923077,Spice World (1997),Comedy +1762,3.125,Deep Rising (1998),Action|Horror|Sci-Fi +1767,3.0,Music From Another Room (1998),Drama|Romance +1769,2.611111111111111,"Replacement Killers, The (1998)",Action|Crime|Thriller +1771,5.0,Night Flier (1997),Horror +1772,3.1333333333333333,Blues Brothers 2000 (1998),Action|Comedy|Musical +1777,3.2357142857142858,"Wedding Singer, The (1998)",Comedy|Romance +1779,2.736842105263158,Sphere (1998),Sci-Fi|Thriller +1783,2.6666666666666665,Palmetto (1998),Crime|Drama|Mystery|Romance|Thriller +1784,3.7222222222222223,As Good as It Gets (1997),Comedy|Drama|Romance +1785,3.8,King of New York (1990),Crime|Thriller +1788,4.25,Men with Guns (1997),Action|Drama +1791,3.25,Twilight (1998),Crime|Drama|Thriller +1792,3.3636363636363638,U.S. Marshals (1998),Action|Crime|Thriller +1794,3.75,Love and Death on Long Island (1997),Comedy|Drama +1795,4.0,"Callejón de los milagros, El (1995)",Drama +1796,2.0,In God's Hands (1998),Action|Drama +1797,3.8333333333333335,Everest (1998),Documentary|IMAX +1798,2.3333333333333335,Hush (1998),Thriller +1799,3.5555555555555554,Suicide Kings (1997),Comedy|Crime|Drama|Mystery|Thriller +1801,2.8181818181818183,"Man in the Iron Mask, The (1998)",Action|Adventure|Drama +1804,3.0,"Newton Boys, The (1998)",Crime|Drama +1805,3.230769230769231,Wild Things (1998),Crime|Drama|Mystery|Thriller +1806,1.5,Paulie (1998),Adventure|Children|Comedy +1807,2.25,"Cool, Dry Place, A (1998)",Drama +1809,4.0,Fireworks (Hana-bi) (1997),Crime|Drama +1810,3.533333333333333,Primary Colors (1998),Comedy|Drama +1812,3.0,Wide Awake (1998),Children|Comedy|Drama +1816,2.5,Two Girls and a Guy (1997),Comedy|Drama +1819,5.0,Storefront Hitchcock (1997),Documentary|Musical +1821,3.111111111111111,"Object of My Affection, The (1998)",Comedy|Romance +1822,3.0,Meet the Deedles (1998),Children|Comedy +1824,3.0,Homegrown (1998),Comedy|Thriller +1826,0.75,Barney's Great Adventure (1998),Adventure|Children +1827,4.0,"Big One, The (1997)",Comedy|Documentary +1831,2.1346153846153846,Lost in Space (1998),Action|Adventure|Sci-Fi +1833,2.727272727272727,Mercury Rising (1998),Action|Drama|Thriller +1834,3.9130434782608696,"Spanish Prisoner, The (1997)",Crime|Drama|Mystery|Thriller +1835,3.391304347826087,City of Angels (1998),Drama|Fantasy|Romance +1836,2.888888888888889,"Last Days of Disco, The (1998)",Comedy|Drama +1837,2.0,"Odd Couple II, The (1998)",Comedy +1839,2.25,My Giant (1998),Comedy +1840,2.875,He Got Game (1998),Drama +1841,3.25,"Gingerbread Man, The (1998)",Drama|Thriller +1844,4.0,Live Flesh (Carne trémula) (1997),Drama|Romance +1845,4.125,Zero Effect (1998),Comedy|Mystery|Thriller +1846,4.5,Nil By Mouth (1997),Drama +1848,2.7,"Borrowers, The (1997)",Adventure|Children|Comedy|Fantasy +1852,3.0,Love Walked In (1998),Drama|Thriller +1854,4.0,Kissing a Fool (1998),Comedy|Romance +1855,2.4,Krippendorf's Tribe (1998),Comedy +1856,3.3125,Kurt & Courtney (1998),Documentary +1858,3.4166666666666665,Mr. Nice Guy (Yat goh ho yan) (1997),Action|Comedy +1859,5.0,Taste of Cherry (Ta'm e guilass) (1997),Drama +1860,4.666666666666667,Character (Karakter) (1997),Drama +1861,2.0,Junk Mail (Budbringeren) (1997),Comedy|Thriller +1862,2.3125,Species II (1998),Horror|Sci-Fi +1863,2.2142857142857144,Major League: Back to the Minors (1998),Comedy +1864,3.0,Sour Grapes (1998),Comedy +1865,3.1666666666666665,Wild Man Blues (1997),Documentary +1866,3.6,"Big Hit, The (1998)",Action|Comedy|Crime +1870,4.0,"Dancer, Texas Pop. 81 (1998)",Comedy|Drama +1873,3.6538461538461537,"Misérables, Les (1998)",Crime|Drama|Romance|War +1874,3.0,Still Breathing (1997),Comedy|Romance +1875,3.0,Clockwatchers (1997),Comedy +1876,3.1458333333333335,Deep Impact (1998),Drama|Sci-Fi|Thriller +1878,3.0,Woo (1998),Comedy|Romance +1880,4.0,Lawn Dogs (1997),Drama +1881,4.0,Quest for Camelot (1998),Adventure|Animation|Children|Fantasy|Musical +1882,2.1785714285714284,Godzilla (1998),Action|Sci-Fi|Thriller +1883,3.2903225806451615,Bulworth (1998),Comedy|Drama|Romance +1884,3.625,Fear and Loathing in Las Vegas (1998),Adventure|Comedy|Drama +1885,3.6666666666666665,"Opposite of Sex, The (1998)",Comedy|Drama|Romance +1886,1.5,I Got the Hook Up (1998),Comedy +1887,2.6666666666666665,Almost Heroes (1998),Adventure|Comedy|Western +1888,2.933333333333333,Hope Floats (1998),Comedy|Drama|Romance +1889,3.0,Insomnia (1997),Drama|Mystery|Thriller +1891,2.0,"Ugly, The (1997)",Horror|Thriller +1892,3.260869565217391,"Perfect Murder, A (1998)",Thriller +1894,2.9130434782608696,Six Days Seven Nights (1998),Adventure|Comedy|Romance +1895,3.0714285714285716,Can't Hardly Wait (1998),Comedy|Drama|Romance +1896,3.0,Cousin Bette (1998),Comedy +1897,3.2142857142857144,High Art (1998),Drama|Romance +1900,3.7,"Children of Heaven, The (Bacheha-Ye Aseman) (1997)",Comedy|Drama +1901,3.0,Dear Jesse (1997),Documentary +1902,1.0,Dream for an Insomniac (1996),Drama|Romance +1903,4.5,Hav Plenty (1997),Comedy +1904,3.875,Henry Fool (1997),Comedy|Drama +1907,3.607142857142857,Mulan (1998),Adventure|Animation|Children|Comedy|Drama|Musical|Romance +1909,3.223404255319149,"X-Files: Fight the Future, The (1998)",Action|Crime|Mystery|Sci-Fi|Thriller +1910,4.0,I Went Down (1997),Comedy|Crime|Drama +1911,2.759259259259259,Dr. Dolittle (1998),Comedy +1912,3.7586206896551726,Out of Sight (1998),Comedy|Crime|Drama|Romance|Thriller +1913,3.7857142857142856,Picnic at Hanging Rock (1975),Drama|Mystery +1914,3.6538461538461537,Smoke Signals (1998),Comedy|Drama +1916,3.6785714285714284,Buffalo '66 (a.k.a. Buffalo 66) (1998),Drama|Romance +1917,3.0442477876106193,Armageddon (1998),Action|Romance|Sci-Fi|Thriller +1918,3.0595238095238093,Lethal Weapon 4 (1998),Action|Comedy|Crime|Thriller +1919,4.0,Madeline (1998),Children|Comedy +1920,2.764705882352941,Small Soldiers (1998),Animation|Children|Fantasy|War +1921,3.7375,Pi (1998),Drama|Sci-Fi|Thriller +1922,3.6666666666666665,Whatever (1998),Drama +1923,3.5528455284552845,There's Something About Mary (1998),Comedy|Romance +1924,3.5555555555555554,Plan 9 from Outer Space (1959),Horror|Sci-Fi +1925,4.25,Wings (1927),Action|Drama|Romance|War +1926,2.0,"Broadway Melody, The (1929)",Musical +1927,4.285714285714286,All Quiet on the Western Front (1930),Action|Drama|War +1928,3.0,Cimarron (1931),Drama|Western +1929,2.857142857142857,Grand Hotel (1932),Drama|Romance +1931,4.25,Mutiny on the Bounty (1935),Adventure|Drama +1932,2.75,"Great Ziegfeld, The (1936)",Drama|Musical +1933,5.0,"Life of Emile Zola, The (1937)",Drama +1934,4.166666666666667,You Can't Take It with You (1938),Comedy|Romance +1935,3.875,How Green Was My Valley (1941),Drama|Musical|Romance +1936,4.0,Mrs. Miniver (1942),Drama|War +1937,3.5,Going My Way (1944),Comedy|Drama|Musical +1938,4.0,"Lost Weekend, The (1945)",Drama +1939,4.636363636363637,"Best Years of Our Lives, The (1946)",Drama|War +1940,4.071428571428571,Gentleman's Agreement (1947),Drama +1941,4.416666666666667,Hamlet (1948),Drama +1942,4.333333333333333,All the King's Men (1949),Drama +1943,3.3333333333333335,"Greatest Show on Earth, The (1952)",Drama +1944,3.925,From Here to Eternity (1953),Drama|Romance|War +1945,4.448275862068965,On the Waterfront (1954),Crime|Drama +1946,4.208333333333333,Marty (1955),Drama|Romance +1947,3.988888888888889,West Side Story (1961),Drama|Musical|Romance +1948,4.458333333333333,Tom Jones (1963),Adventure|Comedy|Romance +1949,3.6,"Man for All Seasons, A (1966)",Drama +1950,3.909090909090909,In the Heat of the Night (1967),Drama|Mystery +1951,3.5714285714285716,Oliver! (1968),Drama|Musical +1952,4.064102564102564,Midnight Cowboy (1969),Drama +1953,4.021739130434782,"French Connection, The (1971)",Action|Crime|Thriller +1954,3.789855072463768,Rocky (1976),Drama +1955,3.838709677419355,Kramer vs. Kramer (1979),Drama +1956,3.8870967741935485,Ordinary People (1980),Drama +1957,3.9404761904761907,Chariots of Fire (1981),Drama +1958,3.8676470588235294,Terms of Endearment (1983),Comedy|Drama +1959,3.8,Out of Africa (1985),Drama|Romance +1960,4.032258064516129,"Last Emperor, The (1987)",Drama +1961,3.966386554621849,Rain Man (1988),Drama +1962,3.625,Driving Miss Daisy (1989),Drama +1963,4.15,Take the Money and Run (1969),Comedy|Crime +1964,3.9,Klute (1971),Drama|Mystery +1965,3.6875,Repo Man (1984),Comedy|Sci-Fi +1966,3.5833333333333335,Metropolitan (1990),Comedy +1967,3.625,Labyrinth (1986),Adventure|Fantasy|Musical +1968,3.982905982905983,"Breakfast Club, The (1985)",Comedy|Drama +1969,2.6875,"Nightmare on Elm Street 2: Freddy's Revenge, A (1985)",Horror +1970,2.6,"Nightmare on Elm Street 3: Dream Warriors, A (1987)",Horror|Thriller +1971,2.6666666666666665,"Nightmare on Elm Street 4: The Dream Master, A (1988)",Horror|Thriller +1972,2.6,"Nightmare on Elm Street 5: The Dream Child, A (1989)",Horror +1973,2.3333333333333335,"Freddy's Dead: The Final Nightmare (Nightmare on Elm Street Part 6: Freddy's Dead, A) (1991)",Horror +1974,3.088235294117647,Friday the 13th (1980),Horror|Mystery|Thriller +1975,1.9444444444444444,Friday the 13th Part 2 (1981),Horror +1976,2.1666666666666665,Friday the 13th Part 3: 3D (1982),Horror +1977,1.6666666666666667,Friday the 13th Part IV: The Final Chapter (1984),Horror +1978,2.5,Friday the 13th Part V: A New Beginning (1985),Horror +1979,2.25,Friday the 13th Part VI: Jason Lives (1986),Horror +1980,3.0,Friday the 13th Part VII: The New Blood (1988),Horror +1981,2.3333333333333335,Friday the 13th Part VIII: Jason Takes Manhattan (1989),Horror +1982,3.5384615384615383,Halloween (1978),Horror +1983,3.1875,Halloween II (1981),Horror +1984,1.875,Halloween III: Season of the Witch (1982),Horror +1985,2.2,Halloween 4: The Return of Michael Myers (1988),Horror +1986,3.5,Halloween 5: The Revenge of Michael Myers (1989),Horror +1987,2.5,Prom Night (1980),Horror +1988,3.0,Prom Night II (1987),Horror|Thriller +1989,2.0,Prom Night III: The Last Kiss (1989),Horror +1990,3.0,Prom Night IV: Deliver Us From Evil (1992),Horror +1991,2.95,Child's Play (1988),Horror|Thriller +1992,2.0,Child's Play 2 (1990),Horror|Thriller +1993,2.0,Child's Play 3 (1991),Comedy|Horror|Thriller +1994,3.723684210526316,Poltergeist (1982),Horror|Thriller +1995,2.375,Poltergeist II: The Other Side (1986),Horror|Thriller +1996,1.75,Poltergeist III (1988),Horror|Thriller +1997,3.7265625,"Exorcist, The (1973)",Horror|Mystery +1998,3.5,Exorcist II: The Heretic (1977),Horror +1999,2.6666666666666665,"Exorcist III, The (1990)",Horror +2000,3.588888888888889,Lethal Weapon (1987),Action|Comedy|Crime|Drama +2001,3.210526315789474,Lethal Weapon 2 (1989),Action|Comedy|Crime|Drama +2002,2.9743589743589745,Lethal Weapon 3 (1992),Action|Comedy|Crime|Drama +2003,3.1702127659574466,Gremlins (1984),Comedy|Horror +2004,2.5714285714285716,Gremlins 2: The New Batch (1990),Comedy|Horror +2005,3.676470588235294,"Goonies, The (1985)",Action|Adventure|Children|Comedy|Fantasy +2006,3.4272727272727272,"Mask of Zorro, The (1998)",Action|Comedy|Romance +2007,2.0,Polish Wedding (1998),Comedy +2008,1.0,"This World, Then the Fireworks (1997)",Crime|Drama|Film-Noir +2009,3.4705882352941178,Soylent Green (1973),Drama|Mystery|Sci-Fi|Thriller +2010,3.980769230769231,Metropolis (1927),Drama|Sci-Fi +2011,3.4797979797979797,Back to the Future Part II (1989),Adventure|Comedy|Sci-Fi +2012,3.265957446808511,Back to the Future Part III (1990),Adventure|Comedy|Sci-Fi|Western +2013,3.1785714285714284,"Poseidon Adventure, The (1972)",Action|Adventure|Drama +2014,3.1666666666666665,Freaky Friday (1977),Children|Comedy|Fantasy +2015,3.263157894736842,"Absent-Minded Professor, The (1961)",Children|Comedy|Fantasy +2016,2.5,"Apple Dumpling Gang Rides Again, The (1979)",Children|Comedy|Western +2017,3.142857142857143,Babes in Toyland (1961),Children|Fantasy|Musical +2018,3.4558823529411766,Bambi (1942),Animation|Children|Drama +2019,4.277777777777778,Seven Samurai (Shichinin no samurai) (1954),Action|Adventure|Drama +2020,3.926470588235294,Dangerous Liaisons (1988),Drama|Romance +2021,3.0833333333333335,Dune (1984),Adventure|Sci-Fi +2022,3.423076923076923,"Last Temptation of Christ, The (1988)",Drama +2023,3.4,"Godfather: Part III, The (1990)",Crime|Drama|Mystery|Thriller +2024,3.3333333333333335,"Rapture, The (1991)",Drama|Mystery +2025,2.8846153846153846,Lolita (1997),Drama|Romance +2026,3.2,Disturbing Behavior (1998),Horror|Thriller +2027,2.1875,Jane Austen's Mafia! (1998),Comedy|Crime +2028,3.945026178010471,Saving Private Ryan (1998),Action|Drama|War +2029,4.2,Billy's Hollywood Screen Kiss (1997),Comedy|Romance +2031,3.25,"Million Dollar Duck, The (a.k.a. $1,000,000 Duck) (1971)",Children|Comedy +2032,3.0,"Barefoot Executive, The (1971)",Children|Comedy +2033,3.0416666666666665,"Black Cauldron, The (1985)",Adventure|Animation|Children|Fantasy +2034,3.2222222222222223,"Black Hole, The (1979)",Children|Sci-Fi +2035,3.0,Blackbeard's Ghost (1968),Children|Comedy +2036,2.5,Blank Check (1994),Children|Comedy +2037,3.6666666666666665,Candleshoe (1977),Adventure|Children|Comedy +2038,3.5625,"Cat from Outer Space, The (1978)",Children|Comedy|Sci-Fi +2039,3.5,Cheetah (1989),Adventure|Children +2040,3.3333333333333335,"Computer Wore Tennis Shoes, The (1969)",Children|Comedy +2041,3.3333333333333335,Condorman (1981),Action|Adventure|Children|Comedy +2042,2.75,D2: The Mighty Ducks (1994),Children|Comedy +2043,3.5625,Darby O'Gill and the Little People (1959),Adventure|Children|Fantasy +2044,2.25,"Devil and Max Devlin, The (1981)",Comedy|Fantasy +2045,3.4,"Far Off Place, A (1993)",Adventure|Children|Drama|Romance +2046,3.823529411764706,Flight of the Navigator (1986),Adventure|Children|Sci-Fi +2047,4.0,"Gnome-Mobile, The (1967)",Adventure|Children|Fantasy|Musical +2048,3.875,"Great Mouse Detective, The (1986)",Action|Animation|Children|Crime +2049,2.5,"Happiest Millionaire, The (1967)",Comedy|Musical +2050,2.8333333333333335,Herbie Goes Bananas (1980),Adventure|Children|Comedy +2051,3.75,Herbie Goes to Monte Carlo (1977),Adventure|Children|Comedy +2052,3.2857142857142856,Hocus Pocus (1993),Children|Comedy|Fantasy|Horror +2053,2.3529411764705883,"Honey, I Blew Up the Kid (1992)",Children|Comedy|Sci-Fi +2054,2.7434210526315788,"Honey, I Shrunk the Kids (1989)",Adventure|Children|Comedy|Fantasy|Sci-Fi +2055,4.0,Hot Lead and Cold Feet (1978),Action|Comedy|Western +2056,3.5,In Search of the Castaways (1962),Adventure|Children +2057,3.75,"Incredible Journey, The (1963)",Adventure|Children +2058,3.621212121212121,"Negotiator, The (1998)",Action|Crime|Drama|Mystery|Thriller +2059,3.2222222222222223,"Parent Trap, The (1998)",Children|Comedy|Romance +2060,3.0416666666666665,BASEketball (1998),Comedy +2062,2.0,"Governess, The (1998)",Drama|Romance +2063,1.0,"Seventh Heaven (Septième ciel, Le) (1997)",Drama|Romance +2064,4.392857142857143,Roger & Me (1989),Documentary +2065,3.619047619047619,"Purple Rose of Cairo, The (1985)",Comedy|Drama|Fantasy|Romance +2066,4.071428571428571,Out of the Past (1947),Film-Noir +2067,3.659090909090909,Doctor Zhivago (1965),Drama|Romance|War +2068,4.2,Fanny and Alexander (Fanny och Alexander) (1982),Drama|Fantasy|Mystery +2069,3.7777777777777777,"Trip to Bountiful, The (1985)",Drama +2070,4.038461538461538,Tender Mercies (1983),Drama|Romance|Western +2071,3.75,And the Band Played On (1993),Drama +2072,3.0526315789473686,"'burbs, The (1989)",Comedy +2073,4.0,Fandango (1985),Comedy +2074,4.0,"Night Porter, The (Portiere di notte, Il) (1974)",Crime|Drama|Romance +2075,3.8333333333333335,Mephisto (1981),Drama|War +2076,4.036585365853658,Blue Velvet (1986),Drama|Mystery|Thriller +2077,3.3333333333333335,"Journey of Natty Gann, The (1985)",Adventure|Children +2078,3.739130434782609,"Jungle Book, The (1967)",Animation|Children|Comedy|Musical +2079,3.5,Kidnapped (1960),Adventure|Children|Drama +2080,3.6862745098039214,Lady and the Tramp (1955),Animation|Children|Comedy|Romance +2081,3.6794871794871793,"Little Mermaid, The (1989)",Animation|Children|Comedy|Musical|Romance +2082,2.727272727272727,"Mighty Ducks, The (1992)",Children|Comedy +2083,3.642857142857143,"Muppet Christmas Carol, The (1992)",Children|Comedy|Musical +2084,2.9375,Newsies (1992),Children|Musical +2085,3.3780487804878048,101 Dalmatians (One Hundred and One Dalmatians) (1961),Adventure|Animation|Children +2086,5.0,One Magic Christmas (1985),Drama|Fantasy +2087,3.6315789473684212,Peter Pan (1953),Animation|Children|Fantasy|Musical +2088,2.54,Popeye (1980),Adventure|Comedy|Musical +2089,3.5416666666666665,"Rescuers Down Under, The (1990)",Adventure|Animation|Children +2090,3.6785714285714284,"Rescuers, The (1977)",Adventure|Animation|Children|Crime|Drama +2091,4.0,Return from Witch Mountain (1978),Children|Sci-Fi +2093,3.5555555555555554,Return to Oz (1985),Adventure|Children|Fantasy +2094,3.265625,"Rocketeer, The (1991)",Action|Adventure|Sci-Fi +2095,2.25,"Shaggy D.A., The (1976)",Children|Comedy +2096,3.7,Sleeping Beauty (1959),Animation|Children|Musical +2097,3.75,Something Wicked This Way Comes (1983),Children|Drama|Fantasy|Mystery|Thriller +2098,2.0,Son of Flubber (1963),Children|Comedy +2099,3.7,Song of the South (1946),Adventure|Animation|Children|Musical +2100,3.1634615384615383,Splash (1984),Comedy|Fantasy|Romance +2101,2.5,Squanto: A Warrior's Tale (1994),Adventure|Drama +2102,4.285714285714286,Steamboat Willie (1928),Animation|Children|Comedy|Musical +2103,3.0,Tall Tale (1995),Adventure|Children|Fantasy|Western +2104,3.6666666666666665,Tex (1982),Drama +2105,3.478723404255319,Tron (1982),Action|Adventure|Sci-Fi +2106,3.65,Swing Kids (1993),Drama|War +2107,3.2,Halloween H20: 20 Years Later (Halloween 7: The Revenge of Laurie Strode) (1998),Horror|Thriller +2108,3.6923076923076925,L.A. Story (1991),Comedy|Romance +2109,3.696078431372549,"Jerk, The (1979)",Comedy +2110,3.3666666666666667,Dead Men Don't Wear Plaid (1982),Comedy|Crime|Thriller +2111,3.3076923076923075,"Man with Two Brains, The (1983)",Comedy +2112,3.2941176470588234,Grand Canyon (1991),Crime|Drama +2113,3.0,Graveyard Shift (Stephen King's Graveyard Shift) (1990),Horror|Thriller +2114,3.652173913043478,"Outsiders, The (1983)",Drama +2115,3.7653061224489797,Indiana Jones and the Temple of Doom (1984),Action|Adventure|Fantasy +2116,3.4210526315789473,"Lord of the Rings, The (1978)",Adventure|Animation|Children|Fantasy +2117,3.923076923076923,1984 (Nineteen Eighty-Four) (1984),Drama|Sci-Fi +2118,3.7,"Dead Zone, The (1983)",Thriller +2119,3.0,Maximum Overdrive (1986),Horror +2120,3.1666666666666665,Needful Things (1993),Drama|Horror +2121,2.7777777777777777,Cujo (1983),Horror|Thriller +2122,2.3181818181818183,Children of the Corn (1984),Horror|Thriller +2123,3.15,All Dogs Go to Heaven (1989),Animation|Children|Comedy|Drama|Fantasy +2124,3.2857142857142856,"Addams Family, The (1991)",Children|Comedy|Fantasy +2125,3.75,Ever After: A Cinderella Story (1998),Comedy|Drama|Romance +2126,2.8043478260869565,Snake Eyes (1998),Action|Crime|Mystery|Thriller +2128,3.0,Safe Men (1998),Comedy +2130,4.125,Atlantic City (1980),Crime|Drama|Romance +2131,4.5,Autumn Sonata (Höstsonaten) (1978),Drama +2132,4.195652173913044,Who's Afraid of Virginia Woolf? (1966),Drama +2133,3.1136363636363638,Adventures in Babysitting (1987),Adventure|Comedy +2134,3.138888888888889,Weird Science (1985),Comedy|Fantasy|Sci-Fi +2135,3.0,Doctor Dolittle (1967),Adventure|Children|Musical +2136,2.6944444444444446,"Nutty Professor, The (1963)",Comedy|Sci-Fi +2137,3.8,Charlotte's Web (1973),Animation|Children +2138,4.0,Watership Down (1978),Adventure|Animation|Children|Drama|Fantasy +2139,3.2222222222222223,"Secret of NIMH, The (1982)",Adventure|Animation|Children|Drama +2140,3.6785714285714284,"Dark Crystal, The (1982)",Adventure|Fantasy +2141,3.3653846153846154,"American Tail, An (1986)",Adventure|Animation|Children|Comedy +2142,3.25,"American Tail: Fievel Goes West, An (1991)",Adventure|Animation|Children|Musical|Western +2143,3.3666666666666667,Legend (1985),Adventure|Fantasy|Romance +2144,3.8260869565217392,Sixteen Candles (1984),Comedy|Romance +2145,3.380952380952381,Pretty in Pink (1986),Comedy|Drama|Romance +2146,3.1666666666666665,St. Elmo's Fire (1985),Drama|Romance +2147,1.8,"Clan of the Cave Bear, The (1986)",Adventure|Drama|Fantasy +2148,3.6666666666666665,House (1986),Comedy|Fantasy|Horror +2149,2.0,House II: The Second Story (1987),Comedy|Fantasy|Horror +2150,3.513888888888889,"Gods Must Be Crazy, The (1980)",Adventure|Comedy +2151,3.7,"Gods Must Be Crazy II, The (1989)",Comedy +2152,2.25,Air Bud: Golden Receiver (1998),Children|Comedy +2153,2.1538461538461537,"Avengers, The (1998)",Action|Adventure +2154,2.6666666666666665,How Stella Got Her Groove Back (1998),Drama|Romance +2155,3.3,"Slums of Beverly Hills, The (1998)",Comedy|Drama +2159,3.125,Henry: Portrait of a Serial Killer (1986),Crime|Horror|Thriller +2160,3.736111111111111,Rosemary's Baby (1968),Drama|Horror|Thriller +2161,3.3026315789473686,"NeverEnding Story, The (1984)",Adventure|Children|Fantasy +2162,2.6666666666666665,"NeverEnding Story II: The Next Chapter, The (1990)",Adventure|Children|Fantasy +2163,3.1666666666666665,Attack of the Killer Tomatoes! (1978),Comedy|Horror +2164,1.0,Surf Nazis Must Die (1987),Action|Comedy|Drama|Horror +2165,3.9285714285714284,Your Friends and Neighbors (1998),Comedy|Drama +2166,3.6875,Return to Paradise (1998),Crime|Drama|Romance|Thriller +2167,3.310344827586207,Blade (1998),Action|Horror|Thriller +2168,3.375,Dance with Me (1998),Drama|Romance +2169,2.75,Dead Man on Campus (1998),Comedy +2170,3.0,Wrongfully Accused (1998),Action|Comedy +2171,3.875,Next Stop Wonderland (1998),Comedy|Drama|Romance +2173,3.5,"Navigator: A Mediaeval Odyssey, The (1988)",Adventure|Fantasy|Sci-Fi +2174,3.4375,Beetlejuice (1988),Comedy|Fantasy +2176,3.8333333333333335,Rope (1948),Crime|Drama|Thriller +2177,4.25,Family Plot (1976),Comedy|Thriller +2178,3.5555555555555554,Frenzy (1972),Thriller +2180,3.5,Torn Curtain (1966),Thriller +2181,3.6,Marnie (1964),Drama|Mystery|Romance|Thriller +2182,4.0,"Wrong Man, The (1956)",Drama|Film-Noir|Thriller +2183,3.7222222222222223,"Man Who Knew Too Much, The (1956)",Adventure|Drama|Mystery|Thriller +2184,3.6875,"Trouble with Harry, The (1955)",Comedy|Mystery +2186,4.260869565217392,Strangers on a Train (1951),Crime|Drama|Film-Noir|Thriller +2187,4.0,Stage Fright (1950),Mystery|Romance|Thriller +2188,2.6333333333333333,54 (1998),Drama +2189,4.0,I Married A Strange Person! (1997),Animation|Comedy|Fantasy|Sci-Fi +2190,2.0,Why Do Fools Fall In Love? (1998),Drama +2191,0.5,"Merry War, A (1997)",Comedy +2193,3.2023809523809526,Willow (1988),Action|Adventure|Fantasy +2194,3.91025641025641,"Untouchables, The (1987)",Action|Crime|Drama +2195,2.7857142857142856,Dirty Work (1998),Comedy +2197,3.0,Firelight (1997),Drama +2200,4.0,Under Capricorn (1949),Drama +2201,4.5,"Paradine Case, The (1947)",Drama +2202,4.363636363636363,Lifeboat (1944),Drama|War +2203,4.4,Shadow of a Doubt (1943),Crime|Drama|Thriller +2204,4.166666666666667,Saboteur (1942),Mystery|Thriller +2205,3.5,Mr. & Mrs. Smith (1941),Comedy|Romance +2206,3.7,Suspicion (1941),Film-Noir|Mystery|Thriller +2207,4.0,Jamaica Inn (1939),Drama +2208,4.071428571428571,"Lady Vanishes, The (1938)",Drama|Mystery|Thriller +2210,4.0,Sabotage (1936),Thriller +2212,4.0,"Man Who Knew Too Much, The (1934)",Drama|Thriller +2214,3.5,Number Seventeen (a.k.a. Number 17) (1932),Thriller +2215,4.0,Rich and Strange (1931),Comedy|Romance +2219,4.0,Murder! (1930),Mystery|Thriller +2221,4.0,Blackmail (1929),Drama|Thriller +2227,4.0,"Lodger: A Story of the London Fog, The (1927)",Crime|Drama|Thriller +2231,3.8472222222222223,Rounders (1998),Drama +2232,4.119047619047619,Cube (1997),Horror|Mystery|Sci-Fi|Thriller +2236,2.5625,Simon Birch (1998),Drama +2237,2.0,Without Limits (1998),Drama +2238,3.3333333333333335,Seven Beauties (Pasqualino Settebellezze) (1976),Comedy|Drama +2239,3.0,Swept Away (Travolti da un insolito destino nell'azzurro mare d'Agosto) (1975),Comedy|Drama +2240,3.1538461538461537,My Bodyguard (1980),Drama +2241,2.8333333333333335,Class (1983),Comedy +2243,3.9444444444444446,Broadcast News (1987),Comedy|Drama|Romance +2244,3.0,"Allnighter, The (1987)",Comedy|Romance +2245,3.56,Working Girl (1988),Comedy|Drama|Romance +2246,2.0,Stars and Bars (1988),Action|Comedy|Romance +2247,3.40625,Married to the Mob (1988),Comedy +2248,3.9361702127659575,Say Anything... (1989),Comedy|Drama|Romance +2249,3.4615384615384617,My Blue Heaven (1990),Comedy +2250,3.2,Men Don't Leave (1990),Drama +2252,3.5384615384615383,Hero (1992),Comedy|Drama +2253,2.75,Toys (1992),Comedy|Fantasy +2254,3.0,Choices (1981),Drama +2255,2.4,Young Doctors in Love (1982),Comedy +2256,4.0,Parasite (1982),Horror|Sci-Fi +2257,3.5,No Small Affair (1984),Comedy|Romance +2259,2.5,Blame It on Rio (1984),Comedy|Romance +2260,2.0,Wisdom (1986),Crime|Drama +2261,3.75,One Crazy Summer (1986),Comedy +2262,2.7058823529411766,About Last Night... (1986),Comedy|Drama|Romance +2263,3.375,"Seventh Sign, The (1988)",Drama|Fantasy|Thriller +2264,3.0,We're No Angels (1989),Comedy|Crime +2265,2.0,Nothing But Trouble (1991),Adventure|Comedy +2266,2.6666666666666665,"Butcher's Wife, The (1991)",Comedy|Romance +2267,4.5,Mortal Thoughts (1991),Mystery|Thriller +2268,3.861842105263158,"Few Good Men, A (1992)",Crime|Drama|Thriller +2269,2.7,Indecent Proposal (1993),Drama|Romance +2271,3.625,Permanent Midnight (1998),Drama +2272,3.7,One True Thing (1998),Drama +2273,3.558139534883721,Rush Hour (1998),Action|Comedy|Crime|Thriller +2275,3.1666666666666665,Six-String Samurai (1998),Action|Adventure|Sci-Fi +2276,3.0,"Soldier's Daughter Never Cries, A (1998)",Drama +2278,3.5625,Ronin (1998),Action|Crime|Thriller +2279,3.409090909090909,Urban Legend (1998),Horror|Thriller +2280,3.5,Clay Pigeons (1998),Crime +2282,3.2857142857142856,Pecker (1998),Comedy|Drama +2283,4.0,"Sheltering Sky, The (1990)",Drama +2284,5.0,Bandit Queen (1994),Drama +2285,3.3333333333333335,If.... (1968),Drama +2286,1.6666666666666667,"Fiendish Plot of Dr. Fu Manchu, The (1980)",Comedy +2287,3.5,Them! (1954),Horror|Sci-Fi|Thriller +2288,3.9242424242424243,"Thing, The (1982)",Action|Horror|Sci-Fi|Thriller +2289,4.204545454545454,"Player, The (1992)",Comedy|Crime|Drama +2290,3.25,Stardust Memories (1980),Comedy|Drama +2291,3.848314606741573,Edward Scissorhands (1990),Drama|Fantasy|Romance +2292,4.0,Overnight Delivery (1998),Comedy|Romance +2294,3.2735849056603774,Antz (1998),Adventure|Animation|Children|Comedy|Fantasy +2295,4.0,"Impostors, The (1998)",Comedy +2296,2.5625,"Night at the Roxbury, A (1998)",Comedy +2297,3.0384615384615383,What Dreams May Come (1998),Adventure|Drama|Fantasy|Romance +2300,4.212121212121212,"Producers, The (1968)",Comedy +2301,3.6666666666666665,History of the World: Part I (1981),Comedy|Musical +2302,3.5526315789473686,My Cousin Vinny (1992),Comedy +2303,4.023809523809524,Nashville (1975),Drama|Musical +2304,4.25,Love Is the Devil (1998),Drama +2305,4.5,Slam (1998),Drama +2306,2.8,Holy Man (1998),Comedy +2307,4.0,One Tough Cop (1998),Action|Crime +2310,4.0,"Mighty, The (1998)",Drama +2311,3.3333333333333335,2010: The Year We Make Contact (1984),Sci-Fi +2312,3.7333333333333334,Children of a Lesser God (1986),Drama +2313,3.857142857142857,"Elephant Man, The (1980)",Drama +2314,3.5,Beloved (1998),Drama +2315,3.0,Bride of Chucky (Child's Play 4) (1998),Comedy|Horror|Thriller +2316,2.7857142857142856,Practical Magic (1998),Drama|Fantasy|Mystery|Romance +2318,4.326086956521739,Happiness (1998),Comedy|Drama +2320,2.75,Apt Pupil (1998),Drama|Thriller +2321,3.625,Pleasantville (1998),Comedy|Drama|Fantasy +2322,3.0,Soldier (1998),Action|Sci-Fi|War +2323,2.0,"Cruise, The (1998)",Documentary +2324,4.025252525252525,Life Is Beautiful (La Vita è bella) (1997),Comedy|Drama|Romance|War +2325,3.625,Orgazmo (1997),Comedy +2327,3.9,Tales from the Darkside: The Movie (1990),Fantasy|Horror|Thriller +2328,3.5,Vampires (1998),Horror|Western +2329,4.0233644859813085,American History X (1998),Crime|Drama +2330,4.666666666666667,Hands on a Hard Body (1996),Comedy|Documentary +2331,3.7777777777777777,Living Out Loud (1998),Comedy|Drama|Romance +2333,3.608695652173913,Gods and Monsters (1998),Drama +2334,3.34375,"Siege, The (1998)",Action|Thriller +2335,3.3076923076923075,"Waterboy, The (1998)",Comedy +2336,3.7291666666666665,Elizabeth (1998),Drama +2337,3.5833333333333335,Velvet Goldmine (1998),Drama +2338,2.5,I Still Know What You Did Last Summer (1998),Horror|Mystery|Thriller +2339,3.0,I'll Be Home For Christmas (1998),Comedy|Romance +2340,2.9347826086956523,Meet Joe Black (1998),Romance +2342,3.0,Hard Core Logo (1996),Comedy|Drama +2344,4.333333333333333,Runaway Train (1985),Action|Adventure|Drama|Thriller +2345,3.75,Desert Bloom (1986),Drama +2346,3.0714285714285716,"Stepford Wives, The (1975)",Mystery|Sci-Fi|Thriller +2347,3.3333333333333335,"Pope of Greenwich Village, The (1984)",Drama +2348,3.4545454545454546,Sid and Nancy (1986),Drama +2349,3.772727272727273,Mona Lisa (1986),Comedy|Thriller +2350,3.0,Heart Condition (1990),Comedy +2351,3.857142857142857,"Nights of Cabiria (Notti di Cabiria, Le) (1957)",Drama +2352,3.7777777777777777,"Big Chill, The (1983)",Comedy|Drama +2353,3.4776119402985075,Enemy of the State (1998),Action|Thriller +2354,2.5,"Rugrats Movie, The (1998)",Animation|Children|Comedy +2355,3.6095238095238096,"Bug's Life, A (1998)",Adventure|Animation|Children|Comedy +2356,3.15,Celebrity (1998),Comedy +2357,4.318181818181818,Central Station (Central do Brasil) (1998),Drama +2359,4.133333333333334,Waking Ned Devine (a.k.a. Waking Ned) (1998),Comedy +2360,3.3636363636363638,"Celebration, The (Festen) (1998)",Drama +2361,3.8125,Pink Flamingos (1972),Comedy +2362,2.75,Glen or Glenda (1953),Drama +2363,3.8636363636363638,Godzilla (Gojira) (1954),Drama|Horror|Sci-Fi +2364,2.75,"Godzilla 1985: The Legend Is Reborn (Gojira) (Godzilla) (Return of Godzilla, The) (1984)",Action|Horror|Sci-Fi|Thriller +2365,2.8,King Kong vs. Godzilla (Kingukongu tai Gojira) (1962),Action|Sci-Fi +2366,3.9347826086956523,King Kong (1933),Action|Adventure|Fantasy|Horror +2367,2.727272727272727,King Kong (1976),Adventure|Fantasy|Romance|Sci-Fi|Thriller +2368,2.6666666666666665,King Kong Lives (1986),Adventure|Sci-Fi +2369,2.9714285714285715,Desperately Seeking Susan (1985),Comedy|Drama|Romance +2370,3.3333333333333335,"Emerald Forest, The (1985)",Action|Adventure|Drama +2371,3.375,Fletch (1985),Comedy|Crime|Mystery +2372,2.5,Fletch Lives (1989),Comedy +2373,2.5833333333333335,Red Sonja (1985),Action|Adventure|Fantasy +2374,3.1875,Gung Ho (1986),Comedy|Drama +2375,2.7045454545454546,"Money Pit, The (1986)",Comedy +2376,3.1842105263157894,"View to a Kill, A (1985)",Action|Adventure|Thriller +2377,2.5,Lifeforce (1985),Horror|Sci-Fi +2378,2.6363636363636362,Police Academy (1984),Comedy|Crime +2379,2.4210526315789473,Police Academy 2: Their First Assignment (1985),Comedy|Crime +2380,1.8333333333333333,Police Academy 3: Back in Training (1986),Comedy|Crime +2381,1.9642857142857142,Police Academy 4: Citizens on Patrol (1987),Comedy|Crime +2382,1.8076923076923077,Police Academy 5: Assignment: Miami Beach (1988),Comedy|Crime +2383,1.7083333333333333,Police Academy 6: City Under Siege (1989),Comedy|Crime +2384,3.1166666666666667,Babe: Pig in the City (1998),Adventure|Children|Drama +2385,2.25,Home Fries (1998),Comedy|Romance +2386,3.0,Jerry Springer: Ringmaster (1998),Comedy|Drama +2387,3.0384615384615383,Very Bad Things (1998),Comedy|Crime +2388,4.0,Steam: The Turkish Bath (Hamam) (1997),Drama|Romance +2389,2.6923076923076925,Psycho (1998),Crime|Horror|Thriller +2390,3.409090909090909,Little Voice (1998),Comedy +2391,3.7580645161290325,"Simple Plan, A (1998)",Crime|Drama|Thriller +2392,1.85,Jack Frost (1998),Children|Comedy|Drama +2393,3.4705882352941178,Star Trek: Insurrection (1998),Action|Drama|Romance|Sci-Fi +2394,3.5142857142857142,"Prince of Egypt, The (1998)",Animation|Musical +2395,3.963235294117647,Rushmore (1998),Comedy|Drama +2396,3.9669421487603307,Shakespeare in Love (1998),Comedy|Drama|Romance +2397,3.5,Mass Appeal (1984),Drama +2398,3.659090909090909,Miracle on 34th Street (1947),Comedy|Drama +2399,2.25,Santa Claus: The Movie (1985),Adventure|Children|Fantasy +2400,2.0,Prancer (1989),Children|Drama|Fantasy +2401,3.642857142857143,Pale Rider (1985),Western +2402,2.5357142857142856,Rambo: First Blood Part II (1985),Action|Adventure|Thriller +2403,3.4722222222222223,First Blood (Rambo: First Blood) (1982),Action|Adventure|Drama|Thriller +2404,2.230769230769231,Rambo III (1988),Action|Adventure|Thriller|War +2405,3.3225806451612905,"Jewel of the Nile, The (1985)",Action|Adventure|Comedy|Romance +2406,3.5846153846153848,Romancing the Stone (1984),Action|Adventure|Comedy|Romance +2407,3.2093023255813953,Cocoon (1985),Comedy|Sci-Fi +2408,2.4375,Cocoon: The Return (1988),Comedy|Sci-Fi +2409,3.4705882352941178,Rocky II (1979),Action|Drama +2410,3.0714285714285716,Rocky III (1982),Action|Drama +2411,2.8333333333333335,Rocky IV (1985),Action|Drama +2412,2.6315789473684212,Rocky V (1990),Action|Drama +2413,3.1315789473684212,Clue (1985),Comedy|Crime|Mystery|Thriller +2414,3.3333333333333335,Young Sherlock Holmes (1985),Action|Adventure|Children|Fantasy|Mystery|Thriller +2415,4.0,Violets Are Blue... (1986),Drama|Romance +2416,2.7142857142857144,Back to School (1986),Comedy +2417,3.0,Heartburn (1986),Comedy|Drama +2418,3.5,Nothing in Common (1986),Comedy +2419,3.0,Extremities (1986),Drama|Thriller +2420,3.3684210526315788,"Karate Kid, The (1984)",Drama +2421,2.574074074074074,"Karate Kid, Part II, The (1986)",Action|Adventure|Drama +2422,2.236842105263158,"Karate Kid, Part III, The (1989)",Action|Adventure|Children|Drama +2423,3.74,Christmas Vacation (National Lampoon's Christmas Vacation) (1989),Comedy +2424,3.2416666666666667,You've Got Mail (1998),Comedy|Romance +2425,3.6,"General, The (1998)",Crime +2427,3.3472222222222223,"Thin Red Line, The (1998)",Action|Drama|War +2428,2.590909090909091,"Faculty, The (1998)",Horror|Sci-Fi +2429,3.0,Mighty Joe Young (1998),Action|Adventure|Drama|Fantasy|Thriller +2430,3.8,Mighty Joe Young (1949),Adventure|Children|Drama +2431,3.107142857142857,Patch Adams (1998),Comedy|Drama +2432,3.9,Stepmom (1998),Drama +2433,3.1578947368421053,"Civil Action, A (1998)",Drama +2434,3.75,Down in the Delta (1998),Drama +2435,3.0,Hurlyburly (1998),Drama +2436,3.5,Tea with Mussolini (1999),Comedy|Drama|War +2437,3.0,Wilde (1997),Drama +2438,4.0,Outside Ozona (1998),Comedy|Drama|Thriller +2439,3.4,Affliction (1997),Drama +2440,4.0,Another Day in Paradise (1998),Drama +2441,3.0,"Hi-Lo Country, The (1998)",Drama|Romance|Western +2442,4.0,Hilary and Jackie (1998),Drama +2443,4.0,Playing by Heart (1998),Drama|Romance +2445,2.625,At First Sight (1999),Drama +2446,1.4,In Dreams (1999),Horror|Thriller +2447,2.923076923076923,Varsity Blues (1999),Comedy|Drama +2448,2.0,Virus (1999),Horror|Sci-Fi +2449,2.0,"Garbage Pail Kids Movie, The (1987)",Adventure|Children|Comedy +2450,1.7916666666666667,Howard the Duck (1986),Adventure|Comedy|Sci-Fi +2451,3.8333333333333335,"Gate, The (1987)",Horror +2453,3.2857142857142856,"Boy Who Could Fly, The (1986)",Drama|Fantasy +2454,3.6785714285714284,"Fly, The (1958)",Horror|Mystery|Sci-Fi +2455,3.393617021276596,"Fly, The (1986)",Drama|Horror|Sci-Fi|Thriller +2456,2.2142857142857144,"Fly II, The (1989)",Horror|Sci-Fi +2457,3.2,Running Scared (1986),Action|Comedy +2458,3.0,Armed and Dangerous (1986),Comedy|Crime +2459,3.5,"Texas Chainsaw Massacre, The (1974)",Horror +2460,3.4,"Texas Chainsaw Massacre 2, The (1986)",Horror +2461,3.25,Leatherface: Texas Chainsaw Massacre III (1990),Comedy|Horror|Thriller +2462,2.125,Texas Chainsaw Massacre: The Next Generation (a.k.a. The Return of the Texas Chainsaw Massacre) (1994),Horror +2463,3.725,Ruthless People (1986),Comedy +2464,2.5,Trick or Treat (1986),Horror +2465,4.0,Deadly Friend (1986),Horror +2467,4.239130434782608,"Name of the Rose, The (Name der Rose, Der) (1986)",Crime|Drama|Mystery|Thriller +2468,2.966666666666667,Jumpin' Jack Flash (1986),Action|Comedy|Romance|Thriller +2469,3.3181818181818183,Peggy Sue Got Married (1986),Comedy|Drama +2470,3.2333333333333334,Crocodile Dundee (1986),Adventure|Comedy +2471,2.6136363636363638,Crocodile Dundee II (1988),Action|Adventure|Comedy +2472,3.25,Tough Guys (1986),Comedy +2473,2.0555555555555554,Soul Man (1986),Comedy +2474,3.823529411764706,"Color of Money, The (1986)",Drama +2475,3.5,52 Pick-Up (1986),Action|Mystery|Thriller +2476,2.6666666666666665,Heartbreak Ridge (1986),Action|War +2478,3.2580645161290325,¡Three Amigos! (1986),Comedy|Western +2479,2.0,Gloria (1999),Drama|Thriller +2481,3.75,My Name Is Joe (1998),Drama|Romance +2482,3.25,Still Crazy (1998),Comedy|Romance +2483,2.75,"Day of the Beast, The (Día de la Bestia, El) (1995)",Adventure|Comedy|Thriller +2485,3.189655172413793,She's All That (1999),Comedy|Romance +2486,3.0,"24 Hour Woman, The (1998)",Comedy|Drama +2487,3.0,"Blood, Guts, Bullets and Octane (1998)",Action|Comedy +2488,3.8,Peeping Tom (1960),Drama|Horror|Thriller +2490,3.5625,Payback (1999),Action|Thriller +2491,3.1,Simply Irresistible (1999),Comedy|Romance +2492,3.1,20 Dates (1998),Comedy|Romance +2493,3.5,"Harmonists, The (1997)",Drama +2494,4.0,"Last Days, The (1998)",Documentary +2495,3.875,"Fantastic Planet, The (Planète sauvage, La) (1973)",Animation|Sci-Fi +2496,3.3095238095238093,Blast from the Past (1999),Comedy|Romance +2497,1.8,Message in a Bottle (1999),Romance +2498,2.3333333333333335,My Favorite Martian (1999),Comedy|Sci-Fi +2499,3.5,God Said 'Ha!' (1998),Comedy +2500,2.1666666666666665,Jawbreaker (1999),Comedy +2501,4.1,October Sky (1999),Drama +2502,3.9150943396226414,Office Space (1999),Comedy|Crime +2504,3.5,200 Cigarettes (1999),Comedy|Drama +2505,2.3055555555555554,8MM (1999),Drama|Mystery|Thriller +2506,2.75,"Other Sister, The (1999)",Comedy|Drama|Romance +2507,1.0,Breakfast of Champions (1999),Comedy|Sci-Fi +2511,4.0,"Long Goodbye, The (1973)",Crime|Film-Noir +2513,3.0277777777777777,Pet Sematary (1989),Horror +2514,2.125,Pet Sematary II (1992),Comedy|Horror +2515,2.0,Children of the Corn II: The Final Sacrifice (1993),Horror +2516,0.75,Children of the Corn III (1994),Horror +2517,3.375,Christine (1983),Horror +2518,3.3333333333333335,Night Shift (1982),Comedy +2519,2.0,House on Haunted Hill (1959),Drama|Horror|Thriller +2520,3.3666666666666667,Airport (1970),Drama +2521,2.7777777777777777,Airport 1975 (1974),Action|Drama|Thriller +2522,2.409090909090909,Airport '77 (1977),Drama +2523,2.6666666666666665,Rollercoaster (1977),Drama|Thriller +2524,3.4,"Towering Inferno, The (1974)",Action|Adventure|Drama|Thriller +2525,2.7,Alligator (1980),Action|Horror|Sci-Fi +2526,3.0,Meteor (1979),Sci-Fi +2527,3.3846153846153846,Westworld (1973),Action|Sci-Fi|Thriller|Western +2528,3.3035714285714284,Logan's Run (1976),Action|Adventure|Sci-Fi +2529,3.6315789473684212,Planet of the Apes (1968),Action|Drama|Sci-Fi +2530,2.875,Beneath the Planet of the Apes (1970),Action|Sci-Fi +2531,2.6666666666666665,Battle for the Planet of the Apes (1973),Action|Sci-Fi +2532,3.142857142857143,Conquest of the Planet of the Apes (1972),Action|Sci-Fi +2533,2.730769230769231,Escape from the Planet of the Apes (1971),Action|Sci-Fi +2534,3.0,Avalanche (1978),Action +2535,2.6666666666666665,Earthquake (1974),Action|Drama|Thriller +2536,3.1666666666666665,"Concorde: Airport '79, The (1979)",Drama +2537,2.0,Beyond the Poseidon Adventure (1979),Adventure +2539,3.2450980392156863,Analyze This (1999),Comedy +2540,3.1,"Corruptor, The (1999)",Action|Crime|Drama|Thriller +2541,3.127450980392157,Cruel Intentions (1999),Drama +2542,4.128378378378378,"Lock, Stock & Two Smoking Barrels (1998)",Comedy|Crime|Thriller +2545,4.25,Relax... It's Just Sex (1998),Comedy +2546,2.375,"Deep End of the Ocean, The (1999)",Drama +2548,1.125,"Rage: Carrie 2, The (1999)",Horror +2549,2.0555555555555554,Wing Commander (1999),Action|Sci-Fi +2550,4.166666666666667,"Haunting, The (1963)",Horror|Thriller +2551,3.75,Dead Ringers (1988),Drama|Horror|Thriller +2552,2.5,My Boyfriend's Back (1993),Comedy +2553,4.4,Village of the Damned (1960),Horror|Sci-Fi|Thriller +2554,3.3333333333333335,Children of the Damned (1963),Horror|Sci-Fi|Thriller +2555,0.875,Baby Geniuses (1999),Comedy +2557,3.1666666666666665,I Stand Alone (Seul contre tous) (1998),Drama|Thriller +2558,2.7916666666666665,Forces of Nature (1999),Comedy|Romance +2559,2.5,"King and I, The (1999)",Animation|Children +2560,3.0,Ravenous (1999),Horror|Thriller +2561,3.625,True Crime (1999),Crime|Thriller +2562,5.0,Bandits (1997),Drama +2563,4.666666666666667,Dangerous Beauty (1998),Drama +2565,3.380952380952381,"King and I, The (1956)",Drama|Musical|Romance +2566,3.0,Doug's 1st Movie (1999),Animation|Children +2567,3.0,EDtv (1999),Comedy +2568,1.5833333333333333,"Mod Squad, The (1999)",Action|Crime +2569,4.0,Among Giants (1998),Comedy|Drama|Romance +2570,3.5,"Walk on the Moon, A (1999)",Drama|Romance +2571,4.183397683397684,"Matrix, The (1999)",Action|Sci-Fi|Thriller +2572,3.473684210526316,10 Things I Hate About You (1999),Comedy|Romance +2573,5.0,Tango (1998),Drama|Musical +2574,2.3181818181818183,"Out-of-Towners, The (1999)",Comedy +2575,3.7222222222222223,"Dreamlife of Angels, The (Vie rêvée des anges, La) (1998)",Drama +2577,3.0,Metroland (1997),Comedy|Drama +2579,3.5,Following (1998),Crime|Mystery|Thriller +2580,3.87,Go (1999),Comedy|Crime +2581,3.0428571428571427,Never Been Kissed (1999),Comedy|Romance +2582,3.125,Twin Dragons (Shuang long hui) (1992),Action|Comedy +2583,3.3333333333333335,Cookie's Fortune (1999),Comedy|Drama +2585,3.5,"Lovers of the Arctic Circle, The (Los Amantes del Círculo Polar) (1998)",Drama|Romance +2586,4.0,Goodbye Lover (1999),Comedy|Crime|Thriller +2587,2.6,Life (1999),Comedy|Crime|Drama +2589,3.0,Friends & Lovers (1999),Comedy|Drama|Romance +2590,3.5,Hideous Kinky (1998),Drama +2594,3.9444444444444446,Open Your Eyes (Abre los ojos) (1997),Drama|Romance|Sci-Fi|Thriller +2596,3.8,SLC Punk! (1998),Comedy|Drama +2597,2.0,Lost & Found (1999),Comedy|Romance +2598,2.875,Pushing Tin (1999),Comedy +2599,4.044303797468355,Election (1999),Comedy +2600,3.125,eXistenZ (1999),Action|Sci-Fi|Thriller +2605,3.1463414634146343,Entrapment (1999),Crime|Thriller +2606,2.9285714285714284,Idle Hands (1999),Comedy|Horror +2607,3.6666666666666665,Get Real (1998),Drama|Romance +2609,3.5,"King of Masks, The (Bian Lian) (1996)",Drama +2610,3.5,Three Seasons (1999),Drama +2611,3.75,"Winslow Boy, The (1999)",Drama +2612,3.7777777777777777,Mildred Pierce (1945),Drama|Film-Noir +2613,3.6,Night of the Comet (1984),Comedy|Horror|Sci-Fi +2615,3.3333333333333335,My Science Project (1985),Adventure|Sci-Fi +2616,2.6296296296296298,Dick Tracy (1990),Action|Crime +2617,3.2848101265822787,"Mummy, The (1999)",Action|Adventure|Comedy|Fantasy|Horror|Thriller +2618,3.5,"Castle, The (1997)",Comedy +2620,4.333333333333333,This Is My Father (1998),Drama|Romance +2621,3.375,Xiu Xiu: The Sent-Down Girl (Tian yu) (1998),Drama +2622,3.238095238095238,William Shakespeare's A Midsummer Night's Dream (1999),Comedy|Fantasy +2624,3.6666666666666665,After Life (Wandafuru raifu) (1998),Drama|Fantasy +2625,4.0,Black Mask (Hak hap) (1996),Action|Adventure|Crime|Sci-Fi|Thriller +2626,4.5,Edge of Seventeen (1998),Comedy|Drama|Romance +2627,5.0,Endurance (1999),Documentary|Drama +2628,3.199275362318841,Star Wars: Episode I - The Phantom Menace (1999),Action|Adventure|Sci-Fi +2629,3.5,"Love Letter, The (1999)",Comedy|Romance +2630,3.5,Besieged (a.k.a. L' Assedio) (1998),Drama +2631,3.0,Frogs for Snakes (1998),Comedy|Film-Noir|Thriller +2633,3.6666666666666665,"Mummy, The (1932)",Horror|Romance +2634,3.6666666666666665,"Mummy, The (1959)",Horror +2635,4.0,"Mummy's Curse, The (1944)",Horror +2636,5.0,"Mummy's Ghost, The (1944)",Horror +2637,4.0,"Mummy's Hand, The (1940)",Horror +2638,3.0,"Mummy's Tomb, The (1942)",Horror +2639,3.4,Mommie Dearest (1981),Drama +2640,3.433333333333333,Superman (1978),Action|Adventure|Sci-Fi +2641,3.1973684210526314,Superman II (1980),Action|Sci-Fi +2642,2.2708333333333335,Superman III (1983),Action|Adventure|Sci-Fi +2643,2.2083333333333335,Superman IV: The Quest for Peace (1987),Action|Adventure|Sci-Fi +2644,4.111111111111111,Dracula (1931),Horror +2647,5.0,House of Frankenstein (1944),Horror +2648,4.166666666666667,Frankenstein (1931),Drama|Horror|Sci-Fi +2649,5.0,Son of Frankenstein (1939),Horror +2650,5.0,"Ghost of Frankenstein, The (1942)",Horror +2651,4.5,Frankenstein Meets the Wolf Man (1943),Horror +2652,4.5,"Curse of Frankenstein, The (1957)",Horror +2653,2.0,Son of Dracula (1943),Horror +2654,4.25,"Wolf Man, The (1941)",Drama|Fantasy|Horror +2655,3.0,Howling II: Your Sister Is a Werewolf (1985),Horror +2656,3.5,Tarantula (1955),Horror|Sci-Fi +2657,3.1746031746031744,"Rocky Horror Picture Show, The (1975)",Comedy|Horror|Musical|Sci-Fi +2659,4.0,It Came from Hollywood (1982),Comedy|Documentary +2660,4.5,"Thing from Another World, The (1951)",Horror|Sci-Fi +2661,3.5,It Came from Outer Space (1953),Sci-Fi +2662,3.361111111111111,"War of the Worlds, The (1953)",Action|Drama|Sci-Fi +2664,3.973684210526316,Invasion of the Body Snatchers (1956),Horror|Sci-Fi|Thriller +2668,3.0,Swamp Thing (1982),Horror|Sci-Fi +2669,3.3333333333333335,Pork Chop Hill (1959),War +2670,4.333333333333333,Run Silent Run Deep (1958),War +2671,3.3828125,Notting Hill (1999),Comedy|Romance +2672,3.0833333333333335,"Thirteenth Floor, The (1999)",Drama|Sci-Fi|Thriller +2673,4.75,Eternity and a Day (Mia aoniotita kai mia mera) (1998),Drama +2674,3.0,"Loss of Sexual Innocence, The (1999)",Drama|Fantasy +2676,2.75,Instinct (1999),Drama|Thriller +2677,3.8461538461538463,Buena Vista Social Club (1999),Documentary|Musical +2678,1.6666666666666667,Desert Blue (1998),Drama +2681,3.0,Free Enterprise (1998),Comedy|Romance|Sci-Fi +2682,4.375,Limbo (1999),Drama +2683,3.2723214285714284,Austin Powers: The Spy Who Shagged Me (1999),Action|Adventure|Comedy +2686,3.8181818181818183,"Red Violin, The (Violon rouge, Le) (1998)",Drama|Mystery +2687,3.625,Tarzan (1999),Adventure|Animation|Children|Drama +2688,3.2419354838709675,"General's Daughter, The (1999)",Crime|Drama|Mystery|Thriller +2689,2.8333333333333335,Get Bruce (1999),Documentary +2690,4.25,"Ideal Husband, An (1999)",Comedy|Romance +2691,2.75,"Legend of 1900, The (a.k.a. The Legend of the Pianist on the Ocean) (Leggenda del pianista sull'oceano) (1998)",Drama +2692,4.2,Run Lola Run (Lola rennt) (1998),Action|Crime +2693,3.85,Trekkies (1997),Documentary +2694,3.3448275862068964,Big Daddy (1999),Comedy +2696,3.6,"Dinner Game, The (Dîner de cons, Le) (1998)",Comedy +2697,2.0,My Son the Fanatic (1997),Comedy|Drama|Romance +2699,2.911290322580645,Arachnophobia (1990),Comedy|Horror +2700,3.5,"South Park: Bigger, Longer and Uncut (1999)",Animation|Comedy|Musical +2701,2.0319148936170213,Wild Wild West (1999),Action|Comedy|Sci-Fi|Western +2702,2.880952380952381,Summer of Sam (1999),Drama +2704,3.6666666666666665,"Lovers on the Bridge, The (Amants du Pont-Neuf, Les) (1991)",Drama|Romance +2706,3.2972972972972974,American Pie (1999),Comedy|Romance +2707,3.513888888888889,Arlington Road (1999),Thriller +2708,4.0,"Autumn Tale, An (Conte d'automne) (1998)",Romance +2709,2.642857142857143,Muppets From Space (1999),Children|Comedy +2710,2.738372093023256,"Blair Witch Project, The (1999)",Drama|Horror|Thriller +2712,3.626984126984127,Eyes Wide Shut (1999),Drama|Mystery|Thriller +2713,2.238095238095238,Lake Placid (1999),Horror|Thriller +2714,2.3333333333333335,"Wood, The (1999)",Drama +2715,2.6666666666666665,"Velocity of Gary, The (1998)",Comedy|Romance +2716,3.761904761904762,Ghostbusters (a.k.a. Ghost Busters) (1984),Action|Comedy|Sci-Fi +2717,2.755813953488372,Ghostbusters II (1989),Comedy|Fantasy|Sci-Fi +2718,3.4615384615384617,Drop Dead Gorgeous (1999),Comedy +2719,2.1904761904761907,"Haunting, The (1999)",Horror|Thriller +2720,2.1,Inspector Gadget (1999),Action|Adventure|Children|Comedy +2721,4.416666666666667,Trick (1999),Comedy|Romance +2722,2.573529411764706,Deep Blue Sea (1999),Action|Horror|Sci-Fi|Thriller +2723,3.111111111111111,Mystery Men (1999),Action|Comedy|Fantasy +2724,2.811111111111111,Runaway Bride (1999),Comedy|Romance +2725,3.6,Twin Falls Idaho (1999),Drama +2726,4.090909090909091,"Killing, The (1956)",Crime|Film-Noir +2727,3.5,Killer's Kiss (1955),Crime|Film-Noir +2728,3.9210526315789473,Spartacus (1960),Action|Drama|Romance|War +2729,3.6875,Lolita (1962),Drama|Romance +2730,3.3333333333333335,Barry Lyndon (1975),Drama|Romance|War +2731,3.892857142857143,"400 Blows, The (Les quatre cents coups) (1959)",Crime|Drama +2732,3.85,Jules and Jim (Jules et Jim) (1961),Drama|Romance +2733,2.3333333333333335,Vibes (1988),Adventure|Comedy|Romance +2734,3.3333333333333335,"Mosquito Coast, The (1986)",Adventure|Drama|Thriller +2735,2.6666666666666665,"Golden Child, The (1986)",Action|Adventure|Comedy|Fantasy|Mystery +2736,3.75,Brighton Beach Memoirs (1986),Comedy +2738,2.6666666666666665,Crimes of the Heart (1986),Comedy|Drama +2739,3.935483870967742,"Color Purple, The (1985)",Drama +2741,2.6666666666666665,No Mercy (1986),Action|Crime|Thriller +2745,3.9,"Mission, The (1986)",Drama +2746,3.577777777777778,Little Shop of Horrors (1986),Comedy|Horror|Musical +2747,3.0357142857142856,"Little Shop of Horrors, The (1960)",Comedy|Horror +2748,2.7,Allan Quatermain and the Lost City of Gold (1987),Action|Adventure|Comedy +2749,4.0,"Morning After, The (1986)",Drama|Mystery +2750,3.75,Radio Days (1987),Comedy|Drama +2751,3.5,From the Hip (1987),Comedy|Drama +2752,4.0,Outrageous Fortune (1987),Comedy|Mystery +2753,2.6666666666666665,"Bedroom Window, The (1987)",Thriller +2754,3.0,Deadtime Stories (1987),Horror +2755,3.5,Light of Day (1987),Drama +2757,3.857142857142857,Frances (1982),Drama +2758,4.0,Plenty (1985),Drama +2759,3.0681818181818183,Dick (1999),Comedy +2761,3.7738095238095237,"Iron Giant, The (1999)",Adventure|Animation|Children|Drama|Sci-Fi +2762,4.018134715025907,"Sixth Sense, The (1999)",Drama|Horror|Mystery +2763,3.3974358974358974,"Thomas Crown Affair, The (1999)",Action|Mystery +2764,4.166666666666667,"Thomas Crown Affair, The (1968)",Crime|Drama|Romance|Thriller +2766,4.0,"Adventures of Sebastian Cole, The (1998)",Comedy|Drama +2767,1.5,Illuminata (1998),Comedy +2769,2.3333333333333335,"Yards, The (2000)",Crime|Drama +2770,3.0686274509803924,Bowfinger (1999),Comedy +2771,2.0,Brokedown Palace (1999),Drama +2772,3.0,Detroit Rock City (1999),Comedy +2774,4.333333333333333,Better Than Chocolate (1999),Comedy|Romance +2775,3.0,Head On (1998),Drama +2776,3.0,"Marcello Mastroianni: I Remember Yes, I Remember (Marcello Mastroianni: mi ricordo, sì, io mi ricordo) (1997)",Documentary +2779,3.642857142857143,Heaven Can Wait (1978),Comedy +2780,4.166666666666667,"Raven, The (1963)",Comedy|Horror +2781,3.0,"Tingler, The (1959)",Horror +2782,3.8333333333333335,Pit and the Pendulum (1961),Horror +2783,3.0,"Tomb of Ligeia, The (1965)",Horror +2784,4.0,"Masque of the Red Death, The (1964)",Horror +2786,2.5,Haunted Honeymoon (1986),Comedy +2787,3.25,Cat's Eye (1985),Horror +2788,4.090909090909091,Monty Python's And Now for Something Completely Different (1971),Comedy +2789,2.4,Damien: Omen II (1978),Horror +2790,2.4166666666666665,"Final Conflict, The (a.k.a. Omen III: The Final Conflict) (1981)",Horror|Thriller +2791,3.8207547169811322,Airplane! (1980),Comedy +2792,3.36,Airplane II: The Sequel (1982),Comedy +2793,2.5555555555555554,"American Werewolf in Paris, An (1997)",Comedy|Horror|Romance|Thriller +2794,2.875,European Vacation (aka National Lampoon's European Vacation) (1985),Adventure|Comedy|Romance +2795,3.683333333333333,National Lampoon's Vacation (1983),Comedy +2796,2.5555555555555554,Funny Farm (1988),Comedy +2797,3.8317757009345796,Big (1988),Comedy|Drama|Fantasy|Romance +2798,2.5,Problem Child (1990),Children|Comedy +2799,1.75,Problem Child 2 (1991),Comedy +2800,3.0,Little Nemo: Adventures in Slumberland (1992),Adventure|Animation|Children|Drama|Fantasy +2801,3.8,Oscar and Lucinda (a.k.a. Oscar & Lucinda) (1997),Drama|Romance +2802,3.3,Tequila Sunrise (1988),Action|Drama|Romance|Thriller +2803,3.3,"Pelican Brief, The (1993)",Crime|Drama|Mystery|Romance|Thriller +2804,4.046666666666667,"Christmas Story, A (1983)",Children|Comedy +2805,3.108695652173913,Mickey Blue Eyes (1999),Comedy|Romance +2806,2.4545454545454546,Teaching Mrs. Tingle (1999),Comedy|Thriller +2807,2.5,Universal Soldier: The Return (1999),Action|Sci-Fi +2808,2.5625,Universal Soldier (1992),Action|Sci-Fi +2809,1.5,Love Stinks (1999),Comedy +2810,3.75,Perfect Blue (1997),Animation|Horror|Mystery|Thriller +2812,3.0,In Too Deep (1999),Action|Thriller +2815,2.5,Iron Eagle (1986),Action|War +2816,1.75,Iron Eagle II (1988),Action|War +2817,1.6666666666666667,Aces: Iron Eagle III (1992),Action +2819,3.8,Three Days of the Condor (3 Days of the Condor) (1975),Drama|Mystery|Romance|Thriller +2820,4.5,Hamlet (1964),Drama +2822,2.9,Medicine Man (1992),Adventure|Romance +2824,3.0,On the Ropes (1999),Documentary|Drama +2826,2.9,"13th Warrior, The (1999)",Action|Adventure|Fantasy +2827,2.409090909090909,"Astronaut's Wife, The (1999)",Horror|Sci-Fi|Thriller +2828,2.5,Dudley Do-Right (1999),Children|Comedy +2829,3.0,"Muse, The (1999)",Comedy +2832,3.0,"Lost Son, The (1999)",Drama +2835,3.0,Chill Factor (1999),Action|Adventure|Comedy|Thriller +2836,3.1666666666666665,Outside Providence (1999),Comedy +2837,5.0,Bedrooms & Hallways (1998),Comedy|Romance +2839,4.0,West Beirut (West Beyrouth) (1998),Drama +2840,2.75,Stigmata (1999),Drama|Thriller +2841,3.7954545454545454,Stir of Echoes (1999),Horror|Mystery|Thriller +2843,4.666666666666667,"Black Cat, White Cat (Crna macka, beli macor) (1998)",Comedy|Romance +2844,3.3333333333333335,"Minus Man, The (1999)",Drama|Mystery +2845,0.5,Whiteboyz (1999),Comedy|Drama +2846,3.9444444444444446,"Adventures of Milo and Otis, The (Koneko monogatari) (1986)",Adventure|Children|Comedy|Drama +2847,3.6666666666666665,Only Angels Have Wings (1939),Adventure|Drama|Romance +2848,4.0,"Othello (Tragedy of Othello: The Moor of Venice, The) (1952)",Drama +2849,2.0,Queens Logic (1991),Comedy|Drama +2850,2.0,Public Access (1993),Drama|Thriller +2851,3.0,Saturn 3 (1980),Adventure|Sci-Fi|Thriller +2852,3.6666666666666665,"Soldier's Story, A (1984)",Drama +2853,3.5,"Alice, Sweet Alice (a.k.a. Communion) (a.k.a. Holy Terror) (1976)",Horror|Mystery +2855,4.0,Nightmares (1983),Horror +2856,3.4,I Saw What You Did (1965),Thriller +2857,3.7857142857142856,Yellow Submarine (1968),Adventure|Animation|Comedy|Fantasy|Musical +2858,4.236363636363636,American Beauty (1999),Drama|Romance +2859,4.0,Stop Making Sense (1984),Documentary|Musical +2860,3.3,Blue Streak (1999),Comedy +2861,3.066666666666667,For Love of the Game (1999),Comedy|Drama +2862,3.125,Caligula (1979),Drama +2863,3.8833333333333333,"Hard Day's Night, A (1964)",Adventure|Comedy|Musical +2864,2.75,Splendor (1999),Comedy +2866,3.75,"Buddy Holly Story, The (1978)",Drama +2867,3.25,Fright Night (1985),Comedy|Horror|Thriller +2868,3.0,Fright Night Part II (1988),Horror +2869,1.0,"Separation, The (Séparation, La) (1994)",Drama +2870,3.4375,Barefoot in the Park (1967),Comedy +2871,3.9375,Deliverance (1972),Adventure|Drama|Thriller +2872,3.8125,Excalibur (1981),Adventure|Fantasy +2874,4.5,"Pajama Game, The (1957)",Comedy|Musical|Romance +2875,3.4444444444444446,Sommersby (1993),Drama|Mystery|Romance +2876,2.6666666666666665,Thumbelina (1994),Animation|Children|Fantasy +2877,3.111111111111111,Tommy (1975),Musical +2878,2.0,Hell Night (1981),Horror +2879,3.7,Armour of God II: Operation Condor (Operation Condor) (Fei ying gai wak) (1991),Action|Adventure|Comedy +2880,5.0,Armour of God (Long xiong hu di) (1987),Action|Adventure|Comedy +2881,3.0930232558139537,Double Jeopardy (1999),Action|Crime|Drama|Thriller +2882,2.1666666666666665,Jakob the Liar (1999),Drama +2883,3.625,Mumford (1999),Comedy|Drama +2884,1.0,Dog Park (1998),Comedy|Romance +2885,3.5,Guinevere (1999),Drama|Romance +2886,2.25,"Adventures of Elmo in Grouchland, The (1999)",Children|Comedy +2887,2.5,Simon Sez (1999),Action|Comedy +2888,2.590909090909091,Drive Me Crazy (1999),Comedy|Romance +2889,3.7142857142857144,"Mystery, Alaska (1999)",Comedy|Drama +2890,3.739130434782609,Three Kings (1999),Action|Adventure|Comedy|Drama|War +2891,2.75,"Happy, Texas (1999)",Comedy +2892,2.6666666666666665,New Rose Hotel (1998),Action|Drama +2893,4.0,Plunkett & MaCleane (1999),Action|Adventure|Drama +2894,2.0,Romance (1999),Drama|Romance +2897,5.0,And the Ship Sails On (E la nave va) (1983),Comedy|War +2898,3.5,"Dark Half, The (1993)",Horror|Mystery +2899,3.6666666666666665,Gulliver's Travels (1939),Adventure|Animation|Children +2900,3.0,Monkey Shines (1988),Horror|Sci-Fi +2901,3.8333333333333335,Phantasm (1979),Horror|Sci-Fi +2902,2.375,Psycho II (1983),Horror|Mystery|Thriller +2903,1.8333333333333333,Psycho III (1986),Horror|Thriller +2904,3.0,Rain (1932),Drama +2905,3.642857142857143,Sanjuro (Tsubaki Sanjûrô) (1962),Action|Adventure|Drama +2906,2.6666666666666665,Random Hearts (1999),Drama|Romance +2907,3.0,Superstar (1999),Comedy +2908,3.897727272727273,Boys Don't Cry (1999),Drama +2912,3.764705882352941,"Limey, The (1999)",Crime|Drama|Thriller +2913,3.0,The Mating Habits of the Earthbound Human (1999),Comedy|Sci-Fi +2915,3.3452380952380953,Risky Business (1983),Comedy +2916,3.5625,Total Recall (1990),Action|Adventure|Sci-Fi|Thriller +2917,4.25,Body Heat (1981),Crime|Thriller +2918,4.007518796992481,Ferris Bueller's Day Off (1986),Comedy +2919,3.7941176470588234,"Year of Living Dangerously, The (1982)",Drama|Romance|War +2920,4.5,Children of Paradise (Les enfants du paradis) (1945),Drama|Romance +2921,3.5,High Plains Drifter (1973),Western +2922,3.8333333333333335,Hang 'Em High (1968),Crime|Drama|Western +2923,4.0,Handle with Care (a.k.a. Citizen's Band) (1977),Comedy +2924,4.583333333333333,Drunken Master (Jui kuen) (1978),Action|Comedy +2925,4.214285714285714,"Conformist, The (Conformista, Il) (1970)",Drama +2926,3.6666666666666665,Hairspray (1988),Comedy|Drama +2927,4.5,Brief Encounter (1946),Drama|Romance +2928,3.6666666666666665,"Razor's Edge, The (1984)",Drama +2929,3.892857142857143,Reds (1981),Drama|Romance +2930,4.0,Return with Honor (1998),Documentary +2932,4.0,Days of Heaven (1978),Drama +2935,4.2,"Lady Eve, The (1941)",Comedy|Romance +2936,4.25,Sullivan's Travels (1941),Adventure|Comedy|Romance +2937,4.0,"Palm Beach Story, The (1942)",Comedy +2938,4.666666666666667,Man Facing Southeast (1986),Drama|Sci-Fi +2939,3.0,Niagara (1953),Drama|Thriller +2940,3.6875,Gilda (1946),Drama|Film-Noir|Mystery|Romance +2941,3.25,South Pacific (1958),Musical|Romance|War +2942,3.216666666666667,Flashdance (1983),Drama|Romance +2943,2.6666666666666665,Indochine (1992),Drama|Romance +2944,3.6714285714285713,"Dirty Dozen, The (1967)",Action|Drama|War +2945,5.0,Mike's Murder (1984),Mystery +2946,3.5454545454545454,Help! (1965),Comedy|Musical +2947,3.7169811320754715,Goldfinger (1964),Action|Adventure|Thriller +2948,3.640625,From Russia with Love (1963),Action|Adventure|Thriller +2949,3.6451612903225805,Dr. No (1962),Action|Adventure|Thriller +2950,2.526315789473684,"Blue Lagoon, The (1980)",Adventure|Drama|Romance +2951,3.8947368421052633,"Fistful of Dollars, A (Per un pugno di dollari) (1964)",Action|Western +2952,3.5,Sydney (Hard Eight) (1996),Crime|Drama|Thriller +2953,2.467741935483871,Home Alone 2: Lost in New York (1992),Children|Comedy +2956,3.5,Someone to Watch Over Me (1987),Action|Crime|Thriller +2959,4.178217821782178,Fight Club (1999),Action|Crime|Drama|Thriller +2961,3.4545454545454546,"Story of Us, The (1999)",Comedy|Drama +2962,3.625,Fever Pitch (1997),Comedy|Romance +2964,3.125,Julien Donkey-Boy (1999),Drama +2966,3.5789473684210527,"Straight Story, The (1999)",Adventure|Drama +2967,3.4,"Bad Seed, The (1956)",Drama|Thriller +2968,3.5697674418604652,Time Bandits (1981),Adventure|Comedy|Fantasy|Sci-Fi +2969,3.6666666666666665,"Man and a Woman, A (Un homme et une femme) (1966)",Drama|Romance +2970,3.6666666666666665,Fitzcarraldo (1982),Adventure|Drama +2971,4.1,All That Jazz (1979),Drama|Fantasy|Musical +2972,2.5,Red Sorghum (Hong gao liang) (1987),Drama|War +2973,4.178571428571429,Crimes and Misdemeanors (1989),Comedy|Crime|Drama +2974,1.5,Bats (1999),Horror|Thriller +2975,4.0,"Best Man, The (1999)",Comedy|Drama +2976,3.5476190476190474,Bringing Out the Dead (1999),Drama +2977,3.0,Crazy in Alabama (1999),Comedy|Drama +2978,3.1875,Three to Tango (1999),Comedy|Romance +2979,2.0,Body Shots (1999),Drama +2981,5.0,"Brother, Can You Spare a Dime? (1975)",Documentary +2982,5.0,"Guardian, The (1990)",Horror|Thriller +2983,4.0,"Ipcress File, The (1965)",Thriller +2984,5.0,On Any Sunday (1971),Documentary +2985,3.5948275862068964,RoboCop (1987),Action|Crime|Drama|Sci-Fi|Thriller +2986,2.763157894736842,RoboCop 2 (1990),Action|Crime|Sci-Fi|Thriller +2987,3.6666666666666665,Who Framed Roger Rabbit? (1988),Adventure|Animation|Children|Comedy|Crime|Fantasy|Mystery +2988,4.0,Melvin and Howard (1980),Drama +2989,3.5277777777777777,For Your Eyes Only (1981),Action|Adventure|Thriller +2990,3.2941176470588234,Licence to Kill (1989),Action|Adventure|Thriller +2991,3.625,Live and Let Die (1973),Action|Adventure|Thriller +2992,4.0,Rawhead Rex (1986),Horror|Thriller +2993,3.5588235294117645,Thunderball (1965),Action|Adventure|Thriller +2995,1.96875,House on Haunted Hill (1999),Horror|Thriller +2996,3.0,Music of the Heart (1999),Drama +2997,3.9563492063492065,Being John Malkovich (1999),Comedy|Drama|Fantasy +2998,4.0,Dreaming of Joseph Lees (1999),Drama|Romance +3000,4.131578947368421,Princess Mononoke (Mononoke-hime) (1997),Action|Adventure|Animation|Drama|Fantasy +3001,2.0,"Suburbans, The (1999)",Drama +3002,3.75,My Best Fiend (Mein liebster Feind) (1999),Documentary +3003,1.0,Train of Life (Train de vie) (1998),Comedy|Drama|Romance|War +3004,2.6153846153846154,"Bachelor, The (1999)",Comedy|Romance +3005,2.8833333333333333,"Bone Collector, The (1999)",Thriller +3006,3.8666666666666667,"Insider, The (1999)",Drama|Thriller +3007,4.178571428571429,American Movie (1999),Documentary +3008,3.5,Last Night (1998),Drama|Sci-Fi +3010,4.5,Rosetta (1999),Drama +3011,3.7,"They Shoot Horses, Don't They? (1969)",Drama +3013,2.5,Bride of Re-Animator (1990),Comedy|Horror +3015,3.3333333333333335,Coma (1978),Thriller +3016,3.7333333333333334,Creepshow (1982),Horror +3017,3.1,Creepshow 2 (1987),Horror +3018,3.8214285714285716,Re-Animator (1985),Comedy|Horror|Sci-Fi +3019,3.8333333333333335,Drugstore Cowboy (1989),Crime|Drama +3020,3.6129032258064515,Falling Down (1993),Action|Drama +3021,5.0,"Funhouse, The (1981)",Horror +3022,4.25,"General, The (1926)",Comedy|War +3024,3.6666666666666665,Piranha (1978),Horror|Sci-Fi +3025,3.0,Rough Night in Jericho (1967),Western +3028,2.75,"Taming of the Shrew, The (1967)",Comedy +3029,3.5,Nighthawks (1981),Action|Drama +3030,4.166666666666667,Yojimbo (1961),Action|Adventure +3031,3.0,Repossessed (1990),Comedy +3032,3.5714285714285716,"Omega Man, The (1971)",Action|Drama|Sci-Fi|Thriller +3033,3.6206896551724137,Spaceballs (1987),Comedy|Sci-Fi +3034,3.7586206896551726,Robin Hood (1973),Adventure|Animation|Children|Comedy|Musical +3035,4.411764705882353,Mister Roberts (1955),Comedy|Drama|War +3036,4.0,"Quest for Fire (Guerre du feu, La) (1981)",Adventure|Drama +3037,4.166666666666667,Little Big Man (1970),Western +3038,5.0,"Face in the Crowd, A (1957)",Drama +3039,3.625,Trading Places (1983),Comedy +3040,3.4166666666666665,Meatballs (1979),Comedy +3041,3.0,Meatballs Part II (1984),Comedy +3042,2.3333333333333335,Meatballs III (1987),Comedy +3043,1.0,Meatballs 4 (1992),Comedy +3044,3.875,Dead Again (1991),Mystery|Romance|Thriller +3045,3.0,Peter's Friends (1992),Comedy|Drama +3046,2.6666666666666665,"Incredibly True Adventure of Two Girls in Love, The (1995)",Comedy|Romance +3047,1.0,Experience Preferred... But Not Essential (1982),Drama +3048,3.5,Under the Rainbow (1981),Comedy +3051,3.1818181818181817,Anywhere But Here (1999),Comedy|Drama +3052,3.3227848101265822,Dogma (1999),Adventure|Comedy|Fantasy +3053,2.8,"Messenger: The Story of Joan of Arc, The (1999)",Drama|War +3054,2.5714285714285716,Pokémon: The First Movie (1998),Adventure|Animation|Children|Fantasy|Sci-Fi +3055,3.5,Felicia's Journey (1999),Thriller +3057,3.5,Where's Marlowe? (1998),Comedy +3060,3.9285714285714284,"Commitments, The (1991)",Comedy|Drama|Musical +3061,3.590909090909091,Holiday Inn (1942),Comedy|Musical +3062,4.090909090909091,"Longest Day, The (1962)",Action|Drama|War +3063,3.4285714285714284,Poison Ivy (1992),Drama|Thriller +3064,2.6666666666666665,Poison Ivy: New Seduction (1997),Drama|Thriller +3066,3.35,Tora! Tora! Tora! (1970),Action|Drama|War +3067,4.0,Women on the Verge of a Nervous Breakdown (Mujeres al borde de un ataque de nervios) (1988),Comedy|Drama +3068,4.029411764705882,"Verdict, The (1982)",Drama|Mystery +3069,4.0,"Effect of Gamma Rays on Man-in-the-Moon Marigolds, The (1972)",Drama +3070,3.909090909090909,"Adventures of Buckaroo Banzai Across the 8th Dimension, The (1984)",Adventure|Comedy|Sci-Fi +3071,4.2272727272727275,Stand and Deliver (1988),Comedy|Drama +3072,3.6621621621621623,Moonstruck (1987),Comedy|Romance +3074,3.8333333333333335,Jeremiah Johnson (1972),Western +3075,3.5,Repulsion (1965),Drama|Horror +3076,2.75,Irma la Douce (1963),Comedy +3077,4.055555555555555,42 Up (1998),Documentary +3078,3.75,Liberty Heights (1999),Drama +3079,3.9285714285714284,Mansfield Park (1999),Comedy|Drama|Romance +3081,3.625,Sleepy Hollow (1999),Fantasy|Horror|Mystery|Romance +3082,3.138888888888889,"World Is Not Enough, The (1999)",Action|Adventure|Thriller +3083,4.2,All About My Mother (Todo sobre mi madre) (1999),Drama +3086,4.0,Babes in Toyland (1934),Children|Comedy|Fantasy|Musical +3087,3.316666666666667,Scrooged (1988),Comedy|Fantasy|Romance +3088,4.2631578947368425,Harvey (1950),Comedy|Fantasy +3089,4.043478260869565,Bicycle Thieves (a.k.a. The Bicycle Thief) (a.k.a. The Bicycle Thieves) (Ladri di biciclette) (1948),Drama +3090,3.1666666666666665,Matewan (1987),Drama +3091,4.1,Kagemusha (1980),Drama|War +3093,3.0714285714285716,McCabe & Mrs. Miller (1971),Drama|Western +3094,2.6666666666666665,Maurice (1987),Drama|Romance +3095,4.064516129032258,"Grapes of Wrath, The (1940)",Drama +3096,3.9,My Man Godfrey (1957),Comedy +3097,3.7083333333333335,"Shop Around the Corner, The (1940)",Comedy|Drama|Romance +3098,3.642857142857143,"Natural, The (1984)",Drama +3099,2.611111111111111,Shampoo (1975),Comedy|Drama|Romance +3100,3.5892857142857144,"River Runs Through It, A (1992)",Drama +3101,3.673469387755102,Fatal Attraction (1987),Drama|Thriller +3102,3.9,Jagged Edge (1985),Crime|Romance|Thriller +3103,3.0,Stanley & Iris (1990),Drama|Romance +3104,3.9655172413793105,Midnight Run (1988),Action|Comedy|Crime|Thriller +3105,3.8421052631578947,Awakenings (1990),Drama|Mystery +3106,3.6666666666666665,Come See the Paradise (1990),Drama|Romance +3107,3.359375,Backdraft (1991),Action|Drama +3108,3.635135135135135,"Fisher King, The (1991)",Comedy|Drama|Fantasy|Romance +3109,4.0,"River, The (1984)",Drama +3110,3.6666666666666665,Country (1984),Drama +3111,4.222222222222222,Places in the Heart (1984),Drama +3112,5.0,'night Mother (1986),Drama +3113,2.026315789473684,End of Days (1999),Action|Fantasy|Horror|Mystery|Thriller +3114,3.844,Toy Story 2 (1999),Adventure|Animation|Children|Comedy|Fantasy +3115,3.6666666666666665,Flawless (1999),Drama +3116,4.0,Miss Julie (1999),Drama +3117,3.5,Ride with the Devil (1999),Drama|Romance|War +3118,3.5,Tumbleweeds (1999),Drama +3120,3.0,"Distinguished Gentleman, The (1992)",Comedy +3121,3.5,"Hitch-Hiker, The (1953)",Drama|Film-Noir +3122,3.0,Santa Fe Trail (1940),Drama|Romance|Western +3125,3.3,"End of the Affair, The (1999)",Drama +3127,2.8333333333333335,Holy Smoke (1999),Comedy|Drama +3128,3.25,"Map of the World, A (1999)",Drama +3129,4.0,Sweet and Lowdown (1999),Comedy|Drama +3130,2.5416666666666665,Bonfire of the Vanities (1990),Comedy|Crime|Drama +3133,4.0,Go West (1925),Comedy|Western +3134,4.208333333333333,Grand Illusion (La grande illusion) (1937),Drama|War +3135,3.9444444444444446,"Great Santini, The (1979)",Drama +3136,3.0,"James Dean Story, The (1957)",Documentary +3138,3.0,Stealing Home (1988),Drama +3140,4.0,Three Ages (1923),Comedy +3141,3.625,"Two Jakes, The (1990)",Drama +3142,3.6,U2: Rattle and Hum (1988),Documentary|Musical +3143,4.0,Hell in the Pacific (1968),Drama|War +3144,2.5,"Glass Bottom Boat, The (1966)",Comedy|Romance +3145,3.1666666666666665,Cradle Will Rock (1999),Drama +3146,2.5,Deuce Bigalow: Male Gigolo (1999),Comedy +3147,3.9223300970873787,"Green Mile, The (1999)",Crime|Drama +3148,3.2435897435897436,"Cider House Rules, The (1999)",Drama +3150,4.0,"War Zone, The (1999)",Drama|Thriller +3152,3.9761904761904763,"Last Picture Show, The (1971)",Drama +3153,4.142857142857143,"7th Voyage of Sinbad, The (1958)",Action|Adventure|Fantasy +3155,3.409090909090909,Anna and the King (1999),Drama|Romance +3156,2.9722222222222223,Bicentennial Man (1999),Drama|Romance|Sci-Fi +3157,3.074074074074074,Stuart Little (1999),Children|Comedy|Fantasy +3158,3.5,"Emperor and the Assassin, The (Jing ke ci qin wang) (1999)",Drama +3159,3.3823529411764706,Fantasia 2000 (1999),Animation|Children|Musical|IMAX +3160,3.692982456140351,Magnolia (1999),Drama +3161,3.0,Onegin (1999),Drama|Romance +3163,3.7142857142857144,Topsy-Turvy (1999),Comedy|Drama|Musical +3165,5.0,Boiling Point (1993),Action|Drama +3166,4.0,Brenda Starr (1989),Adventure +3167,4.4375,Carnal Knowledge (1971),Comedy|Drama +3168,3.72,Easy Rider (1969),Adventure|Drama +3169,3.3461538461538463,The Falcon and the Snowman (1985),Crime|Drama|Thriller +3171,4.25,Room at the Top (1959),Drama +3173,2.94,Any Given Sunday (1999),Drama +3174,3.3,Man on the Moon (1999),Comedy|Drama +3175,3.5076923076923077,Galaxy Quest (1999),Adventure|Comedy|Sci-Fi +3176,3.5,"Talented Mr. Ripley, The (1999)",Drama|Mystery|Thriller +3177,3.1666666666666665,Next Friday (2000),Comedy +3178,3.6363636363636362,"Hurricane, The (1999)",Drama +3179,3.227272727272727,Angela's Ashes (1999),Drama +3180,2.0,Play it to the Bone (1999),Comedy|Drama +3181,3.8333333333333335,Titus (1999),Drama +3182,3.3125,"Mr. Death: The Rise and Fall of Fred A. Leuchter, Jr. (1999)",Documentary +3183,3.5,"Third Miracle, The (1999)",Drama +3185,3.1923076923076925,Snow Falling on Cedars (1999),Drama +3186,3.625,"Girl, Interrupted (1999)",Drama +3188,3.5,"Life and Times of Hank Greenberg, The (1998)",Documentary +3189,3.388888888888889,My Dog Skip (1999),Children|Drama +3190,1.0,Supernova (2000),Adventure|Sci-Fi|Thriller +3192,4.0,"Terrorist, The (a.k.a. Malli) (Theeviravaathi) (1998)",Drama +3194,3.6818181818181817,"Way We Were, The (1973)",Drama|Romance +3196,3.95,Stalag 17 (1953),Drama|War +3197,3.25,"Presidio, The (1988)",Action|Crime|Romance|Thriller +3198,3.9523809523809526,Papillon (1973),Crime|Drama +3199,3.6666666666666665,Pal Joey (1957),Comedy|Drama|Musical|Romance +3200,4.3,"Last Detail, The (1973)",Comedy|Drama +3201,4.075,Five Easy Pieces (1970),Drama +3202,5.0,Even Dwarfs Started Small (Auch Zwerge haben klein angefangen) (1971),Drama|Horror +3203,3.8333333333333335,Dead Calm (1989),Thriller +3204,3.857142857142857,"Boys from Brazil, The (1978)",Action|Mystery|Thriller +3205,3.0,Black Sunday (La maschera del demonio) (1960),Horror +3206,2.75,Against All Odds (1984),Romance +3207,3.0,"Snows of Kilimanjaro, The (1952)",Adventure +3208,1.75,Loaded Weapon 1 (National Lampoon's Loaded Weapon 1) (1993),Action|Comedy +3210,3.6153846153846154,Fast Times at Ridgemont High (1982),Comedy|Drama|Romance +3211,4.0,"Cry in the Dark, A (1988)",Drama +3213,3.85,Batman: Mask of the Phantasm (1993),Animation|Children +3214,4.0,American Flyers (1985),Drama +3216,5.0,"Vampyros Lesbos (Vampiras, Las) (1971)",Fantasy|Horror|Thriller +3217,4.0,"Star Is Born, A (1937)",Drama +3218,3.6,Poison (1991),Drama +3219,3.6923076923076925,Pacific Heights (1990),Mystery|Thriller +3221,4.0,"Draughtsman's Contract, The (1982)",Drama +3223,3.75,"Zed & Two Noughts, A (1985)",Drama +3224,3.75,Woman in the Dunes (Suna no onna) (1964),Drama +3225,2.6,Down to You (2000),Comedy|Romance +3232,4.0,Seven Chances (1925),Comedy +3235,3.0,Where the Buffalo Roam (1980),Comedy +3238,2.0,Eye of the Beholder (1999),Thriller +3239,4.0,Isn't She Great? (2000),Comedy +3240,2.5,"Big Tease, The (1999)",Comedy +3241,3.5,"Cup, The (Phörpa) (1999)",Comedy +3243,2.375,Encino Man (1992),Comedy +3244,3.607142857142857,"Goodbye Girl, The (1977)",Comedy|Romance +3245,4.5,I Am Cuba (Soy Cuba/Ya Kuba) (1964),Drama +3246,3.9655172413793105,Malcolm X (1992),Drama +3247,3.054054054054054,Sister Act (1992),Comedy|Crime +3248,2.3666666666666667,Sister Act 2: Back in the Habit (1993),Comedy +3249,3.411764705882353,"Hand That Rocks the Cradle, The (1992)",Drama|Thriller +3250,2.75,Alive (1993),Drama +3251,3.85,Agnes of God (1985),Drama|Mystery +3252,3.95,Scent of a Woman (1992),Drama +3253,3.391891891891892,Wayne's World (1992),Comedy +3254,3.1363636363636362,Wayne's World 2 (1993),Comedy +3255,3.4473684210526314,"League of Their Own, A (1992)",Comedy|Drama +3256,3.53125,Patriot Games (1992),Action|Crime|Drama|Thriller +3257,2.7241379310344827,"Bodyguard, The (1992)",Drama|Romance|Thriller +3258,2.857142857142857,Death Becomes Her (1992),Comedy|Fantasy +3259,3.1333333333333333,Far and Away (1992),Adventure|Drama|Romance +3260,3.823529411764706,Howards End (1992),Drama +3261,3.6666666666666665,Singles (1992),Comedy|Drama|Romance +3262,3.2916666666666665,Twin Peaks: Fire Walk with Me (1992),Crime|Drama|Mystery|Thriller +3263,3.3793103448275863,White Men Can't Jump (1992),Comedy|Drama +3264,2.8666666666666667,Buffy the Vampire Slayer (1992),Action|Comedy|Horror +3265,4.1,Hard-Boiled (Lat sau san taam) (1992),Action|Crime|Drama|Thriller +3266,3.25,Man Bites Dog (C'est arrivé près de chez vous) (1992),Comedy|Crime|Drama|Thriller +3267,3.5714285714285716,"Mariachi, El (1992)",Action|Crime|Thriller|Western +3268,1.8,Stop! Or My Mom Will Shoot (1992),Action|Comedy +3269,2.625,Forever Young (1992),Drama|Romance|Sci-Fi +3270,3.6818181818181817,"Cutting Edge, The (1992)",Comedy|Drama|Romance +3271,3.3666666666666667,Of Mice and Men (1992),Drama +3272,3.3125,Bad Lieutenant (1992),Crime|Drama +3273,2.814814814814815,Scream 3 (2000),Comedy|Horror|Mystery|Thriller +3274,3.4545454545454546,Single White Female (1992),Drama|Thriller +3275,3.522727272727273,"Boondock Saints, The (2000)",Action|Crime|Drama|Thriller +3276,1.0,Gun Shy (2000),Comedy +3281,5.0,"Brandon Teena Story, The (1998)",Documentary +3282,4.0,Different for Girls (1996),Comedy +3284,3.5,They Might Be Giants (1971),Comedy|Mystery|Romance +3285,3.0185185185185186,"Beach, The (2000)",Adventure|Drama +3286,2.1666666666666665,Snow Day (2000),Comedy +3287,3.375,"Tigger Movie, The (2000)",Animation|Children +3289,4.0,Not One Less (Yi ge dou bu neng shao) (1999),Drama +3292,3.5,"Big Combo, The (1955)",Film-Noir +3294,2.5,Eaten Alive (1977),Horror +3296,3.5625,To Sir with Love (1967),Drama +3298,3.3793103448275863,Boiler Room (2000),Crime|Drama|Thriller +3299,2.25,Hanging Up (2000),Comedy|Drama +3300,3.269230769230769,Pitch Black (2000),Horror|Sci-Fi|Thriller +3301,3.2115384615384617,"Whole Nine Yards, The (2000)",Comedy|Crime +3302,4.0,Beautiful People (1999),Comedy +3303,1.0,Black Tar Heroin: The Dark End of the Street (2000),Documentary +3304,3.3333333333333335,Blue Collar (1978),Crime|Drama +3306,4.375,"Circus, The (1928)",Comedy +3307,4.0,City Lights (1931),Comedy|Drama|Romance +3308,3.5,"Flamingo Kid, The (1984)",Comedy|Drama +3309,4.25,"Dog's Life, A (1918)",Comedy +3310,4.4375,"Kid, The (1921)",Comedy|Drama +3313,3.5,Class Reunion (1982),Comedy +3314,2.5,"Big Trees, The (1952)",Action|Drama +3316,2.227272727272727,Reindeer Games (2000),Action|Thriller +3317,3.842857142857143,Wonder Boys (2000),Comedy|Drama +3318,3.0,Deterrence (1999),Drama|Thriller +3320,4.5,Mifune's Last Song (Mifunes sidste sang) (1999),Comedy|Drama|Romance +3324,2.0714285714285716,Drowning Mona (2000),Comedy +3325,3.0,"Next Best Thing, The (2000)",Comedy|Drama +3326,2.3333333333333335,What Planet Are You From? (2000),Comedy|Sci-Fi +3327,3.0,Beyond the Mat (1999),Documentary +3328,3.725,Ghost Dog: The Way of the Samurai (1999),Crime|Drama +3329,4.0,The Year My Voice Broke (1987),Drama|Romance +3330,3.9285714285714284,Splendor in the Grass (1961),Drama|Romance +3331,4.0,My Tutor (1983),Drama +3334,3.78125,Key Largo (1948),Crime|Drama|Film-Noir|Thriller +3338,1.0,For All Mankind (1989),Documentary +3339,3.0,Cross of Iron (1977),War +3340,2.6666666666666665,Bride of the Monster (1955),Horror|Sci-Fi +3341,3.75,Born Yesterday (1950),Comedy +3342,4.0,Birdy (1984),Drama|War +3343,2.5,And God Created Woman (1988),Comedy|Drama|Romance +3344,3.5,Blood Feast (1963),Horror +3347,4.083333333333333,Never Cry Wolf (1983),Adventure|Drama +3349,4.0,"Perils of Pauline, The (1947)",Comedy +3350,3.75,"Raisin in the Sun, A (1961)",Drama +3351,3.0,Two Thousand Maniacs! (1964),Horror +3354,2.2666666666666666,Mission to Mars (2000),Sci-Fi +3355,3.7083333333333335,"Ninth Gate, The (1999)",Fantasy|Horror|Mystery|Thriller +3357,4.75,East-West (Est-ouest) (1999),Drama|Romance +3358,3.75,Defending Your Life (1991),Comedy|Drama|Fantasy|Romance +3359,4.131578947368421,Breaking Away (1979),Comedy|Drama +3360,3.759259259259259,Hoosiers (a.k.a. Best Shot) (1986),Drama|Romance +3361,3.8068181818181817,Bull Durham (1988),Comedy|Drama|Romance +3362,4.086206896551724,Dog Day Afternoon (1975),Crime|Drama +3363,4.065789473684211,American Graffiti (1973),Comedy|Drama +3364,3.9285714285714284,"Asphalt Jungle, The (1950)",Crime|Film-Noir +3365,3.7857142857142856,"Searchers, The (1956)",Drama|Western +3368,4.375,"Big Country, The (1958)",Romance|Western +3370,4.0,Betrayed (1988),Drama|Thriller +3371,3.75,Bound for Glory (1976),Drama +3377,3.5,Hangmen Also Die! (1943),Drama|War +3379,3.4166666666666665,On the Beach (1959),Drama +3380,2.5,Railroaded! (1947),Film-Noir +3384,4.166666666666667,"Taking of Pelham One Two Three, The (1974)",Action|Crime +3385,2.6666666666666665,Volunteers (1985),Comedy +3386,3.8214285714285716,JFK (1991),Drama|Mystery|Thriller +3387,3.4,Who's Harry Crumb? (1989),Comedy|Mystery +3388,2.388888888888889,Harry and the Hendersons (1987),Children|Comedy +3390,1.5,Shanghai Surprise (1986),Adventure|Crime|Drama|Romance +3391,3.3333333333333335,Who's That Girl? (1987),Comedy +3392,2.4,She-Devil (1989),Comedy +3393,2.0,Date with an Angel (1987),Comedy|Fantasy|Romance +3394,3.0,Blind Date (1987),Comedy|Romance +3395,2.8,Nadine (1987),Comedy +3396,3.9,"Muppet Movie, The (1979)",Adventure|Children|Comedy|Musical +3397,3.45,"Great Muppet Caper, The (1981)",Children|Comedy +3398,3.5,"Muppets Take Manhattan, The (1984)",Children|Comedy|Musical +3399,3.0,Sesame Street Presents Follow That Bird (1985),Children|Comedy +3400,2.0,We're Back! A Dinosaur's Story (1993),Adventure|Animation|Children|Fantasy +3401,2.0,Baby... Secret of the Lost Legend (1985),Adventure|Sci-Fi +3402,4.0,Turtle Diary (1985),Comedy|Drama|Romance +3404,3.0833333333333335,Titanic (1953),Action|Drama +3405,3.5625,"Night to Remember, A (1958)",Action|Drama +3406,4.125,Captain Horatio Hornblower R.N. (1951),Action|Adventure|Drama|War +3408,3.552941176470588,Erin Brockovich (2000),Drama +3409,3.0,Final Destination (2000),Drama|Thriller +3412,3.6875,"Bear, The (Ours, L') (1988)",Adventure|Children|Drama +3414,4.0,Love Is a Many-Splendored Thing (1955),Drama|Romance|War +3415,3.25,"Mirror, The (Zerkalo) (1975)",Drama +3417,4.333333333333333,"Crimson Pirate, The (1952)",Adventure|Comedy +3418,3.533333333333333,Thelma & Louise (1991),Adventure|Crime|Drama +3420,3.6923076923076925,...And Justice for All (1979),Drama|Thriller +3421,3.805084745762712,Animal House (1978),Comedy +3422,3.4375,She's Gotta Have It (1986),Comedy|Romance +3423,4.0,School Daze (1988),Drama +3424,3.734375,Do the Right Thing (1989),Drama +3425,3.0,Mo' Better Blues (1990),Drama|Musical +3426,3.4166666666666665,Jungle Fever (1991),Drama|Romance +3427,1.5,Coogan's Bluff (1968),Crime +3428,3.0,"Champ, The (1979)",Drama +3429,4.0,Creature Comforts (1989),Animation|Comedy +3430,2.5714285714285716,Death Wish (1974),Action|Crime|Drama +3431,2.5,Death Wish 2 (1982),Action|Drama +3432,1.0,Death Wish 3 (1985),Action|Drama +3434,4.0,Death Wish 5: The Face of Death (1994),Action|Drama +3435,4.15625,Double Indemnity (1944),Crime|Drama|Film-Noir +3436,2.5625,Dying Young (1991),Drama|Romance +3437,5.0,Cool as Ice (1991),Drama +3438,2.9722222222222223,Teenage Mutant Ninja Turtles (1990),Action|Children|Comedy|Fantasy|Sci-Fi +3439,2.5,Teenage Mutant Ninja Turtles II: The Secret of the Ooze (1991),Action|Children|Fantasy +3440,1.6,Teenage Mutant Ninja Turtles III (1993),Action|Adventure|Children|Comedy|Fantasy +3441,2.75,Red Dawn (1984),Action|Drama|War +3442,2.5,Band of the Hand (1986),Action|Crime|Drama +3444,2.875,Bloodsport (1988),Action +3445,2.8333333333333335,Eyes of Laura Mars (1978),Mystery|Thriller +3446,3.0,Funny Bones (1995),Comedy|Drama +3447,5.0,"Good Earth, The (1937)",Drama +3448,3.660377358490566,"Good Morning, Vietnam (1987)",Comedy|Drama|War +3449,3.5,"Good Mother, The (1988)",Drama +3450,3.2096774193548385,Grumpy Old Men (1993),Comedy +3451,3.6666666666666665,Guess Who's Coming to Dinner (1967),Drama +3452,3.0526315789473686,Romeo Must Die (2000),Action|Crime|Romance|Thriller +3453,3.0,Here on Earth (2000),Drama|Romance +3454,4.0,Whatever It Takes (2000),Comedy|Romance +3456,4.5,"Color of Paradise, The (Rang-e khoda) (1999)",Drama +3457,3.8333333333333335,Waking the Dead (2000),Drama|Thriller +3459,4.0,Gothic (1986),Drama|Horror +3460,3.0,Hillbillys in a Haunted House (1967),Comedy +3461,3.230769230769231,Lord of the Flies (1963),Adventure|Drama|Thriller +3462,4.359375,Modern Times (1936),Comedy|Drama|Romance +3463,1.0,Last Resort (National Lampoon's Last Resort) (1994),Comedy +3465,4.0,That's Life! (1986),Drama +3466,3.4,Heart and Souls (1993),Comedy|Fantasy +3467,3.8529411764705883,Hud (1963),Drama|Western +3468,4.108695652173913,"Hustler, The (1961)",Drama +3469,4.541666666666667,Inherit the Wind (1960),Drama +3470,4.375,Dersu Uzala (1975),Adventure|Drama +3471,3.903225806451613,Close Encounters of the Third Kind (1977),Adventure|Drama|Sci-Fi +3474,4.0,Retroactive (1997),Sci-Fi|Thriller +3475,4.125,"Place in the Sun, A (1951)",Drama|Romance +3476,3.9375,Jacob's Ladder (1990),Horror|Mystery +3477,3.55,Empire Records (1995),Comedy|Drama +3478,3.3333333333333335,"Bamba, La (1987)",Drama +3479,3.4761904761904763,Ladyhawke (1985),Adventure|Fantasy|Romance +3480,3.7142857142857144,Lucas (1986),Drama|Romance +3481,3.960227272727273,High Fidelity (2000),Comedy|Drama|Romance +3483,3.25,"Road to El Dorado, The (2000)",Animation|Children +3484,2.6363636363636362,"Skulls, The (2000)",Thriller +3487,3.0,El Dorado (1966),Western +3489,3.116279069767442,Hook (1991),Adventure|Comedy|Fantasy +3490,3.0,Horror Express (1972),Horror +3491,4.0,My Chauffeur (1986),Comedy +3492,4.0,"Son of the Sheik, The (1926)",Adventure|Comedy|Romance +3494,3.3461538461538463,True Grit (1969),Adventure|Drama|Western +3495,4.0,Roadside Prophets (1992),Comedy|Drama +3496,3.5,Madame Sousatzka (1988),Drama +3497,3.0,Max Dugan Returns (1983),Comedy +3498,3.923076923076923,Midnight Express (1978),Drama +3499,3.8777777777777778,Misery (1990),Drama|Horror|Thriller +3500,3.0,Mr. Saturday Night (1992),Comedy|Drama +3501,3.875,Murphy's Romance (1985),Comedy|Romance +3502,4.25,My Life (1993),Drama +3503,3.6,Solaris (Solyaris) (1972),Drama|Mystery|Sci-Fi +3504,4.092105263157895,Network (1976),Comedy|Drama +3505,3.909090909090909,No Way Out (1987),Drama|Mystery|Thriller +3506,3.625,North Dallas Forty (1979),Comedy|Drama +3507,3.8095238095238093,"Odd Couple, The (1968)",Comedy +3508,4.0,"Outlaw Josey Wales, The (1976)",Action|Adventure|Drama|Thriller|Western +3509,3.3333333333333335,Black and White (1999),Drama +3510,3.5609756097560976,Frequency (2000),Drama|Thriller +3511,2.0,Ready to Rumble (2000),Comedy +3512,3.5526315789473686,Return to Me (2000),Drama|Romance +3513,3.2857142857142856,Rules of Engagement (2000),Drama|Thriller +3515,3.4,Me Myself I (2000),Comedy|Romance +3516,3.0625,"Bell, Book and Candle (1958)",Comedy|Fantasy|Romance +3518,2.0,"End of Violence, The (1997)",Drama|Thriller +3519,3.5,Force 10 from Navarone (1978),Action|Drama|War +3520,2.6666666666666665,How to Stuff a Wild Bikini (1965),Comedy +3521,3.909090909090909,Mystery Train (1989),Comedy|Drama +3522,2.0,Sacco and Vanzetti (Sacco e Vanzetti) (1971),Drama +3524,3.8529411764705883,Arthur (1981),Comedy|Romance +3525,3.4,Bachelor Party (1984),Comedy +3526,3.5869565217391304,Parenthood (1989),Comedy|Drama +3527,3.5660377358490565,Predator (1987),Action|Sci-Fi|Thriller +3528,2.6785714285714284,"Prince of Tides, The (1991)",Drama|Romance +3529,3.611111111111111,"Postman Always Rings Twice, The (1981)",Crime|Thriller +3531,2.0,All the Vermeers in New York (1990),Comedy|Drama|Romance +3534,2.9375,28 Days (2000),Drama +3535,3.2450980392156863,American Psycho (2000),Crime|Horror|Mystery|Thriller +3536,3.5,Keeping the Faith (2000),Comedy|Drama|Romance +3537,2.8333333333333335,Where the Money Is (2000),Comedy|Drama +3538,3.6666666666666665,East is East (1999),Comedy +3539,4.166666666666667,"Filth and the Fury, The (2000)",Documentary +3540,3.0,Passion of Mind (2000),Drama|Mystery|Romance +3543,3.977272727272727,Diner (1982),Comedy|Drama +3544,3.6666666666666665,Shakes the Clown (1992),Comedy +3545,3.75,Cabaret (1972),Drama|Musical +3546,3.84375,What Ever Happened to Baby Jane? (1962),Drama|Horror|Thriller +3547,3.375,Prick Up Your Ears (1987),Comedy|Drama +3548,3.96875,Auntie Mame (1958),Comedy|Drama +3549,3.4166666666666665,Guys and Dolls (1955),Comedy|Musical|Romance +3550,3.6666666666666665,The Hunger (1983),Horror +3551,3.911764705882353,Marathon Man (1976),Crime|Drama|Thriller +3552,3.425925925925926,Caddyshack (1980),Comedy +3553,4.0,Gossip (2000),Drama|Thriller +3554,3.6666666666666665,Love and Basketball (2000),Drama|Romance +3555,2.8793103448275863,U-571 (2000),Action|Thriller|War +3556,3.5833333333333335,"Virgin Suicides, The (1999)",Drama|Romance +3557,3.5,Jennifer 8 (1992),Mystery|Thriller +3559,3.3333333333333335,Limelight (1952),Comedy|Drama|Romance +3560,4.0,Empire of Passion (a.k.a. In the Realm of Passion) (a.k.a. Phantom Love) (Ai No Borei) (1978),Crime|Drama|Romance +3563,1.5,"Crow: Salvation, The (2000)",Action|Horror +3564,2.1363636363636362,"Flintstones in Viva Rock Vegas, The (2000)",Children|Comedy +3565,3.3636363636363638,Where the Heart Is (2000),Comedy|Drama +3566,3.3181818181818183,"Big Kahuna, The (2000)",Comedy|Drama +3567,2.0,Bossa Nova (2000),Comedy|Drama|Romance +3568,3.0,Smiling Fish and Goat on Fire (1999),Comedy|Romance +3569,3.357142857142857,"Idiots, The (Idioterne) (1998)",Comedy|Drama +3571,2.7,Time Code (2000),Comedy|Drama +3572,1.5,Carnosaur (1993),Horror|Sci-Fi +3573,2.25,Carnosaur 2 (1995),Horror|Sci-Fi +3574,0.75,Carnosaur 3: Primal Species (1996),Horror|Sci-Fi +3575,5.0,Defying Gravity (1997),Drama +3576,4.0,"Hidden, The (1987)",Action|Horror|Sci-Fi +3577,3.5,Two Moon Junction (1988),Drama|Romance +3578,3.9658385093167703,Gladiator (2000),Action|Adventure|Drama +3579,2.3333333333333335,I Dreamed of Africa (2000),Drama +3580,5.0,Up at the Villa (2000),Drama +3581,4.0,Human Traffic (1999),Comedy +3584,3.625,Breathless (1983),Action|Drama|Romance|Thriller +3587,4.0,Inferno (1980),Horror +3588,4.0,"King of Marvin Gardens, The (1972)",Crime|Drama +3590,2.8333333333333335,"Lords of Flatbush, The (1974)",Comedy|Drama +3591,3.3055555555555554,Mr. Mom (1983),Comedy|Drama +3593,1.2105263157894737,Battlefield Earth (2000),Action|Sci-Fi +3594,3.75,Center Stage (2000),Drama|Musical +3596,1.0,Screwed (2000),Comedy +3598,3.8333333333333335,Hamlet (2000),Crime|Drama|Romance|Thriller +3599,3.75,Anchors Aweigh (1945),Comedy|Musical +3600,3.25,Blue Hawaii (1961),Comedy|Musical +3602,2.0,G.I. Blues (1960),Comedy|Musical|Romance +3604,3.8,Gypsy (1962),Musical +3605,1.5,King Creole (1958),Crime|Drama|Musical +3606,4.111111111111111,On the Town (1949),Comedy|Musical|Romance +3608,3.2586206896551726,Pee-wee's Big Adventure (1985),Adventure|Comedy +3609,4.25,Regret to Inform (1998),Documentary +3611,3.0,Saludos Amigos (1943),Animation|Children|Comedy +3612,5.0,The Slipper and the Rose: The Story of Cinderella (1976),Adventure|Children|Fantasy|Musical|Romance +3613,3.0,Things Change (1988),Comedy +3614,3.235294117647059,Honeymoon in Vegas (1992),Comedy|Romance +3615,3.0384615384615383,Dinosaur (2000),Adventure|Animation|Children +3616,2.5,Loser (2000),Comedy|Romance +3617,3.081081081081081,Road Trip (2000),Comedy +3618,3.25,Small Time Crooks (2000),Comedy|Crime +3619,3.0,"Hollywood Knights, The (1980)",Comedy +3620,3.0,"Myth of Fingerprints, The (1997)",Comedy|Drama +3621,3.5,Possession (1981),Drama|Horror +3622,4.0,"Twelve Chairs, The (1970)",Comedy +3623,2.9691358024691357,Mission: Impossible II (2000),Action|Adventure|Thriller +3624,3.210526315789474,Shanghai Noon (2000),Action|Adventure|Comedy|Western +3626,3.8333333333333335,8 ½ Women (a.k.a. 8 1/2 Women) (a.k.a. Eight and a Half Women) (1999),Comedy +3627,4.333333333333333,Carnival of Souls (1962),Horror|Thriller +3628,4.0,Flying Tigers (1942),Action|Drama|Romance|War +3629,4.045454545454546,"Gold Rush, The (1925)",Adventure|Comedy|Romance +3632,4.0,Monsieur Verdoux (1947),Comedy|Crime +3633,3.6666666666666665,On Her Majesty's Secret Service (1969),Action|Adventure|Romance|Thriller +3634,3.4166666666666665,Seven Days in May (1964),Thriller +3635,3.75,"Spy Who Loved Me, The (1977)",Action|Adventure|Thriller +3637,4.0,Vagabond (Sans toit ni loi) (1985),Drama +3638,3.5652173913043477,Moonraker (1979),Action|Adventure|Sci-Fi|Thriller +3639,3.5,"Man with the Golden Gun, The (1974)",Action|Adventure|Thriller +3640,3.25,"King in New York, A (1957)",Comedy|Drama +3643,3.5,"Fighting Seabees, The (1944)",Action|Drama|War +3646,1.875,Big Momma's House (2000),Comedy +3649,3.1363636363636362,American Gigolo (1980),Drama +3653,4.1,"Endless Summer, The (1966)",Documentary +3654,4.038461538461538,"Guns of Navarone, The (1961)",Action|Adventure|Drama|War +3655,4.5,Blow-Out (La grande bouffe) (1973),Drama +3656,5.0,Lured (1947),Crime|Film-Noir|Mystery|Thriller +3657,4.5,Pandora and the Flying Dutchman (1951),Drama +3658,3.0,Quatermass and the Pit (1967),Horror|Sci-Fi +3659,3.0,Quatermass 2 (Enemy from Space) (1957),Sci-Fi|Thriller +3662,3.0,Puppet Master III: Toulon's Revenge (1991),Horror|Sci-Fi|Thriller +3663,3.0,Puppet Master 4 (1993),Horror|Sci-Fi|Thriller +3664,3.0,Puppet Master 5: The Final Chapter (1994),Horror|Sci-Fi|Thriller +3665,4.0,Curse of the Puppet Master (Puppet Master 6: The Curse) (1998),Horror|Sci-Fi|Thriller +3668,3.3846153846153846,Romeo and Juliet (1968),Drama|Romance +3669,2.6666666666666665,Stay Tuned (1992),Comedy +3671,3.935483870967742,Blazing Saddles (1974),Comedy|Western +3672,3.5625,Benji (1974),Adventure|Children +3673,3.5,Benji the Hunted (1987),Adventure|Children +3674,3.1666666666666665,For the Love of Benji (1977),Adventure|Children|Comedy|Drama +3675,3.5454545454545454,White Christmas (1954),Comedy|Musical|Romance +3676,3.5357142857142856,Eraserhead (1977),Drama|Horror +3677,4.3125,Baraka (1992),Documentary +3678,3.4,"Man with the Golden Arm, The (1955)",Drama +3679,4.625,"Decline of Western Civilization, The (1981)",Documentary|Musical +3680,3.8333333333333335,"Decline of Western Civilization Part II: The Metal Years, The (1988)",Documentary +3681,3.7857142857142856,For a Few Dollars More (Per qualche dollaro in più) (1965),Action|Drama|Thriller|Western +3682,2.7142857142857144,Magnum Force (1973),Action|Crime|Drama|Thriller +3683,4.291666666666667,Blood Simple (1984),Crime|Drama|Film-Noir +3684,3.888888888888889,"Fabulous Baker Boys, The (1989)",Drama|Romance +3685,3.6,Prizzi's Honor (1985),Comedy|Drama|Romance +3686,3.575,Flatliners (1990),Horror|Sci-Fi|Thriller +3687,3.5,Light Years (Gandahar) (1988),Adventure|Animation|Fantasy|Sci-Fi +3688,2.9166666666666665,Porky's (1982),Comedy +3689,2.0,Porky's II: The Next Day (1983),Comedy +3690,2.0,Porky's Revenge (1985),Comedy +3691,2.5,Private School (1983),Comedy +3692,3.5,Class of Nuke 'Em High (1986),Comedy|Horror +3693,3.1,"Toxic Avenger, The (1985)",Comedy|Horror +3694,2.3333333333333335,"Toxic Avenger, Part II, The (1989)",Comedy|Horror +3695,2.5,"Toxic Avenger Part III: The Last Temptation of Toxie, The (1989)",Comedy|Horror +3696,4.333333333333333,Night of the Creeps (1986),Comedy|Horror|Sci-Fi|Thriller +3697,2.8684210526315788,Predator 2 (1990),Action|Sci-Fi|Thriller +3698,3.1875,"Running Man, The (1987)",Action|Sci-Fi +3699,3.4545454545454546,Starman (1984),Adventure|Drama|Romance|Sci-Fi +3700,3.6666666666666665,"Brother from Another Planet, The (1984)",Drama|Sci-Fi +3701,3.3125,Alien Nation (1988),Crime|Drama|Sci-Fi|Thriller +3702,3.8285714285714287,Mad Max (1979),Action|Adventure|Sci-Fi +3703,3.793103448275862,"Road Warrior, The (Mad Max 2) (1981)",Action|Adventure|Sci-Fi|Thriller +3704,3.3157894736842106,Mad Max Beyond Thunderdome (1985),Action|Adventure|Sci-Fi +3705,2.7222222222222223,Bird on a Wire (1990),Action|Comedy|Romance +3706,3.642857142857143,Angel Heart (1987),Film-Noir|Horror|Mystery|Thriller +3707,3.05,9 1/2 Weeks (Nine 1/2 Weeks) (1986),Drama|Romance +3708,3.1666666666666665,Firestarter (1984),Horror|Thriller +3709,2.6666666666666665,Sleepwalkers (1992),Horror +3710,3.0,Action Jackson (1988),Action|Comedy|Crime|Thriller +3712,3.4166666666666665,Soapdish (1991),Comedy +3713,3.75,"Long Walk Home, The (1990)",Drama +3714,3.0,Clara's Heart (1988),Drama +3715,3.0,Burglar (1987),Comedy|Crime +3716,3.5,Fatal Beauty (1987),Action|Comedy|Crime|Drama +3717,2.7767857142857144,Gone in 60 Seconds (2000),Action|Crime +3718,3.0,American Pimp (1999),Documentary +3719,2.0,Love's Labour's Lost (2000),Comedy|Romance +3720,3.5,Sunshine (1999),Drama +3721,1.75,Trixie (2000),Comedy|Crime|Mystery +3723,3.9,Hamlet (1990),Drama +3724,4.115384615384615,Coming Home (1978),Drama|War +3725,3.125,American Pop (1981),Animation|Musical +3726,2.5,Assault on Precinct 13 (1976),Action|Thriller +3727,3.5,Near Dark (1987),Horror|Western +3728,3.5714285714285716,One False Move (1992),Crime|Drama|Film-Noir|Thriller +3729,4.333333333333333,Shaft (1971),Action|Crime|Drama|Thriller +3730,4.304347826086956,"Conversation, The (1974)",Drama|Mystery +3731,4.0,Cutter's Way (1981),Drama|Thriller +3732,3.3333333333333335,"Fury, The (1978)",Horror +3733,3.7142857142857144,"Paper Chase, The (1973)",Drama +3734,3.625,Prince of the City (1981),Drama +3735,4.037037037037037,Serpico (1973),Crime|Drama +3736,3.642857142857143,"Ace in the Hole (Big Carnival, The) (1951)",Drama +3737,5.0,Lonely Are the Brave (1962),Drama|Western +3738,3.6,"Sugarland Express, The (1974)",Drama +3739,4.666666666666667,Trouble in Paradise (1932),Comedy|Romance +3740,3.159090909090909,Big Trouble in Little China (1986),Action|Adventure|Comedy|Fantasy +3741,3.8846153846153846,Badlands (1973),Crime|Drama|Thriller +3742,3.78125,Battleship Potemkin (1925),Drama|War +3743,3.5,Boys and Girls (2000),Comedy|Romance +3744,2.6923076923076925,Shaft (2000),Action|Crime|Thriller +3745,3.3043478260869565,Titan A.E. (2000),Action|Adventure|Animation|Children|Sci-Fi +3746,5.0,Butterfly (La lengua de las mariposas) (1999),Drama +3747,3.2857142857142856,Jesus' Son (1999),Drama +3751,3.4292929292929295,Chicken Run (2000),Animation|Children|Comedy +3752,2.7674418604651163,"Me, Myself & Irene (2000)",Adventure|Comedy +3753,3.292307692307692,"Patriot, The (2000)",Action|Drama|War +3754,2.1666666666666665,"Adventures of Rocky and Bullwinkle, The (2000)",Adventure|Animation|Children|Comedy|Fantasy +3755,2.952830188679245,"Perfect Storm, The (2000)",Drama|Thriller +3757,5.0,Asylum (1972),Horror +3758,3.5,Communion (1989),Drama|Sci-Fi|Thriller +3759,3.5,Fun and Fancy Free (1947),Animation|Children|Musical +3760,3.5,"Kentucky Fried Movie, The (1977)",Comedy +3761,3.5,"Blood In, Blood Out (1993)",Action|Crime|Drama|Thriller +3763,3.4285714285714284,F/X (1986),Action|Crime|Thriller +3764,2.1,F/X2 (a.k.a. F/X 2 - The Deadly Art of Illusion) (1991),Action|Crime|Thriller +3765,2.0,"Hot Spot, The (1990)",Crime|Drama|Romance +3766,3.3333333333333335,Missing in Action (1984),Action|War +3768,3.0,Braddock: Missing in Action III (1988),Action|War +3769,3.2,Thunderbolt and Lightfoot (1974),Action +3770,3.3333333333333335,Dreamscape (1984),Horror|Sci-Fi|Thriller +3771,3.25,The Golden Voyage of Sinbad (1973),Action|Adventure|Fantasy +3773,2.5,House Party (1990),Comedy +3774,2.25,House Party 2 (1991),Comedy|Drama|Romance +3775,3.0,Make Mine Music (1946),Animation|Children|Musical +3777,2.25,Nekromantik (1987),Comedy|Horror +3780,2.0,Rocketship X-M (1950),Sci-Fi +3783,3.9285714285714284,Croupier (1998),Crime|Drama +3784,3.0,"Kid, The (2000)",Comedy|Fantasy +3785,2.581081081081081,Scary Movie (2000),Comedy|Horror +3786,3.2,But I'm a Cheerleader (1999),Comedy +3787,3.75,Shower (Xizao) (1999),Comedy +3788,3.7333333333333334,Blow-Up (Blowup) (1966),Drama|Mystery +3789,4.4,"Pawnbroker, The (1964)",Drama +3790,4.0,Groove (2000),Drama +3791,3.5416666666666665,Footloose (1984),Drama +3792,4.333333333333333,Duel in the Sun (1946),Drama|Romance|Western +3793,3.559055118110236,X-Men (2000),Action|Adventure|Sci-Fi +3794,3.4,Chuck & Buck (2000),Comedy|Drama +3795,4.5,"Five Senses, The (1999)",Drama +3798,3.076923076923077,What Lies Beneath (2000),Drama|Horror|Mystery +3799,1.75,Pokémon the Movie 2000 (2000),Animation|Children +3800,2.0,Criminal Lovers (1999),Crime|Drama|Romance|Thriller +3801,3.6333333333333333,Anatomy of a Murder (1959),Drama|Mystery +3802,2.5,Freejack (1992),Action|Sci-Fi +3804,3.5,H.O.T.S. (1979),Comedy +3805,4.0,Knightriders (1981),Action|Adventure|Drama +3806,2.6666666666666665,Mackenna's Gold (1969),Western +3807,3.2,Sinbad and the Eye of the Tiger (1977),Adventure|Fantasy +3809,3.3448275862068964,What About Bob? (1991),Comedy +3810,2.5,White Sands (1992),Drama|Thriller +3811,3.9444444444444446,Breaker Morant (1980),Drama|War +3812,3.272727272727273,Everything You Always Wanted to Know About Sex * But Were Afraid to Ask (1972),Comedy +3813,2.8333333333333335,Interiors (1978),Drama +3814,4.115384615384615,Love and Death (1975),Comedy +3816,3.6666666666666665,"Official Story, The (La historia oficial) (1985)",Drama +3819,3.7,Tampopo (1985),Comedy +3820,1.0,Thomas and the Magic Railroad (2000),Children +3821,2.25,Nutty Professor II: The Klumps (2000),Comedy +3822,1.75,"Girl on the Bridge, The (Fille sur le pont, La) (1999)",Drama|Romance +3823,3.125,Wonderland (1999),Drama +3824,2.3,Autumn in New York (2000),Drama|Romance +3825,2.925925925925926,Coyote Ugly (2000),Comedy|Drama|Romance +3826,2.183333333333333,Hollow Man (2000),Horror|Sci-Fi|Thriller +3827,2.6666666666666665,Space Cowboys (2000),Action|Adventure|Comedy|Sci-Fi +3829,2.0,Mad About Mambo (2000),Comedy|Romance +3831,3.5,Saving Grace (2000),Comedy +3832,3.0,"Black Sabbath (Tre volti della paura, I) (1963)",Horror +3833,3.1666666666666665,"Brain That Wouldn't Die, The (1962)",Horror|Sci-Fi +3834,3.0,Bronco Billy (1980),Adventure|Drama|Romance +3835,2.8333333333333335,"Crush, The (1993)",Thriller +3836,3.5,Kelly's Heroes (1970),Action|Comedy|War +3837,5.0,Phantasm II (1988),Action|Fantasy|Horror|Sci-Fi|Thriller +3838,2.0,Phantasm III: Lord of the Dead (1994),Horror +3839,1.0,Phantasm IV: Oblivion (1998),Horror +3840,4.0,Pumpkinhead (1988),Horror +3841,2.3333333333333335,Air America (1990),Action|Comedy +3843,3.5,Sleepaway Camp (1983),Horror +3844,3.6,Steel Magnolias (1989),Drama +3845,5.0,And God Created Woman (Et Dieu... créa la femme) (1956),Drama +3846,3.0,Easy Money (1983),Comedy +3847,3.0,"Ilsa, She Wolf of the SS (1974)",Horror +3848,4.0,Silent Fall (1994),Drama|Thriller +3849,4.0,The Spiral Staircase (1945),Horror|Mystery|Thriller +3851,5.0,I'm the One That I Want (2000),Comedy +3852,3.6666666666666665,"Tao of Steve, The (2000)",Comedy +3854,4.0,Aimée & Jaguar (1999),Drama|Romance|War +3855,3.75,"Affair of Love, An (Liaison pornographique, Une) (1999)",Drama|Romance +3857,2.125,Bless the Child (2000),Thriller +3858,3.3333333333333335,Cecil B. DeMented (2000),Comedy +3859,3.75,"Eyes of Tammy Faye, The (2000)",Documentary +3860,3.0,"Opportunists, The (2000)",Comedy|Crime|Drama +3861,3.0357142857142856,"Replacements, The (2000)",Comedy +3863,2.9558823529411766,"Cell, The (2000)",Drama|Horror|Thriller +3864,2.125,Godzilla 2000 (Gojira ni-sen mireniamu) (1999),Action|Adventure|Sci-Fi +3865,2.8333333333333335,"Original Kings of Comedy, The (2000)",Comedy|Documentary +3868,3.8714285714285714,"Naked Gun: From the Files of Police Squad!, The (1988)",Action|Comedy|Crime|Romance +3869,3.4444444444444446,"Naked Gun 2 1/2: The Smell of Fear, The (1991)",Comedy +3870,3.0,Our Town (1940),Drama +3871,3.95,Shane (1953),Drama|Western +3872,4.333333333333333,"Suddenly, Last Summer (1959)",Drama +3873,3.772727272727273,Cat Ballou (1965),Comedy|Western +3875,2.5,"Devil Rides Out, The (1968)",Horror +3877,2.8,Supergirl (1984),Action|Adventure|Fantasy +3879,5.0,"Art of War, The (2000)",Action|Thriller +3880,4.0,"Ballad of Ramblin' Jack, The (2000)",Documentary +3882,2.875,Bring It On (2000),Comedy +3883,0.5,Catfish in Black Bean Sauce (2000),Comedy|Drama +3885,3.0,Love & Sex (2000),Comedy|Drama|Romance +3886,3.1666666666666665,Steal This Movie! (2000),Drama +3889,1.5,Highlander: Endgame (Highlander IV) (2000),Action|Adventure|Fantasy +3890,3.0,Back Stage (2000),Documentary +3891,1.0,Turn It Up (2000),Crime|Drama +3892,3.0,Anatomy (Anatomie) (2000),Horror +3893,2.8095238095238093,Nurse Betty (2000),Comedy|Crime|Drama|Romance|Thriller +3895,1.25,"Watcher, The (2000)",Crime|Thriller +3896,3.1875,"Way of the Gun, The (2000)",Crime|Thriller +3897,3.888888888888889,Almost Famous (2000),Drama +3900,3.0,Crime and Punishment in Suburbia (2000),Comedy|Drama +3901,2.5,Duets (2000),Comedy|Drama +3902,4.5,Goya in Bordeaux (Goya en Burdeos) (1999),Drama +3903,3.3333333333333335,Urbania (2000),Drama +3905,4.5,"Specials, The (2000)",Comedy +3906,4.0,Under Suspicion (2000),Crime|Thriller +3908,2.9,Urban Legends: Final Cut (2000),Horror +3909,5.0,Woman on Top (2000),Comedy|Romance +3910,3.8043478260869565,Dancer in the Dark (2000),Drama|Musical +3911,3.76271186440678,Best in Show (2000),Comedy +3913,3.5,Barenaked in America (1999),Documentary +3914,3.3333333333333335,"Broken Hearts Club, The (2000)",Drama +3915,4.166666666666667,Girlfight (2000),Drama +3916,3.858974358974359,Remember the Titans (2000),Drama +3917,3.5454545454545454,Hellraiser (1987),Horror +3918,3.0,Hellbound: Hellraiser II (1988),Horror +3919,2.6666666666666665,Hellraiser III: Hell on Earth (1992),Horror +3920,3.5,"Faraway, So Close (In weiter Ferne, so nah!) (1993)",Drama|Fantasy|Mystery|Romance +3921,2.5,Beach Party (1963),Comedy +3922,3.0,Bikini Beach (1964),Comedy +3923,4.0,Return of the Fly (1959),Horror|Sci-Fi +3924,3.0,Pajama Party (1964),Comedy +3925,3.875,Stranger Than Paradise (1984),Comedy|Drama +3926,3.0,Voyage to the Bottom of the Sea (1961),Adventure|Sci-Fi +3927,3.6,Fantastic Voyage (1966),Adventure|Sci-Fi +3928,3.4,Abbott and Costello Meet Frankenstein (1948),Comedy|Horror +3929,3.9444444444444446,"Bank Dick, The (1940)",Comedy +3930,3.4,"Creature from the Black Lagoon, The (1954)",Adventure|Horror|Sci-Fi +3932,3.25,"Invisible Man, The (1933)",Horror|Sci-Fi +3933,0.5,"Killer Shrews, The (1959)",Horror|Sci-Fi +3934,4.0,Kronos (1957),Sci-Fi +3936,3.0,Phantom of the Opera (1943),Horror|Musical|Thriller +3937,2.5,Runaway (1984),Sci-Fi|Thriller +3938,4.0,"Slumber Party Massacre, The (1982)",Horror +3939,3.0,Slumber Party Massacre II (1987),Horror +3940,3.0,Slumber Party Massacre III (1990),Horror +3941,4.0,Sorority House Massacre (1986),Horror +3942,3.0,Sorority House Massacre II (1990),Horror +3943,4.0,Bamboozled (2000),Comedy +3945,4.0,Digimon: The Movie (2000),Adventure|Animation|Children +3946,2.2857142857142856,Get Carter (2000),Action|Drama|Thriller +3947,5.0,Get Carter (1971),Action|Crime|Drama|Thriller +3948,3.4431818181818183,Meet the Parents (2000),Comedy +3949,3.869565217391304,Requiem for a Dream (2000),Drama +3950,3.6666666666666665,Tigerland (2000),Drama +3951,3.5,Two Family House (2000),Drama +3952,4.0,"Contender, The (2000)",Drama|Thriller +3953,2.3333333333333335,Dr. T and the Women (2000),Comedy|Romance +3955,2.75,"Ladies Man, The (2000)",Comedy +3956,2.0,Lost Souls (2000),Drama|Horror|Thriller +3957,2.125,Billy Jack (1971),Action|Drama +3959,3.4375,"Time Machine, The (1960)",Action|Adventure|Sci-Fi +3960,3.0,Haunted (1995),Drama|Thriller +3961,2.6666666666666665,Ghoulies (1985),Horror +3962,2.25,Ghoulies II (1987),Comedy|Horror +3963,3.4375,"Unsinkable Molly Brown, The (1964)",Musical +3964,3.0,"Adventures of Ichabod and Mr. Toad, The (1949)",Animation|Children +3965,3.0,"Strange Love of Martha Ivers, The (1946)",Drama|Film-Noir +3966,4.75,Detour (1945),Crime|Film-Noir +3967,3.7093023255813953,Billy Elliot (2000),Drama +3968,2.4705882352941178,Bedazzled (2000),Comedy +3969,2.9565217391304346,Pay It Forward (2000),Drama +3970,3.8333333333333335,"Beyond, The (E tu vivrai nel terrore - L'aldilà) (1981)",Horror +3971,4.0,"Private Eyes, The (1981)",Comedy|Mystery +3972,3.5454545454545454,"Legend of Drunken Master, The (Jui kuen II) (1994)",Action|Comedy +3973,2.9,Book of Shadows: Blair Witch 2 (2000),Crime|Horror|Mystery|Thriller +3975,2.625,Lucky Numbers (2000),Comedy|Drama +3976,4.0,Stardom (2000),Comedy|Drama +3977,2.7278481012658227,Charlie's Angels (2000),Action|Comedy +3978,3.05,"Legend of Bagger Vance, The (2000)",Drama|Romance +3979,1.8611111111111112,Little Nicky (2000),Comedy +3980,3.25,Men of Honor (2000),Drama +3981,2.4166666666666665,Red Planet (2000),Action|Sci-Fi|Thriller +3983,4.25,You Can Count on Me (2000),Drama|Romance +3984,3.4347826086956523,Diamonds Are Forever (1971),Action|Adventure|Thriller +3985,3.0,"Eagle Has Landed, The (1976)",Drama|War +3986,2.775,"6th Day, The (2000)",Action|Sci-Fi|Thriller +3987,2.95,Bounce (2000),Drama|Romance +3988,2.7586206896551726,How the Grinch Stole Christmas (a.k.a. The Grinch) (2000),Children|Comedy|Fantasy +3989,4.1,One Day in September (1999),Documentary +3990,1.25,Rugrats in Paris: The Movie (2000),Animation|Children|Comedy +3991,1.8181818181818181,102 Dalmatians (2000),Children|Comedy +3992,3.375,Malèna (2000),Drama|Romance|War +3993,3.03125,Quills (2000),Drama|Romance +3994,3.2983870967741935,Unbreakable (2000),Drama|Sci-Fi +3996,3.8552631578947367,"Crouching Tiger, Hidden Dragon (Wo hu cang long) (2000)",Action|Drama|Romance +3997,1.9,Dungeons & Dragons (2000),Action|Adventure|Comedy|Fantasy +3998,2.75,Proof of Life (2000),Drama +3999,2.525,Vertical Limit (2000),Action|Adventure +4000,3.0,"Bounty, The (1984)",Adventure|Drama +4001,2.0,Code of Silence (1985),Action +4002,3.375,"Planes, Trains & Automobiles (1987)",Comedy +4003,3.0,She's Having a Baby (1988),Comedy +4005,3.4,"Living Daylights, The (1987)",Action|Adventure|Thriller +4006,3.5,Transformers: The Movie (1986),Adventure|Animation|Children|Sci-Fi +4007,3.9,Wall Street (1987),Drama +4008,3.6458333333333335,Born on the Fourth of July (1989),Drama|War +4009,4.0,Talk Radio (1988),Drama +4010,3.227272727272727,Brewster's Millions (1985),Comedy +4011,4.036842105263158,Snatch (2000),Comedy|Crime|Thriller +4012,2.5,Punchline (1988),Comedy|Drama +4014,3.7777777777777777,Chocolat (2000),Drama|Romance +4015,2.659090909090909,"Dude, Where's My Car? (2000)",Comedy|Sci-Fi +4016,3.5,"Emperor's New Groove, The (2000)",Adventure|Animation|Children|Comedy|Fantasy +4017,4.045454545454546,Pollock (2000),Drama +4018,3.125,What Women Want (2000),Comedy|Romance +4019,3.423076923076923,Finding Forrester (2000),Drama +4020,3.1363636363636362,"Gift, The (2000)",Thriller +4021,3.8333333333333335,Before Night Falls (2000),Drama +4022,3.46875,Cast Away (2000),Drama +4023,3.142857142857143,"Family Man, The (2000)",Comedy|Drama|Romance +4024,3.375,"House of Mirth, The (2000)",Romance +4025,2.792452830188679,Miss Congeniality (2000),Comedy|Crime +4026,1.0,Nowhere to Hide (Injeong sajeong bol geot eobtda) (1999),Action|Comedy|Crime|Thriller +4027,3.875,"O Brother, Where Art Thou? (2000)",Adventure|Comedy|Crime +4029,3.466666666666667,State and Main (2000),Comedy|Drama +4030,3.125,Dracula 2000 (2000),Horror +4031,2.375,All the Pretty Horses (2000),Drama|Romance|Western +4033,3.888888888888889,Thirteen Days (2000),Drama|Thriller|War +4034,3.910958904109589,Traffic (2000),Crime|Drama|Thriller +4035,4.0,"Claim, The (2000)",Romance|Western +4036,3.1,Shadow of the Vampire (2000),Drama|Horror +4037,4.125,House of Games (1987),Crime|Film-Noir|Mystery|Thriller +4039,3.3076923076923075,Annie (1982),Children|Musical +4040,2.388888888888889,Don't Tell Mom the Babysitter's Dead (1991),Comedy +4041,3.4545454545454546,"Officer and a Gentleman, An (1982)",Drama|Romance +4042,3.25,"Alamo, The (1960)",Action|Drama|War|Western +4043,3.5,At Close Range (1986),Crime|Drama +4045,2.0,Breakheart Pass (1975),Western +4046,4.0,Friendly Persuasion (1956),Drama +4047,3.5,Gettysburg (1993),Drama|War +4048,3.0,Imaginary Crimes (1994),Drama +4051,0.5,Horrors of Spider Island (Ein Toter Hing im Netz) (1960),Horror|Sci-Fi +4052,2.6875,Antitrust (2001),Crime|Drama|Thriller +4053,2.0,Double Take (2001),Action|Comedy +4054,3.357142857142857,Save the Last Dance (2001),Drama|Romance +4055,2.875,Panic (2000),Drama +4056,3.5,"Pledge, The (2001)",Crime|Drama|Mystery|Thriller +4060,4.0,Love Field (1992),Drama +4061,3.2,The Man in the Moon (1991),Drama|Romance +4062,3.2142857142857144,Mystic Pizza (1988),Comedy|Drama|Romance +4063,3.0,Prelude to a Kiss (1992),Comedy|Drama|Romance +4066,3.4444444444444446,I'm Gonna Git You Sucka (1988),Action|Comedy +4067,1.6666666666666667,Untamed Heart (1993),Drama|Romance +4068,3.25,Sugar & Spice (2001),Comedy +4069,2.480769230769231,"Wedding Planner, The (2001)",Comedy|Romance +4073,1.0,"Invisible Circus, The (2001)",Drama|Romance +4076,5.0,Two Ninas (1999),Comedy|Romance +4077,4.0,"With a Friend Like Harry... (Harry, un ami qui vous veut du bien) (2000)",Drama|Thriller +4079,4.0,Amazon Women on the Moon (1987),Comedy|Sci-Fi +4080,2.8,Baby Boom (1987),Comedy +4081,3.0,Back to the Beach (1987),Comedy +4082,1.0,Barfly (1987),Comedy|Drama|Romance +4084,2.9642857142857144,Beverly Hills Cop II (1987),Action|Comedy|Crime|Thriller +4085,3.676470588235294,Beverly Hills Cop (1984),Action|Comedy|Crime|Drama +4086,4.25,"Big Easy, The (1987)",Action|Crime|Mystery|Romance|Thriller +4088,5.0,"Big Town, The (1987)",Drama|Romance|Thriller +4089,3.0,Born in East L.A. (1987),Comedy +4090,2.8125,"Brave Little Toaster, The (1987)",Animation|Children +4091,3.2,Can't Buy Me Love (1987),Comedy|Romance +4092,2.5,Cherry 2000 (1987),Romance|Sci-Fi +4095,4.5,Cry Freedom (1987),Drama +4098,3.0,"Dead, The (1987)",Drama +4101,4.5,Dogs in Space (1987),Drama +4102,3.8333333333333335,Eddie Murphy Raw (1987),Comedy|Documentary +4103,4.071428571428571,Empire of the Sun (1987),Action|Adventure|Drama|War +4104,0.75,Ernest Goes to Camp (1987),Comedy +4105,3.6458333333333335,"Evil Dead, The (1981)",Fantasy|Horror|Thriller +4106,3.0,Extreme Prejudice (1987),Action|Crime|Drama|Thriller|Western +4108,4.0,Five Corners (1987),Drama +4109,2.0,Flowers in the Attic (1987),Drama|Thriller +4111,3.8333333333333335,Gardens of Stone (1987),Drama|War +4114,5.0,"Good Morning, Babylon (1987)",Drama +4115,3.0,Hiding Out (1987),Comedy +4116,3.4,Hollywood Shuffle (1987),Comedy +4117,3.5833333333333335,Hope and Glory (1987),Drama +4121,3.4545454545454546,Innerspace (1987),Action|Adventure|Comedy|Sci-Fi +4122,4.0,Ironweed (1987),Drama +4123,3.0,Ishtar (1987),Comedy +4124,1.6666666666666667,Jaws: The Revenge (1987),Horror|Thriller +4126,2.8333333333333335,Less Than Zero (1987),Drama +4128,3.925,"Lost Boys, The (1987)",Comedy|Horror|Thriller +4130,2.7,Maid to Order (1987),Comedy|Fantasy +4131,4.0,Making Mr. Right (1987),Comedy|Romance|Sci-Fi +4132,3.2083333333333335,Mannequin (1987),Comedy|Romance +4133,3.3333333333333335,Masters of the Universe (1987),Action|Adventure|Fantasy|Sci-Fi +4135,3.5,"Monster Squad, The (1987)",Adventure|Comedy|Horror +4136,2.0,"Month in the Country, A (1987)",Drama +4139,2.0,No Man's Land (1987),Crime|Drama +4140,5.0,North Shore (1987),Drama|Romance +4141,3.75,Head Over Heels (2001),Comedy|Romance +4142,2.5,Left Behind: The Movie (2000),Action|Adventure|Drama|Thriller +4143,1.6666666666666667,Valentine (2001),Horror|Mystery +4144,4.0,In the Mood For Love (Fa yeung nin wa) (2000),Drama|Romance +4146,2.5,"Million Dollar Hotel, The (2001)",Drama|Mystery|Romance +4148,3.0606060606060606,Hannibal (2001),Horror|Thriller +4149,2.4375,Saving Silverman (Evil Woman) (2001),Comedy|Romance +4151,4.5,"Taste of Others, The (Le goût des autres) (2000)",Comedy|Drama|Romance +4153,2.8333333333333335,Down to Earth (2001),Comedy|Fantasy|Romance +4155,3.0,Sweet November (2001),Drama|Romance +4156,2.0,Company Man (2000),Comedy +4158,1.25,Monkeybone (2001),Animation|Comedy|Fantasy +4159,2.25,3000 Miles to Graceland (2001),Action|Thriller +4161,3.066666666666667,"Mexican, The (2001)",Action|Comedy +4162,1.0,See Spot Run (2001),Comedy +4166,3.25,Series 7: The Contenders (2001),Action|Drama +4167,2.4375,15 Minutes (2001),Thriller +4168,3.1666666666666665,Get Over It (2001),Comedy|Romance +4169,4.5,Blow Dry (a.k.a. Never Better) (2001),Comedy +4171,4.0,Long Night's Journey Into Day (2000),Documentary +4173,3.5,When Brendan Met Trudy (2000),Comedy|Romance +4174,3.8,Avalon (1990),Drama +4175,3.0,Gray's Anatomy (1996),Comedy|Drama +4177,3.6666666666666665,"Mirror Crack'd, The (1980)",Crime|Mystery|Thriller +4178,3.9166666666666665,Of Mice and Men (1939),Drama +4179,4.333333333333333,Pixote (1981),Drama +4180,4.0,Reform School Girls (1986),Action|Drama +4181,4.0,Tapeheads (1988),Comedy +4183,3.0,"Unbelievable Truth, The (1989)",Comedy|Drama +4184,3.8333333333333335,"Bishop's Wife, The (1947)",Comedy|Drama|Romance +4185,4.0,Elvis: That's the Way It Is (1970),Documentary +4186,3.6,"Fortune Cookie, The (1966)",Comedy|Drama|Romance +4187,3.9375,Lilies of the Field (1963),Drama +4188,3.75,Hans Christian Andersen (1952),Children|Musical +4189,4.5,"Greatest Story Ever Told, The (1965)",Drama +4190,4.0,Elmer Gantry (1960),Drama +4191,3.6666666666666665,Alfie (1966),Comedy|Drama|Romance +4194,3.5,I Know Where I'm Going! (1945),Drama|Romance|War +4195,4.0,"Abominable Dr. Phibes, The (1971)",Horror|Mystery +4197,4.0,Real Life (1979),Comedy +4198,3.0,Battle Beyond the Stars (1980),Sci-Fi +4200,3.5,Double Impact (1991),Action +4201,5.0,"End, The (1978)",Comedy +4203,2.125,Harley Davidson and the Marlboro Man (1991),Action|Crime|Drama +4205,3.3333333333333335,Mermaids (1990),Comedy|Drama|Romance +4207,2.0,Navy Seals (1990),Action|Adventure|War +4208,1.0,Unmade Beds (1997),Documentary +4210,3.3,Manhunter (1986),Action|Crime|Drama|Horror|Thriller +4211,3.857142857142857,Reversal of Fortune (1990),Drama +4212,3.3,Death on the Nile (1978),Crime|Mystery +4213,3.5,Deepstar Six (1989),Horror|Sci-Fi|Thriller +4214,3.107142857142857,Revenge of the Nerds (1984),Comedy +4215,1.0,Revenge of the Nerds II: Nerds in Paradise (1987),Comedy +4216,3.8333333333333335,Longtime Companion (1990),Drama +4217,3.7,4 Little Girls (1997),Documentary +4218,4.0,River's Edge (1986),Crime|Drama +4219,3.5,Girls Just Want to Have Fun (1985),Comedy +4220,3.6666666666666665,"Longest Yard, The (1974)",Comedy +4221,3.0,Necessary Roughness (1991),Comedy +4222,3.0,C.H.U.D. (1984),Horror +4223,3.689189189189189,Enemy at the Gates (2001),Drama|War +4224,2.25,Exit Wounds (2001),Action|Thriller +4225,3.5454545454545454,"Dish, The (2001)",Comedy +4226,4.2272727272727275,Memento (2000),Mystery|Thriller +4228,3.15,Heartbreakers (2001),Comedy|Crime|Romance +4229,3.25,Say It Isn't So (2001),Comedy|Romance +4231,3.25,Someone Like You (2001),Comedy|Romance +4232,2.7857142857142856,Spy Kids (2001),Action|Adventure|Children|Comedy +4233,2.5,Tomcats (2001),Comedy +4234,3.1666666666666665,"Tailor of Panama, The (2001)",Drama|Thriller +4235,4.183333333333334,Amores Perros (Love's a Bitch) (2000),Drama|Thriller +4236,3.5,Keep the River on Your Right: A Modern Cannibal Tale (2000),Documentary +4237,3.5,"Gleaners & I, The (Les glaneurs et la glaneuse) (2000)",Documentary +4238,3.2058823529411766,Along Came a Spider (2001),Action|Crime|Mystery|Thriller +4239,3.4864864864864864,Blow (2001),Crime|Drama +4241,2.5,Pokémon 3: The Movie (2001),Animation|Children +4246,3.471830985915493,Bridget Jones's Diary (2001),Comedy|Drama|Romance +4247,2.45,Joe Dirt (2001),Adventure|Comedy|Mystery|Romance +4248,2.5,Josie and the Pussycats (2001),Comedy +4251,4.0,Chopper (2000),Drama|Thriller +4252,5.0,"Circle, The (Dayereh) (2000)",Drama +4254,2.4,Crocodile Dundee in Los Angeles (2001),Comedy|Drama +4255,1.7142857142857142,Freddy Got Fingered (2001),Comedy +4262,3.704081632653061,Scarface (1983),Action|Crime|Drama +4263,4.333333333333333,Days of Wine and Roses (1962),Drama +4265,0.8333333333333334,Driven (2001),Action|Thriller +4266,3.0,"Forsaken, The (2001)",Horror +4267,3.3333333333333335,One Night at McCool's (2001),Comedy +4268,2.0,Town & Country (2001),Comedy +4270,2.734375,"Mummy Returns, The (2001)",Action|Adventure|Comedy|Thriller +4271,3.3333333333333335,Eureka (Yurîka) (2000),Drama +4273,4.333333333333333,Under the Sand (2000),Drama +4274,2.5,Cleopatra (1963),Drama|Romance +4275,2.7857142857142856,Krull (1983),Action|Adventure|Fantasy|Sci-Fi +4276,3.0,Lost in America (1985),Comedy +4277,4.0,"Lost World, The (1925)",Adventure|Sci-Fi +4278,3.3,Triumph of the Will (Triumph des Willens) (1934),Documentary +4279,3.0,True Believer (1989),Crime +4280,3.75,"World According to Garp, The (1982)",Comedy|Drama|Romance +4281,3.0,Candy (1968),Comedy +4282,3.3333333333333335,Fellini Satyricon (1969),Drama|Fantasy +4284,3.0,Frankie and Johnny (1966),Comedy +4290,3.0,For the Boys (1991),Comedy|Drama|Musical +4291,2.4444444444444446,Nine to Five (a.k.a. 9 to 5) (1980),Comedy|Crime +4292,3.857142857142857,Norma Rae (1979),Drama +4293,2.5,Summer Rental (1985),Comedy +4294,3.5,"5,000 Fingers of Dr. T, The (1953)",Children|Fantasy|Musical +4296,2.75,Love Story (1970),Drama|Romance +4297,4.0,Pelle the Conqueror (Pelle erobreren) (1987),Drama +4298,3.75,Rififi (Du rififi chez les hommes) (1955),Crime|Film-Noir|Thriller +4299,3.3392857142857144,"Knight's Tale, A (2001)",Action|Comedy|Romance +4300,2.5,Bread and Roses (2000),Drama +4302,5.0,"King Is Alive, The (2000)",Drama +4304,4.3,Startup.com (2001),Documentary +4305,2.3333333333333335,Angel Eyes (2001),Romance|Thriller +4306,3.8477011494252875,Shrek (2001),Adventure|Animation|Children|Comedy|Fantasy|Romance +4308,3.6363636363636362,Moulin Rouge (2001),Drama|Musical|Romance +4310,2.869047619047619,Pearl Harbor (2001),Action|Drama|Romance|War +4312,3.875,Himalaya (Himalaya - l'enfance d'un chef) (1999),Adventure|Drama +4316,2.0,Ice Castles (1978),Drama +4317,2.8,Love Potion #9 (1992),Comedy|Romance +4318,2.875,Postcards From the Edge (1990),Comedy|Drama +4319,3.0,Apache (1954),Western +4321,3.4642857142857144,City Slickers (1991),Comedy|Western +4322,3.6538461538461537,Eight Men Out (1988),Drama +4324,3.0,"Kentuckian, The (1955)",Drama|Western +4326,4.090909090909091,Mississippi Burning (1988),Crime|Drama|Thriller +4327,3.8214285714285716,"Magnificent Seven, The (1960)",Adventure|Western +4329,3.5,Rio Bravo (1959),Western +4332,2.0,Suspect (1987),Crime|Drama|Thriller +4333,3.0,Throw Momma from the Train (1987),Comedy|Crime +4334,3.5,Yi Yi (2000),Drama +4337,3.0,"Sand Pebbles, The (1966)",Drama|Romance|War +4338,4.75,Twelve O'Clock High (1949),Drama|War +4339,3.625,Von Ryan's Express (1965),Action|Adventure|Drama|War +4340,2.5,"Animal, The (2001)",Comedy +4342,5.0,Big Eden (2000),Drama|Romance +4343,2.725,Evolution (2001),Comedy|Sci-Fi +4344,2.9242424242424243,Swordfish (2001),Action|Crime|Drama +4345,3.25,"Anniversary Party, The (2001)",Drama +4347,3.5,Divided We Fall (Musíme si pomáhat) (2000),Comedy|Drama +4349,4.5,Catch-22 (1970),Comedy|War +4350,1.0,Forgotten Silver (1996),Comedy|Documentary +4351,3.3823529411764706,Point Break (1991),Action|Crime|Thriller +4352,3.6666666666666665,Shag (1989),Comedy|Drama +4353,4.0,Uncommon Valor (1983),Action|War +4354,4.0,Unlawful Entry (1992),Crime|Thriller +4355,2.5,Youngblood (1986),Action|Drama +4356,3.9166666666666665,Gentlemen Prefer Blondes (1953),Comedy|Musical|Romance +4357,3.857142857142857,How to Marry a Millionaire (1953),Comedy|Drama|Romance +4359,3.25,"Seven Year Itch, The (1955)",Comedy +4360,3.0,There's No Business Like Show Business (1954),Musical +4361,3.810344827586207,Tootsie (1982),Comedy|Romance +4366,3.3333333333333335,Atlantis: The Lost Empire (2001),Adventure|Animation|Children|Fantasy +4367,2.842857142857143,Lara Croft: Tomb Raider (2001),Action|Adventure +4368,2.0,Dr. Dolittle 2 (2001),Comedy +4369,3.2875,"Fast and the Furious, The (2001)",Action|Crime|Thriller +4370,2.9272727272727272,A.I. Artificial Intelligence (2001),Adventure|Drama|Sci-Fi +4371,2.0,Baby Boy (2001),Crime|Drama +4372,3.0555555555555554,Crazy/Beautiful (2001),Drama|Romance +4375,4.0,"Adventures of Felix, The (a.k.a. Funny Felix) (Drôle de Félix) (2000)",Comedy|Drama +4378,3.576923076923077,Sexy Beast (2000),Crime|Drama +4380,3.8333333333333335,"Princess and the Warrior, The (Krieger und die Kaiserin, Der) (2000)",Drama|Romance +4381,3.0,"Closet, The (Placard, Le) (2001)",Comedy +4383,2.8333333333333335,"Crimson Rivers, The (Rivières pourpres, Les) (2000)",Crime|Drama|Mystery|Thriller +4384,4.166666666666667,Lumumba (2000),Drama +4386,1.3333333333333333,Cats & Dogs (2001),Children|Comedy +4387,2.6666666666666665,Kiss of the Dragon (2001),Action +4388,2.289473684210526,Scary Movie 2 (2001),Comedy +4389,3.5,Lost and Delirious (2001),Drama +4390,3.0,Rape Me (Baise-moi) (2000),Crime|Drama|Thriller +4391,4.0,"Vertical Ray of the Sun, The (Mua he chieu thang dung) (2000)",Drama +4392,2.0,Alice (1990),Comedy|Drama|Fantasy|Romance +4394,2.3333333333333335,Beach Blanket Bingo (1965),Comedy|Musical +4396,3.5,"Cannonball Run, The (1981)",Action|Comedy +4397,3.0,Cannonball Run II (1984),Action|Comedy +4399,1.0,"Diary of a Chambermaid (Journal d'une femme de chambre, Le) (1964)",Comedy|Drama +4401,4.0,Donovan's Reef (1963),Action|Comedy|Romance +4402,2.0,Dr. Goldfoot and the Bikini Machine (1965),Comedy +4403,3.0,"Fall of the House of Usher, The (House of Usher) (1960)",Horror +4404,3.0,Faust (1926),Drama|Fantasy|Horror +4405,4.5,"Last Laugh, The (Letzte Mann, Der) (1924)",Drama +4406,3.8636363636363638,"Man Who Shot Liberty Valance, The (1962)",Crime|Drama|Western +4407,4.5,Salvador (1986),Drama|Thriller|War +4409,2.4,Shadows and Fog (1991),Comedy|Drama|Mystery|Thriller +4410,4.0,Something Wild (1986),Comedy|Crime|Drama +4411,3.0,Sons of Katie Elder (1965),Western +4414,3.5,X: The Man with the X-Ray Eyes (1963),Sci-Fi|Thriller +4415,3.5,Cheech & Chong's Nice Dreams (1981),Comedy +4417,2.5,"House by the Cemetery, The (Quella villa accanto al cimitero) (1981)",Horror +4420,3.125,"Barefoot Contessa, The (1954)",Drama +4422,4.5,Cries and Whispers (Viskningar och rop) (1972),Drama +4424,3.4285714285714284,"Garden of the Finzi-Continis, The (Giardino dei Finzi-Contini, Il) (1970)",Drama +4426,4.0,Kiss Me Deadly (1955),Film-Noir +4427,4.277777777777778,"Lion in Winter, The (1968)",Drama +4428,5.0,"Misfits, The (1961)",Comedy|Drama|Romance|Western +4432,3.7857142857142856,Sweet Smell of Success (1957),Drama|Film-Noir +4433,2.25,Written on the Wind (1956),Drama +4437,4.125,Suspiria (1977),Horror +4438,4.0,"Fist of Fury (Chinese Connection, The) (Jing wu men) (1972)",Action|Drama|Romance|Thriller +4440,3.6666666666666665,"Big Boss, The (Fists of Fury) (Tang shan da xiong) (1971)",Action|Thriller +4441,2.3333333333333335,Game of Death (1978),Action +4442,5.0,"Last Dragon, The (1985)",Action|Comedy|Drama +4443,4.125,Outland (1981),Action|Sci-Fi|Thriller +4444,4.0,"Way of the Dragon, The (a.k.a. Return of the Dragon) (Meng long guo jiang) (1972)",Action|Crime +4445,1.75,T-Rex: Back to the Cretaceous (1998),Adventure|Documentary|IMAX +4446,3.026315789473684,Final Fantasy: The Spirits Within (2001),Adventure|Animation|Fantasy|Sci-Fi +4447,2.9893617021276597,Legally Blonde (2001),Comedy|Romance +4448,3.25,"Score, The (2001)",Action|Drama +4450,4.0,Bully (2001),Crime|Drama|Thriller +4451,2.5,Jump Tomorrow (2001),Comedy|Drama|Romance +4452,2.6,Made (2001),Comedy +4453,2.0,Michael Jordan to the Max (2000),Documentary|IMAX +4454,4.0,More (1998),Animation|Drama|Sci-Fi|IMAX +4458,3.75,Africa: The Serengeti (1994),Documentary|IMAX +4459,5.0,Alaska: Spirit of the Wild (1997),Documentary|IMAX +4462,3.0,18 Again! (1988),Comedy|Fantasy +4464,3.6,"Accidental Tourist, The (1988)",Comedy|Drama|Romance +4465,3.7857142857142856,"Accused, The (1988)",Drama +4466,5.0,Above the Law (1988),Action|Crime|Drama +4467,3.6153846153846154,"Adventures of Baron Munchausen, The (1988)",Adventure|Comedy|Fantasy +4469,4.0,Appointment with Death (1988),Crime|Mystery +4470,4.5,Ariel (1988),Drama +4471,0.5,Arthur 2: On the Rocks (1988),Comedy|Romance +4473,4.0,Bat*21 (1988),Drama|War +4474,2.6666666666666665,Beaches (1988),Comedy|Drama|Musical +4475,4.0,"Beast of War, The (Beast, The) (1988)",Drama|War +4477,1.0,Big Top Pee-Wee (1988),Adventure|Children|Comedy +4478,3.5833333333333335,Biloxi Blues (1988),Comedy|Drama +4479,4.0,Bird (1988),Drama|Musical +4480,3.0,"Blob, The (1988)",Horror|Sci-Fi +4482,2.5,"Bright Lights, Big City (1988)",Drama +4483,2.5,Caddyshack II (1988),Comedy +4486,2.5,Clean and Sober (1988),Drama +4487,2.0,Cocktail (1988),Drama|Romance +4488,2.875,Colors (1988),Action|Crime|Drama +4489,3.625,Coming to America (1988),Comedy|Romance +4490,3.0,"Couch Trip, The (1988)",Comedy +4491,2.0,Criminal Law (1988),Thriller +4492,2.625,Critters (1986),Comedy|Sci-Fi +4493,4.0,Critters 2: The Main Course (1988),Comedy|Horror|Sci-Fi +4495,2.875,Crossing Delancey (1988),Comedy|Romance +4496,3.0,D.O.A. (1988),Film-Noir|Mystery|Thriller +4498,4.0,"Dead Pool, The (1988)",Action|Crime|Thriller +4499,3.4761904761904763,Dirty Rotten Scoundrels (1988),Comedy +4500,4.5,Drowning by Numbers (1988),Comedy|Drama +4501,3.0,"Elvira, Mistress of the Dark (1988)",Comedy|Horror +4502,1.1666666666666667,Ernest Saves Christmas (1988),Children|Comedy +4503,3.0,Everybody's All-American (1988),Romance +4506,3.375,Frantic (1988),Crime|Mystery|Thriller +4508,3.3,Gorillas in the Mist (1988),Drama +4509,3.25,"Great Outdoors, The (1988)",Comedy +4511,2.5,High Spirits (1988),Comedy +4515,3.25,Imagine: John Lennon (1988),Documentary +4516,3.5,Johnny Be Good (1988),Comedy +4518,4.75,The Lair of the White Worm (1988),Comedy|Horror +4519,3.4,"Land Before Time, The (1988)",Adventure|Animation|Children|Fantasy +4520,2.6666666666666665,License to Drive (1988),Comedy +4521,4.0,Little Nikita (1988),Drama +4522,5.0,Masquerade (1988),Mystery|Romance|Thriller +4523,3.5,Milagro Beanfield War (1988),Comedy|Drama|Fantasy +4524,4.0,Moon Over Parador (1988),Comedy +4526,2.5,My Stepmother Is an Alien (1988),Comedy|Romance|Sci-Fi +4527,3.0,"Night in the Life of Jimmy Reardon, A (1988)",Comedy|Romance +4528,2.0,Off Limits (1988),Action|Thriller|War +4529,2.5,Bagdad Cafe (Out of Rosenheim) (1987),Comedy|Drama +4531,1.25,Red Heat (1988),Action +4532,1.5,Return of the Living Dead Part II (1988),Comedy|Horror +4533,3.8,"Return of the Living Dead, The (1985)",Comedy|Horror|Sci-Fi +4534,3.75,Return to Snowy River (a.k.a. The Man From Snowy River II) (1988),Adventure|Drama|Western +4535,3.8,"Man from Snowy River, The (1982)",Drama|Romance|Western +4537,4.25,Running on Empty (1988),Drama +4538,1.0,Salome's Last Dance (1988),Comedy|Drama +4539,3.0,Salsa (1988),Musical|Romance +4541,3.0,"Serpent and the Rainbow, The (1988)",Horror +4543,3.0,Shoot to Kill (1988),Action|Adventure +4544,2.0,Short Circuit 2 (1988),Comedy|Sci-Fi +4545,3.0714285714285716,Short Circuit (1986),Comedy|Sci-Fi +4546,3.8,"Vanishing, The (Spoorloos) (1988)",Drama|Thriller +4550,2.0,Switching Channels (1988),Comedy +4552,4.125,"Tetsuo, the Ironman (Tetsuo) (1988)",Action|Horror|Sci-Fi|Thriller +4553,4.166666666666667,They Live (1988),Action|Sci-Fi|Thriller +4555,2.0,Torch Song Trilogy (1988),Comedy|Drama|Romance +4557,3.3333333333333335,Tucker: The Man and His Dream (1988),Drama +4558,2.909090909090909,Twins (1988),Comedy +4559,1.0,Vice Versa (1988),Comedy +4560,3.0,Watchers (1988),Horror|Sci-Fi +4561,4.0,Waxwork (1988),Comedy|Horror +4562,3.0,Without a Clue (1988),Comedy|Mystery +4563,2.8,Young Einstein (1988),Comedy +4564,2.6875,Always (1989),Drama|Fantasy|Romance +4565,5.0,American Ninja (1985),Action|Adventure +4566,3.5,American Ninja 2: The Confrontation (1987),Action|Adventure +4567,5.0,American Ninja 3: Blood Hunt (1989),Action|Adventure +4568,4.0,Best of the Best (1989),Action +4569,1.0,Best of the Best 2 (1993),Action +4570,4.166666666666667,"Big Picture, The (1989)",Comedy|Drama +4571,3.4625,Bill & Ted's Excellent Adventure (1989),Adventure|Comedy|Sci-Fi +4572,3.0,Black Rain (1989),Action|Crime|Drama +4573,4.0,Blaze (1989),Comedy|Drama +4577,4.0,Casualties of War (1989),Drama|War +4578,2.0,Chances Are (1989),Comedy|Romance +4584,5.0,Dream a Little Dream (1989),Comedy|Drama|Romance +4585,3.75,"Dream Team, The (1989)",Comedy +4587,2.642857142857143,Earth Girls Are Easy (1988),Comedy|Musical|Sci-Fi +4589,4.0,Eddie and the Cruisers (1983),Drama|Musical|Mystery +4590,3.5,Enemies: A Love Story (1989),Drama +4591,5.0,Erik the Viking (1989),Adventure|Comedy|Fantasy +4592,1.0,"Experts, The (1989)",Comedy +4593,2.0,Family Business (1989),Comedy +4600,4.0,Gross Anatomy (a.k.a. A Cut Above) (1989),Comedy|Drama +4602,3.0,Harlem Nights (1989),Comedy|Crime|Romance +4603,2.1666666666666665,Her Alibi (1989),Comedy|Romance +4605,1.0,How to Get Ahead in Advertising (1989),Comedy|Fantasy +4606,2.0,Immediate Family (1989),Drama +4608,4.0,"Innocent Man, An (1989)",Crime|Drama +4610,3.0,"January Man, The (1989)",Comedy|Crime|Mystery|Thriller +4612,4.75,Jesus of Montreal (Jésus de Montréal) (1989),Drama +4614,2.8333333333333335,Kickboxer (1989),Action +4615,1.0,Last Exit to Brooklyn (1989),Drama +4616,3.875,Lean on Me (1989),Drama +4617,5.0,Let It Ride (1989),Comedy +4618,2.9,Leviathan (1989),Horror|Sci-Fi|Thriller +4619,3.25,Little Monsters (1989),Comedy +4621,2.642857142857143,Look Who's Talking (1989),Comedy|Romance +4622,3.0,Loverboy (1989),Comedy +4623,3.5217391304347827,Major League (1989),Comedy +4624,2.0,Meet the Feebles (1989),Animation|Comedy|Musical +4625,2.25,Millennium (1989),Drama|Sci-Fi|Thriller +4626,5.0,Miracle Mile (1989),Drama|Romance|Sci-Fi +4627,2.6666666666666665,Miss Firecracker (1989),Comedy +4628,3.625,New York Stories (1989),Comedy|Drama +4629,2.0,Next of Kin (1989),Action|Crime|Thriller +4630,3.0,No Holds Barred (1989),Action +4632,5.0,"Package, The (1989)",Action|Thriller +4634,3.0,Penn & Teller Get Killed (1989),Adventure|Comedy +4636,2.0,"Punisher, The (1989)",Action +4638,2.4838709677419355,Jurassic Park III (2001),Action|Adventure|Sci-Fi|Thriller +4639,2.607142857142857,America's Sweethearts (2001),Comedy|Romance +4640,2.5,Brother (2000),Action|Crime|Thriller +4641,3.6666666666666665,Ghost World (2001),Comedy|Drama +4642,4.0,Hedwig and the Angry Inch (2000),Comedy|Drama|Musical +4643,2.875,Planet of the Apes (2001),Action|Adventure|Drama|Sci-Fi +4644,3.5,Bread and Tulips (Pane e tulipani) (2000),Comedy|Drama|Romance +4645,4.5,Cure (1997),Crime|Horror|Thriller +4649,2.75,Wet Hot American Summer (2001),Comedy +4652,2.5,"Return of Swamp Thing, The (1989)",Comedy|Horror|Sci-Fi +4654,1.75,Road House (1989),Action|Drama +4655,3.0,Romero (1989),Drama +4658,3.8,Santa Sangre (1989),Drama|Horror|Mystery|Thriller +4659,4.0,Scandal (1989),Drama +4660,4.0,Scenes from the Class Struggle in Beverly Hills (1989),Comedy +4661,3.9,Sea of Love (1989),Crime|Drama|Thriller +4662,3.5,"See No Evil, Hear No Evil (1989)",Comedy|Crime +4663,4.0,She's Out of Control (1989),Comedy +4664,3.625,Shirley Valentine (1989),Comedy|Romance +4666,1.25,Skin Deep (1989),Comedy +4667,2.0,Slaves of New York (1989),Drama +4670,3.25,"Stepfather, The (1987)",Horror|Thriller +4673,2.75,Tango & Cash (1989),Action|Comedy|Crime|Thriller +4674,1.0,Tap (1989),Drama +4675,2.0,Three Fugitives (1989),Action|Comedy +4676,2.8333333333333335,Troop Beverly Hills (1989),Comedy +4677,2.75,Turner & Hooch (1989),Comedy|Crime +4678,3.5625,UHF (1989),Comedy +4679,3.3,Uncle Buck (1989),Comedy +4680,2.0,Vampire's Kiss (1989),Comedy|Fantasy|Horror +4681,3.611111111111111,"War of the Roses, The (1989)",Comedy|Drama +4682,3.6666666666666665,Warlock (1989),Action|Horror +4684,0.5,Worth Winning (1989),Comedy +4686,1.75,Weekend at Bernie's II (1993),Adventure|Comedy +4687,1.0,Billy Liar (1963),Comedy +4688,4.0,Black Robe (1991),Adventure|Drama +4690,2.25,"Cotton Club, The (1984)",Crime|Musical +4691,2.5,Def-Con 4 (1985),Action|Sci-Fi +4692,3.0,"Hotel New Hampshire, The (1984)",Drama +4696,4.75,"Zorro, the Gay Blade (1981)",Comedy +4697,3.375,Basket Case (1982),Comedy|Horror +4698,4.0,Orphans (1997),Comedy|Drama +4699,3.5,Original Sin (2001),Drama|Romance|Thriller +4700,3.138888888888889,"Princess Diaries, The (2001)",Children|Comedy|Romance +4701,3.1538461538461537,Rush Hour 2 (2001),Action|Comedy +4703,3.5,Chocolat (1988),Drama +4704,3.5,Hatari! (1962),Adventure|Comedy +4705,3.75,"Cage aux Folles, La (1978)",Comedy +4706,4.0,"Cage aux Folles II, La (1980)",Comedy +4709,3.5,Paint Your Wagon (1969),Comedy|Musical|Western +4710,3.5,"Shootist, The (1976)",Drama|Western +4711,5.0,Theremin: An Electronic Odyssey (1993),Documentary +4713,3.2,Altered States (1980),Drama|Sci-Fi +4714,2.0,Any Which Way You Can (1980),Comedy +4716,1.0,Bad Timing: A Sensual Obsession (1980),Drama +4717,5.0,"Battle Creek Brawl (Big Brawl, The) (1980)",Action|Comedy +4718,2.871794871794872,American Pie 2 (2001),Comedy +4719,2.75,Osmosis Jones (2001),Action|Animation|Comedy|Crime|Drama|Romance|Thriller +4720,3.489795918367347,"Others, The (2001)",Drama|Horror|Mystery|Thriller +4721,2.5,American Outlaws (2001),Action|Comedy|Western +4722,4.333333333333333,All Over the Guy (2001),Comedy +4723,3.9,"Deep End, The (2001)",Drama +4724,5.0,On the Edge (2001),Drama +4725,4.5,Session 9 (2001),Horror|Thriller +4727,2.3333333333333335,Captain Corelli's Mandolin (2001),Drama|Romance|War +4728,2.9375,Rat Race (2001),Comedy +4731,5.0,Innocence (2000),Drama +4732,2.6666666666666665,Bubble Boy (2001),Comedy +4733,4.0,"Curse of the Jade Scorpion, The (2001)",Comedy +4734,3.2419354838709675,Jay and Silent Bob Strike Back (2001),Adventure|Comedy +4735,2.0,Ghosts of Mars (2001),Horror|Sci-Fi|Thriller +4736,1.0,Summer Catch (2001),Comedy|Drama|Romance +4737,2.75,"American Rhapsody, An (2001)",Drama +4738,4.0,Happy Accidents (2000),Romance|Sci-Fi +4740,2.0,Maybe Baby (2000),Comedy|Romance +4741,4.5,Together (Tillsammans) (2000),Comedy|Drama|Romance +4743,3.75,Tortilla Soup (2001),Comedy|Romance +4744,2.1,Jeepers Creepers (2001),Horror +4745,1.5,O (2001),Drama +4748,1.5,3 Ninjas (1992),Action|Children|Comedy +4749,1.75,3 Ninjas Kick Back (1994),Action|Children|Comedy +4750,1.5,3 Ninjas Knuckle Up (1995),Action|Children +4751,4.0,"Hunter, The (1980)",Action|Thriller +4752,3.75,Maniac (1980),Horror +4753,0.5,Vamp (1986),Comedy|Horror +4754,4.0,"Wicker Man, The (1973)",Drama|Horror|Mystery|Thriller +4755,5.0,Wish Upon a Star (1996),Comedy +4756,1.8333333333333333,"Musketeer, The (2001)",Action|Adventure|Drama|Romance +4757,2.357142857142857,Rock Star (2001),Comedy|Drama|Musical +4761,3.5,Diamond Men (2001),Drama +4765,3.5,L.I.E. (2001),Drama +4766,4.0,"Our Lady of the Assassins (Virgen de los sicarios, La) (2000)",Crime|Drama|Romance +4767,3.0,Abbott and Costello Meet the Mummy (1955),Comedy|Horror +4768,2.75,"Dr. Mabuse: The Gambler (Dr. Mabuse, der Spieler) (1922)",Crime|Mystery|Thriller +4769,3.0,Into the Arms of Strangers: Stories of the Kindertransport (2000),Documentary +4770,3.0,"Glass House, The (2001)",Thriller +4771,4.0,Hardball (2001),Drama +4772,3.875,Dinner Rush (2000),Drama +4774,3.25,Big Trouble (2002),Comedy|Crime +4775,1.0,Glitter (2001),Drama|Musical|Romance +4776,3.310810810810811,Training Day (2001),Crime|Drama|Thriller +4782,2.5,Sidewalks of New York (2001),Comedy|Romance +4783,4.666666666666667,"Endurance: Shackleton's Legendary Antarctic Expedition, The (2000)",Documentary +4784,2.375,"French Lieutenant's Woman, The (1981)",Drama +4787,3.7857142857142856,Little Man Tate (1991),Drama +4789,5.0,Phantom of the Paradise (1974),Comedy|Fantasy|Horror|Musical|Thriller +4792,2.75,13 Ghosts (1960),Horror +4795,3.5,Father Goose (1964),Adventure|Comedy|Romance|War +4796,5.0,"Grass Is Greener, The (1960)",Comedy|Romance +4798,3.5,Indiscreet (1958),Comedy|Romance +4799,3.7857142857142856,"It's a Mad, Mad, Mad, Mad World (1963)",Action|Adventure|Comedy|Crime +4800,3.75,King Solomon's Mines (1937),Action|Adventure|Drama|Romance|Thriller +4801,4.5,"Little Foxes, The (1941)",Drama +4802,4.083333333333333,Operation Petticoat (1959),Action|Comedy|Romance|War +4803,3.0833333333333335,Play Misty for Me (1971),Drama|Thriller +4804,3.0,Pocketful of Miracles (1961),Comedy|Drama +4806,3.75,"Shop on Main Street, The (Obchod na korze) (1965)",Drama +4809,3.8,Silkwood (1983),Drama +4810,4.0,I Never Promised You a Rose Garden (1977),Drama +4811,4.0,Quadrophenia (1979),Drama|Musical +4812,3.0,SpaceCamp (1986),Adventure|Sci-Fi +4814,3.272727272727273,Don't Say a Word (2001),Thriller +4815,3.5,Hearts in Atlantis (2001),Drama +4816,3.2282608695652173,Zoolander (2001),Comedy +4818,2.0,Extreme Days (2001),Action|Adventure|Comedy|Drama +4821,4.333333333333333,Joy Ride (2001),Adventure|Thriller +4822,5.0,Max Keeble's Big Move (2001),Children|Comedy +4823,3.210526315789474,Serendipity (2001),Comedy|Romance +4826,3.5,"Big Red One, The (1980)",Action|Adventure|Drama|War +4830,3.5,Brubaker (1980),Crime|Drama +4831,3.0,Can't Stop the Music (1980),Comedy|Musical +4832,3.0,Carny (1980),Drama +4833,4.0,"Changeling, The (1980)",Horror|Mystery|Thriller +4834,2.5,Cheech & Chong's Next Movie (1980),Comedy +4835,3.1875,Coal Miner's Daughter (1980),Drama +4836,3.0,"Competition, The (1980)",Drama|Romance +4837,2.25,Cruising (1980),Crime|Drama|Thriller +4840,2.0,"Last Metro, The (Dernier métro, Le) (1980)",Drama|Romance +4842,4.0,"Dogs of War, The (1980)",Drama|War +4844,3.0357142857142856,Bandits (2001),Comedy|Crime|Romance +4846,3.75,Iron Monkey (Siu nin Wong Fei-hung ji: Tit Ma Lau) (1993),Action|Comedy +4848,3.7051282051282053,Mulholland Drive (2001),Crime|Drama|Film-Noir|Mystery|Thriller +4849,3.0,My First Mister (2001),Comedy|Drama +4851,4.0,Things Behind the Sun (2001),Drama +4854,2.0,Clambake (1967),Musical +4855,3.4782608695652173,Dirty Harry (1971),Action|Crime|Thriller +4857,3.5,Fiddler on the Roof (1971),Drama|Musical +4859,1.0,Kansas (1988),Crime|Drama +4861,4.5,Mission to Mir (1997),Documentary|IMAX +4862,3.0,Not Without My Daughter (1991),Drama +4863,4.0,Female Trouble (1975),Comedy|Crime +4865,3.425,From Hell (2001),Crime|Horror|Mystery|Thriller +4866,2.8,"Last Castle, The (2001)",Action +4867,3.7,Riding in Cars with Boys (2001),Comedy|Drama +4873,4.090909090909091,Waking Life (2001),Animation|Drama|Fantasy +4874,3.2083333333333335,K-PAX (2001),Drama|Fantasy|Mystery|Sci-Fi +4875,1.0,On the Line (2001),Comedy|Romance +4876,1.125,Thirteen Ghosts (a.k.a. Thir13en Ghosts) (2001),Horror|Thriller +4878,4.026881720430108,Donnie Darko (2001),Drama|Mystery|Sci-Fi|Thriller +4880,3.8125,Life as a House (2001),Drama +4881,3.65,"Man Who Wasn't There, The (2001)",Crime|Drama +4885,2.25,Domestic Disturbance (2001),Thriller +4886,3.8846153846153846,"Monsters, Inc. (2001)",Adventure|Animation|Children|Comedy|Fantasy +4887,3.0,"One, The (2001)",Action|Sci-Fi|Thriller +4888,3.625,Tape (2001),Drama +4889,3.642857142857143,Heist (2001),Crime|Drama +4890,2.760869565217391,Shallow Hal (2001),Comedy|Fantasy|Romance +4893,3.0,When a Stranger Calls (1979),Horror|Thriller +4895,2.5,"Wash, The (2001)",Comedy +4896,3.657142857142857,Harry Potter and the Sorcerer's Stone (a.k.a. Harry Potter and the Philosopher's Stone) (2001),Adventure|Children|Fantasy +4897,3.0,"Fluffer, The (2001)",Drama|Romance +4898,3.125,Novocaine (2001),Comedy|Crime|Mystery|Thriller +4899,3.25,Black Knight (2001),Adventure|Comedy|Fantasy +4901,3.519230769230769,Spy Game (2001),Action|Crime|Drama|Thriller +4902,3.0,"Devil's Backbone, The (Espinazo del diablo, El) (2001)",Drama|Fantasy|Horror|Thriller|War +4903,4.1,In the Bedroom (2001),Drama +4911,3.0,Jabberwocky (1977),Adventure|Comedy|Fantasy +4912,3.5,Funny Girl (1968),Drama|Musical|Romance +4914,4.15,Breathless (À bout de souffle) (1960),Crime|Drama|Romance +4915,3.0,"Beastmaster, The (1982)",Action|Adventure|Fantasy +4920,4.25,"Now, Voyager (1942)",Drama|Romance +4921,3.1666666666666665,Little Women (1933),Drama|Romance +4923,4.0,Guadalcanal Diary (1943),Action|War +4925,2.0,"Cheap Detective, The (1978)",Comedy +4927,4.5,"Last Wave, The (1977)",Fantasy|Mystery|Thriller +4928,4.0,That Obscure Object of Desire (Cet obscur objet du désir) (1977),Drama +4929,2.7,"Toy, The (1982)",Comedy +4930,5.0,Funeral in Berlin (1966),Action|Drama|Thriller +4932,3.125,Dressed to Kill (1980),Mystery|Thriller +4933,3.0,"Earthling, The (1980)",Adventure|Drama +4936,3.5,Fame (1980),Drama|Musical +4941,3.0714285714285716,Flash Gordon (1980),Action|Adventure|Sci-Fi +4945,5.0,"Enforcer, The (1976)",Crime +4947,3.25,"Gauntlet, The (1977)",Action +4948,1.5,I Bury the Living (1958),Horror +4949,2.0,Invasion U.S.A. (1985),Action|Thriller +4951,2.642857142857143,Lord of the Flies (1990),Adventure|Drama|Thriller +4952,2.5,Morons From Outer Space (1985),Comedy|Sci-Fi +4954,2.8,Ocean's Eleven (a.k.a. Ocean's 11) (1960),Comedy|Crime +4956,3.0,"Stunt Man, The (1980)",Action|Adventure|Comedy|Drama|Romance|Thriller +4957,4.0,Sudden Impact (1983),Crime|Thriller +4958,2.9583333333333335,Behind Enemy Lines (2001),Action|Drama|War +4960,4.0,"Independent, The (2000)",Comedy +4961,3.0,Pornstar: The Legend of Ron Jeremy (2001),Documentary +4963,3.8807692307692307,Ocean's Eleven (2001),Crime|Thriller +4964,4.5,Baran (2001),Adventure|Drama|Romance +4965,3.9,"Business of Strangers, The (2001)",Action|Drama|Thriller +4967,3.9444444444444446,No Man's Land (2001),Drama|War +4968,2.75,Piñero (2001),Drama +4969,3.6,And Then There Were None (1945),Crime|Mystery +4970,3.7222222222222223,"Blue Angel, The (Blaue Engel, Der) (1930)",Drama +4971,3.5,Moscow on the Hudson (1984),Comedy|Drama +4972,3.25,"Owl and the Pussycat, The (1970)",Comedy +4973,4.096,"Amelie (Fabuleux destin d'Amélie Poulain, Le) (2001)",Comedy|Romance +4974,2.923076923076923,Not Another Teen Movie (2001),Comedy +4975,3.0135135135135136,Vanilla Sky (2001),Mystery|Romance|Sci-Fi|Thriller +4976,3.0,Iris (2001),Drama +4977,3.3333333333333335,Kandahar (Safar e Ghandehar) (2001),Drama +4978,3.6,Lantana (2001),Drama|Mystery|Thriller +4979,3.753623188405797,"Royal Tenenbaums, The (2001)",Comedy|Drama +4980,3.1,Bill & Ted's Bogus Journey (1991),Adventure|Comedy|Fantasy|Sci-Fi +4981,4.25,Clockwise (1986),Comedy +4984,1.0,Morgan! (1966),Comedy|Drama|Fantasy +4987,3.0,Spacehunter: Adventures in the Forbidden Zone (1983),Action|Adventure|Sci-Fi +4988,3.0,White Water Summer (1987),Adventure +4989,2.5,How High (2001),Comedy +4990,3.3333333333333335,Jimmy Neutron: Boy Genius (2001),Adventure|Animation|Children|Comedy +4992,2.8,Kate & Leopold (2001),Comedy|Romance +4993,4.1825,"Lord of the Rings: The Fellowship of the Ring, The (2001)",Adventure|Fantasy +4994,3.55,"Majestic, The (2001)",Comedy|Drama|Romance +4995,3.9517543859649122,"Beautiful Mind, A (2001)",Drama|Romance +4996,2.5,Little Otik (Otesánek) (2000),Comedy|Drama|Fantasy +4998,3.0,"Defiant Ones, The (1958)",Adventure|Crime|Drama|Thriller +4999,4.0,Dodsworth (1936),Drama|Romance +5000,3.5,Medium Cool (1969),Drama|Romance +5001,3.5,Sahara (1943),Action|Drama|War +5002,2.75,Fritz the Cat (1972),Animation +5003,3.0,"Nine Lives of Fritz the Cat, The (1974)",Animation +5004,3.0,"Party, The (1968)",Comedy +5008,3.6875,Witness for the Prosecution (1957),Drama|Mystery|Thriller +5009,3.0833333333333335,Ali (2001),Drama +5010,3.7244897959183674,Black Hawk Down (2001),Action|Drama|War +5012,1.5,Yentl (1983),Drama|Musical|Romance +5013,3.3620689655172415,Gosford Park (2001),Comedy|Drama|Mystery +5014,3.4285714285714284,I Am Sam (2001),Drama +5015,3.2777777777777777,Monster's Ball (2001),Drama|Romance +5016,2.25,"Shipping News, The (2001)",Drama +5017,4.666666666666667,"Big Heat, The (1953)",Drama|Film-Noir +5018,3.0,Motorama (1991),Adventure|Comedy|Crime|Drama|Fantasy|Mystery|Sci-Fi|Thriller +5021,3.4,Murder by Death (1976),Comedy|Crime|Mystery|Thriller +5022,4.0,"Servant, The (1963)",Drama +5023,4.0,"Waterdance, The (1992)",Drama +5025,2.75,Orange County (2002),Comedy +5026,2.9,"Brotherhood of the Wolf (Pacte des loups, Le) (2001)",Action|Mystery|Thriller +5027,2.75,Another 48 Hrs. (1990),Action|Comedy|Crime|Drama|Thriller +5028,4.5,What Time Is It There? (Ni neibian jidian) (2001),Drama +5033,2.0,"Russia House, The (1990)",Drama|Thriller +5034,3.5,"Truly, Madly, Deeply (1991)",Drama|Romance +5038,4.0,"Flight of Dragons, The (1982)",Adventure|Animation|Children|Drama|Fantasy +5039,2.0,Dragonslayer (1981),Action|Adventure|Fantasy +5040,3.5,Conan the Destroyer (1984),Action|Adventure|Fantasy +5041,3.0,Fire and Ice (1983),Animation|Fantasy +5042,1.0,Forbidden Zone (1980),Musical|Sci-Fi +5043,3.0,"Formula, The (1980)",Thriller +5046,3.5,Impostor (2002),Action|Drama|Sci-Fi|Thriller +5047,2.0,Kung Pow: Enter the Fist (2002),Action|Comedy +5048,2.3,Snow Dogs (2002),Adventure|Children|Comedy +5049,3.46875,48 Hrs. (1982),Action|Comedy|Crime|Drama +5051,3.25,Italian for Beginners (Italiensk for begyndere) (2000),Comedy|Drama|Romance +5053,3.25,Blankman (1994),Comedy +5054,3.6666666666666665,Brainstorm (1983),Sci-Fi|Thriller +5055,3.25,Dragon: The Bruce Lee Story (1993),Action|Drama +5056,4.0,"Enigma of Kaspar Hauser, The (a.k.a. Mystery of Kaspar Hauser, The) (Jeder für sich und Gott Gegen Alle) (1974)",Crime|Drama +5057,2.0,4 for Texas (1963),Comedy|Western +5059,4.5,Little Dieter Needs to Fly (1997),Documentary +5060,3.7457627118644066,M*A*S*H (a.k.a. MASH) (1970),Comedy|Drama|War +5061,1.6666666666666667,Mrs. Soffel (1984),Drama|Romance +5062,5.0,Seconds (1966),Mystery|Sci-Fi|Thriller +5063,2.0,One-Eyed Jacks (1961),Western +5064,3.8260869565217392,The Count of Monte Cristo (2002),Action|Adventure|Drama|Thriller +5065,2.5714285714285716,"Mothman Prophecies, The (2002)",Drama|Fantasy|Horror|Mystery|Thriller +5066,3.1,"Walk to Remember, A (2002)",Drama|Romance +5069,3.75,Escaflowne: The Movie (Escaflowne) (2000),Action|Adventure|Animation|Drama|Fantasy +5071,5.0,Maelström (2000),Drama|Romance +5072,2.3333333333333335,Metropolis (2001),Animation|Sci-Fi +5073,3.5,"Son's Room, The (Stanza del figlio, La) (2001)",Drama +5074,3.5,Storytelling (2001),Comedy|Drama +5075,4.0,Waydowntown (2000),Comedy +5076,3.5,"Adventures of Huck Finn, The (1993)",Adventure|Children|Comedy|Drama +5079,3.0,Young at Heart (1954),Drama|Musical|Romance +5080,2.75,Slackers (2002),Comedy +5081,3.25,Birthday Girl (2001),Drama|Romance +5083,4.0,Rare Birds (2001),Comedy|Drama +5085,3.1666666666666665,Carmen Jones (1954),Drama|Musical +5087,3.0,Get Out Your Handkerchiefs (Préparez vos mouchoirs) (1978),Comedy|Drama|Romance +5088,4.5,"Going Places (Valseuses, Les) (1974)",Comedy|Crime|Drama +5092,3.0,Big Fat Liar (2002),Children|Comedy +5093,2.1666666666666665,Collateral Damage (2002),Action|Thriller +5094,1.0,Rollerball (2002),Action|Sci-Fi +5095,3.6666666666666665,"Scotland, Pa. (2001)",Comedy|Crime +5096,3.0,Baby's Day Out (1994),Comedy +5097,3.75,Bright Eyes (1934),Comedy|Drama +5098,3.0,Dimples (1936),Musical +5099,3.6666666666666665,Heidi (1937),Children|Drama +5101,5.0,Richard Pryor Here and Now (1983),Comedy|Documentary +5102,4.0,Rookie of the Year (1993),Comedy|Fantasy +5103,3.880952380952381,"Sandlot, The (1993)",Children|Comedy|Drama +5105,3.75,Don't Look Now (1973),Drama|Horror|Thriller +5106,2.25,Crossroads (2002),Comedy|Musical|Romance +5107,3.5,Hart's War (2002),Drama|War +5108,3.9,John Q (2002),Crime|Drama|Thriller +5109,3.5,Return to Never Land (2002),Adventure|Animation|Children +5110,3.1818181818181817,Super Troopers (2001),Comedy|Crime|Mystery +5111,3.0,"Good Son, The (1993)",Drama|Thriller +5114,4.6,"Bad and the Beautiful, The (1952)",Drama +5117,0.5,Funny Lady (1975),Comedy|Musical +5119,4.0,Saturday Night and Sunday Morning (1960),Drama +5120,3.3333333333333335,Sleuth (1972),Comedy|Mystery|Thriller +5121,4.5,Stroszek (1977),Comedy|Drama +5122,4.0,Summer of '42 (1971),Drama +5125,2.0,Used Cars (1980),Comedy +5127,2.6666666666666665,Dragonfly (2002),Drama|Fantasy|Mystery|Romance|Thriller +5128,2.3333333333333335,Queen of the Damned (2002),Fantasy|Horror +5134,3.5,Mean Machine (2001),Comedy|Drama +5135,3.625,Monsoon Wedding (2001),Comedy|Romance +5137,4.5,Scratch (2001),Documentary +5139,3.5,"Bad News Bears, The (1976)",Comedy +5141,3.0,"Bad News Bears in Breaking Training, The (1977)",Comedy +5142,4.0,"Firemen's Ball, The (Horí, má panenko) (1967)",Comedy|Drama +5146,3.6363636363636362,Vampire Hunter D: Bloodlust (Banpaia hantâ D) (2000),Animation|Fantasy|Horror|Sci-Fi +5147,4.125,Wild Strawberries (Smultronstället) (1957),Drama +5151,2.8846153846153846,40 Days and 40 Nights (2002),Comedy|Romance +5152,3.75,We Were Soldiers (2002),Action|Drama|War +5153,3.0,Trouble Every Day (2001),Drama|Horror|Thriller +5159,3.6,Ferngully: The Last Rainforest (1992),Animation|Children|Comedy|Musical +5161,4.0,Intersection (1994),Drama|Romance +5164,4.0,"Troll in Central Park, A (1994)",Animation|Children +5165,3.6666666666666665,Zombie (a.k.a. Zombie 2: The Dead Are Among Us) (Zombi 2) (1979),Horror +5167,4.0,My Favorite Brunette (1947),Comedy|Mystery +5168,4.0,Royal Wedding (1951),Comedy|Musical|Romance +5170,2.8333333333333335,All About the Benjamins (2002),Action|Comedy|Crime +5171,2.1666666666666665,"Time Machine, The (2002)",Action|Adventure|Sci-Fi +5172,2.5,Full Frontal (2002),Comedy|Drama|Romance +5177,4.0,"Magnificent Ambersons, The (1942)",Drama|Romance +5179,3.0,Gloria (1980),Drama|Thriller +5180,3.0,"Great Rock 'n' Roll Swindle, The (1980)",Documentary +5182,3.5,Hawk the Slayer (1980),Action|Fantasy +5186,2.5,Honeysuckle Rose (a.k.a. On the Road Again) (1980),Drama|Romance +5187,4.0,Hopscotch (1980),Comedy +5193,3.6666666666666665,"Jazz Singer, The (1980)",Musical +5198,4.0,"Long Good Friday, The (1980)",Drama|Thriller +5199,3.0,"Long Riders, The (1980)",Western +5202,2.0,Mon oncle d'Amérique (1980),Drama +5203,4.0,The Monster Club (1981),Comedy|Horror +5205,3.5,Motel Hell (1980),Comedy|Horror +5208,4.0,"Ninth Configuration, The (a.k.a. Twinkle, Twinkle, Killer Kane) (1980)",Drama|War +5210,3.5,"Burial Ground (a.k.a. Zombie Horror) (a.k.a. Zombie 3) (Notti del Terrore, Le) (1981)",Horror +5214,3.75,"Oh, God! (1977)",Comedy|Fantasy +5218,3.3968253968253967,Ice Age (2002),Adventure|Animation|Children|Comedy +5219,3.0,Resident Evil (2002),Action|Horror|Sci-Fi|Thriller +5220,2.6,Showtime (2002),Action|Comedy +5222,3.5833333333333335,Kissing Jessica Stein (2001),Comedy|Romance +5223,1.0,Pauline & Paulette (Pauline en Paulette) (2001),Comedy|Drama +5224,1.0,Promises (2001),Documentary +5225,3.980769230769231,And Your Mother Too (Y tu mamá también) (2001),Drama|Romance +5226,3.5,All the Right Moves (1983),Drama|Romance +5227,1.0,Barabbas (1961),Adventure|Drama +5229,5.0,I Think I Do (1997),Comedy +5230,4.0,"Paleface, The (1948)",Comedy|Western +5231,4.0,Road to Morocco (1942),Comedy +5232,4.0,Road to Singapore (1940),Comedy|Musical +5233,4.0,Road to Utopia (1946),Comedy +5234,4.0,Road to Zanzibar (1941),Comedy +5236,1.0,"Tale of Springtime, A (Conte de Printemps) (1990)",Drama|Romance +5237,2.75,Taps (1981),Drama +5238,4.75,Return of the Secaucus 7 (1980),Drama +5241,1.5,Seems Like Old Times (1980),Comedy|Romance +5242,1.5,Serial (1980),Comedy +5243,4.0,"Young Master, The (Shi di chu ma) (1980)",Action|Comedy +5244,5.0,Shogun Assassin (1980),Action|Adventure +5246,1.5,Smokey and the Bandit II (1980),Action|Comedy +5247,2.5,Smokey and the Bandit (1977),Action|Comedy +5248,1.25,Smokey and the Bandit III (1983),Action|Comedy +5250,3.5,Stir Crazy (1980),Comedy +5254,2.840909090909091,Blade II (2002),Action|Horror|Thriller +5255,2.375,Sorority Boys (2002),Comedy +5256,2.0,Stolen Summer (2002),Drama +5258,4.0,George Washington (2000),Drama +5264,5.0,Clockstoppers (2002),Action|Adventure|Sci-Fi|Thriller +5265,3.125,Death to Smoochy (2002),Comedy|Crime|Drama +5266,3.216666666666667,Panic Room (2002),Thriller +5267,3.375,"Rookie, The (2002)",Drama +5269,3.857142857142857,"Piano Teacher, The (La pianiste) (2001)",Drama +5271,4.0,30 Years to Life (2001),Comedy|Drama|Romance +5275,3.25,Boxcar Bertha (1972),Drama +5276,4.0,Crimes of Passion (1984),Drama|Romance|Thriller +5277,2.0,"Evil That Men Do, The (1984)",Action|Thriller +5278,0.5,Fraternity Vacation (1985),Comedy|Romance +5279,1.8333333333333333,Impromptu (1991),Comedy|Romance +5282,3.1666666666666665,High Crimes (2002),Thriller +5283,2.9545454545454546,National Lampoon's Van Wilder (2002),Comedy +5285,3.0,Lucky Break (2001),Comedy|Crime +5288,4.0,"Atomic Cafe, The (1982)",Documentary|War +5291,3.96875,Rashomon (Rashômon) (1950),Crime|Drama|Mystery +5292,3.75,Slap Shot (1977),Comedy +5293,3.2,Changing Lanes (2002),Drama|Thriller +5294,2.95,Frailty (2001),Crime|Drama|Thriller +5296,2.6875,"Sweetest Thing, The (2002)",Comedy|Romance +5297,4.0,"Cat's Meow, The (2002)",Drama|Thriller +5298,3.3333333333333335,Human Nature (2001),Comedy|Romance +5299,3.3627450980392157,My Big Fat Greek Wedding (2002),Comedy|Romance +5300,4.0,3:10 to Yuma (1957),Action|Adventure|Drama|Thriller|Western +5301,5.0,Bite the Bullet (1975),Action|Adventure|Western +5302,3.5,Breakout (1975),Action|Adventure +5303,2.85,Joe Versus the Volcano (1990),Comedy|Romance +5304,3.0,"Rome, Open City (a.k.a. Open City) (Roma, città aperta) (1945)",Drama|War +5305,3.5,Return of the Killer Tomatoes! (1988),Comedy|Horror|Sci-Fi +5307,3.0,Taking Care of Business (1990),Comedy +5308,3.0789473684210527,Three Men and a Baby (1987),Comedy +5309,2.8125,Three Men and a Little Lady (1990),Comedy|Romance +5312,3.375,Murder by Numbers (2002),Crime|Thriller +5313,2.0454545454545454,The Scorpion King (2002),Action|Adventure|Fantasy|Thriller +5315,3.0,Chelsea Walls (2001),Drama +5316,3.0833333333333335,Enigma (2001),Romance|Thriller +5319,4.0,Nine Queens (Nueve reinas) (2000),Crime|Thriller +5323,1.625,Jason X (2002),Horror|Sci-Fi|Thriller +5324,4.0,Life or Something Like It (2002),Comedy|Romance +5325,4.0,Dogtown and Z-Boyz (2001),Documentary +5329,3.8333333333333335,"Salton Sea, The (2002)",Crime|Drama|Thriller +5333,4.0,Bob le Flambeur (1955),Crime|Drama +5334,2.8333333333333335,Cadillac Man (1990),Comedy|Crime +5335,2.0,"Coca-Cola Kid, The (1985)",Comedy|Romance +5337,3.6666666666666665,Delirious (1991),Comedy +5339,3.3125,Husbands and Wives (1992),Comedy|Drama +5341,4.25,Lenny (1974),Drama +5342,2.0,Nomads (1986),Horror|Mystery|Thriller +5343,3.0,"Temp, The (1993)",Drama|Thriller +5344,4.0,Thief of Hearts (1984),Drama|Thriller +5346,3.8333333333333335,Wild Orchid (1990),Drama|Romance +5348,3.5,Hollywood Ending (2002),Comedy|Drama +5349,3.5223880597014925,Spider-Man (2002),Action|Adventure|Sci-Fi|Thriller +5352,1.0,The Big Sleep (1978),Thriller +5353,2.0,Butterflies Are Free (1972),Comedy|Drama +5354,3.25,Cactus Flower (1969),Comedy +5356,0.5,"Giant Spider Invasion, The (1975)",Horror|Sci-Fi +5357,3.5,Iron Will (1994),Adventure +5359,3.0,Rambling Rose (1991),Drama +5360,2.5,"Survivors, The (1983)",Comedy +5361,3.5,White Fang (1991),Adventure +5363,1.0,"New Guy, The (2002)",Comedy +5364,3.4166666666666665,Unfaithful (2002),Drama|Thriller +5365,3.5,"Lady and the Duke, The (Anglaise et le duc, L') (2001)",Drama|Romance +5366,1.0,Whore (1991),Drama +5367,4.166666666666667,My Beautiful Laundrette (1985),Drama|Romance +5372,3.5,Calamity Jane (1953),Musical|Western +5373,3.5,"Cranes Are Flying, The (Letyat zhuravli) (1957)",Drama|Romance|War +5375,3.75,"Harvey Girls, The (1946)",Comedy|Musical|Western +5377,3.644230769230769,About a Boy (2002),Comedy|Drama|Romance +5378,3.1036585365853657,Star Wars: Episode II - Attack of the Clones (2002),Action|Adventure|Sci-Fi|IMAX +5379,4.25,"Believer, The (2001)",Drama +5380,4.0,"Importance of Being Earnest, The (2002)",Comedy|Drama|Romance +5382,3.6,Every Which Way But Loose (1978),Comedy +5383,4.0,"Hound of the Baskervilles, The (1959)",Crime|Horror|Mystery +5384,4.0,I Want to Live! (1958),Crime|Drama +5385,3.75,"Last Waltz, The (1978)",Documentary +5387,3.3,Enough (2002),Drama|Thriller +5388,3.326923076923077,Insomnia (2002),Action|Crime|Drama|Mystery|Thriller +5389,3.1666666666666665,Spirit: Stallion of the Cimarron (2002),Adventure|Animation|Children|Western +5391,4.0,Thirteen Conversations About One Thing (a.k.a. 13 Conversations) (2001),Drama +5395,1.0,"Gambler, The (1974)",Drama +5398,4.25,Requiem for a Heavyweight (1962),Drama +5400,3.088235294117647,"Sum of All Fears, The (2002)",Drama|Thriller +5401,3.4444444444444446,Undercover Brother (2002),Comedy +5404,3.5,84 Charing Cross Road (1987),Drama|Romance +5410,1.5,Silent Running (1972),Drama|Sci-Fi +5413,0.5,Zombie Holocaust (a.k.a. Doctor Butcher M.D.) (Zombi Holocaust) (1980),Horror +5414,3.75,Bad Company (2002),Action|Comedy|Crime +5415,3.4166666666666665,Divine Secrets of the Ya-Ya Sisterhood (2002),Comedy|Drama +5416,1.5,Cherish (2002),Comedy|Drama|Thriller +5417,3.0,"Fast Runner, The (Atanarjuat) (2001)",Drama|Fantasy +5418,3.88,"Bourne Identity, The (2002)",Action|Mystery|Thriller +5419,2.125,Scooby-Doo (2002),Adventure|Children|Comedy|Fantasy|Mystery +5420,2.6666666666666665,Windtalkers (2002),Action|Drama|War +5421,3.5,"Dangerous Lives of Altar Boys, The (2002)",Drama +5422,4.5,"Emperor's New Clothes, The (2001)",Comedy +5425,2.0,Dark Blue World (Tmavomodrý svet) (2001),Drama|War +5427,5.0,Caveman (1981),Comedy +5428,3.0,Cheech & Chong's The Corsican Brothers (1984),Comedy +5433,2.75,Silver Bullet (Stephen King's Silver Bullet) (1985),Adventure|Drama|Horror|Mystery|Thriller +5434,3.5,"Sorry, Wrong Number (1948)",Drama|Film-Noir|Thriller +5438,2.8333333333333335,Men at Work (1990),Action|Comedy +5440,4.5,She Wore a Yellow Ribbon (1949),Western +5443,2.0,Juwanna Mann (2002),Comedy +5444,3.880952380952381,Lilo & Stitch (2002),Adventure|Animation|Children|Sci-Fi +5445,3.6869565217391305,Minority Report (2002),Action|Crime|Mystery|Sci-Fi|Thriller +5446,4.25,Rabbit-Proof Fence (2002),Adventure|Drama +5447,3.1666666666666665,Sunshine State (2002),Drama +5448,2.5,Hey Arnold! The Movie (2002),Adventure|Animation|Children|Comedy +5449,2.736842105263158,Mr. Deeds (2002),Comedy|Romance +5450,2.5,Lovely & Amazing (2001),Comedy|Drama|Romance +5452,1.8333333333333333,Look Who's Talking Now (1993),Children|Comedy|Romance +5458,1.0,Like Mike (2002),Children|Comedy|Fantasy +5459,3.0714285714285716,Men in Black II (a.k.a. MIIB) (a.k.a. MIB 2) (2002),Action|Comedy|Sci-Fi +5460,3.875,"Powerpuff Girls, The (2002)",Action|Animation|Children|Comedy +5462,1.6666666666666667,"Crocodile Hunter: Collision Course, The (2002)",Adventure|Comedy +5463,2.84375,Reign of Fire (2002),Action|Adventure|Fantasy +5464,3.3947368421052633,Road to Perdition (2002),Crime|Drama +5466,1.0,My Wife is an Actress (Ma Femme est une Actrice) (2001),Comedy|Drama|Romance +5470,3.4,The Importance of Being Earnest (1952),Comedy|Romance +5471,3.0,Perfect (1985),Drama|Romance +5473,5.0,Fox and His Friends (Faustrecht der Freiheit) (1975),Drama +5475,4.5,Z (1969),Drama|Mystery|Thriller +5477,3.25,Sex and Lucia (Lucía y el sexo) (2001),Drama|Romance +5478,2.5,Eight Legged Freaks (2002),Action|Comedy|Horror|Sci-Fi +5479,3.0714285714285716,K-19: The Widowmaker (2002),Action|Adventure|Drama|Thriller +5480,3.1,Stuart Little 2 (2002),Children|Comedy +5481,2.911111111111111,Austin Powers in Goldmember (2002),Comedy +5483,3.6,"Kid Stays in the Picture, The (2002)",Documentary +5489,3.4166666666666665,Nosferatu the Vampyre (Nosferatu: Phantom der Nacht) (1979),Horror +5490,4.25,The Big Bus (1976),Action|Comedy +5498,4.75,Red Beard (Akahige) (1965),Drama +5500,3.9583333333333335,Top Secret! (1984),Comedy +5501,3.0,"Master of Disguise, The (2002)",Comedy|Mystery +5502,3.1666666666666665,Signs (2002),Horror|Sci-Fi|Thriller +5503,1.0,"Last Kiss, The (Ultimo bacio, L') (2001)",Comedy|Drama|Romance +5504,1.8125,Spy Kids 2: The Island of Lost Dreams (2002),Adventure|Children +5505,3.5833333333333335,"Good Girl, The (2002)",Comedy|Drama +5506,3.375,Blood Work (2002),Crime|Drama|Mystery|Thriller +5507,2.4782608695652173,xXx (2002),Action|Crime|Thriller +5508,3.3,24 Hour Party People (2002),Comedy|Drama|Musical +5515,3.5,Songs From the Second Floor (Sånger från andra våningen) (2000),Drama +5516,1.0,Read My Lips (Sur mes lèvres) (2001),Crime|Drama|Thriller +5517,1.0,Nightcap (Merci pour le chocolat) (2000),Crime|Thriller +5518,4.5,Beau Pere (a.k.a. Stepfather) (Beau-père) (1981),Drama +5521,0.5,"Principal, The (1987)",Action|Crime|Drama +5522,4.125,Rollerball (1975),Action|Drama|Sci-Fi +5523,1.8,"Adventures of Pluto Nash, The (2002)",Action|Adventure|Comedy|Sci-Fi +5524,3.0,Blue Crush (2002),Adventure|Drama|Romance +5525,4.0,Mostly Martha (Bella Martha) (2001),Comedy|Drama|Romance +5527,2.6666666666666665,Possession (2002),Drama|Romance +5528,3.1842105263157894,One Hour Photo (2002),Drama|Thriller +5530,2.5,Simone (S1m0ne) (2002),Comedy|Drama|Fantasy|Sci-Fi +5531,2.5,Undisputed (2002),Drama +5534,4.0,Hush! (2001),Drama +5535,1.0,How I Killed My Father (a.k.a. My Father and I) (Comment j'ai tué mon Père) (2001),Drama +5538,3.0,"Care Bears Movie, The (1985)",Animation|Children|Fantasy +5539,3.0,Care Bears Movie II: A New Generation (1986),Animation|Children +5540,3.75,Clash of the Titans (1981),Action|Adventure|Fantasy|Romance +5541,2.9545454545454546,Hot Shots! (1991),Action|Comedy|Romance|War +5544,3.5,Time After Time (1979),Sci-Fi|Thriller +5548,3.5,Down and Out in Beverly Hills (1986),Comedy +5553,2.5,Stakeout (1987),Comedy|Crime|Romance|Thriller +5556,1.0,FearDotCom (a.k.a. Fear.com) (a.k.a. Fear Dot Com) (2002),Crime|Horror|Thriller +5558,2.5,Love and a Bullet (2002),Action|Crime +5560,4.5,À nous la liberté (Freedom for Us) (1931),Comedy|Musical +5561,4.0,True Colors (1991),Drama +5562,2.0,Snipes (2001),Drama|Thriller +5564,2.0,Swimfan (2002),Thriller +5568,3.1666666666666665,Johnny Dangerously (1984),Comedy +5569,3.0,"Last House on the Left, The (1972)",Crime|Horror|Thriller +5570,3.0,Thesis (Tesis) (1996),Drama|Horror|Thriller +5572,2.6666666666666665,Barbershop (2002),Comedy +5573,2.5,Stealing Harvard (2002),Comedy|Crime +5574,3.088235294117647,"Transporter, The (2002)",Action|Crime +5575,1.0,Alias Betty (Betty Fisher et autres histoires) (2001),Crime|Drama +5577,3.2916666666666665,Igby Goes Down (2002),Comedy|Drama +5581,2.5,Betsy's Wedding (1990),Comedy +5582,2.0,Captain Ron (1992),Adventure|Comedy +5585,1.0,Ernest Scared Stupid (1991),Comedy +5588,2.5,"Hills Have Eyes, The (1977)",Horror +5597,2.5,Suburban Commando (1991),Comedy|Sci-Fi +5599,3.5,Tabu: A Story of the South Seas (1931),Drama|Romance +5600,2.5,"Wanderers, The (1979)",Drama +5601,3.0,"Yearling, The (1946)",Children|Drama +5602,3.875,"Ladykillers, The (1955)",Comedy|Crime +5603,4.166666666666667,"Lavender Hill Mob, The (1951)",Comedy|Crime +5604,4.0,"Man in the White Suit, The (1951)",Comedy|Sci-Fi +5605,4.0,Ratcatcher (1999),Drama +5607,4.5,"Son of the Bride (Hijo de la novia, El) (2001)",Comedy|Drama +5608,4.083333333333333,"Das Experiment (Experiment, The) (2001)",Drama|Thriller +5609,2.3333333333333335,Ballistic: Ecks vs. Sever (2002),Action|Thriller +5611,3.3333333333333335,"Four Feathers, The (2002)",Adventure|War +5612,4.0,Trapped (2002),Action|Thriller +5613,3.25,8 Women (2002),Comedy|Crime|Musical|Mystery +5615,1.5,Invincible (2001),Drama +5617,3.4,Secretary (2002),Comedy|Drama|Romance +5618,4.134920634920635,Spirited Away (Sen to Chihiro no kamikakushi) (2001),Adventure|Animation|Fantasy +5619,3.5,"Trials of Henry Kissinger, The (2002)",Documentary +5620,3.090909090909091,Sweet Home Alabama (2002),Comedy|Romance +5621,2.5,"Tuxedo, The (2002)",Action|Comedy +5622,4.5,Charly (2002),Comedy|Drama|Romance +5625,2.3333333333333335,Moonlight Mile (2002),Drama|Romance +5628,3.4,Wasabi (2001),Action|Comedy|Crime|Drama|Thriller +5629,4.0,Jonah: A VeggieTales Movie (2002),Animation|Children|Musical +5630,3.759259259259259,Red Dragon (2002),Crime|Mystery|Thriller +5632,4.0,Bloody Sunday (2002),Drama +5633,4.5,Heaven (2002),Drama +5636,3.0,Welcome to Collinwood (2002),Comedy|Crime +5637,1.5,Flirting (1991),Drama +5638,3.0,Godzilla vs. Mothra (Mosura tai Gojira) (1964),Action|Adventure|Fantasy|Sci-Fi +5641,4.0,"Moderns, The (1988)",Drama +5642,4.0,"Onion Field, The (1979)",Drama +5643,2.5,Powaqqatsi (1988),Documentary +5644,2.75,"Pride of the Yankees, The (1942)",Drama +5646,3.5,Valmont (1989),Drama|Romance +5649,3.0,Horror of Dracula (Dracula) (1958),Horror +5650,3.6,Strange Brew (1983),Comedy +5651,3.0,"Incredible Mr. Limpet, The (1964)",Animation|Comedy|War +5655,3.5,"Fan, The (1981)",Drama|Thriller +5662,4.25,"Wrong Guy, The (1997)",Comedy|Romance|Thriller +5663,3.0,Below (2002),Horror +5666,2.0833333333333335,"Rules of Attraction, The (2002)",Comedy|Drama|Romance|Thriller +5667,3.25,Tuck Everlasting (2002),Drama|Fantasy +5668,3.6,White Oleander (2002),Drama +5669,3.913793103448276,Bowling for Columbine (2002),Documentary +5670,4.125,Comedian (2002),Comedy|Documentary +5672,0.5,Pokemon 4 Ever (a.k.a. Pokémon 4: The Movie) (2002),Adventure|Animation|Children|Fantasy +5673,3.5208333333333335,Punch-Drunk Love (2002),Comedy|Drama|Romance +5675,3.0,Swept Away (2002),Comedy|Romance +5677,3.0,Abandon (2002),Drama|Thriller +5678,2.0,Formula 51 (2001),Action|Comedy|Crime|Thriller +5679,3.4270833333333335,"Ring, The (2002)",Horror|Mystery|Thriller +5680,3.7,Auto Focus (2002),Crime|Drama +5682,3.75,"Grey Zone, The (2001)",Drama +5684,2.0,Naqoyqatsi (2002),Documentary +5685,3.5,Real Women Have Curves (2002),Comedy|Drama +5686,3.6,Russian Ark (Russkiy Kovcheg) (2002),Drama|Fantasy|War +5689,4.0,Billy Bathgate (1991),Crime|Drama +5690,4.0,Grave of the Fireflies (Hotaru no haka) (1988),Animation|Drama|War +5691,2.5,Jason Goes to Hell: The Final Friday (1993),Action|Horror +5693,3.1363636363636362,Saturday Night Fever (1977),Comedy|Drama|Romance +5694,2.25,Staying Alive (1983),Comedy|Drama|Musical +5696,4.0,Urban Cowboy (1980),Drama +5699,4.0,Tom Horn (1980),Western +5700,0.75,The Pumaman (1980),Action|Adventure|Fantasy|Sci-Fi +5703,3.0,Wholly Moses (1980),Comedy +5705,3.25,Xanadu (1980),Fantasy|Musical|Romance +5707,3.1,Absence of Malice (1981),Drama|Romance +5710,2.5,Banana Joe (1981),Comedy +5712,3.5,Blow Out (1981),Mystery|Thriller +5715,2.5,"Burning, The (1981)",Horror +5718,3.0,Carbon Copy (1981),Comedy +5723,4.0,Continental Divide (1981),Comedy|Romance +5729,2.5,Endless Love (1981),Drama|Romance +5732,4.5,Eye of the Needle (1981),Thriller +5734,2.5,Faces of Death 2 (1981),Documentary|Horror +5735,3.0,Faces of Death (1978),Documentary|Horror +5736,2.5,Faces of Death 3 (1985),Documentary|Horror +5737,2.0,Faces of Death 4 (1990),Documentary|Horror +5742,4.0,First Monday in October (1981),Comedy|Drama +5745,4.0,"Four Seasons, The (1981)",Comedy|Drama +5746,4.5,Galaxy of Terror (Quest) (1981),Action|Horror|Mystery|Sci-Fi +5747,3.7142857142857144,Gallipoli (1981),Drama|War +5752,2.8333333333333335,Gregory's Girl (1981),Comedy|Romance +5754,2.0,"Hand, The (1981)",Drama|Horror +5765,5.0,"Looney, Looney, Looney Bugs Bunny Movie, The (1981)",Animation|Children|Comedy +5768,3.5,Modern Problems (1981),Comedy|Fantasy +5772,4.5,My Dinner with André (1981),Drama +5773,3.0,Neighbors (1981),Comedy +5777,4.0,Pennies from Heaven (1981),Musical|Romance +5778,2.5,Pieces (Mil gritos tiene la noche) (One Thousand Cries Has the Night) (1982),Horror|Mystery|Thriller +5779,2.0,Piranha II: The Spawning (1981),Horror|Sci-Fi +5780,3.625,Polyester (1981),Comedy +5782,4.068181818181818,"Professional, The (Le professionnel) (1981)",Action|Drama|Thriller +5784,2.4,Ghost Ship (2002),Horror +5785,3.3181818181818183,Jackass: The Movie (2002),Action|Comedy|Documentary +5787,2.0,"Truth About Charlie, The (2002)",Mystery|Thriller +5788,1.0,All or Nothing (2002),Drama +5791,3.9615384615384617,Frida (2002),Drama|Romance +5792,2.7,Roger Dodger (2002),Comedy|Drama +5795,3.5,"Big Knife, The (1955)",Film-Noir +5796,3.25,Casino Royale (1967),Action|Adventure|Comedy +5799,4.25,Exodus (1960),Drama|Romance|War +5801,4.166666666666667,"Russians Are Coming, the Russians Are Coming, The (1966)",Comedy|War +5803,2.0,I Spy (2002),Action|Adventure|Comedy|Crime +5808,2.0,"Weight of Water, The (2000)",Thriller +5809,2.75,Femme Fatale (2002),Crime|Thriller +5810,3.25,8 Mile (2002),Drama +5812,4.166666666666667,Far from Heaven (2002),Drama|Romance +5815,1.0,Half Past Dead (2002),Action|Crime|Thriller +5816,3.6604938271604937,Harry Potter and the Chamber of Secrets (2002),Adventure|Fantasy +5818,4.0,"Crime of Father Amaro, The (Crimen del padre Amaro, El) (2002)",Drama|Romance +5819,3.5,Interview with the Assassin (2002),Drama +5820,3.8333333333333335,Standing in the Shadows of Motown (2002),Documentary|Musical +5825,4.0,"Life and Death of Colonel Blimp, The (1943)",Drama|Romance|War +5826,4.0,Rio Grande (1950),Romance|Western +5828,5.0,Blackrock (1997),Drama|Thriller +5829,3.0,Men with Brooms (2002),Comedy|Drama|Romance +5830,3.5,Mysterious Island (1961),Adventure|Sci-Fi +5832,0.75,Left Behind II: Tribulation Force (2002),Drama +5833,3.0,Dog Soldiers (2002),Action|Horror +5834,3.0,Fingers (1978),Drama +5836,4.0,Houseboat (1958),Comedy|Romance +5839,4.0,My Father's Glory (La gloire de mon père) (1990),Adventure|Drama +5840,4.0,"My Mother's Castle (Château de ma mère, Le) (1990)",Comedy|Drama +5841,2.0,Return to the Blue Lagoon (1991),Adventure|Romance +5843,4.0,Toy Soldiers (1991),Action|Drama +5846,4.0,Raggedy Man (1981),Drama +5847,3.0,Ragtime (1981),Drama +5850,0.5,Road Games (a.k.a. Roadgames) (1981),Thriller +5853,3.1666666666666665,Scanners (1981),Horror|Sci-Fi|Thriller +5854,4.0,Sharky's Machine (1981),Crime|Drama|Romance +5857,1.0,So Fine (1981),Comedy +5859,2.5,Southern Comfort (1981),Drama|Thriller|War +5864,0.5,"Tarzan, the Ape Man (1981)",Adventure +5866,5.0,They All Laughed (1981),Comedy +5867,3.5,Thief (1981),Crime|Drama|Thriller +5868,4.0,This Is Elvis (1981),Documentary|Drama|Musical +5869,4.0,True Confessions (1981),Crime|Drama +5872,3.096774193548387,Die Another Day (2002),Action|Adventure|Thriller +5873,3.5,The Emperor's Club (2002),Drama +5874,1.75,Friday After Next (2002),Comedy +5875,2.0,Personal Velocity (2002),Drama +5876,3.95,"Quiet American, The (2002)",Drama|Thriller|War +5878,3.90625,Talk to Her (Hable con Ella) (2002),Drama|Romance +5879,2.0,Eight Crazy Nights (Adam Sandler's Eight Crazy Nights) (2002),Animation|Comedy|Musical +5880,0.75,Extreme Ops (2002),Action|Adventure|Crime|Thriller +5881,2.4375,Solaris (2002),Drama|Romance|Sci-Fi +5882,3.0,Treasure Planet (2002),Adventure|Animation|Children|Sci-Fi|IMAX +5883,2.0,They (2002),Horror|Thriller +5888,4.5,Brother (Brat) (1997),Crime|Drama +5891,3.0,I Spit on Your Grave (Day of the Woman) (1978),Horror|Thriller +5893,3.6666666666666665,"Last Seduction, The (1994)",Crime|Drama|Thriller +5899,4.0,Zulu (1964),Action|Drama|War +5900,2.388888888888889,Analyze That (2002),Comedy|Crime +5901,2.5,Empire (2002),Crime|Drama +5902,3.7738095238095237,Adaptation (2002),Comedy|Drama|Romance +5903,3.7285714285714286,Equilibrium (2002),Action|Sci-Fi|Thriller +5909,2.5,Visitor Q (Bizita Q) (2001),Comedy|Drama|Horror +5910,1.0,"Bolero (Uns et les autres, Les) (1981)",Drama|War +5913,3.0,Warning for the Joensson Gang (Varning för Jönssonligan) (1981),Comedy|Crime +5914,4.25,"Vernon, Florida (1981)",Documentary +5915,4.25,Victory (a.k.a. Escape to Victory) (1981),Action|Drama|War +5917,1.5,Zoot Suit (1981),Drama|Musical +5918,3.0,Alone in the Dark (1982),Horror +5923,2.75,Author! Author! (1982),Comedy|Drama +5926,3.0,Best Friends (1982),Comedy|Drama|Romance +5927,2.5,"Best Little Whorehouse in Texas, The (1982)",Comedy|Drama|Musical|Romance +5932,3.8333333333333335,Burden of Dreams (1982),Documentary +5933,4.0,Cannery Row (1982),Drama +5936,3.0,"Come Back to the Five and Dime, Jimmy Dean, Jimmy Dean (1982)",Drama +5938,2.25,Deathtrap (1982),Comedy|Crime|Mystery|Thriller +5940,3.4,Eating Raoul (1982),Comedy +5941,2.0,Drumline (2002),Comedy|Drama|Musical|Romance +5942,2.5,"Hot Chick, The (2002)",Comedy +5943,2.533333333333333,Maid in Manhattan (2002),Comedy|Romance +5944,2.95,Star Trek: Nemesis (2002),Action|Drama|Sci-Fi|Thriller +5945,3.25,About Schmidt (2002),Comedy|Drama +5947,3.75,Evelyn (2002),Drama +5949,3.8333333333333335,Intact (Intacto) (2001),Thriller +5952,4.0611702127659575,"Lord of the Rings: The Two Towers, The (2002)",Adventure|Fantasy +5954,3.574074074074074,25th Hour (2002),Crime|Drama +5955,3.625,Antwone Fisher (2002),Drama +5956,3.6714285714285713,Gangs of New York (2002),Crime|Drama +5957,2.566666666666667,Two Weeks Notice (2002),Comedy|Romance +5958,2.0,"Wild Thornberrys Movie, The (2002)",Animation|Children|Comedy +5959,3.375,Narc (2002),Crime|Drama|Thriller +5960,5.0,Bad Influence (1990),Drama|Thriller +5961,3.5,Blue Steel (1990),Action|Thriller +5962,1.75,Body of Evidence (1993),Drama|Thriller +5963,3.5,"Children's Hour, The (1961)",Drama +5965,3.0,"Duellists, The (1977)",Action|War +5966,2.5,"Kiss Before Dying, A (1956)",Film-Noir|Mystery +5968,3.5,Miami Blues (1990),Comedy|Crime|Drama +5969,2.0,My Girl 2 (1994),Comedy|Drama|Romance +5970,3.6,My Girl (1991),Comedy|Drama|Romance +5971,4.230769230769231,My Neighbor Totoro (Tonari no Totoro) (1988),Animation|Children|Drama|Fantasy +5980,3.5,Black Christmas (1974),Horror|Mystery|Thriller +5981,4.0,"Day of the Triffids, The (1962)",Horror|Sci-Fi +5985,3.0,Asoka (Ashoka the Great) (2001),Action|Drama|Romance +5986,3.25,Fat City (1972),Drama +5989,3.9696969696969697,Catch Me If You Can (2002),Crime|Drama +5991,3.6470588235294117,Chicago (2002),Comedy|Crime|Drama|Musical +5992,3.8333333333333335,"Hours, The (2002)",Drama|Romance +5993,3.0,Max (2002),Drama +5994,3.5,Nicholas Nickleby (2002),Drama|Romance +5995,4.131147540983607,"Pianist, The (2002)",Drama|War +6000,3.0,"House on the Edge of the Park, The (Casa sperduta nel parco, La) (1980)",Horror|Thriller +6001,4.0,"King of Comedy, The (1983)",Comedy|Drama +6003,3.625,Confessions of a Dangerous Mind (2002),Comedy|Crime|Drama|Thriller +6005,4.25,Blue Collar Comedy Tour: The Movie (2003),Comedy|Documentary +6006,1.0,Just Married (2003),Comedy|Romance +6008,3.5,"Son, The (Le fils) (2002)",Drama +6012,1.0,"Guy Thing, A (2003)",Comedy|Romance +6013,1.375,Kangaroo Jack (2003),Action|Comedy +6014,1.0,National Security (2003),Action|Comedy +6016,4.297101449275362,City of God (Cidade de Deus) (2002),Action|Adventure|Crime|Drama|Thriller +6021,4.5,"American Friend, The (Amerikanische Freund, Der) (1977)",Crime|Drama|Mystery|Thriller +6022,4.0,American Me (1992),Drama +6025,3.5,CB4 - The Movie (1993),Comedy +6027,3.3333333333333335,Dogfight (1991),Drama|Romance +6031,3.25,Imitation of Life (1959),Drama|Romance +6032,4.25,"Little Romance, A (1979)",Comedy|Romance +6033,5.0,Mystery Date (1991),Comedy +6035,4.5,Pépé le Moko (1937),Crime|Drama|Romance +6037,3.0,Summer Lovers (1982),Comedy|Drama|Romance +6039,3.5,"Woman in Red, The (1984)",Comedy|Romance +6040,1.6666666666666667,Darkness Falls (2003),Horror|Thriller +6042,4.0,Blind Spot: Hitler's Secretary (Im toten Winkel - Hitlers Sekretärin) (2002),Documentary +6047,3.5,Dead Reckoning (1947),Drama|Film-Noir|Mystery +6051,3.5,"Harder They Come, The (1973)",Action|Crime|Drama +6056,4.0,Chaos (2001),Comedy|Crime|Drama +6057,1.8333333333333333,Biker Boyz (2003),Action|Crime|Drama +6058,2.4444444444444446,Final Destination 2 (2003),Horror|Thriller +6059,3.0714285714285716,"Recruit, The (2003)",Action|Thriller +6060,2.75,"Guru, The (2002)",Comedy|Romance +6062,3.8,Lost in La Mancha (2002),Documentary +6063,4.25,May (2002),Drama|Horror +6064,3.5,"Harder They Fall, The (1956)",Drama|Film-Noir +6073,4.0,Victim (1961),Crime|Drama +6077,4.5,Evil Under the Sun (1982),Crime|Drama|Mystery +6078,3.25,Firefox (1982),Action|Sci-Fi|Thriller +6084,3.0,Honkytonk Man (1982),Comedy|Drama +6091,3.5,Labyrinth of Passion (Laberinto de Pasiones) (1982),Comedy +6092,2.0,"Last American Virgin, The (1982)",Comedy|Drama +6093,4.125,"Last Unicorn, The (1982)",Animation|Children|Fantasy +6095,2.75,Dragon Lord (a.k.a. Dragon Strike) (Long Xiao Ye) (1982),Action +6096,3.0,Making Love (1982),Drama +6100,2.5,"Midsummer Night's Sex Comedy, A (1982)",Comedy|Romance +6101,4.0,Missing (1982),Drama|Mystery|Thriller +6103,2.0,Monsignor (1982),Drama|War +6104,3.95,Monty Python Live at the Hollywood Bowl (1982),Comedy +6105,3.0,Moonlighting (1982),Drama +6107,5.0,"Night of the Shooting Stars (Notte di San Lorenzo, La) (1982)",Drama|War +6109,0.5,One from the Heart (1982),Drama|Romance +6114,3.5,Permanent Vacation (1982),Drama +6115,2.8333333333333335,Personal Best (1982),Drama +6116,4.5,"Pirate Movie, The (1982)",Adventure|Comedy|Musical +6121,4.5,Querelle (1982),Drama +6122,4.5,Richard Pryor Live on the Sunset Strip (1982),Comedy|Documentary +6123,4.0,Sunless (Sans Soleil) (1983),Documentary +6124,3.0,Savannah Smiles (1982),Comedy +6125,4.0,"Secret Policeman's Other Ball, The (1982)",Comedy|Documentary|Musical +6126,4.0,"Veronika Voss (Sehnsucht der Veronika Voss, Die) (1982)",Drama +6127,2.25,Shoot the Moon (1982),Drama +6132,3.5,"New York Ripper, The (Squartatore di New York, Lo) (1982)",Crime|Horror|Mystery|Thriller +6133,4.5,"State of Things, The (Stand der Dinge, Der) (1982)",Drama +6140,3.5,Tenebre (1982),Horror|Mystery|Thriller +6143,2.0,Trail of the Pink Panther (1982),Comedy|Crime +6148,3.0,White Dog (1982),Drama|Horror|Thriller +6154,1.0,Deliver Us from Eva (2003),Comedy|Romance +6155,3.1333333333333333,How to Lose a Guy in 10 Days (2003),Comedy|Romance +6156,3.2,Shanghai Knights (2003),Action|Adventure|Comedy +6157,2.482142857142857,Daredevil (2003),Action|Crime +6159,1.5,All the Real Girls (2003),Drama|Romance +6162,2.0,Gerry (2002),Adventure|Drama +6163,5.0,He Loves Me... He Loves Me Not (À la folie... pas du tout) (2002),Romance|Thriller +6166,4.0,Dennis the Menace (1993),Comedy +6170,3.4,"Black Stallion, The (1979)",Adventure|Children|Drama +6178,3.5,"Patch of Blue, A (1965)",Drama|Romance +6180,2.0,Q & A (1990),Crime|Drama +6182,4.0,"Thrill of It All, The (1963)",Comedy +6183,3.5,Pillow Talk (1959),Comedy|Musical|Romance +6184,4.1,"Man Who Fell to Earth, The (1976)",Drama|Sci-Fi +6185,2.0,Dark Blue (2003),Action|Crime|Drama|Thriller +6186,2.0,Gods and Generals (2003),Action|Drama|War +6187,4.333333333333333,"Life of David Gale, The (2003)",Crime|Drama|Thriller +6188,3.5,Old School (2003),Comedy +6195,4.0,Stone Reader (2002),Documentary +6197,3.5,Spider (2002),Drama|Mystery +6198,3.5,American Heart (1992),Crime|Drama +6201,3.5,Lady Jane (1986),Drama|Romance +6203,2.0,Life Stinks (1991),Comedy +6204,2.5,"Meteor Man, The (1993)",Comedy +6207,4.0,"Slaughter Rule, The (2002)",Drama +6211,4.25,Ten (2002),Drama +6212,2.642857142857143,Bringing Down the House (2003),Comedy +6213,3.2857142857142856,Tears of the Sun (2003),Action|Drama|Thriller +6214,3.9166666666666665,Irreversible (Irréversible) (2002),Crime|Drama|Mystery|Thriller +6215,3.8333333333333335,Laurel Canyon (2002),Drama +6216,3.7,Nowhere in Africa (Nirgendwo in Afrika) (2001),Drama +6218,3.3902439024390243,Bend It Like Beckham (2002),Comedy|Drama|Romance +6219,2.75,"Hunted, The (2003)",Action|Drama|Thriller +6223,2.8333333333333335,Spun (2001),Comedy|Crime|Drama +6225,3.0,King of Kings (1961),Drama +6227,2.5,Loving You (1957),Drama|Musical +6228,3.25,"Talk of the Town, The (1942)",Comedy|Romance|Thriller +6230,3.5,Bang the Drum Slowly (1973),Drama +6231,3.5,"Benny Goodman Story, The (1955)",Drama|Musical +6232,3.8333333333333335,Born Free (1966),Adventure|Children|Drama +6233,2.75,Born Yesterday (1993),Comedy|Romance +6234,3.0,Equus (1977),Drama|Mystery +6235,4.0,Europa Europa (Hitlerjunge Salomon) (1990),Drama|War +6237,3.6666666666666665,"Glenn Miller Story, The (1953)",Drama +6238,2.8333333333333335,Green Card (1990),Comedy|Drama|Romance +6239,3.0,Journey to the Center of the Earth (1959),Adventure|Children|Sci-Fi +6240,3.0,One Good Cop (1991),Action|Crime|Drama +6242,3.3461538461538463,Ringu (Ring) (1998),Horror|Mystery|Thriller +6243,3.0,Ringu 2 (Ring 2) (1999),Horror|Mystery +6244,4.25,Salaam Bombay! (1988),Drama +6245,3.25,Sweet Charity (1969),Comedy|Drama|Musical|Romance +6247,4.0,Women in Love (1969),Drama|Romance +6249,2.0,Boat Trip (2003),Comedy +6250,2.3333333333333335,Dreamcatcher (2003),Drama|Horror|Sci-Fi|Thriller +6252,1.875,View from the Top (2003),Comedy|Romance +6254,4.1,"Awful Truth, The (1937)",Comedy|Romance +6256,3.5,"House with Laughing Windows, The (Casa dalle finestre che ridono, La) (1976)",Horror|Mystery|Thriller +6257,1.5,I Am Curious (Yellow) (Jag är nyfiken - en film i gult) (1967),Drama +6260,3.25,"Robe, The (1953)",Drama +6261,4.0,Wind (1992),Action|Romance +6263,2.9,Basic (2003),Drama|Thriller|War +6264,2.5,"Core, The (2003)",Action|Drama|Sci-Fi|Thriller +6265,3.0,Head of State (2003),Comedy +6266,4.5,What a Girl Wants (2003),Comedy|Drama|Romance +6268,3.0,Raising Victor Vargas (2002),Comedy|Drama|Romance +6269,4.142857142857143,Stevie (2002),Documentary +6271,4.166666666666667,Day for Night (La Nuit Américaine) (1973),Comedy|Drama|Romance +6273,4.833333333333333,In a Lonely Place (1950),Drama|Film-Noir|Mystery|Romance +6276,3.0,Wake of the Red Witch (1948),Action|Adventure|Drama +6279,4.0,"Good Thief, The (2002)",Crime|Drama +6281,3.4107142857142856,Phone Booth (2002),Drama|Thriller +6283,3.6875,Cowboy Bebop: The Movie (Cowboy Bebop: Tengoku no Tobira) (2001),Action|Animation|Sci-Fi|Thriller +6284,0.5,DysFunktional Family (2003),Comedy|Documentary +6286,4.125,"Man Without a Past, The (Mies vailla menneisyyttä) (2002)",Comedy|Crime|Drama +6287,2.347826086956522,Anger Management (2003),Comedy +6290,2.75,House of 1000 Corpses (2003),Horror +6291,3.3,Lilya 4-Ever (Lilja 4-ever) (2002),Crime|Drama +6294,2.875,Bulletproof Monk (2003),Action|Adventure|Sci-Fi +6295,4.0,Chasing Papi (a.k.a. Papi Chulo) (2003),Comedy +6296,3.5238095238095237,"Mighty Wind, A (2003)",Comedy|Musical +6297,3.1875,Holes (2003),Adventure|Children|Comedy|Mystery +6298,0.5,Malibu's Most Wanted (2003),Comedy|Crime +6299,3.6666666666666665,"Winged Migration (Peuple migrateur, Le) (2001)",Documentary +6300,2.0,Flickering Lights (Blinkende lygter) (2000),Action|Comedy|Crime +6301,3.0,Straw Dogs (1971),Drama|Thriller +6302,1.0,Beginning of the End (1957),Sci-Fi +6303,3.3333333333333335,"Andromeda Strain, The (1971)",Mystery|Sci-Fi +6305,3.25,Fahrenheit 451 (1966),Drama|Sci-Fi +6306,4.0,I Am Trying to Break Your Heart (2002),Documentary +6308,2.75,Legal Eagles (1986),Comedy|Crime|Romance +6314,2.25,Undercover Blues (1993),Comedy|Crime +6315,1.75,Wildcats (1986),Comedy +6316,3.2,"Wiz, The (1978)",Adventure|Children|Comedy|Fantasy|Musical +6318,2.5,"Marrying Man, The (Too Hot to Handle) (1991)",Comedy|Romance +6322,2.8333333333333335,Confidence (2003),Crime|Thriller +6323,3.608695652173913,Identity (2003),Crime|Horror|Mystery|Thriller +6327,4.0,"Decade Under the Influence, A (2003)",Documentary +6329,2.0,Manic (2001),Drama +6331,3.875,Spellbound (2002),Documentary +6332,5.0,"Lizzie McGuire Movie, The (2003)",Children|Comedy|Romance +6333,3.617283950617284,X2: X-Men United (2003),Action|Adventure|Sci-Fi|Thriller +6335,1.5,"Dancer Upstairs, The (2002)",Crime|Drama|Thriller +6337,3.8333333333333335,Owning Mahowny (2003),Crime|Drama|Thriller +6338,2.25,Daddy Day Care (2003),Children|Comedy +6339,4.0,"Man on the Train (Homme du train, L') (2002)",Comedy|Drama +6341,3.5,"Shape of Things, The (2003)",Drama +6342,5.0,"Trip, The (2002)",Comedy|Drama|Romance +6344,3.5,101 Reykjavik (101 Reykjavík) (2000),Comedy|Drama|Romance +6345,3.2,"Chorus Line, A (1985)",Comedy|Drama|Musical +6348,2.0,Breakin' 2: Electric Boogaloo (1984),Musical +6349,2.0,Breakin' (1984),Drama|Musical +6350,4.068181818181818,Laputa: Castle in the Sky (Tenkû no shiro Rapyuta) (1986),Action|Adventure|Animation|Children|Fantasy|Sci-Fi +6355,3.75,"Girls, Les (1957)",Musical +6356,3.5,Gunfight at the O.K. Corral (1957),Western +6357,3.1666666666666665,High Society (1956),Comedy|Musical|Romance +6358,3.8333333333333335,Kiss Me Kate (1953),Comedy|Musical|Romance +6365,3.268292682926829,"Matrix Reloaded, The (2003)",Action|Adventure|Sci-Fi|Thriller|IMAX +6367,2.888888888888889,Down with Love (2003),Comedy|Romance +6368,4.5,Cinemania (2002),Documentary +6369,5.0,Friends and Family (2001),Comedy +6370,3.8333333333333335,"Spanish Apartment, The (L'auberge espagnole) (2002)",Comedy|Drama|Romance +6373,3.1,Bruce Almighty (2003),Comedy|Drama|Fantasy|Romance +6375,4.75,Gigantic (A Tale of Two Johns) (2002),Documentary +6377,3.80327868852459,Finding Nemo (2003),Adventure|Animation|Children|Comedy +6378,3.5272727272727273,"Italian Job, The (2003)",Action|Crime +6379,2.75,Wrong Turn (2003),Horror|Thriller +6380,4.045454545454546,Capturing the Friedmans (2003),Documentary +6383,1.9166666666666667,"2 Fast 2 Furious (Fast and the Furious 2, The) (2003)",Action|Crime|Thriller +6384,3.5,Love the Hard Way (2001),Crime|Drama|Romance +6385,3.7045454545454546,Whale Rider (2002),Drama +6386,3.5,Nevada Smith (1966),Western +6387,4.0,Once a Thief (Zong heng si hai) (1991),Action|Comedy|Crime|Thriller +6390,3.75,Silk Stockings (1957),Musical +6395,2.6666666666666665,"Crazies, The (a.k.a. Code Name: Trixie) (1973)",Action|Drama|Horror|Sci-Fi|Thriller +6400,3.25,Murder on a Sunday Morning (Un coupable idéal) (2001),Documentary +6404,3.5,"White Sheik, The (Sceicco bianco, Lo) (1952)",Comedy|Romance +6405,4.5,Treasure Island (1950),Adventure|Children +6408,3.0,Animals are Beautiful People (1974),Comedy|Documentary +6410,3.0,Car Wash (1976),Comedy +6412,3.75,Destry Rides Again (1939),Comedy|Western +6413,3.5,"Electric Horseman, The (1979)",Comedy|Western +6414,3.5,Gay Purr-ee (1962),Animation|Children|Musical +6415,1.5,Intervista (1987),Comedy|Drama +6416,3.5,King Rat (1965),Drama|War +6419,4.5,Mr. & Mrs. Bridge (1990),Drama +6422,3.3333333333333335,Shenandoah (1965),Drama|War|Western +6423,3.75,Straight Talk (1992),Comedy +6424,1.25,Oscar (1991),Comedy|Crime|Mystery|Romance +6425,1.0,"6th Man, The (Sixth Man, The) (1997)",Comedy +6426,4.0,"Far Country, The (1954)",Western +6427,4.0,"Railway Children, The (1970)",Children|Drama +6428,2.7,Two Mules for Sister Sara (1970),Comedy|War|Western +6429,3.5,Winchester '73 (1950),Western +6431,3.0,Battle Cry (1955),Drama|War +6432,3.5,"Courtship of Eddie's Father, The (1963)",Comedy +6433,3.8333333333333335,"Man with the Movie Camera, The (Chelovek s kino-apparatom) (1929)",Documentary +6436,3.5833333333333335,This Boy's Life (1993),Drama +6440,3.9347826086956523,Barton Fink (1991),Drama|Thriller +6442,3.5,Belle époque (1992),Comedy|Romance +6446,3.5,"Comancheros, The (1961)",Action|Adventure|Drama|Romance +6447,4.5,Duel at Diablo (1966),War +6448,3.3333333333333335,"Flight of the Phoenix, The (1965)",Action|Adventure|Drama +6449,4.0,From the Terrace (1960),Drama +6450,2.8333333333333335,"Heaven Knows, Mr. Allison (1957)",Drama|War +6452,3.9,"Long, Hot Summer, The (1958)",Drama +6454,3.5,Music Box (1989),Drama +6458,3.0,"Blue Max, The (1966)",Adventure|Drama|War +6460,4.0,"Trial, The (Procès, Le) (1962)",Drama +6461,4.4,"Unforgiven, The (1960)",Drama|Western +6464,2.25,Good Burger (1997),Children|Comedy +6465,4.5,Jubilee (1977),Drama +6466,3.25,Mississippi Masala (1991),Drama|Romance +6467,4.0,Quai des Orfèvres (Jenny Lamour) (1947),Crime|Drama +6468,2.5,"Stranger Among Us, A (1992)",Crime|Drama|Romance +6470,3.0,Chisum (1970),Western +6473,3.75,Half Moon Street (1986),Drama|Thriller +6474,2.0,"Truce, The (a.k.a. La Tregua) (1996)",Drama +6476,3.0,Shattered (1991),Mystery|Thriller +6477,3.3333333333333335,"Song of Bernadette, The (1943)",Drama +6480,3.625,Thoroughly Modern Millie (1967),Comedy|Musical +6482,1.25,Dumb and Dumberer: When Harry Met Lloyd (2003),Comedy +6484,3.5,Hollywood Homicide (2003),Action|Crime|Drama +6493,3.25,Alex and Emma (2003),Comedy|Drama|Romance +6498,2.0,Murphy's War (1971),War +6502,3.8076923076923075,28 Days Later (2002),Action|Horror|Sci-Fi +6503,2.0208333333333335,Charlie's Angels: Full Throttle (2003),Action|Adventure|Comedy|Crime|Thriller +6506,4.0,Fulltime Killer (Chuen jik sat sau) (2001),Action|Thriller +6509,4.0,Ali: Fear Eats the Soul (Angst essen Seele auf) (1974),Drama|Romance +6513,3.0,Made for Each Other (1939),Comedy|Drama|Romance +6514,0.5,Ring of Terror (1962),Horror +6516,4.0,Anastasia (1956),Drama +6518,3.0,Flight of the Intruder (1991),Action|War +6521,2.5,"Main Event, The (1979)",Comedy +6522,3.0,Man's Favorite Sport? (1964),Comedy +6525,2.8333333333333335,Nuts (1987),Drama +6527,3.5,Scaramouche (1952),Adventure|Romance +6528,3.5,Start the Revolution Without Me (1970),Comedy +6530,4.125,"Tenant, The (Locataire, Le) (1976)",Drama|Horror|Mystery|Thriller +6531,1.0,"Hour of the Pig, The (1993)",Crime|Drama|Mystery +6533,3.6,"What's Up, Doc? (1972)",Comedy +6534,2.375,Hulk (2003),Action|Adventure|Sci-Fi +6535,2.1666666666666665,"Legally Blonde 2: Red, White & Blonde (2003)",Comedy +6536,4.5,Sinbad: Legend of the Seven Seas (2003),Adventure|Animation|Children|Fantasy +6537,3.0,Terminator 3: Rise of the Machines (2003),Action|Adventure|Sci-Fi +6538,3.7,Swimming Pool (2003),Drama|Mystery|Thriller +6539,3.854609929078014,Pirates of the Caribbean: The Curse of the Black Pearl (2003),Action|Adventure|Comedy|Fantasy +6541,2.85,"League of Extraordinary Gentlemen, The (a.k.a. LXG) (2003)",Action|Fantasy|Sci-Fi +6547,1.0,Northfork (2003),Drama|Fantasy +6548,3.1818181818181817,Bad Boys II (2003),Action|Comedy|Crime|Thriller +6550,2.5,Johnny English (2003),Action|Comedy|Thriller +6552,3.85,Dirty Pretty Things (2002),Crime|Drama|Thriller +6559,4.0,Little Giants (1994),Children|Comedy +6561,3.875,"Mouse That Roared, The (1959)",Comedy|War +6562,3.5,Spencer's Mountain (1963),Comedy|Drama +6564,2.5833333333333335,Lara Croft Tomb Raider: The Cradle of Life (2003),Action|Adventure|Comedy|Romance|Thriller +6565,3.82,Seabiscuit (2003),Drama +6566,0.5,Spy Kids 3-D: Game Over (2003),Action|Adventure|Children +6568,2.75,Camp (2003),Comedy|Musical +6571,4.0,"Mondays in the Sun (Lunes al sol, Los) (2002)",Drama +6579,3.0,"One, Two, Three (1961)",Comedy +6582,3.1666666666666665,Remo Williams: The Adventure Begins (1985),Action|Comedy|Crime|Thriller +6584,2.8333333333333335,"What's Up, Tiger Lily? (1966)",Adventure|Comedy|Crime|Thriller +6585,2.0,White Lightning (1973),Action|Crime|Drama +6586,3.0,American Wedding (American Pie 3) (2003),Comedy +6587,1.0,Gigli (2003),Comedy|Crime|Romance +6591,3.8333333333333335,"Magdalene Sisters, The (2002)",Drama +6592,2.6666666666666665,"Secret Lives of Dentists, The (2002)",Drama +6593,2.4285714285714284,Freaky Friday (2003),Children|Comedy|Fantasy +6595,2.45,S.W.A.T. (2003),Action|Thriller +6596,2.875,"Divorce, Le (2003)",Comedy|Drama|Romance +6598,5.0,Step Into Liquid (2002),Documentary +6599,3.5,Accattone (1961),Drama +6600,1.0,...And God Spoke (1993),Comedy +6602,4.0,Brain Damage (1988),Comedy|Horror +6603,3.0,"Double Life, A (1947)",Crime|Drama|Film-Noir +6609,3.25,"Gospel According to St. Matthew, The (Vangelo secondo Matteo, Il) (1964)",Drama +6611,4.5,Umberto D. (1952),Drama +6612,4.1,Brother's Keeper (1992),Documentary +6613,2.25,"Day of the Dolphin, The (1973)",Drama +6615,2.1666666666666665,Freddy vs. Jason (2003),Action|Horror|Thriller +6617,3.8333333333333335,Open Range (2003),Western +6618,3.6875,Shaolin Soccer (Siu lam juk kau) (2001),Action|Comedy +6620,3.6470588235294117,American Splendor (2003),Comedy|Drama +6624,2.0,Agent Cody Banks (2003),Action|Adventure|Children|Fantasy +6628,3.0,Hot Dog... The Movie (1984),Comedy +6629,3.5,House of Wax (1953),Crime|Horror|Mystery|Thriller +6630,4.0,"Inn of the Sixth Happiness, The (1958)",Adventure|Drama +6636,3.75,"Sure Thing, The (1985)",Comedy|Romance +6638,3.125,Valley Girl (1983),Comedy|Romance +6639,4.25,Wait Until Dark (1967),Drama|Thriller +6641,3.6666666666666665,Code Unknown (Code inconnu: Récit incomplet de divers voyages) (2000),Drama +6643,4.25,Tokyo Story (Tôkyô monogatari) (1953),Drama +6644,0.5,"Green Ray, The (Rayon vert, Le) (1986)",Drama|Romance +6645,3.0,THX 1138 (1971),Action|Adventure|Drama|Sci-Fi +6646,3.3333333333333335,Valley of the Dolls (1967),Drama +6650,4.1,Kind Hearts and Coronets (1949),Comedy|Drama +6658,2.4,10 (1979),Comedy|Romance +6659,3.423076923076923,Tremors (1990),Comedy|Horror|Sci-Fi +6662,3.8333333333333335,"Pink Panther, The (1963)",Comedy|Crime +6663,3.6875,"Pink Panther Strikes Again, The (1976)",Comedy|Crime +6664,3.5,Commando (1985),Action|Adventure +6665,3.5,Dracula (1979),Horror|Romance +6666,4.111111111111111,"Discreet Charm of the Bourgeoisie, The (Charme discret de la bourgeoisie, Le) (1972)",Comedy|Drama|Fantasy +6669,4.75,Ikiru (1952),Drama +6671,0.5,"Angel at My Table, An (1990)",Drama +6676,3.0,Incident at Oglala (1992),Documentary +6678,2.3333333333333335,"Handmaid's Tale, The (1990)",Drama|Sci-Fi +6679,3.5,Revolution OS (2001),Documentary +6684,2.5,Death in Venice (Morte a Venezia) (1971),Drama|Romance +6686,2.1666666666666665,"Medallion, The (2003)",Action|Comedy|Crime|Fantasy +6690,3.5,Don't Tempt Me (Sin noticias de Dios) (2001),Comedy|Fantasy|Mystery +6695,1.5,Jeepers Creepers 2 (2003),Horror|Thriller +6703,3.5,"Order, The (2003)",Horror|Mystery|Thriller +6706,2.0,Taking Sides (2001),Drama +6707,2.5,Cabin Fever (2002),Horror|Thriller +6708,3.75,Matchstick Men (2003),Comedy|Crime|Drama +6709,3.15,Once Upon a Time in Mexico (2003),Action|Adventure|Crime|Thriller +6710,3.3333333333333335,Dummy (2002),Comedy|Drama|Romance +6711,3.8176470588235296,Lost in Translation (2003),Comedy|Drama|Romance +6713,3.8333333333333335,Millennium Actress (Sennen joyû) (2001),Animation|Drama|Romance +6718,4.0,Gotcha! (1985),Comedy +6721,3.75,Once Upon a Time in China (Wong Fei Hung) (1991),Action|Adventure|Drama +6722,3.75,Once Upon a Time in China II (Wong Fei-hung Ji Yi: Naam yi dong ji keung) (1992),Action|Romance +6723,3.5,Once Upon a Time in China III (Wong Fei-hung tsi sam: Siwong tsangba) (1993),Action +6724,3.9166666666666665,Paper Moon (1973),Comedy|Crime|Drama +6725,5.0,Sgt. Pepper's Lonely Hearts Club Band (1978),Adventure|Musical +6728,2.5,"Ugly American, The (1963)",Drama +6730,3.5,Convoy (1978),Action|Comedy|Drama +6731,3.25,Day of the Dead (1985),Horror|Sci-Fi|Thriller +6732,4.25,"Hello, Dolly! (1969)",Comedy|Musical|Romance +6735,3.25,"Rose, The (1979)",Drama +6739,2.5,At War with the Army (1950),Comedy|Musical|Romance +6743,3.6,Jungle Book (1942),Adventure|Fantasy +6744,3.25,Once Bitten (1985),Comedy|Horror +6748,3.0,"Brood, The (1979)",Horror +6751,0.5,Cold Creek Manor (2003),Drama|Thriller +6753,3.4,Secondhand Lions (2003),Children|Comedy|Drama +6754,3.1904761904761907,Underworld (2003),Action|Fantasy|Horror +6755,3.2777777777777777,Bubba Ho-tep (2002),Comedy|Horror +6757,4.0,Demonlover (2002),Crime|Drama|Mystery|Thriller +6760,3.5,In This World (2002),Adventure|Drama +6762,4.0,Yossi & Jagger (2002),Drama|Romance +6763,2.1666666666666665,Duplex (2003),Comedy|Crime +6764,3.25,"Rundown, The (2003)",Action|Adventure|Comedy +6765,3.3333333333333335,Under the Tuscan Sun (2003),Comedy|Drama|Romance +6768,3.75,Luther (2003),Drama +6769,5.0,Mambo Italiano (2003),Comedy +6770,4.25,My Life Without Me (2003),Drama|Romance +6771,1.0,Dorm Daze (National Lampoon Presents Dorm Daze) (2003),Comedy +6772,2.5,To Be and to Have (Être et avoir) (2002),Documentary +6773,3.923076923076923,"Triplets of Belleville, The (Les triplettes de Belleville) (2003)",Animation|Comedy|Fantasy +6774,3.7857142857142856,Videodrome (1983),Fantasy|Horror|Sci-Fi|Thriller +6776,4.375,Lagaan: Once Upon a Time in India (2001),Comedy|Drama|Musical|Romance +6777,3.9444444444444446,Judgment at Nuremberg (1961),Drama +6779,3.75,"Same Time, Next Year (1978)",Comedy|Drama|Romance +6780,4.25,"Brief History of Time, A (1991)",Documentary +6782,4.0,Leningrad Cowboys Go America (1989),Comedy|Musical +6783,4.0,"Rules of the Game, The (La règle du jeu) (1939)",Comedy|Drama +6785,3.2,Seven Brides for Seven Brothers (1954),Comedy|Musical|Romance|Western +6786,3.75,Kiss of the Spider Woman (1985),Drama +6787,4.125,All the President's Men (1976),Drama|Thriller +6788,2.25,Angie (1994),Comedy|Drama|Romance +6790,3.625,Avalon (2001),Drama|Fantasy|Sci-Fi +6791,3.8,Babette's Feast (Babettes gæstebud) (1987),Drama +6793,3.125,Beethoven (1992),Children|Comedy|Drama +6794,2.1666666666666665,Beethoven's 2nd (1993),Children|Comedy +6796,3.9814814814814814,Boyz N the Hood (1991),Crime|Drama +6797,2.25,Bugsy (1991),Crime|Drama +6798,3.0,Bugsy Malone (1976),Children|Comedy|Crime|Musical +6800,3.0,Cobra (1986),Action|Crime +6803,4.0,Phenomena (a.k.a. Creepers) (1985),Horror|Mystery|Thriller +6806,3.0,Time and Tide (Seunlau Ngaklau) (2000),Action|Crime|Thriller +6807,4.054054054054054,Monty Python's The Meaning of Life (1983),Comedy +6808,2.375,Where Eagles Dare (1968),Action|Adventure|War +6810,2.3333333333333335,Sleeping with the Enemy (1991),Drama|Thriller +6811,2.875,PCU (1994),Comedy +6812,2.5,"Rookie, The (1990)",Action|Comedy|Thriller +6813,2.25,"Ghost and Mr. Chicken, The (1966)",Comedy|Romance +6814,3.0,City Heat (1984),Action|Comedy +6816,4.0,Three O'Clock High (1987),Comedy +6818,4.25,Come and See (Idi i smotri) (1985),Drama|War +6820,3.0,Ginger Snaps (2000),Drama|Horror|Thriller +6822,3.0,"Ballad of Little Jo, The (1993)",Drama|Western +6826,1.0,"Shakiest Gun in the West, The (1968)",Comedy|Western +6827,2.5,It's Pat (1994),Comedy +6828,4.0,"Sunday in the Country, A (Un dimanche à la campagne) (1984)",Drama +6829,4.0,"Gun in Betty Lou's Handbag, The (1992)",Comedy|Mystery +6832,3.125,Regarding Henry (1991),Drama +6835,4.0,Alien Contamination (1980),Action|Horror|Sci-Fi +6840,3.5,"Hospital, The (1971)",Comedy|Drama +6850,3.1666666666666665,Leap of Faith (1992),Comedy|Drama +6851,3.5,"Gas, Food, Lodging (1992)",Drama|Romance +6852,4.125,In Cold Blood (1967),Crime|Drama +6856,3.5,Yankee Doodle Dandy (1942),Drama|Musical +6857,3.3636363636363638,Ninja Scroll (Jûbei ninpûchô) (1995),Action|Adventure|Animation|Fantasy +6858,3.25,Knife in the Water (Nóz w wodzie) (1962),Drama +6862,3.5,Out of Time (2003),Crime|Drama|Thriller +6863,3.5294117647058822,School of Rock (2003),Comedy|Musical +6864,3.75,"Concert for George, The (2003)",Documentary|Musical +6867,3.576923076923077,"Station Agent, The (2003)",Comedy|Drama +6868,3.8333333333333335,Wonderland (2003),Crime|Drama|Mystery|Thriller +6869,4.125,Bus 174 (Ônibus 174) (2002),Crime|Documentary +6870,3.619565217391304,Mystic River (2003),Crime|Drama|Mystery +6872,0.5,"House of the Dead, The (2003)",Action|Horror +6873,3.107142857142857,Intolerable Cruelty (2003),Comedy|Romance +6874,3.81981981981982,Kill Bill: Vol. 1 (2003),Action|Crime|Thriller +6875,1.0,Dopamine (2003),Comedy|Drama|Romance +6877,4.0,Girls Will Be Girls (2003),Comedy +6879,3.2,Runaway Jury (2003),Drama|Thriller +6880,2.6666666666666665,"Texas Chainsaw Massacre, The (2003)",Horror +6881,3.55,Pieces of April (2003),Comedy|Drama +6883,4.5,Sylvia (2003),Drama|Romance +6884,4.0,Veronica Guerin (2003),Crime|Drama|Thriller +6885,1.0,In the Cut (2003),Crime|Drama|Mystery|Romance|Thriller +6887,3.0,Radio (2003),Drama +6888,2.4166666666666665,Scary Movie 3 (2003),Comedy|Horror +6889,2.4,Brother Bear (2003),Adventure|Animation|Children +6890,3.35,Elephant (2003),Drama +6892,2.5,"Singing Detective, The (2003)",Comedy|Drama|Musical|Mystery +6893,3.357142857142857,"Italian Job, The (1969)",Action|Comedy|Crime +6896,3.5,Shoah (1985),Documentary|War +6898,4.0,Sweet Sixteen (2002),Drama +6902,3.8333333333333335,Interstate 60 (2002),Adventure|Comedy|Drama|Fantasy|Mystery|Sci-Fi|Thriller +6906,2.5,That Was Then... This Is Now (1985),Drama +6909,3.75,"Eye, The (Gin gwai) (Jian gui) (2002)",Thriller +6918,5.0,"Unvanquished, The (Aparajito) (1957)",Drama +6920,4.5,"Cercle Rouge, Le (Red Circle, The) (1970)",Crime|Thriller +6927,3.25,"Human Stain, The (2003)",Drama|Romance|Thriller +6930,3.5,Girlhood (2003),Documentary +6932,3.75,Shattered Glass (2003),Crime|Drama +6934,3.037037037037037,"Matrix Revolutions, The (2003)",Action|Adventure|Sci-Fi|Thriller|IMAX +6935,3.8333333333333335,"Revolution Will Not Be Televised, The (a.k.a. Chavez: Inside the Coup) (2003)",Documentary +6936,3.1666666666666665,Elf (2003),Children|Comedy|Fantasy +6940,4.0,In My Skin (Dans ma Peau) (2002),Drama +6942,3.581818181818182,Love Actually (2003),Comedy|Drama|Romance +6944,3.1363636363636362,Father of the Bride (1991),Comedy +6945,3.6666666666666665,My Architect: A Son's Journey (2003),Documentary +6947,3.4558823529411766,Master and Commander: The Far Side of the World (2003),Adventure|Drama|War +6950,2.5,"Missing, The (2003)",Adventure|Thriller|Western +6951,2.3333333333333335,"Cat in the Hat, The (2003)",Children|Comedy +6952,3.3333333333333335,Gothika (2003),Horror|Thriller +6953,3.316666666666667,21 Grams (2003),Crime|Drama|Mystery|Romance|Thriller +6954,4.25,"Barbarian Invasions, The (Les invasions barbares) (2003)",Comedy|Crime|Drama|Mystery|Romance +6957,3.5,Bad Santa (2003),Comedy|Crime +6958,2.5,"Haunted Mansion, The (2003)",Children|Comedy|Fantasy|Horror +6959,4.0,Timeline (2003),Action|Adventure|Sci-Fi +6961,3.25,Damage (Fatale) (1992),Drama +6963,4.0,Devil's Playground (2002),Documentary +6964,3.5,Dance with a Stranger (1985),Crime|Drama|Thriller +6966,3.5,Darkman (1990),Action|Crime|Fantasy|Sci-Fi|Thriller +6970,3.5,Desk Set (1957),Comedy|Romance +6971,4.0,Europa (Zentropa) (1991),Drama|Thriller +6974,4.1,"Freshman, The (1990)",Comedy|Crime +6975,3.8,Funny Games (1997),Drama|Horror|Thriller +6977,3.25,New Jack City (1991),Action|Crime|Drama +6978,3.3,Slacker (1991),Comedy|Drama +6979,3.621212121212121,WarGames (1983),Drama|Sci-Fi|Thriller +6981,2.5,"Ordet (Word, The) (1955)",Drama +6982,3.1666666666666665,Forbidden Games (Jeux interdits) (1952),Drama|War +6983,3.5,Jane Eyre (1944),Drama|Romance +6985,4.3,"Passion of Joan of Arc, The (Passion de Jeanne d'Arc, La) (1928)",Drama +6986,4.1,Ben-Hur: A Tale of the Christ (1925),Adventure|Drama|Romance +6987,4.0,"Cabinet of Dr. Caligari, The (Cabinet des Dr. Caligari., Das) (1920)",Crime|Fantasy|Horror +6989,3.1666666666666665,Gorky Park (1983),Crime|Drama|Thriller +6990,4.0,The Great Train Robbery (1978),Action|Adventure|Comedy|Crime|Drama +6991,3.5,"Greystoke: The Legend of Tarzan, Lord of the Apes (1984)",Adventure|Drama|Romance +6992,3.0,Guarding Tess (1994),Comedy|Drama +6993,3.8,Hannah and Her Sisters (1986),Comedy|Drama|Romance +6995,1.0,Hercules in New York (1970),Action|Comedy|Fantasy +6996,2.2,Highlander II: The Quickening (1991),Action|Sci-Fi +6997,3.0,Hoffa (1992),Crime|Drama +6999,3.5,Housesitter (1992),Comedy|Romance +7000,2.9,Hudson Hawk (1991),Action|Adventure|Comedy +7001,3.5,Invasion of the Body Snatchers (1978),Horror|Mystery|Sci-Fi|Thriller +7002,4.5,Mindwalk (1990),Drama +7003,3.0,Kafka (1991),Comedy|Drama|Mystery|Sci-Fi|Thriller +7004,2.8846153846153846,Kindergarten Cop (1990),Action|Comedy|Crime|Thriller +7005,1.5,King Ralph (1991),Comedy +7007,3.3333333333333335,"Last Boy Scout, The (1991)",Action|Comedy|Crime|Drama|Thriller +7008,2.9,Last Tango in Paris (Ultimo tango a Parigi) (1972),Drama|Romance +7009,3.0,Lorenzo's Oil (1992),Drama +7010,3.75,"Lover, The (Amant, L') (1992)",Drama|Romance +7011,3.5,"Bullfighter, The (Matador) (1986)",Comedy|Crime|Drama +7012,2.0,Mr. Destiny (1990),Comedy|Fantasy +7013,3.95,"Night of the Hunter, The (1955)",Drama|Film-Noir|Thriller +7016,1.0,Over the Top (1987),Action|Drama +7017,3.0,Passenger 57 (1992),Action|Thriller +7018,3.0,Presumed Innocent (1990),Crime|Drama|Thriller +7020,4.0,Proof (1991),Comedy|Drama|Romance +7022,3.769230769230769,Battle Royale (Batoru rowaiaru) (2000),Action|Drama|Horror|Thriller +7023,3.0,"Wedding Banquet, The (Xi yan) (1993)",Comedy|Drama|Romance +7024,4.0,"Salo, or The 120 Days of Sodom (Salò o le 120 giornate di Sodoma) (1976)",Drama +7025,4.0,"Midnight Clear, A (1992)",Drama|War +7026,2.0,Summer School (1987),Comedy +7027,3.9,Silverado (1985),Action|Western +7028,4.0,Quick Change (1990),Comedy|Crime +7029,3.0,Rabid (1977),Horror|Thriller +7034,3.7,Show Me Love (Fucking Åmål) (1998),Drama|Romance +7036,2.875,Teen Wolf (1985),Comedy|Fantasy +7038,3.6666666666666665,Things You Can Tell Just by Looking at Her (2000),Drama|Romance +7040,3.5,To Live and Die in L.A. (1985),Action|Crime|Drama|Thriller +7042,2.5,Betty Blue (37°2 le matin) (1986),Drama|Romance +7043,4.25,Vivre sa vie: Film en douze tableaux (My Life to Live) (1962),Drama +7044,3.4166666666666665,Wild at Heart (1990),Crime|Drama|Mystery|Romance|Thriller +7045,3.5,"Witches, The (1990)",Children|Fantasy +7046,2.857142857142857,"Witches of Eastwick, The (1987)",Comedy|Fantasy|Horror|Thriller +7048,4.0,Nothing to Lose (1997),Action|Adventure|Comedy|Crime +7050,3.5,Follow the Fleet (1936),Comedy|Musical|Romance +7051,4.0,"What's New, Pussycat (1965)",Comedy +7055,3.5,Swing Time (1936),Comedy|Musical|Romance +7056,3.875,"Public Enemy, The (1931)",Action|Crime|Drama +7058,3.0,Life with Father (1947),Comedy +7059,3.5,National Velvet (1944),Children|Drama +7060,3.0625,Jesus Christ Superstar (1973),Drama|Musical +7061,3.8333333333333335,Dark Victory (1939),Drama|Romance +7062,3.5,Birdman of Alcatraz (1962),Drama +7063,4.333333333333333,"Aguirre: The Wrath of God (Aguirre, der Zorn Gottes) (1972)",Adventure|Drama +7064,3.857142857142857,Beauty and the Beast (La belle et la bête) (1946),Drama|Fantasy +7065,3.0,"Birth of a Nation, The (1915)",Drama|War +7067,3.0,Juliet of the Spirits (Giulietta degli spiriti) (1965),Comedy|Drama|Fantasy|Romance +7068,3.25,Last Year at Marienbad (L'Année dernière à Marienbad) (1961),Drama|Mystery|Romance +7069,4.25,"Macbeth (a.k.a. Tragedy of Macbeth, The) (1971)",Drama +7070,3.75,Red River (1948),Action|Adventure|Western +7071,3.25,"Woman Under the Influence, A (1974)",Drama +7072,4.0,Stagecoach (1939),Action|Drama|Romance|Western +7073,3.8,"Shot in the Dark, A (1964)",Comedy|Crime|Mystery +7074,4.5,"Navigator, The (1924)",Comedy +7075,4.5,"Court Jester, The (1956)",Adventure|Comedy|Musical +7076,2.8333333333333335,Bullitt (1968),Action|Crime|Drama|Thriller +7078,3.5,Jezebel (1938),Drama +7079,3.5,"Hunchback of Notre Dame, The (1939)",Drama +7080,3.5,42nd Street (1933),Drama|Musical|Romance +7081,5.0,I'm No Angel (1933),Comedy +7082,4.0,That Touch of Mink (1962),Comedy|Romance +7083,2.5,Sweet Dreams (1985),Drama +7084,3.625,"Play It Again, Sam (1972)",Comedy|Romance +7085,3.5,Send Me No Flowers (1964),Comedy|Romance +7086,3.0,Pygmalion (1938),Comedy|Drama +7087,5.0,"Passage to India, A (1984)",Adventure|Drama +7088,4.25,Black Orpheus (Orfeu Negro) (1959),Drama|Romance +7089,4.083333333333333,Amarcord (1973),Comedy|Drama +7090,3.8636363636363638,Hero (Ying xiong) (2002),Action|Adventure|Drama +7091,4.111111111111111,Horse Feathers (1932),Comedy +7093,0.5,"Front Page, The (1974)",Comedy +7095,2.5,Looking for Mr. Goodbar (1977),Drama +7096,4.0,Rivers and Tides (2001),Documentary +7099,4.1,Nausicaä of the Valley of the Wind (Kaze no tani no Naushika) (1984),Adventure|Animation|Drama|Fantasy|Sci-Fi +7101,3.0,Doc Hollywood (1991),Comedy|Romance +7102,2.375,Dragnet (1987),Comedy|Crime|Drama +7104,2.625,1941 (1979),Comedy|War +7107,3.3333333333333335,Foul Play (1978),Comedy|Thriller +7108,1.5,Crime Story (Zhong an zu) (1993),Action|Crime|Drama +7110,3.0,Blind Beast (Môjuu) (1969),Drama|Thriller +7111,4.5,Ryan's Daughter (1970),Drama|Romance +7115,3.75,Deep Red (Profondo rosso) (1975),Horror|Mystery|Thriller +7116,4.7,Diabolique (Les diaboliques) (1955),Horror|Mystery|Thriller +7117,3.0,Leprechaun (1993),Comedy|Horror +7121,3.75,Adam's Rib (1949),Comedy|Romance +7122,3.75,King of Hearts (1966),Comedy|Drama|War +7123,3.75,Naked Lunch (1991),Drama|Fantasy|Mystery|Sci-Fi +7125,3.5,Spring Forward (1999),Drama +7126,4.5,"Killing of a Chinese Bookie, The (1976)",Comedy|Crime|Drama|Film-Noir|Musical +7130,4.0,Darling (1965),Drama +7131,3.5,"Summer Place, A (1959)",Drama +7132,4.0,"Night at the Opera, A (1935)",Comedy|Musical|Romance +7135,3.625,Shoot the Piano Player (Tirez sur le pianiste) (1960),Crime|Drama|Romance|Thriller +7136,4.25,Stolen Kisses (Baisers volés) (1968),Comedy|Drama|Romance +7137,4.0,"Cooler, The (2003)",Comedy|Drama|Romance +7139,3.8529411764705883,In America (2002),Drama|Romance +7142,3.0,Honey (2003),Drama|Romance +7143,3.6444444444444444,"Last Samurai, The (2003)",Action|Adventure|Drama|War +7147,3.827272727272727,Big Fish (2003),Drama|Fantasy|Romance +7149,3.2083333333333335,Something's Gotta Give (2003),Comedy|Drama|Romance +7150,2.3,Stuck on You (2003),Comedy +7151,3.75,Girl with a Pearl Earring (2003),Drama|Romance +7152,4.0,"Statement, The (2003)",Drama|Thriller +7153,4.127840909090909,"Lord of the Rings: The Return of the King, The (2003)",Action|Adventure|Drama|Fantasy +7154,3.4375,Mona Lisa Smile (2003),Drama|Romance +7155,3.25,Calendar Girls (2003),Comedy +7156,4.0,"Fog of War: Eleven Lessons from the Life of Robert S. McNamara, The (2003)",Documentary|War +7158,3.3,House of Sand and Fog (2003),Drama +7160,3.5625,Monster (2003),Crime|Drama +7161,2.5714285714285716,Cheaper by the Dozen (2003),Children|Comedy +7162,3.28125,Cold Mountain (2003),Drama|Romance|War +7163,2.95,Paycheck (2003),Action|Sci-Fi|Thriller +7164,3.3333333333333335,Peter Pan (2003),Action|Adventure|Children|Fantasy +7165,3.5,"Company, The (2003)",Drama|Musical +7171,3.0,Aileen: Life and Death of a Serial Killer (2003),Documentary +7172,4.0,Distant (Uzak) (2002),Drama +7173,2.3461538461538463,Along Came Polly (2004),Comedy|Romance +7177,4.0,Osama (2003),Drama +7178,3.5,"Great Gatsby, The (1974)",Drama +7179,4.0,Wuthering Heights (1992),Drama|Romance +7180,4.0,Odds Against Tomorrow (1959),Crime|Drama|Thriller +7182,3.0,Lord Love a Duck (1966),Comedy +7186,3.5,Once Upon a Crime... (1992),Comedy|Mystery +7189,1.5,"Car 54, Where Are You? (1994)",Comedy +7190,4.0,Jane Eyre (1970),Drama +7192,2.0,Only the Strong (1993),Action +7193,3.5,"Adventures of Ford Fairlane, The (1990)",Action|Comedy +7195,3.5,"Enforcer, The (1951)",Crime|Drama|Film-Noir +7196,3.0,"Men, The (1950)",Drama +7198,3.0,The Pick-up Artist (1987),Comedy|Crime|Drama|Romance +7199,1.0,Melvin Goes to Dinner (2003),Comedy|Drama +7204,0.5,Hells Angels on Wheels (1967),Drama +7206,4.0,Mon Oncle (My Uncle) (1958),Comedy +7207,3.0,Where the Boys Are (1960),Comedy +7208,5.0,Dr. Jekyll and Mr. Hyde (1941),Drama|Horror +7209,3.6666666666666665,"M. Hulot’s Holiday (Mr. Hulot's Holiday) (Vacances de Monsieur Hulot, Les) (1953)",Comedy +7210,3.8333333333333335,My Darling Clementine (1946),Western +7211,4.5,People Will Talk (1951),Comedy|Romance +7212,4.0,I Was a Male War Bride (1949),Comedy|Romance +7215,4.0,To Have and Have Not (1944),Adventure|Drama|Romance|Thriller|War +7216,3.1666666666666665,High Sierra (1941),Crime|Drama|Film-Noir|Thriller +7217,3.75,Dark Passage (1947),Crime|Drama|Film-Noir|Romance|Thriller +7219,4.0,They Drive by Night (1940),Drama +7222,3.0,Reefer Madness (a.k.a. Tell Your Children) (1938),Comedy|Drama +7223,3.1666666666666665,D.O.A. (1950),Drama|Film-Noir|Mystery +7228,2.5,Cool World (1992),Animation|Comedy|Fantasy +7234,3.9,"Strada, La (1954)",Drama +7235,4.0,Ichi the Killer (Koroshiya 1) (2001),Action|Comedy|Crime|Drama|Horror|Thriller +7236,3.0,"Boy and His Dog, A (1975)",Sci-Fi +7238,4.0,Ashes and Diamonds (Popiól i diament) (1958),Drama|War +7245,1.0,Tormented (1960),Horror|Thriller +7247,3.4,Chitty Chitty Bang Bang (1968),Adventure|Children|Comedy|Fantasy|Musical +7248,3.0,"Suriyothai (a.k.a. Legend of Suriyothai, The) (2001)",Action|Adventure|Drama|War +7250,2.0,"Out of Towners, The (1970)",Comedy +7254,3.46875,The Butterfly Effect (2004),Drama|Sci-Fi|Thriller +7255,2.357142857142857,Win a Date with Tad Hamilton! (2004),Comedy|Romance +7256,4.2,Touching the Void (2003),Adventure|Documentary +7257,2.25,"Big Bounce, The (2004)",Comedy|Crime|Thriller +7258,1.5,"Perfect Score, The (2004)",Comedy|Crime +7260,5.0,Latter Days (2003),Comedy|Drama|Romance +7263,3.8636363636363638,Miracle (2004),Drama +7265,3.8333333333333335,"Dreamers, The (2003)",Drama +7266,3.25,"Lost Skeleton of Cadavra, The (2002)",Comedy|Horror|Sci-Fi +7272,2.5,Super Fly (Superfly) (1972),Action|Crime|Drama +7282,0.5,"Hip Hop Witch, Da (2000)",Comedy|Horror|Thriller +7283,1.75,Swing Shift (1984),Drama +7285,3.9375,Thirteen (2003),Drama +7293,3.2758620689655173,50 First Dates (2004),Comedy|Romance +7294,2.1666666666666665,Welcome to Mooseport (2004),Comedy +7299,4.0,Monsieur Ibrahim (Monsieur Ibrahim et les fleurs du Coran) (2003),Drama +7300,4.0,Vanishing Point (1971),Action|Drama +7302,5.0,"Thief of Bagdad, The (1924)",Action|Adventure|Fantasy +7303,3.5,The Diary of Anne Frank (1959),Drama|War +7305,2.5,Black Widow (1987),Crime|Drama|Mystery|Thriller +7307,4.0,Flesh & Blood (1985),Action|Adventure|Drama|War +7308,3.25,King Solomon's Mines (1985),Adventure|Comedy +7309,4.0,"Black Pirate, The (1926)",Action|Adventure +7311,3.0,"Goodbye, Mr. Chips (1939)",Drama|Romance +7312,0.5,"Follow Me, Boys! (1966)",Comedy|Drama +7315,2.0,Against the Ropes (2004),Comedy|Drama +7316,2.6666666666666665,Confessions of a Teenage Drama Queen (2004),Comedy +7317,3.1875,EuroTrip (2004),Adventure|Comedy +7318,3.0416666666666665,"Passion of the Christ, The (2004)",Drama +7319,3.0,Club Dread (2004),Comedy|Horror +7320,4.0,Dirty Dancing: Havana Nights (2004),Romance +7323,3.7142857142857144,"Good bye, Lenin! (2003)",Comedy|Drama +7324,3.5,Hidalgo (2004),Adventure|Drama +7325,2.5,Starsky & Hutch (2004),Action|Comedy|Crime|Thriller +7327,3.8333333333333335,Persona (1966),Drama +7334,3.1666666666666665,"Front, The (1976)",Comedy|Drama +7340,4.5,Just One of the Guys (1985),Comedy +7343,1.5,Wisconsin Death Trip (1999),Documentary +7346,3.269230769230769,"Girl Next Door, The (2004)",Comedy|Romance +7347,3.1666666666666665,Secret Window (2004),Mystery|Thriller +7348,3.357142857142857,Spartan (2004),Thriller +7349,4.5,Broken Wings (Knafayim Shvurot) (2002),Drama +7352,4.0,Wilbur Wants to Kill Himself (2002),Comedy|Drama|Romance +7354,3.0,Mad Dog and Glory (1993),Comedy|Drama|Romance +7355,5.0,Mr. Toad's Wild Ride (a.k.a. The Wind in the Willows) (1996),Adventure|Animation|Comedy +7357,3.75,Peyton Place (1957),Drama|Romance +7358,2.5,Searching for Debra Winger (2002),Documentary +7360,3.4,Dawn of the Dead (2004),Action|Drama|Horror|Thriller +7361,4.122641509433962,Eternal Sunshine of the Spotless Mind (2004),Drama|Romance|Sci-Fi +7362,3.375,Taking Lives (2004),Crime|Drama|Thriller +7366,2.1666666666666665,Jersey Girl (2004),Comedy|Drama|Romance +7367,2.5,"Ladykillers, The (2004)",Comedy|Crime +7369,2.25,Scooby-Doo 2: Monsters Unleashed (2004),Action|Adventure|Children|Comedy|Mystery +7371,3.875,Dogville (2003),Drama|Mystery|Thriller +7372,3.0,Ned Kelly (2003),Drama +7373,3.2857142857142856,Hellboy (2004),Action|Adventure|Fantasy|Horror +7374,4.0,Home on the Range (2004),Animation|Children|Comedy|Musical|Western +7375,4.333333333333333,"Prince & Me, The (2004)",Comedy|Romance +7376,2.3333333333333335,Walking Tall (2004),Action +7379,4.0,The Alamo (2004),Drama|War|Western +7380,4.0,Ella Enchanted (2004),Comedy|Fantasy|Romance +7381,2.6666666666666665,"Whole Ten Yards, The (2004)",Action|Comedy|Crime +7382,3.5,I'm Not Scared (Io non ho paura) (2003),Drama|Mystery|Thriller +7386,4.0,"Ten Commandments, The (1956)",Adventure|Drama +7387,3.6,Dawn of the Dead (1978),Action|Drama|Horror +7394,3.0,Those Magnificent Men in Their Flying Machines (1965),Action|Adventure|Comedy +7395,3.5,Cheaper by the Dozen (1950),Comedy|Drama +7396,4.1,Scenes From a Marriage (Scener ur ett äktenskap) (1973),Drama +7407,2.5,Africa Screams (1949),Adventure|Comedy +7411,2.0,Munchies (1987),Comedy|Horror +7415,2.5,"Late Show, The (1977)",Comedy|Crime|Drama|Mystery +7419,3.875,After Hours (1985),Comedy|Thriller +7437,3.0,Connie and Carla (2004),Comedy +7438,3.6650485436893203,Kill Bill: Vol. 2 (2004),Action|Drama|Thriller +7439,2.7857142857142856,"Punisher, The (2004)",Action|Crime|Thriller +7444,2.8529411764705883,13 Going on 30 (2004),Comedy|Fantasy|Romance +7445,3.391304347826087,Man on Fire (2004),Action|Crime|Drama|Mystery|Thriller +7448,0.5,Envy (2004),Comedy +7449,2.75,Godsend (2004),Drama|Horror|Thriller +7450,2.0,Laws of Attraction (2004),Comedy|Romance +7451,3.517857142857143,Mean Girls (2004),Comedy +7453,3.0,New York Minute (2004),Action|Adventure|Comedy +7454,2.84375,Van Helsing (2004),Action|Adventure|Fantasy|Horror +7456,4.5,Valentin (Valentín) (2002),Drama +7458,3.1875,Troy (2004),Action|Adventure|Drama|War +7459,4.75,Carandiru (2003),Crime|Drama +7460,3.142857142857143,Coffee and Cigarettes (2003),Comedy|Drama +7478,4.0,Swimming to Cambodia (1987),Drama +7481,3.375,Enemy Mine (1985),Adventure|Drama|Sci-Fi +7482,4.0,Enter the Dragon (1973),Action|Crime +7484,3.8333333333333335,Gimme Shelter (1970),Documentary +7487,3.3333333333333335,Henry & June (1990),Drama +7492,3.0,Martin (1977),Drama|Horror +7493,3.8,"Three Faces of Eve, The (1957)",Drama +7505,3.1666666666666665,"Kingdom, The (Riget) (1994)",Drama|Horror|Mystery +7541,3.25,100 Girls (2000),Comedy|Romance +7560,3.375,Fail-Safe (1964),Drama|Thriller|War +7564,5.0,Kwaidan (Kaidan) (1964),Horror +7566,4.625,28 Up (1985),Documentary +7569,3.727272727272727,You Only Live Twice (1967),Action|Adventure|Sci-Fi|Thriller +7570,3.5,Octopussy (1983),Action|Adventure|Thriller +7571,4.0,"Blue Gardenia, The (1953)",Crime|Drama|Film-Noir|Thriller +7572,3.5,Wit (2001),Drama +7573,3.0714285714285716,Never Say Never Again (1983),Action|Adventure|Thriller +7574,5.0,Maborosi (Maboroshi no hikari) (1995),Drama +7577,2.25,"Magic Flute, The (Trollflöjten) (1975)",Comedy|Fantasy|Musical|Romance +7579,2.8333333333333335,Pride and Prejudice (1940),Comedy|Drama|Romance +7583,3.5,In This Our Life (1942),Drama +7584,3.375,Woman of the Year (1942),Comedy|Romance +7585,2.0,Summertime (1955),Drama|Romance +7586,4.0,Soldier of Orange (a.k.a. Survival Run) (Soldaat van Oranje) (1977),Drama|Thriller|War +7587,4.0,"Samouraï, Le (Godson, The) (1967)",Crime|Drama|Thriller +7613,3.0,White Palace (1990),Drama +7614,3.5833333333333335,Oklahoma! (1955),Musical|Romance|Western +7615,3.75,Desert Hearts (1985),Drama +7616,3.75,Body Double (1984),Mystery|Thriller +7619,3.8333333333333335,"Miracle Worker, The (1962)",Drama +7620,4.0,Monster in a Box (1992),Comedy|Drama +7624,4.0,School Ties (1992),Drama +7625,4.0,Girl (1998),Drama +7627,4.5,Just Write (1997),Comedy +7636,1.0,Raising Cain (1992),Horror|Thriller +7650,3.0,"Witchfinder General (Conquerer Worm, The) (1968)",Horror +7669,4.416666666666667,Pride and Prejudice (1995),Drama|Romance +7697,3.5,"Prince and the Showgirl, The (1957)",Comedy|Romance +7698,4.125,"China Syndrome, The (1979)",Drama|Thriller +7700,4.75,"Wages of Fear, The (Salaire de la peur, Le) (1953)",Action|Adventure|Drama|Thriller +7701,1.6666666666666667,Look Who's Talking Too (1990),Comedy|Romance +7702,3.5,"Bells of St. Mary's, The (1945)",Drama +7705,3.5,Pat and Mike (1952),Comedy|Romance +7706,3.5833333333333335,Animal Crackers (1930),Comedy|Musical +7708,2.5,Bedazzled (1967),Comedy|Fantasy +7713,3.5,Cat People (1942),Drama|Horror|Romance|Thriller +7714,3.75,Camelot (1967),Drama|Musical|Romance +7720,4.25,"Four Musketeers, The (1974)",Action|Adventure|Comedy|Romance +7728,3.625,"Postman Always Rings Twice, The (1946)",Crime|Drama|Film-Noir|Thriller +7738,3.75,That's The Way I Like It (a.k.a. Forever Fever) (1998),Comedy|Drama|Romance +7743,3.25,Explorers (1985),Adventure|Children|Sci-Fi +7748,3.5,Pierrot le fou (1965),Crime|Drama +7753,3.5,Tuesdays with Morrie (1999),Drama +7757,4.125,Jason and the Argonauts (1963),Action|Adventure|Fantasy +7759,1.0,Nostalghia (1983),Drama +7764,3.0,"Driller Killer, The (1979)",Drama|Horror +7766,4.071428571428571,Throne of Blood (Kumonosu jô) (1957),Action|Drama|Thriller|War +7767,4.25,"Best of Youth, The (La meglio gioventù) (2003)",Drama +7771,4.5,Zorba the Greek (Alexis Zorbas) (1964),Adventure|Drama +7773,5.0,"Bang, Bang, You're Dead (2002)",Drama +7774,3.5,My Side of the Mountain (1969),Adventure|Children +7782,3.5,Sniper (1993),Action|Drama +7786,3.5,Genghis Blues (1999),Documentary +7787,4.5,To Hell and Back (1955),Action|Drama|War +7789,2.0,"11'09""01 - September 11 (2002)",Drama +7790,4.0,"Bon Voyage, Charlie Brown (and Don't Come Back!) (1980)",Animation|Children|Comedy +7791,2.8333333333333335,Internal Affairs (1990),Crime|Thriller +7792,3.3333333333333335,"Parallax View, The (1974)",Thriller +7802,4.2,"Warriors, The (1979)",Action|Adventure|Crime|Thriller +7809,3.5,Ambush (Rukajärven tie) (1999),Drama|Romance|War +7815,1.5,True Stories (1986),Comedy|Musical +7817,3.5,Zardoz (1974),Fantasy|Sci-Fi +7818,2.5,School For Scoundrels (1960),Comedy +7820,4.0,"Virgin Spring, The (Jungfrukällan) (1960)",Crime|Drama +7822,3.5,Mogambo (1953),Adventure|Drama|Romance +7826,4.0,"Secret Life of Walter Mitty, The (1947)",Comedy|Romance|Thriller +7827,4.5,Cypher (2002),Action|Sci-Fi|Thriller +7831,3.6666666666666665,Another Thin Man (1939),Comedy|Crime|Drama|Mystery|Romance +7832,4.0,"Thin Man Goes Home, The (1945)",Comedy|Crime|Mystery +7833,3.8333333333333335,Shadow of the Thin Man (1941),Comedy|Crime|Mystery +7834,3.6666666666666665,After the Thin Man (1936),Comedy|Crime|Mystery|Romance +7835,3.75,Song of the Thin Man (1947),Comedy|Crime|Drama|Musical|Mystery|Romance +7836,3.5833333333333335,Woodstock (1970),Documentary|Musical +7840,3.8333333333333335,Gunga Din (1939),Adventure|Comedy|War +7844,4.0,"Legend, The (Legend of Fong Sai-Yuk, The) (Fong Sai Yuk) (1993)",Action|Comedy +7845,3.0,Tremors II: Aftershocks (1996),Comedy|Horror|Sci-Fi +7846,2.5,Tremors 3: Back to Perfection (2001),Comedy|Horror|Sci-Fi +7872,2.5,Getting It Right (1989),Comedy|Drama +7878,4.5,Straight to Hell (1987),Comedy|Crime|Western +7881,3.5,White Zombie (1932),Horror +7882,2.5,The Plague of the Zombies (1966),Horror +7883,3.0,I Walked with a Zombie (1943),Drama|Horror +7888,3.5,How to Succeed in Business Without Really Trying (1967),Comedy|Musical +7889,4.5,Pat Garrett and Billy the Kid (1973),Western +7892,2.0,"Street Fighter, The (Gekitotsu! Satsujin ken) (1974)",Action +7894,4.0,"Duck, You Sucker (1971)",Action|Western +7895,3.5,Bring Me the Head of Alfredo Garcia (1974),Crime|Drama|Thriller +7897,3.0,"Ballad of Cable Hogue, The (1970)",Comedy|Western +7899,3.1666666666666665,Master of the Flying Guillotine (Du bi quan wang da po xue di zi) (1975),Action +7914,4.0,Berlin: Symphony of a Great City (Berlin: Die Sinfonie der Großstadt) (1927),Documentary +7915,3.5,Samurai Fiction (SF: Episode One) (1998),Action|Adventure|Comedy +7916,3.5,Gidget (1959),Comedy +7919,4.5,Drunken Angel (Yoidore tenshi) (1948),Drama|Film-Noir +7920,3.5,Desperate Living (1977),Comedy|Crime +7921,3.0,"Devil's Rain, The (1975)",Horror +7922,2.5,"Valachi Papers,The (1972)",Crime|Drama +7924,4.5,Stray Dog (Nora inu) (1949),Drama|Film-Noir|Thriller +7925,3.25,"Hidden Fortress, The (Kakushi-toride no san-akunin) (1958)",Action|Adventure +7926,4.5,High and Low (Tengoku to jigoku) (1963),Crime|Drama|Film-Noir|Thriller +7932,5.0,Dark Days (2000),Documentary +7934,3.5833333333333335,Zelig (1983),Comedy +7935,4.0,Face to Face (Ansikte mot ansikte) (1976),Drama|Fantasy|Horror|Mystery +7936,4.5,Shame (Skammen) (1968),Drama|War +7938,3.5,Winter Light (Nattvardsgästerna) (1963),Drama +7939,3.0,Through a Glass Darkly (Såsom i en spegel) (1961),Drama +7941,4.125,Smiles of a Summer Night (Sommarnattens leende) (1955),Comedy|Romance +7942,3.0,Summer with Monika (Sommaren med Monika) (1953),Drama|Romance +7943,4.125,"Killers, The (1946)",Crime|Film-Noir +7944,4.0,"Night of the Iguana, The (1964)",Drama|Thriller +7946,1.5,Reflections in a Golden Eye (1967),Drama +7947,4.0,Under the Volcano (1984),Drama +7948,4.0,Wise Blood (1979),Comedy|Drama +7951,2.5,Nightbreed (1990),Fantasy|Horror +7958,3.5,Bloody Mama (1970),Crime|Drama +7959,3.5,"Trip, The (1967)",Drama +7976,3.8333333333333335,Ken Park (2002),Drama +7979,3.9,Monterey Pop (1968),Documentary|Musical +7980,3.357142857142857,"Bridge Too Far, A (1977)",Action|Drama|War +7981,4.166666666666667,Infernal Affairs (Mou gaan dou) (2002),Crime|Drama|Thriller +7982,3.1666666666666665,"Tale of Two Sisters, A (Janghwa, Hongryeon) (2003)",Drama|Horror|Mystery|Thriller +7983,3.375,Broadway Danny Rose (1984),Comedy +7984,3.5,From Beyond (1986),Horror|Sci-Fi +7987,3.5,Dolls (1987),Horror +7990,3.0,Rock 'N' Roll High School (1979),Comedy|Musical +7991,2.8333333333333335,Death Race 2000 (1975),Action|Sci-Fi +7995,3.0,"Wild Angels, The (1966)",Action|Drama +8003,2.0,Bedlam (1946),Drama|Horror +8008,3.3333333333333335,Brigadoon (1954),Fantasy|Musical|Romance +8009,3.5,Marjorie Morningstar (1958),Drama +8010,3.5,"Power of One, The (1992)",Drama +8011,3.3,"Weather Underground, The (2002)",Documentary +8012,4.375,Kikujiro (Kikujirô no natsu) (1999),Comedy|Drama +8014,3.5833333333333335,"Spring, Summer, Fall, Winter... and Spring (Bom yeoreum gaeul gyeoul geurigo bom) (2003)",Drama +8015,3.5,"Phantom Tollbooth, The (1970)",Adventure|Animation|Children|Fantasy +8016,2.25,"Getaway, The (1972)",Action|Crime|Drama|Thriller +8019,4.0,Dark Water (Honogurai mizu no soko kara) (2002),Drama|Horror|Mystery|Thriller +8033,3.0,How to Steal a Million (1966),Comedy|Crime|Romance +8039,3.25,Support Your Local Sheriff! (1969),Comedy|Western +8042,3.9285714285714284,Mean Streets (1973),Crime|Drama +8044,3.75,I Am a Fugitive from a Chain Gang (1932),Crime|Drama|Film-Noir +8056,2.5,Harper (1966),Crime|Drama|Mystery +8057,3.0,Sweet Bird of Youth (1962),Drama +8070,3.5,Grill Point (Halbe Treppe) (2002),Drama +8093,2.75,Shiri (Swiri) (1999),Action|Drama|Romance|Thriller +8094,4.0,Bad Day at Black Rock (1955),Drama|Thriller|Western +8117,2.75,In China They Eat Dogs (I Kina spiser de hunde) (1999),Action|Comedy +8121,5.0,"Seducing Doctor Lewis (Grande séduction, La) (2003)",Comedy +8123,5.0,Sammy and Rosie Get Laid (1987),Comedy|Drama +8125,4.333333333333333,Sunrise: A Song of Two Humans (1927),Drama|Romance +8126,4.5,Shock Corridor (1963),Drama +8128,3.625,Au revoir les enfants (1987),Drama +8129,1.75,Sex: The Annabel Chong Story (1999),Documentary +8130,3.0,"Girl Next Door, The (1999)",Documentary +8131,4.166666666666667,Pursuit of Happiness (2001),Comedy|Romance +8132,4.454545454545454,Gladiator (1992),Action|Drama +8133,1.5,"Inheritance, The (Arven) (2003)",Drama +8136,0.5,Indestructible Man (1956),Crime|Horror|Sci-Fi +8137,2.0,"Wasp Woman, The (1959)",Horror|Sci-Fi +8138,1.75,Attack of the Giant Leeches (1959),Horror|Sci-Fi +8142,4.0,Dead or Alive: Hanzaisha (1999),Action|Crime +8143,3.5,Lola Montès (1955),Drama +8147,3.5,Charly (1968),Drama|Sci-Fi +8154,4.0625,"Dolce Vita, La (1960)",Drama +8157,3.6875,Jin Roh: The Wolf Brigade (Jin-Rô) (1998),Animation|Fantasy|Thriller +8158,3.5,Rush (1991),Crime|Drama +8167,2.25,Captain Blood (1935),Action|Adventure|Romance +8169,3.142857142857143,*batteries not included (1987),Children|Comedy|Fantasy|Sci-Fi +8183,4.125,Educating Rita (1983),Comedy|Drama +8187,3.5,On Moonlight Bay (1951),Comedy|Musical +8188,4.333333333333333,Sansho the Bailiff (Sanshô dayû) (1954),Drama +8189,4.0,Zazie dans le métro (1960),Comedy +8190,3.0,"Americanization of Emily, The (1964)",Comedy|Drama|War +8191,4.0,Anne of the Thousand Days (1969),Drama +8194,2.75,Baby Doll (1956),Drama +8195,2.8333333333333335,"Avventura, L' (Adventure, The) (1960)",Drama|Mystery|Romance +8196,2.5,Beyond the Valley of the Dolls (1970),Comedy|Horror +8197,3.6666666666666665,Hiroshima Mon Amour (1959),Drama|Romance|War +8199,4.75,Ugetsu (Ugetsu monogatari) (1953),Drama|Thriller +8207,4.2,"Day of the Jackal, The (1973)",Crime|Thriller +8208,5.0,"Razor's Edge, The (1946)",Drama +8225,3.625,Night of the Living Dead (1990),Horror +8228,4.1,"Maltese Falcon, The (a.k.a. Dangerous Female) (1931)",Mystery +8235,4.0,Safety Last! (1923),Action|Comedy|Romance +8239,4.5,Viridiana (1961),Comedy|Drama +8240,5.0,Totally F***ed Up (1993),Drama +8253,3.5,Lupin III: The Castle Of Cagliostro (Rupan sansei: Kariosutoro no shiro) (1979),Action|Adventure|Animation|Comedy|Crime|Mystery +8254,5.0,Arizona Dream (1993),Comedy|Drama|Fantasy|Romance +8256,4.0,Queen Christina (1933),Drama|Romance +8257,3.0,Battleground (1949),Action|Drama|War +8261,5.0,3 Women (Three Women) (1977),Drama +8263,3.5,Take Me Out to the Ball Game (1949),Comedy|Musical|Romance +8264,4.333333333333333,Grey Gardens (1975),Documentary +8266,2.5,Purple Rain (1984),Drama|Musical +8267,3.5,Signs of Life (Lebenszeichen) (1968),Drama +8268,2.75,Point of No Return (1993),Action|Thriller +8273,4.0,"Tale of Ham and Passion, A (Jamón, Jamón) (1992)",Comedy|Drama|Romance +8275,2.6666666666666665,College (1927),Comedy +8290,0.5,Mitchell (1975),Action|Crime +8327,4.25,Dolls (2002),Drama|Romance +8331,3.5,"Man Who Came to Dinner, The (1942)",Comedy +8332,3.5,Sunday Bloody Sunday (1971),Drama +8336,3.5,"Major and the Minor, The (1942)",Comedy|Romance +8337,3.6666666666666665,"Caine Mutiny, The (1954)",Drama|War +8338,3.8333333333333335,Black Narcissus (1947),Drama +8340,3.6666666666666665,Escape from Alcatraz (1979),Drama|Thriller +8341,4.5,Oliver Twist (1948),Adventure|Crime|Drama +8360,3.574074074074074,Shrek 2 (2004),Adventure|Animation|Children|Comedy|Musical|Romance +8361,3.06,"Day After Tomorrow, The (2004)",Action|Adventure|Drama|Sci-Fi|Thriller +8362,2.5,Raising Helen (2004),Comedy|Drama|Romance +8363,2.0,Soul Plane (2004),Comedy +8364,3.25,Baadasssss! (How to Get the Man's Foot Outta Your Ass) (2003),Drama +8366,3.3333333333333335,Saved! (2004),Comedy|Drama +8367,3.0,"Time of the Wolf, The (Le temps du loup) (2003)",Drama +8368,3.761904761904762,Harry Potter and the Prisoner of Azkaban (2004),Adventure|Fantasy|IMAX +8369,3.3,Mindhunters (2004),Action|Crime|Horror|Mystery|Thriller +8370,3.9285714285714284,"Blind Swordsman: Zatoichi, The (Zatôichi) (2003)",Action|Comedy|Crime|Drama +8371,3.2,"Chronicles of Riddick, The (2004)",Action|Sci-Fi|Thriller +8372,1.5,Garfield: The Movie (2004),Animation|Children|Comedy +8373,2.45,"Stepford Wives, The (2004)",Comedy|Fantasy|Thriller +8376,3.1333333333333333,Napoleon Dynamite (2004),Comedy +8385,3.5,Lover Come Back (1961),Comedy|Romance +8387,1.9166666666666667,Police Academy: Mission to Moscow (1994),Comedy|Crime +8388,4.0,Ring of Bright Water (1969),Comedy|Drama +8392,2.0,Fool for Love (1985),Drama +8403,2.0,Helen of Troy (1956),Action|Adventure|Drama|Romance|War +8404,4.0,"Hound of the Baskervilles, The (1939)",Crime|Mystery|Thriller +8410,4.0,Suddenly (1954),Crime|Drama|Film-Noir +8420,4.0,Possessed (1947),Drama|Film-Noir +8422,3.0,Kings Row (1942),Drama|Romance +8423,3.0,"Kid Brother, The (1927)",Children|Comedy|Romance +8447,1.0,This Island Earth (1955),Sci-Fi +8451,3.5,Blackboard Jungle (1955),Drama +8453,4.0,It Had to Be You (2000),Comedy|Romance +8459,4.0,"Heiress, The (1949)",Drama|Romance +8460,3.75,State Fair (1945),Musical|Romance +8462,2.5,Executive Suite (1954),Drama +8463,2.5,Johnny Belinda (1948),Drama +8464,3.533333333333333,Super Size Me (2004),Comedy|Documentary|Drama +8465,2.5,Johnny Eager (1942),Crime|Drama|Film-Noir|Romance +8477,4.25,"Jetée, La (1962)",Romance|Sci-Fi +8482,3.0,"Picture of Dorian Gray, The (1945)",Drama|Fantasy|Horror +8484,3.5,"Human Condition I, The (Ningen no joken I) (1959)",Drama|War +8485,4.0,Samsara (2001),Adventure|Drama|Romance +8487,2.75,Please Don't Eat the Daisies (1960),Children|Comedy|Musical +8491,3.5,White Heat (1949),Crime|Drama|Film-Noir +8492,3.8333333333333335,"Christmas Carol, A (Scrooge) (1951)",Drama|Fantasy +8493,3.7142857142857144,Memphis Belle (1990),Action|Drama|War +8499,3.125,Pretty Baby (1978),Drama +8502,3.5,Show Boat (1951),Drama|Musical|Romance +8504,4.5,Box of Moon Light (1996),Comedy|Drama +8507,3.388888888888889,Freaks (1932),Crime|Drama|Horror +8511,4.25,"Immigrant, The (1917)",Comedy +8522,3.75,My Little Chickadee (1940),Comedy|Western +8524,3.5,"High and the Mighty, The (1954)",Drama +8525,2.5,"Ugly Dachshund, The (1966)",Children|Comedy +8526,2.3333333333333335,Around the World in 80 Days (2004),Adventure|Children|Comedy +8527,3.0,I'll Sleep When I'm Dead (2003),Crime|Drama +8528,3.3378378378378377,Dodgeball: A True Underdog Story (2004),Comedy +8529,3.364864864864865,"Terminal, The (2004)",Comedy|Drama|Romance +8530,3.875,Dear Frankie (2004),Drama|Romance +8531,2.7,White Chicks (2004),Action|Comedy|Crime +8533,3.393939393939394,"Notebook, The (2004)",Drama|Romance +8534,2.5,Two Brothers (Deux frères) (2004),Adventure|Children|Drama +8535,3.5,De-Lovely (2004),Drama|Musical +8537,4.0,Kaena: The Prophecy (Kaena: La prophétie) (2003),Action|Adventure|Animation|Children|Sci-Fi +8542,4.0,"Day at the Races, A (1937)",Comedy|Musical +8544,3.5,"Now You See Him, Now You Don't (1972)",Comedy|Sci-Fi +8571,3.0,Bob & Carol & Ted & Alice (1969),Comedy|Drama +8572,4.5,"Littlest Rebel, The (1935)",Children|Drama +8574,2.25,"Claymation Christmas Celebration, A (1987)",Animation|Children|Comedy|Musical +8575,2.0,"Happenstance (Battement d'ailes du papillon, Le) (2001)",Comedy|Drama +8576,4.0,Kopps (2003),Action|Comedy +8577,4.0,Comandante (2003),Documentary +8580,4.333333333333333,Into the Woods (1991),Adventure|Comedy|Fantasy|Musical +8581,3.5,Pirates of Silicon Valley (1999),Documentary|Drama +8582,3.9,Manufacturing Consent: Noam Chomsky and the Media (1992),Documentary|War +8583,2.5,"Clock, The (1945)",Adventure|Drama|Romance +8584,3.75,Leave Her to Heaven (1945),Drama|Film-Noir +8589,4.25,Winter War (Talvisota) (1989),Drama|War +8591,3.5,"Philadelphia Experiment, The (1984)",Adventure|Drama|Sci-Fi +8596,3.6666666666666665,Revenge of the Pink Panther (1978),Comedy|Crime +8600,4.0,Angels with Dirty Faces (1938),Crime|Drama|Film-Noir|Thriller +8604,2.5,Taxi (1998),Action|Comedy +8607,3.8333333333333335,Tokyo Godfathers (2003),Adventure|Animation|Drama +8609,4.5,Our Hospitality (1923),Comedy +8610,3.4166666666666665,All of Me (1984),Comedy|Fantasy +8611,2.25,"Farmer's Daughter, The (1947)",Comedy +8612,3.25,Lassie Come Home (1943),Adventure|Children|Drama +8614,2.625,Overboard (1987),Comedy|Romance +8616,3.5,By the Light of the Silvery Moon (1953),Children|Musical|Romance +8617,3.25,Butterfield 8 (1960),Drama +8618,3.6666666666666665,Johnny Guitar (1954),Drama|Western +8620,3.75,"Exterminating Angel, The (Ángel exterminador, El) (1962)",Comedy|Drama|Fantasy|Mystery +8622,3.5652173913043477,Fahrenheit 9/11 (2004),Documentary +8623,3.4615384615384617,Roxanne (1987),Comedy|Romance +8625,3.0,"Same River Twice, The (2003)",Documentary +8629,3.0,"Book of Life, The (1998)",Comedy|Fantasy +8633,3.6875,"Last Starfighter, The (1984)",Action|Adventure|Comedy|Sci-Fi +8636,3.625,Spider-Man 2 (2004),Action|Adventure|Sci-Fi|IMAX +8638,3.8823529411764706,Before Sunset (2004),Drama|Romance +8640,2.5,King Arthur (2004),Action|Adventure|Drama|War +8641,3.514705882352941,Anchorman: The Legend of Ron Burgundy (2004),Comedy +8642,3.0,Sleepover (2004),Comedy +8643,3.5,"Cinderella Story, A (2004)",Comedy|Romance +8644,3.3421052631578947,"I, Robot (2004)",Action|Adventure|Sci-Fi|Thriller +8645,3.676470588235294,"Maria Full of Grace (Maria, Llena eres de gracia) (2004)",Crime|Drama +8650,4.25,Long Day's Journey Into Night (1962),Drama +8654,2.0,Prince Valiant (1954),Adventure +8656,3.8333333333333335,"Short Film About Killing, A (Krótki film o zabijaniu) (1988)",Crime|Drama +8657,3.5,"Tin Star, The (1957)",Western +8661,3.25,How the West Was Won (1962),Adventure|Drama|Western +8665,3.7905405405405403,"Bourne Supremacy, The (2004)",Action|Crime|Thriller +8666,2.0714285714285716,Catwoman (2004),Action|Crime|Fantasy +8667,2.75,A Home at the End of the World (2004),Drama|Romance +8670,4.5,"Testament of Dr. Mabuse, The (Das Testament des Dr. Mabuse) (1933)",Crime|Horror|Mystery|Thriller +8672,3.5,Battle Hymn (1957),Drama +8675,5.0,"Enemy Below, The (1957)",Action|Drama|War +8684,4.0,"Man Escaped, A (Un condamné à mort s'est échappé ou Le vent souffle où il veut) (1956)",Adventure|Drama +8689,4.0,"Shock to the System, A (1990)",Comedy|Crime|Thriller +8690,3.0,Slaughterhouse-Five (1972),Comedy|Drama|Sci-Fi|War +8695,3.0,"Bachelor and the Bobby-Soxer, The (1947)",Comedy +8699,5.0,Dancing in September (2000),Drama +8700,3.0,Destination Tokyo (1943),Adventure|War +8709,3.0,How I Got Into College (1989),Comedy|Romance +8711,3.75,Mr. Blandings Builds His Dream House (1948),Comedy +8712,4.0,My Favorite Wife (1940),Comedy|Romance +8713,3.5,"New Adventures of Pippi Longstocking, The (1988)",Adventure|Children|Fantasy|Musical +8718,2.5,"Snake Pit, The (1948)",Drama +8720,2.5,"Super, The (1991)",Comedy +8722,1.0,Two of a Kind (1983),Comedy|Fantasy|Romance +8724,3.75,"Leopard, The (Gattopardo, Il) (1963)",Drama|War +8725,2.5,"Goodbye, Columbus (1969)",Comedy|Drama|Romance +8727,1.5,"Day of the Locust, The (1975)",Drama +8730,4.5,To End All Wars (2001),Action|Drama|War +8743,2.5,Biggles (1986),Adventure|Fantasy|Sci-Fi +8745,3.5,"World of Suzie Wong, The (1960)",Drama|Romance +8751,4.5,Gun Crazy (a.k.a. Deadly Is the Female) (1949),Crime|Drama|Film-Noir +8752,4.0,"Set-Up, The (1949)",Drama|Film-Noir|Romance +8753,4.0,Unprecedented: The 2000 Presidential Election (2002),Documentary +8754,4.0,"Prime of Miss Jean Brodie, The (1969)",Drama +8761,3.5,"Three Lives of Thomasina, The (1964)",Children|Drama +8763,1.5,"One and Only, Genuine, Original Family Band, The (1968)",Children|Comedy|Musical +8765,4.0,This Gun for Hire (1942),Crime|Film-Noir|Thriller +8768,3.5,Criss Cross (1949),Crime|Drama|Film-Noir +8772,3.75,"Spy Who Came in from the Cold, The (1965)",Drama|Thriller +8777,0.5,Roadkill (a.k.a. Roadkill: Move or Die) (1989),Drama +8779,4.0,Bon Voyage (2003),Comedy|Drama +8781,3.0,"Manchurian Candidate, The (2004)",Thriller +8783,3.0172413793103448,"Village, The (2004)",Drama|Mystery|Thriller +8784,3.6293103448275863,Garden State (2004),Comedy|Drama|Romance +8785,3.5,Early Summer (Bakushû) (1951),Drama +8790,3.0,Revengers Tragedy (2002),Comedy|Horror +8795,2.5,Musa the Warrior (Musa) (2001),Action|Adventure|Drama|War +8796,3.25,"Funny Thing Happened on the Way to the Forum, A (1966)",Comedy|Musical +8797,4.5,Salesman (1969),Documentary +8798,3.7125,Collateral (2004),Action|Crime|Drama|Thriller +8799,2.5,Little Black Book (2004),Comedy|Romance +8800,4.0,Code 46 (2003),Romance|Sci-Fi +8807,3.6363636363636362,Harold and Kumar Go to White Castle (2004),Adventure|Comedy +8808,3.0625,"Princess Diaries 2: Royal Engagement, The (2004)",Comedy|Romance +8810,2.638888888888889,AVP: Alien vs. Predator (2004),Action|Horror|Sci-Fi|Thriller +8811,0.5,Yu-Gi-Oh! (2004),Action|Adventure|Animation|Fantasy +8813,3.0,We Don't Live Here Anymore (2004),Drama +8814,1.0,Without a Paddle (2004),Comedy +8819,2.5,Double Trouble (1967),Musical +8820,2.5,Spinout (1966),Comedy|Musical +8821,2.5,Harum Scarum (1965),Comedy|Musical +8823,3.0,"Sting II, The (1983)",Comedy|Crime +8827,4.357142857142857,"Bill Cosby, Himself (1983)",Comedy|Documentary +8828,3.0,Dead Ringer (1964),Drama|Thriller +8830,2.25,Anacondas: The Hunt for the Blood Orchid (2004),Adventure|Drama|Horror|Sci-Fi|Thriller +8831,2.5,Suspect Zero (2004),Crime|Thriller +8832,1.5,Warriors of Heaven and Earth (Tian di ying xiong) (2003),Action|Adventure|Drama +8833,3.875,Vanity Fair (2004),Drama|Romance +8835,1.5,Paparazzi (2004),Drama|Thriller +8836,2.3333333333333335,Wicker Park (2004),Drama|Romance|Thriller +8838,3.6,Alice Doesn't Live Here Anymore (1974),Drama|Romance +8839,2.5,"Mangler, The (1995)",Horror +8840,2.5,Who's That Knocking at My Door? (1967),Drama +8848,2.0,"Vitelloni, I (a.k.a. The Young and the Passionate) (1953)",Drama +8850,2.5,Flipper (1963),Adventure|Children|Drama +8851,2.0,Smile (1975),Comedy +8853,2.5,"Small Circle of Friends, A (1980)",Drama +8854,3.5,Night of the Demons (1988),Horror +8857,3.0,Lilith (1964),Drama +8859,0.5,SuperBabies: Baby Geniuses 2 (2004),Comedy +8860,2.5454545454545454,Cellular (2004),Action|Crime|Drama|Mystery|Thriller +8861,2.75,Resident Evil: Apocalypse (2004),Action|Horror|Sci-Fi|Thriller +8864,3.5,Mr. 3000 (2004),Comedy|Drama +8865,2.727272727272727,Sky Captain and the World of Tomorrow (2004),Action|Adventure|Sci-Fi +8866,2.75,Wimbledon (2004),Comedy|Romance +8870,3.1,"Forgotten, The (2004)",Drama|Mystery|Sci-Fi|Thriller +8871,3.5,"Last Shot, The (2004)",Comedy +8872,3.5,"Dirty Shame, A (2004)",Comedy +8873,3.673076923076923,"Motorcycle Diaries, The (Diarios de motocicleta) (2004)",Adventure|Drama +8874,3.8714285714285714,Shaun of the Dead (2004),Comedy|Horror +8879,4.0,Murder on the Orient Express (1974),Crime|Mystery|Thriller +8880,3.375,Mask (1985),Drama +8882,3.25,"Boston Strangler, The (1968)",Crime|Drama|Mystery|Thriller +8884,4.0,"Man with One Red Shoe, The (1985)",Comedy|Thriller +8892,4.0,Basket Case 3: The Progeny (1992),Comedy|Horror +8893,4.5,Basket Case 2 (1990),Comedy|Horror +8899,4.0,Hardcore (1979),Drama +8903,3.5,"Terror, The (1963)",Horror|Mystery +8906,3.5,Cannibal Holocaust (1980),Horror +8907,2.6818181818181817,Shark Tale (2004),Animation|Children|Comedy +8908,3.25,Ladder 49 (2004),Action|Drama|Thriller +8910,3.611111111111111,I Heart Huckabees (2004),Comedy +8911,2.5,Raise Your Voice (2004),Romance +8914,3.75,Primer (2004),Drama|Sci-Fi +8915,2.0,Stage Beauty (2004),Drama +8916,3.4285714285714284,Shall We Dance? (2004),Comedy|Romance +8917,3.425,Team America: World Police (2004),Action|Adventure|Animation|Comedy +8918,3.0,Eulogy (2004),Comedy|Crime|Drama +8920,3.5,"Country Girl, The (1954)",Drama +8921,2.5,"Rose Tattoo, The (1955)",Drama|Romance +8923,4.25,Tess (1979),Drama|Romance +8927,3.0,Cannonball (1976),Action|Comedy|Drama +8928,3.5,"Fearless Vampire Killers, The (1967)",Comedy|Horror +8929,4.0,Black Beauty (1971),Children|Drama +8930,3.5,"Five Obstructions, The (Fem benspænd, De) (2003)",Documentary +8931,3.5,Born Rich (2003),Documentary +8933,4.666666666666667,"Decline of the American Empire, The (Déclin de l'empire américain, Le) (1986)",Comedy|Drama +8935,1.0,All I Want for Christmas (1991),Children|Comedy|Romance +8937,4.375,Friday Night Lights (2004),Action|Drama +8938,4.666666666666667,Tarnation (2003),Documentary +8943,3.5,Being Julia (2004),Comedy|Drama +8946,2.5,Surviving Christmas (2004),Comedy +8947,2.769230769230769,"Grudge, The (2004)",Horror|Mystery|Thriller +8948,2.625,Alfie (2004),Comedy|Drama|Romance +8949,3.6666666666666665,Sideways (2004),Comedy|Drama|Romance +8950,3.6842105263157894,The Machinist (2004),Drama|Mystery|Thriller +8951,4.0,Vera Drake (2004),Drama +8954,3.5,Lightning in a Bottle (2004),Documentary +8955,5.0,Undertow (2004),Crime|Drama|Thriller +8957,3.272727272727273,Saw (2004),Horror|Mystery|Thriller +8958,3.9523809523809526,Ray (2004),Drama +8961,3.861111111111111,"Incredibles, The (2004)",Action|Adventure|Animation|Children|Comedy +8963,0.5,It's All About Love (2003),Drama|Romance|Sci-Fi|Thriller +8964,1.5,Callas Forever (2002),Drama +8965,2.7857142857142856,"Polar Express, The (2004)",Adventure|Animation|Children|Fantasy|IMAX +8966,3.5357142857142856,Kinsey (2004),Drama +8968,2.3333333333333335,After the Sunset (2004),Action|Adventure|Comedy|Crime|Thriller +8969,3.3125,Bridget Jones: The Edge of Reason (2004),Comedy|Drama|Romance +8970,3.8513513513513513,Finding Neverland (2004),Drama +8972,3.414285714285714,National Treasure (2004),Action|Adventure|Drama|Mystery|Thriller +8973,3.9375,Bad Education (La mala educación) (2004),Drama|Thriller +8974,2.5,"SpongeBob SquarePants Movie, The (2004)",Adventure|Animation|Children|Comedy +8977,3.5,Alexander (2004),Action|Adventure|Drama|War +8979,4.25,Guerrilla: The Taking of Patty Hearst (2004),Documentary +8981,3.9210526315789473,Closer (2004),Drama|Romance +8982,3.5,I Am David (2003),Drama +8983,3.323529411764706,House of Flying Daggers (Shi mian mai fu) (2004),Action|Drama|Romance +8984,2.911764705882353,Ocean's Twelve (2004),Action|Comedy|Crime|Thriller +8985,1.7916666666666667,Blade: Trinity (2004),Action|Fantasy|Horror|Thriller +8986,4.0,"Bellboy, The (1960)",Comedy +8987,3.5,Bush's Brain (2004),Documentary +8988,4.0,Cinderfella (1960),Comedy +8989,3.5,Damn Yankees! (1958),Comedy|Musical +8998,3.5,That's Entertainment (1974),Documentary +8999,4.0,"That's Entertainment, Part II (1976)",Documentary +9000,3.5,That's Entertainment! III (1994),Documentary +9001,4.0,"Wackiest Ship in the Army, The (1960)",Comedy|War +9004,3.5,D.A.R.Y.L. (1985),Adventure|Children|Sci-Fi +9005,2.5,Fire in the Sky (1993),Drama|Mystery|Sci-Fi +9010,5.0,Love Me If You Dare (Jeux d'enfants) (2003),Drama|Romance +9012,4.0,Ruby Gentry (1952),Drama +9018,3.6666666666666665,Control Room (2004),Documentary|War +25737,0.5,"Golem, The (Golem, wie er in die Welt kam, Der) (1920)",Fantasy|Horror +25744,4.5,Haxan: Witchcraft Through the Ages (a.k.a. The Witches) (1922),Documentary|Horror +25750,4.3,Sherlock Jr. (1924),Comedy|Fantasy|Romance +25752,4.0,"Freshman, The (1925)",Comedy +25753,3.5,Greed (1924),Drama +25755,3.5,"Phantom of the Opera, The (1925)",Drama|Horror +25763,2.0,"Pandora's Box (Büchse der Pandora, Die) (1929)",Drama +25764,4.5,"Cameraman, The (1928)",Comedy|Drama|Romance +25769,4.0,"Steamboat Bill, Jr. (1928)",Comedy|Romance +25771,3.35,"Andalusian Dog, An (Chien andalou, Un) (1929)",Fantasy +25773,4.0,Little Caesar (1931),Crime|Drama +25774,3.0,"Golden Age, The (Âge d'Or, L') (1930)",Comedy|Drama|Romance +25777,3.6666666666666665,Monkey Business (1931),Comedy +25788,3.5,Scarface (1932),Crime|Drama +25792,3.5,"I Was Born, But... (a.k.a. Children of Tokyo) (Otona no miru ehon - Umarete wa mita keredo) (1932)",Comedy|Drama +25795,4.0,Dinner at Eight (1933),Comedy|Drama|Romance +25801,5.0,She Done Him Wrong (1933),Comedy|Romance +25805,3.8333333333333335,"Atalante, L' (1934)",Comedy|Drama|Romance +25807,3.0,"Black Cat, The (1934)",Adventure|Crime|Horror|Thriller +25825,3.75,Fury (1936),Drama|Film-Noir +25826,0.5,Libeled Lady (1936),Comedy|Romance +25827,3.5,Mr. Deeds Goes to Town (1936),Comedy|Romance +25828,4.0,"Petrified Forest, The (1936)",Crime|Drama|Romance +25839,3.5,Nothing Sacred (1937),Comedy|Drama|Romance +25841,2.5,Stage Door (1937),Drama +25842,3.5,Topper (1937),Comedy|Fantasy|Romance +25850,3.875,Holiday (1938),Comedy|Drama|Romance +25852,5.0,Gaslight (1940),Mystery|Thriller +25856,4.0,Wuthering Heights (1939),Drama|Romance +25865,4.0,"Letter, The (1940)",Drama|Film-Noir +25868,3.6666666666666665,Ball of Fire (1941),Comedy|Romance +25874,1.75,Never Give a Sucker an Even Break (1941),Comedy|Musical +25882,4.5,"Hard Way, The (1943)",Drama +25886,4.0,Random Harvest (1942),Drama|Romance +25891,2.75,Heaven Can Wait (1943),Comedy|Fantasy|Romance +25898,3.5,Day of Wrath (Vredens dag) (1943),Drama +25900,3.5,"Curse of the Cat People, The (1944)",Drama +25901,0.5,"Henry V (Chronicle History of King Henry the Fift with His Battell Fought at Agincourt in France, The) (1944)",Drama|War +25904,3.5,Ministry of Fear (1944),Drama|Film-Noir|Thriller +25906,2.5,Mr. Skeffington (1944),Drama|Romance +25911,3.0,"Woman in the Window, The (1944)",Crime|Film-Noir|Thriller +25916,2.5,They Were Expendable (1945),Drama|War +25920,3.5,"Blue Dahlia, The (1946)",Crime|Drama|Film-Noir|Mystery|Thriller +25929,4.0,Nightmare Alley (1947),Drama|Film-Noir +25930,3.5,Odd Man Out (1947),Crime|Drama|Film-Noir|Thriller +25937,2.8333333333333335,Easter Parade (1948),Musical|Romance +25940,2.5,"Lady from Shanghai, The (1947)",Drama|Film-Noir|Mystery +25941,4.0,Letter from an Unknown Woman (1948),Drama|Romance +25945,4.5,They Live by Night (1949),Crime|Film-Noir|Romance +25947,4.25,Unfaithfully Yours (1948),Comedy +25952,4.25,"Letter to Three Wives, A (1949)",Comedy|Drama +25962,4.0,King Solomon's Mines (1950),Action|Adventure|Romance +25965,2.0,Summer Stock (1950),Comedy|Musical|Romance +25971,3.75,Carrie (1952),Drama|Romance +25972,4.0,Clash by Night (1952),Drama|Film-Noir +25993,2.5,Magnificent Obsession (1954),Drama|Romance +25995,3.5,Samurai I: Musashi Miyamoto (Miyamoto Musashi) (1954),Action|Adventure|Drama +25996,4.5,"Star Is Born, A (1954)",Drama|Musical +25999,4.5,The Wild One (1953),Drama +26003,3.5,Night and Fog (Nuit et brouillard) (1955),Crime|Documentary|War +26005,3.5,Samurai II: Duel at Ichijoji Temple (Zoku Miyamoto Musashi: Ichijôji no kettô) (1955),Action|Adventure|Drama +26007,4.5,"Unknown Soldier, The (Tuntematon sotilas) (1955)",Drama|War +26009,0.5,"Burmese Harp, The (Biruma no tategoto) (1956)",Drama|War +26010,3.0,Carousel (1956),Musical|Romance +26012,3.5,Samurai III: Duel on Ganryu Island (a.k.a. Bushido) (Miyamoto Musashi kanketsuhen: kettô Ganryûjima) (1956),Action|Adventure|Drama +26013,2.5,Rodan (Sora no daikaijû Radon) (1956),Adventure +26025,2.0,"Spirit of St. Louis, The (1957)",Adventure|Drama +26052,3.75,Pickpocket (1959),Crime|Drama +26079,4.0,David and Lisa (1962),Drama +26082,4.5,Harakiri (Seppuku) (1962),Drama +26084,3.75,"Music Man, The (1962)",Children|Comedy|Musical|Romance +26085,3.0,Mutiny on the Bounty (1962),Adventure|Drama|Romance +26093,3.5,"Wonderful World of the Brothers Grimm, The (1962)",Adventure|Animation|Children|Comedy|Drama|Fantasy|Musical|Romance +26094,5.0,"Eclisse, L' (Eclipse) (1962)",Drama +26111,3.3333333333333335,Becket (1964),Drama +26116,3.0,"Hush... Hush, Sweet Charlotte (1964)",Horror|Thriller +26117,3.5,"Killers, The (1964)",Action|Crime|Drama|Film-Noir|Thriller +26122,3.5,Onibaba (1964),Drama|Horror|War +26125,3.5,"Spider Baby or, The Maddest Story Ever Told (Spider Baby) (1968)",Comedy|Horror +26131,4.083333333333333,"Battle of Algiers, The (La battaglia di Algeri) (1966)",Drama|War +26133,3.375,"Charlie Brown Christmas, A (1965)",Animation|Children|Comedy +26147,4.5,"Thousand Clowns, A (1965)",Comedy|Drama|Romance +26150,5.0,Andrei Rublev (Andrey Rublyov) (1969),Drama|War +26151,5.0,Au Hasard Balthazar (1966),Crime|Drama +26152,4.0,Batman (1966),Action|Adventure|Comedy +26157,0.5,Manos: The Hands of Fate (1966),Horror +26160,3.5,Asterix and the Gauls (Astérix le Gaulois) (1967),Action|Adventure|Animation|Children|Comedy +26163,4.0,Don't Look Back (1967),Documentary|Musical +26164,4.0,Fando and Lis (Fando y Lis) (1968),Adventure|Fantasy +26171,3.75,Play Time (a.k.a. Playtime) (1967),Comedy +26172,4.0,Point Blank (1967),Action|Crime|Drama|Thriller +26176,3.0,Titicut Follies (1967),Documentary|Drama +26178,3.6666666666666665,Two for the Road (1967),Comedy|Drama|Romance +26180,3.5,Up the Down Staircase (1967),Drama +26188,0.5,"Heart Is a Lonely Hunter, The (1968)",Drama +26198,3.0,"Yours, Mine and Ours (1968)",Children|Comedy +26199,4.0,Alice's Restaurant (1969),Comedy|Drama +26208,4.0,My Night At Maud's (Ma Nuit Chez Maud) (1969),Comedy|Drama|Romance +26228,4.0,"Swedish Love Story, A (Kärlekshistoria, En) (1970)",Drama|Romance +26229,3.5,"Landlord, The (1970)",Comedy|Drama +26231,3.8333333333333335,Performance (1970),Crime|Drama|Thriller +26241,4.0,The Devils (1971),Drama +26242,4.0,Duel (1971),Action|Mystery|Thriller +26251,4.0,Mon Oncle Antoine (1971),Drama +26258,4.0,"Topo, El (1970)",Fantasy|Western +26265,3.5,Dr. Phibes Rises Again (1972),Adventure|Comedy|Horror|Romance +26268,4.0,The Tall Blond Man with One Black Shoe (1972),Comedy|Mystery +26271,4.0,Lady Sings the Blues (1972),Drama|Musical +26294,3.75,My Name Is Nobody (Il Mio nome è Nessuno) (1973),Comedy|Western +26302,3.5,Scarecrow (1973),Drama +26303,2.5,Sisters (1973),Horror|Thriller +26313,3.75,California Split (1974),Comedy|Drama +26317,2.0,Emmanuelle (1974),Drama|Romance +26318,4.5,"Phantom of Liberty, The (Fantôme de la liberté, Le) (1974)",Comedy|Drama +26320,2.5,Flesh for Frankenstein (a.k.a. Andy Warhol's Frankenstein) (1973),Drama|Horror|Sci-Fi +26322,3.5,Gone in 60 Seconds (1974),Action|Crime|Drama +26323,4.5,"Groove Tube, The (1974)",Comedy +26324,3.5,Harry and Tonto (1974),Comedy|Drama +26325,4.0,Hearts and Minds (1974),Documentary|War +26326,4.5,"Holy Mountain, The (Montaña sagrada, La) (1973)",Drama +26338,3.0,Cousin cousine (1975),Comedy|Romance +26342,3.5,"Farewell, My Lovely (1975)",Crime|Mystery|Thriller +26346,3.0,"Story of Adele H., The (Histoire d'Adèle H., L') (1975)",Drama +26349,3.5,Night Moves (1975),Crime|Thriller +26350,4.5,"Passenger, The (Professione: reporter) (1975)",Drama +26366,2.25,Harlan County U.S.A. (1976),Documentary +26371,2.5,The Missouri Breaks (1976),Drama|Western +26375,2.5,Silver Streak (1976),Action|Comedy|Crime +26386,3.75,High Anxiety (1977),Comedy|Thriller +26391,2.0,"New York, New York (1977)",Drama|Musical|Romance +26393,3.5,Sorcerer (1977),Action|Thriller +26394,3.0,"Turning Point, The (1977)",Drama|Romance +26400,4.5,Gates of Heaven (1978),Documentary +26404,2.5,In Praise of Older Women (1978),Drama +26409,1.0,"Clonus Horror, The (1979)",Horror|Sci-Fi +26413,4.0,Snake in the Eagle's Shadow (Se ying diu sau) (1978),Action|Comedy +26414,3.5,"Wedding, A (1978)",Comedy|Drama +26422,5.0,Hair (1979),Comedy|Drama|Musical +26425,3.5,"In-Laws, The (1979)",Action|Comedy +26430,1.0,"Luna, La (1979)",Drama +26435,2.5,Starting Over (1979),Comedy|Romance +26462,3.0,Bad Boys (1983),Crime|Drama|Thriller +26464,3.0,Blue Thunder (1983),Action|Crime|Drama +26467,1.0,"Day After, The (1983)",Drama|Sci-Fi +26471,2.0,Eddie Murphy Delirious (1983),Comedy|Documentary +26472,3.8333333333333335,"Norte, El (1984)",Adventure|Drama +26485,0.5,Rumble Fish (1983),Drama +26487,2.0,Star 80 (1983),Drama +26492,3.5,Twilight Zone: The Movie (1983),Fantasy|Horror|Sci-Fi|Thriller +26494,3.8333333333333335,Suburbia (1984),Drama +26501,5.0,Choose Me (1984),Comedy|Romance +26505,4.5,Comfort and Joy (1984),Comedy +26509,4.5,Electric Dreams (1984),Comedy|Drama|Romance|Sci-Fi +26513,2.5,"Ice Pirates, The (1984)",Action|Adventure|Comedy|Sci-Fi +26524,4.5,"Times of Harvey Milk, The (1984)",Documentary +26547,4.0,Police Story (Ging chaat goo si) (1985),Action|Comedy|Crime|Thriller +26554,4.25,"Quiet Earth, The (1985)",Drama|Mystery|Sci-Fi +26555,3.1666666666666665,Spies Like Us (1985),Comedy +26562,4.0,White Nights (1985),Drama +26564,2.25,'Round Midnight (1986),Drama|Musical +26574,4.0,Ginger and Fred (Ginger e Fred) (1986),Comedy|Drama +26578,5.0,"Sacrifice, The (Offret - Sacraficatio) (1986)",Drama +26581,2.0,Sherman's March (1985),Documentary +26585,3.5,"Better Tomorrow, A (Ying hung boon sik) (1986)",Crime|Drama|Thriller +26587,4.4,"Decalogue, The (Dekalog) (1989)",Crime|Drama|Romance +26599,5.0,"Law of Desire (Ley del deseo, La) (1987)",Comedy|Drama|Romance +26603,3.75,Prince of Darkness (1987),Fantasy|Horror|Sci-Fi|Thriller +26606,4.25,"Chinese Ghost Story, A (Sinnui yauwan) (1987)",Action|Fantasy|Horror|Romance +26622,3.5,Dominick and Eugene (1988),Drama +26631,3.0,Alice (Neco z Alenky) (1988),Animation|Fantasy|Mystery +26662,3.8333333333333335,Kiki's Delivery Service (Majo no takkyûbin) (1989),Adventure|Animation|Children|Drama|Fantasy +26663,4.0,Monsieur Hire (1989),Crime|Romance|Thriller +26680,3.5,Cry-Baby (1990),Comedy|Musical|Romance +26684,4.0,Frankenhooker (1990),Comedy|Horror +26686,3.5,Ghost Dad (1990),Comedy|Fantasy +26689,2.0,Havana (1990),Drama +26694,4.0,Ju Dou (1990),Drama +26695,3.5,"Krays, The (1990)",Drama +26700,1.6666666666666667,Nuns on the Run (1990),Comedy|Crime +26702,4.0,"Reflecting Skin, The (1990)",Drama|Horror|Thriller +26704,4.0,State of Grace (1990),Crime|Drama|Thriller +26712,4.5,35 Up (1991),Documentary +26726,2.5,Dutch (1991),Comedy +26729,4.375,Hearts of Darkness: A Filmmakers Apocalypse (1991),Documentary +26731,4.0,Homicide (1991),Crime|Drama|Thriller +26732,4.0,Johnny Stecchino (1991),Comedy +26736,4.0,Riki-Oh: The Story of Ricky (Lik Wong) (1991),Action|Crime|Thriller +26737,4.0,Light Sleeper (1992),Crime|Drama +26749,5.0,Prospero's Books (1991),Drama|Fantasy +26750,3.0,Quigley Down Under (1990),Adventure|Drama|Western +26775,1.5,Johnny Suede (1991),Comedy|Musical|Romance +26776,3.9166666666666665,Porco Rosso (Crimson Pig) (Kurenai no buta) (1992),Adventure|Animation|Comedy|Fantasy|Romance +26782,3.0,"Mambo Kings, The (1992)",Drama|Musical +26784,3.0,Night and the City (1992),Crime|Drama +26788,3.5,"Story of Qiu Ju, The (Qiu Ju da guan si) (1992)",Comedy|Drama +26791,5.0,Shining Through (1992),Drama|Romance|Thriller|War +26797,5.0,Visions of Light: The Art of Cinematography (1992),Documentary +26809,4.5,"Baby of Mâcon, The (a.k.a. The Baby of Macon) (1993)",Drama +26812,4.0,Barbarians at the Gate (1993),Drama +26819,4.0,Fortress (1992),Action|Sci-Fi +26838,3.5,"Snapper, The (1993)",Comedy|Drama +26840,3.5,Sonatine (Sonachine) (1993),Action|Comedy|Crime|Drama +26842,4.0,Tai Chi Master (Twin Warriors) (Tai ji: Zhang San Feng) (1993),Action|Adventure|Comedy|Drama +26843,5.0,Three of Hearts (1993),Comedy|Romance +26850,3.0,71 Fragments of a Chronology of Chance (71 Fragmente einer Chronologie des Zufalls) (1994),Drama +26865,4.5,Fist of Legend (Jing wu ying xiong) (1994),Action|Drama +26870,1.5,Major League II (1994),Comedy +26886,3.0,"Defender, The (a.k.a. Bodyguard from Beijing, The) (Zhong Nan Hai bao biao) (1994)",Action +26903,3.75,Whisper of the Heart (Mimi wo sumaseba) (1995),Animation|Drama|Romance +26915,4.5,Tromeo and Juliet (1996),Comedy|Drama +26947,4.5,Pusher (1996),Crime|Thriller +26974,4.166666666666667,Gummo (1997),Drama +27005,3.5,"Interview, The (1998)",Crime|Drama|Mystery|Thriller +27020,3.5,Gia (1998),Drama|Romance +27022,4.333333333333333,Thursday (1998),Action|Crime|Thriller +27032,2.0,Who Am I? (Wo shi shei) (1998),Action|Adventure|Comedy|Sci-Fi|Thriller +27109,3.75,Lady Snowblood (Shurayukihime) (1973),Action|Crime|Drama|Thriller +27156,4.5,"Neon Genesis Evangelion: The End of Evangelion (Shin seiki Evangelion Gekijô-ban: Air/Magokoro wo, kimi ni) (1997)",Action|Animation|Drama|Fantasy|Sci-Fi +27178,2.75,In July (Im Juli) (2000),Comedy|Romance +27186,4.5,Kirikou and the Sorceress (Kirikou et la sorcière) (1998),Adventure|Animation|Children|Fantasy +27193,2.0,Taxi 2 (2000),Action|Comedy +27255,2.5,"Wind Will Carry Us, The (Bad ma ra khahad bord) (1999)",Drama +27266,3.375,2046 (2004),Drama|Fantasy|Romance|Sci-Fi +27317,3.75,Audition (Ôdishon) (1999),Drama|Horror|Mystery|Romance|Thriller +27322,3.5,Paragraph 175 (2000),Documentary +27329,4.0,Paradise Lost 2: Revelations (2000),Documentary +27334,3.5,Sound and Fury (2000),Documentary +27338,3.0,The Hole (2001),Drama|Horror|Mystery|Thriller +27351,1.0,Spiral (2000),Horror +27369,3.5,Daria: Is It Fall Yet? (2000),Animation|Comedy +27373,3.5,61* (2001),Drama +27376,0.5,"Tunnel, The (Tunnel, Der) (2001)",Action|Drama|Thriller +27397,4.0,Joint Security Area (Gongdong gyeongbi guyeok JSA) (2000),Crime|Drama|Mystery|Thriller|War +27416,4.0,Jalla! Jalla! (2000),Comedy|Drama|Romance +27423,4.0,"O Auto da Compadecida (Dog's Will, A) (2000)",Adventure|Comedy +27441,3.0,Blood: The Last Vampire (2000),Action|Animation|Horror +27478,2.6666666666666665,Ali G Indahouse (2002),Comedy +27482,1.0,Cube 2: Hypercube (2002),Horror|Mystery|Sci-Fi +27523,4.25,My Sassy Girl (Yeopgijeogin geunyeo) (2001),Comedy|Romance +27544,4.0,Waterboys (2001),Comedy +27555,4.0,Fubar (2002),Comedy +27592,5.0,Sympathy for Mr. Vengeance (Boksuneun naui geot) (2002),Crime|Drama +27604,2.8,Suicide Club (Jisatsu saakuru) (2001),Horror|Mystery|Thriller +27646,4.5,Soldier's Girl (2003),Drama +27648,1.5,Bright Young Things (2003),Comedy|Drama +27660,3.676470588235294,"Animatrix, The (2003)",Action|Animation|Drama|Sci-Fi +27664,5.0,"Brown Bunny, The (2003)",Drama +27674,3.75,11:14 (2003),Comedy|Crime|Drama|Mystery|Thriller +27685,1.0,Bring It On Again (2004),Comedy +27689,1.0,"Crimson Rivers 2: Angels of the Apocalypse (Rivières pourpres II - Les anges de l'apocalypse, Les) (2004)",Action|Crime|Thriller +27700,4.5,Evil (Ondskan) (2003),Drama +27704,2.5,Battle Royale 2: Requiem (Batoru rowaiaru II: Chinkonka) (2003),Action|Drama|Thriller|War +27706,3.1333333333333333,Lemony Snicket's A Series of Unfortunate Events (2004),Adventure|Children|Comedy|Fantasy +27713,4.0,Bukowski: Born into This (2003),Documentary +27721,3.909090909090909,"Very Long Engagement, A (Un long dimanche de fiançailles) (2004)",Drama|Mystery|Romance|War +27722,2.5,Last Life in the Universe (Ruang rak noi nid mahasan) (2003),Drama|Romance +27724,5.0,Hitler: The Rise of Evil (2003),Drama +27727,4.0,Head-On (Gegen die Wand) (2004),Drama|Romance +27728,4.333333333333333,Ghost in the Shell 2: Innocence (a.k.a. Innocence) (Inosensu) (2004),Action|Animation|Drama|Sci-Fi|Thriller +27731,3.6666666666666665,"Cat Returns, The (Neko no ongaeshi) (2002)",Adventure|Animation|Children|Fantasy +27741,4.25,"Twilight Samurai, The (Tasogare Seibei) (2002)",Drama|Romance +27751,3.5,'Salem's Lot (2004),Drama|Horror|Mystery|Thriller +27768,3.5,Intimate Strangers (Confidences trop intimes) (2004),Drama +27772,2.25,Ju-on: The Grudge (2002),Horror +27773,3.921875,Old Boy (2003),Mystery|Thriller +27778,3.5,Ginger Snaps Back: The Beginning (2004),Fantasy|Horror +27783,4.0,"Lost Embrace (Abrazo partido, El) (2004)",Comedy|Drama +27784,2.0,One Missed Call (Chakushin ari) (2003),Horror|Mystery +27788,3.2142857142857144,"Jacket, The (2005)",Drama|Mystery|Sci-Fi|Thriller +27790,3.9,Millions (2004),Children|Comedy|Crime|Drama|Fantasy +27792,5.0,"Saddest Music in the World, The (2003)",Comedy|Drama|Fantasy|Musical|Romance +27793,1.75,Starship Troopers 2: Hero of the Federation (2004),Action|Horror|Sci-Fi|War +27798,1.0,Ju-on: The Grudge 2 (2003),Horror +27800,3.5,Interstella 5555: The 5tory of the 5ecret 5tar 5ystem (2003),Adventure|Animation|Fantasy|Musical|Sci-Fi +27801,3.25,Ong-Bak: The Thai Warrior (Ong Bak) (2003),Action|Thriller +27802,4.0,Infernal Affairs 2 (Mou gaan dou II) (2003),Action|Crime|Drama|Thriller +27803,4.333333333333333,"Sea Inside, The (Mar adentro) (2004)",Drama +27808,2.8333333333333335,Spanglish (2004),Comedy|Drama|Romance +27812,4.5,Festival Express (2003),Documentary|Musical +27815,3.5833333333333335,"Chorus, The (Choristes, Les) (2004)",Drama +27816,2.5,Saints and Soldiers (2003),Action|Adventure|Drama|War +27821,3.107142857142857,"Interpreter, The (2005)",Drama|Thriller +27822,3.1,Open Water (2003),Drama|Thriller +27826,5.0,Touch of Pink (2004),Comedy|Drama|Romance +27831,3.7222222222222223,Layer Cake (2004),Crime|Drama|Thriller +27834,4.5,"Return, The (Vozvrashcheniye) (2003)",Drama +27837,3.0,Flight of the Phoenix (2004),Action|Adventure +27838,3.625,Mean Creek (2004),Drama|Thriller +27839,1.5,"Ring Two, The (2005)",Drama|Horror|Mystery|Thriller +27846,4.25,"Corporation, The (2003)",Documentary +27850,3.3,"Yes Men, The (2003)",Documentary +27851,3.5,"Fond Kiss, A (Ae Fond Kiss...) (2004)",Drama|Romance +27857,0.5,As it is in Heaven (Så som i himmelen) (2004),Drama|Musical|Romance +27869,3.0,Tae Guk Gi: The Brotherhood of War (Taegukgi hwinalrimyeo) (2004),Action|Drama|War +27871,3.0,Something the Lord Made (2004),Drama +27873,3.5,Metallica: Some Kind of Monster (2004),Documentary +27875,4.0,Redemption: The Stan Tookie Williams Story (2004),Crime|Documentary|Drama +27876,3.0,Schultze Gets the Blues (2003),Comedy|Drama +27878,3.7857142857142856,Born into Brothels (2004),Documentary +27879,2.3333333333333335,DiG! (2004),Documentary +27882,5.0,Riding Giants (2004),Documentary +27899,3.5,What the #$*! Do We Know!? (a.k.a. What the Bleep Do We Know!?) (2004),Comedy|Documentary|Drama +27904,3.392857142857143,"Scanner Darkly, A (2006)",Animation|Drama|Mystery|Sci-Fi|Thriller +27912,4.0,Outfoxed: Rupert Murdoch's War on Journalism (2004),Documentary +27922,4.0,Jerry Seinfeld: 'I'm Telling You for the Last Time' (1998),Comedy|Documentary +30707,3.7,Million Dollar Baby (2004),Drama +30712,4.25,"Narrow Margin, The (1952)",Crime|Drama|Film-Noir +30723,4.0,Vincent & Theo (1990),Drama +30745,3.6666666666666665,Gozu (Gokudô kyôfu dai-gekijô: Gozu) (2003),Comedy|Crime|Drama|Horror|Mystery +30749,3.984375,Hotel Rwanda (2004),Drama|War +30783,3.0,Blood and Black Lace (Sei donne per l'assassino) (1964),Horror|Thriller +30793,3.1808510638297873,Charlie and the Chocolate Factory (2005),Adventure|Children|Comedy|Fantasy|IMAX +30803,3.8333333333333335,3-Iron (Bin-jip) (2004),Drama|Romance +30810,3.5689655172413794,"Life Aquatic with Steve Zissou, The (2004)",Adventure|Comedy|Fantasy +30812,3.6176470588235294,"Aviator, The (2004)",Drama +30816,3.8125,"Phantom of the Opera, The (2004)",Drama|Musical|Romance +30818,2.5,Beyond the Sea (2004),Drama|Musical +30820,3.4285714285714284,"Woodsman, The (2004)",Drama +30822,3.7222222222222223,In Good Company (2004),Comedy|Drama +30825,3.32,Meet the Fockers (2004),Comedy +30846,3.0,"Assassination of Richard Nixon, The (2004)",Crime|Drama|Thriller +30848,2.5,"Love Song for Bobby Long, A (2004)",Drama +30850,4.5,"Merchant of Venice, The (2004)",Drama +30867,4.0,Kamikaze Girls (Shimotsuma monogatari) (2004),Comedy +30883,2.0,Fat Albert (2004),Comedy|Fantasy +30892,3.5,In the Realms of the Unreal (2004),Animation|Documentary +30894,2.0,White Noise (2005),Drama|Horror|Mystery|Sci-Fi|Thriller +30898,3.3333333333333335,"Upside of Anger, The (2005)",Comedy|Drama|Romance +31000,2.5,Sweet Liberty (1986),Comedy +31026,4.5,"Phantom of the Opera, The (1989)",Drama|Horror|Musical +31035,3.25,Testament (1983),Drama +31101,4.0,Stander (2003),Action|Crime|Drama +31104,3.0,Hester Street (1975),Drama +31109,3.0,"Bigamist, The (1953)",Drama +31114,4.0,Imaginary Heroes (2004),Comedy|Drama +31116,3.75,Sergeant York (1941),Drama|War +31150,3.75,Wizards (1977),Animation|Fantasy|Sci-Fi|War +31156,3.0,Abbott and Costello Meet the Invisible Man (1951),Comedy|Sci-Fi +31162,2.5,"Life and Death of Peter Sellers, The (2004)",Comedy|Drama +31184,4.5,Appleseed (Appurushîdo) (2004),Action|Animation|Fantasy|Sci-Fi +31193,4.0,"Many Adventures of Winnie the Pooh, The (1977)",Animation|Children|Musical +31221,2.3,Elektra (2005),Action|Adventure|Crime|Drama +31225,4.25,Coach Carter (2005),Drama +31270,3.5,Shivers (They Came from Within) (1975),Drama|Horror|Sci-Fi +31284,3.5,"Star Is Born, A (1976)",Drama|Musical|Romance +31290,0.5,Beastmaster 2: Through the Portal of Time (1991),Action|Adventure|Fantasy|Sci-Fi +31364,2.25,Memories of Murder (Salinui chueok) (2003),Crime|Drama|Mystery|Thriller +31374,2.25,Hobson's Choice (1954),Comedy|Drama|Romance +31408,4.25,Summer Storm (Sommersturm) (2004),Drama|Romance +31410,3.975,"Downfall (Untergang, Der) (2004)",Drama|War +31413,5.0,"White Sound, The (Das weiße Rauschen) (2001)",Drama +31420,3.5,Assault on Precinct 13 (2005),Action|Crime|Drama|Thriller +31422,2.0,Are We There Yet? (2005),Children|Comedy +31427,4.5,Hide and Seek (2005),Horror|Mystery|Thriller +31431,1.0,Boogeyman (2005),Drama|Horror|Mystery|Thriller +31433,4.166666666666667,"Wedding Date, The (2005)",Comedy|Romance +31435,4.75,Rory O'Shea Was Here (Inside I'm Dancing) (2004),Drama +31437,4.0,Nobody Knows (Dare mo shiranai) (2004),Drama +31445,2.0,Employee of the Month (2004),Comedy|Drama +31502,2.5,Salem's Lot (1979),Drama|Horror|Mystery|Thriller +31522,2.75,"Marriage of Maria Braun, The (Ehe der Maria Braun, Die) (1979)",Drama +31524,4.0,"Bitter Tears of Petra von Kant, The (bitteren Tränen der Petra von Kant, Die) (1972)",Drama +31547,4.5,Lessons of Darkness (Lektionen in Finsternis) (1992),Documentary|War +31549,4.0,Fata Morgana (1971),Documentary|Drama|Sci-Fi +31658,4.203703703703703,Howl's Moving Castle (Hauru no ugoku shiro) (2004),Adventure|Animation|Fantasy|Romance +31660,4.0,Steamboy (Suchîmubôi) (2004),Action|Animation|Drama|Sci-Fi +31682,4.5,"Nomi Song, The (2004)",Documentary|Musical +31685,3.2291666666666665,Hitch (2005),Comedy|Romance +31689,4.5,Inside Deep Throat (2005),Documentary +31694,2.1666666666666665,Bride & Prejudice (2004),Comedy|Musical|Romance +31696,3.24,Constantine (2005),Action|Fantasy|Horror|Thriller +31700,2.5,Because of Winn-Dixie (2005),Children|Comedy|Drama +31724,1.0,Pauly Shore Is Dead (2003),Comedy +31737,3.25,Bunny Lake Is Missing (1965),Mystery|Thriller +31747,0.5,The Boyfriend School (1990),Comedy|Romance +31770,3.0,Night and the City (1950),Film-Noir|Thriller +31804,3.5,Night Watch (Nochnoy dozor) (2004),Action|Fantasy|Horror|Mystery|Sci-Fi|Thriller +31878,3.6578947368421053,Kung Fu Hustle (Gong fu) (2004),Action|Comedy +31903,5.0,Zelary (2003),Drama|Romance +31921,4.0,"Seven-Per-Cent Solution, The (1976)",Adventure|Comedy|Crime|Drama|Mystery|Thriller +31923,4.0,"Three Musketeers, The (1973)",Action|Adventure|Comedy +31930,4.0,Masculin Féminin (1966),Drama +31952,3.6666666666666665,Control (Kontroll) (2003),Comedy|Crime|Drama|Mystery +31956,2.5,5x2 (2004),Drama|Romance +31963,3.5,Bed & Board (Domicile conjugal) (1970),Comedy|Drama +31973,5.0,Germany Year Zero (Germania anno zero) (Deutschland im Jahre Null) (1948),Drama|War +32017,3.0,"Pacifier, The (2005)",Action|Comedy +32019,2.1666666666666665,Be Cool (2005),Comedy|Crime|Musical +32022,3.0,Gunner Palace (2004),Documentary|War +32025,4.0,Walk on Water (2004),Drama|Thriller +32029,3.4444444444444446,Hostage (2005),Action|Crime|Drama|Thriller +32031,3.269230769230769,Robots (2005),Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi|IMAX +32078,3.0,Godzilla vs. Mechagodzilla II (Gojira VS Mekagojira) (1993),Action|Drama|Sci-Fi +32139,4.0,"Agony and the Ecstasy, The (1965)",Drama +32153,0.5,Once Upon a Forest (1993),Adventure|Animation|Children|Fantasy +32160,3.5,Twentieth Century (1934),Comedy +32170,1.5,Chronicles (Crónicas) (2004),Crime|Drama +32174,2.0,"Green Berets, The (1968)",Action|Drama|War +32203,4.0,Brian's Song (1971),Drama +32211,3.5,Thriller: A Cruel Picture (Thriller - en grym film) (1974),Action|Crime|Drama|Thriller +32234,4.25,Julia (1977),Drama +32280,2.0,The 3 Penny Opera (1931),Comedy|Drama|Musical +32289,5.0,Ice Princess (2005),Children|Comedy|Drama +32291,2.5,Melinda and Melinda (2004),Comedy|Drama +32296,2.1666666666666665,Miss Congeniality 2: Armed and Fabulous (2005),Adventure|Comedy|Crime +32298,3.5,Guess Who (2005),Comedy|Romance +32302,2.0,"League of Ordinary Gentlemen, A (2004)",Documentary +32349,3.0,Stella Dallas (1937),Drama +32352,3.0,"Thief and the Cobbler, The (a.k.a. Arabian Knight) (1995)",Adventure|Animation|Comedy|Fantasy +32369,3.5,Panic in the Streets (1950),Crime|Drama|Film-Noir|Thriller +32371,3.5,Call Northside 777 (1948),Crime|Drama|Film-Noir +32381,4.0,Bells Are Ringing (1960),Comedy|Musical|Romance +32387,4.0,"Sword of Doom, The (Dai-bosatsu tôge) (1966)",Action|Drama +32395,3.0,Attack of the Mushroom People (Matango) (1963),Fantasy|Horror|Sci-Fi|Thriller +32444,3.25,Carmen (1983),Drama|Musical|Romance +32460,5.0,Knockin' on Heaven's Door (1997),Action|Comedy|Crime|Drama +32464,3.0,City of Hope (1991),Drama +32469,4.0,We're No Angels (1955),Comedy|Crime|Drama +32515,5.0,Walker (1987),Adventure|Drama|War|Western +32525,5.0,The Earrings of Madame de... (1953),Drama|Romance +32562,4.0,Harvie Krumpet (2003),Animation|Comedy|Drama +32582,4.0,"Wild Parrots of Telegraph Hill, The (2003)",Documentary +32587,3.95,Sin City (2005),Action|Crime|Film-Noir|Mystery|Thriller +32591,4.0,Look at Me (Comme une image) (2004),Comedy|Drama|Romance +32596,3.1,Sahara (2005),Action|Adventure|Comedy +32598,3.0625,Fever Pitch (2005),Comedy|Romance +32632,4.0,Electra Glide in Blue (1973),Action|Crime +32666,1.0,National Lampoon's Lady Killers (National Lampoon's Gold Diggers) (2003),Comedy +32686,3.0,Blood on Satan's Claw (a.k.a. Satan's Skin) (1971),Horror|Thriller +32728,3.0,"Little Girl Who Lives Down the Lane, The (1976)",Drama|Mystery|Thriller +32735,4.0,Arabian Nights (Il fiore delle mille e una notte) (1974),Comedy|Drama|Fantasy +32743,3.5,Ringu 0: Bâsudei (2000),Drama|Horror|Thriller +32797,4.5,Satan's Brew (Satansbraten) (1976),Comedy|Drama +32825,4.25,Sexmission (Seksmisja) (1984),Adventure|Comedy|Sci-Fi +32840,4.5,Vincent (1982),Animation +32844,0.5,Waterloo Bridge (1940),Drama|Romance|War +32853,3.0,"Sorrow and the Pity, The (Le chagrin et la pitié) (1969)",Documentary|War +32882,2.75,"Big Store, The (1941)",Comedy|Musical +32892,4.0,Ivan's Childhood (a.k.a. My Name is Ivan) (Ivanovo detstvo) (1962),Drama|War +32898,4.333333333333333,"Trip to the Moon, A (Voyage dans la lune, Le) (1902)",Action|Adventure|Fantasy|Sci-Fi +32914,3.0,Carrie (2002),Drama|Horror|Thriller +32943,4.0,Life Is Sweet (1990),Comedy|Drama +33004,3.2941176470588234,"Hitchhiker's Guide to the Galaxy, The (2005)",Adventure|Comedy|Sci-Fi +33021,3.5,Dark Habits (Entre tinieblas) (1983),Comedy|Drama +33085,2.0,"Amityville Horror, The (2005)",Horror|Thriller +33124,3.5,Before the Fall (NaPolA - Elite für den Führer) (2004),Drama|War +33138,4.5,Palindromes (2004),Adventure|Comedy|Drama +33145,3.5,"Lot Like Love, A (2005)",Comedy|Drama|Romance +33154,3.642857142857143,Enron: The Smartest Guys in the Room (2005),Documentary +33158,1.0,xXx: State of the Union (2005),Action|Crime|Thriller +33162,2.95,Kingdom of Heaven (2005),Action|Drama|Romance|War +33164,1.8333333333333333,House of Wax (2005),Horror|Thriller +33166,4.0,Crash (2004),Crime|Drama +33171,4.0,Mysterious Skin (2004),Drama|Mystery +33296,3.0,Buying the Cow (2002),Comedy|Romance +33312,4.0,"Cocoanuts, The (1929)",Comedy|Musical +33358,4.0,Off the Map (2003),Comedy|Drama +33380,3.5,25 Watts (2001),Comedy|Drama +33437,3.75,Unleashed (Danny the Dog) (2005),Action|Crime|Drama|Thriller +33493,3.629032258064516,Star Wars: Episode III - Revenge of the Sith (2005),Action|Adventure|Sci-Fi +33495,2.75,Kicking & Screaming (2005),Comedy +33499,2.25,Monster-in-Law (2005),Comedy|Romance +33558,3.0,"Snow Walker, The (2003)",Adventure|Drama +33587,3.0,"Uninvited, The (1944)",Horror|Mystery|Romance +33592,2.5,Bad Guy (Nabbeun namja) (2001),Drama +33615,3.2857142857142856,Madagascar (2005),Adventure|Animation|Children|Comedy +33621,3.5,Somersault (2004),Drama +33639,3.8333333333333335,Mad Hot Ballroom (2005),Children|Documentary +33646,3.1666666666666665,"Longest Yard, The (2005)",Comedy|Drama +33660,3.5789473684210527,Cinderella Man (2005),Drama|Romance +33669,3.75,"Sisterhood of the Traveling Pants, The (2005)",Adventure|Comedy|Drama +33672,3.5,Lords of Dogtown (2005),Action|Comedy|Drama +33679,3.1020408163265305,Mr. & Mrs. Smith (2005),Action|Adventure|Comedy|Romance +33681,1.5,"Adventures of Sharkboy and Lavagirl 3-D, The (2005)",Action|Adventure|Children|Fantasy +33683,2.5,High Tension (Haute tension) (Switchblade Romance) (2003),Horror|Thriller +33688,1.0,Parineeta (2005),Drama|Musical|Romance +33750,4.0,Innocent Voices (Voces inocentes) (2004),Drama|War +33760,3.5,Anna and the King of Siam (1946),Drama|Romance +33794,3.857142857142857,Batman Begins (2005),Action|Crime|IMAX +33817,2.25,My Summer of Love (2004),Drama|Romance +33826,4.0,Saint Ralph (2004),Comedy|Drama +33830,2.5,Herbie: Fully Loaded (2005),Adventure|Comedy|Romance +33834,3.3,Land of the Dead (2005),Action|Horror|Thriller +33836,2.2142857142857144,Bewitched (2005),Comedy|Fantasy|Romance +33838,3.5,Rize (2005),Documentary +33880,2.7,Me and You and Everyone We Know (2005),Comedy|Drama +33896,2.5,3 Extremes (Three... Extremes) (Saam gaang yi) (2004),Horror +33903,4.25,"Edukators, The (Die Fetten Jahre sind vorbei) (2004)",Comedy|Crime|Drama|Romance +33912,4.0,"Unmarried Woman, An (1978)",Comedy|Drama|Romance +33917,4.0,"Member of the Wedding, The (1952)",Drama +34002,2.5,Room Service (1938),Comedy +34018,3.0,At the Circus (1939),Comedy|Musical +34048,2.85,War of the Worlds (2005),Action|Adventure|Sci-Fi|Thriller +34072,3.888888888888889,"March of the Penguins (Marche de l'empereur, La) (2005)",Documentary +34129,2.0,Rebound (2005),Comedy +34143,2.6666666666666665,Dark Water (2005),Drama|Horror|Thriller +34150,2.533333333333333,Fantastic Four (2005),Action|Adventure|Sci-Fi +34153,4.0,Murderball (2005),Documentary +34162,3.5476190476190474,Wedding Crashers (2005),Comedy|Romance +34164,4.25,Happy Endings (2005),Comedy|Drama +34198,3.0,Russian Dolls (Les poupées russes) (2005),Comedy|Romance +34271,2.75,Hustle & Flow (2005),Crime|Drama +34319,3.159090909090909,"Island, The (2005)",Action|Sci-Fi|Thriller +34321,3.3333333333333335,Bad News Bears (2005),Children|Comedy +34323,3.3333333333333335,"Devil's Rejects, The (2005)",Action|Crime|Horror +34326,4.5,Last Days (2005),Drama +34332,3.4583333333333335,Sky High (2005),Action|Adventure|Children|Comedy +34334,2.125,Stealth (2005),Action|Adventure|Sci-Fi|Thriller +34336,3.0,Must Love Dogs (2005),Comedy|Romance +34338,4.0,"Aristocrats, The (2005)",Comedy|Documentary +34359,3.5,Georgy Girl (1966),Comedy +34364,3.0,This Is My Life (1992),Comedy|Drama +34405,3.7875,Serenity (2005),Action|Adventure|Sci-Fi +34435,4.5,Sholay (1975),Action|Adventure|Comedy|Musical|Romance|Thriller +34437,3.6,Broken Flowers (2005),Comedy|Drama +34520,2.5,"Dukes of Hazzard, The (2005)",Action|Adventure|Comedy +34523,2.25,The Chumscrubber (2005),Comedy|Drama +34528,4.0,Junebug (2005),Comedy|Drama +34530,1.5,Deuce Bigalow: European Gigolo (2005),Comedy +34532,3.6,"Skeleton Key, The (2005)",Drama|Horror|Mystery|Thriller +34534,2.5,Four Brothers (2005),Action|Crime|Drama +34536,4.0,The Great Raid (2005),Action|Drama|War +34542,3.75,Grizzly Man (2005),Documentary +34552,3.75,"Girl in the Café, The (2005)",Drama|Romance +34583,3.0,Prime Cut (1972),Action|Crime|Drama +34608,3.0,"Best of Everything, The (1959)",Drama|Romance +35836,3.6470588235294117,"40-Year-Old Virgin, The (2005)",Comedy|Romance +35957,3.5,Red Eye (2005),Horror|Thriller +36152,3.0,Dreamchild (1985),Drama|Fantasy|Romance +36276,3.0833333333333335,Hidden (a.k.a. Cache) (Caché) (2005),Drama|Mystery|Thriller +36289,2.0,Asterix & Obelix vs. Caesar (Astérix et Obélix contre César) (1999),Adventure|Children|Comedy|Fantasy +36397,1.5,Valiant (2005),Adventure|Animation|Children|Comedy|Fantasy|War +36401,2.5454545454545454,"Brothers Grimm, The (2005)",Comedy|Fantasy|Horror|Thriller +36509,2.5,"Cave, The (2005)",Action|Adventure|Horror|Mystery|Sci-Fi|Thriller +36517,3.4444444444444446,"Constant Gardener, The (2005)",Drama|Thriller +36519,3.0,Transporter 2 (2005),Action|Crime|Thriller +36525,3.0625,Just Like Heaven (2005),Comedy|Fantasy|Romance +36527,4.083333333333333,Proof (2005),Drama +36529,3.6774193548387095,Lord of War (2005),Action|Crime|Drama|Thriller|War +36533,2.5,Cry_Wolf (a.k.a. Cry Wolf) (2005),Drama|Horror|Mystery|Thriller +36535,3.2857142857142856,Everything Is Illuminated (2005),Comedy|Drama +36553,3.0,In Old Chicago (1937),Action|Drama|Musical|War +37211,2.75,Go West (1940),Comedy|Musical|Western +37240,3.75,Why We Fight (2005),Documentary +37277,1.0,200 Motels (1971),Comedy|Musical +37380,2.2,Doom (2005),Action|Horror|Sci-Fi +37382,3.25,Domino (2005),Crime|Drama|Thriller +37384,3.4,Waiting... (2005),Comedy +37386,2.5384615384615383,Aeon Flux (2005),Action|Sci-Fi +37475,4.0,"Unfinished Life, An (2005)",Drama +37477,2.5,"Man, The (2005)",Action|Comedy|Crime +37720,3.25,"Exorcism of Emily Rose, The (2005)",Crime|Drama|Horror|Thriller +37727,2.4545454545454546,Flightplan (2005),Action|Drama|Thriller +37729,3.738095238095238,Corpse Bride (2005),Animation|Comedy|Fantasy|Musical|Romance +37731,3.65,Green Street Hooligans (a.k.a. Hooligans) (2005),Crime|Drama +37733,3.625,"History of Violence, A (2005)",Action|Crime|Drama|Thriller +37736,3.0,Oliver Twist (2005),Drama +37739,3.5,"Greatest Game Ever Played, The (2005)",Drama +37741,3.9210526315789473,Capote (2005),Crime|Drama +37785,3.0,"Anderson Tapes, The (1971)",Crime|Drama|Thriller +37830,3.3125,Final Fantasy VII: Advent Children (2004),Action|Adventure|Animation|Fantasy|Sci-Fi +37853,3.25,Into the Blue (2005),Action|Adventure|Crime|Thriller +37855,3.0,"Prize Winner of Defiance Ohio, The (2005)",Drama +37857,4.333333333333333,MirrorMask (2005),Adventure|Children|Drama|Fantasy +38038,3.75,Wallace & Gromit in The Curse of the Were-Rabbit (2005),Adventure|Animation|Children|Comedy +38061,3.793103448275862,Kiss Kiss Bang Bang (2005),Comedy|Crime|Mystery|Thriller +38304,4.166666666666667,No Direction Home: Bob Dylan (2005),Documentary +38384,3.5,Hail the Conquering Hero (1944),Comedy +38798,3.125,In Her Shoes (2005),Comedy|Drama +38886,3.5,"Squid and the Whale, The (2005)",Comedy|Drama +38992,3.25,Two for the Money (2005),Drama +38994,2.0,Separate Lies (2005),Drama|Romance|Thriller +39183,3.6206896551724137,Brokeback Mountain (2005),Drama|Romance +39231,3.75,Elizabethtown (2005),Comedy|Drama|Romance +39234,4.0,North Country (2005),Drama +39292,3.8518518518518516,"Good Night, and Good Luck. (2005)",Crime|Drama +39307,3.25,Dreamer: Inspired by a True Story (2005),Children|Drama +39381,3.0,"Proposition, The (2005)",Crime|Drama|Western +39398,3.0,C.S.A.: The Confederate States of America (2004),Comedy|Drama +39408,0.5,Left Behind: World at War (2005),Drama +39414,4.333333333333333,Shopgirl (2005),Comedy|Drama|Romance +39416,5.0,Kids in America (2005),Comedy|Drama +39419,2.5,Where the Truth Lies (2005),Drama|Thriller +39427,4.5,Stay (2005),Thriller +39435,3.125,"Legend of Zorro, The (2005)",Action|Adventure|Drama|Western +39444,3.1666666666666665,"Weather Man, The (2005)",Comedy|Drama +39446,3.25,Saw II (2005),Horror|Thriller +39659,3.5,Teorema (1968),Drama +39768,4.5,Life is a Miracle (Zivot je cudo) (2004),Comedy|Drama|Musical|Romance|War +39779,3.5,Tarzan and His Mate (1934),Action|Adventure +39869,4.0,Manderlay (2005),Drama +39941,4.0,"Love on the Run (Amour en fuite, L') (1979)",Comedy|Drama|Romance +40148,4.5,Revolver (2005),Crime|Drama|Thriller +40226,5.0,Wild Zero (2000),Action|Comedy|Horror|Romance|Sci-Fi +40278,3.5,Jarhead (2005),Action|Drama|War +40339,2.3333333333333335,Chicken Little (2005),Action|Adventure|Animation|Children|Comedy|Sci-Fi +40412,4.75,Dead Man's Shoes (2004),Crime|Thriller +40414,4.333333333333333,Joyeux Noël (Merry Christmas) (2005),Drama|War +40491,4.5,"Match Factory Girl, The (Tulitikkutehtaan tyttö) (1990)",Comedy|Drama +40574,3.0,Get Rich or Die Tryin' (2005),Action|Crime|Drama +40581,4.25,Just Friends (2005),Comedy|Romance +40583,3.6875,Syriana (2005),Drama|Thriller +40597,2.0,One-Way Ticket to Mombasa (Menolippu Mombasaan) (2002),Comedy|Drama +40614,3.25,Derailed (2005),Drama|Thriller +40629,3.725,Pride & Prejudice (2005),Drama|Romance +40723,3.0,Wolf Creek (2005),Crime|Horror|Thriller +40732,3.857142857142857,"Descent, The (2005)",Adventure|Drama|Horror|Thriller +40815,3.8813559322033897,Harry Potter and the Goblet of Fire (2005),Adventure|Fantasy|Thriller|IMAX +40817,2.5,Dinner with Friends (2001),Comedy|Drama +40819,3.880952380952381,Walk the Line (2005),Drama|Musical|Romance +40826,2.9,Rent (2005),Drama|Musical|Romance +40833,2.5,"Fists in the Pocket (Pugni in tasca, I) (1965)",Drama +40851,2.875,Zathura (2005),Action|Adventure|Children|Fantasy +40870,3.5,C.R.A.Z.Y. (2005),Drama +40946,4.0,Sarah Silverman: Jesus Is Magic (2005),Comedy|Musical +40959,1.75,"Ice Harvest, The (2005)",Action|Comedy|Crime|Thriller +41226,3.8333333333333335,Sounder (1972),Drama +41285,3.5,Match Point (2005),Crime|Drama|Romance +41336,4.0,Nazarin (Nazarín) (1959),Drama +41527,4.666666666666667,Paradise Now (2005),Crime|Drama|Thriller|War +41566,3.4591836734693877,"Chronicles of Narnia: The Lion, the Witch and the Wardrobe, The (2005)",Adventure|Children|Fantasy +41569,3.282608695652174,King Kong (2005),Action|Adventure|Drama|Fantasy|Thriller +41571,3.3181818181818183,Memoirs of a Geisha (2005),Drama|Romance +41573,5.0,"Family Stone, The (2005)",Comedy|Drama|Romance +41714,3.5,Dona Flor and Her Two Husbands (Dona Flor e Seus Dois Maridos) (1976),Comedy +41716,3.25,"Matador, The (2005)",Comedy|Drama|Thriller +41769,3.0,Mozart and the Whale (2005),Comedy|Drama|Romance +41863,3.75,"Three Burials of Melquiades Estrada, The (2006)",Adventure|Crime|Drama +41912,4.5,Slim Susie (Smala Sussie) (2003),Comedy|Crime|Mystery +41997,3.6875,Munich (2005),Action|Crime|Drama|Thriller +42002,2.8333333333333335,"Producers, The (2005)",Comedy|Musical +42004,4.4,Transamerica (2005),Adventure|Comedy|Drama +42007,2.5,Rumor Has It... (2005),Comedy|Drama|Romance +42009,3.0,Cheaper by the Dozen 2 (2005),Adventure|Comedy +42011,2.25,Fun with Dick and Jane (2005),Comedy|Crime +42013,1.75,"Ringer, The (2005)",Comedy +42015,2.8333333333333335,Casanova (2005),Action|Adventure|Comedy|Drama|Romance +42163,4.25,Richard Pryor: Live in Concert (1979),Comedy|Documentary +42197,3.1666666666666665,Keeping Mum (2005),Comedy|Crime +42418,3.75,"New World, The (2005)",Adventure|Drama|Romance +42632,3.1666666666666665,Lady Vengeance (Sympathy for Lady Vengeance) (Chinjeolhan geumjassi) (2005),Crime|Drama|Mystery|Thriller +42677,4.5,"Cutting Edge: The Magic of Movie Editing, The (2004)",Documentary +42681,3.5,49th Parallel (1941),Adventure|Drama|Thriller|War +42718,3.75,District 13 (Banlieue 13) (2004),Action|Crime|Sci-Fi +42721,1.0,BloodRayne (2005),Action|Fantasy +42723,2.625,Hostel (2005),Horror +42725,3.5,Grandma's Boy (2006),Comedy +42728,3.0,Tristan & Isolde (2006),Drama|Romance +42730,3.0,Glory Road (2006),Drama +42732,3.25,Last Holiday (2006),Comedy +42734,3.5,Hoodwinked! (2005),Animation|Children|Comedy +42738,3.1666666666666665,Underworld: Evolution (2006),Action|Fantasy|Horror +42740,2.5,Looking for Comedy in the Muslim World (2005),Comedy +42783,1.5,Shadows of Our Forgotten Ancestors (Tini zabutykh predkiv) (1964),Drama|Romance +42900,5.0,Cul-de-sac (1966),Comedy|Crime|Drama|Thriller +42935,4.0,Riding Alone for Thousands of Miles (Qian li zou dan qi) (2005),Drama +42946,3.0,Project A ('A' gai waak) (1983),Action|Comedy +42958,3.5,Little Manhattan (2005),Children|Comedy|Romance +43177,1.0,Over the Edge (1979),Crime|Drama +43267,5.0,On Probation (Tiempo de Valientes) (2005),Action|Comedy +43333,4.0,Water (2005),Drama|Romance +43351,3.0,"Temptations, The (1998)",Drama|Musical +43376,3.6666666666666665,Sophie Scholl: The Final Days (Sophie Scholl - Die letzten Tage) (2005),Drama|War +43391,3.0,Matti: Hell Is for Heroes (Matti) (2006),Comedy|Drama +43396,3.5625,"World's Fastest Indian, The (2005)",Drama +43419,2.0,Bandidas (2006),Action|Comedy|Crime|Western +43556,3.5,Annapolis (2006),Drama +43558,2.0,Big Momma's House 2 (2006),Action|Comedy|Crime +43560,3.75,Nanny McPhee (2005),Children|Comedy|Fantasy +43635,4.0,Bye Bye Birdie (1963),Comedy|Musical +43679,4.0,Final Destination 3 (2006),Horror|Mystery|Thriller +43708,3.5,Block Party (a.k.a. Dave Chappelle's Block Party) (2005),Comedy|Documentary +43744,4.0,Imagine Me & You (2005),Comedy|Drama|Romance +43832,3.0,"Call of Cthulhu, The (2005)",Horror|Thriller +43836,2.125,"Pink Panther, The (2006)",Adventure|Comedy|Crime +43838,3.5,Troll (1986),Comedy|Fantasy|Horror +43869,4.0,Curious George (2006),Adventure|Animation|Children|Comedy +43871,2.6666666666666665,Firewall (2006),Crime|Drama|Thriller +43899,3.0,Tony Takitani (2004),Drama +43904,2.5,When a Stranger Calls (2006),Horror|Thriller +43908,3.5,London (2005),Drama +43910,4.0,Neil Young: Heart of Gold (2006),Documentary|Musical +43917,3.0,Eight Below (2006),Action|Adventure|Drama|Romance +43919,1.6,Date Movie (2006),Comedy|Romance +43921,4.0,Running Scared (2006),Action|Crime|Thriller +43928,2.142857142857143,Ultraviolet (2006),Action|Fantasy|Sci-Fi|Thriller +43930,3.5,Just My Luck (2006),Comedy|Romance +43932,2.0,Pulse (2006),Action|Drama|Fantasy|Horror|Mystery|Sci-Fi|Thriller +43936,2.888888888888889,16 Blocks (2006),Crime|Thriller +44004,2.9166666666666665,Failure to Launch (2006),Comedy|Romance +44022,3.175,Ice Age 2: The Meltdown (2006),Adventure|Animation|Children|Comedy +44073,2.0,Stromboli (1950),Drama +44191,4.013698630136986,V for Vendetta (2006),Action|Sci-Fi|Thriller|IMAX +44193,2.8333333333333335,She's the Man (2006),Comedy|Romance +44195,3.9125,Thank You for Smoking (2006),Comedy|Drama +44197,4.5,Find Me Guilty (2006),Comedy|Crime|Drama +44199,3.875,Inside Man (2006),Crime|Drama|Thriller +44204,3.8,Tsotsi (2005),Crime|Drama +44225,3.25,Aquamarine (2006),Children|Comedy|Fantasy +44301,4.0,Lights in the Dusk (Laitakaupungin valot) (2006),Crime|Drama +44317,2.0,Kummeli Stories (1995),Comedy +44397,2.0,"Hills Have Eyes, The (2006)",Drama|Horror|Thriller +44421,4.0,"Personal Journey with Martin Scorsese Through American Movies, A (1995)",Documentary +44511,4.0,Unknown White Male (2005),Documentary +44555,3.9324324324324325,"Lives of Others, The (Das leben der Anderen) (2006)",Drama|Romance|Thriller +44587,4.0,Nanook of the North (1922),Documentary|Drama +44597,2.5,Youth of the Beast (Yaju no seishun) (1963),Action|Crime|Mystery +44613,3.5,Take the Lead (2006),Drama +44633,4.0,"Devil and Daniel Johnston, The (2005)",Documentary +44665,3.84,Lucky Number Slevin (2006),Crime|Drama|Mystery +44671,3.0,"Wild Blue Yonder, The (2005)",Sci-Fi +44694,3.45,Volver (2006),Comedy|Drama +44709,3.8333333333333335,Akeelah and the Bee (2006),Drama +44731,4.0,Stay Alive (2006),Horror|Sci-Fi|Thriller +44759,1.5,Basic Instinct 2 (2006),Crime|Drama|Mystery|Thriller +44761,3.0,Brick (2005),Crime|Drama|Film-Noir|Mystery +44788,4.1,This Film Is Not Yet Rated (2006),Documentary +44828,1.75,Slither (2006),Comedy|Horror|Sci-Fi +44840,3.5,"Benchwarmers, The (2006)",Comedy +44849,3.5,Renaissance (2006),Action|Animation|Film-Noir|Sci-Fi|Thriller +44864,2.5,Friends with Money (2006),Comedy|Drama|Romance +44911,2.0,Magic (1978),Drama|Horror|Romance|Thriller +44972,2.875,Scary Movie 4 (2006),Comedy|Horror +44974,3.8333333333333335,Hard Candy (2005),Drama|Thriller +45000,4.0,"Chinoise, La (1967)",Comedy|Drama +45028,3.25,"Prairie Home Companion, A (2006)",Comedy|Drama|Musical +45062,2.25,"Sentinel, The (2006)",Crime|Drama|Thriller +45081,2.875,Silent Hill (2006),Fantasy|Horror|Thriller +45172,4.5,23 (23 - Nichts ist so wie es scheint) (1998),Drama|Thriller +45179,3.5,"Glass Key, The (1942)",Crime|Drama|Film-Noir|Mystery +45183,3.75,"Protector, The (a.k.a. Warrior King) (Tom yum goong) (2005)",Action|Comedy|Crime|Thriller +45186,3.3095238095238093,Mission: Impossible III (2006),Action|Adventure|Thriller +45208,1.5,RV (2006),Adventure|Children|Comedy +45210,3.75,United 93 (2006),Crime|Drama +45221,2.0,Stick It (2006),Comedy +45382,3.0,Down in the Valley (2005),Drama|Romance +45431,2.9,Over the Hedge (2006),Adventure|Animation|Children|Comedy +45440,3.75,Art School Confidential (2006),Comedy|Drama +45442,3.5,Poseidon (2006),Action|Adventure|Thriller|IMAX +45447,2.9857142857142858,"Da Vinci Code, The (2006)",Drama|Mystery|Thriller +45499,3.3181818181818183,X-Men: The Last Stand (2006),Action|Sci-Fi|Thriller +45501,2.1,"Break-Up, The (2006)",Comedy|Drama|Romance +45506,4.0,Twelve and Holding (2005),Drama +45517,3.16,Cars (2006),Animation|Children|Comedy +45521,3.5,Wassup Rockers (2005),Comedy|Drama +45662,1.0,"Omen, The (2006)",Horror|Thriller +45666,2.9285714285714284,Nacho Libre (2006),Comedy +45668,3.125,"Lake House, The (2006)",Drama|Fantasy|Romance +45672,2.55,Click (2006),Adventure|Comedy|Drama|Fantasy|Romance +45679,4.0,"Seventh Victim, The (1943)",Drama|Film-Noir|Horror|Mystery +45720,3.142857142857143,"Devil Wears Prada, The (2006)",Comedy|Drama +45722,3.4152542372881354,Pirates of the Caribbean: Dead Man's Chest (2006),Action|Adventure|Fantasy +45726,2.5,"You, Me and Dupree (2006)",Comedy +45728,3.5,Clerks II (2006),Comedy +45730,2.25,Lady in the Water (2006),Drama|Fantasy|Mystery +45732,2.25,My Super Ex-Girlfriend (2006),Comedy|Fantasy|Romance +45837,2.75,Let It Be (1970),Documentary +45880,2.75,Marie Antoinette (2006),Drama|Romance +45928,3.5,Who Killed the Electric Car? (2006),Documentary +45942,4.0,"Mother and the Whore, The (Maman et la putain, La) (1973)",Drama +45950,3.789473684210526,"Inconvenient Truth, An (2006)",Documentary +45969,3.5,Career Opportunities (1991),Comedy|Romance +45987,4.0,Chuck Berry Hail! Hail! Rock 'n' Roll (1987),Documentary|Musical +46062,3.5,High School Musical (2006),Children|Comedy|Drama|Musical|Romance +46322,4.083333333333333,Jet Li's Fearless (Huo Yuan Jia) (2006),Action|Drama +46335,2.5714285714285716,"Fast and the Furious: Tokyo Drift, The (Fast and the Furious 3, The) (2006)",Action|Crime|Drama|Thriller +46337,1.25,Garfield: A Tail of Two Kitties (2006),Animation|Children|Comedy +46347,4.5,Metal: A Headbanger's Journey (2005),Documentary +46530,2.6153846153846154,Superman Returns (2006),Action|Adventure|Sci-Fi|IMAX +46544,4.5,Edward II (1991),Drama +46559,4.0,"Road to Guantanamo, The (2006)",Drama|War +46561,3.0,Leonard Cohen: I'm Your Man (2005),Documentary|Musical +46574,0.5,"OH in Ohio, The (2006)",Comedy +46578,3.9078947368421053,Little Miss Sunshine (2006),Adventure|Comedy|Drama +46664,3.5,"Fallen Idol, The (1948)",Drama|Mystery|Thriller +46723,3.5625,Babel (2006),Drama|Thriller +46772,2.0,Strangers with Candy (2005),Comedy +46850,3.6666666666666665,Wordplay (2006),Documentary +46855,3.5,Army of Shadows (L'armée des ombres) (1969),Action|Drama|Thriller|War +46865,1.75,Little Man (2006),Comedy +46919,4.0,End of the Spear (2005),Drama +46948,3.25,Monster House (2006),Animation|Children|Fantasy|Mystery +46965,2.75,Snakes on a Plane (2006),Action|Comedy|Horror|Thriller +46967,2.75,Scoop (2006),Comedy|Fantasy|Mystery +46970,3.0588235294117645,Talladega Nights: The Ballad of Ricky Bobby (2006),Action|Comedy +46972,3.0555555555555554,Night at the Museum (2006),Action|Comedy|Fantasy|IMAX +46974,2.0,World Trade Center (2006),Drama +46976,3.6625,Stranger than Fiction (2006),Comedy|Drama|Fantasy|Romance +47044,2.7,Miami Vice (2006),Action|Crime|Drama|Thriller +47092,4.5,On Dangerous Ground (1952),Crime|Drama|Film-Noir +47099,3.7916666666666665,"Pursuit of Happyness, The (2006)",Drama +47122,4.0,John Tucker Must Die (2006),Comedy|Romance +47124,2.75,"Ant Bully, The (2006)",Adventure|Animation|Children|Comedy|Fantasy|IMAX +47148,4.5,Mrs. Palfrey at the Claremont (2005),Comedy|Drama +47152,4.25,Cria Cuervos (1976),Drama +47196,1.5,"Rainmaker, The (1956)",Comedy|Romance|Thriller|Western +47200,3.142857142857143,Crank (2006),Action|Thriller +47202,4.0,"Secret Life of Words, The (2005)",Drama|Romance +47254,3.75,Chaos (2005),Action|Crime|Drama|Thriller +47261,3.0,"Night Listener, The (2006)",Fantasy|Mystery|Thriller +47274,4.0,Murmur of the Heart (Le souffle au coeur) (1971),Drama +47287,3.5,Compulsion (1959),Crime|Drama|Thriller +47330,1.0,Dirty Mary Crazy Larry (1974),Action|Crime|Drama|Romance +47382,3.25,Step Up (2006),Drama|Romance +47384,2.5,Zoom (2006),Adventure|Comedy|Drama|Fantasy +47404,4.0,Mind Game (2004),Adventure|Animation|Comedy|Fantasy|Romance|Sci-Fi +47423,2.75,Half Nelson (2006),Drama +47465,3.5,Tideland (2005),Drama|Fantasy|Thriller +47491,3.25,Adam's Apples (Adams æbler) (2005),Comedy|Drama +47493,3.0,Cabin in the Sky (1943),Fantasy|Musical +47518,3.590909090909091,Accepted (2006),Comedy +47606,3.0,Captain January (1936),Children|Comedy|Musical +47610,3.727272727272727,"Illusionist, The (2006)",Drama|Fantasy|Mystery|Romance +47629,3.4,The Queen (2006),Drama +47640,2.6875,Beerfest (2006),Comedy +47714,3.0,Blithe Spirit (1945),Comedy|Drama|Fantasy|Romance +47721,3.1,"Red Balloon, The (Ballon rouge, Le) (1956)",Children|Fantasy +47728,5.0,Green for Danger (1946),Crime|Mystery +47810,1.0,"Wicker Man, The (2006)",Horror|Mystery|Thriller +47815,0.5,Crossover (2006),Action|Drama +47894,2.0,"Wind That Shakes the Barley, The (2006)",Drama|War +47937,3.0,Severance (2006),Comedy|Horror|Thriller +47950,2.8333333333333335,Hollywoodland (2006),Crime|Drama|Mystery|Thriller +47952,3.0,"Covenant, The (2006)",Action|Horror|Thriller +47978,4.0,SherryBaby (2006),Drama +47997,3.1363636363636362,Idiocracy (2006),Adventure|Comedy|Sci-Fi|Thriller +47999,3.5833333333333335,Jesus Camp (2006),Documentary|Drama +48032,4.0,"Tiger and the Snow, The (La tigre e la neve) (2005)",Comedy|Drama|Romance|War +48043,3.125,"Fountain, The (2006)",Drama|Fantasy|Romance +48061,4.5,Snoopy Come Home (1972),Animation|Children|Comedy|Musical +48082,3.2777777777777777,"Science of Sleep, The (La science des rêves) (2006)",Comedy|Drama|Fantasy|Romance +48142,3.0,"Black Dahlia, The (2006)",Crime|Drama|Mystery|Thriller +48159,3.0,Everyone's Hero (2006),Adventure|Animation|Children|Comedy +48165,4.5,"Seventh Continent, The (Der siebente Kontinent) (1989)",Drama +48198,3.0,Streamers (1983),Drama|War +48231,3.5,Taxidermia (2006),Comedy|Drama|Horror +48262,3.75,"Bridge, The (2006)",Documentary +48268,4.0,Empire Falls (2005),Drama|Romance +48301,4.0,"Private Life of Henry VIII, The (1933)",Comedy|Drama +48304,4.0,Apocalypto (2006),Adventure|Drama|Thriller +48319,2.75,Flyboys (2006),Action|Adventure|Drama|War +48322,3.1666666666666665,Jackass Number Two (2006),Comedy|Documentary +48385,3.272727272727273,Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan (2006),Comedy +48394,3.673076923076923,"Pan's Labyrinth (Laberinto del fauno, El) (2006)",Drama|Fantasy|Thriller +48414,3.0,Open Season (2006),Adventure|Animation|Children|Comedy|IMAX +48501,4.5,G.O.R.A. (2004),Adventure|Comedy|Sci-Fi +48516,4.2023809523809526,"Departed, The (2006)",Crime|Drama|Thriller +48518,3.0,"Texas Chainsaw Massacre: The Beginning, The (2006)",Horror|Thriller +48520,4.0,Employee of the Month (2006),Comedy +48522,0.5,Stormbreaker (Alex Rider: Operation Stormbreaker) (2006),Action|Children +48560,3.75,Running With Scissors (2006),Comedy|Drama +48591,0.5,"Grudge 2, The (2006)",Drama|Horror|Mystery|Thriller +48593,4.0,Man of the Year (2006),Comedy|Thriller +48596,3.0,"Marine, The (2006)",Action|Drama|Thriller +48660,1.0,"Elementary Particles, The (Elementarteilchen) (2006)",Drama|Romance +48682,5.0,Offside (2006),Comedy|Drama +48696,3.888888888888889,Little Children (2006),Drama|Romance +48698,4.333333333333333,Deliver Us from Evil (2006),Documentary +48738,4.033333333333333,"Last King of Scotland, The (2006)",Drama|Thriller +48741,3.6666666666666665,"U.S. vs. John Lennon, The (2006)",Documentary +48744,3.25,Shortbus (2006),Comedy|Drama|Romance +48774,3.627906976744186,Children of Men (2006),Action|Adventure|Drama|Sci-Fi|Thriller +48780,4.125,"Prestige, The (2006)",Drama|Mystery|Sci-Fi|Thriller +48783,3.875,Flags of Our Fathers (2006),Drama|War +48791,5.0,Flicka (2006),Children|Drama +48817,3.5,Sleeping Dogs Lie (a.k.a. Stay) (2006),Comedy|Drama|Romance +48856,3.5,"Guide to Recognizing Your Saints, A (2006)",Crime|Drama +48872,3.3333333333333335,13 Tzameti (2005),Film-Noir|Thriller +48877,2.857142857142857,Saw III (2006),Crime|Horror|Thriller +48972,1.0,Lunacy (Sílení) (2006),Animation|Horror +48982,3.5,Flushed Away (2006),Animation|Comedy +48997,3.2222222222222223,Perfume: The Story of a Murderer (2006),Crime|Drama|Thriller +49013,1.0,"Santa Clause 3: The Escape Clause, The (2006)",Comedy|Fantasy +49132,4.0,Shut Up & Sing (2006),Documentary +49220,3.0,For Your Consideration (2006),Comedy +49225,3.5,Street Fight (2005),Documentary +49265,4.0,Shooting Dogs (a.k.a. Beyond the Gates) (2005),Documentary|Drama|War +49272,3.877049180327869,Casino Royale (2006),Action|Adventure|Thriller +49274,2.1666666666666665,Happy Feet (2006),Adventure|Animation|Children|Comedy|IMAX +49278,3.4615384615384617,Déjà Vu (Deja Vu) (2006),Action|Sci-Fi|Thriller +49280,5.0,Bobby (2006),Drama +49284,3.5,10 Items or Less (2006),Comedy|Drama|Romance +49286,3.269230769230769,"Holiday, The (2006)",Comedy|Romance +49299,4.0,Luna de Avellaneda (2004),Drama|Romance +49314,3.5,Harsh Times (2006),Action|Crime|Drama +49394,3.5,Simon of the Desert (Simón del desierto) (1965),Drama +49396,3.5,Tenacious D in The Pick of Destiny (2006),Adventure|Comedy|Musical +49526,3.0,National Lampoon's Van Wilder: The Rise of Taj (2006),Comedy +49528,2.25,Turistas (2006),Adventure|Drama|Horror|Mystery|Thriller +49530,4.04054054054054,Blood Diamond (2006),Action|Adventure|Crime|Drama|Thriller|War +49647,3.5,Charlotte's Web (2006),Children|Comedy|Drama|Fantasy +49649,2.1666666666666665,Eragon (2006),Action|Adventure|Fantasy +49651,3.6,Rocky Balboa (2006),Action|Drama +49688,4.0,"Dam Busters, The (1955)",Action|Drama|War +49772,3.5,"Painted Veil, The (2006)",Drama|Romance +49817,4.0,"Plague Dogs, The (1982)",Adventure|Animation|Drama +49822,3.25,"Good Shepherd, The (2006)",Drama|Thriller +49824,3.25,Dreamgirls (2006),Drama|Musical +49902,4.0,"Decameron, The (Decameron, Il) (1971)",Comedy|Drama +49910,2.5,Freedom Writers (2007),Drama +49932,3.1666666666666665,Inland Empire (2006),Drama|Mystery|Thriller +49957,4.5,"History Boys, The (2006)",Comedy|Drama +49961,3.5,Notes on a Scandal (2006),Drama +50005,2.25,Curse of the Golden Flower (Man cheng jin dai huang jin jia) (2006),Action|Drama +50011,4.5,"Bothersome Man, The (Brysomme mannen, Den) (2006)",Comedy|Drama|Fantasy|Mystery +50064,3.0,"Good German, The (2006)",Drama|Mystery|Thriller +50068,4.045454545454546,Letters from Iwo Jima (2006),Drama|War +50147,2.0,Black Christmas (2006),Action|Horror|Thriller +50160,4.0,Miss Potter (2006),Drama +50162,3.0,Arthur and the Invisibles (2007),Action|Children|Fantasy +50259,4.0,Old Joy (2006),Drama +50442,2.0,Alpha Dog (2007),Crime|Drama +50445,3.5,"Hitcher, The (2007)",Action|Horror|Thriller +50514,4.0,After the Wedding (Efter brylluppet) (2006),Drama +50583,3.0,Linda Linda Linda (2005),Comedy|Drama +50601,2.625,Bridge to Terabithia (2007),Adventure|Children|Fantasy +50641,4.75,House (Hausu) (1977),Comedy|Fantasy|Horror +50651,3.0,Kenny (2006),Comedy +50658,4.375,49 Up (2005),Documentary +50685,3.5,Waitress (2007),Comedy|Drama|Romance +50703,5.0,"Secret, The (2006)",Documentary +50740,4.5,Seven Up! (1964),Documentary +50742,4.5,7 Plus Seven (1970),Documentary +50792,2.5,Catch and Release (2006),Comedy|Drama|Romance +50794,3.5,Smokin' Aces (2006),Action|Crime|Drama|Thriller +50798,1.5,Epic Movie (2007),Adventure|Comedy +50802,3.25,Because I Said So (2007),Comedy|Drama|Romance +50804,2.25,Hannibal Rising (2007),Drama|Horror|Thriller +50806,1.5,Norbit (2007),Comedy|Romance +50842,4.0,"Boss of It All, The (Direktøren for det hele) (2006)",Comedy|Drama +50851,3.75,Cocaine Cowboys (2006),Documentary +50872,3.983050847457627,Ratatouille (2007),Animation|Children|Drama +50912,3.625,"Paris, I Love You (Paris, je t'aime) (2006)",Romance +50923,3.0,"Astronaut Farmer, The (2007)",Drama +50954,3.75,It's a Boy Girl Thing (2006),Comedy|Romance +51044,4.0,Magical Mystery Tour (1967),Comedy|Musical +51077,2.2857142857142856,Ghost Rider (2007),Action|Fantasy|Thriller +51080,3.9,Breach (2007),Drama|Thriller +51084,3.1875,Music and Lyrics (2007),Comedy|Romance +51086,3.1,"Number 23, The (2007)",Drama|Mystery|Thriller +51088,4.0,Reno 911!: Miami (2007),Comedy +51091,4.0,Black Snake Moan (2006),Drama +51094,3.5,Gray Matters (2006),Comedy|Drama|Romance +51127,4.5,loudQUIETloud: A Film About the Pixies (2006),Documentary +51174,4.0,Factory Girl (2006),Drama +51207,2.5,Street Trash (1987),Comedy|Horror +51255,3.761904761904762,Hot Fuzz (2007),Action|Comedy|Crime|Mystery +51277,4.5,"36th Chamber of Shaolin, The (Shao Lin san shi liu fang) (Master Killer) (1978)",Action|Adventure +51357,4.0,Citizen X (1995),Crime|Drama|Thriller +51372,1.75,"""Great Performances"" Cats (1998)",Musical +51380,4.0,"Canterbury Tales, The (I racconti di Canterbury) (1972)",Comedy|Drama +51412,3.5,Next (2007),Action|Sci-Fi|Thriller +51418,1.0,Breaking and Entering (2006),Drama +51471,5.0,Amazing Grace (2006),Drama|Romance +51540,3.925,Zodiac (2007),Crime|Drama|Thriller +51575,1.5,Wild Hogs (2007),Adventure|Comedy +51662,3.559322033898305,300 (2007),Action|Fantasy|War|IMAX +51698,3.0,"Last Mimzy, The (2007)",Adventure|Children|Sci-Fi +51705,3.5,Priceless (Hors de prix) (2006),Comedy|Romance +51709,4.0,"Host, The (Gwoemul) (2006)",Comedy|Drama|Horror|Sci-Fi|Thriller +51773,3.0,"America, America (1963)",Drama +51834,3.25,Becoming Jane (2007),Drama|Romance +51884,3.0,"Namesake, The (2006)",Drama|Romance +51925,2.75,Premonition (2007),Drama|Fantasy|Mystery|Thriller +51927,3.0,Dead Silence (2007),Horror|Mystery|Thriller +51931,4.0,Reign Over Me (2007),Drama +51935,4.214285714285714,Shooter (2007),Action|Drama|Thriller +51937,2.5,"Hills Have Eyes II, The (2007)",Horror|Thriller +51939,2.0,TMNT (Teenage Mutant Ninja Turtles) (2007),Action|Adventure|Animation|Children|Comedy|Fantasy +52241,3.5,"Lookout, The (2007)",Crime|Drama|Thriller +52245,3.142857142857143,Blades of Glory (2007),Comedy|Romance +52281,3.6666666666666665,Grindhouse (2007),Action|Crime|Horror|Sci-Fi|Thriller +52287,3.3125,Meet the Robinsons (2007),Action|Adventure|Animation|Children|Comedy|Sci-Fi +52319,4.0,Inglorious Bastards (Quel maledetto treno blindato) (1978),Action|Adventure|Drama|War +52328,3.409090909090909,Sunshine (2007),Adventure|Drama|Sci-Fi|Thriller +52378,2.5,No Way Out (1950),Drama|Film-Noir +52435,3.8846153846153846,How the Grinch Stole Christmas! (1966),Animation|Comedy|Fantasy|Musical +52456,3.5,Perfect Stranger (2007),Crime|Drama|Mystery|Thriller +52458,3.65,Disturbia (2007),Drama|Thriller +52460,2.0,Pathfinder (2007),Action|Adventure|Drama|Thriller|War +52462,3.75,Aqua Teen Hunger Force Colon Movie Film for Theaters (2007),Action|Adventure|Animation|Comedy|Fantasy|Mystery|Sci-Fi +52528,4.0,Tristana (1970),Drama +52545,4.0,Puccini for Beginners (2006),Comedy|Romance +52579,3.5,"Vie en Rose, La (Môme, La) (2007)",Drama|Musical +52604,3.5,Fracture (2007),Crime|Drama|Mystery|Thriller +52606,3.5,Big Nothing (2006),Comedy|Crime|Thriller +52617,5.0,Woman on the Beach (Haebyeonui yeoin) (2006),Comedy|Drama +52644,2.8333333333333335,Vacancy (2007),Horror|Thriller +52666,3.375,Benny's Video (1992),Drama|Horror +52668,4.5,In the Land of Women (2007),Comedy|Drama|Romance +52694,2.25,Mr. Bean's Holiday (2007),Comedy +52712,3.0,"Invisible, The (2007)",Crime|Drama|Fantasy|Mystery|Thriller +52717,3.5,"Condemned, The (2007)",Action|Adventure|Crime|Thriller +52722,2.717391304347826,Spider-Man 3 (2007),Action|Adventure|Sci-Fi|Thriller|IMAX +52730,2.5,It's a Very Merry Muppet Christmas Movie (2002),Children|Comedy +52767,4.5,21 Up (1977),Documentary +52831,4.0,Maniac Cop (1988),Action|Crime|Horror|Thriller +52885,4.090909090909091,Paprika (Papurika) (2006),Animation|Mystery|Sci-Fi +52913,4.0,Sylvia Scarlett (1935),Comedy|Drama|Romance +52950,4.0,Day Watch (Dnevnoy dozor) (2006),Action|Fantasy|Horror|Thriller +52952,4.166666666666667,This Is England (2006),Drama +52967,3.625,Away from Her (2006),Drama +52973,3.3958333333333335,Knocked Up (2007),Comedy|Drama|Romance +52975,3.7777777777777777,Hairspray (2007),Comedy|Drama|Musical +53000,3.4285714285714284,28 Weeks Later (2007),Horror|Sci-Fi|Thriller +53024,4.25,Jonestown: The Life and Death of Peoples Temple (2006),Documentary +53038,0.5,Red Dust (1932),Drama +53121,3.1153846153846154,Shrek the Third (2007),Adventure|Animation|Children|Comedy|Fantasy +53123,3.8636363636363638,Once (2006),Drama|Musical|Romance +53125,3.272727272727273,Pirates of the Caribbean: At World's End (2007),Action|Adventure|Comedy|Fantasy +53129,4.0,Mr. Brooks (2007),Crime|Drama|Thriller +53133,2.5,Gracie (2007),Drama +53138,4.0,"Librarian: Return to King Solomon's Mines, The (2006)",Action|Adventure|Fantasy +53189,4.0,Eagle vs Shark (2007),Comedy +53207,3.25,88 Minutes (2008),Crime|Drama|Mystery|Thriller +53318,3.9,Cashback (2006),Comedy|Drama|Romance +53322,3.24,Ocean's Thirteen (2007),Crime|Thriller +53326,2.0,Them (Ils) (2006),Horror +53435,3.1666666666666665,Hostel: Part II (2007),Crime|Horror|Thriller +53447,4.0,Paranoid Park (2007),Crime|Drama +53460,2.75,Surf's Up (2007),Animation|Children|Comedy +53464,1.9375,Fantastic Four: Rise of the Silver Surfer (2007),Action|Adventure|Sci-Fi +53466,2.5,Nancy Drew (2007),Adventure|Crime|Thriller +53468,3.8333333333333335,Fido (2006),Comedy|Horror|Thriller +53519,3.6153846153846154,Death Proof (2007),Action|Adventure|Crime|Horror|Thriller +53550,3.6666666666666665,Rescue Dawn (2006),Action|Adventure|Drama|War +53737,0.5,"Night of the Generals, The (1967)",Crime|Drama|Mystery|Thriller|War +53883,4.5,"Power of Nightmares, The: The Rise of the Politics of Fear (2004)",Documentary +53887,5.0,O Lucky Man! (1973),Comedy|Drama|Fantasy|Musical +53894,2.9166666666666665,Sicko (2007),Documentary|Drama +53953,3.5714285714285716,1408 (2007),Drama|Horror|Thriller +53956,3.642857142857143,Death at a Funeral (2007),Comedy +53972,3.5,Live Free or Die Hard (2007),Action|Adventure|Crime|Thriller +53974,2.75,License to Wed (2007),Comedy|Romance +53993,1.6,Evan Almighty (2007),Comedy|Fantasy +53996,3.225806451612903,Transformers (2007),Action|Sci-Fi|Thriller|IMAX +53999,2.5,Captivity (2007),Crime|Thriller +54001,3.75,Harry Potter and the Order of the Phoenix (2007),Adventure|Drama|Fantasy|IMAX +54004,2.7142857142857144,I Now Pronounce You Chuck and Larry (2007),Comedy|Romance +54190,3.4,Across the Universe (2007),Drama|Fantasy|Musical|Romance +54220,4.0,"Sterile Cuckoo, The (1969)",Comedy|Drama +54251,5.0,Dorian Blues (2004),Comedy +54256,4.0,Hot Rod (2007),Comedy +54259,3.869565217391304,Stardust (2007),Adventure|Comedy|Fantasy|Romance +54270,1.5,Skinwalkers (2007),Horror|Thriller +54272,3.3378378378378377,"Simpsons Movie, The (2007)",Animation|Comedy +54276,3.6666666666666665,No Reservations (2007),Comedy|Drama|Romance +54281,4.125,Charlie Bartlett (2007),Comedy|Drama +54286,3.959016393442623,"Bourne Ultimatum, The (2007)",Action|Crime|Thriller +54290,0.5,Bratz: The Movie (2007),Comedy +54328,5.0,My Best Friend (Mon meilleur ami) (2006),Comedy +54331,3.75,You Kill Me (2007),Comedy|Crime|Thriller +54372,4.5,Tell No One (Ne le dis à personne) (2006),Crime|Drama|Mystery|Thriller +54419,3.0,Czech Dream (Ceský sen) (2004),Documentary +54426,3.5,12:08 East of Bucharest (A fost sau n-a fost?) (2006),Comedy|Drama +54503,3.7386363636363638,Superbad (2007),Comedy +54513,4.0,Talk to Me (2007),Drama +54648,2.3333333333333335,Rush Hour 3 (2007),Action|Comedy|Crime|Thriller +54732,2.8333333333333335,Balls of Fury (2007),Comedy +54734,4.5,Sydney White (2007),Comedy +54736,4.0,"Kingdom, The (2007)",Action|Drama|Thriller +54745,3.5,Rocket Science (2007),Comedy|Drama +54768,0.5,Daddy Day Camp (2007),Children|Comedy +54771,3.0,"Invasion, The (2007)",Action|Drama|Horror|Sci-Fi|Thriller +54775,3.5,War (2007),Action|Thriller +54780,2.5,"Nanny Diaries, The (2007)",Comedy|Drama|Romance +54785,4.0,Halloween (2007),Horror +54787,4.0,Death Sentence (2007),Drama|Thriller +54881,4.222222222222222,"King of Kong, The (2007)",Documentary +54910,0.5,Behind the Mask: The Rise of Leslie Vernon (2006),Comedy|Horror|Thriller +54995,3.6785714285714284,Planet Terror (2007),Action|Horror|Sci-Fi +54997,4.0,3:10 to Yuma (2007),Action|Crime|Drama|Western +54999,3.875,Shoot 'Em Up (2007),Action|Comedy|Crime +55052,3.8333333333333335,Atonement (2007),Drama|Romance|War +55063,4.25,My Winnipeg (2007),Documentary|Fantasy +55069,4.375,"4 Months, 3 Weeks and 2 Days (4 luni, 3 saptamâni si 2 zile) (2007)",Drama +55071,3.0,No End in Sight (2007),Documentary +55078,4.0,Far from the Madding Crowd (1967),Drama|Romance +55094,3.5,In the Valley of Elah (2007),Drama|Mystery +55110,3.75,December Boys (2007),Drama +55116,4.0,"Hunting Party, The (2007)",Action|Adventure|Comedy|Drama|Thriller +55118,3.710526315789474,Eastern Promises (2007),Crime|Drama|Thriller +55156,4.0,"Unreasonable Man, An (2006)",Documentary +55167,2.375,Tekkonkinkreet (Tekkon kinkurîto) (2006),Action|Adventure|Animation|Crime|Fantasy +55207,4.0,Cashback (2004),Comedy|Drama +55232,2.875,Resident Evil: Extinction (2007),Action|Horror|Sci-Fi|Thriller +55245,3.25,Good Luck Chuck (2007),Comedy|Romance +55247,3.629032258064516,Into the Wild (2007),Action|Adventure|Drama +55250,2.75,"Game Plan, The (2007)",Comedy +55253,4.25,"Lust, Caution (Se, jie) (2007)",Drama|Romance|Thriller|War +55259,2.5,"Seeker: The Dark Is Rising, The (2007)",Action|Adventure|Drama|Fantasy +55261,2.25,"Heartbreak Kid, The (2007)",Comedy|Drama|Romance +55267,3.5833333333333335,Dan in Real Life (2007),Comedy|Drama|Romance +55269,3.7857142857142856,"Darjeeling Limited, The (2007)",Adventure|Comedy|Drama +55272,4.0,We Own the Night (2007),Crime|Drama +55274,4.5,Elizabeth: The Golden Age (2007),Drama +55276,3.8333333333333335,Michael Clayton (2007),Drama|Thriller +55280,3.6666666666666665,Lars and the Real Girl (2007),Comedy|Drama +55282,3.142857142857143,30 Days of Night (2007),Horror|Thriller +55290,3.7857142857142856,Gone Baby Gone (2007),Crime|Drama|Mystery +55294,2.5,Weirdsville (2007),Comedy|Crime|Drama +55363,3.3333333333333335,"Assassination of Jesse James by the Coward Robert Ford, The (2007)",Crime|Drama|Western +55417,3.0,Irina Palm (2007),Drama +55442,4.0,Persepolis (2007),Animation|Drama +55444,2.0,Control (2007),Drama +55451,4.2,The Jane Austen Book Club (2007),Comedy|Drama|Romance +55498,3.5,Silk (2007),Adventure|Drama|Romance +55555,5.0,"Edge of Heaven, The (Auf der anderen Seite) (2007)",Drama +55566,4.0,Tyler Perry's Why Did I Get Married? (2007),Comedy|Drama +55577,2.9166666666666665,Saw IV (2007),Crime|Horror|Thriller +55652,3.0,Scum (1979),Crime|Drama +55684,3.0,"City of Violence, The (Jjakpae) (2006)",Action|Crime|Drama +55687,3.0,My Kid Could Paint That (2007),Documentary +55721,3.875,Elite Squad (Tropa de Elite) (2007),Action|Crime|Drama|Thriller +55732,2.0,Martian Child (2007),Comedy|Drama +55757,2.5,Chilly Scenes of Winter (Head Over Heels) (1979),Comedy|Drama|Romance +55765,3.4545454545454546,American Gangster (2007),Crime|Drama|Thriller +55768,2.857142857142857,Bee Movie (2007),Animation|Comedy +55805,3.4,Before the Devil Knows You're Dead (2007),Crime|Drama|Thriller +55814,3.9,"Diving Bell and the Butterfly, The (Scaphandre et le papillon, Le) (2007)",Drama +55820,4.010204081632653,No Country for Old Men (2007),Crime|Drama +55830,2.8125,Be Kind Rewind (2008),Comedy +55851,3.5,Crazy Love (2007),Documentary +55872,3.0,August Rush (2007),Drama|Musical +55895,3.5,"Desperate Hours, The (1955)",Drama|Film-Noir|Thriller +55908,3.9166666666666665,"Man from Earth, The (2007)",Drama|Sci-Fi +55995,2.5,Beowulf (2007),Action|Adventure|Animation|Fantasy|IMAX +55999,3.25,Mr. Magorium's Wonder Emporium (2007),Children|Comedy|Fantasy +56003,2.75,Southland Tales (2006),Comedy|Drama|Sci-Fi|Thriller +56030,3.5,Darfur Now (2007),Documentary +56079,1.0,Smiley Face (2007),Comedy +56095,3.0,XXY (2007),Drama +56145,3.625,"Mist, The (2007)",Horror|Sci-Fi +56152,3.7333333333333334,Enchanted (2007),Adventure|Animation|Children|Comedy|Fantasy|Musical|Romance +56156,2.5,Hitman (2007),Action|Crime|Thriller +56169,3.75,Awake (2007),Drama|Thriller +56171,3.2,"Golden Compass, The (2007)",Adventure|Children|Fantasy +56174,3.1904761904761907,I Am Legend (2007),Action|Horror|Sci-Fi|Thriller|IMAX +56176,1.8333333333333333,Alvin and the Chipmunks (2007),Children|Comedy +56274,4.0,Margot at the Wedding (2007),Drama +56286,3.5,I'm Not There (2007),Drama +56333,3.75,"Savages, The (2007)",Comedy|Drama +56339,3.875,"Orphanage, The (Orfanato, El) (2007)",Drama|Horror|Mystery|Thriller +56367,3.8541666666666665,Juno (2007),Comedy|Drama|Romance +56563,3.75,Helvetica (2007),Documentary +56587,3.625,"Bucket List, The (2007)",Comedy|Drama +56607,4.25,"Kite Runner, The (2007)",Drama +56633,4.5,Butterfly on a Wheel (Shattered) (2007),Crime|Drama|Thriller +56715,4.0,Wristcutters: A Love Story (2006),Drama|Fantasy|Romance +56757,3.3157894736842106,Sweeney Todd: The Demon Barber of Fleet Street (2007),Drama|Horror|Musical|Thriller +56775,3.357142857142857,National Treasure: Book of Secrets (2007),Action|Adventure +56782,4.153846153846154,There Will Be Blood (2007),Drama|Western +56788,3.857142857142857,Charlie Wilson's War (2007),Comedy|Drama|War +56801,1.875,AVPR: Aliens vs. Predator - Requiem (2007),Action|Horror|Sci-Fi +56805,3.75,Walk Hard: The Dewey Cox Story (2007),Comedy|Musical +56869,5.0,Drained (O cheiro do Ralo) (2006),Comedy +56885,3.0,"Great Debaters, The (2007)",Drama +56908,4.0,Dedication (2007),Comedy|Drama|Romance +56915,2.5,"Water Horse: Legend of the Deep, The (2007)",Adventure|Children|Fantasy +56941,3.625,P.S. I Love You (2007),Comedy|Drama|Romance +56949,3.125,27 Dresses (2008),Comedy|Romance +57038,5.0,To the Left of the Father (Lavoura Arcaica) (2001),Drama +57223,0.5,D-War (Dragon Wars) (2007),Action|Adventure|Drama|Fantasy +57243,4.333333333333333,"Band's Visit, The (Bikur Ha-Tizmoret) (2007)",Comedy|Drama +57274,3.3333333333333335,[REC] (2007),Drama|Horror|Thriller +57326,2.5,In the Name of the King: A Dungeon Siege Tale (2008),Action|Adventure|Fantasy +57353,4.25,Flawless (2007),Crime|Drama +57368,3.210526315789474,Cloverfield (2008),Action|Mystery|Sci-Fi|Thriller +57401,3.75,Cleaner (2007),Crime|Thriller +57418,3.5,"Rachel, Rachel (1968)",Drama|Romance +57430,3.5,Welcome to L.A. (1976),Drama|Musical +57453,3.0,Arranged (2007),Comedy|Drama|Romance +57504,3.8333333333333335,"Girl Who Leapt Through Time, The (Toki o kakeru shôjo) (2006)",Animation|Comedy|Drama|Romance|Sci-Fi +57526,2.5,Untraceable (2008),Crime|Thriller +57528,3.5833333333333335,Rambo (Rambo 4) (2008),Action|Drama|Thriller|War +57532,1.3333333333333333,Meet the Spartans (2008),Comedy +57640,3.3055555555555554,Hellboy II: The Golden Army (2008),Action|Adventure|Fantasy|Sci-Fi +57669,3.9473684210526314,In Bruges (2008),Comedy|Crime|Drama|Thriller +57792,3.5,Caramel (Sukkar banat) (2007),Comedy +57845,4.5,Joe Strummer: The Future Is Unwritten (2007),Documentary +57910,2.5,Teeth (2007),Comedy|Horror +57951,3.0,Fool's Gold (2008),Action|Adventure|Comedy|Romance +57980,3.0,"Art of Negative Thinking, The (Kunsten å tenke negativt) (2006)",Comedy|Drama +58025,2.272727272727273,Jumper (2008),Action|Adventure|Drama|Sci-Fi|Thriller +58029,4.0,It's a Free World... (2007),Drama +58047,3.9166666666666665,"Definitely, Maybe (2008)",Comedy|Drama|Romance +58103,3.25,Vantage Point (2008),Action|Drama|Thriller +58105,2.75,"Spiderwick Chronicles, The (2008)",Adventure|Children|Drama|Fantasy|IMAX +58107,1.0,Step Up 2 the Streets (2008),Drama|Musical|Romance +58146,0.5,Witless Protection (2008),Comedy +58154,3.75,"Other Boleyn Girl, The (2008)",Drama|Romance +58156,2.5,Semi-Pro (2008),Comedy +58191,4.25,Taxi to the Dark Side (2007),Documentary +58293,1.5,"10,000 BC (2008)",Adventure|Romance|Thriller +58295,3.590909090909091,"Bank Job, The (2008)",Action|Crime|Thriller +58297,2.5,Doomsday (2008),Action|Drama|Sci-Fi|Thriller +58299,3.375,Horton Hears a Who! (2008),Adventure|Animation|Children|Comedy +58301,4.0,Funny Games U.S. (2007),Drama|Thriller +58303,4.2,"Counterfeiters, The (Die Fälscher) (2007)",Crime|Drama|War +58306,3.1666666666666665,Mongol (2007),Drama|War +58315,2.25,"Love Guru, The (2008)",Comedy +58347,3.75,Penelope (2006),Comedy|Fantasy|Romance +58351,4.166666666666667,City of Men (Cidade dos Homens) (2007),Drama +58365,4.0,Chicago 10 (2007),Animation|Documentary +58376,3.5,Zeitgeist: The Movie (2007),Documentary|War +58425,4.5,Heima (2007),Documentary +58432,3.0,What Just Happened (2008),Comedy|Drama +58520,4.5,Mala Noche (1985),Drama +58554,3.5,"Class, The (Klass) (2007)",Drama +58559,4.235537190082645,"Dark Knight, The (2008)",Action|Crime|Drama|IMAX +58627,3.75,Never Back Down (2008),Action +58649,5.0,Napoléon (1927),Drama|War +58655,1.5,Drillbit Taylor (2008),Comedy +58706,4.0,"Under the Same Moon (Misma luna, La) (2007)",Drama +58803,3.8055555555555554,21 (2008),Crime|Drama|Romance|Thriller +58839,3.25,Leatherheads (2008),Comedy|Drama|Romance +58879,3.8333333333333335,Shine a Light (2008),Documentary|Musical|IMAX +58889,3.0,"Business of Being Born, The (2008)",Documentary +58904,3.5,Chan Is Missing (1982),Crime +58964,3.0,Inside (À l'intérieur) (2007),Horror|Thriller +58972,2.5,Nim's Island (2008),Adventure|Comedy|Fantasy +58975,2.5,"Ruins, The (2008)",Horror|Thriller +58998,3.2954545454545454,Forgetting Sarah Marshall (2008),Comedy|Romance +59014,2.125,Superhero Movie (2008),Action|Comedy|Sci-Fi +59016,3.0,Street Kings (2008),Crime|Drama|Thriller +59018,4.2,"Visitor, The (2007)",Drama|Romance +59022,2.9166666666666665,Harold & Kumar Escape from Guantanamo Bay (2008),Adventure|Comedy +59037,2.5,Speed Racer (2008),Action|Children|Sci-Fi|IMAX +59103,2.6666666666666665,"Forbidden Kingdom, The (2008)",Action|Adventure|Comedy|Fantasy +59118,4.0,Happy-Go-Lucky (2008),Comedy|Drama +59126,4.0,Religulous (2008),Comedy|Documentary +59141,3.5,Son of Rambow (2007),Children|Comedy|Drama +59143,3.0,Super High Me (2007),Comedy|Documentary +59180,4.0,Tarzan Finds a Son! (1939),Action|Adventure +59258,3.5,Baby Mama (2008),Comedy +59273,5.0,Delirious (2006),Comedy|Drama +59306,4.0,Prom Night (2008),Horror|Mystery|Thriller +59315,4.026666666666666,Iron Man (2008),Action|Adventure|Sci-Fi +59333,3.0,Made of Honor (2008),Comedy|Romance +59339,4.5,Mister Lonely (2007),Comedy|Drama +59369,3.467741935483871,Taken (2008),Action|Crime|Drama|Thriller +59387,3.9545454545454546,"Fall, The (2006)",Adventure|Drama|Fantasy +59418,3.75,"American Crime, An (2007)",Crime +59421,2.75,What Happens in Vegas... (2008),Comedy|Romance +59447,5.0,Fiorile (1993),Drama +59501,3.2,"Chronicles of Narnia: Prince Caspian, The (2008)",Adventure|Children|Fantasy +59519,3.5,Reprise (2006),Drama +59549,5.0,Shelter (2007),Drama|Romance +59590,2.0,Young at Heart (a.k.a. Young@Heart) (2007),Documentary|Musical +59594,2.6666666666666665,"War, Inc. (2008)",Comedy|Crime|Thriller +59615,2.5625,Indiana Jones and the Kingdom of the Crystal Skull (2008),Action|Adventure|Comedy|Sci-Fi +59669,3.0,Following Sean (2005),Documentary +59684,5.0,Lake of Fire (2006),Documentary +59721,4.0,"Grand, The (2007)",Comedy +59725,3.4,Sex and the City (2008),Comedy|Romance +59727,3.25,"Strangers, The (2008)",Horror|Thriller +59731,4.5,"Bigger, Stronger, Faster* (2008)",Documentary +59784,3.803030303030303,Kung Fu Panda (2008),Action|Animation|Children|Comedy|IMAX +59805,4.0,Antonio das Mortes (O Dragão da Maldade contra o Santo Guerreiro) (1969),Drama|Western +59810,4.0,Recount (2008),Drama +59814,4.5,Ex Drummer (2007),Comedy|Crime|Drama|Horror +59832,3.0,Where the Sidewalk Ends (1950),Crime|Drama|Film-Noir +59834,0.5,100 Rifles (1969),Adventure|War|Western +59846,3.5,"Iron Mask, The (1929)",Adventure|Drama|Romance +59900,2.3333333333333335,You Don't Mess with the Zohan (2008),Comedy +59945,3.0,"Mark of Zorro, The (1920)",Adventure|Romance|Western +59985,3.5,Chaos Theory (2007),Comedy|Drama|Romance +59995,3.8333333333333335,Boy A (2007),Crime|Drama +60037,2.3333333333333335,"Happening, The (2008)",Drama|Sci-Fi|Thriller +60040,3.176470588235294,"Incredible Hulk, The (2008)",Action|Sci-Fi +60069,3.7039473684210527,WALL·E (2008),Adventure|Animation|Children|Romance|Sci-Fi +60072,2.7222222222222223,Wanted (2008),Action|Thriller +60074,2.8947368421052633,Hancock (2008),Action|Adventure|Comedy|Crime|Fantasy +60086,4.0,Boy Culture (2006),Drama +60126,3.1923076923076925,Get Smart (2008),Action|Comedy +60128,4.0,Young People Fucking (a.k.a. YPF) (2007),Comedy +60135,4.0,Surfwise (2007),Documentary +60137,0.5,"Rape of Europa, The (2006)",Documentary +60291,4.0,Gonzo: The Life and Work of Dr. Hunter S. Thompson (2008),Documentary +60293,3.375,"Wackness, The (2008)",Comedy|Drama|Romance +60295,3.5,Up the Yangtze (2007),Documentary +60333,4.25,Encounters at the End of the World (2008),Documentary +60343,2.5,Wee Willie Winkie (1937),Adventure +60382,3.8333333333333335,Roman Polanski: Wanted and Desired (2008),Documentary +60384,5.0,Z Channel: A Magnificent Obsession (2004),Documentary +60397,3.3333333333333335,Mamma Mia! (2008),Comedy|Musical|Romance +60471,2.5,Rogue (2007),Action|Adventure|Horror|Sci-Fi|Thriller +60487,3.5,"It's the Great Pumpkin, Charlie Brown (1966)",Animation|Children|Comedy +60514,2.75,Journey to the Center of the Earth (2008),Action|Adventure|Sci-Fi +60516,2.5,Meet Dave (2008),Adventure|Children|Comedy|Romance|Sci-Fi +60609,4.0,Death Note (2006),Adventure|Crime|Drama|Horror|Mystery +60649,1.0,Space Chimps (2008),Adventure|Animation|Comedy +60684,3.6538461538461537,Watchmen (2009),Action|Drama|Mystery|Sci-Fi|Thriller|IMAX +60753,3.6666666666666665,Felon (2008),Crime|Drama +60756,3.7857142857142856,Step Brothers (2008),Comedy +60760,3.5,"X-Files: I Want to Believe, The (2008)",Drama|Mystery|Sci-Fi|Thriller +60763,3.3333333333333335,American Teen (2008),Documentary +60766,3.8333333333333335,Man on Wire (2008),Documentary +60832,3.0,Pathology (2008),Crime|Horror|Thriller +60857,4.0,"Tracey Fragments, The (2007)",Drama +60937,2.3333333333333335,"Mummy: Tomb of the Dragon Emperor, The (2008)",Action|Adventure|Fantasy|Thriller +60943,3.6666666666666665,Frozen River (2008),Drama +60950,3.2083333333333335,Vicky Cristina Barcelona (2008),Comedy|Drama|Romance +60990,0.5,"End of Summer, The (Early Autumn) (Kohayagawa-ke no aki) (1961)",Drama +61013,5.0,Absolute Giganten (1999),Action|Comedy|Drama|Romance +61024,3.522727272727273,Pineapple Express (2008),Action|Comedy|Crime +61026,4.0,Red Cliff (Chi bi) (2008),Action|Adventure|Drama|War +61071,3.8333333333333335,"Sisterhood of the Traveling Pants 2, The (2008)",Adventure|Comedy|Drama|Romance +61075,3.0,Elegy (2008),Drama|Romance +61123,3.0,High School Musical 2 (2007),Comedy|Drama|Musical|Romance +61132,3.4210526315789473,Tropic Thunder (2008),Action|Adventure|Comedy|War +61160,2.6666666666666665,Star Wars: The Clone Wars (2008),Action|Adventure|Animation|Sci-Fi +61167,4.5,Henry Poole is Here (2008),Drama|Mystery +61206,4.5,In the City of Sylvia (En la ciudad de Sylvia) (2007),Drama +61210,2.5,Mutant Chronicles (2008),Action|Adventure|Sci-Fi +61236,4.25,Waltz with Bashir (Vals im Bashir) (2008),Animation|Documentary|Drama|War +61240,3.7777777777777777,Let the Right One In (Låt den rätte komma in) (2008),Drama|Fantasy|Horror|Romance +61248,3.375,Death Race (2008),Action|Adventure|Sci-Fi|Thriller +61250,5.0,"House Bunny, The (2008)",Comedy +61289,2.5,Sukiyaki Western Django (2008),Action|Western +61323,3.783333333333333,Burn After Reading (2008),Comedy|Crime|Drama +61348,0.5,Disaster Movie (2008),Comedy +61350,2.25,Babylon A.D. (2008),Action|Adventure|Sci-Fi|Thriller +61352,3.8333333333333335,Traitor (2008),Crime|Drama|Thriller +61357,4.25,Trouble the Water (2008),Documentary +61361,3.0,"Women, The (2008)",Comedy|Drama +61401,3.0,"Spirit, The (2008)",Action|Comedy|Fantasy|Thriller +61465,0.5,Bangkok Dangerous (2008),Action|Crime|Thriller +61634,3.5,Son of Lassie (1945),Children|Drama +61646,4.0,DarkBlueAlmostBlack (Azuloscurocasinegro) (2006),Drama|Romance +61705,1.5,Lakeview Terrace (2008),Drama|Thriller +61729,3.25,Ghost Town (2008),Comedy|Fantasy|Romance +62049,4.5,1984 (1956),Drama|Sci-Fi +62081,3.375,Eagle Eye (2008),Action|Crime|Thriller|IMAX +62113,3.25,How to Lose Friends & Alienate People (2008),Comedy +62115,5.0,Six Shooter (2004),Comedy|Drama +62155,3.2857142857142856,Nick and Norah's Infinite Playlist (2008),Comedy|Drama|Romance +62203,4.0,Martyrs (2008),Horror +62250,3.0,Gomorrah (Gomorra) (2008),Crime|Drama +62344,3.5,Rachel Getting Married (2008),Drama|Romance +62374,3.9,Body of Lies (2008),Action|Drama|Thriller +62376,3.75,City of Ember (2008),Adventure|Children|Sci-Fi +62378,3.0,Magicians (2007),Comedy +62383,3.5,"20,000 Leagues Under the Sea (1916)",Action|Adventure|Sci-Fi +62394,1.3333333333333333,Max Payne (2008),Action|Crime|Drama|Thriller +62434,3.269230769230769,Zack and Miri Make a Porno (2008),Comedy|Drama|Romance +62437,3.8333333333333335,W. (2008),Drama +62511,3.8333333333333335,"Synecdoche, New York (2008)",Comedy|Drama +62644,3.25,"Wave, The (Welle, Die) (2008)",Drama +62718,4.5,"Angus, Thongs and Perfect Snogging (2008)",Comedy|Romance +62733,1.5,Quarantine (2008),Drama|Horror|Mystery|Thriller +62764,4.5,Black Moon (1975),Fantasy|Mystery|Sci-Fi|War +62792,3.5,Pride and Glory (2008),Crime|Drama +62801,4.0,Lone Wolf and Cub: Baby Cart to Hades (Kozure Ôkami: Shinikazeni mukau ubaguruma) (1972),Action|Drama +62849,3.55,RocknRolla (2008),Action|Crime +62912,3.0,High School Musical 3: Senior Year (2008),Musical +62999,3.1875,Madagascar: Escape 2 Africa (2008),Action|Adventure|Animation|Children|Comedy|IMAX +63062,3.6666666666666665,Changeling (2008),Crime|Drama|Mystery +63072,3.375,"Road, The (2009)",Adventure|Drama|Thriller +63082,3.7596153846153846,Slumdog Millionaire (2008),Crime|Drama|Romance +63113,3.1470588235294117,Quantum of Solace (2008),Action|Adventure|Thriller +63131,3.4285714285714284,Role Models (2008),Comedy +63179,4.5,Tokyo! (2008),Drama +63239,2.5,Cinderella (1997),Children|Fantasy|Musical|Romance +63276,3.75,Crows Zero (Kurôzu zero) (2007),Action +63393,1.75,Camp Rock (2008),Comedy|Musical|Romance +63436,3.3333333333333335,Saw V (2008),Crime|Horror|Thriller +63479,3.5,Sex Drive (2008),Comedy +63481,2.0,Soul Men (2008),Comedy|Musical +63515,3.5,The Island (2006),Drama|Mystery +63540,0.5,Beverly Hills Chihuahua (2008),Adventure|Children|Comedy +63629,4.0,Fanny (1961),Drama|Romance +63808,3.6666666666666665,"Class, The (Entre les murs) (2008)",Drama +63826,3.0,Splinter (2008),Action|Horror|Thriller +63836,5.0,"Manson Family, The (2003)",Crime|Drama|Horror +63853,3.125,Australia (2008),Adventure|Drama|War|Western +63859,3.409090909090909,Bolt (2008),Action|Adventure|Animation|Children|Comedy +63876,3.6363636363636362,Milk (2008),Drama +63992,2.5384615384615383,Twilight (2008),Drama|Fantasy|Romance|Thriller +64030,2.0,Transporter 3 (2008),Action|Adventure|Crime|Thriller +64032,1.5,Four Christmases (2008),Comedy +64034,4.0625,"Boy in the Striped Pajamas, The (Boy in the Striped Pyjamas, The) (2008)",Drama|War +64114,4.5,Fireproof (2008),Drama|Romance +64116,1.0,Igor (2008),Animation|Comedy +64153,1.0,"Devil's Chair, The (2006)",Horror +64197,4.166666666666667,Hunger (2008),Drama +64229,3.5,Cadillac Records (2008),Drama|Musical +64249,3.25,Shrek the Halls (2007),Adventure|Animation|Comedy|Fantasy +64278,5.0,"Pervert's Guide to Cinema, The (2006)",Documentary +64285,3.75,Wallace and Gromit in 'A Matter of Loaf and Death' (2008),Animation|Comedy +64321,4.5,"Friend of Mine, A (Ein Freund von mir) (2006)",Comedy|Drama +64338,2.5,Gypsy (1993),Comedy|Drama|Musical +64497,2.5,"Day the Earth Stood Still, The (2008)",Drama|Sci-Fi|Thriller|IMAX +64499,4.5,Che: Part One (2008),Drama|War +64501,4.5,Che: Part Two (2008),Drama|War +64575,3.1,Doubt (2008),Drama|Mystery +64614,3.8333333333333335,Gran Torino (2008),Crime|Drama +64620,3.85,Frost/Nixon (2008),Drama +64622,3.25,"Reader, The (2008)",Drama|Romance +64660,5.0,Waiter (Ober) (2006),Comedy +64695,3.0,Sword of the Stranger (Sutorejia: Mukô hadan) (2007),Action|Adventure|Animation +64701,3.0,I've Loved You So Long (Il y a longtemps que je t'aime) (2008),Drama|Mystery +64716,4.045454545454546,Seven Pounds (2008),Drama +64839,3.9705882352941178,"Wrestler, The (2008)",Drama +64957,3.6333333333333333,"Curious Case of Benjamin Button, The (2008)",Drama|Fantasy|Mystery|Romance +64969,3.1538461538461537,Yes Man (2008),Comedy +64983,3.357142857142857,Valkyrie (2008),Drama|Thriller|War +64990,3.0,Pete Seeger: The Power of Song (2007),Documentary +64993,3.75,5 Centimeters per Second (Byôsoku 5 senchimêtoru) (2007),Animation|Drama|Romance +64997,2.5,War of the Worlds (2005),Action|Sci-Fi +65037,5.0,Ben X (2007),Drama +65088,4.0,Bedtime Stories (2008),Adventure|Children|Comedy +65126,3.75,Choke (2008),Comedy|Drama +65130,3.5,Revolutionary Road (2008),Drama|Romance +65133,3.75,Blackadder Back & Forth (1999),Comedy +65188,3.6,Dear Zachary: A Letter to a Son About His Father (2008),Documentary +65193,4.0,Wild Child (2008),Drama|Romance +65216,5.0,Defiance (2008),Drama|Thriller|War +65230,2.8,Marley & Me (2008),Comedy|Drama +65259,4.0,Involuntary (De ofrivilliga) (2008),Drama +65261,4.178571428571429,Ponyo (Gake no ue no Ponyo) (2008),Adventure|Animation|Children|Fantasy +65310,3.0,Poultrygeist: Night of the Chicken Dead (2006),Comedy|Horror|Musical +65418,2.5,Wendy and Lucy (2008),Drama +65465,3.0,Last Chance Harvey (2008),Drama|Romance +65514,3.9583333333333335,Ip Man (2008),Action|Drama|War +65552,3.5,Replicant (2001),Action|Sci-Fi|Thriller +65567,2.5,Passengers (2008),Drama|Mystery|Thriller +65577,1.5,"Tale of Despereaux, The (2008)",Adventure|Animation|Children|Comedy|Fantasy +65585,2.1,Bride Wars (2009),Comedy|Romance +65601,2.5,My Bloody Valentine 3-D (2009),Horror|Thriller +65642,4.125,"Timecrimes (Cronocrímenes, Los) (2007)",Sci-Fi|Thriller +65665,4.0,Hamlet (2000),Drama +65682,3.142857142857143,Underworld: Rise of the Lycans (2009),Action|Fantasy|Horror|Thriller +65685,3.0,Inkheart (2008),Adventure|Fantasy +65802,0.5,Paul Blart: Mall Cop (2009),Action|Comedy|Crime +65982,3.1666666666666665,Outlander (2008),Action|Adventure|Sci-Fi +66019,2.5,"Great Ecstasy of Woodcarver Steiner, The (Große Ekstase des Bildschnitzers Steiner, Die) (1974)",Documentary +66066,0.5,"Grudge 3, The (2009)",Horror +66090,3.75,Eden Lake (2008),Horror|Thriller +66097,3.7916666666666665,Coraline (2009),Animation|Fantasy|Thriller +66130,2.5,Chocolate (2008),Action|Drama +66171,3.0,Push (2009),Sci-Fi|Thriller +66198,2.5,"International, The (2009)",Drama|Thriller +66200,2.5,Two Lovers (2008),Drama|Romance +66203,3.125,He's Just Not That Into You (2009),Comedy|Drama|Romance +66246,2.5,Numbskull Emptybrook (Uuno Turhapuro) (1973),Comedy +66310,2.0,Frontière(s) (2007),Drama|Horror|Thriller +66317,3.5,Comet in Moominland (1992),Adventure|Animation|Fantasy +66335,2.25,Afro Samurai: Resurrection (2009),Animation +66371,4.2,Departures (Okuribito) (2008),Drama +66427,3.5,My Name Is Bruce (2007),Comedy|Horror +66509,2.5,Funny People (2009),Comedy|Drama +66544,3.0,Nuremberg (2000),Drama|War +66596,1.5,Mystery Team (2009),Comedy|Crime|Mystery +66659,0.5,Tyler Perry's Madea Goes to Jail (2009),Comedy|Crime|Drama +66665,4.2,Away We Go (2009),Comedy|Drama|Romance +66686,3.5,"Unsuspected, The (1947)",Drama|Film-Noir|Thriller +66744,4.0,"Divo, Il (2008)",Drama +66785,4.0,"Good, the Bad, the Weird, The (Joheunnom nabbeunnom isanghannom) (2008)",Action|Adventure|Comedy|Western +66798,4.0,"Pink Panther 2, The (2009)",Adventure|Comedy|Mystery +66808,1.0,Far Cry (2008),Action|Adventure|Drama +66915,3.0,Rock-A-Doodle (1991),Adventure|Animation|Children|Musical +66934,3.625,Dr. Horrible's Sing-Along Blog (2008),Comedy|Drama|Musical|Sci-Fi +67087,3.888888888888889,"I Love You, Man (2009)",Comedy +67193,2.6666666666666665,Duplicity (2009),Crime|Romance|Thriller +67197,2.7142857142857144,Knowing (2009),Action|Drama|Mystery|Sci-Fi|Thriller +67252,3.3333333333333335,Ong-Bak 2: The Beginning (Ong Bak 2) (2008),Action +67255,3.5714285714285716,"Girl with the Dragon Tattoo, The (Män som hatar kvinnor) (2009)",Crime|Drama|Mystery|Thriller +67267,3.625,Sunshine Cleaning (2008),Comedy|Drama +67361,2.0,Echelon Conspiracy (2009),Action|Mystery|Thriller +67408,3.3,Monsters vs. Aliens (2009),Animation|Sci-Fi|IMAX +67429,4.0,Sita Sings the Blues (2008),Animation|Musical +67504,5.0,Land of Silence and Darkness (Land des Schweigens und der Dunkelheit) (1971),Documentary +67508,4.75,"Baader Meinhof Komplex, Der (2008)",Action|Crime|Drama|Thriller +67665,3.125,Anvil! The Story of Anvil (2008),Documentary|Musical +67695,2.5,Observe and Report (2009),Action|Comedy +67734,3.142857142857143,Adventureland (2009),Comedy|Drama +67788,3.0,Confessions of a Shopaholic (2009),Comedy|Romance +67799,2.5,The Butterfly Effect 3: Revelations (2009),Drama|Fantasy|Sci-Fi|Thriller +67867,2.0,Dragonball Evolution (2009),Action|Adventure|Fantasy|Sci-Fi +67923,3.2,"Fast & Furious (Fast and the Furious 4, The) (2009)",Action|Crime|Drama|Thriller +67957,3.75,Superstar: The Karen Carpenter Story (1988),Drama|Musical +67997,4.1,In the Loop (2009),Comedy +68073,3.9,Pirate Radio (2009),Comedy|Drama +68099,4.5,Apollo 13: To the Edge and Back (1994),Documentary +68135,3.6818181818181817,17 Again (2009),Comedy|Drama +68137,2.0,Nana (2005),Drama +68157,4.135593220338983,Inglourious Basterds (2009),Action|Drama|War +68159,3.857142857142857,State of Play (2009),Crime|Drama|Thriller +68194,3.75,"Damned United, The (2009)",Drama +68205,2.75,Crank: High Voltage (2009),Action|Comedy|Crime +68237,4.125,Moon (2009),Drama|Mystery|Sci-Fi|Thriller +68269,4.166666666666667,"Young Victoria, The (2009)",Drama|Romance +68319,2.911764705882353,X-Men Origins: Wolverine (2009),Action|Sci-Fi|Thriller +68324,1.0,"Girlfriend Experience, The (2009)",Drama +68347,4.5,Sin Nombre (2009),Crime|Drama|Thriller +68358,3.8333333333333335,Star Trek (2009),Action|Adventure|Sci-Fi|IMAX +68444,3.0,"Great Buck Howard, The (2008)",Comedy +68486,4.0,Red Cliff Part II (Chi Bi Xia: Jue Zhan Tian Xia) (2009),Action|Drama|War +68536,4.0,Stanley Kubrick: A Life in Pictures (2001),Documentary +68554,3.2,Angels & Demons (2009),Crime|Drama|Mystery|Thriller +68614,2.5,"Seduction of Joe Tynan, The (1979)",Drama +68659,3.375,Fanboys (2009),Adventure|Comedy|Drama +68791,3.3846153846153846,Terminator Salvation (2009),Action|Adventure|Sci-Fi|Thriller +68793,2.8,Night at the Museum: Battle of the Smithsonian (2009),Action|Comedy|IMAX +68835,4.5,Were the World Mine (2008),Adventure|Fantasy|Musical|Romance +68838,4.25,Every Little Step (2008),Documentary +68848,3.5,"Brothers Bloom, The (2008)",Adventure|Comedy|Crime|Romance +68872,4.0,Paisan (Paisà) (1946),Drama|War +68884,0.5,Shall We Kiss? (Un baiser s'il vous plait) (2007),Comedy|Romance +68901,3.5,Chop Shop (2007),Drama +68932,2.0,"Soloist, The (2009)",Drama|Musical +68952,3.5,Drag Me to Hell (2009),Comedy|Horror +68954,3.942622950819672,Up (2009),Adventure|Animation|Children|Drama +68959,2.5,Fullmetal Alchemist the Movie: Conqueror of Shamballa (Gekijô-ban hagane no renkinjutsushi: Shanbara wo yuku mono) (2005),Action|Adventure|Animation|Drama +68965,0.5,Dance Flick (2009),Comedy|Musical +68967,4.0,"Summer Hours (Heure d'été, L') (2008)",Drama +69069,3.6666666666666665,Fired Up (2009),Comedy +69118,1.5,In the Electric Mist (2009),Drama|Mystery +69122,3.6136363636363638,"Hangover, The (2009)",Comedy|Crime +69134,3.6,Antichrist (2009),Drama|Fantasy +69241,2.5,Berlin Alexanderplatz (1980),Drama +69253,3.0,New in Town (2009),Comedy|Romance +69275,2.25,Dead Snow (Død snø) (2009),Action|Adventure|Comedy|Horror +69278,2.75,Land of the Lost (2009),Action|Adventure|Comedy|Sci-Fi +69280,4.0,"Clique, The (2008)",Comedy +69306,2.388888888888889,"Taking of Pelham 1 2 3, The (2009)",Crime|Drama|Thriller +69406,3.0,"Proposal, The (2009)",Comedy|Romance +69436,1.0,Year One (2009),Adventure|Comedy +69458,3.5,Tyson (2008),Documentary +69481,4.134615384615385,"Hurt Locker, The (2008)",Action|Drama|Thriller|War +69495,3.0,Breakfast with Scot (2007),Drama|Romance +69516,4.25,"Limits of Control, The (2009)",Crime|Drama|Film-Noir +69524,3.75,Raiders of the Lost Ark: The Adaptation (1989),Action|Adventure|Thriller +69526,2.625,Transformers: Revenge of the Fallen (2009),Action|Adventure|Sci-Fi|IMAX +69529,4.0,Home (2009),Documentary +69559,4.0,"File on Thelma Jordan, The (1950)",Crime|Drama|Film-Noir|Mystery +69604,2.75,Whatever Works (2009),Comedy|Romance +69606,3.1,Ghosts of Girlfriends Past (2009),Comedy|Fantasy|Romance +69640,3.642857142857143,Public Enemies (2009),Crime|Drama|Thriller +69644,3.3333333333333335,Ice Age: Dawn of the Dinosaurs (2009),Action|Adventure|Animation|Children|Comedy|Romance +69654,4.0,Prison Break: The Final Break (2009),Action|Drama|Thriller +69685,3.0,Daria: Is It College Yet? (2002),Animation|Comedy +69712,2.875,My Sister's Keeper (2009),Drama +69746,2.5,Watchmen: Tales of the Black Freighter (2009),Action|Adventure|Animation|Horror +69757,3.7555555555555555,(500) Days of Summer (2009),Comedy|Drama|Romance +69761,5.0,Through the Olive Trees (Zire darakhatan zeyton) (1994),Drama +69784,2.375,Brüno (Bruno) (2009),Comedy +69805,3.25,"Librarian, The: The Curse of the Judas Chalice (2008)",Action|Adventure|Fantasy +69821,1.5,Men of War (1994),Action|Drama +69844,4.068965517241379,Harry Potter and the Half-Blood Prince (2009),Adventure|Fantasy|Mystery|Romance|IMAX +69849,4.5,Roots (1977),Drama|War +69908,4.0,"Group, The (1966)",Drama +69945,2.5,"Fast and the Furious, The (1955)",Crime|Mystery +69951,3.4285714285714284,"Imaginarium of Doctor Parnassus, The (2009)",Drama|Fantasy +70121,0.5,'Neath the Arizona Skies (1934),Western +70159,4.0,Orphan (2009),Drama|Horror|Mystery|Thriller +70183,3.625,"Ugly Truth, The (2009)",Comedy|Drama|Romance +70188,2.5,Wild River (1960),Drama|Romance +70201,3.5,High Hopes (1988),Comedy +70282,3.5,Aliens in the Attic (2009),Adventure|Children|Fantasy|Sci-Fi +70286,4.009433962264151,District 9 (2009),Mystery|Sci-Fi|Thriller +70293,3.7857142857142856,Julie & Julia (2009),Comedy|Drama|Romance +70305,2.5,Race to Witch Mountain (2009),Adventure|Children|Fantasy|Sci-Fi|Thriller +70336,2.4166666666666665,G.I. Joe: The Rise of Cobra (2009),Action|Adventure|Sci-Fi|Thriller +70344,3.5,Cold Souls (2009),Comedy|Drama +70418,3.0,Introducing Dorothy Dandridge (1999),Drama|Musical|Romance +70465,4.0,Jerusalema (Gangster's Paradise: Jerusalema) (2008),Action|Crime|Drama +70488,3.5,Wings of Hope (Julianes Sturz in den Dschungel) (2000),Adventure|Documentary +70533,3.3,Evangelion: 1.0 You Are (Not) Alone (Evangerion shin gekijôban: Jo) (2007),Action|Animation|Sci-Fi +70545,2.0,"Deal, The (2008)",Comedy +70565,3.0,"Goods: Live Hard, Sell Hard, The (2009)",Comedy +70567,3.5,Adam (2009),Drama|Romance +70597,2.5,Gigantic (2008),Comedy|Romance +70599,2.5,"Time Traveler's Wife, The (2009)",Drama|Romance|Sci-Fi +70663,3.5,"I Love You, Beth Cooper (2009)",Comedy|Romance +70678,4.5,Huhwihaji Anha (No Regret) (2006),Drama +70697,1.75,G-Force (2009),Action|Adventure|Children|Fantasy +70728,3.5,Bronson (2009),Action|Comedy|Drama|Thriller +70751,2.5,Little Richard (2000),Drama +70762,5.0,"Curiosity of Chance, The (2006)",Comedy +70846,2.0,Lorna's Silence (Le silence de Lorna) (2008),Drama +70862,3.1666666666666665,It Might Get Loud (2008),Documentary +70898,4.5,Post Grad (2009),Comedy +70927,3.0,To Each His Own Cinema (Chacun son cinéma ou Ce petit coup au coeur quand la lumière s'éteint et que le film commence) (2007),Comedy|Drama +70984,3.5,Taking Woodstock (2009),Comedy +70994,3.5,Halloween II (2009),Horror|Thriller +71033,3.7142857142857144,"Secret in Their Eyes, The (El secreto de sus ojos) (2009)",Crime|Drama|Mystery|Romance|Thriller +71057,3.4166666666666665,9 (2009),Adventure|Animation|Sci-Fi +71102,4.0,"Three Musketeers, The (1933)",Action|Adventure|Thriller +71106,3.75,Frequently Asked Questions About Time Travel (2009),Comedy|Sci-Fi +71108,4.333333333333333,"White Ribbon, The (Das weiße Band) (2009)",Drama|Mystery +71131,3.5,"Most Hated Family in America, The (2007)",Documentary +71135,3.857142857142857,Pandorum (2009),Horror|Sci-Fi|Thriller +71156,3.625,"Men Who Stare at Goats, The (2009)",Action|Comedy|Drama +71180,5.0,Padre padrone (1977),Drama +71205,3.5,Jennifer's Body (2009),Comedy|Horror|Sci-Fi|Thriller +71211,3.0555555555555554,"Informant!, The (2009)",Comedy|Crime|Drama|Thriller +71248,2.625,Extract (2009),Comedy +71252,2.1666666666666665,"Final Destination, The (Final Destination 4) (Final Destination in 3-D, The) (2009)",Horror|Thriller +71254,2.875,Gamer (2009),Action|Sci-Fi|Thriller +71264,3.6666666666666665,Cloudy with a Chance of Meatballs (2009),Animation|Children|Fantasy|IMAX +71282,3.1666666666666665,"Food, Inc. (2008)",Documentary +71304,2.25,Thirst (Bakjwi) (2009),Drama|Horror +71318,2.5,Terra (a.k.a. Battle for Terra) (2007),Adventure|Animation|Sci-Fi +71379,2.9285714285714284,Paranormal Activity (2009),Horror|Thriller +71390,5.0,"Not Quite Hollywood: The Wild, Untold Story of Ozploitation! (2008)",Documentary +71404,4.0,"3 Worlds of Gulliver, The (1960)",Adventure|Fantasy +71429,4.333333333333333,World's Greatest Dad (2009),Comedy|Drama +71433,4.5,"Black God, White Devil (Deus e o Diabo na Terra do Sol) (1964)",Adventure|Crime|Drama|Western +71438,3.5,Still Walking (Aruitemo aruitemo) (2008),Drama +71460,1.0,Wanted (2009),Action|Romance +71462,4.1,"Cove, The (2009)",Documentary +71464,3.230769230769231,"Serious Man, A (2009)",Comedy|Drama +71466,3.875,City Island (2009),Comedy|Drama +71490,2.5,Grace (2009),Drama|Horror|Thriller +71494,4.0,"Haunted World of El Superbeasto, The (2009)",Action|Animation|Comedy|Horror|Thriller +71518,3.1666666666666665,Whip It (2009),Comedy|Drama +71520,2.9285714285714284,"Invention of Lying, The (2009)",Comedy +71525,3.0,A-Haunting We Will Go (1942),Comedy +71530,3.0714285714285716,Surrogates (2009),Action|Sci-Fi|Thriller +71533,3.0,Next Day Air (2009),Action|Comedy|Crime +71535,3.635135135135135,Zombieland (2009),Action|Comedy|Horror +71573,1.5,Whiteout (2009),Action|Crime|Drama|Mystery|Thriller +71579,3.5833333333333335,"Education, An (2009)",Drama|Romance +71640,4.5,Burma VJ: Reporting from a Closed Country (Burma VJ: Reporter i et lukket land) (2008),Documentary +71650,4.0,Werner Herzog Eats His Shoe (1980),Documentary +71668,2.0,Couples Retreat (2009),Comedy|Romance +71700,1.5,Deadgirl (2008),Horror +71732,2.8333333333333335,I Sell the Dead (2008),Comedy|Horror +71745,3.0,Where the Wild Things Are (2009),Adventure|Children|Drama|Fantasy|IMAX +71755,5.0,Earth Entranced (Terra em Transe) (1967),Drama +71804,2.5,Reckless (1984),Comedy|Drama|Romance +71823,2.5,"New York, I Love You (2009)",Drama|Romance +71838,3.5833333333333335,Law Abiding Citizen (2009),Drama|Thriller +71876,0.5,Amelia (2009),Drama +72011,3.480769230769231,Up in the Air (2009),Drama|Romance +72043,2.5,Monsters vs Aliens: Mutant Pumpkins from Outer Space (2009),Animation|Comedy|Sci-Fi +72104,3.0,Balance (1989),Animation|Drama|Mystery|Sci-Fi|Thriller +72129,3.25,Saw VI (2009),Crime|Horror|Mystery|Thriller +72131,4.0,Michael Jackson's This Is It (2009),Documentary|Musical|IMAX +72165,3.0,Cirque du Freak: The Vampire's Assistant (2009),Action|Adventure|Comedy|Fantasy|Horror|Thriller +72169,3.25,Good Hair (2009),Comedy|Documentary +72171,4.083333333333333,Black Dynamite (2009),Action|Comedy +72176,3.0,Big Fan (2009),Comedy|Crime|Drama +72209,2.75,Astro Boy (2009),Action|Animation|Children|Sci-Fi +72224,2.5,Gentlemen Broncos (2009),Comedy +72226,4.021739130434782,Fantastic Mr. Fox (2009),Adventure|Animation|Children|Comedy|Crime +72294,4.0,"Christmas Carol, A (2009)",Animation|Children|Drama|Fantasy|IMAX +72356,4.75,Partly Cloudy (2009),Animation|Children|Comedy|Fantasy +72378,2.411764705882353,2012 (2009),Action|Drama|Sci-Fi|Thriller +72380,3.5,"Box, The (2009)",Drama|Horror|Mystery|Sci-Fi|Thriller +72386,3.75,Broken Embraces (Los abrazos rotos) (2009),Drama|Romance|Thriller +72393,4.0,"Fourth Kind, The (2009)",Horror|Mystery|Sci-Fi|Thriller +72395,2.9166666666666665,Precious (2009),Drama +72405,2.1666666666666665,Bad Lieutenant: Port of Call New Orleans (2009),Crime|Drama +72407,2.0,"Twilight Saga: New Moon, The (2009)",Drama|Fantasy|Horror|Romance|Thriller +72479,3.5,"Messenger, The (2009)",Drama|Romance|War +72489,2.8,Ninja Assassin (2009),Action|Crime|Drama|Thriller +72603,3.0,Merry Madagascar (2009),Animation +72605,3.0,Brothers (2009),Drama|Thriller|War +72612,2.5,"Fly, The (Légy, A) (1980)",Animation|Comedy +72626,3.0,"Billy Blazes, Esq. (1919)",Comedy|Western +72630,3.5,Sleep Dealer (2008),Sci-Fi +72641,3.8947368421052633,"Blind Side, The (2009)",Drama +72647,4.5,Zorn's Lemma (1970),Drama +72683,4.0,Limit (Limite) (1931),Drama +72694,2.0,Shrink (2009),Drama +72696,1.5,Old Dogs (2009),Comedy +72701,2.75,Planet 51 (2009),Adventure|Animation|Children|Comedy|Sci-Fi +72720,3.5,"Single Man, A (2009)",Drama +72731,3.0,"Lovely Bones, The (2009)",Crime|Drama|Fantasy|Horror|Thriller +72733,3.75,Invictus (2009),Drama +72737,2.9,"Princess and the Frog, The (2009)",Animation|Children|Fantasy|Musical|Romance +72741,3.5,Everybody's Fine (2009),Drama +72762,2.5,Armored (2009),Action|Drama|Thriller +72781,4.5,Red Chapel (Røde kapel) (2006),Comedy|Documentary +72880,4.0,Flaming Creatures (1963),Drama +72919,2.5,Did You Hear About the Morgans? (2009),Comedy|Crime|Drama|Romance +72947,4.0,Make the Yuletide Gay (2009),Comedy|Romance +72998,3.6417910447761193,Avatar (2009),Action|Adventure|Sci-Fi|IMAX +73015,2.375,It's Complicated (2009),Comedy|Romance +73017,3.875,Sherlock Holmes (2009),Action|Crime|Mystery|Thriller +73023,3.7857142857142856,Crazy Heart (2009),Drama|Romance +73042,2.25,Alvin and the Chipmunks: The Squeakquel (2009),Animation|Children|Comedy|Musical +73101,4.0,Looking for Eric (2009),Comedy|Drama|Fantasy +73168,2.5,Carriers (2009),Drama|Horror|Thriller +73211,3.75,Pontypool (2008),Horror|Thriller +73266,3.6,Youth in Revolt (2009),Comedy|Drama|Romance +73268,3.3333333333333335,Daybreakers (2010),Action|Drama|Horror|Thriller +73276,3.0,"Age of Stupid, The (2009)",Documentary +73290,4.5,Hachiko: A Dog's Story (a.k.a. Hachi: A Dog's Tale) (2009),Drama +73319,3.0,Leap Year (2010),Comedy|Romance +73321,3.588235294117647,"Book of Eli, The (2010)",Action|Adventure|Drama +73323,3.5,"Girl Who Kicked the Hornet's Nest, The (Luftslottet som sprängdes) (2009)",Action|Crime|Mystery +73344,4.416666666666667,"Prophet, A (Un Prophète) (2009)",Crime|Drama +73386,1.5,Staten Island (2009),Crime|Drama +73392,3.5,Collapse (2009),Documentary +73469,3.0,Mr. Warmth: The Don Rickles Project (2007),Documentary +73488,2.5,Blood: The Last Vampire (2009),Action|Horror|Thriller +73531,4.0,"Last of England, The (1988)",Drama +73572,3.0,"My Son, My Son, What Have Ye Done (2009)",Drama|Horror +73587,4.75,Soul Kitchen (2009),Comedy +73664,3.0,Dragon Hunters (Chasseurs de dragons) (2008),Adventure|Animation|Children +73741,2.0,Ninja (2009),Action|Crime|Drama|Thriller +73808,4.5,"Chaser, The (Chugyeogja) (2008)",Crime|Drama|Thriller +73854,3.5,"Rudolph, the Red-Nosed Reindeer (1964)",Adventure|Animation|Children|Fantasy|Musical +73860,3.0,Nowhere Boy (2009),Drama +73881,3.875,3 Idiots (2009),Comedy|Drama|Romance +73929,2.375,Legion (2010),Action|Fantasy|Horror|Thriller +74089,5.0,Peter Pan (1960),Children|Fantasy|Musical +74115,2.0,Dante's Inferno Animated (2010),Action|Animation|Fantasy +74152,4.5,Zach Galifianakis: Live at the Purple Onion (2006),Comedy|Documentary +74154,3.5,When in Rome (2010),Comedy|Romance +74156,2.0,Edge of Darkness (2010),Drama|Thriller +74228,3.2,Triangle (2009),Drama|Horror|Mystery|Thriller +74275,3.875,I Love You Phillip Morris (2009),Comedy|Drama|Romance +74327,0.5,"First Day of the Rest of Your Life, The (Le premier jour du reste de ta vie) (2008)",Comedy|Drama +74370,3.0,"House of the Devil, The (2009)",Horror|Thriller +74416,4.25,Fish Tank (2009),Drama +74438,2.0,"Legend of the Red Dragon (a.k.a. New Legend of Shaolin, The) (Hong Xi Guan: Zhi Shao Lin wu zu) (1994)",Action|Adventure|Comedy|Drama|Romance +74450,3.75,Valentine's Day (2010),Comedy|Romance +74452,2.8333333333333335,"Wolfman, The (2010)",Horror|Thriller +74458,3.7941176470588234,Shutter Island (2010),Drama|Mystery|Thriller +74486,3.8333333333333335,$9.99 (2008),Animation +74508,4.0,Persuasion (2007),Drama|Romance +74510,3.8333333333333335,"Girl Who Played with Fire, The (Flickan som lekte med elden) (2009)",Action|Crime|Drama|Mystery|Thriller +74530,3.5,Percy Jackson & the Olympians: The Lightning Thief (2010),Adventure|Fantasy +74532,2.6666666666666665,Cop Out (2010),Action|Comedy|Crime +74545,3.25,"Ghost Writer, The (2010)",Drama|Mystery|Thriller +74580,3.25,"Spy Next Door, The (2010)",Action|Children|Comedy +74624,3.5,Agora (2009),Adventure|Drama|Romance +74630,3.0,Tom Thumb (1958),Children|Fantasy|Musical +74649,4.0,Shades of Ray (2008),Comedy|Drama|Romance +74668,3.0,District 13: Ultimatum (Banlieue 13 - Ultimatum) (2009),Action|Sci-Fi +74677,4.0,"Yes Men Fix the World, The (2009)",Documentary +74685,3.1666666666666665,"Crazies, The (2010)",Action|Drama|Horror|Sci-Fi|Thriller +74688,2.0,Dear John (2010),Drama|Romance|War +74698,2.0,Tooth Fairy (2010),Comedy|Fantasy +74727,5.0,Gentlemen of Fortune (Dzhentlmeny udachi) (1972),Comedy|Crime|Drama|Mystery +74740,3.5,Fermat's Room (La habitación de Fermat) (2007),Mystery|Thriller +74754,5.0,"Room, The (2003)",Comedy|Drama|Romance +74787,3.0,My Name is Khan (2010),Drama|Romance +74789,3.125,Alice in Wonderland (2010),Adventure|Fantasy|IMAX +74795,3.2142857142857144,Green Zone (2010),Action|Drama|Thriller|War +74851,3.0,From Paris with Love (2010),Action|Crime +74868,3.0,Dorian Gray (2009),Drama|Horror|Sci-Fi +74916,3.125,Greenberg (2010),Comedy|Drama +74944,3.0,Brooklyn's Finest (2010),Crime|Drama|Thriller +74946,3.375,She's Out of My League (2010),Comedy +74948,3.6666666666666665,Harry Brown (2009),Crime|Drama|Thriller +75341,2.25,Remember Me (2010),Drama|Romance +75349,2.5,Teenage Caveman (2002),Horror|Sci-Fi|Thriller +75803,1.5,Our Family Wedding (2010),Comedy +75805,2.125,"Bounty Hunter, The (2010)",Action|Comedy|Romance +75813,3.1666666666666665,Leaves of Grass (2009),Comedy|Crime|Drama|Thriller +75816,2.0,Women in Trouble (2009),Comedy +75823,4.5,Combat Shock (1986),Drama|Horror|War +75983,4.0,North Face (Nordwand) (2008),Adventure|Drama +75985,3.0,Repo Men (2010),Action|Sci-Fi|Thriller +75990,4.5,"Apprenticeship of Duddy Kravitz, The (1974)",Comedy|Drama +76030,2.75,Case 39 (2009),Horror|Thriller +76054,3.5,Oceans (Océans) (2009),Documentary|Drama +76060,2.0,"Slammin' Salmon, The (2009)",Comedy +76077,3.0,Hot Tub Time Machine (2010),Comedy|Sci-Fi +76091,4.0,Mother (Madeo) (2009),Crime|Drama|Mystery|Thriller +76093,4.151515151515151,How to Train Your Dragon (2010),Adventure|Animation|Children|Fantasy|IMAX +76111,4.333333333333333,About Elly (Darbareye Elly) (2009),Drama|Mystery +76173,4.5,Micmacs (Micmacs à tire-larigot) (2009),Comedy|Crime +76175,1.6666666666666667,Clash of the Titans (2010),Action|Adventure|Drama|Fantasy +76210,3.5,Defendor (2009),Comedy|Crime|Drama +76251,3.6666666666666665,Kick-Ass (2010),Action|Comedy +76272,3.5,Five Minutes of Heaven (2009),Crime|Drama|Thriller +76293,3.0,Date Night (2010),Action|Comedy|Romance +76303,3.0,Mark of the Devil (Hexen bis aufs Blut gequält) (1970),Drama|Horror +76738,2.5,Steam of Life (Miesten vuoro) (2010),Documentary +76763,3.0,"Runaways, The (2010)",Drama|Musical +77191,2.5,Death at a Funeral (2010),Comedy +77201,2.0,Valhalla Rising (2009),Action|Drama|War +77206,2.5,Diary of a Wimpy Kid (2010),Children|Comedy +77291,5.0,Aria (1987),Comedy|Drama +77307,3.6666666666666665,Dogtooth (Kynodontas) (2009),Drama +77359,3.0,Red Riding: 1983 (2009),Crime|Drama|Mystery +77364,3.375,"Losers, The (2010)",Action|Adventure|Drama|Mystery|Thriller +77414,4.0,"Last Song, The (2010)",Drama|Romance +77421,3.0,Cyrus (2010),Comedy|Drama|Romance +77427,1.25,"Human Centipede, The (First Sequence) (2009)",Horror +77435,5.0,This Is the Army (1943),Comedy|Musical|War +77455,3.9166666666666665,Exit Through the Gift Shop (2010),Comedy|Documentary +77561,3.4655172413793105,Iron Man 2 (2010),Action|Adventure|Sci-Fi|Thriller|IMAX +77798,2.5,"Nightmare on Elm Street, A (2010)",Fantasy|Horror|Thriller +77800,3.6,Four Lions (2010),Comedy|Drama +77808,2.5,Bobby Deerfield (1977),Drama|Romance +77810,4.0,Diary of a Nymphomaniac (Diario de una Ninfómana) (2008),Drama +77837,4.0,You Don't Know Jack (2010),Drama +77846,4.125,12 Angry Men (1997),Crime|Drama +77866,2.75,Robin Hood (2010),Action|Adventure|Drama|Romance|War +77907,4.5,"Red Chapel, The (Røde kapel, Det) (2009)",Comedy|Documentary +78034,3.3333333333333335,Cemetery Junction (2010),Comedy|Drama|Romance +78039,3.75,Blue Valentine (2010),Drama|Romance +78041,2.75,Killers (2010),Action|Comedy +78088,3.5,Buried (2010),Mystery|Thriller +78101,2.0,Life After Tomorrow (2006),Documentary +78105,2.75,Prince of Persia: The Sands of Time (2010),Action|Adventure|Fantasy|Romance|IMAX +78111,2.0,Artists and Models (1955),Comedy|Musical +78116,3.5,Please Give (2010),Comedy|Drama +78122,0.5,Peter & the Wolf (2006),Animation|Musical +78174,3.0,Sex and the City 2 (2010),Comedy|Drama|Romance +78209,3.0625,Get Him to the Greek (2010),Comedy +78218,3.5,Unthinkable (2010),Drama|Thriller +78264,2.0,"Back-up Plan, The (2010)",Comedy|Romance +78266,2.0,Splice (2009),Horror|Sci-Fi|Thriller +78316,3.5,Letters to Juliet (2010),Drama|Romance +78349,3.1666666666666665,Exam (2009),Mystery|Thriller +78467,1.8333333333333333,Jonah Hex (2010),Action|Drama|Thriller|Western +78469,2.8333333333333335,"A-Team, The (2010)",Action|Comedy|Thriller +78499,4.071428571428571,Toy Story 3 (2010),Adventure|Animation|Children|Comedy|Fantasy|IMAX +78517,3.0,Joan Rivers: A Piece of Work (2010),Documentary +78574,3.5833333333333335,Winter's Bone (2010),Drama|Thriller +78637,2.8,Shrek Forever After (a.k.a. Shrek: The Final Chapter) (2010),Adventure|Animation|Children|Comedy|Fantasy|IMAX +78653,3.5,Everyone Else (Alle Anderen) (2009),Drama|Romance +78703,3.5,TiMER (2009),Comedy|Drama|Fantasy|Romance +78729,2.25,24: Redemption (2008),Action|Adventure|Crime|Drama|Thriller +78772,1.75,"Twilight Saga: Eclipse, The (2010)",Fantasy|Romance|Thriller|IMAX +78829,3.0,"Betrayal, The (Nerakhoon) (2008)",Documentary +78836,4.5,Enter the Void (2009),Drama +78893,1.5,"Last Airbender, The (2010)",Action|Adventure|Fantasy +78903,5.0,State of Siege (État de siège) (1972),Drama|Thriller +78967,4.0,"Island of Dr. Moreau, The (1977)",Adventure|Fantasy|Horror|Romance|Sci-Fi|Thriller +79006,4.0,Empire of Dreams: The Story of the 'Star Wars' Trilogy (2004),Documentary +79029,4.0,Kurt Cobain About a Son (2006),Documentary|Musical +79057,3.1666666666666665,Predators (2010),Action|Sci-Fi|Thriller +79091,3.71875,Despicable Me (2010),Animation|Children|Comedy|Crime +79132,4.04954954954955,Inception (2010),Action|Crime|Drama|Mystery|Sci-Fi|Thriller|IMAX +79134,3.0,Grown Ups (2010),Comedy +79136,4.5,Thirst (2008),Drama +79139,4.0,"Sorcerer's Apprentice, The (2010)",Action|Adventure|Children|Comedy|Fantasy +79163,4.0,Swedish Auto (2006),Drama|Romance +79185,2.8125,Knight and Day (2010),Action|Comedy|Romance +79203,4.5,Nightwatching (2007),Drama|Mystery +79224,2.25,"Karate Kid, The (2010)",Action|Children|Drama +79242,3.25,"Kids Are All Right, The (2010)",Comedy|Drama +79251,2.75,"Serbian Film, A (Srpski film) (2010)",Horror|Thriller +79259,2.5,Cherrybomb (2009),Drama|Thriller +79293,2.7083333333333335,Salt (2010),Action|Thriller +79299,2.5,"No. 1 Ladies' Detective Agency, The (2008)",Comedy|Crime|Mystery +79318,4.0,Winnebago Man (2009),Comedy|Documentary +79357,4.166666666666667,Mr. Nobody (2009),Drama|Fantasy|Romance|Sci-Fi +79428,2.5,Dinner for Schmucks (2010),Comedy +79469,5.0,"Northerners, The (De noorderlingen) (1992)",Comedy +79553,3.75,Ip Man 2 (2010),Action +79588,3.5,Charlie St. Cloud (2010),Drama|Fantasy|Romance +79590,2.5,"Rebound, The (2009)",Comedy|Romance +79592,3.4285714285714284,"Other Guys, The (2010)",Action|Comedy +79686,4.5,All Tomorrow's Parties (2009),Documentary|Musical +79695,2.5,"Expendables, The (2010)",Action|Adventure|Thriller +79702,3.9615384615384617,Scott Pilgrim vs. the World (2010),Action|Comedy|Fantasy|Musical|Romance +79720,3.25,Animal Kingdom (2010),Crime|Drama +79796,3.5,Centurion (2010),Action|Adventure|Drama|Thriller|War +79824,4.0,Babies (Bébé(s)) (2010),Documentary +79868,3.5,Heartless (2009),Fantasy|Horror|Mystery|Thriller +79879,2.75,Piranha (Piranha 3D) (2010),Action|Horror|Thriller +79946,3.5,"Joneses, The (2009)",Comedy|Drama +80026,4.5,Tekken (2010),Action|Sci-Fi +80083,3.5,Dragon Ball Z: Dead Zone (Doragon bôru Z 1: Ora no Gohan wo kaese) (1989),Action|Adventure|Animation|Fantasy|Sci-Fi +80126,3.0,"American, The (2010)",Drama|Thriller +80166,2.75,"Switch, The (2010)",Comedy|Romance +80185,3.0,GasLand (2010),Documentary +80219,4.0,Machete (2010),Action|Adventure|Comedy|Crime|Thriller +80241,3.0,Going the Distance (2010),Comedy|Romance +80346,3.5,"Song to Remember, A (1945)",Drama +80350,0.5,Vampires Suck (2010),Comedy +80363,3.125,Resident Evil: Afterlife (2010),Action|Horror|Sci-Fi|Thriller|IMAX +80463,3.9767441860465116,"Social Network, The (2010)",Drama +80489,3.764705882352941,"Town, The (2010)",Crime|Drama|Thriller +80549,3.6785714285714284,Easy A (2010),Comedy|Romance +80551,2.5,Eat Pray Love (2010),Drama|Romance +80553,5.0,Howl (2010),Drama +80572,2.5,I'm Still Here (2010),Comedy|Drama +80584,4.5,"Patrik Age 1.5 (Patrik 1,5) (2008)",Comedy|Drama|Romance +80586,3.75,Flipped (2010),Comedy|Drama|Romance +80590,2.0,Wall Street: Money Never Sleeps (2010),Drama +80599,4.5,Buster Keaton: A Hard Act to Follow (1987),Documentary +80615,2.0,Legend of the Guardians: The Owls of Ga'Hoole (2010),Adventure|Animation|Fantasy|IMAX +80693,4.0,It's Kind of a Funny Story (2010),Comedy|Drama +80717,5.0,Voyeur (Abel) (1986),Comedy +80727,3.25,Middle Men (2009),Comedy|Crime|Drama +80748,4.5,Alice in Wonderland (1933),Adventure|Children|Fantasy +80831,3.25,Let Me In (2010),Drama|Horror|Mystery +80839,5.0,Secretariat (2010),Adventure|Drama +80844,1.0,Lake Mungo (2008),Drama|Mystery|Thriller +80846,3.25,Devil (2010),Horror|Mystery|Thriller +80858,2.0,You Again (2010),Comedy +80860,4.0,Life as We Know It (2010),Comedy|Romance +80862,3.1,Catfish (2010),Documentary|Mystery +80864,3.25,You Will Meet a Tall Dark Stranger (2010),Comedy|Romance +80906,3.95,Inside Job (2010),Documentary +80917,3.0,Monsters (2010),Drama|Sci-Fi +80969,3.5,Never Let Me Go (2010),Drama|Romance|Sci-Fi +81018,3.5,"Illusionist, The (L'illusionniste) (2010)",Animation +81054,4.0,Love Is Colder Than Death (Liebe ist kälter als der Tod) (1969),Comedy|Crime|Romance +81083,3.75,Kaboom (2010),Comedy|Sci-Fi +81132,4.0,Rubber (2010),Action|Adventure|Comedy|Crime|Drama|Film-Noir|Horror|Mystery|Thriller|Western +81138,2.5,7 Days (Les 7 jours du talion) (2010),Thriller +81156,3.75,Jackass 3D (2010),Action|Comedy|Documentary +81158,3.3333333333333335,Restrepo (2010),Documentary|War +81191,3.0,Waiting for 'Superman' (2010),Documentary +81229,4.027777777777778,Red (2010),Action|Comedy +81417,3.5,Paranormal Activity 2 (2010),Horror|IMAX +81512,3.0,Hereafter (2010),Drama|Fantasy +81516,4.0,Black Death (2010),Adventure|Drama|Horror|Mystery +81535,2.75,Saw VII 3D - The Final Chapter (2010),Horror|Mystery|Thriller +81537,2.8,Due Date (2010),Comedy +81562,3.630434782608696,127 Hours (2010),Adventure|Drama|Thriller +81564,4.0,Megamind (2010),Action|Animation|Children|Comedy|Sci-Fi|IMAX +81591,3.7794117647058822,Black Swan (2010),Drama|Thriller +81641,3.5,Fair Game (2010),Drama|Thriller +81660,2.5,1990: The Bronx Warriors (1990: I guerrieri del Bronx) (1982),Action|Sci-Fi +81782,3.0,Unstoppable (2010),Action|Drama|Thriller +81784,2.7,Morning Glory (2010),Comedy|Drama|Romance +81786,4.25,Certified Copy (Copie conforme) (2010),Drama +81788,4.166666666666667,"Next Three Days, The (2010)",Crime|Drama|Romance|Thriller +81819,4.0,Biutiful (2010),Drama +81831,4.0,"First Beautiful Thing, The (La prima cosa bella) (2010)",Comedy|Drama +81834,3.9242424242424243,Harry Potter and the Deathly Hallows: Part 1 (2010),Action|Adventure|Fantasy|IMAX +81845,3.925,"King's Speech, The (2010)",Drama +81847,3.6666666666666665,Tangled (2010),Animation|Children|Comedy|Fantasy|Musical|Romance|IMAX +81898,0.5,"Agony and the Ecstasy of Phil Spector, The (2009)",Documentary +81910,3.0,"Art of the Steal, The (2009)",Documentary +81932,4.136363636363637,"Fighter, The (2010)",Drama +81949,3.0,"Romantics, The (2010)",Comedy|Drama|Romance +82037,3.0,"Tillman Story, The (2010)",Documentary +82041,3.5,"Loved Ones, The (2009)",Horror +82093,1.5,London Boulevard (2010),Crime|Romance +82095,1.375,Skyline (2010),Sci-Fi|Thriller +82150,3.5,Bunny and the Bull (2009),Adventure|Comedy|Drama +82152,3.5,Beastly (2011),Drama|Fantasy|Romance +82167,2.8333333333333335,Love and Other Drugs (2010),Comedy|Drama|Romance +82169,3.625,"Chronicles of Narnia: The Voyage of the Dawn Treader, The (2010)",Adventure|Children|Fantasy +82173,2.5,Tiny Furniture (2010),Comedy +82202,2.4285714285714284,"Tourist, The (2010)",Drama|Thriller +82242,4.0,Rare Exports: A Christmas Tale (Rare Exports) (2010),Action|Comedy +82378,2.75,All Good Things (2010),Drama|Mystery|Thriller +82459,3.840909090909091,True Grit (2010),Western +82461,2.8846153846153846,Tron: Legacy (2010),Action|Adventure|Sci-Fi|IMAX +82463,3.5,Another Year (2010),Drama +82499,3.25,How Do You Know (2010),Comedy|Drama|Romance +82527,4.166666666666667,Barney's Version (2010),Drama +82534,3.0,"Company Men, The (2010)",Drama +82608,5.0,Zerophilia (2005),Comedy|Romance +82667,3.875,I Saw the Devil (Akmareul boatda) (2010),Crime|Thriller +82852,2.3333333333333335,Little Fockers (2010),Comedy +82854,1.75,Gulliver's Travels (2010),Adventure|Comedy|Fantasy +82931,3.5,"Last Circus, The (Balada triste de trompeta) (Sad Trumpet Ballad, A) (2010)",Comedy|Drama|War +82934,3.0,"Most Dangerous Man in America: Daniel Ellsberg and the Pentagon Papers, The (2009)",Documentary +83086,1.0,Burlesque (2010),Drama|Musical|Romance +83096,3.5,"Haunted House, The (1921)",Comedy +83132,3.75,"Secret World of Arrietty, The (Kari-gurashi no Arietti) (2010)",Animation|Children|Fantasy +83134,3.875,Tucker & Dale vs Evil (2010),Comedy|Horror +83177,2.0,Yogi Bear (2010),Children|Comedy +83270,1.0,Made in Dagenham (2010),Comedy|Drama +83293,3.5,Waste Land (2010),Documentary +83318,5.0,"Goat, The (1921)",Comedy +83322,4.0,"Boat, The (1921)",Comedy +83332,4.0,Who Is Harry Nilsson (And Why Is Everybody Talkin' About Him?) (2010),Documentary +83349,2.1875,"Green Hornet, The (2011)",Action|Comedy|Crime|Fantasy|Thriller|IMAX +83359,5.0,"Play House, The (1921)",Comedy +83361,3.5,"Paleface, The (1922)",Comedy +83374,2.5,"Warrior's Way, The (2010)",Action|Fantasy|Western +83411,5.0,Cops (1922),Comedy +83480,3.0,Season of the Witch (2011),Adventure|Drama|Fantasy +83603,3.5,Fern flowers (Fleur de fougère) (1949),Animation +83613,2.3125,Cowboys & Aliens (2011),Action|Sci-Fi|Thriller|Western|IMAX +83803,3.75,Day & Night (2010),Animation|Children +83827,4.0,Marwencol (2010),Documentary +83910,2.25,"Dilemma, The (2011)",Comedy|Drama +83976,4.0,"Trip, The (2010)",Comedy|Drama +84098,3.5,Phone Call from a Stranger (1952),Drama +84116,4.0,Poetry (Shi) (2010),Drama +84152,3.8157894736842106,Limitless (2011),Sci-Fi|Thriller +84160,3.5,Wishful Drinking (2010),Documentary +84187,3.75,Evangelion: 2.0 You Can (Not) Advance (Evangerion shin gekijôban: Ha) (2009),Action|Animation|Drama|Sci-Fi +84236,4.0,"White Stripes Under Great White Northern Lights, The (2009)",Documentary +84304,3.5,What Women Want (a.k.a. I Know a Woman's Heart) (2011),Comedy|Romance +84312,1.0,Home Alone 4 (2002),Children|Comedy|Crime +84374,2.9375,No Strings Attached (2011),Comedy|Romance +84392,3.5,"Lincoln Lawyer, The (2011)",Crime|Drama|Thriller +84395,2.5,"Rite, The (2011)",Drama|Horror|Thriller +84506,3.5,Silent Souls (Ovsyanki) (2010),Drama +84601,3.5,Unknown (2011),Drama|Mystery|Thriller +84615,3.0,Cedar Rapids (2011),Comedy +84637,1.5,Gnomeo & Juliet (2011),Adventure|Animation|Children|Comedy|Fantasy|Romance +84696,4.0,Burke and Hare (2010),Comedy|Thriller +84772,2.8125,Paul (2011),Adventure|Comedy|Sci-Fi +84844,4.1,Brother 2 (Brat 2) (2000),Crime|Drama +84944,3.7142857142857144,Rango (2011),Action|Adventure|Animation|Children|Comedy|Western +84950,2.5,Take Me Home Tonight (2011),Comedy|Drama +84952,4.25,Confessions (Kokuhaku) (2010),Drama|Horror +84954,3.2916666666666665,"Adjustment Bureau, The (2011)",Romance|Sci-Fi|Thriller +85016,3.5,Cropsey (2009),Documentary|Horror +85020,3.5,"Mechanic, The (2011)",Action|Drama|Thriller +85022,2.7,Hall Pass (2011),Comedy +85025,2.75,"Eagle, The (2011)",Adventure|Drama +85056,2.6666666666666665,I Am Number Four (2011),Action|Sci-Fi|Thriller|IMAX +85131,2.3125,Battle: Los Angeles (2011),Action|Sci-Fi|War +85179,4.0,Summer Wars (Samâ wôzu) (2009),Adventure|Animation|Comedy|Sci-Fi +85213,4.0,"Sunset Limited, The (2011)",Drama +85261,2.5,Mars Needs Moms (2011),Action|Adventure|Animation|Children|Comedy|Sci-Fi|IMAX +85316,4.0,Winnie the Pooh and Tigger Too (1974),Animation|Children +85342,4.1,Elite Squad: The Enemy Within (Tropa de Elite 2 - O Inimigo Agora É Outro) (2010),Action|Crime|Drama +85367,2.6666666666666665,Just Go with It (2011),Comedy|Romance +85394,4.5,Cave of Forgotten Dreams (2010),Documentary +85397,1.5,Red Riding Hood (2011),Fantasy|Horror|Mystery|Thriller +85399,1.0,"Big Mommas: Like Father, Like Son (2011)",Comedy +85401,3.5,Super (2010),Action|Comedy|Drama +85412,3.625,"Troll Hunter, The (Trolljegeren) (2010)",Fantasy|Horror +85414,4.020833333333333,Source Code (2011),Action|Drama|Mystery|Sci-Fi|Thriller +85438,3.75,Jane Eyre (2011),Drama|Romance +85510,2.1666666666666665,Sucker Punch (2011),Action|Fantasy|Thriller|IMAX +85774,4.111111111111111,Senna (2010),Documentary +85788,3.5,Insidious (2010),Fantasy|Horror|Thriller +85796,2.25,Hobo with a Shotgun (2011),Action|Adventure|Crime|Thriller +85881,3.4166666666666665,Win Win (2011),Comedy|Drama +86000,4.75,Boy (2010),Comedy|Drama +86014,3.0,Diary of a Wimpy Kid: Rodrick Rules (2011),Comedy +86028,2.0,Henry's Crime (2010),Comedy|Crime +86059,1.0,Hop (2011),Animation|Children|Comedy +86142,3.3,13 Assassins (Jûsan-nin no shikaku) (2010),Action +86190,3.0,Hanna (2011),Action|Adventure|Mystery|Thriller +86290,3.5,American: The Bill Hicks Story (2009),Comedy|Documentary +86293,2.75,Arthur (2011),Comedy +86298,3.1,Rio (2011),Adventure|Animation|Children|Comedy +86320,4.0,Melancholia (2011),Drama|Sci-Fi +86332,3.357142857142857,Thor (2011),Action|Adventure|Drama|Fantasy|IMAX +86345,4.25,Louis C.K.: Hilarious (2010),Comedy +86347,4.25,Louis C.K.: Chewed Up (2008),Comedy +86377,4.5,Louis C.K.: Shameless (2007),Comedy +86487,5.0,Mildred Pierce (2011),Drama +86548,4.25,Water for Elephants (2011),Drama|Romance +86593,2.5,African Cats (2011),Adventure|Documentary +86626,4.0,Socialism (Film socialisme) (2010),Drama +86644,2.5,"Fast Five (Fast and the Furious 5, The) (2011)",Action|Crime|Drama|Thriller|IMAX +86721,3.0,Idiots and Angels (2008),Animation|Drama|Fantasy +86781,4.0,Incendies (2010),Drama|Mystery|War +86817,5.0,Something Borrowed (2011),Comedy|Drama|Romance +86833,3.4375,Bridesmaids (2011),Comedy +86835,2.0,Priest (2011),Action|Horror|Sci-Fi|Thriller +86852,3.0,"Beaver, The (2011)",Drama +86864,4.0,Mothra (Mosura) (1961),Adventure|Fantasy|Sci-Fi +86880,2.65,Pirates of the Caribbean: On Stranger Tides (2011),Action|Adventure|Fantasy|IMAX +86882,3.9285714285714284,Midnight in Paris (2011),Comedy|Fantasy|Romance +86884,4.0,"Kid With a Bike, The (Le gamin au vélo) (2011)",Drama +86892,3.0,The Man from Nowhere (2010),Action|Crime|Thriller +86898,3.5,"Tree of Life, The (2011)",Drama +86911,2.5,"Hangover Part II, The (2011)",Comedy +86982,2.0,Destroy All Monsters (Kaijû sôshingeki) (1968),Action|Sci-Fi|Thriller +87192,3.6666666666666665,Attack the Block (2011),Action|Comedy|Sci-Fi +87205,1.5,"Tunnel, The (2011)",Drama|Horror|Thriller +87218,3.5,He Ran All the Way (1951),Crime|Drama|Film-Noir +87222,3.8333333333333335,Kung Fu Panda 2 (2011),Action|Adventure|Animation|Children|Comedy|IMAX +87232,3.982142857142857,X-Men: First Class (2011),Action|Adventure|Sci-Fi|Thriller|War +87234,3.75,Submarine (2010),Comedy|Drama|Romance +87298,2.875,Everything Must Go (2010),Comedy|Drama +87304,3.0,Beginners (2010),Drama +87306,3.375,Super 8 (2011),Mystery|Sci-Fi|Thriller|IMAX +87383,3.0,Curly Top (1935),Children|Musical|Romance +87430,2.4,Green Lantern (2011),Action|Adventure|Sci-Fi +87444,1.5,Elektra Luxx (2010),Comedy +87483,2.0,Mr. Popper's Penguins (2011),Comedy +87485,2.25,Bad Teacher (2011),Comedy +87520,2.7222222222222223,Transformers: Dark of the Moon (2011),Action|Adventure|Sci-Fi|War|IMAX +87522,2.75,Larry Crowne (2011),Comedy|Drama|Romance +87529,1.3333333333333333,Your Highness (2011),Action|Adventure|Comedy|Fantasy +87598,3.0,"Dolly Sisters, The (1945)",Drama|Musical|Romance +87660,4.5,Too Big to Fail (2011),Drama +87785,2.0,Takers (2010),Action|Crime|Thriller +87869,2.909090909090909,Horrible Bosses (2011),Comedy|Crime +87876,1.5,Cars 2 (2011),Adventure|Animation|Children|Comedy|IMAX +87884,3.5,Savage Messiah (1972),Drama +87930,2.0,Page One: Inside the New York Times (2011),Documentary +88024,2.5,To Sleep with Anger (1990),Drama +88106,3.5,Mahler (1974),Drama +88118,4.0,"Perfect Host, The (2010)",Crime|Drama|Thriller +88125,4.220588235294118,Harry Potter and the Deathly Hallows: Part 2 (2011),Action|Adventure|Drama|Fantasy|Mystery|IMAX +88129,3.9,Drive (2011),Crime|Drama|Film-Noir|Thriller +88140,3.659090909090909,Captain America: The First Avenger (2011),Action|Adventure|Sci-Fi|Thriller|War +88163,3.6785714285714284,"Crazy, Stupid, Love. (2011)",Comedy|Drama|Romance +88179,4.25,One Day (2011),Drama|Romance +88235,4.0,"Guard, The (2011)",Comedy|Crime +88267,3.25,Winnie the Pooh (2011),Animation|Children|Comedy +88272,2.0,"Woman, The (2011)",Horror +88356,2.0,"Smurfs, The (2011)",Animation|Children|Comedy +88380,3.5,Dylan Dog: Dead of Night (2010),Comedy|Horror|Mystery|Thriller +88405,3.111111111111111,Friends with Benefits (2011),Comedy|Romance +88672,3.6666666666666665,Our Idiot Brother (2011),Comedy +88682,4.0,"Letter to Elia, A (2010)",Documentary +88744,3.7916666666666665,Rise of the Planet of the Apes (2011),Action|Drama|Sci-Fi|Thriller +88785,2.6666666666666665,"Change-Up, The (2011)",Comedy +88810,4.0,"Help, The (2011)",Drama +88812,3.0833333333333335,30 Minutes or Less (2011),Action|Comedy|Crime +88879,2.5,Gantz (2011),Action|Horror|Sci-Fi +88932,1.0,Final Destination 5 (2011),Horror|Thriller|IMAX +88950,0.5,"Conspirator, The (2010)",Drama +88954,1.5,"Very Harold & Kumar 3D Christmas, A (2011)",Comedy +89000,3.5,Carancho (2010),Crime|Drama|Romance +89030,2.75,Fright Night (2011),Comedy|Horror +89039,3.8333333333333335,Another Earth (2011),Drama|Romance|Sci-Fi +89047,3.5,Hesher (2010),Drama +89072,3.5,Stake Land (2010),Horror +89085,4.5,"Debt, The (2011)",Drama|Thriller +89087,2.3333333333333335,Colombiana (2011),Action|Adventure|Drama|Thriller +89090,1.5,Bill Cunningham New York (2011),Documentary +89102,2.0,Freakonomics (2010),Documentary +89118,2.5,"Skin I Live In, The (La piel que habito) (2011)",Drama +89194,3.0,Prom (2011),Comedy|Drama +89203,4.0,Magic Trip (2011),Documentary +89260,4.0,Project Nim (2011),Documentary +89300,3.5,Win/win (2010),Drama +89305,4.0,"Inbetweeners Movie, The (2011)",Adventure|Comedy +89321,2.0,"Future, The (2011)",Drama +89337,3.0,"Interrupters, The (2011)",Documentary +89343,3.5,Red State (2011),Action|Crime|Horror|Thriller +89356,3.5,Chinese Take-Out (Chinese Take-Away) (Un cuento chino) (2011),Comedy +89388,1.0,I Don't Know How She Does It (2011),Comedy +89408,3.0,April Love (1957),Comedy|Drama|Musical +89427,1.5,Shark Night 3D (2011),Horror|Thriller +89470,3.5,Contagion (2011),Sci-Fi|Thriller|IMAX +89492,3.78125,Moneyball (2011),Drama +89678,3.5,Northanger Abbey (2007),Drama|Romance +89745,4.010869565217392,"Avengers, The (2012)",Action|Adventure|Sci-Fi|IMAX +89753,3.5,Tinker Tailor Soldier Spy (2011),Drama|Film-Noir|Thriller +89759,4.3,"Separation, A (Jodaeiye Nader az Simin) (2011)",Drama +89761,3.5,"Dangerous Method, A (2011)",Drama|Thriller +89774,3.9,Warrior (2011),Drama +89804,3.9444444444444446,"Ides of March, The (2011)",Drama +89837,3.25,Kill List (2011),Horror|Mystery|Thriller +89840,2.0,Killer Elite (2011),Action|Thriller +89864,3.6923076923076925,50/50 (2011),Comedy|Drama +89881,4.0,Superman and the Mole-Men (1951),Children|Mystery|Sci-Fi +89904,3.8333333333333335,The Artist (2011),Comedy|Drama|Romance +90057,4.0,Take Shelter (2011),Drama +90061,5.0,"Myth of the American Sleepover, The (2010)",Comedy|Drama|Romance +90249,3.0,Real Steel (2011),Action|Drama|Sci-Fi|IMAX +90266,2.75,Buck (2011),Documentary +90343,2.5,Footloose (2011),Comedy|Drama|Musical +90345,3.5,"Thing, The (2011)",Horror|Mystery|Sci-Fi|Thriller +90357,4.0,Tyrannosaur (2011),Drama +90374,3.2,Martha Marcy May Marlene (2011),Drama|Thriller +90376,3.5,We Need to Talk About Kevin (2011),Drama|Thriller +90403,3.0,"Three Musketeers, The (2011)",Action|Adventure +90405,3.388888888888889,In Time (2011),Crime|Sci-Fi|Thriller +90428,4.166666666666667,Margaret (2011),Drama +90430,4.25,Carnage (2011),Comedy|Drama +90439,3.25,Margin Call (2011),Drama|Thriller +90469,2.3333333333333335,Paranormal Activity 3 (2011),Horror +90522,2.0,Johnny English Reborn (2011),Adventure|Comedy|Thriller +90524,2.0,Abduction (2011),Action|Drama|Mystery|Thriller +90531,3.642857142857143,Shame (2011),Drama +90576,4.25,What's Your Number? (2011),Comedy|Romance +90600,4.166666666666667,Headhunters (Hodejegerne) (2011),Action|Crime|Thriller +90647,2.5,Puss in Boots (2011),Adventure|Animation|Comedy|Fantasy|IMAX +90717,3.0,Tower Heist (2011),Action|Comedy|Crime +90719,3.0,J. Edgar (2011),Drama +90738,1.5,"Double, The (2011)",Action|Crime|Drama|Mystery|Thriller +90746,3.357142857142857,"Adventures of Tintin, The (2011)",Action|Animation|Mystery|IMAX +90863,4.5,George Harrison: Living in the Material World (2011),Documentary +90866,3.3,Hugo (2011),Children|Drama|Mystery +90870,0.5,Trespass (2011),Crime|Drama|Thriller +90888,2.75,Immortals (2011),Action|Drama|Fantasy +90890,1.5,Jack and Jill (2011),Comedy +90947,4.0,"Oslo, August 31st (Oslo, 31. august) (2011)",Drama +91077,3.8,"Descendants, The (2011)",Comedy|Drama +91094,3.6666666666666665,"Muppets, The (2011)",Children|Comedy|Musical +91104,2.5,"Twilight Saga: Breaking Dawn - Part 1, The (2011)",Adventure|Drama|Fantasy|Romance +91126,3.5,War Horse (2011),Drama|War +91128,3.0,"Rum Diary, The (2011)",Comedy|Drama|Thriller +91134,3.0,My Week with Marilyn (2011),Drama +91199,3.75,Weekend (2011),Drama|Romance +91273,1.5,Bunraku (2010),Action|Drama|Fantasy +91286,4.0,"Little Colonel, The (1935)",Children|Comedy|Crime|Drama +91323,1.5,"Sitter, The (2011)",Comedy +91325,2.0,Extremely Loud and Incredibly Close (2011),Drama +91355,3.5,Asterix and the Vikings (Astérix et les Vikings) (2006),Adventure|Animation|Children|Comedy|Fantasy +91414,3.0,Arthur Christmas (2011),Animation|Children|Comedy|Drama +91483,2.0,Bullet to the Head (2012),Action|Crime|Film-Noir +91485,3.0,"Expendables 2, The (2012)",Action|Adventure +91488,2.5,"Snowman, The (1982)",Animation|Children|Musical +91500,3.3815789473684212,The Hunger Games (2012),Action|Adventure|Drama|Sci-Fi|Thriller +91505,1.0,Clone (Womb) (2010),Drama|Romance|Sci-Fi +91529,3.6875,"Dark Knight Rises, The (2012)",Action|Adventure|Crime|IMAX +91535,2.857142857142857,"Bourne Legacy, The (2012)",Action|Adventure|Drama|Thriller|IMAX +91542,3.769230769230769,Sherlock Holmes: A Game of Shadows (2011),Action|Adventure|Comedy|Crime|Mystery|Thriller +91548,4.0,Life in a Day (2011),Documentary|Drama +91582,2.5,Stagecoach (1966),Western +91610,2.0,Toronto Stories (2008),Drama +91622,2.5,Young Adult (2011),Comedy|Drama +91628,1.75,New Year's Eve (2011),Comedy|Romance +91630,3.7222222222222223,Mission: Impossible - Ghost Protocol (2011),Action|Adventure|Thriller|IMAX +91653,3.5,We Bought a Zoo (2011),Comedy|Drama +91658,3.8125,"Girl with the Dragon Tattoo, The (2011)",Drama|Thriller +91660,1.5,"Darkest Hour, The (2011)",Action|Horror|Sci-Fi|Thriller +91673,5.0,Albert Nobbs (2011),Drama +91688,1.5,Salvation Boulevard (2011),Comedy|Thriller +91690,5.0,Friends with Kids (2011),Comedy +91842,2.375,Contraband (2012),Action|Crime|Drama|Thriller +91869,3.0,Being Elmo: A Puppeteer's Journey (2011),Documentary +91873,1.5,Joyful Noise (2012),Comedy|Musical +91886,4.0,Dolphin Tale (2011),Children|Drama +91890,3.5,"Iron Lady, The (2011)",Drama +91935,2.5,Albatross (2011),Drama +91947,3.5,"Revenant, The (2009)",Comedy|Horror +91974,2.6666666666666665,Underworld: Awakening (2012),Action|Fantasy|Horror|IMAX +91976,2.0,"Grey, The (2012)",Action|Drama +91978,4.5,Man on a Ledge (2012),Crime|Thriller +92004,4.0,Chill Out! (Descongélate!) (2003),Comedy|Drama +92008,3.0,Haywire (2011),Action|Thriller +92048,2.5,"Whistleblower, The (2010)",Drama|Thriller +92058,2.0,"Human Centipede II (Full Sequence), The (2011)",Horror +92163,4.0,Fados (2007),Documentary|Musical +92198,2.0,Seeking Justice (2011),Action|Drama|Thriller +92210,5.0,"Disappearance of Haruhi Suzumiya, The (Suzumiya Haruhi no shôshitsu) (2010)",Adventure|Animation|Drama|Mystery|Sci-Fi +92234,2.5,Red Tails (2012),Action|Adventure|Drama|War +92259,4.166666666666667,Intouchables (2011),Comedy|Drama +92264,2.0,One for the Money (2012),Action|Comedy|Crime +92309,2.5,"Innkeepers, The (2011)",Horror|Thriller +92420,3.2,Chronicle (2012),Action|Sci-Fi|Thriller +92424,4.0,Dottie Gets Spanked (1993),Drama +92439,2.0,"Art of Getting By, The (2011)",Drama|Romance +92507,3.125,Safe House (2012),Action|Crime|Mystery|Thriller +92509,4.0,"Vow, The (2012)",Drama|Romance +92613,4.0,Holding Trevor (2007),Drama|Romance +92665,2.5,"For a Good Time, Call... (2012)",Comedy|Drama|Romance +92681,2.5,Journey 2: The Mysterious Island (2012),Action|Adventure|Comedy|Sci-Fi|IMAX +92694,3.5,Perfect Sense (2011),Drama|Romance|Sci-Fi +92751,4.0,Kokowääh (2011),Comedy +92756,2.5,Hearts of the West (1975),Comedy|Western +92938,1.0,Ghost Rider: Spirit of Vengeance (2012),Action|Fantasy|Thriller +92954,3.0,Prayers for Bobby (2009),Drama +92966,4.0,Love Wrecked (2005),Comedy|Romance +93040,4.666666666666667,"Civil War, The (1990)",Documentary|War +93061,4.5,October Baby (2011),Drama +93242,1.5,Gone (2012),Drama|Thriller +93265,4.5,Courageous (2011),Drama +93270,1.6666666666666667,Project X (2012),Comedy +93272,2.0,Dr. Seuss' The Lorax (2012),Animation|Fantasy|Musical|IMAX +93287,3.25,"Big Year, The (2011)",Comedy +93320,5.0,Trailer Park Boys (1999),Comedy|Crime +93324,5.0,Undefeated (2011),Documentary +93326,2.9,This Means War (2012),Action|Comedy|Romance +93363,2.9375,John Carter (2012),Action|Adventure|Sci-Fi|IMAX +93422,4.0,Starbuck (2011),Comedy +93432,3.0,Forks Over Knives (2011),Documentary +93443,4.166666666666667,Goon (2011),Comedy|Drama +93498,4.0,Game Change (2012),Drama +93510,4.0,21 Jump Street (2012),Action|Comedy|Crime +93512,3.375,"Jeff, Who Lives at Home (2012)",Comedy|Drama +93563,1.5,Lockout (2012),Action|Sci-Fi|Thriller +93693,4.0,Casa de mi Padre (2012),Comedy +93700,4.0,Corman's World: Exploits of a Hollywood Rebel (2011),Documentary +93721,3.75,Jiro Dreams of Sushi (2011),Documentary +93766,1.0,Wrath of the Titans (2012),Action|Adventure|Fantasy|IMAX +93805,3.5,Iron Sky (2012),Action|Comedy|Sci-Fi +93831,2.3333333333333335,American Reunion (American Pie 4) (2012),Comedy +93838,4.083333333333333,The Raid: Redemption (2011),Action|Crime +93840,3.6538461538461537,"Cabin in the Woods, The (2012)",Comedy|Horror|Sci-Fi|Thriller +93855,4.5,God Bless America (2011),Comedy|Drama +93980,1.5,"Three Stooges, The (2012)",Comedy +93982,2.0,"Raven, The (2012)",Mystery|Thriller +94011,1.5,"Big Bang, The (2011)",Action|Thriller +94015,2.3333333333333335,Mirror Mirror (2012),Adventure|Comedy|Fantasy +94018,2.5,Battleship (2012),Action|Sci-Fi|Thriller|IMAX +94024,4.5,Louis Theroux: The Most Hated Family in America in Crisis (2011),Documentary +94070,3.5,"Best Exotic Marigold Hotel, The (2011)",Comedy|Drama +94266,2.75,"Five-Year Engagement, The (2012)",Comedy|Romance +94323,3.0,Think Like a Man (2012),Comedy +94325,4.0,"Lucky One, The (2012)",Drama +94478,2.25,Dark Shadows (2012),Comedy|Horror|IMAX +94480,1.0,The Scorpion King: Rise of a Warrior (2008),Action|Adventure|Fantasy +94494,2.5,96 Minutes (2011) ,Drama|Thriller +94672,2.0,Across the Line: The Exodus of Charlie Wright (2010),Crime|Drama +94677,3.5,"Dictator, The (2012)",Comedy +94777,3.1923076923076925,Men in Black III (M.III.B.) (M.I.B.³) (2012),Action|Comedy|Sci-Fi|IMAX +94780,2.0,Snow White and the Huntsman (2012),Action|Adventure|Drama +94799,4.0,Sound of My Voice (2011),Drama|Mystery|Sci-Fi +94833,2.8333333333333335,"Pirates! Band of Misfits, The (2012)",Adventure|Animation|Children|Comedy +94864,3.125,Prometheus (2012),Action|Horror|Sci-Fi|IMAX +94896,3.5,Bernie (2011),Comedy|Crime|Drama +94919,2.5,Inhale (2010),Drama|Thriller +94931,4.5,Take This Waltz (2011),Drama|Romance +94939,4.5,Sound of Noise (2010),Comedy|Crime|Musical +94953,2.0,Wanderlust (2012),Comedy +94959,3.7115384615384617,Moonrise Kingdom (2012),Comedy|Drama|Romance +95067,2.5,"Thousand Words, A (2012)",Comedy|Drama +95088,4.166666666666667,Safety Not Guaranteed (2012),Comedy|Drama +95105,1.75,Madagascar 3: Europe's Most Wanted (2012),Adventure|Animation|Children|Comedy|IMAX +95135,4.0,Your Sister's Sister (2011),Comedy|Drama +95165,3.0,Dragon Ball Z the Movie: The World's Strongest (a.k.a. Dragon Ball Z: The Strongest Guy in The World) (Doragon bôru Z: Kono yo de ichiban tsuyoi yatsu) (1990),Action|Adventure|Animation|Sci-Fi|Thriller +95167,3.576923076923077,Brave (2012),Action|Adventure|Animation|Children +95182,3.0,Dragon Ball Z the Movie: The Tree of Might (Doragon bôru Z 3: Chikyû marugoto chô kessen) (1990),Action|Adventure|Animation|Sci-Fi +95199,2.25,What to Expect When You're Expecting (2012),Comedy|Drama|Romance +95201,3.0,To Rome with Love (2012),Comedy +95207,1.75,Abraham Lincoln: Vampire Hunter (2012),Action|Fantasy|Horror|Thriller +95307,2.6,Rock of Ages (2012),Comedy|Drama|Musical|IMAX +95309,3.6666666666666665,Seeking a Friend for the End of the World (2012),Comedy|Drama|Romance +95311,3.3333333333333335,Presto (2008),Animation|Children|Comedy|Fantasy +95375,3.0,Boundin' (2003),Animation|Children +95441,2.95,Ted (2012),Comedy|Fantasy +95443,0.5,"Giant Mechanical Man, The (2012)",Comedy|Drama|Romance +95449,3.3333333333333335,Magic Mike (2012),Drama|Romance +95508,3.5,Cleanskin (2012),Crime|Drama|Thriller +95510,3.325,"Amazing Spider-Man, The (2012)",Action|Adventure|Sci-Fi|IMAX +95543,3.0,Ice Age 4: Continental Drift (2012),Adventure|Animation|Comedy +95558,3.3,Beasts of the Southern Wild (2012),Drama|Fantasy +95567,4.5,People Like Us (2012),Drama +95583,2.75,Savages (2012),Crime|Drama|Thriller +95654,3.5,Geri's Game (1997),Animation|Children +95720,2.5,"Watch, The (2012)",Comedy|Sci-Fi +95744,2.5,2 Days in New York (2012),Comedy +95752,4.5,Terminal USA (1993),Comedy +95761,4.0,Killer Joe (2011),Crime|Thriller +95858,4.5,For the Birds (2000),Animation|Children|Comedy +95873,3.8333333333333335,Ruby Sparks (2012),Comedy|Fantasy|Romance +95875,2.7222222222222223,Total Recall (2012),Action|Sci-Fi|Thriller +95949,3.5,"Immature, The (Immaturi) (2011)",Comedy +96020,4.0,Sidewalls (Medianeras) (2011),Drama +96075,5.0,Bleak House (2005),Drama +96079,3.9375,Skyfall (2012),Action|Adventure|Thriller|IMAX +96110,2.6666666666666665,"Campaign, The (2012)",Comedy +96114,2.0,Brake (2012),Crime|Thriller +96150,2.0,"Queen of Versailles, The (2012)",Documentary +96281,3.0,ParaNorman (2012),Adventure|Animation|Comedy +96314,3.5,Celeste and Jesse Forever (Celeste & Jesse Forever) (2012),Comedy|Drama|Romance +96373,4.0,Broken (2012),Drama +96417,2.5,Premium Rush (2012),Action|Thriller +96432,3.0,Lawless (2012),Crime|Drama +96448,2.5,Piranha 3DD (a.k.a. Piranha DD) (2012),Comedy|Horror +96467,4.25,Sleepwalk with Me (2012),Comedy|Drama +96488,3.75,Searching for Sugar Man (2012),Documentary +96490,2.0,"Possession, The (2012)",Horror|Thriller +96530,2.5,Conception (2011),Comedy|Romance +96563,3.5,Paradise Lost 3: Purgatory (2011),Documentary +96565,1.5,Bachelorette (2012),Comedy +96588,3.9285714285714284,Pitch Perfect (2012),Comedy|Musical +96590,2.5,"Cold Light of Day, The (2012)",Action|Thriller +96606,4.0,Samsara (2011),Documentary +96610,3.5,Looper (2012),Action|Crime|Sci-Fi +96616,2.25,That's My Boy (2012),Comedy +96634,1.0,Apartment 143 (2011),Horror|Thriller +96655,4.5,Robot & Frank (2012),Comedy|Drama|Sci-Fi +96667,2.5,Ai Weiwei: Never Sorry (2012),Documentary +96691,2.0,Resident Evil: Retribution (2012),Action|Horror|Sci-Fi|IMAX +96726,1.5,Lola Versus (2012),Comedy|Romance +96728,4.0,"Master, The (2012)",Drama +96737,3.2,Dredd (2012),Action|Sci-Fi +96792,3.5,Kismet (1955),Adventure|Comedy|Fantasy|Musical|Romance +96811,4.0,End of Watch (2012),Crime|Drama|Thriller +96815,3.0,V/H/S (2012),Horror|Thriller +96821,3.9285714285714284,"Perks of Being a Wallflower, The (2012)",Drama|Romance +96829,4.25,"Hunt, The (Jagten) (2012)",Drama +96832,5.0,Holy Motors (2012),Drama|Fantasy|Musical|Mystery|Sci-Fi +96849,3.0,Sparkle (2012),Drama|Musical +96861,2.375,Taken 2 (2012),Action|Crime|Drama|Thriller +96863,1.5,"Paperboy, The (2012)",Thriller +96911,4.5,"Royal Affair, A (Kongelig affære, En) (2012)",Drama|Romance +97057,5.0,Kon-Tiki (2012),Adventure|Documentary|Drama +97168,2.5,Marley (2012),Documentary +97188,2.75,Sinister (2012),Horror|Thriller +97225,3.2,Hotel Transylvania (2012),Animation|Children|Comedy +97254,3.5,Shakespeare-Wallah (1965),Drama +97304,3.9473684210526314,Argo (2012),Drama|Thriller +97306,4.0,Seven Psychopaths (2012),Comedy|Crime +97328,3.0,Liberal Arts (2012),Comedy|Drama +97393,3.5,"House I Live In, The (2012)",Documentary +97395,4.0,West of Memphis (2012),Documentary +97470,1.5,Catch .44 (2011),Action|Drama|Thriller +97593,3.5,Tony (2009),Drama|Horror|Thriller +97639,3.5,How to Survive a Plague (2012),Documentary +97673,4.5,56 Up (2012),Documentary +97742,2.0,Alex Cross (2012),Action|Crime|Mystery|Thriller +97744,4.5,"Ambassador, The (Ambassadøren) (2011)",Documentary +97752,3.4285714285714284,Cloud Atlas (2012),Drama|Sci-Fi|IMAX +97757,2.0,'Hellboy': The Seeds of Creation (2004),Action|Adventure|Comedy|Documentary|Fantasy +97817,4.0,Pumping Iron II: The Women (1985),Documentary +97826,5.0,"Patience Stone, The (2012)",Drama|War +97836,1.75,Here Comes the Boom (2012),Action|Comedy +97858,2.0,Mental (2012),Comedy|Drama +97860,3.0,Killing Them Softly (2012),Crime|Drama|Thriller +97866,4.0,"Imposter, The (2012)",Documentary +97870,4.0,"Sessions, The (Surrogate, The) (2012)",Drama +97895,3.5,What Richard Did (2012),Drama +97913,3.526315789473684,Wreck-It Ralph (2012),Animation|Comedy +97921,3.6818181818181817,Silver Linings Playbook (2012),Comedy|Drama +97923,3.3333333333333335,Flight (2012),Drama +97936,3.0,Anna Karenina (2012),Drama +97938,3.772727272727273,Life of Pi (2012),Adventure|Drama|IMAX +97957,4.5,Excision (2012),Crime|Drama|Horror|Thriller +97994,3.5,Union Square (2011),Drama +98000,4.0,Student of the Year (2012),Comedy|Romance +98056,3.5,Amour (2012),Drama|Romance +98122,2.25,Indie Game: The Movie (2012),Documentary +98126,5.0,Capital (Le capital) (2012),Drama +98154,3.4285714285714284,Lincoln (2012),Drama|War +98160,1.5,Nature Calls (2012),Comedy +98175,1.5,Vamps (2012),Comedy|Horror|Romance +98230,3.5,10 Years (2011),Comedy|Drama|Romance +98243,3.3,Rise of the Guardians (2012),Adventure|Animation|Children|Fantasy|IMAX +98279,3.0,"Fantastic Fear of Everything, A (2012)",Comedy +98296,2.0,Deadfall (2012),Crime|Drama|Thriller +98441,4.0,Rebecca of Sunnybrook Farm (1938),Children|Comedy|Drama|Musical +98458,2.0,Baby Take a Bow (1934),Children|Comedy|Drama +98473,3.5,"Sleeping Car Murder, The (Compartiment tueurs) (1965)",Drama|Mystery|Thriller +98491,4.75,Paperman (2012),Animation|Comedy|Romance +98585,3.0,Hitchcock (2012),Drama +98587,5.0,Caesar Must Die (Cesare deve morire) (2012),Drama +98604,4.0,From Up on Poppy Hill (Kokuriko-zaka kara) (2011),Animation|Drama|Romance +98607,3.75,Redline (2009),Action|Animation|Sci-Fi +98611,3.0,Just Around the Corner (1938),Comedy|Musical +98803,3.0,Little Miss Broadway (1938),Drama|Musical +98809,3.52,"Hobbit: An Unexpected Journey, The (2012)",Adventure|Fantasy|IMAX +98829,4.0,"Evil Cult, The (Lord of the Wu Tang) (Yi tian tu long ji: Zhi mo jiao jiao zhu) (1993)",Action|Fantasy +98836,2.0,Hyde Park on Hudson (2012),Comedy|Drama +98913,4.0,Violeta Went to Heaven (Violeta se fue a los cielos) (2011),Drama +98933,5.0,Yossi (Ha-Sippur Shel Yossi) (2012),Drama|Romance +98961,3.590909090909091,Zero Dark Thirty (2012),Action|Drama|Thriller +98963,5.0,Neighbouring Sounds (O som ao redor) (2012),Drama|Thriller +99007,3.2142857142857144,Warm Bodies (2013),Comedy|Horror|Romance +99030,5.0,Wrong (2012),Comedy|Drama +99085,2.5,Our Little Girl (1935),Comedy|Drama|Romance +99089,4.0,Poor Little Rich Girl (1936),Adventure|Musical|Romance +99106,2.5,"Guilt Trip, The (2012)",Comedy +99112,2.9375,Jack Reacher (2012),Action|Crime|Thriller +99114,3.977272727272727,Django Unchained (2012),Action|Drama|Western +99117,2.125,This Is 40 (2012),Drama +99145,4.0,"Impossible, The (Imposible, Lo) (2012)",Drama|Thriller +99149,3.3333333333333335,"Misérables, Les (2012)",Drama|Musical|Romance|IMAX +99220,3.0,Quartet (2012),Comedy|Drama +99270,2.5,Stand Up and Cheer! (1934),Comedy|Musical +99273,2.5,Stowaway (1936),Adventure|Musical +99276,2.5,Susannah of the Mounties (1939),Drama +99415,2.0,Parental Guidance (2012),Comedy +99437,3.0,John Dies at the End (2012),Comedy|Fantasy|Horror +99468,2.5,"Central Park Five, The (2012)",Documentary +99470,1.5,"Collection, The (2012)",Action|Horror|Thriller +99574,3.0,Promised Land (2012),Drama +99615,4.0,Role/Play (2010),Drama +99669,2.5,Aftermath (1994),Horror +99675,4.0,Eat Sleep Die (Äta sova dö) (2012),Drama +99728,3.375,Gangster Squad (2013),Action|Crime|Drama +99741,3.5,"Company You Keep, The (2012)",Thriller +99764,5.0,It's Such a Beautiful Day (2012),Animation|Comedy|Drama|Fantasy|Sci-Fi +99795,4.5,Whores' Glory (2011),Documentary +99811,4.0,Beware of Mr. Baker (2012),Documentary +99839,4.0,Paul Williams Still Alive (2011),Comedy|Documentary|Musical +99846,3.0,Everything or Nothing: The Untold Story of 007 (2012),Documentary +99912,2.5,Mama (2013),Horror +99917,2.0,Upstream Color (2013),Romance|Sci-Fi|Thriller +99992,3.0,Shadow Dancer (2012),Crime|Drama|Thriller +100017,3.0,Keep the Lights On (2012),Drama +100032,2.0,Beauty Is Embarrassing (2012),Documentary +100034,4.0,Girl Model (2011),Documentary +100083,1.5,Movie 43 (2013),Comedy +100106,4.5,"Pervert's Guide to Ideology, The (2012)",Documentary +100159,3.5,Sightseers (2012),Comedy +100163,2.25,Hansel & Gretel: Witch Hunters (2013),Action|Fantasy|Horror|IMAX +100272,4.0,Snow White (Blancanieves) (2012),Drama +100304,3.0,"Liability, The (2012)",Action|Thriller +100326,2.5,Stand Up Guys (2012),Comedy|Crime +100365,2.5,Call Me Kuchu (2012),Documentary +100383,3.5,Side Effects (2013),Crime|Drama|Mystery|Thriller +100390,1.5,Identity Thief (2013),Comedy|Crime +100487,2.25,Beautiful Creatures (2013),Drama|Fantasy|Romance +100498,1.875,"Good Day to Die Hard, A (2013)",Action|Crime|Thriller|IMAX +100517,3.0,"World Before Her, The (2012)",Documentary +100527,4.0,Safe Haven (2013),Drama|Mystery|Romance +100556,4.125,"Act of Killing, The (2012)",Documentary +100581,2.3333333333333335,Room 237 (2012),Documentary +100714,3.8333333333333335,Before Midnight (2013),Drama|Romance +100745,2.25,TPB AFK: The Pirate Bay Away from Keyboard (2013),Documentary +100843,4.5,Oh Boy (A Coffee in Berlin) (2012),Comedy|Drama +101025,2.5,Jack the Giant Slayer (2013),Adventure|Fantasy|IMAX +101070,3.0,Wadjda (2012),Drama +101076,2.5,G.I. Joe: Retaliation (2013),Action|Adventure|Sci-Fi|Thriller|IMAX +101088,2.0,Stoker (2013),Drama|Mystery|Thriller +101106,3.0,Sound City (2013),Documentary +101112,1.625,Oz the Great and Powerful (2013),Action|Adventure|Fantasy|IMAX +101142,3.125,"Croods, The (2013)",Adventure|Animation|Comedy +101283,2.5,"Incredible Burt Wonderstone, The (2013)",Comedy +101285,3.1666666666666665,Spring Breakers (2013),Comedy|Crime|Drama +101360,1.5,"Call, The (2013)",Drama|Thriller +101362,3.1,Olympus Has Fallen (2013),Action|Thriller +101415,2.75,"First Time, The (2012)",Comedy|Drama|Romance +101525,3.9,"Place Beyond the Pines, The (2012)",Crime|Drama +101529,2.0,"Brass Teapot, The (2012)",Comedy|Fantasy|Thriller +101531,1.75,Phil Spector (2013),Drama +101577,1.6666666666666667,"Host, The (2013)",Action|Adventure|Romance +101612,2.1666666666666665,Admission (2013),Comedy|Romance +101741,4.0,Trance (2013),Crime|Thriller +101850,5.0,Death on the Staircase (Soupçons) (2004),Crime|Documentary +101864,3.2,Oblivion (2013),Action|Adventure|Sci-Fi|IMAX +101884,1.5,Dark Tide (2012),Adventure|Drama|Thriller +101895,3.1666666666666665,42 (2013),Drama +101904,3.5,Happy (2011),Documentary|Drama +101947,3.5,From the Sky Down (2011),Documentary +101962,5.0,Wolf Children (Okami kodomo no ame to yuki) (2012),Animation|Fantasy +102033,3.0,Pain & Gain (2013),Action|Comedy|Crime +102123,3.5,This Is the End (2013),Action|Comedy +102125,3.5,Iron Man 3 (2013),Action|Sci-Fi|Thriller|IMAX +102194,3.7,Mud (2012),Adventure|Crime|Drama +102378,1.5,Syrup (2013),Comedy|Drama +102396,3.5,"Woman in the Fifth, The (Femme du Vème, La) (2011)",Drama|Mystery|Thriller +102407,2.875,"Great Gatsby, The (2013)",Drama +102445,3.775,Star Trek Into Darkness (2013),Action|Adventure|Sci-Fi|IMAX +102481,2.8333333333333335,"Internship, The (2013)",Comedy +102588,4.0,Stories We Tell (2012),Documentary +102666,5.0,Ivan Vasilievich: Back to the Future (Ivan Vasilievich menyaet professiyu) (1973),Adventure|Comedy +102684,4.0,Only God Forgives (2013),Drama|Thriller +102686,2.0,"Hangover Part III, The (2013)",Comedy +102716,3.25,"Fast & Furious 6 (Fast and the Furious 6, The) (2013)",Action|Crime|Thriller|IMAX +102720,3.0,Epic (2013),Adventure|Animation|Fantasy +102753,5.0,"Past, The (Le passé) (2013)",Drama|Mystery|Romance +102800,3.625,Frances Ha (2012),Comedy|Drama +102819,3.6666666666666665,Behind the Candelabra (2013),Drama +102880,1.2,After Earth (2013),Action|Adventure|Sci-Fi|IMAX +102903,3.1,Now You See Me (2013),Crime|Mystery|Thriller +102905,3.0,Lovelace (2013),Drama +102993,3.75,"Way, Way Back, The (2013)",Comedy|Drama +102995,2.0,Foxfire (2012),Drama +103042,2.9545454545454546,Man of Steel (2013),Action|Adventure|Fantasy|Sci-Fi|IMAX +103048,3.6666666666666665,"Kings of Summer, The (2013)",Comedy +103107,4.0,20 Feet from Stardom (Twenty Feet from Stardom) (2013),Documentary +103137,3.0,"Bling Ring, The (2013)",Crime|Drama +103141,3.5714285714285716,Monsters University (2013),Adventure|Animation|Comedy +103210,3.5,Fullmetal Alchemist: The Sacred Star of Milos (2011),Action|Adventure|Animation +103221,2.5,Not Suitable for Children (2012),Comedy|Romance +103228,3.125,Pacific Rim (2013),Action|Adventure|Sci-Fi|IMAX +103249,2.6875,World War Z (2013),Action|Drama|Horror|IMAX +103253,2.892857142857143,Elysium (2013),Action|Drama|Sci-Fi|IMAX +103279,3.5,What Maisie Knew (2012),Drama +103299,3.25,American Mary (2012),Horror|Thriller +103335,3.375,Despicable Me 2 (2013),Animation|Children|Comedy|IMAX +103339,2.0,White House Down (2013),Action|Drama|Thriller|IMAX +103341,3.55,"World's End, The (2013)",Action|Comedy|Sci-Fi +103372,1.8333333333333333,"Heat, The (2013)",Action|Comedy|Crime +103384,2.1666666666666665,"Lone Ranger, The (2013)",Action|Adventure|Western|IMAX +103444,4.5,Woody Allen: A Documentary (2012),Documentary +103502,1.5,"Knot, The (2012)",Comedy|Romance +103539,3.75,The Spectacular Now (2013),Comedy|Drama|Romance +103543,2.0,"Lifeguard, The (2013)",Comedy|Drama +103624,3.875,Fruitvale Station (2013),Drama +103655,1.1666666666666667,R.I.P.D. (2013),Action|Comedy|Fantasy +103671,2.5,Joker (2012),Comedy +103688,2.875,"Conjuring, The (2013)",Horror|Thriller +103731,5.0,"Angel Named Billy, An (2007)",Drama +103755,2.5,Turbo (2013),Adventure|Animation|Children|Comedy|Fantasy +103772,3.0,"Wolverine, The (2013)",Action|Adventure|Fantasy|Sci-Fi +103801,2.5,Drinking Buddies (2013),Comedy|Drama|Romance +103810,3.0,Red 2 (2013),Action|Comedy|Crime|Thriller +103819,3.0,Coffee Town (2013),Comedy +103865,2.0,Revenge for Jolly! (2012),Comedy|Drama +103883,2.6666666666666665,2 Guns (2013),Action|Comedy|Crime +103980,3.75,Blue Jasmine (2013),Drama +103984,2.0,"Great Beauty, The (Grande Bellezza, La) (2013)",Comedy|Drama +104074,3.0,Percy Jackson: Sea of Monsters (2013),Adventure|Children|Fantasy +104076,1.5,"Smurfs 2, The (2013)",Animation|Children|Comedy +104078,4.0,Alan Partridge: Alpha Papa (2013),Comedy +104119,5.0,"Forsyte Saga, The (1967)",Drama +104211,3.0,We're the Millers (2013),Comedy|Crime +104218,2.5,Grown Ups 2 (2013),Comedy +104241,2.3333333333333335,Kick-Ass 2 (2013),Action|Comedy|Crime +104243,2.9,Riddick (2013),Action|Sci-Fi|Thriller|IMAX +104245,2.5,Planes (2013),Adventure|Animation|Comedy +104272,3.0,Blackfish (2013),Documentary +104283,4.5,"Wind Rises, The (Kaze tachinu) (2013)",Animation|Drama|Romance +104303,3.0,Jobs (2013),Drama +104312,3.0,"Mortal Instruments: City of Bones, The (2013)",Action|Adventure|Drama|IMAX +104321,2.5,Touchy Feely (2013),Drama +104337,4.0,Lee Daniels' The Butler (2013),Drama +104339,4.0,In a World... (2013),Comedy +104374,4.033333333333333,About Time (2013),Drama|Fantasy|Romance +104441,3.5,"Frozen Ground, The (2013)",Crime|Drama|Thriller +104457,3.5,You're Next (2011),Horror|Thriller +104590,4.0,Tidal Wave (2009),Drama +104595,4.0,Family Band: The Cowsills Story (2011) ,Documentary +104597,3.5,"Chicago 8, The (2011)",Drama +104662,1.5,"First Nudie Musical, The (1976)",Comedy|Musical +104726,3.0,Koch (2012),Documentary +104757,4.0,Evocateur: The Morton Downey Jr. Movie (2012),Documentary +104760,1.0,Getaway (2013),Action|Crime +104841,3.7413793103448274,Gravity (2013),Action|Sci-Fi|IMAX +104863,4.0,What If (2013),Comedy|Drama|Romance +104879,3.4,Prisoners (2013),Drama|Mystery|Thriller +104881,4.0,"Out of the Furnace (Dust to Dust) (Low Dweller, The) (2013)",Drama|Thriller +104906,2.5,Austenland (2013),Comedy|Romance +104913,4.363636363636363,Rush (2013),Action|Drama +104925,3.6666666666666665,"Family, The (2013)",Action|Comedy|Crime +104944,4.25,Short Term 12 (2013),Drama +105037,2.0,"To Do List, The (2013)",Comedy +105121,1.0,Inescapable (2012),Action|Drama|War +105197,4.375,Nebraska (2013),Adventure|Drama +105211,3.5,Enough Said (2013),Comedy|Drama|Romance +105213,3.2,Don Jon (2013),Comedy|Drama|Romance +105246,4.25,Mood Indigo (L'écume des jours) (2013),Drama|Fantasy +105254,3.0,Crystal Fairy & the Magical Cactus and 2012 (2013),Adventure|Comedy +105351,1.5,Runner Runner (2013),Crime|Drama|Thriller +105355,4.5,Blue Is the Warmest Color (La vie d'Adèle) (2013),Drama|Romance +105429,4.0,Inequality for All (2013),Documentary +105468,4.0,Cloudy with a Chance of Meatballs 2 (2013),Animation|Children|Comedy|Fantasy +105504,4.2,Captain Phillips (2013),Adventure|Drama|Thriller|IMAX +105585,2.0,Machete Kills (Machete 2) (2013),Action|Crime|Thriller +105593,4.0,Filth (2013),Comedy|Crime|Drama +105715,2.0,Just Wright (2010),Comedy|Romance +105731,3.5,Carrie (2013),Drama|Horror +105755,1.3333333333333333,"Counselor, The (2013)",Crime|Drama|Thriller +105769,4.5,"Congress, The (2013)",Animation|Sci-Fi +105844,3.9583333333333335,12 Years a Slave (2013),Drama +105954,3.25,All Is Lost (2013),Action|Adventure|Drama +106002,3.409090909090909,Ender's Game (2013),Action|Adventure|Sci-Fi|IMAX +106004,3.5,Maniac (1963),Crime|Horror|Mystery|Romance|Thriller +106011,4.5,"Blue Umbrella, The (2013)",Animation +106022,4.0,Toy Story of Terror (2013),Animation|Children|Comedy +106062,3.0,Jackass Presents: Bad Grandpa (2013),Comedy +106072,3.1818181818181817,Thor: The Dark World (2013),Action|Adventure|Fantasy|IMAX +106100,3.880952380952381,Dallas Buyers Club (2013),Drama +106111,1.0,Marc Maron: Thinky Pain (2013),Comedy +106144,4.0,"Selfish Giant, The (2013)",Drama +106204,3.0,Pieta (2013),Drama +106236,3.0,Somm (2012),Documentary +106330,1.75,Last Vegas (2013),Comedy|Drama|Romance +106332,3.6666666666666665,Muscle Shoals (2013),Documentary +106397,2.5,Stephen Tobolowsky's Birthday Party (2005),Comedy|Documentary|Drama +106438,4.083333333333333,Philomena (2013),Comedy|Drama +106441,4.25,"Book Thief, The (2013)",Children|Drama|War +106452,3.5,Ida (2013),Drama +106471,5.0,One Piece Film: Strong World (2009),Action|Adventure|Animation|Comedy|Fantasy +106473,3.5,One Piece Film Z (2012),Action|Adventure|Animation|Fantasy +106487,3.2884615384615383,The Hunger Games: Catching Fire (2013),Action|Adventure|Sci-Fi|IMAX +106489,3.909090909090909,"Hobbit: The Desolation of Smaug, The (2013)",Adventure|Fantasy|IMAX +106491,2.6666666666666665,47 Ronin (2013),Action|Adventure|Fantasy +106540,4.0,Delivery Man (2013),Comedy +106542,1.5,Charlie Countryman (2013),Action|Comedy|Romance +106696,4.041666666666667,Frozen (2013),Adventure|Animation|Comedy|Fantasy|Musical|Romance +106762,4.0,Trigun: Badlands Rumble (2010),Action|Animation|Sci-Fi|Western +106766,3.75,Inside Llewyn Davis (2013),Drama +106782,4.120689655172414,"Wolf of Wall Street, The (2013)",Comedy|Crime|Drama +106839,3.5,Mandela: Long Walk to Freedom (2013),Drama +106870,3.0,Grave Encounters 2 (2012),Horror +106883,1.5,All is Bright (2013),Comedy|Drama +106916,3.375,American Hustle (2013),Crime|Drama +106918,3.5714285714285716,"Secret Life of Walter Mitty, The (2013)",Adventure|Comedy|Drama +106920,4.08,Her (2013),Drama|Romance|Sci-Fi +107042,4.0,Six by Sondheim (2013),Documentary +107069,3.5,Lone Survivor (2013),Action|Drama|Thriller|War +107081,4.5,Zatoichi on the Road (Zatôichi kenka-tabi) (Zatôichi 5) (1963),Action|Drama +107083,4.5,Geography Club (2013),Comedy|Drama|Romance +107141,3.25,Saving Mr. Banks (2013),Comedy|Drama +107314,4.0,Oldboy (2013),Action|Drama|Mystery +107348,2.7222222222222223,Anchorman 2: The Legend Continues (2013),Comedy +107382,3.0,Whoopi Goldberg Presents Moms Mabley (2013),Documentary +107406,3.5714285714285716,Snowpiercer (2013),Action|Drama|Sci-Fi +107412,5.0,"Kidnapping, Caucasian Style (Kavkazskaya plennitsa) (1967)",Comedy|Romance +107447,5.0,Wrong Cops (2013),Comedy|Crime +107516,3.5,Punk's Dead: SLC Punk! 2 (2014),Comedy +107649,5.0,Borgman (2013),Thriller +107702,1.5,Grudge Match (2013),Comedy +107769,2.5,Paranormal Activity: The Marked Ones (2014),Horror|Thriller +107771,3.5,Only Lovers Left Alive (2013),Drama|Horror|Romance +107910,4.5,I Know That Voice (2013),Documentary +107953,3.0,Dragon Ball Z: Battle of Gods (2013),Action|Animation|Fantasy|IMAX +108076,2.0,"Other Shore, The (2013)",Adventure|Documentary +108156,2.0,Ride Along (2014),Action|Comedy +108188,2.3333333333333335,Jack Ryan: Shadow Recruit (2014),Action|Drama|Thriller|IMAX +108190,2.727272727272727,Divergent (2014),Adventure|Romance|Sci-Fi|IMAX +108447,1.5,Atrocious (2010),Horror|Thriller +108506,2.5,Dark Touch (2013),Horror +108514,4.5,Yeh Jawaani Hai Deewani (2013),Comedy|Drama|Musical|Romance +108551,3.0,"String, The (Le fil) (2009)",Drama +108601,2.0,Drift (2013),Drama +108689,0.5,"I, Frankenstein (2014)",Action|Fantasy|Sci-Fi|IMAX +108715,1.5,Better Living Through Chemistry (2014),Comedy|Drama +108727,4.166666666666667,Nymphomaniac: Volume I (2013),Drama +108729,2.25,Enemy (2013),Mystery|Thriller +108873,3.5,"Same Love, Same Rain (El mismo amor, la misma lluvia) (1999)",Comedy|Drama|Romance +108928,2.3333333333333335,"Monuments Men, The (2014)",Action|Drama|War +108932,4.076923076923077,The Lego Movie (2014),Action|Adventure|Animation|Children|Comedy|Fantasy +108945,2.3333333333333335,RoboCop (2014),Action|Crime|Sci-Fi|IMAX +108949,2.5,"Art of the Steal, The (2013)",Crime +108981,4.0,Nymphomaniac: Volume II (2013),Drama|Mystery +109042,2.0,Knights of Badassdom (2013),Adventure|Comedy|Fantasy +109074,4.0,"Four, The (Si da ming bu) (2012)",Action|Crime|Fantasy +109183,4.0,Date and Switch (2014),Comedy +109187,1.75,"Zero Theorem, The (2013)",Drama|Fantasy|Sci-Fi +109191,1.5,Winter's Tale (2014),Drama|Fantasy|Mystery +109205,4.0,No Nukes (1980),Documentary|Musical +109295,2.0,Cold Comes the Night (2013),Crime|Drama|Thriller +109317,2.5,Someone Marry Barry (2014),Comedy +109359,4.0,Gerontophilia (2013),Comedy|Romance +109372,1.5,About Last Night (2014),Comedy|Romance +109374,4.0285714285714285,"Grand Budapest Hotel, The (2014)",Comedy|Drama +109483,3.0,That Awkward Moment (2014),Comedy|Romance +109487,4.151162790697675,Interstellar (2014),Sci-Fi|IMAX +109576,1.5,Welcome to the Jungle (2013),Comedy +109578,3.5833333333333335,Non-Stop (2014),Action|Mystery|Thriller +109673,2.1,300: Rise of an Empire (2014),Action|Drama|War|IMAX +109687,2.5,Particle Fever (2013),Documentary +109740,3.0,Obvious Child (2014),Comedy|Romance +109742,4.5,Cheap Thrills (2013),Comedy|Thriller +109846,3.0,Mr. Peabody & Sherman (2014),Adventure|Animation|Comedy +109848,3.1666666666666665,Under the Skin (2013),Horror|Sci-Fi|Thriller +109850,2.5,Need for Speed (2014),Action|Crime|Drama|IMAX +109853,2.0,Barefoot (2014),Comedy|Drama|Romance +109864,2.75,Veronica Mars (2014),Comedy|Crime|Drama +109895,3.25,Bad Words (2013),Comedy +110058,3.0,Broderskab (Brotherhood) (2009),Drama +110102,4.117647058823529,Captain America: The Winter Soldier (2014),Action|Adventure|Sci-Fi|IMAX +110110,3.0,Starred Up (2013),Drama +110127,2.25,Noah (2014),Adventure|Drama|IMAX +110194,4.0,Mistaken for Strangers (2013),Comedy|Documentary +110297,3.0,Muppets Most Wanted (2014),Adventure|Comedy|Crime +110352,4.5,Survival Island (Three) (2005),Adventure|Drama|Horror +110453,3.0,Draft Day (2014),Drama +110461,4.0,We Are the Best! (Vi är bäst!) (2013),Children|Comedy|Drama +110501,3.8333333333333335,The Raid 2: Berandal (2014),Action|Crime|Thriller +110553,2.5,The Amazing Spider-Man 2 (2014),Action|Sci-Fi|IMAX +110586,4.5,Calvary (2014),Comedy|Drama +110591,2.8333333333333335,Oculus (2013),Horror +110611,2.5,Cold in July (2014),Drama|Thriller +110655,2.5,Rio 2 (2014),Adventure|Animation|Children|Comedy +110730,2.111111111111111,Transcendence (2014),Drama|Sci-Fi|IMAX +110748,2.5,Wake Wood (2010) ,Drama|Horror|Mystery +110752,4.5,Mondo Hollywood (1967),Documentary +110771,2.0,"Other Woman, The (2014)",Comedy|Romance +110826,1.5,Brick Mansions (2014),Action|Crime|Drama +110858,1.5,Firstborn (1984),Drama|Thriller +110882,3.25,Locke (2013),Drama +111113,3.125,Neighbors (2014),Comedy +111235,3.5,Jodorowsky's Dune (2013),Documentary|Sci-Fi +111360,2.2857142857142856,Lucy (2014),Action|Sci-Fi +111362,3.7916666666666665,X-Men: Days of Future Past (2014),Action|Adventure|Sci-Fi +111364,2.9285714285714284,Godzilla (2014),Action|Adventure|Sci-Fi|IMAX +111384,3.75,Blue Ruin (2013),Thriller +111443,3.3333333333333335,Chef (2014),Comedy +111617,2.1666666666666665,Blended (2014),Comedy +111622,3.7,Begin Again (2013),Comedy|Romance +111624,3.5,Kelly & Cal (2014),Comedy|Drama +111659,3.25,Maleficent (2014),Action|Adventure|Children|IMAX +111663,1.5,Zombeavers (2014),Action|Comedy|Horror +111680,1.5,At Middleton (2013),Comedy|Romance +111743,2.8333333333333335,A Million Ways to Die in the West (2014),Comedy|Western +111759,3.9423076923076925,Edge of Tomorrow (2014),Action|Sci-Fi|IMAX +111781,3.5714285714285716,Mission: Impossible - Rogue Nation (2015),Action|Adventure|Thriller +111913,3.0,Lilting (2014),Drama +111921,3.9166666666666665,The Fault in Our Stars (2014),Drama|Romance +111931,2.0,Raze (2013),Action|Horror +112062,4.0,Camille Claudel 1915 (2013),Drama +112070,4.0,Maps to the Stars (2014),Drama +112112,2.0,Back in the Day (2014),Comedy +112138,3.875,22 Jump Street (2014),Action|Comedy|Crime +112171,2.6,"Equalizer, The (2014)",Action|Crime|Thriller +112175,4.125,How to Train Your Dragon 2 (2014),Action|Adventure|Animation +112183,3.8,Birdman: Or (The Unexpected Virtue of Ignorance) (2014),Comedy|Drama +112277,1.5,Haunt (2013),Horror|Mystery +112290,3.357142857142857,Boyhood (2014),Drama +112303,1.5,Think Like a Man Too (2014),Comedy|Romance +112334,3.5,"Internet's Own Boy: The Story of Aaron Swartz, The (2014)",Documentary +112370,2.1,Transformers: Age of Extinction (2014),Action|Adventure|Sci-Fi +112399,4.5,Finding Vivian Maier (2013),Documentary +112421,4.166666666666667,Frank (2014),Comedy|Drama|Mystery +112450,2.0,They Came Together (2014),Comedy|Romance +112460,2.0,Planes: Fire & Rescue (2014),Adventure|Animation|Comedy +112497,1.0,Tammy (2014),Comedy +112552,3.875,Whiplash (2014),Drama +112556,3.72,Gone Girl (2014),Drama|Thriller +112577,5.0,Willie & Phil (1980),Comedy|Drama|Romance +112582,4.0,Life Itself (2014),Documentary +112623,3.5,Dawn of the Planet of the Apes (2014),Sci-Fi +112653,4.0,"Battered Bastards of Baseball, The (2014)",Documentary +112655,2.5,No One Lives (2012),Horror|Thriller +112689,2.5,Miss Violence (2013),Drama|Mystery +112735,4.5,Charlie's Country (2013),Drama +112749,2.0,And So It Goes (2014),Comedy|Drama|Romance +112767,4.0,Premature (2014),Comedy +112788,1.25,Sex Tape (2014),Comedy +112804,3.0,I Origins (2014),Drama|Sci-Fi +112818,2.5,"Purge: Anarchy, The (2014)",Action|Horror|Thriller +112850,2.5,Words and Pictures (2013),Comedy|Drama|Romance +112852,3.9864864864864864,Guardians of the Galaxy (2014),Action|Adventure|Sci-Fi +112897,3.5,The Expendables 3 (2014),Action|Adventure +112911,2.75,Hercules (2014),Action|Adventure +112921,4.0,Once My Mother (2014),Documentary +112940,2.25,A Most Wanted Man (2014),Thriller +113064,3.75,"Trip to Italy, The (2014)",Comedy|Drama +113186,3.0,Felony (2013),Thriller +113207,4.0,Get on Up (2014),Drama|Musical +113220,3.0,"Dog, The (2013)",Documentary +113225,3.0,Magic in the Moonlight (2014),Comedy|Drama|Romance +113252,3.5,Housebound (2014),Comedy|Horror|Thriller +113275,3.5,The Hundred-Foot Journey (2014),Comedy|Drama +113345,1.5,Jupiter Ascending (2015),Action|Adventure|Sci-Fi +113348,2.1666666666666665,Teenage Mutant Ninja Turtles (2014),Action|Adventure|Comedy +113378,2.1666666666666665,"Giver, The (2014)",Drama|Sci-Fi +113416,1.5,Revenge of the Green Dragons (2014),Action|Crime|Drama +113453,2.3333333333333335,Let's Be Cops (2014),Comedy|Crime +113532,3.5,"Inbetweeners 2, The (2014)",Comedy +113565,3.0,"Sacrament, The (2013)",Horror|Thriller +113573,3.0,Sin City: A Dame to Kill For (2014),Action|Crime|Thriller +113640,2.5,"Canal, The (2014)",Horror|Thriller +113705,2.75,"Two Days, One Night (Deux jours, une nuit) (2014)",Drama +113741,2.5,Coherence (2013),Drama|Mystery|Sci-Fi|Thriller +113780,3.0,"As Above, So Below (2014)",Horror|Thriller +113829,3.5,"One I Love, The (2014)",Comedy|Drama|Romance +113862,3.8333333333333335,"Guest, The (2014)",Thriller +113938,3.5,Nixon by Nixon: In His Own Words (2014),Documentary +114028,4.333333333333333,Pride (2014),Comedy|Drama +114044,2.5,Honeymoon (2014),Horror +114060,3.5,The Drop (2014),Crime|Drama|Thriller +114074,3.0,The Skeleton Twins (2014),Drama +114122,3.5,Dim Sum: A Little Bit of Heart (1985),Comedy +114180,2.857142857142857,"Maze Runner, The (2014)",Action|Mystery|Sci-Fi +114265,3.5,Laggies (2014),Comedy|Romance +114342,4.0,Force Majeure (Turist) (2014),Drama +114552,4.5,"Boxtrolls, The (2014)",Adventure|Animation|Children|Comedy|Fantasy +114601,2.75,This Is Where I Leave You (2014),Comedy|Drama +114635,4.0,"Look of Silence, The (2014)",Documentary +114662,2.7777777777777777,American Sniper (2014),Action|War +114670,3.25,Tusk (2014),Comedy|Drama|Horror +114762,1.5,Two Night Stand (2014),Comedy|Romance +114766,2.0,SS Experiment Love Camp (Lager SSadis Kastrat Kommandantur) (1976),Horror|War +114795,3.5,Dracula Untold (2014),Action|Drama|Fantasy +114818,2.5,Stretch (2014),Action|Comedy|Crime +114925,2.0,"Captive, The (2014)",Crime|Drama|Thriller +114935,3.4,Predestination (2014),Action|Mystery|Sci-Fi|Thriller +115122,4.375,What We Do in the Shadows (2014),Comedy|Horror +115147,4.0,The Best of Me (2014),Drama|Romance +115149,3.45,John Wick (2014),Action|Thriller +115151,2.0,Plastic (2014),Action|Crime +115170,3.1666666666666665,"Judge, The (2014)",Drama +115174,3.5,Love Is Strange (2014),Drama +115210,3.75,Fury (2014),Action|Drama|War +115216,3.5,"Salvation, The (2014)",Drama|Western +115231,3.75,St. Vincent (2014),Comedy +115502,3.5,"Rewrite, The (2014)",Comedy|Romance +115534,2.0,Ouija (2014),Horror +115569,3.9615384615384617,Nightcrawler (2014),Crime|Drama|Thriller +115617,4.095238095238095,Big Hero 6 (2014),Action|Animation|Comedy +115664,4.5,The Book of Life (2014),Adventure|Animation|Romance +115680,3.5,Time Lapse (2014),Crime|Drama|Sci-Fi|Thriller +115713,3.9423076923076925,Ex Machina (2015),Drama|Sci-Fi|Thriller +115881,2.0,9 (2005),Animation|Fantasy +115927,4.0,Doctor Strange (2007),Action|Animation|Children|Fantasy|Sci-Fi +116012,4.0,The Young Savages (1961),Crime|Drama +116136,2.5,Olive Kitteridge (2014),Drama +116161,2.6666666666666665,Foxcatcher (2014),Drama +116207,1.5,Zulu (2013),Crime|Drama|Thriller +116397,3.75,Stonehearst Asylum (2014),Thriller +116413,3.0,Life Partners (2014),Comedy|Romance +116419,1.5,Drive Hard (2014),Action|Comedy|Crime +116503,1.5,The Possession of Michael King (2014),Horror +116660,4.0,Free Fall (2013),Drama +116797,4.109375,The Imitation Game (2014),Drama|Thriller|War +116799,2.1666666666666665,Inherent Vice (2014),Comedy|Crime|Drama|Mystery|Romance +116823,2.9,The Hunger Games: Mockingjay - Part 1 (2014),Adventure|Sci-Fi|Thriller +116849,2.5,Sex Ed (2014),Comedy|Romance +116855,4.0,The Way He Looks (2014),Drama|Romance +116887,2.0,Exodus: Gods and Kings (2014),Action|Adventure|Drama +116897,4.666666666666667,Wild Tales (2014),Comedy|Drama|Thriller +116939,0.5,Werner - Beinhart! (1990),Action|Animation|Comedy +116977,2.6666666666666665,Dumb and Dumber To (2014),Comedy +116985,1.5,The Longest Week (2014),Comedy|Drama +117107,2.5,Miss Meadows (2014),Drama +117121,3.0,Dorothy Mills (2008),Drama|Horror|Mystery|Thriller +117123,3.0,Dear White People (2014),Comedy|Drama +117176,3.6666666666666665,The Theory of Everything (2014),Drama|Romance +117434,1.5,Starry Eyes (2014),Horror +117444,3.75,Song of the Sea (2014),Animation|Children|Fantasy +117456,3.5,Beyond the Lights (2014),Drama +117511,3.0,Hello Ladies: The Movie (2014),Comedy +117529,3.4444444444444446,Jurassic World (2015),Action|Adventure|Drama|Sci-Fi|Thriller +117533,3.5,Citizenfour (2014),Documentary +117590,2.0,Horrible Bosses 2 (2014),Comedy|Crime +117851,1.5,Penguins of Madagascar (2014),Adventure|Animation|Children|Comedy +117871,3.0,"Water Diviner, The (2014)",Action|Drama|War +117895,3.1666666666666665,Maze Runner: Scorch Trials (2015),Action|Thriller +118082,3.5,The Voices (2014),Comedy|Crime|Thriller +118105,4.0,Trailer Park Boys: Live at the North Pole (2014),Comedy +118248,1.5,Dying of the Light (2014),Drama|Thriller +118260,2.5,The Borderlands (2013),Horror|Mystery +118326,2.0,By the Gun (2014),Crime|Drama|Thriller +118334,2.0,Omen IV: The Awakening (1991),Horror|Mystery|Thriller +118354,3.0,Kill the Messenger (2014),Crime|Drama|Mystery|Thriller +118696,3.1,The Hobbit: The Battle of the Five Armies (2014),Adventure|Fantasy +118702,2.5,Unbroken (2014),Drama|War +118814,2.0,Playing It Cool (2014),Comedy|Romance +118880,4.0,"Girl Walks Home Alone at Night, A (2014)",Horror|Romance|Thriller +118898,4.0,A Most Violent Year (2014),Action|Crime|Drama|Thriller +118900,3.5,Wild (2014),Drama +118924,2.75,Top Five (2014),Comedy +118985,3.25,Big Eyes (2014),Drama +118997,2.625,Into the Woods (2014),Children|Comedy|Fantasy|Musical +119068,2.0,"Men, Women & Children (2014)",Comedy|Drama +119141,3.0,The Interview (2014),Action|Comedy +119145,3.6538461538461537,Kingsman: The Secret Service (2015),Action|Adventure|Comedy|Crime +119155,3.25,Night at the Museum: Secret of the Tomb (2014),Adventure|Children|Comedy|Fantasy +119655,1.0,Seventh Son (2014),Adventure|Children|Fantasy +120392,2.5,Comet (2014),Comedy|Drama|Romance|Sci-Fi +120466,2.6666666666666665,Chappie (2015),Action|Thriller +120635,1.0,Taken 3 (2015),Action|Crime|Thriller +120637,1.75,Blackhat (2015),Action|Crime|Drama|Mystery|Thriller +120783,2.5,Son of a Gun (2014),Action|Crime|Drama +120799,2.9285714285714284,Terminator Genisys (2015),Action|Adventure|Sci-Fi|Thriller +120805,5.0,Robin Williams: Weapons of Self Destruction (2009),Comedy +120821,4.5,The War at Home (1979),Documentary|War +121113,1.0,Shriek If You Know What I Did Last Friday the Thirteenth (2000),Comedy|Horror +121126,5.0,The Car (1977),Horror|Mystery|Thriller +121171,3.0,Red Army (2014),Documentary +121231,4.0,It Follows (2014),Horror +121491,4.5,Off Beat (2004),Drama|Romance +121618,3.0,The Great Gatsby (1926),Drama +122490,1.5,Wicked Blood (2014),Action|Drama|Thriller +122882,3.7903225806451615,Mad Max: Fury Road (2015),Action|Adventure|Sci-Fi|Thriller +122886,3.5172413793103448,Star Wars: Episode VII - The Force Awakens (2015),Action|Adventure|Fantasy|Sci-Fi|IMAX +122888,5.0,Ben-hur (2016),(no genres listed) +122890,4.0,Warcraft (2016),Action|Adventure|Fantasy +122892,3.8846153846153846,Avengers: Age of Ultron (2015),Action|Adventure|Sci-Fi +122900,3.7941176470588234,Ant-Man (2015),Action|Adventure|Sci-Fi +122902,2.0,Fantastic Four (2015),Action|Adventure|Fantasy|Sci-Fi +122904,3.388888888888889,Deadpool (2016),Action|Adventure|Comedy|Sci-Fi +122920,3.5714285714285716,Captain America: Civil War (2016),Action|Sci-Fi|Thriller +122924,3.0,X-Men: Apocalypse (2016),Action|Adventure|Fantasy|Sci-Fi +122932,2.0,Elsa & Fred (2014),Children|Comedy|Romance +123947,3.0,Cake (2014),Drama +124859,2.0,The Gambler (2014),Crime|Drama|Thriller +125916,0.5,Fifty Shades of Grey (2015),Drama|Romance +126006,3.5,Rudolph the Red-Nosed Reindeer (1948),Animation|Children|Fantasy +126106,3.5,Beastie Boys: Sabotage (1994),(no genres listed) +126420,1.5,American Heist (2015),Action +126430,5.0,The Pacific (2010),Action|Adventure|Drama|War +126548,3.0,The DUFF (2015),Comedy +127052,5.0,Operation 'Y' & Other Shurik's Adventures (1965),Comedy|Crime|Romance +127096,2.5,Project Almanac (2015),Sci-Fi|Thriller +127098,4.0,Louis C.K.: Live at The Comedy Store (2015),Comedy +127108,5.0,Brooklyn (2015),Drama|Romance +127114,4.0,The End of the Tour (2015),Drama +127124,4.0,I'll See You in My Dreams (2015),Comedy|Drama +127136,2.1666666666666665,True Story (2015),Drama|Mystery|Thriller +127152,4.25,Going Clear: Scientology and the Prison of Belief (2015),Documentary +127158,3.5,Tig (2015),Documentary +127164,4.5,"What Happened, Miss Simone? (2015)",Documentary +127178,3.5,99 Homes (2014),Drama +127194,2.0,The D Train (2015),Comedy +127198,3.125,Dope (2015),Comedy|Drama +127202,4.0,Me and Earl and the Dying Girl (2015),Drama +127204,3.0,The Overnight (2015),Comedy +127206,2.0,"People, Places, Things (2015)",Comedy +127319,1.5,The Loft (2014),Thriller +127728,5.0,Back Soon (2007),Drama|Romance +128360,4.0625,The Hateful Eight (2015),Western +128512,3.5,Paper Towns (2015),Drama|Mystery|Romance +128520,2.0,The Wedding Ringer (2015),Comedy +128592,1.0,The Boy Next Door (2015),Mystery|Thriller +128606,4.5,45 Years (2015),Drama +128616,4.0,As We Were Dreaming (2015),(no genres listed) +128620,5.0,Victoria (2015),Crime|Drama|Romance +129009,4.0,"Getting Go, the Go Doc Project (2013)",Drama +129191,4.0,The Clowns (1970),Comedy|Drama|Fantasy|Sci-Fi +129250,0.5,Superfast! (2015),(no genres listed) +129313,5.0,Reality (2014),Comedy +129354,3.5,Focus (2015),Comedy|Crime|Drama|Romance +129364,2.0,Every Thing Will Be Fine (2015),Drama +129428,3.0,The Second Best Exotic Marigold Hotel (2015),Comedy|Drama +129514,5.0,George Carlin: It's Bad for Ya! (2008),Comedy +129653,3.0,Ismael (2013),Drama +129657,1.0,Tracers (2015),Action +129659,3.5,"McFarland, USA (2015)",Drama +129737,2.0,Unfinished Business (2015),Comedy +129937,1.75,Run All Night (2015),Action|Crime|Drama|Thriller +130073,3.0,Cinderella (2015),Children|Drama|Fantasy|Romance +130083,2.0,Kidnapping Mr. Heineken (2015),Action|Crime|Drama|Thriller +130087,3.5,The Cobbler (2015),Comedy|Drama|Fantasy +130351,4.0,The Wrecking Crew (2008),Documentary +130448,0.5,Poltergeist (2015),Horror|Thriller +130450,1.5,Pan (2015),Adventure|Children|Fantasy +130452,3.0,While We're Young (2014),Comedy|Drama +130490,2.3333333333333335,Insurgent (2015),Action|Sci-Fi|Thriller +130520,4.0,Home (2015),Adventure|Animation|Children|Comedy|Fantasy|Sci-Fi +130522,5.0,The Brave Little Toaster Goes to Mars (1998),Animation|Children +130576,2.0,Midnight Special (2015),Drama|Sci-Fi +130580,3.5,The Disappearance of Eleanor Rigby: Her (2013),Drama +130628,4.0,Boys (2014),Drama +130634,2.25,Furious 7 (2015),Action|Crime|Thriller +130642,3.5,Backcountry (2014),Drama|Horror|Thriller +130682,3.5,Muck (2015),Horror +130960,3.5,The Conrad Boys (2006),Drama +130970,5.0,George Carlin: Life Is Worth Losing (2005),Comedy +130980,4.5,The Day That Lasted 21 Years (2012),Documentary +131013,2.5,Get Hard (2015),Comedy|Crime +131168,4.0,Phoenix (2014),Drama +131451,1.0,The Atticus Institute (2015),Horror +131714,1.5,Last Knights (2015),Action|Adventure +131724,4.5,The Jinx: The Life and Deaths of Robert Durst (2015),Documentary +131830,4.0,Samba (2014),Comedy|Drama +132046,3.0714285714285716,Tomorrowland (2015),Action|Adventure|Children|Mystery|Sci-Fi +132074,4.0,No No: A Dockumentary (2014),Documentary +132146,3.0,The Harvest (2013),Drama|Thriller +132157,2.0,Paul Blart: Mall Cop 2 (2015),Action|Comedy|Crime +132333,5.0,Seve (2014),Documentary|Drama +132462,1.0,Sword of Vengeance (2014),Action|Adventure|Drama +132480,3.0,The Age of Adaline (2015),Drama|Fantasy|Romance +132488,2.0,Lovesick (2014),Comedy|Romance +132496,3.5,Danny Collins (2015),Comedy|Drama +132618,1.5,Kite (2014),Action|Crime|Drama|Mystery|Thriller +132796,2.6666666666666665,San Andreas (2015),Action|Drama|Thriller +132888,3.5,Comedy Central Roast of James Franco (2013),Comedy +132952,4.0,Sarfarosh (1999),(no genres listed) +132961,3.0,Far from the Madding Crowd (2015),Drama +133195,2.0,Hitman: Agent 47 (2015),Action|Crime|Thriller +133281,2.0,Ricki and the Flash (2015),Comedy|Drama +133295,2.5,Cocaine Cowboys: Reloaded (2014),Documentary +133365,2.0,Partisan (2015),Drama|Thriller +133377,1.5,Infini (2015),Horror|Sci-Fi|Thriller +133419,2.9166666666666665,Pitch Perfect 2 (2015),Comedy +133545,1.0,Just Before I Go (2014),Comedy|Drama +133645,4.0,Carol (2015),Drama|Romance +133771,4.25,The Lobster (2015),Comedy|Romance|Sci-Fi +133782,2.0,Maggie (2015),Drama|Horror|Thriller +133798,1.5,Hot Pursuit (2015),Action|Comedy +133824,2.0,The Human Centipede III (Final Sequence) (2015),Horror +134025,3.0,Open Secret (2013),(no genres listed) +134130,4.1,The Martian (2015),Adventure|Drama|Sci-Fi +134158,1.5,Return to Sender (2015),Thriller +134170,3.4166666666666665,Kung Fury (2015),Action|Comedy|Fantasy|Sci-Fi +134246,3.0,Survivor (2015),Action|Thriller +134368,3.7,Spy (2015),Action|Comedy|Crime +134393,3.7,Trainwreck (2015),Comedy|Romance +134528,3.5,Aloha (2015),Comedy|Drama|Romance +134569,3.5,She's Funny That Way (2015),Comedy +134783,3.0,Entourage (2015),Comedy +134853,4.041666666666667,Inside Out (2015),Adventure|Animation|Children|Comedy|Drama|Fantasy +134859,3.5,The Wolfpack (2015),Documentary +134881,4.0,Love & Mercy (2014),Drama +135133,2.75,The Hunger Games: Mockingjay - Part 2 (2015),Adventure|Sci-Fi +135137,2.5,Pixels (2015),Action|Comedy|Sci-Fi +135264,4.0,Zenon: Girl of the 21st Century (1999),Adventure|Children|Comedy +135266,4.0,Zenon: The Zequel (2001),Adventure|Children|Comedy|Sci-Fi +135268,4.0,Zenon: Z3 (2004),Adventure|Children|Comedy +135436,3.0,The Secret Life of Pets (2016),Animation|Comedy +135508,3.5,A Deadly Adoption (2015),Comedy|Thriller +135518,2.8333333333333335,Self/less (2015),Action|Mystery|Sci-Fi|Thriller +135532,2.5,The Last Witch Hunter (2015),Action|Adventure|Fantasy +135536,3.0,Suicide Squad (2016),Action|Crime|Sci-Fi +135567,3.75,Independence Day: Resurgence (2016),Action|Adventure|Sci-Fi +135569,2.75,Star Trek Beyond (2016),Action|Adventure|Sci-Fi +135861,4.0,Ted 2 (2015),Comedy +135887,2.9,Minions (2015),Adventure|Animation|Children|Comedy +136016,4.5,The Good Dinosaur (2015),Adventure|Animation|Children|Comedy|Fantasy +136018,3.5,Black Mass (2015),Crime|Drama +136020,2.875,Spectre (2015),Action|Adventure|Crime +136305,1.0,Sharknado 3: Oh Hell No! (2015),Horror|Sci-Fi +136445,5.0,George Carlin: Back in Town (1996),Comedy +136447,5.0,George Carlin: You Are All Diseased (1999),Comedy +136449,5.0,Ghost in the Shell 2.0 (2008),Action|Animation|Sci-Fi +136562,2.5,Steve Jobs (2015),Drama +136592,1.5,Freaky Friday (1995),(no genres listed) +136598,2.5,Vacation (2015),Adventure|Comedy +136602,2.0,Creep (2014),Horror|Thriller +136654,1.5,The Face of an Angel (2015),Drama +136666,1.0,Search Party (2014),Comedy +136800,1.5,Robot Overlords (2014),Action|Adventure|Sci-Fi +136816,2.5,Bad Asses on the Bayou (2015),Action|Comedy +136864,2.4375,Batman v Superman: Dawn of Justice (2016),Action|Adventure|Fantasy|Sci-Fi +137337,3.5,Amy (2015),Documentary +137403,3.5,Swimming Upstream (2002),Drama +137595,3.0,Magic Mike XXL (2015),Comedy|Drama +137857,3.625,The Jungle Book (2016),Adventure|Drama|Fantasy +138036,3.4285714285714284,The Man from U.N.C.L.E. (2015),Action|Adventure|Comedy +138204,3.5,7 Days in Hell (2015),Comedy +138208,4.0,The Walk (2015),Adventure|Drama|Thriller +138258,3.0,Nasty Baby (2015),Drama +138546,1.5,The Opposite Sex (2014),Comedy +138696,5.0,Hands in the Air (2010),Comedy|Drama|Romance +138698,4.5,El vals de los inútiles (2014),Documentary +139116,5.0,Requiem For The Big East (2014),Documentary +139130,4.0,Afro Samurai (2007),Action|Adventure|Animation|Drama|Fantasy +139385,3.625,The Revenant (2015),Adventure|Drama +139415,3.0,Irrational Man (2015),Crime|Drama +139620,4.0,Everything's Gonna Be Great (1998),Adventure|Children|Comedy|Drama +139642,3.5,Southpaw (2015),Action|Drama +139644,3.4285714285714284,Sicario (2015),Crime|Drama|Mystery +139757,4.25,Best of Enemies (2015),Documentary +139855,2.0,Anomalisa (2015),Animation|Comedy|Fantasy +139915,2.0,How to Make Love Like an Englishman (2014),Comedy|Romance +140110,4.0,The Intern (2015),Comedy +140152,4.0,Dreamcatcher (2015),Children|Crime|Documentary +140174,3.9,Room (2015),Drama +140237,2.0,The Runner (2015),Drama +140247,4.0,The Gift (2015),Drama|Horror +140265,5.0,George Carlin: Jammin' in New York (1992),Comedy +140267,4.0,The Witch (2015),Horror +140523,2.5,"Visit, The (2015)",Comedy|Horror +140711,3.1666666666666665,American Ultra (2015),Action|Comedy|Sci-Fi|Thriller +140715,3.5,Straight Outta Compton (2015),Drama +140725,3.0,Cop Car (2015),Crime|Thriller +140739,5.0,Eighteen (2005),Drama +140741,5.0,Get Your Stuff (2000),Drama|Romance +140743,5.0,The Man I Love (1997),Drama +140745,5.0,10 Attitudes (2001),Comedy|Drama|Romance +140747,5.0,16 Wishes (2010),Children|Drama|Fantasy +140749,5.0,29th and Gay (2005),Comedy +140751,5.0,Almost Normal (2005),Comedy|Drama|Sci-Fi +140753,4.0,The Men Next Door (2012),(no genres listed) +140755,5.0,Long-Term Relationship (2006),Comedy|Romance +140757,4.0,3-Day Weekend (2008),Drama +140759,5.0,The Big Gay Musical (2009),Comedy|Drama|Romance +140761,5.0,The Biggest Fan (2002),Comedy|Romance +140763,5.0,Boy Crazy (2009),(no genres listed) +140816,3.5,Tangerine (2015),Comedy|Drama +140880,4.0,Fashion Victims (2007),Comedy +140928,1.3333333333333333,Joy (2015),Comedy|Drama +141124,5.0,FAQs (2005),Drama +141422,2.5,Suffragette (2015),Drama +141668,5.0,War Room (2015),Drama +141688,2.5,Legend (2015),Crime|Thriller +141718,3.5,Deathgasm (2015),Comedy|Horror +141749,4.0,The Danish Girl (2015),Drama +141866,4.0,Green Room (2015),(no genres listed) +141886,5.0,The Dress (1996),Comedy|Drama +141890,4.0,Beasts of No Nation (2015),Drama|War +141956,1.0,Contracted: Phase II (2015),Drama|Horror|Thriller +142068,5.0,Tiger Orange (2014),Drama +142192,3.5,Female on the Beach (1955),Crime|Drama|Mystery|Romance|Thriller +142240,5.0,Romeos (2011),Drama +142258,1.5,Listen to Me Marlon (2015),Documentary +142422,4.0,The Night Before (2015),Comedy +142448,3.5,Everest (2015),Adventure|Drama|Thriller +142488,3.8333333333333335,Spotlight (2015),Thriller +142507,3.0,Pawn Sacrifice (2015),Drama +142536,2.0,Burnt (2015),Drama +142997,3.5,Hotel Transylvania 2 (2015),Animation|Comedy +143255,1.5,Narcopolis (2014),Mystery|Sci-Fi|Thriller +143257,2.5,Ashby (2015),Comedy|Drama +143377,3.5,Glen Campbell: I'll Be Me (2014),Documentary|Drama +143385,3.5,Bridge of Spies (2015),Drama|Thriller +143410,2.0,Hyena Road,(no genres listed) +143472,1.5,Into the Grizzly Maze (2015),Action|Horror|Thriller +143657,2.0,The Invitation (2015),Horror|Thriller +143859,3.0,"Hail, Caesar! (2016)",Comedy +144620,4.0,Goosebumps (2015),Adventure|Comedy|Horror +144714,1.5,The Perfect Guy (2015),Drama|Thriller +144976,5.0,Bone Tomahawk (2015),Horror|Western +145150,3.0,The Dressmaker (2015),Comedy|Drama|Thriller +145307,2.5,Strictly Business (1991),Comedy|Romance +145775,3.0,Rubble Kings (2015),Documentary +145839,1.0,Concussion (2015),Drama +145935,4.0,"Peanuts Movie, The (2015)",Adventure|Animation|Children|Comedy +146309,4.0,The Boy and the Beast (2015),Action|Adventure|Animation +146443,3.0,Plan B (2009),Comedy|Drama|Romance +146501,2.5,Land of Storms (2014),Drama +146604,3.0,Naomi and Ely's No Kiss List (2015),Comedy|Drama|Romance +146656,4.166666666666667,Creed (2015),Drama +146682,3.5,Twinsters (2015),Documentary +146688,2.0,Solace (2015),Fantasy|Mystery|Thriller +147006,3.0,Bana Masal Anlatma (2015),Comedy|Drama +147010,4.0,Thou Gild'st the Even (2013),Drama|Fantasy|Romance +147037,5.0,Straight-Jacket (2004),Comedy +147426,3.5,İtirazım Var (2014),Action|Crime|Drama +147845,3.5,Manson Family Vacation (2015),Comedy|Drama|Thriller +148168,4.0,Pek Yakında (2014),Action|Comedy|Drama +148238,3.0,A Very Murray Christmas (2015),Comedy +148372,5.0,Schneider vs. Bax (2015),Comedy|Thriller +148626,3.6,"Big Short, The (2015)",Drama +148652,2.5,The Ridiculous 6 (2015),Comedy|Western +148881,5.0,World of Tomorrow (2015),Animation|Comedy +148888,3.0,Zoolander 2 (2016),Comedy +148956,4.0,How to Be Single (2016),Comedy|Romance +149352,3.0,Daddy's Home (2015),Comedy +149354,3.5,Sisters (2015),Children|Comedy +149406,4.333333333333333,Kung Fu Panda 3 (2016),Action|Adventure|Animation +149532,3.0,Marco Polo: One Hundred Eyes (2015),(no genres listed) +149572,3.0,A.R.O.G. (2008),Comedy|Fantasy +149590,2.5,Standoff (2016),Thriller +149606,4.5,Bajirao Mastani (2015),Romance|War +149612,2.0,Swelter (2014),Action|Drama|Thriller +149830,3.0,Pride and Prejudice and Zombies (2016),Comedy|Horror|Romance|Thriller +150401,3.0,Close Range (2015),Action|Crime +151307,4.5,The Lovers and the Despot,(no genres listed) +151639,2.5,The Boy (2016),Horror|Thriller +152017,5.0,Me Before You (2016),Drama|Romance +152025,2.5,SOMM: Into the Bottle (2016),Documentary +152057,0.5,Miles Ahead (2016),Drama +152077,3.7,10 Cloverfield Lane (2016),Thriller +152079,1.5,London Has Fallen (2016),Action|Crime|Thriller +152081,4.0,Zootopia (2016),Action|Adventure|Animation|Children|Comedy +152091,3.0,The Brothers Grimsby (2016),Comedy +152844,4.0,Demons (1971),Horror +153584,5.0,The Last Days of Emma Blank (2009),Comedy +155392,4.0,"Hello, My Name Is Doris (2016)",Drama +155611,4.0,Life Is Sacred (2014),Documentary +155820,1.0,Keanu (2016),Comedy +156025,5.0,Ice Age: The Great Egg-Scapade (2016),Adventure|Animation|Children|Comedy +156387,4.0,Sing Street (2016),Drama +156607,1.25,The Huntsman Winter's War (2016),Action|Adventure|Drama|Fantasy +156609,3.75,Neighbors 2: Sorority Rising (2016),Comedy +156726,3.5,Hush (2016),Thriller +157200,1.5,Money Monster (2016),Drama|Thriller +157296,3.3333333333333335,Finding Dory (2016),Adventure|Animation|Comedy +157407,1.5,I Am Wrath (2016),Action|Crime|Drama|Thriller +157667,1.5,Mother's Day (2016),Comedy +158238,3.75,The Nice Guys (2016),Crime|Mystery|Thriller +158314,4.5,Daniel Tosh: Completely Serious (2007),Comedy +158528,3.5,The Shallows (2016),Drama|Thriller +158956,4.0,Kill Command (2016),Action|Horror|Sci-Fi +159093,2.0,Now You See Me 2 (2016),Action|Comedy|Thriller +159462,3.0,The Video Dead (1987),Horror +159690,2.0,Teenage Mutant Ninja Turtles: Out of the Shadows (2016),Action|Adventure|Comedy +159755,1.0,Popstar: Never Stop Never Stopping (2016),Comedy +159858,3.75,The Conjuring 2 (2016),Horror +159972,0.5,Approaching the Unknown (2016),Drama|Sci-Fi|Thriller +160080,1.0,Ghostbusters (2016),Action|Comedy|Horror|Sci-Fi +160271,2.5,Central Intelligence (2016),Action|Comedy +160438,4.25,Jason Bourne (2016),Action +160440,1.5,The Maid's Room (2014),Thriller +160563,2.5,The Legend of Tarzan (2016),Action|Adventure +160565,2.0,The Purge: Election Year (2016),Action|Horror|Sci-Fi +160567,4.0,Mike & Dave Need Wedding Dates (2016),Comedy +160590,5.0,Survive and Advance (2013),(no genres listed) +160656,3.5,Tallulah (2016),Drama +160718,4.0,Piper (2016),Animation +161084,2.5,My Friend Rockefeller (2015),Documentary +161155,0.5,Sunspring (2016),Sci-Fi +161594,3.0,Kingsglaive: Final Fantasy XV (2016),Action|Adventure|Animation|Drama|Fantasy|Sci-Fi +161830,1.0,Body (2015),Drama|Horror|Thriller +161918,1.5,Sharknado 4: The 4th Awakens (2016),Action|Adventure|Horror|Sci-Fi +161944,5.0,The Last Brickmaker in America (2001),Drama +162542,5.0,Rustom (2016),Romance|Thriller +162672,3.0,Mohenjo Daro (2016),Adventure|Drama|Romance +163949,5.0,The Beatles: Eight Days a Week - The Touring Years (2016),Documentary diff --git a/unsupervised-predict-streamlit-teames2/resources/data/ratings.csv b/unsupervised-predict-streamlit-teames2/resources/data/ratings.csv new file mode 100644 index 00000000..1d469cee --- /dev/null +++ b/unsupervised-predict-streamlit-teames2/resources/data/ratings.csv @@ -0,0 +1,100005 @@ +userId,movieId,rating,timestamp +1,31,2.5,1260759144 +1,1029,3.0,1260759179 +1,1061,3.0,1260759182 +1,1129,2.0,1260759185 +1,1172,4.0,1260759205 +1,1263,2.0,1260759151 +1,1287,2.0,1260759187 +1,1293,2.0,1260759148 +1,1339,3.5,1260759125 +1,1343,2.0,1260759131 +1,1371,2.5,1260759135 +1,1405,1.0,1260759203 +1,1953,4.0,1260759191 +1,2105,4.0,1260759139 +1,2150,3.0,1260759194 +1,2193,2.0,1260759198 +1,2294,2.0,1260759108 +1,2455,2.5,1260759113 +1,2968,1.0,1260759200 +1,3671,3.0,1260759117 +2,10,4.0,835355493 +2,17,5.0,835355681 +2,39,5.0,835355604 +2,47,4.0,835355552 +2,50,4.0,835355586 +2,52,3.0,835356031 +2,62,3.0,835355749 +2,110,4.0,835355532 +2,144,3.0,835356016 +2,150,5.0,835355395 +2,153,4.0,835355441 +2,161,3.0,835355493 +2,165,3.0,835355441 +2,168,3.0,835355710 +2,185,3.0,835355511 +2,186,3.0,835355664 +2,208,3.0,835355511 +2,222,5.0,835355840 +2,223,1.0,835355749 +2,225,3.0,835355552 +2,235,3.0,835355664 +2,248,3.0,835355896 +2,253,4.0,835355511 +2,261,4.0,835355681 +2,265,5.0,835355697 +2,266,5.0,835355586 +2,272,3.0,835355767 +2,273,4.0,835355779 +2,292,3.0,835355492 +2,296,4.0,835355395 +2,300,3.0,835355532 +2,314,4.0,835356044 +2,317,2.0,835355551 +2,319,1.0,835355918 +2,339,3.0,835355492 +2,349,4.0,835355441 +2,350,4.0,835355697 +2,356,3.0,835355628 +2,357,3.0,835355749 +2,364,3.0,835355604 +2,367,3.0,835355619 +2,370,2.0,835355932 +2,371,3.0,835355968 +2,372,3.0,835356094 +2,377,3.0,835355710 +2,382,3.0,835356165 +2,405,2.0,835356246 +2,410,3.0,835355532 +2,454,4.0,835355604 +2,457,3.0,835355511 +2,468,4.0,835355790 +2,474,2.0,835355828 +2,480,4.0,835355643 +2,485,3.0,835355918 +2,497,3.0,835355880 +2,500,4.0,835355731 +2,508,4.0,835355860 +2,509,4.0,835355719 +2,515,4.0,835355817 +2,527,4.0,835355731 +2,537,4.0,835356199 +2,539,3.0,835355767 +2,550,3.0,835356109 +2,551,5.0,835355767 +2,552,3.0,835355860 +2,585,5.0,835355817 +2,586,3.0,835355790 +2,587,3.0,835355779 +2,588,3.0,835355441 +2,589,5.0,835355697 +2,590,5.0,835355395 +2,592,5.0,835355395 +2,593,3.0,835355511 +2,616,3.0,835355932 +2,661,4.0,835356141 +2,720,4.0,835355978 +3,60,3.0,1298861675 +3,110,4.0,1298922049 +3,247,3.5,1298861637 +3,267,3.0,1298861761 +3,296,4.5,1298862418 +3,318,5.0,1298862121 +3,355,2.5,1298861589 +3,356,5.0,1298862167 +3,377,2.5,1298923242 +3,527,3.0,1298862528 +3,588,3.0,1298922100 +3,592,3.0,1298923247 +3,593,3.0,1298921840 +3,595,2.0,1298923260 +3,736,3.5,1298932787 +3,778,4.0,1298863157 +3,866,3.0,1298861687 +3,1197,5.0,1298932770 +3,1210,3.0,1298921795 +3,1235,4.0,1298861628 +3,1271,3.0,1298861605 +3,1378,4.0,1298861658 +3,1580,3.5,1298922089 +3,1721,4.5,1298923236 +3,1884,4.0,1298863143 +3,2028,4.0,1298921862 +3,2318,4.0,1298861753 +3,2513,3.0,1298861789 +3,2694,3.0,1298862710 +3,2702,3.5,1298861796 +3,2716,3.0,1298924017 +3,2762,3.5,1298922057 +3,2841,4.0,1298861733 +3,2858,4.0,1298921825 +3,2959,5.0,1298862874 +3,3243,3.0,1298861968 +3,3510,4.0,1298861633 +3,3949,5.0,1298863174 +3,5349,3.0,1298923266 +3,5669,3.5,1298862672 +3,6377,3.0,1298922080 +3,7153,2.5,1298921787 +3,7361,3.0,1298922065 +3,8622,3.5,1298861650 +3,8636,3.0,1298932766 +3,27369,3.5,1298862555 +3,44191,3.5,1298932740 +3,48783,4.5,1298862361 +3,50068,4.5,1298862467 +3,58559,3.0,1298922071 +3,84236,4.0,1298922130 +4,10,4.0,949810645 +4,34,5.0,949919556 +4,112,5.0,949810582 +4,141,5.0,949919681 +4,153,4.0,949811346 +4,173,3.0,949811346 +4,185,3.0,949920047 +4,260,5.0,949779042 +4,289,4.0,949778802 +4,296,5.0,949895708 +4,329,3.0,949810618 +4,349,5.0,949810582 +4,356,5.0,949919763 +4,357,5.0,949919681 +4,364,5.0,949949538 +4,367,4.0,949895887 +4,380,3.0,949810534 +4,410,3.0,949919883 +4,431,3.0,949895772 +4,434,4.0,949810688 +4,435,1.0,949920135 +4,440,4.0,949919802 +4,442,4.0,949920028 +4,464,4.0,949811315 +4,480,5.0,949810582 +4,541,5.0,949779091 +4,588,5.0,949949486 +4,589,5.0,949919938 +4,590,3.0,949810534 +4,594,5.0,949949538 +4,596,5.0,949949638 +4,610,4.0,949982238 +4,616,5.0,949949444 +4,858,5.0,949779022 +4,903,5.0,949919189 +4,910,4.0,949919306 +4,913,5.0,949919247 +4,919,5.0,949949396 +4,1011,4.0,949919454 +4,1016,4.0,949919322 +4,1022,5.0,949949638 +4,1028,5.0,949949638 +4,1030,5.0,949896377 +4,1031,5.0,949896377 +4,1032,5.0,949949538 +4,1033,5.0,949949638 +4,1036,5.0,949896244 +4,1073,5.0,949919372 +4,1079,5.0,949811523 +4,1089,5.0,949895732 +4,1097,5.0,949778771 +4,1125,5.0,949919399 +4,1127,5.0,949896275 +4,1136,5.0,949919372 +4,1194,5.0,949919419 +4,1196,5.0,949779173 +4,1197,5.0,949811490 +4,1198,5.0,949779173 +4,1200,5.0,949896244 +4,1206,5.0,949896159 +4,1208,5.0,949779173 +4,1210,5.0,949778714 +4,1213,5.0,949895708 +4,1214,5.0,949810261 +4,1219,5.0,949779173 +4,1220,5.0,949811523 +4,1222,5.0,949918693 +4,1225,5.0,949779173 +4,1230,5.0,949919372 +4,1240,5.0,949896244 +4,1243,5.0,949919519 +4,1257,5.0,949811602 +4,1258,5.0,949918743 +4,1259,4.0,949811559 +4,1265,5.0,949919591 +4,1270,5.0,949811523 +4,1278,5.0,949919372 +4,1282,5.0,949949396 +4,1285,4.0,949811559 +4,1288,5.0,949811490 +4,1291,5.0,949918743 +4,1298,4.0,949918927 +4,1307,4.0,949811602 +4,1332,4.0,949896275 +4,1334,5.0,949982274 +4,1344,5.0,949919247 +4,1356,4.0,949810582 +4,1371,4.0,949810302 +4,1372,3.0,949920004 +4,1374,4.0,949918787 +4,1376,3.0,949918904 +4,1377,3.0,949810688 +4,1380,5.0,949896377 +4,1387,5.0,949810261 +4,1388,4.0,949810302 +4,1396,5.0,949895772 +4,1544,3.0,949811230 +4,1580,5.0,949919978 +4,1663,4.0,949811559 +4,1674,5.0,949896244 +4,1805,1.0,949895864 +4,1858,5.0,949919738 +4,1917,4.0,949810688 +4,1918,2.0,949895956 +4,1953,5.0,949810261 +4,1954,5.0,949810261 +4,1961,5.0,949918743 +4,1967,3.0,949949538 +4,1968,5.0,949811559 +4,1994,5.0,949896309 +4,2000,5.0,949811602 +4,2002,3.0,949895907 +4,2003,2.0,949918970 +4,2005,5.0,949896070 +4,2014,4.0,949919454 +4,2018,5.0,949778771 +4,2020,4.0,949811738 +4,2021,4.0,949896114 +4,2033,4.0,949982239 +4,2034,4.0,949896183 +4,2046,5.0,949810618 +4,2054,3.0,949896114 +4,2064,5.0,949918648 +4,2078,5.0,949949444 +4,2080,5.0,949919306 +4,2081,4.0,949982239 +4,2085,5.0,949949444 +4,2086,5.0,949896114 +4,2087,5.0,949949638 +4,2091,5.0,949896183 +4,2094,4.0,949920028 +4,2096,5.0,949949538 +4,2100,5.0,949896114 +4,2102,5.0,949949396 +4,2105,4.0,949896114 +4,2109,5.0,949919399 +4,2110,3.0,949896309 +4,2114,5.0,949918927 +4,2115,5.0,949918994 +4,2124,4.0,949919763 +4,2140,5.0,949896070 +4,2141,4.0,949982239 +4,2143,4.0,949896114 +4,2144,5.0,949811603 +4,2161,5.0,949896070 +4,2174,5.0,949896070 +4,2193,3.0,949896070 +4,2194,5.0,949918764 +4,2248,4.0,949811559 +4,2263,3.0,949896309 +4,2268,5.0,949895772 +4,2289,5.0,949919556 +4,2348,4.0,949918927 +4,2371,4.0,949811603 +4,2403,4.0,949918994 +4,2406,5.0,949918994 +4,2409,4.0,949810302 +4,2454,5.0,949982274 +4,2467,5.0,949918875 +4,2551,4.0,949896275 +4,2616,1.0,949895993 +4,2628,5.0,949810582 +4,2640,5.0,949810261 +4,2659,3.0,949918671 +4,2683,4.0,949896497 +4,2699,4.0,949896497 +4,2716,5.0,949811523 +4,2723,5.0,949810582 +4,2734,4.0,949778714 +4,2770,1.0,949896521 +4,2788,5.0,949919399 +4,2791,5.0,949811490 +4,2795,4.0,949811603 +4,2797,5.0,949896070 +4,2804,5.0,949811738 +4,2822,3.0,949811230 +4,2867,3.0,949918875 +4,2872,5.0,949896114 +4,2877,5.0,949896377 +4,2902,2.0,949896309 +4,2903,1.0,949896309 +4,2916,4.0,949810534 +4,2918,5.0,949811559 +4,2968,5.0,949896070 +4,2986,3.0,949896015 +4,2987,5.0,949918807 +4,2991,5.0,949810261 +4,3016,3.0,949896543 +4,3034,5.0,949949444 +4,3039,4.0,949811559 +4,3040,5.0,949919419 +4,3060,5.0,949919656 +4,3071,4.0,949918715 +4,3101,4.0,949896275 +4,3104,4.0,949811603 +4,3108,5.0,949919738 +4,3169,4.0,949918904 +4,3208,2.0,949778946 +4,3210,4.0,949811523 +4,3251,5.0,949918970 +4,3255,4.0,949919738 +4,3263,3.0,949919845 +4,3265,5.0,949895732 +4,4006,2.0,949982238 +5,3,4.0,1163374957 +5,39,4.0,1163374952 +5,104,4.0,1163374639 +5,141,4.0,1163374242 +5,150,4.0,1163374404 +5,231,3.5,1163373762 +5,277,4.5,1163373208 +5,344,3.5,1163373636 +5,356,4.0,1163374152 +5,364,4.0,1163373752 +5,367,4.0,1163373755 +5,377,4.0,1163373610 +5,440,4.0,1163374477 +5,500,4.5,1163373718 +5,586,4.0,1163374392 +5,588,3.5,1163373551 +5,595,4.0,1163374190 +5,597,5.0,1163373711 +5,788,3.5,1163374993 +5,858,2.5,1163373651 +5,903,3.5,1163373135 +5,919,4.0,1163374286 +5,1022,4.0,1163373316 +5,1035,5.0,1163373103 +5,1193,3.0,1163374173 +5,1221,2.5,1163374239 +5,1247,4.0,1163374582 +5,1307,4.0,1163374495 +5,1380,5.0,1163373044 +5,1393,3.5,1163374165 +5,1485,4.5,1163374608 +5,1544,3.5,1163374562 +5,1682,4.0,1163374214 +5,1721,4.0,1163373744 +5,1777,4.0,1163374601 +5,1784,4.5,1163374251 +5,1923,4.5,1163373726 +5,1961,4.0,1163373675 +5,1968,4.0,1163374324 +5,1997,3.5,1163374593 +5,2023,1.5,1163373188 +5,2081,5.0,1163373109 +5,2273,4.0,1163373276 +5,2294,4.0,1163373251 +5,2355,3.5,1163374184 +5,2424,4.0,1163373193 +5,2502,3.5,1163374290 +5,2683,4.0,1163373679 +5,2694,4.5,1163373293 +5,2706,4.0,1163374246 +5,2762,3.5,1163373743 +5,2770,3.5,1163374947 +5,2918,3.5,1163374278 +5,2997,3.5,1163374127 +5,3114,3.5,1163374263 +5,3176,3.5,1163374408 +5,3408,4.0,1163374137 +5,3753,3.5,1163373148 +5,3897,4.5,1163374235 +5,3948,3.5,1163374198 +5,4014,4.0,1163373273 +5,4018,4.0,1163375025 +5,4022,3.5,1163373696 +5,4025,4.5,1163375145 +5,4306,3.5,1163374103 +5,4308,3.5,1163374354 +5,4447,4.5,1163375033 +5,4718,3.5,1163375131 +5,4963,3.0,1163373548 +5,4995,4.5,1163373616 +5,5266,3.5,1163374995 +5,5299,4.5,1163373299 +5,5349,4.5,1163373606 +5,5464,4.0,1163374443 +5,5669,3.5,1163374206 +5,5679,4.5,1163374389 +5,5816,3.0,1163373688 +5,5995,4.0,1163374533 +5,6218,3.5,1163374491 +5,6373,4.0,1163374572 +5,6377,4.0,1163373626 +5,6502,4.0,1163374455 +5,6711,2.5,1163373238 +5,6942,4.0,1163374511 +5,8376,4.0,1163374742 +5,8464,4.0,1163374381 +5,8622,3.5,1163374118 +5,8636,4.5,1163373593 +5,8644,4.0,1163374426 +5,30707,4.5,1163374340 +5,30749,4.5,1163374702 +5,30793,3.5,1163374177 +5,33166,5.0,1163374211 +5,33679,4.0,1163374517 +5,34162,4.5,1163374227 +5,35836,4.0,1163374275 +5,40819,4.5,1163374283 +5,41566,4.0,1163374144 +5,41569,4.0,1163374167 +5,48385,4.5,1163374357 +6,111,4.0,1109258212 +6,158,2.0,1108134263 +6,173,2.0,1109258228 +6,293,5.0,1108134539 +6,596,4.0,1108134269 +6,903,4.0,1108134299 +6,1204,5.0,1108134266 +6,1250,4.5,1108134284 +6,1259,4.5,1109258196 +6,1276,4.5,1108134309 +6,1285,4.5,1108134339 +6,1358,2.0,1109258181 +6,1639,2.0,1109258179 +6,1687,2.0,1109258281 +6,1747,2.0,1109258194 +6,1876,0.5,1108134334 +6,1909,3.0,1108134344 +6,2001,3.0,1108134289 +6,2019,4.0,1109258270 +6,2072,4.0,1109258285 +6,2174,4.0,1109258175 +6,2502,3.5,1108134291 +6,2528,3.0,1109258245 +6,2529,4.0,1108134293 +6,2571,1.0,1109258202 +6,2657,2.0,1108134271 +6,2692,4.0,1108134274 +6,2723,3.0,1109258257 +6,2761,4.5,1108134545 +6,2890,3.0,1109258199 +6,3052,1.0,1108134337 +6,3114,4.0,1109258183 +6,3300,3.5,1109258250 +6,3751,1.5,1109258190 +6,4641,1.5,1109258217 +6,4975,1.5,1109258226 +6,5952,5.0,1108134311 +6,7090,3.0,1108134534 +6,7153,5.0,1108134519 +6,7361,4.0,1108134524 +6,8368,3.5,1108134526 +6,8636,4.0,1108134537 +6,8784,3.0,1108134531 +6,8874,4.5,1108134521 +7,1,3.0,851866703 +7,10,3.0,851869035 +7,21,3.0,851867289 +7,31,3.0,851868750 +7,34,4.0,851867861 +7,40,4.0,851866901 +7,104,3.0,851866744 +7,110,5.0,851868188 +7,112,4.0,851866720 +7,141,4.0,851866704 +7,151,4.0,851868206 +7,198,2.0,851868704 +7,207,3.0,851868705 +7,260,5.0,851869062 +7,272,3.0,851868188 +7,316,2.0,851869161 +7,318,5.0,851868187 +7,329,3.0,851868524 +7,333,3.0,851867345 +7,345,3.0,851867621 +7,355,3.0,851867941 +7,356,3.0,851868188 +7,357,3.0,851867436 +7,364,3.0,851868020 +7,367,3.0,851867790 +7,377,3.0,851869291 +7,380,4.0,851869291 +7,480,4.0,851869161 +7,500,3.0,851867669 +7,534,4.0,851868246 +7,539,3.0,851867688 +7,541,4.0,851869035 +7,551,4.0,851868019 +7,588,4.0,851868044 +7,589,3.0,851869140 +7,590,4.0,851868186 +7,592,3.0,851868863 +7,594,4.0,851868020 +7,595,3.0,851868044 +7,610,3.0,851868074 +7,671,4.0,851866806 +7,708,3.0,851866744 +7,720,5.0,851868019 +7,724,2.0,851866784 +7,736,1.0,851866704 +7,737,1.0,851866763 +7,745,5.0,851868020 +7,780,3.0,851866703 +7,786,2.0,851866744 +7,924,4.0,851868289 +7,1036,3.0,851869102 +7,1073,3.0,851866744 +7,1079,4.0,851867320 +7,1080,4.0,851867289 +7,1097,3.0,851868308 +7,1125,3.0,851867553 +7,1129,3.0,851869103 +7,1136,4.0,851867289 +7,1148,5.0,851868019 +7,1196,5.0,851869034 +7,1197,3.0,851867289 +7,1198,5.0,851869035 +7,1210,5.0,851869034 +7,1220,4.0,851867379 +7,1223,5.0,851868044 +7,1225,5.0,851868246 +7,1231,4.0,851868321 +7,1240,4.0,851869062 +7,1242,5.0,851868289 +7,1270,3.0,851867436 +7,1275,4.0,851869080 +7,1278,3.0,851867436 +7,1287,4.0,851868332 +7,1288,4.0,851867401 +7,1291,3.0,851867320 +7,1298,3.0,851868471 +7,1302,4.0,851868471 +7,1307,3.0,851867401 +7,1353,3.0,851866935 +7,1371,3.0,851869160 +7,1372,3.0,851869102 +7,1373,2.0,851869230 +7,1374,4.0,851869035 +7,1375,3.0,851869140 +7,1376,3.0,851869062 +7,1394,3.0,851867688 +7,1405,5.0,851866978 +7,1408,1.0,851869140 +8,32,5.0,1154465405 +8,45,2.5,1154389572 +8,47,5.0,1154464836 +8,50,5.0,1154400173 +8,110,4.0,1154473268 +8,260,3.5,1154464829 +8,282,2.0,1154389420 +8,296,4.0,1154465380 +8,318,5.0,1154464714 +8,356,4.0,1154400390 +8,457,4.5,1154400475 +8,520,3.5,1154389356 +8,524,2.0,1154400357 +8,527,5.0,1154400170 +8,543,5.0,1154389386 +8,589,4.0,1154464853 +8,593,4.5,1154464833 +8,628,4.0,1154400284 +8,805,3.5,1154389432 +8,858,5.0,1154400181 +8,1196,3.5,1154464841 +8,1197,4.0,1154464887 +8,1198,4.0,1154464730 +8,1210,4.0,1154464769 +8,1219,4.0,1154465573 +8,1225,4.0,1154465394 +8,1258,4.0,1154465555 +8,1259,4.0,1154464811 +8,1265,3.0,1154465230 +8,1270,4.0,1154464747 +8,1291,4.0,1154464720 +8,1302,3.5,1154400465 +8,1358,0.5,1154474527 +8,1387,4.0,1154465285 +8,1393,3.0,1154400324 +8,1500,4.0,1154465235 +8,1552,3.0,1154389408 +8,1617,3.5,1154464990 +8,1625,5.0,1154389385 +8,1674,4.0,1154389491 +8,1704,4.0,1154473252 +8,1754,3.0,1154400308 +8,1777,5.0,1154400458 +8,1876,3.5,1154389528 +8,1961,5.0,1154473322 +8,2028,4.0,1154473259 +8,2100,3.0,1154389460 +8,2139,3.0,1154465222 +8,2194,4.5,1154464735 +8,2302,4.5,1154400414 +8,2324,4.0,1154464850 +8,2329,5.0,1154473217 +8,2353,3.5,1154389340 +8,2423,3.5,1154400351 +8,2502,5.0,1154464889 +8,2571,5.0,1154464738 +8,2716,3.5,1154464944 +8,2762,4.5,1154464717 +8,2770,2.5,1154389541 +8,2791,4.5,1154465558 +8,2797,3.5,1154400340 +8,2804,3.5,1154473419 +8,2841,3.0,1154400360 +8,2858,4.5,1154464950 +8,2918,5.0,1154473364 +8,2959,4.0,1154464901 +8,3147,4.5,1154400266 +8,3578,5.0,1154400441 +8,3916,3.5,1154400198 +8,3948,4.0,1154389482 +8,3996,4.0,1154465526 +8,4011,4.5,1154464873 +8,4019,3.5,1154400245 +8,4034,4.5,1154465279 +8,4226,5.0,1154464905 +8,4262,4.0,1154464915 +8,4448,2.5,1154400334 +8,4886,3.5,1154464808 +8,4896,3.5,1154400398 +8,4963,4.5,1154400383 +8,4973,4.0,1154465373 +8,4993,3.5,1154464819 +8,4995,3.5,1154389449 +8,5064,5.0,1154400236 +8,5378,3.5,1154389552 +8,5445,4.5,1154400449 +8,5464,4.0,1154464756 +8,5630,4.0,1154400407 +8,5650,4.0,1154465399 +8,5669,3.0,1154465385 +8,5952,4.0,1154464762 +8,5989,3.5,1154400444 +8,6377,4.0,1154389474 +8,6378,3.0,1154400191 +8,6870,4.0,1154464895 +8,6874,5.0,1154465296 +8,6879,3.0,1154400253 +8,7143,3.5,1154400294 +8,7153,4.0,1154464753 +8,7361,4.0,1154465367 +8,7438,4.0,1154464994 +8,8533,2.5,1154400471 +8,8784,4.5,1154464868 +8,8873,4.0,1154465499 +8,8874,3.0,1154465548 +8,32587,3.5,1154465243 +8,33166,4.5,1154473310 +8,33493,4.5,1154400263 +8,33794,4.5,1154464726 +8,34162,3.5,1154400423 +8,40583,3.5,1154473088 +8,40819,3.5,1154473264 +8,42007,2.0,1154473042 +8,43556,3.5,1154473022 +8,43871,3.0,1154473014 +8,44004,3.0,1154473017 +9,1,4.0,938629179 +9,17,4.0,938628337 +9,26,3.0,938628655 +9,36,5.0,938629110 +9,47,3.0,938628897 +9,318,4.0,938628966 +9,497,4.0,938628777 +9,515,4.0,938628577 +9,527,5.0,938628843 +9,534,5.0,938628337 +9,593,4.0,938628843 +9,608,5.0,938628843 +9,733,2.0,938628337 +9,1059,5.0,938629250 +9,1177,3.0,938629470 +9,1357,4.0,938628655 +9,1358,4.0,938628450 +9,1411,3.0,938628655 +9,1541,2.0,938628777 +9,1584,4.0,938629341 +9,1680,4.0,938629054 +9,1682,5.0,938628690 +9,1704,4.0,938628966 +9,1721,3.0,938629470 +9,1784,5.0,938628966 +9,2028,4.0,938629341 +9,2125,4.0,938629522 +9,2140,4.0,938629747 +9,2249,4.0,938629053 +9,2268,3.0,938629053 +9,2273,3.0,938628777 +9,2278,4.0,938628897 +9,2291,4.0,938629341 +9,2294,2.0,938629250 +9,2302,4.0,938628843 +9,2391,4.0,939122916 +9,2396,4.0,938628577 +9,2427,2.0,938629681 +9,2490,3.0,938629681 +9,2501,4.0,938628966 +9,2539,2.0,938629341 +9,2571,5.0,938628450 +9,2628,3.0,938628843 +9,2762,4.0,938627748 +9,2857,4.0,938629681 +10,50,5.0,942766420 +10,152,4.0,942766793 +10,318,4.0,942766515 +10,344,3.0,942766603 +10,345,4.0,942766603 +10,592,3.0,942767328 +10,735,4.0,942766974 +10,1036,3.0,942767258 +10,1089,3.0,942766420 +10,1101,2.0,942767328 +10,1127,4.0,942767328 +10,1196,4.0,942767258 +10,1197,4.0,942767258 +10,1198,4.0,942767258 +10,1200,4.0,942767258 +10,1210,4.0,942767258 +10,1220,3.0,942767328 +10,1240,4.0,942767258 +10,1291,4.0,942767258 +10,1358,5.0,942766420 +10,1423,4.0,942766420 +10,1459,3.0,942766725 +10,1499,3.0,942766845 +10,1611,5.0,942767029 +10,1690,3.0,942766679 +10,1704,4.0,942766472 +10,1719,5.0,942766472 +10,1887,2.0,942766845 +10,1923,5.0,942766515 +10,2108,3.0,942766472 +10,2344,5.0,942766991 +10,2406,4.0,942767328 +10,2410,2.0,942767328 +10,2539,4.0,942766845 +10,2571,5.0,942766515 +10,2826,5.0,942766109 +10,2827,3.0,942766251 +10,2840,3.0,942766213 +10,2841,4.0,942766029 +10,2881,3.0,942766164 +10,2890,4.0,942765978 +10,2907,2.0,942766213 +10,2926,5.0,942767121 +10,2995,2.0,942766251 +10,3005,3.0,942766059 +10,3019,4.0,942767571 +11,50,5.0,1391658537 +11,70,1.0,1391656827 +11,126,4.0,1391657561 +11,169,3.0,1391657297 +11,296,5.0,1391658423 +11,778,4.5,1391658505 +11,785,3.5,1391656845 +11,923,5.0,1391658556 +11,1027,4.5,1391658634 +11,1201,5.0,1391658440 +11,1408,5.0,1391658667 +11,1918,3.0,1391657062 +11,2042,3.5,1391657376 +11,2596,4.5,1391657543 +11,2762,3.0,1391658583 +11,3424,3.0,1391657112 +11,5669,3.0,1391658601 +11,6598,5.0,1391657861 +11,26614,5.0,1391658574 +11,48516,5.0,1391658450 +11,51084,4.0,1391657605 +11,58295,4.5,1391657459 +11,71211,3.5,1391657720 +11,77455,4.5,1391658141 +11,79132,4.0,1391658115 +11,80489,4.5,1391658399 +11,80906,3.0,1391658137 +11,81158,4.0,1391658210 +11,81562,3.5,1391658218 +11,88129,4.0,1391658385 +11,91500,4.5,1391658311 +11,91529,4.5,1391658125 +11,91548,4.0,1391658270 +11,96079,4.0,1391658186 +11,96861,4.0,1391657924 +11,97938,4.0,1391657610 +11,104841,5.0,1391658157 +11,106487,5.0,1391657798 +12,253,3.0,968045587 +12,529,1.0,968045407 +12,538,3.0,968045438 +12,608,2.0,968045353 +12,673,1.0,968045732 +12,736,4.0,968045680 +12,737,3.0,968045764 +12,1028,1.0,968045500 +12,1032,2.0,968045561 +12,1077,3.0,968045500 +12,1197,1.0,955407153 +12,1215,5.0,968045353 +12,1220,5.0,955407153 +12,1230,2.0,968045354 +12,1235,5.0,968045354 +12,1295,1.0,955407153 +12,1374,1.0,968045475 +12,1387,4.0,968045475 +12,1639,2.0,968045438 +12,1732,3.0,968045529 +12,2259,2.0,955407153 +12,2355,2.0,968045475 +12,2460,4.0,968045680 +12,2529,1.0,968045475 +12,2668,2.0,968045764 +12,2959,4.0,968045407 +12,3146,2.0,968045732 +12,3148,1.0,968045379 +12,3176,3.0,968045649 +12,3179,2.0,968045354 +12,3298,4.0,968045529 +12,3324,1.0,968045732 +12,3408,4.0,968045379 +12,3474,4.0,955407153 +12,3770,3.0,968045619 +12,3773,2.0,968045680 +12,3780,2.0,968045619 +12,3791,1.0,968045232 +12,3793,5.0,968045232 +12,3794,3.0,968045232 +12,3798,4.0,968045232 +12,3799,1.0,968045198 +12,3801,3.0,968045198 +12,3809,3.0,968045172 +12,3825,5.0,968045142 +12,3827,2.0,968045142 +12,3829,2.0,968045106 +12,3831,4.0,968045106 +12,3841,2.0,968045074 +12,3844,1.0,968045074 +12,3861,3.0,968045015 +12,3863,5.0,968045015 +12,3864,3.0,968045015 +12,3865,5.0,968045015 +12,3869,2.0,968044981 +12,3871,2.0,968044981 +12,3873,3.0,968044981 +12,3879,5.0,968044949 +12,3885,3.0,968044949 +12,3886,2.0,968044949 +12,6184,4.0,968045173 +13,1,5.0,1331380058 +13,47,2.5,1331380914 +13,110,4.0,1331380038 +13,277,4.0,1331379348 +13,296,3.5,1331380895 +13,318,4.5,1331380029 +13,356,5.0,1331380018 +13,362,4.5,1331379479 +13,480,3.0,1331380025 +13,524,3.5,1331379485 +13,527,4.0,1331380901 +13,531,4.0,1331379483 +13,587,3.0,1331380851 +13,590,4.0,1331380062 +13,914,4.0,1331379366 +13,919,3.5,1331380871 +13,1027,3.0,1331379520 +13,1259,4.0,1331380814 +13,1265,2.5,1331380845 +13,1918,3.0,1331379386 +13,1961,4.0,1331380745 +13,2355,4.0,1331380741 +13,2571,3.0,1331380888 +13,2572,3.5,1331379777 +13,2761,4.0,1331379470 +13,2762,3.0,1331380765 +13,2804,3.0,1331380731 +13,2908,3.0,1331379494 +13,2918,3.0,1331380761 +13,3114,3.0,1331380738 +13,3147,4.0,1331380752 +13,3255,3.5,1331379342 +13,3396,3.5,1331379599 +13,3624,3.0,1331379574 +13,4306,4.0,1331380721 +13,4310,4.5,1331379506 +13,4321,2.5,1331379589 +13,4718,3.5,1331379530 +13,4878,4.5,1331380145 +13,4886,3.5,1331380834 +13,4993,4.5,1331380883 +13,5989,4.0,1331380785 +13,6377,4.5,1331380734 +13,7361,4.0,1331380159 +13,7502,4.5,1331380306 +13,54286,3.5,1331380782 +13,58559,4.5,1331380873 +13,64614,4.5,1331380830 +13,69757,4.0,1331379748 +13,78499,4.0,1331380725 +13,81834,4.5,1331380387 +13,88125,4.5,1331380390 +13,93363,3.0,1331379985 +14,594,1.0,976243997 +14,1196,4.0,976243997 +14,1721,3.0,976243912 +14,2038,3.0,976244179 +14,2355,2.0,976244179 +14,2394,3.0,976244471 +14,2628,3.0,976243933 +14,2683,2.0,976244131 +14,2716,3.0,976244313 +14,2720,2.0,976244367 +14,2724,3.0,976244524 +14,2861,2.0,976244287 +14,3114,4.0,976244591 +14,3157,2.0,976244564 +14,3175,5.0,976244313 +14,3354,3.0,976243997 +14,3623,3.0,976244423 +14,3751,4.0,976244205 +14,3986,3.0,976244107 +14,3988,4.0,976244343 +15,1,2.0,997938310 +15,2,2.0,1134521380 +15,5,4.5,1093070098 +15,6,4.0,1040205753 +15,10,3.0,1093028290 +15,11,2.5,1093028381 +15,14,2.5,1166586286 +15,16,3.5,1093070150 +15,17,3.0,997939404 +15,19,1.0,1093028409 +15,21,4.5,1058249528 +15,22,2.5,1093070415 +15,25,3.0,1033345172 +15,32,4.0,997938466 +15,34,3.0,997938310 +15,36,1.0,1033345287 +15,39,2.5,1093028334 +15,44,3.0,1122576665 +15,47,5.0,1054449816 +15,50,5.0,997938500 +15,52,2.5,1093070271 +15,62,2.0,1093028336 +15,70,0.5,1093070467 +15,82,5.0,1044220302 +15,94,3.0,1166587063 +15,95,1.5,1093028331 +15,101,4.0,1134522072 +15,104,1.0,1093070113 +15,107,2.0,1166586594 +15,110,3.0,1040205792 +15,111,5.0,997938500 +15,112,2.5,1093070156 +15,123,4.0,997938358 +15,125,3.5,1245362506 +15,145,3.5,1134521543 +15,149,5.0,1075142933 +15,150,3.0,997939380 +15,153,1.0,1128274517 +15,157,2.0,1052896975 +15,160,0.5,1093028411 +15,161,3.0,1093028319 +15,162,4.0,997938676 +15,163,2.0,1166586021 +15,164,4.0,997938413 +15,165,3.0,1093028183 +15,170,2.5,1166586376 +15,172,1.0,1093070329 +15,175,4.0,1166587180 +15,176,4.0,1046209579 +15,180,3.0,1166586276 +15,185,2.0,1052896916 +15,193,1.0,1193435347 +15,196,2.0,1093070170 +15,198,1.5,1134521967 +15,208,1.5,1193435482 +15,214,2.0,1033345241 +15,215,4.5,1054449903 +15,216,1.0,1349622582 +15,223,4.0,997939415 +15,225,1.0,1134521432 +15,230,1.0,1033345068 +15,231,3.5,1093028308 +15,232,4.0,1033345227 +15,233,4.0,1033344772 +15,235,4.0,997939415 +15,237,3.5,1166586251 +15,246,5.0,997938656 +15,247,2.0,997938567 +15,252,2.0,1093070318 +15,253,2.0,1093028328 +15,260,5.0,997938437 +15,265,1.0,1058250479 +15,288,2.0,1093028372 +15,292,1.0,1093028298 +15,293,5.0,997938567 +15,296,5.0,997938771 +15,300,4.0,1054449869 +15,306,5.0,997938737 +15,307,4.0,997938894 +15,308,4.0,1052897100 +15,316,3.0,1052896866 +15,317,1.0,1093028399 +15,318,2.0,997938727 +15,322,2.5,1120209787 +15,329,1.5,1093028255 +15,335,2.0,997938391 +15,339,2.5,1122576622 +15,342,3.0,1058250589 +15,344,2.0,1093028220 +15,349,3.0,997939193 +15,353,3.0,1093070088 +15,355,0.5,1122576667 +15,356,1.0,1058250631 +15,357,3.5,1058250490 +15,364,4.0,997939065 +15,367,2.0,1374637824 +15,370,3.5,1122576670 +15,371,2.0,1443385370 +15,372,3.0,1465793100 +15,373,3.5,1054449871 +15,377,4.0,1033344267 +15,380,4.0,997939179 +15,382,3.5,1166586661 +15,429,1.0,1465955324 +15,431,4.0,1132469126 +15,434,3.0,1093028320 +15,435,1.0,1093070102 +15,440,2.5,1058250627 +15,441,4.0,997938322 +15,442,1.0,1193435522 +15,454,3.0,1093028323 +15,457,5.0,997938567 +15,466,2.5,1134521456 +15,471,3.0,1166586067 +15,474,3.0,1093028384 +15,480,3.0,997939193 +15,481,3.0,1166586748 +15,483,1.0,997938905 +15,485,0.5,1093070332 +15,494,4.0,1093028414 +15,500,3.0,1035258747 +15,508,1.5,1093028394 +15,509,2.0,1093028389 +15,520,3.5,1443384915 +15,524,2.5,1166586387 +15,527,4.0,997937239 +15,535,3.0,1033345148 +15,539,2.0,1093028325 +15,540,1.5,1240203835 +15,541,5.0,997938438 +15,543,3.0,1093070381 +15,549,5.0,997938676 +15,551,2.0,997939055 +15,555,4.0,1033344257 +15,556,3.5,1361078504 +15,562,3.0,1166586512 +15,574,3.0,1141391972 +15,586,2.0,1093028377 +15,587,1.0,1093028322 +15,588,0.5,1093028161 +15,589,4.0,997938451 +15,590,3.0,1093028142 +15,592,4.0,997939162 +15,593,5.0,997938500 +15,594,2.5,1245021392 +15,597,2.5,1093028267 +15,608,5.0,997938500 +15,610,3.0,1052896916 +15,628,2.5,1093070326 +15,647,1.5,1134521628 +15,648,4.0,1093028231 +15,663,2.0,1035258608 +15,665,3.0,997939348 +15,674,3.0,1052896916 +15,680,2.0,1052896867 +15,708,3.0,1093028406 +15,720,3.0,1033345122 +15,724,2.0,1166586237 +15,733,3.5,1093028260 +15,736,1.0,1093028237 +15,745,3.0,997938288 +15,748,2.5,1166586565 +15,750,4.0,997938438 +15,762,2.0,1093070454 +15,778,4.0,1054450167 +15,780,2.5,1093028151 +15,784,2.5,1093070207 +15,785,3.0,1033344834 +15,786,0.5,1093028395 +15,788,1.5,1134521382 +15,799,3.0,1136904835 +15,800,5.0,997938391 +15,802,1.0,1128274713 +15,803,4.5,1054450008 +15,804,3.5,1134522085 +15,832,1.0,1166586002 +15,836,2.0,1166586995 +15,851,4.0,1035258747 +15,858,5.0,997938703 +15,866,4.0,997938567 +15,899,5.0,1058250570 +15,903,5.0,997938346 +15,904,5.0,997938346 +15,908,5.0,997938500 +15,909,4.0,997939604 +15,910,2.5,1122576681 +15,911,4.0,1058250459 +15,912,5.0,997938140 +15,913,4.0,1416119525 +15,914,1.5,1058250501 +15,916,1.0,1128274460 +15,919,3.0,997938737 +15,920,3.5,1093070090 +15,922,1.0,1040205624 +15,923,5.0,997938727 +15,924,5.0,997938358 +15,926,3.0,1044219825 +15,931,1.0,1058250466 +15,953,3.0,997938800 +15,994,4.0,997939453 +15,1020,2.0,1166586619 +15,1035,2.0,1034544304 +15,1036,4.0,997938528 +15,1041,5.0,997938905 +15,1047,2.5,1348976598 +15,1059,1.5,1166586136 +15,1060,4.0,1054450184 +15,1073,3.0,997938603 +15,1079,4.0,997937239 +15,1084,3.0,997938787 +15,1088,2.0,1122576683 +15,1089,4.0,997938528 +15,1092,2.5,1193436089 +15,1093,2.0,1166586415 +15,1094,4.0,1033345199 +15,1095,4.0,1040205624 +15,1097,4.0,997938466 +15,1100,2.5,1458506296 +15,1101,3.0,1093070163 +15,1120,1.0,1055439464 +15,1127,4.0,997939162 +15,1131,2.5,1345397949 +15,1136,2.5,1128274586 +15,1147,3.5,1386368101 +15,1148,3.0,997938288 +15,1171,4.0,1054449673 +15,1173,3.0,1193435335 +15,1176,4.0,997938862 +15,1178,3.0,997938771 +15,1179,4.0,1033344257 +15,1183,2.0,1443384910 +15,1186,4.5,1166586456 +15,1189,3.5,1361078481 +15,1193,5.0,997938760 +15,1196,5.0,997938438 +15,1197,1.0,1040205753 +15,1198,4.0,997939111 +15,1199,1.0,1093070386 +15,1200,4.0,997938528 +15,1201,3.5,1345398232 +15,1203,4.0,997938784 +15,1204,2.0,997939111 +15,1206,5.0,997938438 +15,1207,3.0,1044347743 +15,1208,5.0,997938822 +15,1209,4.5,1345398245 +15,1210,5.0,997938466 +15,1211,1.5,1058250487 +15,1212,3.0,1166586696 +15,1213,3.0,997938749 +15,1214,4.0,997938203 +15,1215,1.5,1054271469 +15,1217,2.0,1055439440 +15,1218,4.0,997939207 +15,1219,3.0,997938203 +15,1220,1.0,1093070109 +15,1221,5.0,997938712 +15,1222,4.0,997939614 +15,1223,4.0,997938288 +15,1225,4.0,1034544304 +15,1228,4.0,997938800 +15,1230,3.0,1044347881 +15,1231,4.0,1054450216 +15,1233,3.0,997938727 +15,1234,4.0,1054450238 +15,1235,3.5,1166586368 +15,1240,3.0,997938451 +15,1243,2.0,1033345172 +15,1244,5.0,997938151 +15,1246,1.0,1093070174 +15,1247,5.0,997938171 +15,1248,3.0,997938509 +15,1249,3.0,997938500 +15,1250,4.0,997938760 +15,1251,3.0,997938749 +15,1252,5.0,997938346 +15,1254,3.5,1345398347 +15,1258,4.0,997938219 +15,1259,3.0,997938917 +15,1260,3.0,997938981 +15,1262,1.5,1134521651 +15,1263,4.0,1120208625 +15,1264,3.0,997938162 +15,1265,4.0,997938171 +15,1266,4.0,997939360 +15,1267,5.0,997938500 +15,1270,5.0,997938451 +15,1272,3.5,1054450246 +15,1276,2.5,1054450208 +15,1280,3.0,997938941 +15,1281,1.0,1063565335 +15,1283,3.0,1416120074 +15,1284,3.0,1345397986 +15,1287,2.0,1033345087 +15,1288,4.0,1163876491 +15,1289,4.0,1465793922 +15,1290,3.0,1035258608 +15,1291,4.0,997939144 +15,1293,4.0,997938894 +15,1297,4.0,1166587005 +15,1302,3.0,1093070459 +15,1303,2.0,1054450251 +15,1304,3.0,1040205753 +15,1307,5.0,997938162 +15,1320,3.0,1134521497 +15,1333,2.0,997938219 +15,1334,2.0,1052896916 +15,1339,2.0,1134521654 +15,1342,2.0,1033345050 +15,1356,2.0,1052896819 +15,1358,1.0,997938500 +15,1361,3.5,1361078494 +15,1370,3.0,1093070198 +15,1377,3.0,1093070479 +15,1380,2.5,1166586012 +15,1385,3.0,1458506268 +15,1387,4.0,1040205754 +15,1391,0.5,1093070145 +15,1393,3.5,1058250612 +15,1394,4.0,997939021 +15,1396,4.0,1055439459 +15,1405,3.0,1052897043 +15,1407,5.0,997938219 +15,1449,4.0,997939358 +15,1464,4.0,997938391 +15,1466,4.0,997939439 +15,1476,3.0,1134522057 +15,1479,1.5,1338699256 +15,1483,3.0,1193435343 +15,1484,3.0,997938358 +15,1485,3.0,1093070397 +15,1500,3.0,1093070210 +15,1502,1.5,1425876701 +15,1503,1.0,1035258747 +15,1513,2.0,1033344937 +15,1517,3.0,997939453 +15,1527,1.0,1052896819 +15,1529,3.0,997939393 +15,1544,1.0,1093070319 +15,1546,4.0,997938322 +15,1552,1.5,1134521507 +15,1556,2.5,1166587010 +15,1562,1.5,1166586212 +15,1569,3.5,1134521624 +15,1573,4.0,997938476 +15,1580,4.0,997939179 +15,1584,4.0,1052896685 +15,1589,2.0,1093028013 +15,1597,2.0,1134521585 +15,1608,1.0,1093070221 +15,1610,3.0,1040205754 +15,1615,3.0,997939193 +15,1616,3.0,1166587214 +15,1617,5.0,997938346 +15,1625,4.0,997938391 +15,1635,4.0,1033345134 +15,1639,4.0,1054449877 +15,1644,1.5,1166586517 +15,1645,3.0,997938413 +15,1649,2.0,997938647 +15,1653,3.0,1052896685 +15,1663,3.0,1058250115 +15,1673,3.0,1033345299 +15,1676,4.0,1052896916 +15,1680,3.0,1166586583 +15,1682,2.0,997939424 +15,1689,4.5,1465880892 +15,1690,1.0,1134521603 +15,1694,3.0,997938879 +15,1704,4.0,1033345148 +15,1717,4.0,1166586533 +15,1719,4.0,997938931 +15,1721,1.5,1093028339 +15,1722,3.5,1134521534 +15,1729,1.0,1033344286 +15,1732,3.5,1054449676 +15,1735,0.5,1166981862 +15,1747,3.5,1134521589 +15,1748,4.0,997938451 +15,1752,3.5,1469330699 +15,1753,1.0,1349622617 +15,1754,3.5,1460076717 +15,1777,2.0,1134521514 +15,1779,1.0,1166586707 +15,1784,3.0,1033345287 +15,1792,3.0,1458506454 +15,1805,3.0,997938391 +15,1807,1.5,1093028022 +15,1810,2.5,1166587162 +15,1816,2.5,1465881179 +15,1827,4.0,997938676 +15,1831,2.0,1166586439 +15,1834,3.5,1058250734 +15,1836,2.0,1469330727 +15,1845,4.0,1052897012 +15,1859,5.0,997938834 +15,1860,4.0,997939439 +15,1862,2.0,1469330647 +15,1876,2.0,1134521539 +15,1882,1.5,1166586478 +15,1883,4.0,1052897043 +15,1889,3.0,1054449827 +15,1895,2.5,1469330584 +15,1897,1.5,1054450597 +15,1904,3.5,1075142949 +15,1909,2.0,1052896819 +15,1912,5.0,1033345241 +15,1914,3.5,1054449899 +15,1917,2.0,1052896916 +15,1921,4.0,1052896819 +15,1923,4.5,1054449908 +15,1945,4.0,997938954 +15,1950,3.0,1058249502 +15,1952,3.0,997938810 +15,1953,3.0,997938528 +15,1954,3.0,1040205792 +15,1955,4.5,1338698424 +15,1956,4.0,1166587036 +15,1961,3.5,1093028404 +15,1962,3.0,1033345068 +15,1964,3.0,997938372 +15,1968,4.0,1052897128 +15,1994,2.5,1166586228 +15,1997,5.0,997938255 +15,2000,3.0,1052896975 +15,2003,3.0,1034544351 +15,2005,4.0,997938630 +15,2006,4.0,1035258747 +15,2010,3.0,1052896685 +15,2011,3.0,1044219825 +15,2012,1.0,1046209705 +15,2018,2.0,1044347881 +15,2019,4.5,1134521638 +15,2020,2.5,1379040745 +15,2025,2.0,1465881239 +15,2028,3.0,997938784 +15,2041,2.0,1033344732 +15,2054,2.0,997938630 +15,2058,2.5,1166586203 +15,2060,2.0,1052896975 +15,2064,4.5,1338698431 +15,2076,3.0,997938413 +15,2100,2.0,997938603 +15,2105,4.0,1052896867 +15,2108,4.5,1058250482 +15,2115,4.0,1193435562 +15,2124,2.0,1033345050 +15,2126,1.0,1166587068 +15,2133,3.5,1166587080 +15,2134,3.5,1122576686 +15,2140,3.0,1052896819 +15,2145,2.0,1034544351 +15,2150,3.0,997937311 +15,2160,3.0,1166586521 +15,2161,3.0,997938630 +15,2167,3.0,997939162 +15,2174,4.0,997938603 +15,2186,3.0,997938528 +15,2194,4.0,1040205754 +15,2231,3.0,1052897043 +15,2232,4.0,997938466 +15,2243,4.5,1128274472 +15,2248,3.5,1054449665 +15,2268,1.0,1093070270 +15,2269,2.5,1465881227 +15,2273,2.5,1166586189 +15,2278,2.5,1134521675 +15,2282,0.5,1469330645 +15,2288,3.0,1052896740 +15,2289,4.0,997938322 +15,2291,3.0,997939439 +15,2294,2.0,1052897012 +15,2302,3.5,1093070399 +15,2303,3.0,997938931 +15,2311,2.0,1052896916 +15,2313,3.5,1345397769 +15,2318,4.5,1054449678 +15,2321,3.5,1122576690 +15,2324,2.0,997939328 +15,2329,1.0,1054450149 +15,2333,3.0,1033344795 +15,2334,3.0,1469330601 +15,2336,2.0,1033344772 +15,2340,2.0,1134522028 +15,2351,1.0,1044347881 +15,2353,0.5,1134521484 +15,2355,2.0,997939055 +15,2357,3.0,997938834 +15,2360,2.0,997937311 +15,2366,3.0,1040205792 +15,2369,1.0,1033344752 +15,2371,3.5,1166586655 +15,2378,3.0,997937311 +15,2387,3.5,1465880711 +15,2391,3.0,997938567 +15,2395,5.0,997939404 +15,2396,2.0,997938162 +15,2405,3.0,1052897012 +15,2406,3.5,1458506447 +15,2407,3.0,1052896819 +15,2413,4.5,1425875796 +15,2424,1.5,1134521618 +15,2427,3.0,1040205754 +15,2428,1.0,1033344782 +15,2439,2.0,997939328 +15,2447,2.5,1122576697 +15,2455,3.5,1166586146 +15,2467,1.0,997938413 +15,2478,4.0,1122576699 +15,2490,1.0,1033344906 +15,2501,3.0,997938760 +15,2502,5.0,1033344897 +15,2505,0.5,1122576701 +15,2528,2.0,1347937598 +15,2539,2.5,1465880194 +15,2541,1.0,1033344732 +15,2542,1.0,997939415 +15,2560,3.0,1033344917 +15,2568,0.5,1469330735 +15,2571,5.0,997938438 +15,2572,5.0,1033344641 +15,2574,1.0,1033344897 +15,2575,3.0,1033344772 +15,2579,2.5,1054449822 +15,2580,3.0,997939393 +15,2581,1.0,1033344897 +15,2585,1.0,1033344865 +15,2594,4.0,997938466 +15,2598,1.5,1166587193 +15,2599,3.0,997939021 +15,2600,3.0,1033344995 +15,2605,1.0,1033344772 +15,2617,1.0,1093070339 +15,2624,3.0,997939255 +15,2628,2.5,1093028374 +15,2640,4.0,997939179 +15,2648,3.0,997938219 +15,2657,2.0,1052896819 +15,2671,4.0,997939653 +15,2678,1.0,1033344752 +15,2683,1.0,1033344657 +15,2686,3.0,997938372 +15,2692,3.0,997938151 +15,2699,3.0,1033345068 +15,2700,3.0,1033344958 +15,2701,1.0,1245361903 +15,2702,1.5,1122576707 +15,2706,3.0,1033344657 +15,2707,3.0,1033344663 +15,2709,1.0,1033344878 +15,2710,1.0,1033344702 +15,2712,4.0,997939623 +15,2713,1.0,1033344834 +15,2716,4.0,997938219 +15,2717,3.5,1465793437 +15,2718,1.5,1469330590 +15,2722,2.0,1033344732 +15,2723,1.0,1033344897 +15,2726,2.5,1054450195 +15,2729,3.0,997939653 +15,2759,1.0,1033344752 +15,2761,2.0,997939037 +15,2762,1.0,997938500 +15,2763,1.0,1033344970 +15,2769,2.0,997937762 +15,2770,4.0,1033344702 +15,2791,4.0,997939008 +15,2795,3.5,1065197456 +15,2797,4.0,997938603 +15,2803,1.5,1166587203 +15,2819,3.0,997938567 +15,2840,1.0,1033344958 +15,2841,2.0,1033344958 +15,2858,4.0,997938310 +15,2871,4.0,997939144 +15,2881,1.0,1033344752 +15,2890,4.0,1054450160 +15,2905,4.0,1040205754 +15,2908,1.0,997938879 +15,2912,4.0,1040205754 +15,2915,1.5,1345397822 +15,2916,4.0,997938466 +15,2918,4.0,1054449710 +15,2925,4.0,1166585692 +15,2947,5.0,1040205655 +15,2949,4.0,1040205655 +15,2952,1.0,1054449851 +15,2959,5.0,997938894 +15,2973,4.0,997939623 +15,2976,2.0,1469330578 +15,2983,4.0,997938576 +15,2985,3.0,1052896740 +15,2987,4.0,997939144 +15,2990,3.5,1345398317 +15,2993,4.0,1345381197 +15,2997,5.0,997938310 +15,3000,4.0,997939086 +15,3004,1.0,1033344685 +15,3005,1.0,1033344702 +15,3006,5.0,997938800 +15,3007,2.5,1361078485 +15,3008,2.0,1033344865 +15,3010,4.0,997938727 +15,3019,3.0,997938954 +15,3020,3.0,1166586681 +15,3030,4.0,997939021 +15,3033,4.0,1052896867 +15,3039,4.0,1033344267 +15,3044,3.0,1058250603 +15,3052,3.0,997939653 +15,3060,4.0,1052896975 +15,3077,3.0,1033345241 +15,3081,1.0,1033344958 +15,3082,3.0,1166586269 +15,3083,5.0,997938310 +15,3089,3.0,997938895 +15,3101,4.0,997937311 +15,3104,4.0,1040205792 +15,3107,3.0,1316395917 +15,3108,4.0,997939453 +15,3113,2.0,1166587025 +15,3114,1.0,1033344983 +15,3128,4.0,997938931 +15,3129,3.5,1054449917 +15,3134,1.0,1044347881 +15,3146,1.5,1460076724 +15,3147,1.0,997939415 +15,3148,1.0,1134521933 +15,3150,3.0,1245361773 +15,3152,3.0,997938931 +15,3157,1.0,1033344970 +15,3160,3.0,997938941 +15,3168,2.5,1338698402 +15,3173,2.5,1122576723 +15,3174,1.0,1033344865 +15,3175,4.0,997939162 +15,3176,2.0,997938413 +15,3181,1.0,997939393 +15,3182,2.0,997937726 +15,3185,2.0,1033344958 +15,3210,5.0,1054449670 +15,3219,2.0,1033344897 +15,3225,1.0,997938046 +15,3246,4.0,1033345148 +15,3250,2.0,1034544351 +15,3253,3.0,997939639 +15,3255,2.0,1134521644 +15,3256,2.0,1361831567 +15,3261,4.0,1058250521 +15,3262,1.0,997938391 +15,3265,4.0,1345397753 +15,3266,5.0,1034544304 +15,3267,3.0,1063565307 +15,3272,2.0,1033345227 +15,3273,1.0,997937890 +15,3275,0.5,1347936677 +15,3285,2.0,1416119608 +15,3286,3.0,997937999 +15,3298,4.0,1033344702 +15,3300,5.0,997937876 +15,3301,4.0,1044348420 +15,3307,3.0,1082220247 +15,3316,1.5,1416119948 +15,3317,5.0,997937786 +15,3318,3.0,997937986 +15,3320,5.0,1040205943 +15,3328,4.0,997937748 +15,3358,2.5,1096005300 +15,3361,3.0,1054449689 +15,3362,3.5,1120209453 +15,3386,3.0,997938391 +15,3390,1.0,997937239 +15,3408,2.0,1033344772 +15,3409,4.0,997937902 +15,3418,1.0,1040205754 +15,3421,1.5,1063565279 +15,3429,3.0,997938310 +15,3435,2.5,1054450188 +15,3448,2.5,1193436085 +15,3461,3.0,997939144 +15,3462,1.5,1063565329 +15,3471,4.0,1034544304 +15,3476,4.5,1465881233 +15,3477,3.0,1093028035 +15,3481,5.0,997937748 +15,3484,0.5,1465880417 +15,3489,2.0,1166586405 +15,3499,3.0,997938242 +15,3504,4.0,997938810 +15,3505,4.0,1134521930 +15,3510,2.0,1033344795 +15,3512,3.0,997937926 +15,3527,3.0,1052896819 +15,3534,1.0,997937935 +15,3535,1.0,997937822 +15,3536,4.0,997937808 +15,3538,1.5,1096005190 +15,3543,2.0,1033344752 +15,3552,2.0,1465880183 +15,3555,1.0,1166586553 +15,3556,3.0,997937786 +15,3566,3.0,997937902 +15,3569,4.0,997937682 +15,3571,4.0,997937848 +15,3577,3.5,1465954636 +15,3578,2.0,1033344795 +15,3598,3.0,997937762 +15,3617,4.0,997937822 +15,3618,2.0,997937876 +15,3623,1.0,1033344878 +15,3624,2.0,1122576735 +15,3626,3.0,997937961 +15,3633,4.0,1345381200 +15,3634,2.0,1044347881 +15,3635,3.5,1345397811 +15,3638,3.5,1345398289 +15,3639,2.0,1345397721 +15,3671,2.0,1166586157 +15,3683,4.0,997938800 +15,3707,5.0,1465881231 +15,3717,1.0,1163876415 +15,3728,4.0,1443385280 +15,3730,5.0,997938346 +15,3735,2.0,997938822 +15,3742,2.5,1082220261 +15,3745,1.0,997937836 +15,3747,2.0,997937700 +15,3751,1.0,997937726 +15,3752,1.0,997937971 +15,3755,1.5,1416119541 +15,3763,2.0,1122576740 +15,3783,2.0,997937700 +15,3785,4.0,997937822 +15,3786,2.0,1033344712 +15,3787,3.0,997937795 +15,3788,3.0,997938391 +15,3793,2.0,997937808 +15,3794,4.0,997937914 +15,3798,2.0,997937999 +15,3800,2.0,1039243666 +15,3801,3.0,997938372 +15,3823,2.0,997937726 +15,3825,1.0,997938015 +15,3826,1.0,997938035 +15,3827,2.5,1134522068 +15,3852,3.0,1044348420 +15,3854,3.0,1240203682 +15,3861,3.0,1044348492 +15,3863,2.0,997937860 +15,3868,4.0,1134521920 +15,3882,4.0,997937890 +15,3892,1.0,1039243705 +15,3893,1.0,997937860 +15,3896,3.0,997937890 +15,3897,3.0,997937700 +15,3910,2.0,997937848 +15,3911,2.0,997937427 +15,3915,5.0,997937700 +15,3943,3.0,997937860 +15,3948,5.0,1044348382 +15,3949,5.0,997937413 +15,3952,4.0,997937890 +15,3956,1.0,997937986 +15,3967,1.0,997937762 +15,3968,2.5,1425876021 +15,3969,1.0,997937459 +15,3977,3.0,997937848 +15,3979,1.0,997938035 +15,3981,1.0,1033344924 +15,3983,5.0,997937413 +15,3984,4.0,1338698406 +15,3986,1.0,997937926 +15,3987,4.0,997937961 +15,3988,1.0,1166587057 +15,3989,3.0,997937700 +15,3990,1.0,997937999 +15,3993,1.0,997937902 +15,3994,4.0,997937442 +15,3996,5.0,997937413 +15,3998,1.0,997937614 +15,3999,3.0,997937459 +15,4005,3.5,1345398275 +15,4006,3.0,1052896916 +15,4007,3.5,1426110367 +15,4010,2.0,1033345087 +15,4011,1.0,997937606 +15,4014,2.0,1044348492 +15,4015,5.0,997937442 +15,4017,4.0,997937413 +15,4018,1.0,1044348492 +15,4019,2.0,1416119589 +15,4020,3.0,997937442 +15,4021,3.0,997937427 +15,4022,3.0,997937413 +15,4023,2.0,997937442 +15,4025,1.0,1044348492 +15,4027,3.0,997937606 +15,4029,4.0,1033343955 +15,4030,2.0,997937459 +15,4033,4.0,1084489330 +15,4034,4.0,997937413 +15,4036,1.0,997937427 +15,4037,3.0,997938372 +15,4052,1.0,997937442 +15,4055,1.0,1033344023 +15,4056,5.0,997937442 +15,4066,4.0,997938994 +15,4079,4.0,1052896685 +15,4082,1.0,1034544351 +15,4085,3.0,1345398332 +15,4121,3.0,1033344307 +15,4144,4.0,997937700 +15,4148,1.0,997938035 +15,4149,1.0,1349622626 +15,4158,2.0,997937459 +15,4161,3.0,997937914 +15,4167,1.0,997937986 +15,4168,3.0,1040205943 +15,4210,4.5,1061496845 +15,4223,1.0,997937775 +15,4225,1.0,997937762 +15,4226,5.0,997937682 +15,4232,3.0,997939162 +15,4235,4.0,997937713 +15,4238,3.0,997937986 +15,4239,1.0,997937808 +15,4246,2.0,997937713 +15,4247,1.0,1349622526 +15,4262,3.0,1120209753 +15,4270,1.5,1166586578 +15,4271,4.0,997937762 +15,4299,2.5,1374637769 +15,4302,5.0,997937808 +15,4306,1.0,1033343955 +15,4308,2.0,1033343955 +15,4310,3.0,997937366 +15,4321,2.0,997939193 +15,4322,4.0,1345397847 +15,4343,1.0,997937949 +15,4344,2.0,997937334 +15,4351,3.0,1349048073 +15,4361,5.0,997938151 +15,4367,1.0,997937374 +15,4369,3.0,997937366 +15,4370,1.0,997937822 +15,4372,3.0,1039243666 +15,4378,3.0,1033343955 +15,4380,2.0,1033345068 +15,4381,2.0,997937346 +15,4383,3.0,997937775 +15,4386,1.0,997937384 +15,4388,3.0,1416119736 +15,4410,3.0,997939653 +15,4446,4.0,997937334 +15,4447,1.5,1096005216 +15,4448,1.0,997937822 +15,4450,2.0,1054774846 +15,4451,2.5,1075143282 +15,4489,4.5,1345397842 +15,4546,3.0,997938203 +15,4571,3.0,997938617 +15,4621,3.0,997937575 +15,4623,4.0,997937575 +15,4638,1.0,997937346 +15,4639,1.0,1033344625 +15,4641,3.0,1033343955 +15,4642,1.5,1469330631 +15,4643,3.0,997937346 +15,4654,1.0,997937551 +15,4658,2.0,997937544 +15,4666,1.0,997937539 +15,4675,2.0,997937530 +15,4678,4.0,997937519 +15,4679,3.0,997937519 +15,4700,2.0,997937366 +15,4701,3.0,997937366 +15,4713,4.0,997937494 +15,4718,4.0,1044348492 +15,4719,2.0,1374637779 +15,4720,2.0,1039243705 +15,4723,3.5,1054449465 +15,4727,3.0,1052896975 +15,4728,4.0,1044348492 +15,4731,5.0,1033344023 +15,4734,1.0,1044348420 +15,4738,3.5,1075143297 +15,4744,1.0,1039243705 +15,4776,2.5,1054449369 +15,4816,3.0,1166586875 +15,4823,2.5,1416119762 +15,4844,2.0,1044348492 +15,4848,2.0,1054449351 +15,4873,5.0,1040206368 +15,4878,4.0,1039243666 +15,4881,1.5,1054449340 +15,4886,5.0,1033344055 +15,4888,3.0,1054449355 +15,4890,3.0,1033343866 +15,4896,1.0,1040206325 +15,4901,4.0,1054449484 +15,4902,2.0,1033343828 +15,4903,5.0,1033939395 +15,4914,4.0,1465880321 +15,4958,1.0,1469330599 +15,4963,4.0,1044348382 +15,4973,2.0,1033343815 +15,4974,2.0,1349622574 +15,4975,1.0,1040205965 +15,4979,5.0,1033343841 +15,4992,1.5,1425876112 +15,4993,5.0,1033343815 +15,4995,1.0,1033343815 +15,5000,3.5,1443385401 +15,5008,3.5,1120209745 +15,5010,4.5,1054449333 +15,5013,2.0,1033343815 +15,5015,1.0,1033344055 +15,5026,2.0,1041532617 +15,5060,1.5,1054450221 +15,5066,3.0,1033343866 +15,5071,5.0,1044348382 +15,5074,1.0,1096005077 +15,5075,4.0,1033344006 +15,5110,1.5,1416119882 +15,5120,3.0,1345397962 +15,5128,1.0,1033343934 +15,5135,4.0,1044348382 +15,5170,2.0,1033343901 +15,5171,0.5,1416119747 +15,5218,1.0,1033344044 +15,5219,1.0,1033343934 +15,5220,3.0,1033343919 +15,5222,2.0,1122925555 +15,5225,1.5,1075143288 +15,5254,1.0,1033343866 +15,5266,1.0,1033344286 +15,5269,4.5,1240203827 +15,5279,0.5,1054449705 +15,5283,3.0,1033343934 +15,5291,3.5,1416120007 +15,5293,3.0,1033343841 +15,5296,1.5,1465880704 +15,5298,2.5,1367800223 +15,5299,0.5,1416119542 +15,5308,2.5,1465794274 +15,5313,1.0,1033343919 +15,5319,3.5,1054449455 +15,5339,3.5,1345397799 +15,5346,3.5,1465954627 +15,5349,1.0,1039243048 +15,5363,1.0,1033343901 +15,5364,2.5,1465881201 +15,5377,4.0,1096005096 +15,5378,3.0,1039243048 +15,5388,2.0,1166586831 +15,5391,2.5,1367800228 +15,5400,3.0,1039243048 +15,5410,2.0,1052896740 +15,5416,1.5,1096005195 +15,5418,2.0,1033344065 +15,5419,1.0,1039243069 +15,5444,1.0,1040205624 +15,5445,5.0,1033344034 +15,5449,2.0,1033344188 +15,5458,1.0,1033344374 +15,5459,1.0,1033344188 +15,5463,1.0,1033344188 +15,5464,0.5,1166586482 +15,5477,5.0,1033344357 +15,5478,2.0,1052896819 +15,5481,2.0,1033344374 +15,5500,4.0,1033344296 +15,5502,1.0,1033344129 +15,5504,2.0,1033344119 +15,5507,1.0,1033344145 +15,5508,3.0,1054503542 +15,5515,4.0,1033344401 +15,5524,1.0,1033344137 +15,5528,1.0,1033344334 +15,5541,3.0,1035258747 +15,5553,2.0,1035258747 +15,5568,3.0,1035258747 +15,5577,2.5,1054513297 +15,5617,3.5,1222576379 +15,5618,1.5,1084489317 +15,5620,0.5,1425876082 +15,5630,1.5,1055439475 +15,5650,3.0,1034544351 +15,5662,4.0,1035258564 +15,5669,4.0,1046209630 +15,5673,3.5,1075142963 +15,5679,4.0,1035258362 +15,5791,2.0,1039242955 +15,5792,4.0,1054449327 +15,5809,3.0,1052906939 +15,5816,1.0,1416119666 +15,5872,3.0,1166587383 +15,5878,1.0,1066591270 +15,5893,5.0,1040205624 +15,5902,4.0,1044220069 +15,5903,2.0,1357110234 +15,5909,1.0,1096005087 +15,5945,1.0,1096005111 +15,5952,5.0,1040448133 +15,5954,1.0,1084489297 +15,5956,2.5,1163876422 +15,5957,4.5,1075143302 +15,5959,3.0,1443385275 +15,5968,3.0,1040205624 +15,5989,2.5,1134521661 +15,5991,1.0,1096005123 +15,5995,4.0,1120209437 +15,6003,1.5,1096005130 +15,6016,2.0,1093027992 +15,6025,3.0,1046209643 +15,6037,3.0,1465954655 +15,6059,2.0,1416119908 +15,6155,0.5,1416119753 +15,6157,0.5,1416119690 +15,6180,1.0,1046209705 +15,6188,3.5,1416119611 +15,6203,3.0,1046209705 +15,6218,0.5,1096005101 +15,6271,4.0,1052897100 +15,6281,1.0,1163876393 +15,6283,1.0,1416119893 +15,6287,0.5,1425876025 +15,6296,1.5,1096005116 +15,6299,2.5,1075142952 +15,6303,2.5,1055439424 +15,6327,4.0,1084489307 +15,6331,3.0,1120208617 +15,6333,3.0,1052896685 +15,6365,1.0,1054271424 +15,6373,2.0,1134522002 +15,6377,1.0,1061496771 +15,6378,3.0,1122576748 +15,6380,3.0,1166585438 +15,6385,1.5,1084489293 +15,6433,3.0,1465793939 +15,6440,3.5,1054449659 +15,6442,3.5,1055439392 +15,6464,2.5,1056617566 +15,6502,3.5,1058249439 +15,6503,2.5,1134521973 +15,6534,2.0,1061496778 +15,6537,2.5,1058249457 +15,6539,3.5,1061496766 +15,6547,1.0,1061496761 +15,6552,1.5,1082220233 +15,6586,3.0,1416119958 +15,6593,1.0,1096005208 +15,6620,1.5,1082220241 +15,6641,4.0,1093028561 +15,6650,3.5,1120209771 +15,6708,2.0,1082220217 +15,6711,3.5,1065197251 +15,6754,0.5,1425876028 +15,6773,1.0,1465881072 +15,6783,2.0,1082220258 +15,6787,5.0,1120209297 +15,6816,4.0,1096005320 +15,6820,2.5,1067797435 +15,6863,2.0,1082220208 +15,6867,3.5,1093981691 +15,6870,3.5,1068955127 +15,6873,1.0,1096005187 +15,6874,1.0,1067797349 +15,6875,1.0,1096005180 +15,6879,2.5,1416119807 +15,6885,1.0,1465954640 +15,6932,4.5,1075142920 +15,6934,1.5,1338699263 +15,6936,1.0,1075142924 +15,6942,3.0,1088621558 +15,6944,4.0,1465794270 +15,6947,1.0,1347936706 +15,6953,2.0,1083003232 +15,6957,4.0,1222576385 +15,6961,2.5,1240203829 +15,6975,4.0,1093028559 +15,6978,2.5,1097770851 +15,6979,3.0,1257734253 +15,6989,2.5,1348976559 +15,7003,2.0,1367800233 +15,7004,2.5,1374637760 +15,7008,3.5,1240203970 +15,7010,3.5,1465954687 +15,7028,3.5,1132469120 +15,7034,4.5,1443384409 +15,7090,3.0,1120209290 +15,7123,3.5,1347936794 +15,7132,3.0,1096005056 +15,7143,2.0,1088621554 +15,7147,1.5,1088621484 +15,7153,1.5,1075142916 +15,7156,3.0,1120209458 +15,7162,1.0,1075142909 +15,7173,0.5,1416119886 +15,7199,1.0,1096005109 +15,7254,1.0,1166587408 +15,7265,3.5,1193435338 +15,7293,1.0,1093028019 +15,7317,3.0,1082220195 +15,7323,2.0,1222576372 +15,7325,0.5,1416119755 +15,7327,1.5,1082220223 +15,7346,3.0,1465954961 +15,7348,2.0,1093028001 +15,7361,5.0,1082220175 +15,7371,1.0,1097770844 +15,7373,1.5,1134521979 +15,7438,0.5,1093981610 +15,7444,1.0,1425876074 +15,7445,1.5,1416119694 +15,7451,3.5,1416119705 +15,7458,1.5,1166587430 +15,7484,4.0,1338698422 +15,7487,1.5,1240203696 +15,7560,3.5,1093070784 +15,7569,3.5,1345397687 +15,7573,2.5,1345398305 +15,7698,3.0,1345381192 +15,7792,2.5,1345397672 +15,7925,3.0,1096005042 +15,8011,2.0,1093027976 +15,8264,4.0,1465793979 +15,8360,2.5,1134522006 +15,8361,4.0,1093027865 +15,8366,2.5,1088621517 +15,8368,1.5,1163876352 +15,8376,2.5,1166587363 +15,8464,3.0,1416119547 +15,8528,1.0,1122576284 +15,8529,1.5,1257734240 +15,8531,1.5,1465880288 +15,8581,2.5,1361078268 +15,8582,3.5,1120209740 +15,8622,3.5,1163876408 +15,8623,3.0,1096005049 +15,8636,3.0,1093027850 +15,8638,4.0,1128274489 +15,8641,3.0,1349622612 +15,8644,1.0,1163876378 +15,8645,2.0,1120210020 +15,8665,3.5,1093027853 +15,8781,0.5,1416119915 +15,8784,2.0,1134521997 +15,8798,3.0,1166586987 +15,8807,2.5,1349622634 +15,8865,1.0,1166981777 +15,8874,2.5,1122925517 +15,8910,2.5,1120210034 +15,8914,4.5,1101423864 +15,8917,4.0,1465880526 +15,8930,2.5,1166585434 +15,8948,1.0,1166981765 +15,8949,4.5,1120209300 +15,8950,2.0,1357110243 +15,8957,3.0,1134522096 +15,8958,3.5,1134522079 +15,8961,2.0,1101423869 +15,8970,2.0,1163876370 +15,8972,3.5,1374637712 +15,8974,2.5,1374637844 +15,8984,2.0,1166981834 +15,26131,5.0,1222575895 +15,26152,4.0,1134521251 +15,26587,5.0,1416120087 +15,26729,4.5,1166585398 +15,26810,2.0,1166587331 +15,27020,2.5,1240203954 +15,27478,2.5,1349622724 +15,27660,4.0,1166587397 +15,27773,1.0,1134521148 +15,27821,1.0,1348976609 +15,27846,4.0,1120209293 +15,27904,2.5,1347936774 +15,30707,1.5,1127035004 +15,30749,2.0,1120208607 +15,30810,1.5,1136904803 +15,30812,0.5,1416119604 +15,30825,1.5,1416119717 +15,31685,0.5,1361831527 +15,31696,3.5,1127035028 +15,32587,3.5,1136087271 +15,33004,0.5,1127035016 +15,33154,3.5,1338702522 +15,33166,3.5,1132469115 +15,33493,5.0,1132469077 +15,33679,3.5,1136904851 +15,33794,4.5,1120208603 +15,34048,0.5,1316395912 +15,34072,1.5,1361078474 +15,34150,1.0,1416119744 +15,34162,1.0,1141391741 +15,34319,1.0,1316395893 +15,34334,1.5,1367765144 +15,34405,0.5,1357110418 +15,34542,3.5,1141391837 +15,35836,3.0,1135737540 +15,35957,2.5,1141391844 +15,36517,1.5,1138537176 +15,36529,1.0,1416119600 +15,37386,2.0,1465954599 +15,37729,2.0,1141391812 +15,37741,2.5,1425876066 +15,38061,4.5,1222576339 +15,38886,1.5,1338698465 +15,39292,4.5,1166587434 +15,40583,2.0,1416119810 +15,40815,1.5,1416119662 +15,41997,2.5,1258259502 +15,42718,4.5,1348976510 +15,44004,1.0,1465880318 +15,44191,2.5,1240211404 +15,44195,2.0,1222576358 +15,44199,4.0,1222575879 +15,44555,1.0,1465794625 +15,44597,2.5,1316408165 +15,44665,1.0,1240211399 +15,44761,1.5,1357109999 +15,44788,4.0,1465793925 +15,45186,2.5,1316396016 +15,45447,1.0,1425876007 +15,45499,2.5,1338698829 +15,45517,0.5,1416119707 +15,45666,4.0,1374637848 +15,45672,1.5,1465794277 +15,45720,1.5,1416119790 +15,45722,2.0,1416120304 +15,45728,0.5,1416119889 +15,45950,3.0,1169616283 +15,46530,0.5,1338699292 +15,46578,1.0,1338702417 +15,46723,2.0,1367800237 +15,46970,2.0,1416119963 +15,46972,3.5,1374637631 +15,46976,3.5,1222576367 +15,47610,1.5,1245382906 +15,47999,2.5,1465793916 +15,48043,0.5,1416119898 +15,48082,1.0,1347937644 +15,48385,4.0,1257734226 +15,48394,1.5,1348976680 +15,48516,3.0,1222575856 +15,48774,4.0,1240211394 +15,48780,4.0,1222578045 +15,49272,4.0,1222578063 +15,49278,2.5,1316395906 +15,49286,2.5,1465880683 +15,50851,3.5,1443384396 +15,50872,3.5,1245361883 +15,51080,4.5,1222578101 +15,51255,1.5,1222576350 +15,51540,5.0,1222578057 +15,51662,2.0,1347936470 +15,52245,1.5,1349622540 +15,52328,1.5,1347936786 +15,52604,2.0,1443384826 +15,52722,1.5,1338699286 +15,52973,3.5,1349622826 +15,53322,3.5,1425876037 +15,53464,1.5,1443385025 +15,53894,2.5,1338702524 +15,53972,3.0,1338698806 +15,53996,4.0,1257734285 +15,54001,2.0,1416119677 +15,54272,1.0,1425875994 +15,54286,2.5,1258259468 +15,54372,4.5,1238804101 +15,54503,3.5,1338698617 +15,54881,4.5,1361078498 +15,55247,1.0,1416120041 +15,55269,1.0,1374638435 +15,55276,3.5,1222578076 +15,55442,2.5,1416119972 +15,55765,2.0,1361078252 +15,55820,2.0,1338698362 +15,55830,2.5,1443384839 +15,56174,1.0,1416119594 +15,56367,2.0,1374638451 +15,56563,4.0,1465793961 +15,56775,3.0,1443385030 +15,56782,1.0,1416119686 +15,57368,1.5,1425876060 +15,57640,4.0,1216576560 +15,57669,1.5,1338702423 +15,58025,1.0,1338698854 +15,58295,1.5,1347936713 +15,58559,4.5,1222024895 +15,58998,1.5,1240203919 +15,59126,4.0,1465793918 +15,59315,4.5,1216576545 +15,59369,2.5,1347936669 +15,59519,3.5,1216576555 +15,59615,1.0,1338698814 +15,59784,3.5,1357110059 +15,59900,1.5,1349622715 +15,60037,0.5,1216576611 +15,60040,3.0,1216576596 +15,60069,4.5,1216576570 +15,60072,1.0,1316396154 +15,60074,1.0,1416119795 +15,60126,1.0,1361831545 +15,60295,3.5,1316395628 +15,60684,4.0,1238801478 +15,60766,3.5,1240211388 +15,61024,1.0,1357110065 +15,61132,2.0,1222024906 +15,61323,1.0,1257734243 +15,61394,2.0,1349622731 +15,62374,3.5,1367764780 +15,62434,3.5,1443384812 +15,62511,4.5,1367800217 +15,63082,0.5,1357110411 +15,63113,3.5,1245309336 +15,63131,2.0,1338698608 +15,63859,3.0,1348976367 +15,64620,2.0,1245021120 +15,64839,1.0,1416119731 +15,64957,1.5,1416119711 +15,65642,4.5,1357110430 +15,65802,0.5,1465880993 +15,66097,3.0,1238804089 +15,66130,1.5,1240202854 +15,66203,1.0,1465880257 +15,66596,1.5,1465880651 +15,66665,3.0,1257733143 +15,66934,0.5,1338698623 +15,67087,1.5,1426110601 +15,67193,1.5,1257733150 +15,67665,3.5,1245021164 +15,67734,1.5,1374638441 +15,67997,4.0,1338702402 +15,68157,3.0,1338698899 +15,68159,4.0,1245021148 +15,68237,3.5,1338698337 +15,68319,2.0,1316396161 +15,68324,1.0,1465954712 +15,68358,4.5,1245021136 +15,68791,4.0,1316396225 +15,68793,3.0,1374637633 +15,68954,2.0,1338698886 +15,69122,1.0,1338702414 +15,69306,2.0,1389440855 +15,69406,1.0,1361831532 +15,69436,0.5,1465880996 +15,69481,4.5,1338698471 +15,69524,4.0,1458506351 +15,69526,3.0,1257733119 +15,70286,5.0,1257734187 +15,70293,3.5,1261945002 +15,70336,4.5,1316395878 +15,70697,2.5,1374637773 +15,70862,2.5,1465793997 +15,71211,3.5,1257734180 +15,71264,1.5,1465794388 +15,71282,2.5,1465793912 +15,71462,3.0,1465793920 +15,71464,2.0,1257735545 +15,71535,1.0,1425876002 +15,71838,2.0,1465880969 +15,72011,2.5,1338702430 +15,72226,1.5,1338698882 +15,72378,1.0,1357110070 +15,72998,4.0,1261944230 +15,73017,1.0,1273090173 +15,73344,3.5,1316395633 +15,74458,0.5,1338698316 +15,74649,4.0,1338702442 +15,74795,1.5,1367764758 +15,74851,0.5,1361831555 +15,76077,2.0,1458506610 +15,76093,4.0,1273090169 +15,76251,3.0,1273090163 +15,76293,3.0,1361831522 +15,76738,2.5,1379040852 +15,77364,2.5,1367765175 +15,77455,4.0,1367801385 +15,77561,1.0,1316395588 +15,78209,3.0,1458506646 +15,78469,3.0,1316395983 +15,78499,2.0,1338698896 +15,78574,4.5,1443384445 +15,79057,2.5,1367765128 +15,79132,5.0,1316395554 +15,79185,2.5,1458506381 +15,79242,2.5,1465880302 +15,79293,1.5,1349048062 +15,79428,1.0,1349622587 +15,79695,0.5,1367765181 +15,79702,1.5,1338698870 +15,80126,1.0,1465794431 +15,80185,3.0,1374638009 +15,80463,2.0,1361078260 +15,80489,4.0,1316395567 +15,80862,2.5,1465793930 +15,80906,4.0,1361078281 +15,81158,3.0,1367801466 +15,81191,3.0,1374638035 +15,81229,3.5,1348976539 +15,81591,1.0,1338698369 +15,81782,3.0,1316395900 +15,81834,2.0,1458506571 +15,81845,3.0,1367801474 +15,81847,1.0,1338698918 +15,81932,3.0,1338698461 +15,82461,3.0,1316396252 +15,82854,0.5,1465880518 +15,83270,1.0,1361078285 +15,83293,3.5,1367801456 +15,83349,1.0,1316396136 +15,83613,0.5,1367765123 +15,83827,4.0,1425875865 +15,84152,3.0,1345381190 +15,84374,2.5,1465880243 +15,84392,2.5,1367801369 +15,84954,1.0,1347936749 +15,85414,4.0,1316395607 +15,85774,4.0,1367801387 +15,86190,1.5,1348976211 +15,86332,1.0,1316395573 +15,86644,1.5,1338698824 +15,86781,5.0,1316395597 +15,86833,4.0,1458506593 +15,86882,2.5,1458506580 +15,86898,3.5,1458507263 +15,86911,0.5,1458505901 +15,87222,4.0,1458506624 +15,87232,1.5,1316395580 +15,87304,0.5,1374638031 +15,87306,1.0,1347936763 +15,87430,0.5,1338698810 +15,87485,1.0,1458507259 +15,87520,4.5,1316396021 +15,87869,2.5,1458506136 +15,87930,2.0,1443385461 +15,88125,3.0,1416120053 +15,88129,2.5,1338698356 +15,88140,1.0,1348976202 +15,88163,3.5,1386367929 +15,88356,1.5,1316408269 +15,88744,4.5,1316395487 +15,88950,0.5,1316395783 +15,89090,1.5,1367801460 +15,89337,3.0,1374638024 +15,89470,1.5,1458506641 +15,89492,5.0,1361078138 +15,89745,3.0,1338697857 +15,89840,1.0,1349048081 +15,90249,3.5,1338698848 +15,90266,2.5,1367801470 +15,90428,4.5,1348977157 +15,90439,0.5,1361078276 +15,90531,4.0,1338698144 +15,90600,3.5,1367801363 +15,90603,2.5,1348976195 +15,90647,3.0,1374637765 +15,90746,1.5,1338698014 +15,90866,1.0,1338698247 +15,90870,0.5,1465880427 +15,91500,0.5,1338697915 +15,91505,1.0,1347936860 +15,91529,3.0,1345350956 +15,91535,2.0,1348979143 +15,91542,1.0,1348976183 +15,91630,2.5,1338698134 +15,91653,4.5,1338698154 +15,91658,4.0,1338698344 +15,91842,3.0,1338698158 +15,91869,3.0,1338697924 +15,92420,1.5,1465880962 +15,92507,2.5,1338698152 +15,93326,1.0,1361831455 +15,93363,1.0,1338699137 +15,93510,3.0,1338697920 +15,93721,2.0,1458507291 +15,93831,2.5,1338697984 +15,93840,3.5,1338697905 +15,94015,1.0,1338697996 +15,94018,1.0,1338698001 +15,94478,1.0,1338698006 +15,94677,4.0,1338697991 +15,94777,2.5,1338697968 +15,94780,1.5,1345351002 +15,94833,1.5,1338697964 +15,94864,1.5,1345350968 +15,94959,1.0,1374638428 +15,95105,1.0,1345350979 +15,95167,1.0,1345350959 +15,95199,0.5,1465880715 +15,95311,1.5,1347937652 +15,95443,0.5,1357109952 +15,95510,3.5,1345350961 +15,95558,1.0,1357109941 +15,95875,1.5,1345350995 +15,96079,3.0,1361831420 +15,96150,2.0,1345350973 +15,96488,3.5,1361076608 +15,96610,1.5,1374637996 +15,96667,2.5,1357109969 +15,96737,2.5,1458506349 +15,97304,2.5,1367764836 +15,97393,3.5,1386368013 +15,97866,3.5,1361076604 +15,97913,2.5,1426110392 +15,97923,3.0,1386367936 +15,97938,2.5,1389482906 +15,98122,0.5,1465793928 +15,98154,0.5,1425876388 +15,98809,0.5,1416119923 +15,98961,3.0,1367764716 +15,99007,1.0,1465880234 +15,99112,3.5,1458506339 +15,99114,1.5,1425876390 +15,99149,1.0,1357109923 +15,99468,2.5,1386368031 +15,99811,4.0,1361831110 +15,100032,2.0,1361076617 +15,100083,0.5,1465880648 +15,100365,2.5,1361831156 +15,100383,1.0,1400818425 +15,100517,3.0,1381534422 +15,100556,4.0,1374638046 +15,100581,1.5,1465793952 +15,100714,3.0,1386367955 +15,100745,1.0,1367764695 +15,101076,3.0,1367764864 +15,101112,0.5,1465880292 +15,101362,3.0,1465880371 +15,101864,3.5,1400818444 +15,101895,1.0,1386367999 +15,102123,1.5,1458506656 +15,102125,2.0,1389482894 +15,102445,3.0,1386367981 +15,102800,2.5,1386367968 +15,102880,0.5,1400818394 +15,102903,1.0,1458506599 +15,103042,2.5,1386367923 +15,103228,5.0,1379040901 +15,103249,0.5,1465794267 +15,103253,1.0,1465954520 +15,103372,1.0,1465880282 +15,103810,1.5,1465880264 +15,104211,3.5,1458506673 +15,104241,1.0,1458506703 +15,104272,3.0,1425875562 +15,104726,3.0,1381534394 +15,104841,3.5,1386367735 +15,104879,4.0,1381534447 +15,105504,3.5,1425875553 +15,106072,2.0,1443384429 +15,106111,1.0,1386367830 +15,106332,3.5,1386367813 +15,106489,2.0,1389440765 +15,106782,3.5,1416120264 +15,106916,1.5,1416120141 +15,106920,4.5,1416119571 +15,107348,0.5,1465881258 +15,107406,4.0,1425875579 +15,107910,4.5,1426110023 +15,108188,2.0,1416120159 +15,108190,0.5,1458506323 +15,108689,0.5,1465954590 +15,108729,1.0,1465954969 +15,108932,1.5,1407125286 +15,108945,1.0,1458506369 +15,109187,0.5,1465794437 +15,109374,1.0,1416119568 +15,109487,3.5,1425875392 +15,109673,1.5,1416120169 +15,109687,2.5,1465793948 +15,109848,3.0,1425875503 +15,110102,4.0,1416120131 +15,110127,0.5,1416120162 +15,110553,0.5,1416120149 +15,110730,1.0,1416120159 +15,110771,2.0,1465880696 +15,111228,2.5,1443385454 +15,111360,1.0,1425875482 +15,111362,3.5,1416120099 +15,111364,4.0,1400818348 +15,111443,4.0,1407125275 +15,111622,4.5,1425875435 +15,111759,4.5,1416120100 +15,111781,4.5,1443384269 +15,112138,3.5,1407125270 +15,112171,2.5,1425875460 +15,112183,2.0,1426110071 +15,112370,3.5,1416120171 +15,112552,1.5,1443384078 +15,112556,4.5,1425875403 +15,112623,4.0,1407125273 +15,112788,1.0,1465880699 +15,112852,4.5,1416119564 +15,112940,1.5,1425875476 +15,113345,0.5,1465794105 +15,113348,2.0,1425875488 +15,113378,0.5,1425875497 +15,113741,1.0,1425875574 +15,114180,1.0,1465793290 +15,114635,4.0,1416120202 +15,115149,4.0,1425875463 +15,115502,3.5,1443384500 +15,115569,5.0,1425875406 +15,115617,1.5,1425875413 +15,115713,3.5,1443384091 +15,116161,1.0,1425875458 +15,116797,0.5,1425875401 +15,116799,0.5,1465794406 +15,116823,0.5,1425875449 +15,116897,4.5,1443384373 +15,117176,1.0,1425875426 +15,117529,4.0,1443384296 +15,117533,3.5,1443384084 +15,118696,1.5,1443384307 +15,119141,2.0,1443384336 +15,119145,1.5,1425875443 +15,120466,1.5,1443384294 +15,120799,3.0,1443384317 +15,121171,3.0,1465793971 +15,121231,4.5,1458507341 +15,122882,1.0,1443384389 +15,122886,3.5,1458505928 +15,122890,3.0,1466051442 +15,122892,3.0,1443384000 +15,122900,3.0,1443384283 +15,122902,0.5,1443384352 +15,122904,1.0,1458505916 +15,122920,3.0,1465793115 +15,122924,2.5,1465793601 +15,127136,1.0,1443385387 +15,128360,2.5,1458505982 +15,129937,1.5,1443384322 +15,130452,2.0,1458506093 +15,130490,0.5,1465794100 +15,130576,2.0,1465793706 +15,130634,2.0,1458506081 +15,131013,3.0,1443384337 +15,132046,0.5,1465794103 +15,132480,3.0,1458506026 +15,132796,3.0,1443384330 +15,132961,3.0,1458507347 +15,134130,3.5,1458505912 +15,134368,4.5,1443384275 +15,134393,4.0,1458506097 +15,134853,1.0,1458505921 +15,135133,0.5,1465794150 +15,135436,1.0,1469330276 +15,135567,3.0,1467259301 +15,135569,3.0,1469330245 +15,136020,3.0,1458506089 +15,136562,1.5,1458506078 +15,136864,3.0,1465793719 +15,137337,3.5,1458505989 +15,137857,3.0,1465793116 +15,138036,1.0,1443384531 +15,139385,2.5,1458505973 +15,139644,3.0,1458505986 +15,139757,3.5,1465793975 +15,139855,2.0,1458506009 +15,140110,2.5,1465956541 +15,140174,4.0,1458505917 +15,140267,4.0,1465793185 +15,140711,2.5,1443384516 +15,140928,0.5,1465793205 +15,142488,3.5,1458505911 +15,142507,3.0,1465793179 +15,143385,2.5,1458506017 +15,145839,1.0,1465793183 +15,145935,3.0,1465793201 +15,146656,3.5,1458506016 +15,148626,3.5,1458505924 +15,149352,3.0,1465793208 +15,149354,3.5,1458506107 +15,149406,4.0,1465793192 +15,152057,0.5,1465793700 +15,152077,2.0,1465793170 +15,152079,1.5,1465880375 +15,152081,3.0,1460076733 +15,155820,1.0,1465793639 +15,156607,0.5,1465793691 +15,156609,3.5,1465793621 +15,157200,1.5,1465793612 +15,157296,2.0,1467259316 +15,157667,1.5,1465793630 +15,158238,3.5,1465794051 +15,158528,3.5,1467259294 +15,159093,1.0,1465793091 +15,159690,2.0,1465880080 +15,159755,1.0,1465793093 +15,159858,4.0,1466802910 +15,159972,0.5,1469330481 +15,160080,1.0,1469330238 +15,160271,2.5,1466802905 +15,160563,1.0,1469330270 +15,160565,2.0,1469330266 +15,160567,4.0,1469330242 +15,161155,0.5,1469330307 +16,50,4.5,1178364904 +16,318,4.0,1178364881 +16,337,4.0,1137577638 +16,527,4.0,1178364921 +16,750,4.0,1137577630 +16,1653,5.0,1137577694 +16,1704,5.0,1178363907 +16,1961,3.5,1178364916 +16,2012,4.0,1137577687 +16,2278,3.5,1137577912 +16,2539,4.0,1137577918 +16,2706,5.0,1137577616 +16,2797,3.0,1137577645 +16,2858,4.0,1148214528 +16,3623,4.0,1137577753 +16,4014,3.5,1137577979 +16,4231,4.5,1148214227 +16,4246,4.0,1137577889 +16,4718,4.5,1148214543 +16,4738,4.5,1148214272 +16,4772,5.0,1148214289 +16,4823,4.0,1148214251 +16,4995,4.5,1178364909 +16,5349,3.0,1137577776 +16,5445,4.5,1137577730 +16,6016,4.0,1178364961 +16,6711,4.5,1137578034 +16,6874,3.5,1137577905 +16,7346,4.0,1148214661 +17,6,4.5,1127469542 +17,25,4.5,1127469531 +17,29,4.5,1127470880 +17,32,4.5,1127469436 +17,36,4.5,1127469535 +17,47,5.0,1127469246 +17,50,5.0,1127469450 +17,111,5.0,1127469023 +17,170,4.0,1127470242 +17,172,3.5,1127468646 +17,185,3.0,1127469509 +17,194,4.0,1127470280 +17,198,5.0,1127468896 +17,223,2.5,1127469577 +17,235,5.0,1127469684 +17,247,2.0,1127471027 +17,260,3.5,1127474688 +17,288,2.0,1127469552 +17,293,4.0,1127469604 +17,296,5.0,1127469297 +17,307,3.5,1127471192 +17,318,5.0,1127469420 +17,348,3.5,1127470013 +17,356,2.5,1127469401 +17,377,0.5,1127469444 +17,431,4.5,1127471468 +17,480,0.5,1127469407 +17,482,0.5,1127475344 +17,492,5.0,1127472949 +17,527,4.0,1127469434 +17,541,5.0,1127469561 +17,555,4.0,1127469779 +17,590,3.0,1127469416 +17,593,4.5,1127469396 +17,608,3.5,1127469440 +17,680,4.5,1127472555 +17,714,4.5,1127473893 +17,736,2.5,1127469466 +17,778,4.5,1127469230 +17,858,5.0,1127469000 +17,866,4.5,1127470263 +17,903,5.0,1127468839 +17,904,4.5,1127468627 +17,908,5.0,1127468595 +17,910,3.5,1127470036 +17,912,4.5,1127471471 +17,913,5.0,1127468808 +17,922,5.0,1127468822 +17,923,4.5,1127469756 +17,924,4.5,1127469594 +17,928,4.5,1127471079 +17,930,3.5,1127472146 +17,931,4.5,1127474822 +17,942,3.5,1127470622 +17,965,3.5,1127470607 +17,1036,2.5,1127473110 +17,1077,4.0,1127473686 +17,1079,2.5,1127469628 +17,1089,5.0,1127469308 +17,1092,4.0,1127469973 +17,1095,2.0,1127471148 +17,1104,3.5,1127470400 +17,1136,5.0,1127469568 +17,1173,1.0,1127472932 +17,1175,4.5,1127470987 +17,1193,4.5,1127469556 +17,1199,4.5,1127469923 +17,1206,5.0,1127469650 +17,1210,3.5,1127473503 +17,1212,5.0,1127468800 +17,1213,5.0,1127469622 +17,1218,4.0,1127474633 +17,1220,4.0,1127469667 +17,1221,5.0,1127469002 +17,1230,5.0,1127469749 +17,1232,5.0,1127471445 +17,1235,5.0,1127470230 +17,1237,5.0,1127469169 +17,1240,3.0,1127474779 +17,1241,0.5,1127472490 +17,1244,4.0,1127470206 +17,1245,4.0,1127470820 +17,1246,5.0,1127469721 +17,1248,5.0,1127468791 +17,1249,2.5,1127470114 +17,1251,3.5,1127470489 +17,1252,5.0,1127468638 +17,1255,2.0,1127472442 +17,1258,3.5,1127469694 +17,1263,4.5,1127470072 +17,1265,4.5,1127469234 +17,1267,5.0,1127470095 +17,1270,4.5,1127469473 +17,1298,4.5,1127473670 +17,1333,2.0,1127470062 +17,1348,5.0,1127470930 +17,1396,3.0,1127468688 +17,1411,5.0,1127473298 +17,1464,5.0,1127468930 +17,1466,4.5,1127469223 +17,1517,3.0,1127469661 +17,1570,2.5,1127475516 +17,1580,2.5,1127469521 +17,1597,2.5,1127469976 +17,1617,4.5,1127469527 +17,1625,5.0,1127469905 +17,1627,4.0,1127471602 +17,1645,3.5,1127469988 +17,1653,5.0,1127468587 +17,1673,4.5,1127469912 +17,1674,4.5,1127474863 +17,1704,4.0,1127469601 +17,1721,0.5,1127472770 +17,1729,2.5,1127470069 +17,1732,4.0,1127468617 +17,1748,4.5,1127470043 +17,1809,3.0,1127469129 +17,1834,4.5,1127471258 +17,1884,5.0,1127472570 +17,1921,5.0,1127470262 +17,1923,3.0,1127469612 +17,1997,4.0,1127469217 +17,2010,5.0,1127470918 +17,2011,4.0,1127469773 +17,2012,4.0,1127469738 +17,2021,3.5,1127473090 +17,2023,4.0,1127469006 +17,2028,3.5,1127469494 +17,2066,5.0,1127468880 +17,2067,4.5,1127470656 +17,2076,5.0,1127468938 +17,2110,3.5,1127475491 +17,2117,4.5,1127474890 +17,2118,4.0,1127472523 +17,2159,2.5,1127473955 +17,2160,4.5,1127469357 +17,2167,2.0,1127470030 +17,2204,4.5,1127474873 +17,2232,4.5,1127474381 +17,2278,3.5,1127470130 +17,2324,4.5,1127469815 +17,2329,4.0,1127469961 +17,2353,3.5,1127468671 +17,2396,4.5,1127469563 +17,2455,4.0,1127470079 +17,2467,5.0,1127469379 +17,2490,4.0,1127470158 +17,2502,1.0,1127469848 +17,2539,2.5,1127470166 +17,2551,5.0,1127472530 +17,2571,5.0,1127469486 +17,2579,5.0,1127470677 +17,2594,5.0,1127470875 +17,2600,5.0,1127468906 +17,2606,3.0,1127472715 +17,2657,3.0,1127469890 +17,2672,3.5,1127473623 +17,2677,4.0,1127473860 +17,2683,3.0,1127469619 +17,2692,4.5,1127469870 +17,2707,3.5,1127473627 +17,2710,3.5,1127469711 +17,2712,3.0,1127469824 +17,2726,4.5,1127474088 +17,2762,4.5,1127469504 +17,2791,2.0,1127469746 +17,2858,4.5,1127469479 +17,2892,3.5,1127469374 +17,2916,4.0,1127469652 +17,2918,3.0,1127469690 +17,2952,2.5,1127472212 +17,2959,5.0,1127469609 +17,2973,5.0,1127471286 +17,2997,5.0,1127469583 +17,3018,4.0,1127476640 +17,3134,5.0,1127471284 +17,3147,4.0,1127469868 +17,3160,2.5,1127470023 +17,3253,2.0,1127469202 +17,3262,4.5,1127472389 +17,3267,4.0,1127474810 +17,3328,4.0,1127469266 +17,3386,4.0,1127473609 +17,3408,2.5,1127469817 +17,3435,5.0,1127468813 +17,3476,4.5,1127473589 +17,3503,4.5,1127471452 +17,3504,3.5,1127470537 +17,3535,4.5,1127470423 +17,3578,4.0,1127469591 +17,3598,4.0,1127473228 +17,3676,5.0,1127472406 +17,3730,3.0,1127472085 +17,3735,4.0,1127470532 +17,3742,4.0,1127468949 +17,3785,3.5,1127470327 +17,3788,4.5,1127470461 +17,3863,3.5,1127470285 +17,3949,4.0,1127470334 +17,3977,1.0,1127468701 +17,3994,4.0,1127469984 +17,3996,4.5,1127469664 +17,4027,1.5,1127469852 +17,4034,4.0,1127468683 +17,4037,4.5,1127471074 +17,4210,3.0,1127475013 +17,4226,5.0,1127469783 +17,4239,3.5,1127470473 +17,4246,0.5,1127470119 +17,4262,5.0,1127470830 +17,4306,3.5,1127471221 +17,4404,5.0,1127471153 +17,4437,5.0,1127469334 +17,4546,4.5,1127470728 +17,4552,4.0,1127474968 +17,4645,4.5,1127474815 +17,4725,4.5,1127475151 +17,4848,5.0,1127468922 +17,4878,4.0,1127470287 +17,4886,3.5,1127473495 +17,4896,0.5,1127470004 +17,4914,5.0,1127471176 +17,4963,4.0,1127469940 +17,4973,4.5,1127470007 +17,4975,4.0,1127475485 +17,4993,4.5,1127469643 +17,4995,3.0,1127473364 +17,5015,4.0,1127473564 +17,5017,5.0,1127470960 +17,5054,4.0,1127475207 +17,5060,0.5,1127469827 +17,5062,5.0,1127472353 +17,5072,2.5,1127474324 +17,5105,5.0,1127475000 +17,5137,4.5,1127471041 +17,5254,2.5,1127473845 +17,5266,3.0,1127475457 +17,5299,0.5,1127470247 +17,5316,1.5,1127475188 +17,5349,1.5,1127469195 +17,5388,4.0,1127473818 +17,5418,3.5,1127470134 +17,5445,4.5,1127468673 +17,5464,4.0,1127471240 +17,5502,0.5,1127470299 +17,5574,2.0,1127473010 +17,5608,4.5,1127470799 +17,5630,4.0,1127475183 +17,5669,4.5,1127470238 +17,5679,4.0,1127472858 +17,5686,2.5,1127475440 +17,5782,4.5,1127470685 +17,5809,2.0,1127473119 +17,5853,3.0,1127472423 +17,5867,4.0,1127471265 +17,5881,4.0,1127471454 +17,5893,2.0,1127471062 +17,5903,3.5,1127475067 +17,5949,4.5,1127474818 +17,5952,4.5,1127469753 +17,6016,5.0,1127470498 +17,6059,3.5,1127474362 +17,6140,4.0,1127474765 +17,6197,4.5,1127475051 +17,6214,3.0,1127474841 +17,6242,4.0,1127472872 +17,6281,3.5,1127475334 +17,6287,1.0,1127472991 +17,6294,0.5,1127472976 +17,6322,2.0,1127475308 +17,6323,2.0,1127473829 +17,6365,2.0,1127470144 +17,6378,2.0,1127472896 +17,6383,0.5,1127472979 +17,6385,4.0,1127470895 +17,6502,3.0,1127469259 +17,6503,0.5,1127473548 +17,6530,5.0,1127474791 +17,6538,4.0,1127474916 +17,6584,3.5,1127475452 +17,6643,4.5,1127468985 +17,6666,4.5,1127474277 +17,6708,3.5,1127471196 +17,6711,1.5,1127470254 +17,6757,4.0,1127473461 +17,6774,4.0,1127472413 +17,6777,4.0,1127472303 +17,6790,3.5,1127475092 +17,6858,2.0,1127471327 +17,6874,4.5,1127470187 +17,6971,5.0,1127471166 +17,6975,3.5,1127475055 +17,6979,3.5,1127473832 +17,6987,5.0,1127470752 +17,6993,4.0,1127471083 +17,7003,4.0,1127475101 +17,7013,2.5,1127470546 +17,7022,4.5,1127470734 +17,7044,2.5,1127474852 +17,7068,4.5,1127474908 +17,7069,4.5,1127470872 +17,7084,3.5,1127471213 +17,7090,4.0,1127472094 +17,7115,4.5,1127469062 +17,7116,4.5,1127470554 +17,7123,5.0,1127474398 +17,7135,4.5,1127471109 +17,7153,4.5,1127470693 +17,7163,2.0,1127473904 +17,7223,4.0,1127470592 +17,7254,4.0,1127473557 +17,7361,4.5,1127470361 +17,7371,5.0,1127473913 +17,7438,4.5,1127470380 +17,7445,1.0,1127475148 +17,7587,5.0,1127470520 +17,7700,5.0,1127469051 +17,7728,4.5,1127471038 +17,7771,5.0,1127473707 +17,7792,4.0,1127472156 +17,7827,4.0,1127474420 +17,7981,5.0,1127470503 +17,7982,3.5,1127471336 +17,7991,0.5,1127475448 +17,8195,3.0,1127474877 +17,8228,5.0,1127470713 +17,8360,3.0,1127472844 +17,8370,3.0,1127470866 +17,8477,4.5,1127474727 +17,8600,4.0,1127472266 +17,8620,3.5,1127471100 +17,8622,3.0,1127473138 +17,8644,2.0,1127473808 +17,8665,3.5,1127472829 +17,8690,3.0,1127471144 +17,8781,2.0,1127473772 +17,8783,0.5,1127473349 +17,8798,4.5,1127472292 +17,8865,0.5,1127475524 +17,8874,3.5,1127470706 +17,8914,4.5,1127470716 +17,8928,3.0,1127475246 +17,8950,5.0,1127470724 +17,8957,3.0,1127471549 +17,8958,5.0,1127470911 +17,8973,3.5,1127470788 +17,8983,2.5,1127471208 +17,27266,3.5,1127468773 +17,27317,5.0,1127471031 +17,27604,3.0,1127475110 +17,27721,4.0,1127470792 +17,27773,5.0,1127469035 +17,27788,3.0,1127475574 +17,27834,4.5,1127471248 +17,31410,5.0,1127469049 +17,31878,3.0,1127472057 +17,31952,4.5,1127474893 +17,32587,5.0,1127470680 +17,33004,2.5,1127475161 +17,33615,1.0,1127473991 +17,33683,2.0,1127475261 +17,34048,3.0,1127475175 +17,34437,5.0,1127470435 +18,5,3.0,856006982 +18,6,4.0,856006982 +18,7,3.0,856006982 +18,9,3.0,856007219 +18,14,2.0,856007147 +18,17,4.0,856006886 +18,18,3.0,856007359 +18,25,5.0,856006886 +18,32,5.0,856006885 +18,36,3.0,856006982 +18,52,3.0,856007075 +18,62,4.0,856006886 +18,74,2.0,856007279 +18,76,3.0,856007359 +18,79,2.0,856007147 +18,81,3.0,856007495 +18,85,4.0,856007495 +18,86,4.0,856007409 +18,92,3.0,856007409 +18,95,3.0,856006886 +18,100,4.0,856007279 +18,140,3.0,856007147 +18,141,4.0,856006885 +18,260,3.0,856007075 +18,376,3.0,856007075 +18,494,3.0,856006982 +18,608,4.0,856006982 +18,628,4.0,856007147 +18,640,3.0,856007359 +18,648,3.0,856006886 +18,653,4.0,856007075 +18,707,3.0,856007279 +18,708,4.0,856007075 +18,719,3.0,856007219 +18,733,4.0,856006982 +18,736,2.0,856006885 +18,743,3.0,856007219 +18,748,3.0,856007359 +18,762,1.0,856007147 +18,765,2.0,856007587 +18,780,3.0,856006885 +18,785,4.0,856007495 +18,786,4.0,856006982 +18,788,3.0,856007075 +18,802,4.0,856007219 +18,805,4.0,856007147 +18,818,3.0,856092135 +18,832,3.0,856007219 +18,849,4.0,856007587 +18,852,3.0,856007279 +18,880,1.0,856007587 +19,1,3.0,855190091 +19,2,3.0,855194773 +19,3,3.0,855194718 +19,4,3.0,855192868 +19,6,3.0,855190128 +19,7,3.0,855190128 +19,9,3.0,855190232 +19,10,3.0,855192496 +19,11,3.0,855192773 +19,14,5.0,855190167 +19,16,5.0,855191930 +19,21,3.0,855193244 +19,22,3.0,855192868 +19,23,1.0,855194301 +19,25,3.0,855190091 +19,29,3.0,855190349 +19,32,3.0,855190091 +19,34,4.0,855191622 +19,35,3.0,855192496 +19,36,3.0,855190954 +19,39,3.0,855193076 +19,42,3.0,855192210 +19,45,3.0,855191478 +19,47,5.0,855191517 +19,48,3.0,855193488 +19,50,4.0,855192835 +19,52,3.0,855190167 +19,57,3.0,855192717 +19,58,3.0,855190167 +19,63,3.0,855190349 +19,64,2.0,855193770 +19,70,4.0,855191324 +19,74,3.0,855190261 +19,89,3.0,855193220 +19,94,3.0,855190290 +19,95,3.0,855190091 +19,97,4.0,855190550 +19,101,3.0,855190531 +19,105,3.0,855192656 +19,110,3.0,855193530 +19,111,5.0,855191324 +19,112,3.0,855190128 +19,122,3.0,855194378 +19,125,3.0,855191429 +19,141,3.0,855190091 +19,145,4.0,855193720 +19,150,3.0,855191289 +19,153,3.0,855193751 +19,154,4.0,855191383 +19,159,4.0,855191775 +19,160,4.0,855194718 +19,162,5.0,855191226 +19,165,3.0,855191227 +19,166,2.0,855194264 +19,172,1.0,855194345 +19,176,4.0,855191383 +19,177,2.0,855192496 +19,179,2.0,855193865 +19,180,3.0,855192957 +19,194,4.0,855191383 +19,196,3.0,855193806 +19,198,3.0,855191478 +19,202,3.0,855193054 +19,206,3.0,855192120 +19,208,3.0,855194790 +19,209,2.0,855193510 +19,215,3.0,855191324 +19,223,4.0,855191622 +19,229,4.0,855191701 +19,230,5.0,855192308 +19,231,3.0,855194087 +19,235,3.0,855191324 +19,246,4.0,855191478 +19,247,4.0,855191430 +19,249,3.0,855193530 +19,253,3.0,855191430 +19,260,4.0,855190199 +19,261,4.0,855194216 +19,262,5.0,855193220 +19,266,1.0,855194773 +19,269,3.0,855191882 +19,276,1.0,855194605 +19,281,3.0,855192982 +19,283,3.0,855192910 +19,288,5.0,855191383 +19,292,4.0,855193465 +19,293,4.0,855194693 +19,296,5.0,855191226 +19,300,3.0,855193220 +19,306,5.0,855191584 +19,307,5.0,855191622 +19,308,5.0,855191654 +19,316,3.0,855194824 +19,318,4.0,855195189 +19,326,5.0,855191383 +19,328,4.0,855192210 +19,329,3.0,855192814 +19,332,3.0,855193274 +19,333,3.0,855194773 +19,334,4.0,855191846 +19,337,3.0,855193643 +19,339,4.0,855193599 +19,340,3.0,855193404 +19,344,3.0,855194560 +19,345,3.0,855191289 +19,346,3.0,855192910 +19,348,4.0,855191622 +19,349,3.0,855193558 +19,350,3.0,855193864 +19,353,3.0,855192868 +19,354,3.0,855192178 +19,356,5.0,855192120 +19,357,5.0,855193770 +19,361,4.0,855193330 +19,364,3.0,855195078 +19,365,3.0,855192385 +19,366,3.0,855192254 +19,367,3.0,855194531 +19,369,3.0,855192636 +19,371,3.0,855193244 +19,372,1.0,855192254 +19,373,4.0,855191816 +19,376,3.0,855190166 +19,377,3.0,855191289 +19,379,3.0,855193845 +19,380,3.0,855191228 +19,382,3.0,855192120 +19,383,3.0,855193914 +19,407,3.0,855193558 +19,412,3.0,855192605 +19,423,3.0,855193488 +19,428,3.0,855191701 +19,429,4.0,855194419 +19,431,4.0,855192210 +19,434,3.0,855194301 +19,440,3.0,855193330 +19,441,3.0,855192455 +19,445,3.0,855193404 +19,448,3.0,855192001 +19,450,3.0,855194345 +19,451,3.0,855193700 +19,454,3.0,855193599 +19,456,4.0,855192910 +19,457,4.0,855192385 +19,464,4.0,855193488 +19,465,5.0,855193892 +19,468,4.0,855194397 +19,471,3.0,855192558 +19,474,3.0,855192419 +19,475,3.0,855191654 +19,479,2.0,855193806 +19,480,4.0,855192279 +19,481,1.0,855192308 +19,482,2.0,855192940 +19,485,1.0,855193330 +19,491,3.0,855193449 +19,493,4.0,855191517 +19,494,3.0,855190128 +19,500,3.0,855194264 +19,501,5.0,855191228 +19,504,3.0,855193845 +19,507,3.0,855192558 +19,508,3.0,855192061 +19,509,4.0,855194216 +19,513,1.0,855193700 +19,515,5.0,855193012 +19,517,2.0,855193301 +19,519,1.0,855194590 +19,520,3.0,855193449 +19,522,3.0,855193301 +19,527,4.0,855191478 +19,529,3.0,855192717 +19,531,5.0,855193358 +19,534,5.0,855192910 +19,535,4.0,855191324 +19,537,3.0,855192688 +19,541,4.0,855191622 +19,547,4.0,855194419 +19,550,3.0,855192254 +19,551,4.0,855192419 +19,555,3.0,855192033 +19,562,3.0,855190447 +19,580,1.0,855194052 +19,586,3.0,855194743 +19,588,3.0,855195077 +19,589,3.0,855191383 +19,590,3.0,855191289 +19,592,4.0,855191964 +19,593,3.0,855191229 +19,594,4.0,855191383 +19,595,5.0,855195077 +19,596,5.0,855191553 +19,597,3.0,855193530 +19,599,4.0,855192636 +19,608,5.0,855190128 +19,610,4.0,855192688 +19,612,3.0,855190427 +19,628,3.0,855190199 +19,648,3.0,855190091 +19,653,3.0,855190167 +19,661,4.0,855190199 +19,662,3.0,855190382 +19,663,4.0,855190349 +19,674,4.0,855194072 +19,703,3.0,855190606 +19,724,3.0,855193404 +19,733,3.0,855190128 +19,736,3.0,855190091 +19,748,3.0,855190290 +19,750,5.0,855191289 +19,780,3.0,855190091 +19,784,3.0,855190167 +19,785,3.0,855190349 +19,786,3.0,855191702 +19,788,3.0,855190167 +19,799,3.0,855190382 +19,800,3.0,855191324 +19,802,3.0,855190232 +19,805,3.0,855190199 +19,858,5.0,855191478 +19,880,2.0,855190382 +19,891,3.0,855194072 +19,898,5.0,855192178 +19,902,3.0,855192496 +19,903,4.0,855191622 +19,904,5.0,855191430 +19,908,4.0,855191553 +19,911,5.0,855192582 +19,912,3.0,855191552 +19,913,5.0,855191654 +19,914,3.0,855193012 +19,915,4.0,855192740 +19,916,5.0,855192773 +19,917,4.0,855193358 +19,920,4.0,855192717 +19,923,5.0,855191517 +19,924,4.0,855191289 +19,928,5.0,855192419 +19,929,4.0,855193274 +19,930,4.0,855192210 +19,931,3.0,855192814 +19,933,3.0,855192582 +19,940,4.0,855192033 +19,950,4.0,855192419 +19,951,5.0,855192279 +19,953,5.0,855192178 +19,954,4.0,855192385 +19,955,4.0,855192090 +19,965,4.0,855192061 +19,966,4.0,855194498 +19,968,5.0,855192582 +19,969,5.0,855192254 +19,982,4.0,855193628 +19,1013,3.0,855193700 +19,1019,4.0,855192120 +19,1022,4.0,855195136 +19,1023,4.0,855192347 +19,1028,3.0,855192347 +19,1029,5.0,855192033 +19,1035,4.0,855193194 +19,1036,4.0,855191324 +19,1041,5.0,855190467 +19,1042,3.0,855192178 +19,1060,5.0,855190606 +19,1061,3.0,855190382 +19,1073,4.0,855190128 +19,1077,3.0,855191775 +19,1079,4.0,855191701 +19,1080,3.0,855191289 +19,1082,3.0,855195268 +19,1084,4.0,855191324 +19,1086,4.0,855191517 +19,1088,3.0,855193599 +19,1089,4.0,855191228 +19,1090,4.0,855191584 +19,1091,3.0,855194052 +19,1092,1.0,855192773 +19,1093,3.0,855192910 +19,1094,4.0,855191816 +19,1095,5.0,855192001 +19,1097,5.0,855191517 +19,1101,3.0,855193194 +19,1103,4.0,855191882 +19,1104,4.0,855191584 +19,1124,3.0,855192940 +19,1126,3.0,855194282 +19,1127,3.0,855195373 +19,1128,4.0,855193275 +19,1129,3.0,855192347 +19,1130,4.0,855192910 +19,1136,5.0,855191430 +19,1148,4.0,855191228 +19,1161,3.0,855192254 +19,1171,3.0,855192740 +19,1175,3.0,855191882 +19,1176,4.0,855193194 +19,1178,5.0,855192496 +19,1179,5.0,855192717 +19,1183,3.0,855190427 +19,1185,4.0,855192496 +19,1193,4.0,855191478 +19,1196,5.0,855191622 +19,1197,3.0,855191701 +19,1198,4.0,855191430 +19,1199,4.0,855191701 +19,1200,4.0,855191553 +19,1201,4.0,855191654 +19,1203,4.0,855191702 +19,1204,4.0,855191964 +19,1206,4.0,855191478 +19,1207,5.0,855191775 +19,1208,5.0,855191478 +19,1210,4.0,855191882 +19,1211,5.0,855192454 +19,1212,4.0,855191740 +19,1213,5.0,855191553 +19,1214,4.0,855191584 +19,1215,4.0,855192419 +19,1216,2.0,855192814 +19,1217,5.0,855192090 +19,1218,4.0,855192385 +19,1219,5.0,855191517 +19,1220,5.0,855192558 +19,1221,5.0,855191584 +19,1222,5.0,855191740 +19,1225,5.0,855191846 +19,1227,3.0,855192517 +19,1228,5.0,855191882 +19,1230,4.0,855191622 +19,1231,5.0,855192061 +19,1233,4.0,855191740 +19,1237,4.0,855192419 +19,1238,5.0,855192347 +19,1240,4.0,855191383 +19,1242,5.0,855191882 +19,1244,4.0,855192001 +19,1246,3.0,855192868 +19,1247,3.0,855191702 +19,1248,4.0,855192347 +19,1249,4.0,855191816 +19,1250,4.0,855191882 +19,1252,4.0,855191816 +19,1253,4.0,855191930 +19,1254,5.0,855192033 +19,1257,5.0,855192279 +19,1258,5.0,855192033 +19,1259,3.0,855192061 +19,1260,5.0,855192001 +19,1261,5.0,855192347 +19,1262,4.0,855191930 +19,1263,4.0,855191775 +19,1265,4.0,855192773 +19,1266,4.0,855191930 +19,1267,4.0,855191740 +19,1268,3.0,855192688 +19,1269,4.0,855192033 +19,1270,5.0,855192178 +19,1271,3.0,855192455 +19,1272,3.0,855191964 +19,1274,4.0,855192636 +19,1275,3.0,855192605 +19,1276,4.0,855191930 +19,1278,4.0,855191654 +19,1282,4.0,855191846 +19,1283,4.0,855192120 +19,1284,4.0,855191930 +19,1285,3.0,855191846 +19,1286,4.0,855193358 +19,1287,4.0,855192517 +19,1288,5.0,855191816 +19,1290,3.0,855193035 +19,1291,3.0,855192090 +19,1292,4.0,855192255 +19,1297,4.0,855192717 +19,1298,1.0,855192455 +19,1299,4.0,855192308 +19,1302,3.0,855192210 +19,1304,3.0,855192120 +19,1306,3.0,855193274 +19,1307,3.0,855192558 +19,1320,3.0,855193628 +19,1321,3.0,855192308 +19,1327,3.0,855193806 +19,1332,2.0,855193932 +19,1333,4.0,855192090 +19,1334,3.0,855193599 +19,1336,3.0,855194641 +19,1339,3.0,855192773 +19,1342,3.0,855193358 +19,1343,4.0,855192558 +19,1344,5.0,855192636 +19,1345,4.0,855192605 +19,1347,3.0,855192835 +19,1348,5.0,855192496 +19,1350,3.0,855192814 +19,1354,5.0,855190606 +19,1356,3.0,855190199 +19,1357,4.0,855190571 +19,1370,4.0,855192636 +19,1371,4.0,855193404 +19,1372,2.0,855193035 +19,1373,3.0,855193845 +19,1374,3.0,855192496 +19,1375,4.0,855193244 +19,1376,3.0,855192740 +19,1377,3.0,855193700 +19,1378,2.0,855193244 +19,1380,3.0,855193194 +19,1381,3.0,855194670 +19,1382,1.0,855194188 +19,1385,3.0,855193076 +19,1387,5.0,855192033 +19,1388,1.0,855193946 +19,1389,1.0,855194693 +19,1391,2.0,855190404 +19,1393,3.0,855190404 +19,1394,5.0,855192061 +19,1396,3.0,855193012 +19,1405,3.0,855190404 +19,1408,3.0,855192910 +19,1441,3.0,855192982 +19,2019,3.0,855192254 +19,4970,4.0,855193274 +20,1,3.5,1238729767 +20,32,2.5,1238729782 +20,34,3.5,1238729861 +20,107,3.5,1224042765 +20,110,2.0,1238729747 +20,150,3.0,1238729755 +20,153,4.0,1238729818 +20,207,2.5,1224042795 +20,231,1.0,1238729849 +20,260,1.5,1224043057 +20,296,0.5,1238729735 +20,316,3.5,1238729834 +20,318,4.5,1224043037 +20,344,1.0,1238729802 +20,356,2.0,1238729739 +20,364,3.5,1238729826 +20,367,1.0,1238729854 +20,380,4.0,1238729779 +20,457,4.5,1238729750 +20,480,3.0,1238729744 +20,497,5.0,1238731010 +20,500,3.0,1238729842 +20,527,2.5,1224043054 +20,588,3.5,1238729785 +20,590,2.0,1238729764 +20,592,4.0,1238729759 +20,593,0.5,1238729741 +20,595,4.0,1238729816 +20,597,4.0,1238729844 +20,608,2.0,1238729789 +20,671,4.0,1224042769 +20,720,5.0,1224043166 +20,736,3.5,1238729831 +20,745,5.0,1224043160 +20,750,4.0,1224043081 +20,780,5.0,1238729772 +20,858,2.0,1238729822 +20,904,3.0,1224043134 +20,905,3.5,1238729311 +20,912,2.0,1224043067 +20,1019,3.0,1224042752 +20,1097,1.5,1238729863 +20,1103,4.0,1224042813 +20,1136,4.5,1224043119 +20,1148,5.0,1224043170 +20,1196,2.0,1238729793 +20,1198,4.5,1238729807 +20,1204,4.5,1238729342 +20,1207,4.0,1224043156 +20,1210,3.0,1238729777 +20,1247,1.0,1238730775 +20,1269,4.0,1238730754 +20,1270,3.5,1238729811 +20,1293,3.5,1238730771 +20,1378,3.0,1224042777 +20,1441,2.5,1224042802 +20,1580,5.0,1238729865 +20,1680,5.0,1224042771 +20,1907,4.0,1224042740 +20,1960,4.0,1224042737 +20,2013,3.0,1224042811 +20,2405,4.5,1224042788 +20,2571,4.5,1238729799 +20,2690,5.0,1238731025 +20,2762,3.5,1238729839 +20,2908,0.5,1238731034 +20,2959,0.5,1224043052 +20,3148,0.5,1224042755 +20,3196,0.5,1238729331 +20,3406,4.5,1238731020 +20,3555,2.0,1224042780 +20,3809,2.0,1224042827 +20,4993,4.0,1224043029 +20,5380,4.0,1238729247 +20,5618,3.5,1224043145 +20,5747,4.0,1238729389 +20,6201,4.5,1224043219 +20,6385,4.5,1238730960 +20,6516,4.0,1224043284 +20,6753,4.0,1224043266 +20,7153,4.0,1224043033 +20,7212,5.0,1224043242 +20,7841,1.0,1224043213 +20,8191,4.0,1224043180 +20,8493,3.5,1224043257 +20,8611,1.5,1224043185 +20,8970,2.5,1224043294 +20,26111,4.0,1238729255 +20,31116,5.0,1224043273 +20,32469,4.0,1224043282 +20,38038,4.5,1238730751 +20,47721,1.0,1238729405 +20,51471,5.0,1224043232 +20,54259,4.0,1238730925 +20,58047,4.0,1224043238 +20,58299,3.5,1224043018 +20,59784,4.0,1238731039 +20,64285,5.0,1238731016 +21,10,3.0,853846478 +21,21,3.0,853846669 +21,32,4.0,853157476 +21,34,4.0,853846442 +21,36,3.0,853157544 +21,44,3.0,853846547 +21,47,4.0,853846400 +21,95,3.0,853157476 +21,112,4.0,853157544 +21,151,4.0,853846547 +21,181,2.0,853846288 +21,196,3.0,853847536 +21,208,2.0,853846511 +21,260,3.0,853846669 +21,266,3.0,853846207 +21,273,3.0,853847723 +21,288,3.0,853857742 +21,296,3.0,853846400 +21,316,3.0,853847574 +21,329,3.0,853846400 +21,333,3.0,853846752 +21,344,3.0,853847612 +21,356,4.0,853846443 +21,377,4.0,853846511 +21,379,3.0,853852608 +21,380,3.0,853846783 +21,393,3.0,853856221 +21,442,3.0,853846579 +21,457,3.0,853846443 +21,466,3.0,853846873 +21,480,3.0,853846511 +21,485,3.0,853847574 +21,509,4.0,853846612 +21,527,5.0,853846400 +21,541,3.0,853846813 +21,543,3.0,853847688 +21,551,3.0,853846443 +21,553,3.0,853846547 +21,586,3.0,853847813 +21,589,5.0,853846400 +21,590,4.0,853846443 +21,592,3.0,853846639 +21,593,4.0,853846400 +21,594,3.0,853846612 +21,595,3.0,853846511 +21,597,3.0,853846723 +21,610,2.0,853846511 +21,648,3.0,853157476 +21,733,3.0,853157544 +21,750,5.0,853848506 +21,780,3.0,853157476 +21,849,3.0,853845946 +21,858,4.0,853850728 +21,899,3.0,853850791 +21,908,3.0,853850699 +21,910,3.0,853850791 +21,912,5.0,853848342 +21,913,4.0,853850728 +21,914,5.0,853850835 +21,918,4.0,853852058 +21,919,4.0,853850874 +21,920,4.0,853851052 +21,921,4.0,853849142 +21,923,5.0,853850699 +21,924,4.0,853848314 +21,945,3.0,853851841 +21,948,3.0,853851861 +21,952,3.0,853851892 +21,953,5.0,853850752 +21,954,4.0,853850874 +21,969,5.0,853850728 +21,1012,3.0,853849003 +21,1019,3.0,853848034 +21,1022,3.0,853851203 +21,1028,3.0,853848062 +21,1031,3.0,853852140 +21,1032,3.0,853848342 +21,1035,4.0,853848002 +21,1036,4.0,853846443 +21,1079,3.0,853846752 +21,1080,3.0,853846723 +21,1088,2.0,853853701 +21,1089,3.0,853847910 +21,1090,4.0,853848134 +21,1091,3.0,853853956 +21,1097,3.0,853847780 +21,1103,3.0,853847910 +21,1124,4.0,853852079 +21,1125,4.0,853851156 +21,1127,3.0,853851608 +21,1129,3.0,853848738 +21,1135,3.0,853852316 +21,1136,5.0,853847612 +21,1148,5.0,853846639 +21,1173,5.0,853852208 +21,1175,4.0,853851089 +21,1193,3.0,853850791 +21,1196,4.0,853847910 +21,1198,5.0,853847813 +21,1199,4.0,853848156 +21,1200,4.0,853848507 +21,1203,4.0,853850791 +21,1206,5.0,853851732 +21,1208,4.0,853851052 +21,1210,4.0,853848134 +21,1214,4.0,853849211 +21,1217,5.0,853851024 +21,1221,3.0,853850905 +21,1222,3.0,853851222 +21,1224,5.0,853850791 +21,1225,5.0,853850728 +21,1228,4.0,853851024 +21,1231,3.0,853850752 +21,1234,3.0,853850874 +21,1240,5.0,853848082 +21,1246,4.0,853852020 +21,1250,4.0,853850728 +21,1252,3.0,853850835 +21,1253,3.0,853850835 +21,1254,5.0,853850835 +21,1256,3.0,853850968 +21,1259,4.0,853851113 +21,1263,4.0,853851203 +21,1265,3.0,853851052 +21,1266,3.0,853850874 +21,1270,4.0,853849003 +21,1275,2.0,853848737 +21,1281,4.0,853850997 +21,1282,3.0,853850933 +21,1283,4.0,853850874 +21,1287,5.0,853850791 +21,1288,4.0,853850835 +21,1291,4.0,853848558 +21,1292,4.0,853851174 +21,1295,3.0,853852020 +21,1296,4.0,853851089 +21,1297,3.0,853851203 +21,1298,3.0,853852097 +21,1301,3.0,853850968 +21,1302,4.0,853851113 +21,1303,5.0,853850997 +21,1320,3.0,853853496 +21,1321,4.0,853851156 +21,1327,3.0,853853725 +21,1334,3.0,853852524 +21,1345,3.0,853852058 +21,1346,3.0,853853473 +21,1350,3.0,853852140 +21,1370,3.0,853851257 +21,1371,3.0,853852263 +21,1372,3.0,853851257 +21,1373,3.0,853853545 +21,1374,4.0,853849676 +21,1375,3.0,853851841 +21,1376,3.0,853850905 +21,1380,3.0,853852501 +21,1387,3.0,853850968 +21,1388,3.0,853854148 +21,1394,4.0,853851089 +21,1395,3.0,853853593 +21,1427,3.0,854522908 +21,5060,3.0,853850933 +22,32,4.5,1131662086 +22,44,2.0,1131662481 +22,47,3.5,1131662466 +22,48,2.0,1131661907 +22,70,3.0,1131661969 +22,153,3.0,1131662452 +22,158,1.0,1131661890 +22,163,4.5,1131664404 +22,173,1.5,1131662930 +22,208,2.0,1131664520 +22,231,2.5,1131662440 +22,235,2.0,1131662423 +22,253,4.5,1131662653 +22,260,4.0,1131663354 +22,267,2.0,1131663069 +22,296,5.0,1131664320 +22,315,3.0,1131662435 +22,355,2.0,1131753358 +22,356,3.5,1131663409 +22,442,2.5,1131662387 +22,457,4.5,1131662090 +22,480,4.5,1131662100 +22,485,2.5,1131753373 +22,541,4.5,1131664363 +22,551,5.0,1131663387 +22,552,3.0,1131661923 +22,555,4.0,1131663369 +22,586,1.0,1131664533 +22,588,2.0,1131662084 +22,589,5.0,1131663268 +22,592,4.5,1131663223 +22,593,4.5,1131723291 +22,648,5.0,1131663139 +22,784,1.5,1131662400 +22,785,2.5,1131662414 +22,858,4.0,1131662354 +22,1080,3.5,1131662357 +22,1089,4.0,1131662364 +22,1097,2.5,1131723086 +22,1101,2.0,1131662346 +22,1148,2.0,1131661960 +22,1196,4.5,1131663322 +22,1198,5.0,1131663397 +22,1200,5.0,1131663177 +22,1201,2.5,1131662370 +22,1208,3.5,1131662293 +22,1210,5.0,1131662093 +22,1214,3.5,1131663188 +22,1215,4.0,1131753179 +22,1240,4.0,1131662287 +22,1255,4.0,1131663479 +22,1263,3.0,1131753381 +22,1270,4.0,1131663366 +22,1291,5.0,1131663232 +22,1320,3.5,1131661937 +22,1339,4.5,1131663305 +22,1356,4.0,1131662309 +22,1371,2.0,1131662302 +22,1372,4.0,1131662635 +22,1374,3.5,1131662312 +22,1375,4.0,1131662317 +22,1376,4.0,1131661918 +22,1377,4.0,1131662328 +22,1387,4.0,1131662323 +22,1391,3.5,1131662334 +22,1527,4.5,1131663284 +22,1544,3.0,1131663044 +22,1580,4.0,1131664393 +22,1608,2.5,1131662271 +22,1625,2.0,1131663328 +22,1641,2.0,1131662659 +22,1645,2.5,1131662268 +22,1682,2.5,1131663443 +22,1693,2.0,1131664773 +22,1721,3.0,1131662252 +22,1722,3.5,1131662000 +22,1769,2.5,1131723166 +22,1799,4.0,1131663219 +22,1876,2.0,1131661994 +22,1884,4.5,1131663032 +22,1909,3.0,1131663020 +22,1917,2.5,1131664489 +22,1923,2.5,1131662243 +22,1997,3.0,1131662014 +22,2006,2.5,1131661978 +22,2011,3.5,1131723076 +22,2023,3.5,1131662226 +22,2081,2.5,1131661945 +22,2115,3.5,1131662232 +22,2174,4.0,1131662911 +22,2232,3.5,1131663357 +22,2288,4.0,1131664741 +22,2291,4.5,1131663683 +22,2301,3.5,1131664754 +22,2340,2.5,1131664719 +22,2402,3.0,1131723151 +22,2431,2.0,1131663013 +22,2459,4.0,1131664733 +22,2502,1.5,1131663552 +22,2542,4.5,1131664217 +22,2571,4.5,1131662900 +22,2605,2.0,1131723146 +22,2616,2.5,1131664710 +22,2617,2.5,1131723065 +22,2657,2.0,1131661911 +22,2672,2.0,1131664699 +22,2683,2.5,1131662202 +22,2700,2.0,1131662216 +22,2701,2.0,1131662209 +22,2710,2.0,1131662220 +22,2712,4.5,1131664480 +22,2716,3.0,1131662152 +22,2717,3.0,1131662710 +22,2723,2.0,1131663006 +22,2762,4.0,1131663393 +22,2763,1.5,1131662185 +22,2858,4.0,1131662179 +22,2881,2.0,1131664676 +22,2953,1.0,1131664687 +22,2959,4.0,1131663892 +22,2985,2.0,1131662174 +22,2987,4.0,1131662150 +22,2990,3.0,1131662717 +22,3033,4.0,1131664474 +22,3052,2.5,1131663311 +22,3081,5.0,1131662155 +22,3082,3.5,1131723124 +22,3147,2.5,1131662169 +22,3176,2.5,1131662162 +22,3213,4.0,1131664330 +22,3253,1.5,1131662194 +22,3285,2.0,1131723135 +22,3300,3.0,1131662989 +22,3354,2.5,1131662687 +22,3355,4.5,1131662678 +22,3408,1.5,1131662190 +22,3438,3.0,1131664651 +22,3527,4.0,1131753186 +22,3535,4.5,1131662694 +22,3578,3.0,1131663515 +22,3623,2.5,1131661897 +22,3697,2.5,1131664627 +22,3751,2.0,1131662894 +22,3793,4.5,1131663506 +22,3809,2.0,1131662700 +22,3826,2.0,1131723113 +22,3868,4.0,1131664598 +22,3977,2.5,1131753363 +22,3994,3.0,1131663359 +22,3996,2.0,1131662121 +22,3999,2.0,1131664612 +22,4011,4.5,1131663886 +22,4015,2.0,1131664618 +22,4027,2.0,1131723071 +22,4105,4.0,1131662565 +22,4226,5.0,1131662110 +22,4239,2.0,1131664374 +22,4262,3.5,1131663472 +22,4306,4.5,1131664226 +22,4370,3.5,1131664587 +22,4383,3.5,1131663565 +22,4643,2.5,1131663696 +22,4701,4.0,1131662966 +22,4720,2.5,1131663383 +22,4776,3.0,1131663420 +22,4886,4.0,1131661901 +22,4896,3.5,1131662103 +22,4963,2.5,1131662107 +22,4975,4.5,1131662960 +22,4993,5.0,1131662640 +22,5010,2.5,1131662670 +22,5026,4.0,1131663341 +22,5219,3.0,1131662525 +22,5266,2.5,1131664572 +22,5349,5.0,1131662096 +22,5400,2.5,1131664567 +22,5445,4.5,1131662075 +22,5459,3.5,1131662534 +22,5464,2.5,1131663373 +22,5630,4.5,1131663277 +22,5679,4.0,1131663330 +22,5816,3.5,1131663263 +22,5872,3.5,1131662504 +22,5903,4.0,1131663118 +22,5952,4.5,1131662637 +22,5989,3.5,1131663453 +22,6286,4.5,1131662846 +22,6333,4.5,1131663238 +22,6365,2.5,1131663156 +22,6373,2.0,1131662491 +22,6502,3.0,1131662517 +22,6539,4.0,1131663881 +22,6541,2.5,1131662684 +22,6754,2.5,1131723215 +22,6874,4.0,1131663918 +22,6893,2.0,1131664302 +22,6934,2.0,1131663158 +22,7143,4.0,1131663528 +22,7147,4.0,1131663431 +22,7153,4.0,1131662007 +22,7360,3.5,1131663298 +22,7373,3.0,1131662518 +22,7438,4.5,1131663403 +22,7454,3.0,1131663081 +22,7482,4.0,1131664239 +22,8360,3.5,1131662473 +22,8368,3.5,1131662938 +22,8636,4.5,1131663248 +22,8798,3.0,1131663440 +22,8947,3.0,1131663094 +22,8950,4.0,1131663467 +22,8957,4.5,1131663282 +22,8961,3.5,1131663378 +22,30793,4.0,1131663273 +22,31184,4.5,1131753070 +22,31696,4.0,1131663089 +22,32587,4.5,1131663293 +22,33493,2.5,1131663228 +22,33794,3.0,1131662462 +22,37729,5.0,1131663664 +23,1,3.0,1148729853 +23,6,3.5,1148730128 +23,11,3.5,1166728170 +23,16,4.0,1148672550 +23,19,2.0,1148669114 +23,20,1.5,1148720884 +23,24,3.5,1148673467 +23,32,4.0,1148730400 +23,34,3.5,1166728173 +23,47,4.5,1148669590 +23,50,4.0,1148670466 +23,58,3.5,1148672099 +23,62,4.0,1166728220 +23,89,4.0,1148669357 +23,104,3.5,1148730116 +23,110,3.5,1148669588 +23,111,5.0,1148671365 +23,150,3.5,1148672933 +23,153,3.0,1148720873 +23,154,4.0,1148672842 +23,172,2.5,1148386188 +23,185,3.5,1148778581 +23,224,4.0,1148729797 +23,235,4.0,1148729698 +23,236,4.5,1148386155 +23,246,4.5,1148729570 +23,247,4.0,1148673304 +23,252,4.0,1148669102 +23,253,3.5,1148668973 +23,260,4.5,1148668970 +23,262,4.0,1148728957 +23,265,3.5,1148673465 +23,292,2.5,1148720795 +23,293,4.0,1148672319 +23,296,4.5,1148671517 +23,300,4.0,1149868544 +23,306,3.5,1148777951 +23,307,2.5,1148777966 +23,316,3.5,1148668967 +23,318,5.0,1148668964 +23,319,4.5,1148669351 +23,337,4.5,1148672736 +23,344,2.0,1148668961 +23,345,4.0,1148673085 +23,356,4.5,1148728785 +23,380,4.0,1148673420 +23,425,3.5,1148669891 +23,431,3.5,1148730048 +23,442,3.5,1148720861 +23,457,3.5,1148673418 +23,465,3.5,1148669887 +23,471,3.5,1148730134 +23,480,3.5,1148729018 +23,485,3.0,1148720907 +23,492,4.5,1148669346 +23,497,4.5,1148669881 +23,508,4.5,1148669092 +23,509,4.5,1148672198 +23,527,3.5,1148729022 +23,532,3.5,1148720627 +23,535,4.5,1166036040 +23,539,2.5,1148729848 +23,541,3.0,1148668958 +23,586,3.5,1166728142 +23,588,4.0,1166728178 +23,589,3.5,1149868397 +23,590,2.5,1148728787 +23,592,3.5,1148670328 +23,593,4.5,1148671818 +23,595,4.5,1148672375 +23,597,3.0,1149868548 +23,605,4.0,1148669338 +23,608,4.5,1148669574 +23,648,4.5,1148672950 +23,653,2.5,1148669090 +23,668,4.5,1148669877 +23,670,4.5,1166035850 +23,745,4.5,1148669873 +23,750,4.5,1148670499 +23,778,4.5,1148669858 +23,780,3.5,1148673415 +23,788,2.0,1148669865 +23,802,3.5,1148669863 +23,805,3.5,1148669087 +23,841,4.0,1148729708 +23,858,5.0,1148670263 +23,898,4.5,1148671970 +23,899,4.5,1148671949 +23,900,2.5,1148728764 +23,903,3.5,1148671779 +23,904,4.5,1148729610 +23,905,4.0,1148728730 +23,908,5.0,1148669850 +23,909,3.5,1148730009 +23,910,4.5,1148777884 +23,911,4.0,1148671953 +23,912,5.0,1148669852 +23,913,4.0,1148670548 +23,914,3.0,1148673452 +23,920,3.5,1148778793 +23,922,4.5,1148671777 +23,923,5.0,1148669082 +23,924,3.5,1148729982 +23,926,4.0,1148729661 +23,928,4.5,1148671884 +23,930,4.0,1148671832 +23,931,4.5,1148672493 +23,933,3.5,1148671931 +23,942,4.0,1148669571 +23,948,3.5,1148721097 +23,949,3.5,1148721092 +23,952,3.5,1148728814 +23,953,4.5,1148670154 +23,954,5.0,1148669329 +23,955,3.5,1148669327 +23,965,3.5,1148729987 +23,969,3.5,1148669080 +23,971,3.5,1148721086 +23,1035,2.5,1148728784 +23,1036,3.0,1148668956 +23,1041,4.0,1148672085 +23,1059,4.5,1148672402 +23,1061,3.5,1148673456 +23,1077,4.0,1148669318 +23,1078,4.0,1148778808 +23,1080,4.0,1166728186 +23,1084,4.0,1148729677 +23,1089,3.5,1148671525 +23,1090,4.0,1148669833 +23,1096,2.5,1148669302 +23,1097,5.0,1148671542 +23,1101,3.0,1148673102 +23,1103,4.5,1148721090 +23,1104,4.0,1148721053 +23,1136,4.0,1148672286 +23,1172,5.0,1148670101 +23,1175,3.5,1148669299 +23,1176,3.0,1148670388 +23,1178,4.0,1148671770 +23,1183,4.0,1148728807 +23,1185,3.0,1149868223 +23,1188,4.0,1148669075 +23,1193,4.5,1148670482 +23,1196,4.5,1148670884 +23,1197,5.0,1148670172 +23,1198,4.5,1148670494 +23,1199,3.5,1148730030 +23,1201,4.0,1148669828 +23,1202,4.5,1148671384 +23,1203,4.5,1148669826 +23,1204,5.0,1148669072 +23,1206,4.5,1148669820 +23,1207,3.5,1148670496 +23,1208,5.0,1148670275 +23,1210,4.0,1148670888 +23,1211,3.5,1148670960 +23,1212,3.5,1148671412 +23,1213,5.0,1148669055 +23,1217,4.5,1148672270 +23,1218,3.5,1148672325 +23,1219,5.0,1148669822 +23,1221,4.5,1148670266 +23,1222,3.5,1148671596 +23,1225,4.5,1148671816 +23,1227,3.5,1149868188 +23,1228,4.0,1148671814 +23,1230,4.0,1148673449 +23,1231,4.0,1166036046 +23,1232,4.0,1166035984 +23,1233,3.5,1148778850 +23,1234,3.5,1148386185 +23,1235,1.5,1148669296 +23,1237,4.5,1148729642 +23,1240,3.5,1148730410 +23,1241,2.5,1148720563 +23,1243,3.5,1148672048 +23,1244,3.5,1148671992 +23,1246,4.0,1166036059 +23,1247,4.0,1148671859 +23,1248,4.5,1148671856 +23,1250,4.0,1148671782 +23,1251,5.0,1148671642 +23,1252,4.5,1148386150 +23,1254,3.5,1148777838 +23,1256,3.5,1148730086 +23,1258,3.5,1148671587 +23,1260,4.0,1148671822 +23,1262,4.0,1148778812 +23,1263,3.0,1148778787 +23,1265,4.0,1148730406 +23,1266,3.5,1148728732 +23,1267,5.0,1148671808 +23,1269,4.0,1148669291 +23,1270,4.5,1148729820 +23,1272,2.0,1148670285 +23,1277,3.5,1148720736 +23,1280,5.0,1148670134 +23,1281,3.0,1148777902 +23,1284,4.0,1148671835 +23,1287,4.0,1148669816 +23,1288,3.5,1148386142 +23,1291,3.5,1148730139 +23,1293,5.0,1148728738 +23,1304,4.0,1148728856 +23,1305,4.5,1148670953 +23,1307,4.0,1148669057 +23,1333,3.5,1148672025 +23,1343,4.0,1148672530 +23,1348,2.5,1148777918 +23,1354,4.5,1148669286 +23,1356,3.0,1148669063 +23,1377,2.5,1148670340 +23,1380,2.5,1166728237 +23,1387,3.5,1148669051 +23,1391,3.5,1148730168 +23,1393,4.0,1148729341 +23,1394,4.0,1148669808 +23,1408,3.5,1148720760 +23,1411,3.5,1148669282 +23,1438,3.0,1148720878 +23,1464,2.0,1149868079 +23,1499,1.5,1148720958 +23,1500,4.5,1148386128 +23,1515,3.0,1148720919 +23,1527,3.5,1166728241 +23,1544,2.0,1148720846 +23,1552,3.0,1148669048 +23,1556,0.5,1148778558 +23,1562,1.0,1148670343 +23,1580,3.5,1148668953 +23,1584,4.0,1148669800 +23,1608,2.5,1148669045 +23,1617,4.0,1148670522 +23,1625,4.5,1148671498 +23,1673,4.0,1148671436 +23,1682,5.0,1148670981 +23,1693,4.0,1148669270 +23,1704,3.5,1148729054 +23,1721,5.0,1148670121 +23,1722,3.0,1148669792 +23,1732,4.0,1148669789 +23,1735,4.5,1148728970 +23,1748,5.0,1148669787 +23,1792,3.5,1148669267 +23,1797,3.5,1148728611 +23,1835,3.5,1148670970 +23,1860,5.0,1148671375 +23,1873,3.0,1148730178 +23,1876,3.0,1148673442 +23,1900,3.5,1148730066 +23,1907,3.5,1148669265 +23,1917,2.0,1148720837 +23,1927,3.0,1148728727 +23,1931,4.0,1148669541 +23,1932,1.5,1148728810 +23,1935,4.0,1148672116 +23,1941,3.5,1148728751 +23,1944,4.0,1148721075 +23,1945,4.5,1148672322 +23,1946,4.0,1148669538 +23,1947,4.0,1148728761 +23,1949,3.5,1148730162 +23,1950,4.5,1148728725 +23,1951,3.0,1148728794 +23,1952,4.0,1148673306 +23,1953,3.0,1148671908 +23,1954,3.0,1148728778 +23,1955,4.0,1148728759 +23,1956,1.0,1148728746 +23,1957,3.5,1148728769 +23,1958,3.5,1148728790 +23,1959,2.5,1148728802 +23,1960,1.5,1148728736 +23,1961,4.0,1148728753 +23,1962,3.5,1148728767 +23,1997,3.5,1148728429 +23,2002,3.5,1148669764 +23,2010,3.5,1148669261 +23,2011,4.0,1148729668 +23,2012,4.5,1148673438 +23,2019,4.0,1148669760 +23,2022,4.0,1148672527 +23,2023,3.0,1148669036 +23,2027,3.5,1148669531 +23,2028,4.0,1148671551 +23,2067,2.5,1148728867 +23,2068,5.0,1148671632 +23,2115,4.0,1148670901 +23,2126,2.0,1148720894 +23,2132,4.0,1148729968 +23,2143,1.5,1148669258 +23,2174,3.5,1166728231 +23,2176,5.0,1148672486 +23,2178,3.0,1148730098 +23,2181,4.0,1148672510 +23,2183,3.5,1148672500 +23,2186,5.0,1148671801 +23,2194,3.5,1148386163 +23,2203,4.0,1148671878 +23,2205,3.5,1148672515 +23,2231,3.5,1148669228 +23,2248,3.5,1148729360 +23,2273,3.5,1148669739 +23,2278,4.0,1148669751 +23,2289,4.0,1148671976 +23,2291,4.0,1148672768 +23,2313,3.5,1148673578 +23,2321,5.0,1148669024 +23,2324,3.5,1148730155 +23,2329,2.5,1148669021 +23,2333,3.5,1148669225 +23,2334,2.5,1148669239 +23,2336,3.0,1148671939 +23,2351,5.0,1148671652 +23,2353,3.0,1148386176 +23,2357,4.0,1148729689 +23,2360,3.5,1148730053 +23,2361,4.0,1148720603 +23,2394,3.5,1148778590 +23,2396,4.5,1148728756 +23,2406,4.0,1148669018 +23,2424,3.0,1148729858 +23,2467,4.0,1149868383 +23,2474,2.5,1148669219 +23,2501,4.0,1148669215 +23,2502,4.0,1149868257 +23,2539,2.0,1149868567 +23,2542,3.5,1149868269 +23,2571,4.0,1149868185 +23,2575,3.0,1148672184 +23,2580,3.5,1148669719 +23,2599,3.5,1148730088 +23,2600,4.0,1148729974 +23,2617,3.5,1166728248 +23,2628,2.5,1148670873 +23,2640,4.5,1148669716 +23,2644,3.5,1148671340 +23,2648,4.5,1148671324 +23,2657,3.0,1148669012 +23,2692,5.0,1148670082 +23,2699,1.5,1148386172 +23,2702,4.0,1148669210 +23,2712,4.5,1148669709 +23,2716,3.0,1166036066 +23,2721,3.5,1148673094 +23,2724,2.0,1148669714 +23,2726,4.5,1148671845 +23,2728,4.0,1148728854 +23,2729,3.5,1149868713 +23,2730,4.0,1148671606 +23,2731,5.0,1148672620 +23,2739,4.0,1148729011 +23,2746,2.0,1149867815 +23,2762,4.0,1149868231 +23,2805,2.5,1148669200 +23,2858,3.5,1148669501 +23,2871,3.5,1148672034 +23,2890,4.0,1148729102 +23,2905,4.0,1148672294 +23,2908,3.5,1148673075 +23,2918,4.0,1148671999 +23,2932,4.0,1148672683 +23,2947,3.5,1148669008 +23,2952,3.5,1148730113 +23,2953,3.5,1148669191 +23,2959,3.5,1148778865 +23,2970,4.0,1148729713 +23,2976,4.5,1148672556 +23,2987,3.5,1149868562 +23,2997,4.5,1148671474 +23,3006,4.5,1148670519 +23,3019,3.5,1148778622 +23,3020,2.5,1148720744 +23,3052,3.5,1148669706 +23,3053,2.0,1148669188 +23,3067,5.0,1148673055 +23,3081,3.0,1148672778 +23,3082,2.5,1148720826 +23,3083,5.0,1148670143 +23,3088,2.5,1148671916 +23,3089,4.5,1148671881 +23,3095,3.0,1148673280 +23,3100,3.5,1148728895 +23,3114,3.5,1148669703 +23,3147,3.0,1148729851 +23,3152,2.0,1148728701 +23,3155,2.5,1148669181 +23,3159,4.0,1148728602 +23,3160,4.5,1148669695 +23,3168,4.0,1148672142 +23,3176,5.0,1148672449 +23,3201,3.5,1148672101 +23,3245,4.5,1148671428 +23,3246,4.5,1148671904 +23,3248,3.0,1148669488 +23,3252,4.5,1148729808 +23,3267,3.5,1148730163 +23,3307,4.0,1148670551 +23,3310,5.0,1148671686 +23,3317,4.0,1148671963 +23,3365,2.5,1148721061 +23,3371,3.5,1148728891 +23,3386,5.0,1148728875 +23,3405,3.5,1148721102 +23,3408,4.5,1148386153 +23,3415,1.5,1166035912 +23,3424,4.0,1148673292 +23,3435,4.5,1148670554 +23,3448,4.0,1149868559 +23,3462,4.5,1148669482 +23,3468,3.0,1148669175 +23,3471,4.5,1148669004 +23,3475,3.5,1148721082 +23,3481,3.5,1148729373 +23,3489,3.5,1148671696 +23,3498,4.5,1148671997 +23,3503,3.5,1148669480 +23,3504,3.0,1148669173 +23,3510,3.5,1148730416 +23,3535,4.0,1148670362 +23,3546,4.0,1148669470 +23,3559,2.0,1148721157 +23,3569,1.0,1148669685 +23,3578,4.0,1148728779 +23,3618,3.0,1148669465 +23,3623,2.0,1148386159 +23,3629,4.0,1148672311 +23,3668,3.0,1148669458 +23,3671,3.5,1149868554 +23,3681,3.5,1148669165 +23,3730,3.5,1148730072 +23,3736,4.0,1148671793 +23,3741,2.5,1148777893 +23,3751,4.0,1148386124 +23,3753,2.0,1148669688 +23,3788,4.0,1148729675 +23,3801,2.0,1148671784 +23,3844,3.0,1148669156 +23,3871,3.0,1148721105 +23,3897,4.5,1148669002 +23,3910,4.5,1148672113 +23,3949,5.0,1148673043 +23,3983,4.5,1148671887 +23,3989,4.0,1148777876 +23,3992,3.5,1148729496 +23,3994,4.0,1148669000 +23,3996,4.0,1148670535 +23,4007,4.0,1148670060 +23,4008,4.0,1166036125 +23,4011,4.5,1149868172 +23,4014,3.5,1148672776 +23,4022,2.0,1148729830 +23,4027,3.5,1148728652 +23,4034,3.5,1148386146 +23,4037,3.5,1148669449 +23,4103,3.5,1148671975 +23,4148,1.0,1149868599 +23,4167,3.0,1148669447 +23,4223,2.0,1148670048 +23,4225,4.0,1148669443 +23,4226,4.5,1148670464 +23,4235,4.0,1148671013 +23,4267,4.0,1148778637 +23,4278,3.5,1148670046 +23,4282,2.0,1148670035 +23,4297,3.5,1148672150 +23,4308,4.5,1148672412 +23,4310,1.5,1148778542 +23,4312,3.5,1148670033 +23,4343,3.0,1148670029 +23,4344,0.5,1148669153 +23,4359,2.0,1148672030 +23,4370,3.0,1148672429 +23,4378,4.0,1148672167 +23,4432,3.5,1148672010 +23,4447,3.5,1148669150 +23,4458,3.0,1148730000 +23,4564,1.5,1148729027 +23,4571,3.5,1148670025 +23,4641,4.0,1148671968 +23,4720,4.0,1148673475 +23,4816,3.0,1148670015 +23,4823,4.0,1148669432 +23,4848,4.0,1149868082 +23,4857,3.5,1148669430 +23,4865,3.5,1148669145 +23,4878,3.5,1148730080 +23,4881,3.5,1148669142 +23,4886,3.5,1148730186 +23,4896,3.5,1148673770 +23,4901,3.0,1148670011 +23,4914,5.0,1148669659 +23,4963,5.0,1148673020 +23,4967,5.0,1148673264 +23,4973,5.0,1148668997 +23,4975,2.0,1148729348 +23,4976,3.0,1148730142 +23,4978,4.5,1148730339 +23,4979,4.0,1148672064 +23,4993,4.0,1148670407 +23,4995,4.5,1148668988 +23,5013,4.5,1148671395 +23,5014,1.0,1148669423 +23,5015,3.5,1148671310 +23,5060,3.0,1148668984 +23,5073,3.0,1149868375 +23,5096,3.0,1148670003 +23,5114,4.0,1148672017 +23,5135,4.0,1148669420 +23,5147,4.0,1148721046 +23,5177,4.5,1148669995 +23,5222,4.0,1149868484 +23,5225,5.0,1148671005 +23,5266,4.0,1148669126 +23,5291,4.0,1148669408 +23,5299,2.5,1166728155 +23,5304,3.5,1148777819 +23,5348,3.5,1148669987 +23,5349,2.0,1148670299 +23,5367,4.0,1148673117 +23,5373,3.5,1148721129 +23,5377,3.5,1148729991 +23,5378,0.5,1148668981 +23,5385,3.5,1148669651 +23,5388,3.5,1148730375 +23,5445,3.0,1148671569 +23,5446,4.0,1148671806 +23,5463,2.5,1148669404 +23,5464,2.0,1148728872 +23,5470,3.0,1148669643 +23,5489,3.0,1148729764 +23,5502,4.0,1166728165 +23,5599,3.5,1148728844 +23,5618,3.5,1148670503 +23,5633,4.5,1148670377 +23,5669,4.0,1148729681 +23,5673,4.5,1148729615 +23,5679,3.5,1148728452 +23,5682,3.5,1148672044 +23,5810,4.0,1148669981 +23,5816,2.5,1148668978 +23,5878,4.0,1148671891 +23,5881,4.0,1148778680 +23,5882,1.5,1148728632 +23,5902,5.0,1148671465 +23,5940,4.0,1148728401 +23,5949,4.0,1148730381 +23,5952,4.0,1148670412 +23,5954,3.5,1148729985 +23,5956,3.5,1148672553 +23,5971,4.5,1148728488 +23,5989,5.0,1148669635 +23,5991,2.5,1148728773 +23,5992,5.0,1148671728 +23,5995,4.5,1148670480 +23,6001,4.5,1148671984 +23,6008,3.0,1166035845 +23,6016,5.0,1148670462 +23,6162,2.5,1148673567 +23,6197,2.5,1149868386 +23,6214,3.5,1148730363 +23,6218,4.0,1148673695 +23,6235,4.0,1148671914 +23,6281,4.0,1148669973 +23,6323,3.5,1149868589 +23,6333,3.5,1148673429 +23,6365,4.5,1148729589 +23,6377,3.5,1148670511 +23,6404,3.5,1148777788 +23,6415,1.5,1148671670 +23,6440,3.5,1148728655 +23,6537,3.0,1148730486 +23,6539,4.5,1148729602 +23,6552,3.5,1148730325 +23,6591,4.0,1148729489 +23,6599,3.5,1166728191 +23,6611,4.5,1148672103 +23,6620,3.5,1148777833 +23,6641,2.5,1149868022 +23,6643,4.5,1148673277 +23,6666,3.0,1148672862 +23,6669,4.0,1148669957 +23,6708,3.5,1148672069 +23,6709,1.5,1148669388 +23,6711,3.0,1148672708 +23,6783,4.0,1148671403 +23,6787,4.0,1148670473 +23,6796,3.5,1148777887 +23,6807,3.0,1148669120 +23,6867,3.5,1148670540 +23,6870,3.5,1148671873 +23,6873,4.0,1148728657 +23,6874,5.0,1148673160 +23,6881,4.5,1148729597 +23,6890,4.0,1148729704 +23,6918,5.0,1148721147 +23,6932,4.0,1148673289 +23,6934,3.0,1148669952 +23,6944,3.0,1149867788 +23,6947,2.5,1148669950 +23,6953,3.5,1148673142 +23,6954,3.0,1148777906 +23,6975,4.5,1149868005 +23,6981,2.5,1148721109 +23,6982,2.0,1148721080 +23,6985,4.0,1148669947 +23,6987,4.0,1148669620 +23,6993,3.5,1148671989 +23,7004,2.0,1148720869 +23,7008,1.5,1148673512 +23,7013,4.0,1148721066 +23,7038,4.0,1148778107 +23,7042,2.5,1148672120 +23,7063,4.5,1148729768 +23,7070,4.5,1148672289 +23,7072,4.5,1148729652 +23,7088,4.0,1148721133 +23,7090,4.5,1148729574 +23,7104,2.0,1148729032 +23,7132,3.5,1148671849 +23,7136,5.0,1148672629 +23,7139,3.5,1148672333 +23,7147,4.0,1166728160 +23,7153,4.5,1148386181 +23,7160,3.0,1148671300 +23,7161,2.0,1149867747 +23,7162,2.0,1148669384 +23,7234,4.0,1148669943 +23,7265,4.0,1148673554 +23,7323,4.0,1148777881 +23,7347,3.0,1148669381 +23,7361,4.5,1148670469 +23,7371,4.5,1148730359 +23,7419,3.5,1148671745 +23,7438,3.5,1148673159 +23,7458,2.0,1148673729 +23,7569,3.5,1166036074 +23,7587,4.0,1148672248 +23,7713,3.5,1148671356 +23,7748,3.5,1148672143 +23,7759,1.0,1166035969 +23,7766,4.0,1148670517 +23,7771,4.0,1148728880 +23,7942,3.0,1148729504 +23,8019,3.5,1148728467 +23,8042,4.5,1148669605 +23,8125,4.0,1148728849 +23,8154,3.5,1148673274 +23,8195,3.0,1148672148 +23,8239,3.5,1148672825 +23,8338,3.5,1148728858 +23,8368,4.0,1148673762 +23,8376,4.5,1148673478 +23,8464,3.5,1148671852 +23,8507,3.5,1148777848 +23,8529,2.0,1148729024 +23,8636,3.5,1148670303 +23,8656,2.5,1148777970 +23,8873,4.5,1148669373 +23,8910,4.0,1148778304 +23,8949,3.5,1148673283 +23,8955,5.0,1148671738 +23,8958,4.5,1148671289 +23,8966,3.5,1148730147 +23,8970,4.5,1148672765 +23,8973,4.0,1148673065 +23,8984,3.0,1148673032 +23,25753,3.5,1148730109 +23,25769,4.5,1148672235 +23,25805,2.5,1148777777 +23,26052,4.0,1148672082 +23,26131,4.0,1148670559 +23,26242,5.0,1148672259 +23,26729,4.5,1166035835 +23,27266,3.0,1148669930 +23,27317,3.0,1148730354 +23,27721,3.0,1148672301 +23,27803,4.5,1148672274 +23,30707,3.5,1148672278 +23,30749,4.5,1148670456 +23,30793,3.5,1148730062 +23,30812,3.5,1148669374 +23,30820,4.0,1148669926 +23,31101,4.0,1149867880 +23,31658,3.5,1148728505 +23,32587,3.5,1149868226 +23,32892,4.0,1166035981 +23,33162,2.5,1148673735 +23,33166,5.0,1148728740 +23,33493,4.0,1148670866 +23,33794,3.5,1148730017 +23,33903,3.5,1148673299 +23,34048,3.0,1148671579 +23,34143,2.5,1148728469 +23,34326,4.0,1148673587 +23,34437,3.0,1148672716 +23,36517,3.5,1148730328 +23,36529,3.5,1148730343 +23,36535,4.5,1148728385 +23,37733,3.5,1148730331 +23,37736,3.0,1148670189 +23,37741,4.0,1148670454 +23,38038,4.0,1148670525 +23,39183,4.5,1148671229 +23,39231,4.0,1148673719 +23,39292,4.5,1148670458 +23,39869,4.0,1149867915 +23,40278,3.5,1148671243 +23,40583,4.0,1148729077 +23,40629,4.0,1148671251 +23,40815,3.0,1148673758 +23,40819,3.0,1148671278 +23,41285,4.5,1148729584 +23,41569,2.0,1148720535 +23,41571,2.5,1148728902 +23,41863,3.5,1148777867 +23,41997,4.0,1148671219 +23,42004,4.0,1149867706 +23,42418,3.5,1148671236 +23,42734,3.0,1148778653 +23,44191,4.5,1148669596 +23,44204,4.0,1148670935 +23,45186,3.5,1148672962 +23,45447,1.5,1149867891 +23,45722,2.5,1166728253 +23,48385,3.5,1166728226 +24,6,5.0,849321588 +24,36,3.0,849321616 +24,81,4.0,849321769 +24,95,3.0,849321588 +24,150,3.0,849282414 +24,165,4.0,849282506 +24,296,5.0,849282414 +24,316,3.0,849282540 +24,356,4.0,849282540 +24,380,4.0,849282414 +24,457,4.0,849282507 +24,588,3.0,849282506 +24,590,4.0,849282414 +24,592,3.0,849282414 +24,610,3.0,849321669 +24,648,4.0,849321569 +24,736,3.0,849321569 +24,780,4.0,849282720 +24,786,4.0,849321569 +24,1034,3.0,849321955 +24,1161,4.0,849321826 +25,3,3.0,859625254 +25,32,4.0,859625180 +25,78,3.0,859625874 +25,104,4.0,859625336 +25,260,4.0,859625336 +25,494,3.0,859625254 +25,608,3.0,859625254 +25,653,2.0,859625336 +25,663,2.0,859625772 +25,707,3.0,859625553 +25,778,4.0,859625495 +25,780,4.0,859625180 +25,784,3.0,859625336 +25,786,3.0,859625254 +25,788,2.0,859625336 +25,802,5.0,859625442 +25,832,3.0,859625495 +25,842,2.0,859625824 +25,1073,5.0,859625254 +25,1354,1.0,859625931 +25,1356,3.0,859625442 +25,1358,5.0,859625974 +25,1391,2.0,859625669 +25,1405,3.0,859625669 +25,1409,2.0,859625845 +25,1483,3.0,859626258 +26,1,5.0,1360087980 +26,32,4.5,1354313537 +26,47,4.5,1360088070 +26,50,4.5,1360088047 +26,63,0.5,1351544773 +26,69,4.5,1351544454 +26,153,3.5,1360088114 +26,165,2.5,1360088108 +26,260,3.0,1360087975 +26,296,3.5,1360087955 +26,316,0.5,1360088129 +26,318,4.0,1360087964 +26,344,0.5,1360088074 +26,356,4.5,1352058551 +26,367,2.0,1360088133 +26,377,3.0,1360088079 +26,380,3.0,1360088041 +26,457,3.5,1360088007 +26,480,2.5,1360087958 +26,500,1.0,1360088125 +26,555,3.5,1352636797 +26,589,4.0,1360088014 +26,593,3.5,1354752756 +26,608,3.5,1360088060 +26,648,2.5,1360088081 +26,720,3.0,1351544331 +26,733,3.0,1360088143 +26,778,4.5,1354313990 +26,780,3.5,1360088024 +26,858,4.0,1360088089 +26,1036,3.5,1352058567 +26,1089,3.5,1371811577 +26,1196,3.5,1360088053 +26,1198,4.0,1360088064 +26,1210,3.5,1352058572 +26,1405,1.5,1351544316 +26,1527,4.0,1352636822 +26,1580,3.5,1360088119 +26,1653,3.5,1371811514 +26,1687,3.5,1351544445 +26,1732,4.0,1354752882 +26,1753,3.0,1351544792 +26,1831,3.0,1351544355 +26,1884,4.0,1352636799 +26,2028,3.0,1352058527 +26,2329,4.0,1371811575 +26,2355,4.0,1363376250 +26,2542,5.0,1352058619 +26,2571,5.0,1354752806 +26,2692,4.5,1354752751 +26,2858,4.0,1360088058 +26,2959,4.0,1354752886 +26,3108,2.0,1351544362 +26,3114,4.5,1371811559 +26,3147,3.0,1352058543 +26,3275,4.0,1352597810 +26,3481,2.5,1353708984 +26,3578,2.5,1352058529 +26,3744,4.0,1351544464 +26,4011,5.0,1351545050 +26,4019,4.0,1351544397 +26,4027,3.0,1351545093 +26,4161,3.5,1351544451 +26,4226,4.0,1353708990 +26,4262,2.5,1354752813 +26,4306,4.0,1351545101 +26,4776,4.0,1352058758 +26,4844,2.0,1351544780 +26,4865,4.5,1351544467 +26,4963,1.5,1352058557 +26,4973,3.5,1351545042 +26,4979,4.0,1353344972 +26,4995,3.0,1352058609 +26,5010,3.5,1352597808 +26,5110,4.0,1353345028 +26,5218,4.0,1353344992 +26,5418,4.0,1352058538 +26,5608,4.0,1364420293 +26,5617,2.0,1353708976 +26,5903,2.5,1352058766 +26,5952,4.0,1360088161 +26,5954,3.0,1352058603 +26,5989,2.0,1352921335 +26,6016,5.0,1352597728 +26,6333,0.5,1357253672 +26,6539,1.5,1357253678 +26,6708,3.5,1353344968 +26,6867,4.0,1351545056 +26,6870,3.0,1352921346 +26,6874,4.5,1352597710 +26,7323,4.0,1363810269 +26,7361,3.5,1365194619 +26,7438,3.5,1352838248 +26,7445,4.5,1352058756 +26,8368,3.0,1352058778 +26,8665,4.0,1352058548 +26,8784,2.0,1351545109 +26,8798,5.0,1352058660 +26,8874,1.5,1351545104 +26,8961,4.0,1351545119 +26,27376,0.5,1357253708 +26,27831,5.0,1351544753 +26,30810,3.0,1353708965 +26,31410,2.0,1352838206 +26,31878,4.0,1353344939 +26,32587,4.0,1352058784 +26,33794,4.0,1352921319 +26,34437,3.0,1353344981 +26,36529,4.0,1352058516 +26,37731,3.0,1357253700 +26,37741,3.5,1352921338 +26,38038,3.0,1361215024 +26,38061,4.5,1351545085 +26,41997,4.0,1352597707 +26,44191,5.0,1353708699 +26,44195,5.0,1351545082 +26,44199,4.5,1352058510 +26,44665,3.5,1352058533 +26,46976,4.0,1351545138 +26,47610,4.5,1352058666 +26,48516,4.5,1352921298 +26,48774,3.0,1353797039 +26,48780,4.5,1352921315 +26,49272,4.0,1352597697 +26,49278,3.0,1353962805 +26,49530,4.0,1352058503 +26,50851,3.5,1353868066 +26,50872,5.0,1352597714 +26,51255,3.5,1351545097 +26,51662,4.0,1352838254 +26,52604,4.0,1352920880 +26,52952,4.0,1353709027 +26,53129,4.5,1365194986 +26,53972,3.0,1352058770 +26,54286,5.0,1352058561 +26,54503,2.5,1353344881 +26,55118,2.5,1352921375 +26,55167,0.5,1357253685 +26,55247,4.0,1352838245 +26,55276,3.5,1352838242 +26,55280,3.5,1361215017 +26,55765,2.5,1352058524 +26,55820,3.0,1353708936 +26,56782,3.5,1351544480 +26,57669,3.5,1351545114 +26,58559,5.0,1352597791 +26,59315,3.5,1352597733 +26,59369,5.0,1352058657 +26,59387,3.0,1353868028 +26,59784,5.0,1352597790 +26,60069,3.0,1352838257 +26,60684,5.0,1352920912 +26,61024,3.0,1353345002 +26,61323,3.5,1353345011 +26,62849,4.5,1357253777 +26,63082,3.0,1352838237 +26,65514,5.0,1352597777 +26,67997,3.5,1353709018 +26,68157,3.5,1352597735 +26,68358,2.0,1353797029 +26,68954,3.5,1351545047 +26,69122,3.5,1352838229 +26,70533,0.5,1357253681 +26,71464,2.0,1353345007 +26,72998,3.5,1352597807 +26,73017,3.5,1352597692 +26,73587,4.5,1353344976 +26,79132,3.5,1354313972 +26,80489,2.0,1354313516 +26,82459,4.0,1351544798 +26,91542,3.5,1351545019 +26,92259,4.5,1354313566 +27,50,4.0,939077258 +27,73,5.0,939079553 +27,111,4.0,939076893 +27,296,4.0,939077164 +27,527,5.0,939079002 +27,593,4.0,939076893 +27,1213,4.0,939080935 +27,1343,4.0,939078921 +27,1584,4.0,939079553 +27,1610,4.0,939080148 +27,1639,4.0,939079118 +27,1704,5.0,939080090 +27,1721,3.0,939079855 +27,1892,4.0,939079553 +27,2356,2.0,939082326 +27,2391,3.0,939078921 +27,2396,2.0,939077258 +27,2501,4.0,939079779 +27,2502,4.0,939082276 +27,2710,1.0,939076569 +27,2712,4.0,939076677 +27,2762,5.0,939076519 +27,2858,5.0,939076519 +28,21,5.0,938942396 +28,58,5.0,938944078 +28,110,4.0,938944407 +28,345,5.0,938944923 +28,898,5.0,938944407 +28,899,5.0,938944744 +28,902,5.0,938944550 +28,903,3.0,938944636 +28,904,4.0,938942682 +28,908,5.0,938944975 +28,909,4.0,938944975 +28,913,4.0,938943150 +28,920,5.0,938942682 +28,924,4.0,938942755 +28,926,5.0,938942821 +28,933,4.0,938944683 +28,953,2.0,938944139 +28,1059,5.0,938944408 +28,1079,5.0,938943028 +28,1094,4.0,938942614 +28,1203,5.0,938943524 +28,1206,4.0,938944744 +28,1219,5.0,938943150 +28,1225,5.0,938944457 +28,1250,5.0,938943202 +28,1252,5.0,938944923 +28,1267,5.0,938943028 +28,1296,5.0,938944505 +28,1300,4.0,938944139 +28,1366,5.0,938944636 +28,1610,4.0,938943245 +28,1617,5.0,938942458 +28,1674,4.0,938944683 +28,1831,1.0,938942755 +28,1883,4.0,938944505 +28,1945,5.0,938943202 +28,1956,4.0,938944407 +28,1962,3.0,938943150 +28,2019,2.0,938942821 +28,2028,3.0,938942529 +28,2109,5.0,938944457 +28,2202,5.0,938943408 +28,2291,4.0,938943524 +28,2300,4.0,938944975 +28,2324,5.0,938944237 +28,2406,2.0,938944923 +28,2470,4.0,938943150 +28,2571,5.0,938944505 +28,2583,5.0,938943879 +28,2662,4.0,938943976 +29,778,5.0,1313927169 +29,1569,2.0,1313925564 +29,1681,0.5,1313925259 +29,1717,3.0,1313925074 +29,2065,0.5,1313925699 +29,2367,0.5,1313925185 +29,2384,1.5,1313925639 +29,2459,3.5,1313924474 +29,2513,3.0,1313924446 +29,2571,5.0,1313927206 +29,2713,3.0,1313925688 +29,2717,2.5,1313925589 +29,2942,0.5,1313925693 +29,3720,4.0,1313924856 +29,5065,2.0,1313925220 +29,6365,2.5,1313927224 +29,6502,5.0,1313927249 +29,6934,2.5,1313927226 +29,27822,4.0,1313925421 +29,51662,4.5,1313927193 +29,58559,5.0,1313927309 +29,73268,3.0,1313924902 +30,1,4.0,944943070 +30,2,2.0,945277634 +30,6,4.0,945276746 +30,8,4.0,968786809 +30,11,4.0,948141296 +30,14,4.0,945276564 +30,16,5.0,945115684 +30,18,2.0,945277971 +30,21,5.0,945276705 +30,23,4.0,945278756 +30,25,4.0,945115684 +30,32,2.0,945122277 +30,34,4.0,1039067883 +30,42,3.0,945278415 +30,45,3.0,1060795346 +30,47,4.0,986745716 +30,50,5.0,945113887 +30,52,5.0,945122740 +30,60,2.0,945277094 +30,70,4.0,1007352836 +30,78,2.0,945706968 +30,100,4.0,945277812 +30,110,5.0,945122218 +30,111,4.0,945113485 +30,118,3.0,994458116 +30,141,4.0,951010161 +30,150,5.0,945122277 +30,158,3.0,945277588 +30,161,5.0,948166619 +30,162,1.0,945113597 +30,165,4.0,948141601 +30,170,4.0,994458393 +30,196,2.0,999626484 +30,203,3.0,994458432 +30,208,2.0,945278527 +30,209,2.0,945277654 +30,224,4.0,996057525 +30,227,2.0,945279013 +30,228,2.0,986009538 +30,235,4.0,945114746 +30,253,4.0,948141681 +30,254,3.0,945276587 +30,260,4.0,948167472 +30,261,4.0,951008613 +30,272,4.0,996883776 +30,281,4.0,945115182 +30,282,5.0,964459362 +30,288,1.0,952884892 +30,296,5.0,994439589 +30,300,5.0,945122065 +30,317,4.0,945277330 +30,318,5.0,945112993 +30,337,5.0,945121922 +30,344,2.0,994458003 +30,348,5.0,945114800 +30,349,5.0,945277064 +30,350,4.0,960819270 +30,356,5.0,945122709 +30,357,4.0,945122526 +30,364,3.0,945276685 +30,368,4.0,945277588 +30,369,3.0,945277422 +30,371,4.0,945277277 +30,377,4.0,945276660 +30,380,4.0,945277224 +30,382,4.0,945277520 +30,410,4.0,948165514 +30,412,5.0,945114031 +30,413,2.0,995228802 +30,419,2.0,945278777 +30,424,4.0,946161737 +30,425,4.0,945114071 +30,426,2.0,945277698 +30,428,5.0,945115767 +30,432,3.0,954818652 +30,434,4.0,945277634 +30,440,4.0,945122305 +30,445,4.0,986009342 +30,451,4.0,945277919 +30,454,5.0,945276439 +30,457,5.0,945122219 +30,459,4.0,944943155 +30,463,4.0,945277405 +30,471,4.0,945112993 +30,472,4.0,945278328 +30,474,5.0,945115411 +30,477,4.0,945114453 +30,480,4.0,948140634 +30,485,4.0,945278179 +30,492,4.0,945276493 +30,500,4.0,945277277 +30,507,4.0,968786739 +30,508,5.0,945122127 +30,509,5.0,945122648 +30,515,5.0,945114031 +30,517,4.0,945278094 +30,518,2.0,945277535 +30,523,2.0,945116219 +30,527,5.0,945121654 +30,531,3.0,945122884 +30,532,2.0,945277742 +30,534,4.0,946161937 +30,535,4.0,945115684 +30,538,4.0,945115018 +30,539,3.0,945276726 +30,540,4.0,960820031 +30,541,4.0,948166511 +30,553,4.0,948140535 +30,555,5.0,945115684 +30,556,4.0,945113656 +30,581,3.0,945276726 +30,586,4.0,945278021 +30,587,2.0,945277405 +30,588,5.0,945276393 +30,589,4.0,948140376 +30,590,5.0,945115727 +30,592,4.0,945294508 +30,593,4.0,945114031 +30,594,3.0,945116219 +30,595,5.0,945122884 +30,596,4.0,960918653 +30,597,4.0,945122819 +30,608,5.0,945121703 +30,628,5.0,946162223 +30,640,3.0,951009961 +30,647,5.0,945276778 +30,661,2.0,945277181 +30,707,3.0,945278043 +30,733,4.0,945277145 +30,736,4.0,945277919 +30,750,3.0,945112993 +30,762,3.0,945278328 +30,765,3.0,951009383 +30,767,4.0,990239999 +30,780,4.0,945277224 +30,782,3.0,945276900 +30,800,4.0,945115105 +30,805,5.0,945277026 +30,806,1.0,945278630 +30,832,4.0,945276918 +30,858,5.0,945113250 +30,869,2.0,960819972 +30,898,5.0,945123379 +30,899,4.0,945280609 +30,903,4.0,948167638 +30,904,4.0,948167359 +30,908,4.0,948167200 +30,912,5.0,945113329 +30,913,5.0,945113429 +30,914,4.0,945115727 +30,919,4.0,952885624 +30,920,5.0,945114843 +30,921,5.0,945115217 +30,922,5.0,945280543 +30,923,5.0,945123035 +30,924,4.0,945114984 +30,928,5.0,945123334 +30,947,4.0,945114585 +30,950,4.0,961353806 +30,953,4.0,945123629 +30,954,4.0,945115133 +30,969,4.0,948166413 +30,971,4.0,945116296 +30,996,3.0,986009052 +30,1006,4.0,960819546 +30,1010,3.0,945295766 +30,1012,3.0,945295955 +30,1013,4.0,945295766 +30,1017,2.0,945295766 +30,1018,3.0,945295766 +30,1025,4.0,945295766 +30,1027,3.0,945278498 +30,1028,4.0,945295702 +30,1035,4.0,968785945 +30,1036,4.0,945115767 +30,1042,4.0,945116137 +30,1061,3.0,946162006 +30,1073,3.0,945295466 +30,1078,2.0,945114585 +30,1079,5.0,945294292 +30,1081,4.0,945294437 +30,1082,4.0,945114495 +30,1084,4.0,945113844 +30,1086,4.0,948166679 +30,1088,4.0,945294811 +30,1089,5.0,948167359 +30,1090,4.0,945294381 +30,1091,1.0,945295052 +30,1092,4.0,948141124 +30,1093,1.0,945115105 +30,1094,5.0,945121755 +30,1095,5.0,945113694 +30,1096,5.0,945294381 +30,1097,4.0,945115628 +30,1101,4.0,960917771 +30,1104,4.0,952885531 +30,1114,3.0,1039068134 +30,1120,4.0,945116296 +30,1124,4.0,945115411 +30,1126,2.0,960819766 +30,1129,3.0,945294508 +30,1135,3.0,945294700 +30,1171,3.0,945122605 +30,1179,5.0,945114819 +30,1181,4.0,968786007 +30,1186,4.0,945294437 +30,1189,3.0,945114638 +30,1193,4.0,944943070 +30,1196,4.0,945123680 +30,1197,3.0,945114495 +30,1198,5.0,945294292 +30,1200,3.0,948166414 +30,1206,2.0,945114673 +30,1207,5.0,945113377 +30,1208,5.0,945123246 +30,1210,4.0,945294508 +30,1212,3.0,951007847 +30,1213,5.0,945114231 +30,1214,4.0,945295323 +30,1219,4.0,952884971 +30,1220,5.0,945294381 +30,1221,5.0,945123035 +30,1222,4.0,945115684 +30,1225,5.0,948166414 +30,1226,4.0,945296019 +30,1227,5.0,945294292 +30,1228,5.0,945123065 +30,1231,5.0,945114800 +30,1234,5.0,945123522 +30,1235,2.0,945114453 +30,1240,4.0,945116137 +30,1242,5.0,945114495 +30,1244,4.0,945114271 +30,1245,4.0,945122127 +30,1246,4.0,945294508 +30,1247,4.0,952885104 +30,1250,5.0,945123210 +30,1252,5.0,945123065 +30,1258,4.0,945114365 +30,1259,4.0,945123827 +30,1263,5.0,945114843 +30,1265,4.0,945121960 +30,1266,5.0,945115218 +30,1267,5.0,945112993 +30,1270,5.0,951010688 +30,1271,4.0,945115293 +30,1272,5.0,945123246 +30,1276,5.0,945114271 +30,1277,5.0,945122526 +30,1278,3.0,945113844 +30,1283,4.0,948166855 +30,1285,4.0,945880277 +30,1286,3.0,945294811 +30,1291,4.0,945294509 +30,1292,5.0,945123170 +30,1302,4.0,945115684 +30,1303,4.0,945115218 +30,1304,4.0,944943155 +30,1307,4.0,952885624 +30,1320,3.0,951009284 +30,1321,4.0,945294509 +30,1327,4.0,945295543 +30,1332,4.0,960917865 +30,1333,5.0,945295702 +30,1334,4.0,945296019 +30,1339,4.0,945121560 +30,1343,5.0,945122846 +30,1345,3.0,945115456 +30,1346,4.0,945295052 +30,1350,4.0,945115807 +30,1352,4.0,945879533 +30,1358,5.0,945113981 +30,1366,5.0,945277990 +30,1370,4.0,945277207 +30,1377,3.0,945277674 +30,1378,4.0,945295052 +30,1380,4.0,945295543 +30,1385,3.0,945277556 +30,1387,4.0,945280937 +30,1388,3.0,960918255 +30,1390,3.0,945278359 +30,1393,4.0,994439147 +30,1394,5.0,945114495 +30,1395,5.0,945294509 +30,1396,4.0,945277002 +30,1399,3.0,945115018 +30,1422,4.0,945278156 +30,1438,3.0,945277760 +30,1440,3.0,960819894 +30,1459,4.0,948142097 +30,1461,4.0,945278857 +30,1466,5.0,945114724 +30,1485,4.0,945277520 +30,1488,4.0,945278415 +30,1508,4.0,945277797 +30,1517,3.0,1011327941 +30,1523,4.0,980135256 +30,1552,4.0,945278003 +30,1562,3.0,945278893 +30,1566,4.0,948165379 +30,1580,4.0,945880463 +30,1584,5.0,946162247 +30,1588,2.0,945277026 +30,1589,3.0,945122819 +30,1598,4.0,945277971 +30,1608,5.0,945276984 +30,1610,5.0,945276587 +30,1611,2.0,945123592 +30,1614,3.0,945276660 +30,1617,5.0,945113887 +30,1620,4.0,968786680 +30,1624,4.0,948140224 +30,1625,3.0,945276960 +30,1645,5.0,945116175 +30,1672,4.0,945276439 +30,1673,4.0,945122330 +30,1674,5.0,945123741 +30,1682,5.0,946162223 +30,1686,4.0,946161879 +30,1690,3.0,948142097 +30,1694,5.0,945114071 +30,1701,4.0,945115767 +30,1704,5.0,945121832 +30,1711,5.0,945277361 +30,1721,4.0,945277460 +30,1726,2.0,945122710 +30,1729,5.0,945116296 +30,1732,3.0,945122710 +30,1747,4.0,945115933 +30,1783,4.0,994439516 +30,1784,5.0,951010688 +30,1785,4.0,986008828 +30,1791,4.0,945278540 +30,1798,3.0,945279033 +30,1805,4.0,948141222 +30,1810,3.0,945276705 +30,1834,4.0,949977510 +30,1864,3.0,945279097 +30,1873,5.0,945122010 +30,1876,4.0,948141904 +30,1882,2.0,1030334513 +30,1884,1.0,948165859 +30,1892,5.0,945122605 +30,1912,4.0,945276249 +30,1917,4.0,945278278 +30,1923,4.0,945115864 +30,1943,3.0,945296041 +30,1945,4.0,945114192 +30,1947,4.0,945123854 +30,1951,4.0,945113057 +30,1952,4.0,948167081 +30,1953,4.0,952885034 +30,1954,5.0,945114883 +30,1955,4.0,945114961 +30,1956,4.0,945113844 +30,1957,4.0,945123497 +30,1958,3.0,945115767 +30,1960,5.0,945114800 +30,1961,5.0,945294381 +30,1962,5.0,945114883 +30,1965,4.0,986738498 +30,1968,4.0,945294381 +30,1982,3.0,945116252 +30,1994,4.0,945294641 +30,1997,5.0,945123317 +30,2000,4.0,945294641 +30,2001,4.0,945294764 +30,2002,3.0,945278278 +30,2003,3.0,994457962 +30,2009,3.0,948167472 +30,2011,4.0,945294811 +30,2012,3.0,945278244 +30,2013,3.0,948167277 +30,2015,3.0,952884997 +30,2023,5.0,1039070774 +30,2024,1.0,945115480 +30,2025,4.0,945115548 +30,2028,5.0,945113656 +30,2054,1.0,944943070 +30,2064,4.0,945113775 +30,2065,5.0,945294381 +30,2070,4.0,945123718 +30,2076,4.0,951008775 +30,2078,3.0,948166931 +30,2081,4.0,986735779 +30,2082,2.0,945277311 +30,2083,4.0,960818505 +30,2088,3.0,945295156 +30,2094,4.0,945277405 +30,2105,2.0,994439964 +30,2108,4.0,945276856 +30,2109,3.0,945295466 +30,2112,3.0,945276493 +30,2114,4.0,945294437 +30,2115,4.0,945294811 +30,2116,3.0,952744480 +30,2117,3.0,945294641 +30,2118,4.0,948166679 +30,2120,4.0,948141369 +30,2121,2.0,968788273 +30,2122,2.0,945295156 +30,2124,4.0,945276960 +30,2126,4.0,945116219 +30,2136,3.0,945295766 +30,2144,3.0,945116220 +30,2145,3.0,945294700 +30,2146,4.0,945295052 +30,2148,1.0,945294872 +30,2159,2.0,945113656 +30,2160,5.0,945280501 +30,2166,4.0,946162071 +30,2174,4.0,945294381 +30,2183,4.0,952743252 +30,2184,4.0,945295955 +30,2188,3.0,968787840 +30,2193,3.0,945294700 +30,2194,5.0,945114961 +30,2231,5.0,945276882 +30,2236,3.0,945276439 +30,2240,4.0,945294641 +30,2243,5.0,945115900 +30,2245,4.0,948167638 +30,2247,4.0,945294764 +30,2249,4.0,945276685 +30,2252,4.0,951009217 +30,2253,3.0,945277634 +30,2255,2.0,960917865 +30,2259,3.0,948165999 +30,2263,2.0,945294858 +30,2264,2.0,945295069 +30,2267,4.0,945277094 +30,2268,5.0,1037583956 +30,2269,5.0,945278188 +30,2278,3.0,945277113 +30,2286,1.0,945295214 +30,2289,5.0,945114406 +30,2291,5.0,945122526 +30,2296,2.0,945278963 +30,2300,5.0,945115512 +30,2301,4.0,945294509 +30,2302,4.0,945276393 +30,2307,4.0,948069839 +30,2311,3.0,945294811 +30,2313,4.0,945114453 +30,2320,4.0,945277718 +30,2321,5.0,945122794 +30,2329,3.0,945115512 +30,2334,3.0,945277654 +30,2336,5.0,945115270 +30,2346,3.0,960918218 +30,2347,3.0,945295543 +30,2352,4.0,948070285 +30,2353,5.0,945276439 +30,2355,5.0,948166591 +30,2367,2.0,945295588 +30,2369,4.0,945294811 +30,2371,3.0,945294509 +30,2374,3.0,945880314 +30,2376,4.0,945295052 +30,2389,3.0,945117801 +30,2391,5.0,948167472 +30,2396,5.0,945117110 +30,2398,4.0,945296110 +30,2402,3.0,954818726 +30,2403,3.0,948141433 +30,2407,4.0,945294700 +30,2409,4.0,945295588 +30,2410,4.0,945295156 +30,2411,4.0,945295214 +30,2412,4.0,945278718 +30,2417,3.0,945880314 +30,2418,3.0,945294912 +30,2420,2.0,945294912 +30,2424,4.0,945277094 +30,2427,1.0,945116330 +30,2432,4.0,945122740 +30,2433,4.0,946161981 +30,2435,2.0,945122356 +30,2454,4.0,945296019 +30,2457,4.0,945294437 +30,2463,4.0,945294641 +30,2468,2.0,945295214 +30,2470,4.0,945294764 +30,2474,5.0,945294381 +30,2490,5.0,945115345 +30,2505,3.0,945117685 +30,2513,1.0,945295052 +30,2517,2.0,945294858 +30,2518,3.0,945294764 +30,2520,4.0,945295543 +30,2521,3.0,968788273 +30,2523,3.0,945295466 +30,2524,4.0,945295543 +30,2528,3.0,945295543 +30,2529,4.0,945295703 +30,2530,2.0,945295588 +30,2531,2.0,945295543 +30,2532,3.0,945295543 +30,2533,2.0,994438963 +30,2535,4.0,945295543 +30,2539,4.0,945117600 +30,2551,2.0,945294641 +30,2561,4.0,945117751 +30,2571,3.0,945117284 +30,2574,3.0,945117855 +30,2577,3.0,986009301 +30,2598,4.0,945118444 +30,2599,5.0,945113775 +30,2605,4.0,945118833 +30,2611,5.0,949984748 +30,2616,3.0,945278292 +30,2617,3.0,1012830681 +30,2639,4.0,945294641 +30,2640,4.0,948167578 +30,2641,4.0,945294764 +30,2642,1.0,945295156 +30,2664,3.0,945115326 +30,2671,4.0,946161135 +30,2687,5.0,945118470 +30,2688,4.0,945118833 +30,2701,2.0,945117855 +30,2702,2.0,945114316 +30,2707,3.0,945117685 +30,2712,4.0,945118444 +30,2716,4.0,945294437 +30,2729,5.0,945114961 +30,2730,4.0,945295323 +30,2738,3.0,945116067 +30,2739,5.0,948166619 +30,2741,4.0,945294976 +30,2746,4.0,948141418 +30,2749,4.0,960917771 +30,2750,4.0,986738419 +30,2757,2.0,945294700 +30,2762,5.0,945118236 +30,2763,5.0,945118516 +30,2770,3.0,945118400 +30,2782,4.0,1002769837 +30,2787,4.0,945294764 +30,2790,3.0,945113125 +30,2791,2.0,945113981 +30,2793,3.0,945278645 +30,2794,3.0,945295156 +30,2795,4.0,945294437 +30,2797,5.0,951010736 +30,2802,4.0,945294912 +30,2803,4.0,945277046 +30,2804,4.0,945117941 +30,2805,4.0,947306097 +30,2819,4.0,948140044 +30,2829,4.0,945118685 +30,2841,4.0,945118578 +30,2851,2.0,945295588 +30,2852,5.0,945115018 +30,2856,4.0,945295797 +30,2858,5.0,945118093 +30,2861,4.0,961265714 +30,2871,4.0,945114365 +30,2875,4.0,945277277 +30,2881,4.0,945118754 +30,2883,4.0,945115242 +30,2890,4.0,945277046 +30,2908,4.0,960715669 +30,2912,4.0,1010373507 +30,2916,4.0,945116175 +30,2917,5.0,945113844 +30,2918,5.0,945115548 +30,2929,5.0,945123854 +30,2942,3.0,945295052 +30,2944,5.0,945295703 +30,2947,4.0,948140634 +30,2950,3.0,951162572 +30,2952,5.0,945115628 +30,2956,4.0,945294811 +30,2959,4.0,945118444 +30,2966,4.0,960658881 +30,2967,4.0,945296019 +30,2971,4.0,945115990 +30,2973,5.0,945123170 +30,2976,3.0,945118516 +30,2977,2.0,945118906 +30,2985,4.0,945294641 +30,2987,5.0,945294641 +30,2989,4.0,945294858 +30,2991,4.0,945295466 +30,3006,5.0,945113775 +30,3015,3.0,945295466 +30,3019,3.0,945123497 +30,3020,4.0,951008850 +30,3032,4.0,945295466 +30,3035,4.0,952885177 +30,3038,5.0,1014613565 +30,3039,4.0,945115864 +30,3044,3.0,945276778 +30,3053,4.0,948167081 +30,3063,2.0,945277311 +30,3068,5.0,945113694 +30,3071,4.0,954815132 +30,3072,4.0,948167200 +30,3074,4.0,948141681 +30,3081,3.0,945118516 +30,3082,3.0,1033398031 +30,3087,2.0,945294811 +30,3095,3.0,945113597 +30,3098,4.0,951008931 +30,3101,5.0,945115727 +30,3102,5.0,945294641 +30,3104,4.0,945115767 +30,3105,4.0,948140431 +30,3107,4.0,1039070693 +30,3108,2.0,945116137 +30,3111,5.0,945113057 +30,3114,5.0,948069950 +30,3120,4.0,951009217 +30,3130,3.0,945278929 +30,3138,3.0,986738761 +30,3141,4.0,952885578 +30,3144,3.0,945295766 +30,3147,4.0,946590784 +30,3152,4.0,945115767 +30,3156,4.0,968785158 +30,3160,5.0,949713340 +30,3167,4.0,960918160 +30,3169,3.0,945117941 +30,3173,3.0,948595947 +30,3174,4.0,996708747 +30,3176,4.0,949275887 +30,3185,3.0,950389052 +30,3197,4.0,951162481 +30,3198,5.0,948070040 +30,3204,4.0,951010161 +30,3206,4.0,951162533 +30,3210,4.0,951008022 +30,3218,1.0,952744452 +30,3219,4.0,948142236 +30,3244,4.0,948165577 +30,3246,5.0,948164324 +30,3247,3.0,951009046 +30,3249,4.0,948141904 +30,3252,4.0,952059599 +30,3253,4.0,948070151 +30,3255,4.0,948140634 +30,3256,4.0,952884934 +30,3257,3.0,960819766 +30,3258,3.0,960819374 +30,3263,4.0,948070151 +30,3269,3.0,951009046 +30,3274,4.0,951009251 +30,3286,2.0,952224346 +30,3296,4.0,954816853 +30,3298,5.0,951007880 +30,3308,4.0,951009217 +30,3316,2.0,994439603 +30,3334,4.0,960918606 +30,3354,4.0,953426082 +30,3358,5.0,986008589 +30,3359,4.0,954814831 +30,3360,5.0,952743252 +30,3361,4.0,952743110 +30,3362,5.0,952742834 +30,3363,4.0,952743008 +30,3370,4.0,960917657 +30,3385,2.0,954818846 +30,3386,4.0,952059512 +30,3391,3.0,968788547 +30,3394,3.0,954818365 +30,3395,4.0,986748223 +30,3418,4.0,952742981 +30,3420,4.0,960918160 +30,3421,4.0,1039070693 +30,3426,4.0,954816853 +30,3428,4.0,952744582 +30,3441,2.0,960917865 +30,3445,3.0,954818149 +30,3448,4.0,954816853 +30,3451,4.0,960918381 +30,3468,5.0,960918333 +30,3476,2.0,960819182 +30,3478,4.0,954816963 +30,3483,3.0,955926108 +30,3489,4.0,960819851 +30,3494,3.0,960918425 +30,3498,4.0,954816242 +30,3499,4.0,960818935 +30,3500,4.0,954818244 +30,3504,4.0,954814782 +30,3505,4.0,954815298 +30,3506,3.0,960918218 +30,3507,4.0,954816963 +30,3513,5.0,956970748 +30,3524,3.0,960917702 +30,3526,4.0,960917609 +30,3528,2.0,960819512 +30,3529,4.0,954818365 +30,3535,3.0,957052972 +30,3536,4.0,986011269 +30,3537,4.0,957566237 +30,3543,5.0,954814639 +30,3545,4.0,960918106 +30,3546,4.0,954815680 +30,3548,4.0,960918499 +30,3549,4.0,954815132 +30,3551,4.0,960918106 +30,3556,4.0,994279619 +30,3557,4.0,960819972 +30,3566,2.0,986008334 +30,3578,4.0,976597909 +30,3608,4.0,960917528 +30,3613,4.0,986738498 +30,3614,4.0,960819270 +30,3618,4.0,994279649 +30,3638,4.0,960918218 +30,3649,4.0,960917771 +30,3671,4.0,960918106 +30,3683,5.0,960917558 +30,3684,4.0,960917609 +30,3685,4.0,960917609 +30,3686,4.0,968787368 +30,3688,2.0,960917865 +30,3701,3.0,960917657 +30,3702,4.0,960918106 +30,3704,3.0,960917771 +30,3712,4.0,960818505 +30,3713,5.0,960818373 +30,3724,4.0,960918160 +30,3734,4.0,960917609 +30,3735,5.0,986739028 +30,3751,4.0,986008260 +30,3753,5.0,963756658 +30,3763,3.0,986745621 +30,3783,4.0,996418263 +30,3791,4.0,968787421 +30,3804,2.0,968788764 +30,3812,3.0,1039065693 +30,3826,4.0,965514373 +30,3834,4.0,986738865 +30,3844,4.0,968787159 +30,3852,4.0,994457359 +30,3859,4.0,994455829 +30,3873,4.0,968786587 +30,3897,4.0,1055788141 +30,3927,4.0,986739319 +30,3948,4.0,986008295 +30,3952,5.0,986008260 +30,3957,2.0,994438640 +30,3983,4.0,997488960 +30,3994,4.0,995850415 +30,3996,4.0,994279539 +30,4002,4.0,986738419 +30,4007,5.0,986738498 +30,4008,5.0,994457943 +30,4009,4.0,986738419 +30,4011,4.0,996950355 +30,4012,2.0,1015714238 +30,4014,5.0,1001961206 +30,4018,4.0,1017012514 +30,4022,4.0,1055788174 +30,4025,3.0,1009341085 +30,4027,5.0,994439405 +30,4029,4.0,994279539 +30,4033,5.0,980135286 +30,4034,5.0,980818214 +30,4037,5.0,986735749 +30,4039,3.0,986738661 +30,4041,4.0,986738559 +30,4055,4.0,994289229 +30,4060,4.0,986008739 +30,4062,4.0,986738559 +30,4063,3.0,994459012 +30,4085,4.0,986738419 +30,4086,4.0,986738419 +30,4088,5.0,1002769931 +30,4090,3.0,986738661 +30,4102,4.0,986738559 +30,4111,4.0,985829845 +30,4122,4.0,1039066670 +30,4126,4.0,986738613 +30,4128,4.0,986738559 +30,4132,2.0,986738761 +30,4146,1.0,1039070344 +30,4148,5.0,994457943 +30,4167,3.0,986008184 +30,4190,4.0,986739319 +30,4211,5.0,986008618 +30,4214,3.0,986738613 +30,4226,3.0,1055785445 +30,4228,3.0,986008121 +30,4239,5.0,990924261 +30,4246,4.0,993305342 +30,4262,4.0,994456359 +30,4263,5.0,994456480 +30,4276,4.0,994457484 +30,4280,4.0,994456957 +30,4291,3.0,994457827 +30,4292,4.0,990239709 +30,4306,5.0,1006149047 +30,4308,5.0,993305296 +30,4310,4.0,990924190 +30,4316,3.0,994458606 +30,4318,4.0,994458330 +30,4321,4.0,994457641 +30,4322,4.0,1039066094 +30,4326,5.0,990239742 +30,4333,3.0,1039066739 +30,4344,4.0,993305401 +30,4345,4.0,998109431 +30,4352,3.0,1039067403 +30,4354,4.0,1039069100 +30,4361,4.0,994456359 +30,4370,4.0,995253235 +30,4378,3.0,999310004 +30,4396,2.0,1039067528 +30,4406,5.0,994474005 +30,4409,2.0,1039069165 +30,4410,4.0,1039066447 +30,4447,4.0,1000003813 +30,4464,4.0,994458116 +30,4465,5.0,994456957 +30,4474,3.0,994457142 +30,4482,4.0,1039067222 +30,4486,4.0,994457417 +30,4487,3.0,1039067434 +30,4488,3.0,994440115 +30,4489,4.0,1039066779 +30,4491,2.0,1039066699 +30,4495,3.0,994457641 +30,4496,4.0,1002770429 +30,4498,4.0,1039066447 +30,4499,4.0,1009340636 +30,4503,4.0,1039066670 +30,4522,5.0,994456213 +30,4524,4.0,994458764 +30,4526,3.0,1039067528 +30,4528,2.0,1002770641 +30,4557,5.0,994457057 +30,4564,4.0,1039066538 +30,4570,4.0,1039066094 +30,4573,4.0,1039067284 +30,4608,4.0,994458546 +30,4615,1.0,994458003 +30,4617,5.0,994456213 +30,4621,3.0,994457962 +30,4627,2.0,996950674 +30,4628,5.0,994456636 +30,4629,2.0,996950674 +30,4639,4.0,997064028 +30,4643,4.0,996939545 +30,4661,4.0,996950608 +30,4681,3.0,996950542 +30,4700,4.0,1009339092 +30,4709,4.0,996950542 +30,4710,4.0,996950542 +30,4713,3.0,996950542 +30,4714,2.0,996950542 +30,4728,3.0,1014533110 +30,4733,4.0,1021348160 +30,4751,4.0,1039066923 +30,4776,4.0,1039070065 +30,4787,5.0,1002769606 +30,4803,4.0,1002769606 +30,4815,4.0,1001732228 +30,4830,4.0,1003621148 +30,4832,3.0,1002769561 +30,4835,5.0,1002769561 +30,4881,4.0,1030333611 +30,4886,4.0,1004923866 +30,4889,4.0,1006148969 +30,4890,3.0,1006492881 +30,4896,4.0,1009935138 +30,4898,4.0,1055788107 +30,4929,3.0,1006492955 +30,4932,4.0,1006492955 +30,4941,2.0,1006492955 +30,4951,3.0,1009340636 +30,4954,4.0,1008086617 +30,4960,4.0,1020575100 +30,4963,5.0,1009695904 +30,4971,4.0,1009340636 +30,4978,5.0,1017556925 +30,4979,4.0,1012097954 +30,4993,3.0,1010289168 +30,4995,5.0,1019362987 +30,5015,4.0,1015738983 +30,5027,3.0,1011328056 +30,5043,3.0,1009937419 +30,5049,4.0,1011328004 +30,5060,3.0,945114153 +30,5061,3.0,1011328004 +30,5064,5.0,1012169711 +30,5111,4.0,1014004783 +30,5120,4.0,1055791286 +30,5122,4.0,1014004783 +30,5125,2.0,1012830712 +30,5127,3.0,1016419671 +30,5152,5.0,1020056483 +30,5161,4.0,1014004730 +30,5172,4.0,1030933052 +30,5187,4.0,1015205545 +30,5193,3.0,1014613681 +30,5198,4.0,1014613681 +30,5208,4.0,1014613681 +30,5214,3.0,1039065866 +30,5237,4.0,1015713629 +30,5247,3.0,1015205474 +30,5250,4.0,1015205474 +30,5269,1.0,1036123436 +30,5276,4.0,1019363280 +30,5277,2.0,1019363280 +30,5293,5.0,1033397995 +30,5297,4.0,1037686951 +30,5299,5.0,1031799237 +30,5303,3.0,1019363219 +30,5307,3.0,1019363219 +30,5308,4.0,1020056776 +30,5309,3.0,1020056776 +30,5334,4.0,1019363168 +30,5335,2.0,1019363168 +30,5344,4.0,1019363168 +30,5359,4.0,1020056711 +30,5364,4.0,1060013900 +30,5366,1.0,1020056711 +30,5382,2.0,1021348305 +30,5388,4.0,1022478671 +30,5391,4.0,1029558644 +30,5400,4.0,1023517288 +30,5445,4.0,1024891611 +30,5452,2.0,1024891677 +30,5464,5.0,1027051203 +30,5471,3.0,1027051268 +30,5502,3.0,1046105730 +30,5506,4.0,1030232314 +30,5534,4.0,1029516219 +30,5544,4.0,1029516219 +30,5548,4.0,1029516219 +30,5561,4.0,1030232487 +30,5564,3.0,1035175467 +30,5581,3.0,1031799315 +30,5620,4.0,1033944353 +30,5630,5.0,1033879863 +30,5655,3.0,1039067403 +30,5670,4.0,1060013921 +30,5679,1.0,1036367646 +30,5680,4.0,1036984289 +30,5689,4.0,1033880299 +30,5694,2.0,1033880299 +30,5696,4.0,1033880299 +30,5699,4.0,1033880299 +30,5703,3.0,1033880263 +30,5705,4.0,1033880263 +30,5707,4.0,1033880263 +30,5712,4.0,1039066538 +30,5723,4.0,1033880263 +30,5729,3.0,1039067617 +30,5732,4.0,1033880263 +30,5742,4.0,1033880263 +30,5745,4.0,1033879938 +30,5773,3.0,1035175594 +30,5812,5.0,1042494862 +30,5843,4.0,1036367914 +30,5846,4.0,1036367914 +30,5847,5.0,1036367914 +30,5854,4.0,1039070904 +30,5857,1.0,1036367914 +30,5859,2.0,1036367914 +30,5869,4.0,1036367914 +30,5900,3.5,1060013944 +30,5902,4.0,1045502600 +30,5923,3.0,1038203534 +30,5926,3.0,1038203534 +30,5927,4.0,1038203534 +30,5933,4.0,1038203534 +30,5938,4.0,1038203534 +30,5940,3.0,1039066739 +30,5945,4.0,1046106724 +30,5956,5.0,1041284839 +30,5959,3.0,1060736279 +30,5960,5.0,1040659215 +30,5961,4.0,1041284839 +30,5962,3.0,1040659215 +30,5968,4.0,1041284839 +30,5989,5.0,1041284703 +30,5991,5.0,1043686934 +30,6001,5.0,1040659119 +30,6027,4.0,1042495022 +30,6084,3.0,1043687080 +30,6096,3.0,1043687080 +30,6101,2.0,1043687080 +30,6103,2.0,1043687080 +30,6115,3.0,1043687014 +30,6127,4.0,1043687015 +30,6180,3.0,1055798065 +30,6186,2.0,1046106675 +30,6212,3.0,1049142071 +30,6233,3.0,1048704049 +30,6234,3.0,1048704049 +30,6237,4.0,1055798009 +30,6238,4.0,1049142167 +30,6240,3.0,1049142157 +30,6263,3.0,1049142105 +30,6281,4.0,1049749056 +30,6308,4.0,1049749117 +30,6318,3.0,1049749117 +30,6345,4.0,1055797910 +30,6413,3.5,1055797818 +30,6419,5.0,1055788249 +30,6422,4.0,1055797845 +30,6436,5.0,1055788276 +30,6440,4.0,1055797723 +30,6452,5.0,1055788246 +30,6473,4.0,1055797789 +30,6565,4.5,1060013871 +31,31,4.0,1273541953 +31,32,4.5,1273720546 +31,50,3.5,1273633559 +31,111,4.5,1273714533 +31,260,4.0,1273720416 +31,296,4.5,1273714417 +31,318,4.0,1273542992 +31,372,3.5,1273541973 +31,379,4.0,1273542073 +31,527,5.0,1273543009 +31,541,4.0,1273720299 +31,778,3.5,1273720368 +31,858,4.5,1273720163 +31,904,4.0,1273714421 +31,1089,4.5,1273714480 +31,1091,3.0,1273542081 +31,1186,2.0,1273542019 +31,1197,4.5,1273542870 +31,1206,4.5,1273720435 +31,1208,4.5,1273542817 +31,1221,4.5,1273714380 +31,1234,4.5,1273714490 +31,1299,4.0,1273542012 +31,1378,4.0,1273542028 +31,1416,3.0,1273542066 +31,1957,4.5,1273542033 +31,1967,4.5,1273541999 +31,2028,4.5,1273542882 +31,2248,4.0,1273541967 +31,2329,4.5,1273542808 +31,2502,4.0,1273720582 +31,2571,4.5,1273720348 +31,2692,4.5,1273542879 +31,2959,5.0,1273542969 +31,2997,4.5,1273720551 +31,3072,3.0,1273541964 +31,3087,3.5,1273542085 +31,3698,4.5,1273542046 +31,3755,4.0,1273541939 +31,3897,4.0,1274150193 +31,3911,4.0,1273541943 +31,4886,4.0,1274150314 +31,4979,3.5,1274150321 +31,4993,4.5,1273720397 +31,5418,4.5,1274150200 +31,5952,4.5,1274149537 +31,5995,3.5,1273553986 +31,6539,3.5,1274150289 +31,6711,4.5,1274150179 +31,7153,4.5,1273720461 +31,7361,5.0,1273542961 +31,8961,4.0,1274150085 +31,33154,4.0,1274149939 +31,33794,4.5,1274149910 +31,44191,4.0,1274150249 +31,44195,4.0,1273720591 +31,48394,4.5,1274149580 +31,50872,4.5,1274150130 +31,54503,4.0,1274157016 +31,55280,4.5,1274150341 +31,55820,4.0,1273720255 +31,58559,5.0,1273542984 +31,59315,5.0,1274150005 +31,64614,4.5,1273720384 +31,72226,4.0,1273720329 +31,72998,4.0,1274150047 +31,74789,4.5,1273542596 +31,76093,3.5,1273720454 +31,76251,5.0,1273897820 +32,2,4.0,834828285 +32,19,3.0,834828185 +32,31,4.0,834828440 +32,44,3.0,834828337 +32,110,5.0,834828155 +32,150,5.0,834828059 +32,153,4.0,834828085 +32,158,3.0,834828318 +32,165,4.0,834828085 +32,168,3.0,834828318 +32,173,3.0,834828227 +32,204,4.0,834828285 +32,208,4.0,834828137 +32,225,2.0,834828168 +32,231,5.0,834828108 +32,252,3.0,834828268 +32,261,4.0,834828302 +32,266,3.0,834828185 +32,292,5.0,834828123 +32,296,2.0,834828059 +32,300,3.0,834828155 +32,316,3.0,834828108 +32,317,3.0,834828168 +32,333,3.0,834828337 +32,337,4.0,834828248 +32,344,4.0,834828085 +32,349,5.0,834828084 +32,350,3.0,834828337 +32,356,5.0,834828248 +32,364,3.0,834828227 +32,367,4.0,834828248 +32,377,4.0,834828361 +32,380,3.0,834828059 +32,410,3.0,834828155 +32,420,2.0,834828185 +32,428,3.0,834828632 +32,432,3.0,834828199 +32,434,3.0,834828123 +32,440,4.0,834828302 +32,442,4.0,834828361 +32,457,5.0,834828155 +32,480,5.0,834828286 +32,553,5.0,834828248 +32,588,3.0,834828085 +32,589,5.0,834828337 +32,590,5.0,834828059 +32,592,4.0,834828059 +32,595,2.0,834828108 +33,19,3.0,1032769612 +33,88,3.0,1032678367 +33,157,1.0,1033543456 +33,231,3.0,1032769595 +33,344,4.0,1032769612 +33,377,2.0,1032676906 +33,532,4.0,1032768899 +33,562,4.0,1032859878 +33,832,4.0,1033604138 +33,851,1.0,1032678174 +33,908,4.0,1032676906 +33,1060,4.0,1032859767 +33,1091,4.0,1032772901 +33,1120,4.0,1032766375 +33,1186,5.0,1032679370 +33,1196,2.0,1032679359 +33,1197,4.0,1032679865 +33,1198,4.0,1032679359 +33,1230,4.0,1032676887 +33,1258,5.0,1032679331 +33,1259,4.0,1032679449 +33,1285,4.0,1032679577 +33,1291,4.0,1032679682 +33,1347,2.0,1032679990 +33,1359,3.0,1032859220 +33,1394,2.0,1032679469 +33,1407,4.0,1032769282 +33,1717,3.0,1032769282 +33,1760,1.0,1032859270 +33,1784,4.0,1033604541 +33,1967,2.0,1032679534 +33,1974,3.0,1032680083 +33,1982,4.0,1032766234 +33,1983,4.0,1032766234 +33,1984,1.0,1032766234 +33,1994,5.0,1032679707 +33,2005,4.0,1032679843 +33,2006,4.0,1032678268 +33,2060,3.0,1032860971 +33,2064,5.0,1032679359 +33,2088,2.0,1032680420 +33,2107,2.0,1032676887 +33,2145,4.0,1032678268 +33,2170,2.0,1032860951 +33,2193,2.0,1032680004 +33,2329,4.0,1032766347 +33,2371,4.0,1032679978 +33,2395,3.0,1033192223 +33,2470,4.0,1032680420 +33,2502,5.0,1032858907 +33,2507,1.0,1032766463 +33,2541,4.0,1032766168 +33,2599,4.0,1032859343 +33,2617,2.0,1032859504 +33,2689,1.0,1032766852 +33,2706,3.0,1032858995 +33,2787,4.0,1032680233 +33,2793,2.0,1032768775 +33,2795,4.0,1032859847 +33,2888,2.0,1032859012 +33,2891,1.0,1032859119 +33,2917,4.0,1032679534 +33,2918,4.0,1032679449 +33,2926,3.0,1032679887 +33,2959,4.0,1032678153 +33,2997,4.0,1033604225 +33,3007,5.0,1032859587 +33,3157,2.0,1032859389 +33,3273,2.0,1032769282 +33,3298,4.0,1032677550 +33,3317,2.0,1032859878 +33,3408,3.0,1032677405 +33,3481,3.0,1032769523 +33,3552,3.0,1032769002 +33,3566,2.0,1032677594 +33,3568,3.0,1032677740 +33,3608,4.0,1032679682 +33,3617,4.0,1034930027 +33,3747,2.0,1032677346 +33,3752,2.0,1034930090 +33,3785,3.0,1032769237 +33,3794,4.0,1032677485 +33,3852,4.0,1032859750 +33,3858,3.0,1032859050 +33,3865,2.0,1032766929 +33,3868,4.0,1032860933 +33,3893,2.0,1032769543 +33,3897,3.0,1032859587 +33,3910,2.0,1032677362 +33,3911,5.0,1032769506 +33,4016,4.0,1032769543 +33,4017,4.0,1032677266 +33,4027,2.0,1032676888 +33,4214,4.0,1032680097 +33,4247,3.0,1034930190 +33,4248,1.0,1032859254 +33,4251,4.0,1032677507 +33,4333,4.0,1032679936 +33,4340,4.0,1034930133 +33,4378,3.0,1032677333 +33,4388,2.0,1032769250 +33,4447,2.0,1033604248 +33,4450,5.0,1032677313 +33,4452,2.0,1034929996 +33,4483,5.0,1032676888 +33,4488,2.0,1032679865 +33,4502,2.0,1032678282 +33,4509,4.0,1032680097 +33,4558,3.0,1032680212 +33,4621,4.0,1032680375 +33,4622,3.0,1032767204 +33,4641,3.0,1033604322 +33,4643,2.0,1032677637 +33,4649,4.0,1032859151 +33,4652,4.0,1032676792 +33,4662,4.0,1032676888 +33,4678,3.0,1032678352 +33,4679,5.0,1032679978 +33,4718,4.0,1032768802 +33,4728,3.0,1034930125 +33,4809,3.0,1032679488 +33,4878,4.0,1032677282 +33,4890,4.0,1032678268 +33,4898,4.0,1034930060 +33,4929,4.0,1032680332 +33,4956,3.0,1032858930 +33,4963,3.0,1032769523 +33,4974,3.0,1032858979 +33,4975,4.0,1032677541 +33,4988,3.0,1032859878 +33,5015,4.0,1032676999 +33,5074,4.0,1032677012 +33,5106,2.0,1032678432 +33,5282,4.0,1032678324 +33,5339,4.0,1035340620 +33,5483,4.0,1032677082 +33,5669,4.0,1037009003 +33,5673,5.0,1037008981 +34,6,3.0,973747402 +34,21,4.0,973748254 +34,32,5.0,973747284 +34,39,3.0,973747340 +34,47,5.0,973747188 +34,50,5.0,973748491 +34,70,4.0,973746231 +34,110,4.0,973747427 +34,150,4.0,973746527 +34,198,3.0,973747709 +34,253,4.0,973747949 +34,260,4.0,973747559 +34,288,4.0,973746243 +34,293,4.0,973748543 +34,296,5.0,973746450 +34,316,4.0,973747797 +34,337,5.0,973746864 +34,377,3.0,973748307 +34,407,3.0,973747985 +34,442,3.0,973747797 +34,482,5.0,973747271 +34,527,4.0,973746450 +34,541,4.0,973747459 +34,555,5.0,973746273 +34,556,4.0,973747188 +34,562,4.0,973747258 +34,581,4.0,973747385 +34,589,5.0,973747591 +34,593,4.0,973746494 +34,595,4.0,973746365 +34,599,3.0,973748336 +34,608,4.0,973746527 +34,610,4.0,973747740 +34,678,5.0,973746450 +34,724,4.0,973747985 +34,750,4.0,973746814 +34,858,4.0,973746463 +34,912,5.0,973746569 +34,913,5.0,973747459 +34,919,3.0,973748587 +34,923,5.0,973748034 +34,924,5.0,973747559 +34,940,5.0,973748614 +34,969,4.0,973748413 +34,1036,4.0,973748196 +34,1059,5.0,973747315 +34,1089,4.0,973748508 +34,1090,4.0,973746543 +34,1092,4.0,973749001 +34,1097,3.0,973747591 +34,1103,4.0,973748111 +34,1104,4.0,973746681 +34,1120,3.0,973747156 +34,1129,4.0,973747643 +34,1130,3.0,973747911 +34,1147,4.0,973747105 +34,1178,5.0,973746655 +34,1179,1.0,973747354 +34,1193,4.0,973746231 +34,1196,3.0,973748587 +34,1198,4.0,973748163 +34,1200,4.0,973748196 +34,1201,4.0,973748228 +34,1204,5.0,973748401 +34,1206,5.0,973747591 +34,1207,5.0,973746527 +34,1208,5.0,973748045 +34,1213,5.0,973747188 +34,1214,5.0,973747848 +34,1215,3.0,973747591 +34,1219,5.0,973747848 +34,1220,3.0,973748787 +34,1221,4.0,973748676 +34,1222,5.0,973748069 +34,1231,4.0,973746476 +34,1234,3.0,973747017 +34,1240,5.0,973747559 +34,1247,5.0,973748112 +34,1250,4.0,973746543 +34,1252,4.0,973747459 +34,1253,4.0,973746707 +34,1254,5.0,973748587 +34,1258,4.0,973747877 +34,1259,4.0,973746961 +34,1262,4.0,973748587 +34,1263,4.0,973748427 +34,1267,5.0,973747459 +34,1270,3.0,973747017 +34,1272,4.0,973748427 +34,1276,5.0,973746569 +34,1287,5.0,973748228 +34,1298,3.0,973748443 +34,1299,4.0,973746569 +34,1320,3.0,973747797 +34,1321,4.0,973747895 +34,1339,4.0,973747964 +34,1340,3.0,973747877 +34,1358,5.0,973746613 +34,1387,3.0,973748196 +34,1396,4.0,973747658 +34,1407,4.0,973747924 +34,1464,1.0,973748964 +34,1527,3.0,973747685 +34,1580,3.0,973747621 +34,1589,4.0,973748979 +34,1597,3.0,973749013 +34,1610,4.0,973748228 +34,1617,4.0,973746214 +34,1645,3.0,973748979 +34,1653,4.0,973747685 +34,1676,3.0,973747777 +34,1690,3.0,973747797 +34,1754,3.0,973749026 +34,1923,4.0,973747327 +34,1931,5.0,973748614 +34,1952,2.0,973746627 +34,1954,3.0,973748277 +34,1965,3.0,973747591 +34,1997,5.0,973747911 +34,2009,4.0,973747643 +34,2028,4.0,973746494 +34,2064,5.0,973746961 +34,2076,5.0,973748919 +34,2105,4.0,973747765 +34,2288,5.0,973747609 +34,2289,5.0,973746929 +34,2311,4.0,973747752 +34,2338,2.0,973749049 +34,2353,3.0,973748307 +34,2366,4.0,973747877 +34,2396,4.0,973747245 +34,2407,3.0,973747685 +34,2527,4.0,973747697 +34,2528,3.0,973747723 +34,2529,4.0,973747643 +34,2553,3.0,973747609 +34,2571,5.0,973747559 +34,2599,4.0,973746995 +34,2644,4.0,973747877 +34,2648,4.0,973747848 +34,2657,4.0,973747723 +34,2662,4.0,973747591 +34,2716,2.0,973747877 +34,2762,4.0,973748508 +34,2793,3.0,973747985 +34,2797,3.0,973748713 +34,2858,4.0,973746365 +34,2863,4.0,973748787 +34,2871,4.0,973748523 +34,2901,4.0,973747740 +34,2908,5.0,973746655 +34,2916,4.0,973747658 +34,2921,4.0,973748350 +34,2944,3.0,973748196 +34,2949,3.0,973748228 +34,2951,4.0,973748254 +34,2971,4.0,973748809 +34,2985,3.0,973747643 +34,2987,4.0,973748598 +34,3032,4.0,973747740 +34,3035,5.0,973746668 +34,3062,4.0,973748228 +34,3066,3.0,973746214 +34,3074,4.0,973748361 +34,3168,4.0,973748614 +34,3196,5.0,973746655 +34,3256,3.0,973747385 +34,3286,1.0,973746896 +34,3361,4.0,973746974 +34,3386,4.0,973748941 +34,3418,3.0,973748196 +34,3467,4.0,973748336 +34,3468,4.0,973746707 +34,3471,4.0,973747591 +34,3504,5.0,973746668 +34,3508,4.0,973748350 +34,3527,4.0,973747658 +34,3551,4.0,973748523 +34,3634,5.0,973746734 +34,3702,5.0,973747591 +34,3703,4.0,973747539 +34,3706,4.0,973747482 +34,3727,4.0,973746760 +34,3811,5.0,973746597 +34,3917,4.0,973747938 +34,3927,4.0,973747685 +34,5060,3.0,973747017 +35,24,2.5,1174450075 +35,230,1.5,1174450069 +35,247,3.0,1174450074 +35,468,4.0,1174450073 +35,724,2.0,1174450068 +35,838,4.0,1174450072 +35,914,1.5,1174450057 +35,1029,1.5,1174450070 +35,1047,1.5,1174450053 +35,1188,0.5,1174450079 +35,1231,1.5,1174450076 +35,1249,2.5,1174450052 +35,1267,1.0,1174450054 +35,2105,3.5,1174450064 +35,2278,4.0,1174450063 +35,2289,3.5,1174450061 +35,2336,2.0,1174450051 +35,2968,0.5,1174450080 +35,3072,5.0,1174450056 +35,3755,2.5,1174450059 +36,6,3.0,847057147 +36,16,3.0,847057223 +36,18,4.0,847058210 +36,21,3.0,847056854 +36,25,4.0,847057119 +36,31,3.0,847057202 +36,32,5.0,847056901 +36,36,4.0,853005249 +36,41,3.0,847057696 +36,45,4.0,847057256 +36,50,4.0,847056901 +36,52,3.0,847057520 +36,55,4.0,853005393 +36,57,4.0,847057727 +36,58,5.0,847057363 +36,68,4.0,847058235 +36,111,4.0,847057202 +36,144,4.0,847057626 +36,145,3.0,847057301 +36,147,3.0,847057765 +36,151,3.0,847058110 +36,165,3.0,847056547 +36,216,3.0,847057385 +36,223,5.0,847057223 +36,232,5.0,847057504 +36,236,3.0,847057018 +36,242,4.0,847058186 +36,246,4.0,847057256 +36,248,2.0,847057444 +36,249,4.0,847057471 +36,252,3.0,847057061 +36,253,4.0,847056783 +36,256,3.0,847057136 +36,260,5.0,847057564 +36,261,4.0,847057120 +36,265,5.0,847057136 +36,272,4.0,847057240 +36,273,3.0,847057240 +36,277,3.0,847057202 +36,282,3.0,847056984 +36,288,4.0,847056803 +36,293,5.0,847057094 +36,296,4.0,847056510 +36,300,4.0,847056819 +36,306,5.0,847057482 +36,307,5.0,847057520 +36,308,5.0,847057594 +36,312,3.0,847057827 +36,315,5.0,847056984 +36,318,4.0,847056636 +36,321,5.0,847058110 +36,334,4.0,847058173 +36,345,4.0,847057385 +36,348,3.0,847057278 +36,350,3.0,847056948 +36,356,3.0,847056636 +36,357,4.0,847056901 +36,362,4.0,847057314 +36,368,3.0,847057119 +36,372,3.0,847057444 +36,381,3.0,847057328 +36,382,3.0,847057520 +36,412,5.0,847057626 +36,420,3.0,847056926 +36,431,4.0,847057363 +36,432,3.0,847056948 +36,434,3.0,847056636 +36,440,3.0,847056926 +36,454,3.0,847056783 +36,457,3.0,847056547 +36,469,4.0,847058159 +36,475,4.0,847057363 +36,480,3.0,847056636 +36,481,4.0,847057626 +36,491,3.0,847057385 +36,508,4.0,847057047 +36,509,4.0,847057018 +36,515,3.0,847057179 +36,521,4.0,847057776 +36,524,3.0,847057575 +36,527,5.0,847056901 +36,531,4.0,847057444 +36,532,3.0,847057415 +36,534,4.0,847057552 +36,539,3.0,847056854 +36,540,3.0,847057363 +36,543,3.0,847057328 +36,551,3.0,847057094 +36,586,2.0,847056854 +36,587,3.0,847056854 +36,588,3.0,847056547 +36,590,3.0,847056510 +36,592,3.0,847056510 +36,593,4.0,847056670 +36,597,3.0,847056819 +36,640,3.0,853005492 +36,720,4.0,847057827 +36,778,5.0,847058362 +36,788,2.0,853005800 +36,838,4.0,847058174 +36,1036,3.0,847057696 +36,1150,3.0,847057928 +36,1356,4.0,853005393 +36,1367,3.0,853005621 +37,1,4.0,981308121 +37,364,5.0,981308154 +37,595,5.0,981308140 +37,902,2.0,981308246 +37,912,5.0,981308213 +37,920,5.0,981308224 +37,940,3.0,981308294 +37,1193,5.0,981304357 +37,1196,3.0,981308309 +37,1246,5.0,981304357 +37,1307,5.0,981308234 +37,1907,5.0,981308177 +37,2028,4.0,981304316 +37,2081,5.0,981308154 +37,2085,4.0,981308140 +37,2273,3.0,981304291 +37,2858,4.0,981308009 +37,3357,4.0,981304887 +37,3481,4.0,981307942 +37,3538,4.0,981307942 +37,3564,4.0,981304357 +37,3751,3.0,981307942 +37,3948,4.0,981307968 +37,3977,3.0,981307838 +37,3996,5.0,981304524 +37,4011,3.0,981304524 +37,4014,4.0,981304557 +37,4015,3.0,981304635 +37,4018,5.0,981304606 +37,4034,5.0,981307823 +37,4054,3.0,981307823 +37,4069,4.0,981304524 +38,16,4.5,1389771630 +38,47,4.0,1416075134 +38,110,4.0,1390332781 +38,293,4.5,1389806635 +38,296,5.0,1389730389 +38,306,4.5,1389721577 +38,318,4.5,1389722765 +38,356,4.5,1390465407 +38,364,4.0,1389806534 +38,365,4.5,1389721943 +38,367,3.0,1416075151 +38,527,4.5,1392361524 +38,588,4.0,1389806512 +38,590,3.5,1389806500 +38,593,4.5,1392361495 +38,778,4.0,1389806694 +38,838,4.5,1389721548 +38,858,4.5,1389722583 +38,926,4.5,1416074954 +38,1078,4.5,1389721750 +38,1080,4.0,1389806738 +38,1136,4.0,1389722713 +38,1172,4.5,1389867840 +38,1213,4.0,1416075195 +38,1221,4.5,1389722598 +38,1244,4.0,1389721555 +38,1289,4.5,1389723752 +38,1682,4.0,1416075214 +38,1704,3.5,1416075186 +38,2000,3.0,1416075336 +38,2025,3.0,1389721837 +38,2068,5.0,1389722661 +38,2075,4.5,1389722398 +38,2092,3.5,1389721935 +38,2131,4.5,1389771994 +38,2194,3.0,1416075365 +38,2324,4.5,1389723398 +38,2571,4.0,1416075122 +38,2641,4.0,1389721528 +38,2686,4.0,1389721611 +38,2750,4.0,1389721880 +38,2858,4.0,1389722718 +38,2959,4.0,1389722656 +38,3328,5.0,1389721692 +38,3578,4.5,1416075166 +38,3677,5.0,1389723727 +38,4114,5.0,1389772593 +38,4226,4.5,1389722696 +38,4422,4.5,1389727818 +38,4862,3.5,1390248633 +38,4936,3.5,1389722066 +38,4973,4.0,1389722650 +38,4993,4.0,1389806551 +38,4995,4.5,1416075239 +38,5349,4.0,1416075232 +38,5418,4.5,1416075296 +38,5952,4.5,1416075161 +38,6107,5.0,1389772624 +38,6365,3.0,1416075350 +38,6539,4.0,1416075210 +38,6870,4.5,1389771156 +38,6874,4.0,1416075281 +38,6953,4.5,1390248823 +38,7063,4.5,1389724072 +38,7089,5.0,1389722376 +38,7153,4.5,1389722731 +38,7234,4.0,1416074901 +38,7327,4.5,1389727905 +38,7396,4.5,1389771972 +38,7438,3.5,1416075321 +38,7936,4.5,1389727866 +38,7941,5.0,1389727843 +38,8154,4.0,1416074904 +38,8197,4.5,1389727922 +38,8239,4.5,1389727802 +38,8656,4.5,1389770804 +38,26587,4.5,1389722725 +38,33794,4.0,1416075331 +38,44555,4.5,1389722602 +38,48682,5.0,1389723788 +38,49530,4.0,1449693140 +38,55118,4.5,1389771542 +38,55247,3.5,1449693163 +38,58559,4.5,1389722628 +38,59447,5.0,1389772590 +38,60069,4.0,1389721498 +38,64614,4.5,1449693148 +38,69761,5.0,1389723595 +38,71180,5.0,1389772585 +38,73344,4.5,1389727890 +38,76111,5.0,1389723643 +38,79132,4.0,1389722704 +38,86781,4.5,1390248771 +38,89759,5.0,1389723529 +38,96829,4.0,1404126075 +38,97826,5.0,1389723592 +38,98587,5.0,1389772588 +38,100843,4.5,1390150283 +38,101070,3.0,1416074797 +38,102753,5.0,1389723691 +38,103980,4.0,1390151672 +38,105197,4.5,1416074943 +38,105355,4.5,1404126065 +38,105769,4.5,1394397488 +38,106487,4.5,1392238405 +38,106782,4.0,1392124587 +38,107555,5.0,1389723664 +38,109374,4.0,1416074859 +38,110102,4.0,1413132672 +38,110586,4.5,1413132591 +38,134130,4.5,1445451791 +39,6,4.0,832523607 +39,10,5.0,832523129 +39,16,5.0,832525129 +39,21,3.0,833532967 +39,22,4.0,832523361 +39,31,3.0,832525157 +39,47,4.0,832523229 +39,50,3.0,832523307 +39,69,3.0,832523276 +39,70,5.0,832523201 +39,73,3.0,833532967 +39,76,3.0,832523411 +39,110,5.0,832523550 +39,145,3.0,832523738 +39,150,4.0,832523013 +39,153,3.0,832523045 +39,160,3.0,832523339 +39,162,5.0,832525181 +39,165,5.0,832523045 +39,168,3.0,832525093 +39,170,3.0,832525181 +39,175,3.0,833534728 +39,177,4.0,832523386 +39,180,5.0,832523276 +39,188,2.0,832523411 +39,198,5.0,832523229 +39,220,4.0,832523478 +39,223,4.0,832523276 +39,231,4.0,832523082 +39,253,4.0,832523151 +39,273,3.0,832523340 +39,285,4.0,832523436 +39,288,4.0,832523339 +39,293,4.0,832523276 +39,296,5.0,832523013 +39,315,4.0,832525157 +39,316,4.0,832523082 +39,328,5.0,832523229 +39,330,2.0,832523386 +39,332,3.0,832523386 +39,333,3.0,832523307 +39,338,3.0,832525157 +39,344,4.0,832523045 +39,353,5.0,832523201 +39,366,3.0,832523411 +39,380,5.0,832523013 +39,426,3.0,832523386 +39,434,4.0,832523129 +39,457,4.0,832523550 +39,553,4.0,832525093 +39,555,4.0,832525157 +39,588,3.0,832523045 +39,590,3.0,832523013 +39,592,3.0,832523013 +39,593,3.0,832523340 +39,595,3.0,832523082 +39,606,4.0,832523411 +39,611,5.0,832523386 +39,648,4.0,833532966 +39,662,5.0,833534266 +39,663,4.0,833534728 +39,743,4.0,833533335 +40,50,4.5,1466993349 +40,260,4.5,1466993118 +40,1136,5.0,1466993530 +40,1196,4.5,1466993354 +40,1197,5.0,1466993529 +40,1198,4.5,1466993346 +40,2959,4.0,1466993115 +40,4226,5.0,1466993204 +40,4993,4.5,1466993344 +40,7153,4.5,1466993342 +40,7361,4.5,1466993378 +40,8874,4.5,1466993229 +40,8961,4.5,1466993276 +40,33794,4.0,1466993488 +40,38061,5.0,1466993335 +40,44191,4.5,1466993481 +40,48516,5.0,1466993384 +40,48774,5.0,1466993158 +40,48780,5.0,1466993190 +40,49272,4.5,1466993355 +40,51255,5.0,1466993234 +40,51540,4.5,1466993333 +40,55820,4.5,1466993372 +40,58559,4.5,1466993341 +40,68157,4.0,1466993490 +40,68237,4.5,1466993381 +40,68954,4.5,1466993409 +40,70286,4.5,1466993382 +40,74458,3.5,1466993111 +40,79132,4.5,1466993067 +40,79702,4.5,1466993225 +40,99114,4.0,1466993108 +40,106920,5.0,1466993170 +40,109487,4.5,1466993210 +40,112556,4.0,1466993109 +40,116797,4.0,1466993120 +40,122882,4.5,1466993261 +40,122886,4.5,1466993084 +40,122904,4.5,1466993083 +40,127202,5.0,1466993138 +40,134130,4.0,1466993078 +40,152077,5.0,1466993247 +40,152081,4.0,1466993080 +41,2,3.5,1093888283 +41,29,4.0,1109812071 +41,110,4.0,1107100653 +41,130,4.5,1093889645 +41,165,4.0,1093889934 +41,172,3.5,1093886586 +41,173,4.0,1093887939 +41,196,3.0,1107100488 +41,208,4.0,1093889464 +41,233,4.0,1093889445 +41,253,4.0,1093889592 +41,260,4.0,1093886942 +41,262,4.5,1093888245 +41,316,3.5,1093887342 +41,327,4.0,1093887872 +41,329,4.0,1093887332 +41,332,4.0,1093887890 +41,353,4.0,1093889723 +41,356,3.5,1109811944 +41,377,4.5,1093889928 +41,380,4.0,1093889918 +41,426,3.0,1093887714 +41,435,4.0,1107100407 +41,442,3.5,1093887565 +41,457,4.0,1109812244 +41,541,5.0,1093886954 +41,592,4.0,1109816473 +41,610,3.0,1093886809 +41,648,4.0,1093889939 +41,674,4.0,1093886816 +41,736,4.0,1093889943 +41,748,3.5,1093889745 +41,780,4.0,1093889923 +41,849,4.0,1093887933 +41,917,4.0,1093888232 +41,919,4.0,1093888563 +41,924,5.0,1093886949 +41,986,3.5,1093888257 +41,1037,3.5,1093887515 +41,1073,4.0,1093888221 +41,1077,4.0,1093886957 +41,1097,4.0,1093887808 +41,1127,3.5,1093887255 +41,1129,4.5,1093887235 +41,1196,4.0,1093886850 +41,1200,4.0,1093887592 +41,1206,3.5,1093886864 +41,1210,4.0,1109812957 +41,1214,4.0,1093886842 +41,1220,5.0,1093888517 +41,1222,4.0,1109812135 +41,1240,4.0,1093886838 +41,1270,4.0,1093887801 +41,1298,5.0,1097643542 +41,1302,3.0,1093886607 +41,1320,4.0,1093886800 +41,1333,2.5,1093886688 +41,1356,4.0,1093887320 +41,1371,3.5,1093886662 +41,1372,4.0,1093887228 +41,1373,4.0,1093887305 +41,1374,4.5,1093887459 +41,1375,4.0,1093886628 +41,1376,4.0,1093887310 +41,1437,4.0,1093888850 +41,1527,4.0,1093887546 +41,1545,4.5,1093889656 +41,1552,3.5,1109816599 +41,1580,4.0,1093887797 +41,1591,4.0,1109817081 +41,1676,4.0,1107100370 +41,1690,4.0,1093886682 +41,1719,4.0,1093889432 +41,1747,3.0,1093886675 +41,1748,4.0,1093886696 +41,1772,4.0,1093888605 +41,1779,3.5,1109816608 +41,1876,3.5,1093887570 +41,1880,4.0,1093889528 +41,1917,4.0,1093887494 +41,1965,3.0,1093887748 +41,1997,4.0,1093886646 +41,2001,3.0,1093886639 +41,2003,2.5,1093886710 +41,2009,4.5,1093887358 +41,2011,4.0,1093886978 +41,2012,3.5,1093887247 +41,2025,5.0,1093888806 +41,2105,5.0,1093886731 +41,2117,5.0,1093887657 +41,2174,4.0,1093889070 +41,2232,3.5,1093887225 +41,2311,4.0,1093887270 +41,2322,3.5,1093887900 +41,2454,3.0,1093887778 +41,2455,3.0,1093886717 +41,2520,3.0,1093889767 +41,2521,3.5,1093889882 +41,2522,4.0,1093889880 +41,2528,4.0,1093886794 +41,2529,4.0,1093887555 +41,2530,3.0,1093887368 +41,2531,3.0,1093887455 +41,2532,3.0,1093887370 +41,2536,2.5,1093889776 +41,2553,4.0,1093887787 +41,2571,5.0,1093886846 +41,2600,3.5,1093887446 +41,2640,4.0,1093887000 +41,2641,3.5,1093886996 +41,2642,3.5,1093887641 +41,2729,3.5,1093888808 +41,2746,3.5,1093888619 +41,2808,4.0,1109813581 +41,2858,4.5,1093889955 +41,2877,4.0,1093888474 +41,2916,3.5,1093887350 +41,2918,4.0,1107100646 +41,2950,4.0,1093889376 +41,3033,4.0,1093886735 +41,3156,4.0,1093887653 +41,3175,4.0,1107100458 +41,3253,3.0,1093886668 +41,3300,4.0,1109812788 +41,3354,3.5,1107102322 +41,3471,4.0,1093887804 +41,3479,4.0,1093889047 +41,3556,4.0,1093889492 +41,3593,4.0,1093888032 +41,3638,3.5,1093887254 +41,3698,3.5,1093887241 +41,3699,3.5,1109816504 +41,3702,4.0,1093887379 +41,3703,4.0,1093887539 +41,3704,4.0,1093887217 +41,3745,3.5,1093886835 +41,3793,4.0,1109812900 +41,3802,3.5,1093887961 +41,3863,3.5,1093886804 +41,3910,4.0,1093888544 +41,3937,3.0,1093887835 +41,3986,3.5,1107100521 +41,4039,4.0,1093888299 +41,4232,4.0,1109815125 +41,4306,4.0,1093888109 +41,4370,4.0,1093887385 +41,4443,3.5,1109812764 +41,4446,4.0,1093886811 +41,4553,4.5,1107100717 +41,4625,3.5,1109814401 +41,4678,4.0,1097643815 +41,4691,2.5,1107100577 +41,4789,5.0,1093888629 +41,4811,4.0,1093888505 +41,4874,3.5,1093887686 +41,4936,4.0,1093888656 +41,5219,4.0,1109814362 +41,5349,3.5,1107100440 +41,5445,4.0,1093887670 +41,5459,3.5,1093887634 +41,5463,3.5,1093887667 +41,5490,3.5,1093889755 +41,5518,4.5,1093888754 +41,5522,4.0,1093887626 +41,5618,4.0,1093889018 +41,5694,3.5,1093888602 +41,5705,4.0,1093888574 +41,5881,3.0,1107100419 +41,5903,4.5,1093887315 +41,5981,4.0,1093887680 +41,6116,4.5,1107100678 +41,6157,4.0,1109816658 +41,6264,3.5,1093887841 +41,6303,4.0,1093887726 +41,6316,4.5,1093889299 +41,6333,4.0,1109812953 +41,6365,4.0,1093887300 +41,6385,4.5,1093889479 +41,6502,3.5,1109813193 +41,6537,3.5,1093887324 +41,6541,4.0,1107100382 +41,6645,4.0,1093887757 +41,6678,3.0,1093887605 +41,6725,5.0,1107100700 +41,6863,4.0,1093889696 +41,6934,4.0,1093887354 +41,6951,4.0,1093888293 +41,6979,4.5,1093887507 +41,7001,4.0,1093887733 +41,7060,4.5,1093888481 +41,7164,4.5,1109814931 +41,7373,4.0,1107100536 +41,7817,3.0,1093887692 +41,7991,4.0,1093887208 +41,8371,4.0,1107101191 +41,8499,4.0,1093888986 +41,8633,4.0,1093886983 +41,8644,4.5,1109816462 +41,8861,4.0,1109814414 +42,110,4.0,1473258241 +42,165,3.5,1473258327 +42,260,4.5,1473258165 +42,296,5.0,1473258343 +42,318,5.0,1473258147 +42,349,4.0,1473258352 +42,356,4.5,1473258274 +42,380,3.5,1473258331 +42,457,5.0,1473258276 +42,480,5.0,1473258322 +42,508,3.5,1473258311 +42,527,4.5,1473258231 +42,588,4.0,1473258320 +42,589,5.0,1473258239 +42,648,4.0,1473258424 +42,733,3.5,1473258305 +42,780,4.5,1473258392 +42,1036,5.0,1473258238 +42,1097,5.0,1473258304 +42,1196,5.0,1473258161 +42,1198,5.0,1473258167 +42,1200,5.0,1473258283 +42,1210,4.0,1473258220 +42,1291,4.5,1473258209 +42,1320,1.5,1473258445 +42,1370,3.5,1473258346 +42,1527,4.0,1473258360 +42,1573,3.0,1473258409 +42,1704,4.5,1473258315 +42,1721,4.0,1473258371 +42,2028,4.0,1473258242 +42,2571,3.5,1473258169 +42,2916,4.0,1473258329 +42,2985,4.0,1473258309 +42,3793,3.5,1473258388 +42,3996,2.5,1473258340 +42,4886,4.0,1473258318 +42,4993,5.0,1473258228 +42,5349,4.0,1473258373 +42,5952,4.5,1473258214 +42,7153,4.0,1473258181 +42,7502,5.0,1473258230 +42,8636,4.0,1473258386 +42,8961,4.0,1473258362 +42,33794,3.5,1473258269 +42,40815,3.5,1473258378 +42,44191,4.0,1473258374 +42,48394,4.0,1473258404 +42,48516,4.5,1473258313 +42,58559,4.5,1473258226 +42,59315,4.0,1473258244 +42,63082,3.0,1473258337 +42,68358,3.5,1473258248 +42,69844,4.5,1473258403 +42,70286,4.5,1473258440 +42,73017,4.0,1473258450 +42,74458,3.5,1473258356 +42,76093,4.5,1473258438 +42,79132,4.5,1473258272 +42,87232,4.0,1473258436 +42,89745,4.0,1473258396 +42,91529,3.5,1473258383 +42,98809,3.0,1473258427 +42,106489,2.0,1473258421 +42,106782,4.5,1473258369 +42,109487,4.0,1473258348 +42,111759,3.0,1473258291 +42,112852,3.5,1473258281 +42,122886,4.5,1473258287 +42,134853,2.0,1473258334 +43,1,4.0,974768260 +43,34,4.0,974768402 +43,39,4.0,974768903 +43,70,2.0,974767953 +43,104,2.0,974769666 +43,110,5.0,974767808 +43,216,1.0,974770180 +43,223,3.0,974768430 +43,231,3.0,974769902 +43,339,4.0,974769935 +43,356,5.0,974768654 +43,480,4.0,974767808 +43,500,3.0,974769730 +43,524,3.0,974767845 +43,527,5.0,974756704 +43,585,2.0,974770079 +43,588,3.0,974768798 +43,589,3.0,974767746 +43,608,5.0,974770589 +43,837,4.0,974769370 +43,838,4.0,974768872 +43,1035,4.0,974767808 +43,1210,3.0,974756766 +43,1380,3.0,974770180 +43,1457,3.0,974770325 +43,1476,4.0,974769818 +43,1513,4.0,974770137 +43,1517,1.0,974769125 +43,1544,2.0,974768022 +43,1569,5.0,974769863 +43,1580,4.0,974767917 +43,1612,4.0,974769312 +43,1673,3.0,974767879 +43,1726,1.0,974770474 +43,1777,3.0,974769125 +43,1806,1.0,974769482 +43,1821,3.0,974769561 +43,1883,3.0,974768903 +43,1895,2.0,974769902 +43,1907,3.0,974756766 +43,1958,4.0,974769253 +43,1968,3.0,974768604 +43,1997,5.0,974770536 +43,2000,2.0,974768471 +43,2003,2.0,974769658 +43,2004,1.0,974770180 +43,2054,2.0,974770079 +43,2081,4.0,974768965 +43,2082,2.0,974770281 +43,2109,3.0,974770104 +43,2144,3.0,974768999 +43,2150,3.0,974769207 +43,2160,1.0,974767879 +43,2291,3.0,974767845 +43,2321,4.0,974768632 +43,2355,4.0,974768632 +43,2384,4.0,974768872 +43,2390,3.0,974768285 +43,2395,3.0,974768834 +43,2396,4.0,974768225 +43,2447,3.0,974769843 +43,2454,3.0,974767917 +43,2455,3.0,974767845 +43,2496,2.0,974769730 +43,2539,2.0,974769659 +43,2622,2.0,974770360 +43,2671,4.0,974769586 +43,2683,2.0,974770325 +43,2688,3.0,974756704 +43,2690,4.0,974769370 +43,2700,2.0,974768402 +43,2706,4.0,974768903 +43,2723,3.0,974770104 +43,2770,3.0,974769963 +43,2791,2.0,974767746 +43,2804,4.0,974768367 +43,2836,3.0,974769659 +43,2858,5.0,974768349 +43,2879,4.0,974769561 +43,2978,2.0,974770180 +43,2997,4.0,974768604 +43,3005,2.0,974756766 +43,3052,3.0,974769253 +43,3114,4.0,974768260 +43,3156,2.0,974770248 +43,3160,4.0,974756976 +43,3173,3.0,974767983 +43,3189,4.0,974769843 +43,3247,3.0,974769963 +43,3254,2.0,974770007 +43,3255,3.0,974769034 +43,3286,2.0,974767808 +43,3301,2.0,974770281 +43,3409,4.0,974757072 +43,3450,2.0,974767953 +43,3481,2.0,974756976 +43,3510,4.0,974756976 +43,3515,4.0,974756976 +43,3525,3.0,974769561 +43,3535,1.0,974757072 +43,3555,2.0,974757005 +43,3624,3.0,974757005 +43,3712,2.0,974769818 +43,3753,4.0,974756976 +43,3773,2.0,974770227 +43,3868,1.0,974768834 +43,3869,1.0,974769902 +43,3917,2.0,974767809 +43,3948,2.0,974768798 +43,3969,4.0,974768104 +44,1,4.0,858707138 +44,3,5.0,858707194 +44,5,3.0,858707194 +44,6,3.0,858707194 +44,17,2.0,858707139 +44,25,3.0,858707139 +44,32,3.0,858707138 +44,62,5.0,858707138 +44,95,3.0,858707138 +44,104,4.0,858707248 +44,135,4.0,858707310 +44,141,2.0,858707138 +44,260,3.0,858707247 +44,494,3.0,858707194 +44,628,3.0,858707310 +44,637,2.0,858707310 +44,648,3.0,858707138 +44,733,4.0,858707194 +44,736,4.0,858707138 +44,780,5.0,858707138 +44,786,3.0,858707194 +44,788,3.0,858707248 +44,802,3.0,858707310 +44,805,4.0,858707310 +44,1047,3.0,858707464 +45,520,3.5,1140202251 +45,899,4.0,1140202396 +45,903,5.0,1140202299 +45,1199,4.0,1140202319 +45,1333,4.5,1140202390 +45,1639,3.0,1140202266 +45,1673,4.5,1140202294 +45,1748,4.5,1140202371 +45,2572,2.5,1140202408 +45,2692,4.5,1140202246 +45,2699,2.5,1140202271 +45,3052,2.5,1140202307 +45,3160,4.5,1140202374 +45,3307,4.5,1140202850 +45,3753,0.5,1140202339 +45,4235,4.0,1140202705 +45,4246,1.0,1140202402 +45,4995,2.5,1140202334 +45,5878,4.0,1140202838 +45,7064,5.0,1140202700 +45,26151,5.0,1140202636 +46,73,5.0,1366389910 +46,355,5.0,1366392410 +46,724,5.0,1366389683 +46,1270,5.0,1366392989 +46,1359,4.5,1366389877 +46,1515,5.0,1366389853 +46,1707,5.0,1366392466 +46,1965,5.0,1366389759 +46,2153,5.0,1366390158 +46,2379,5.0,1366389889 +46,2381,5.0,1366390952 +46,2383,5.0,1366390956 +46,2398,5.0,1366389797 +46,2539,5.0,1366389671 +46,2541,5.0,1366389694 +46,2605,5.0,1366389699 +46,2804,5.0,1366391610 +46,3157,4.5,1366389806 +46,3247,4.0,1366389728 +46,3868,5.0,1366389737 +46,4993,5.0,1366390915 +46,5952,5.0,1366391137 +46,7004,5.0,1366389915 +46,7153,5.0,1366390910 +46,8387,5.0,1366390963 +46,26614,5.0,1366391584 +46,33615,5.0,1366389926 +46,33794,5.0,1366392529 +46,49530,5.0,1366393248 +46,50872,5.0,1366393308 +46,58559,5.0,1366390187 +46,59018,5.0,1366393234 +46,79132,5.0,1366390899 +46,80463,5.0,1366393535 +46,81834,5.0,1366393591 +46,88125,5.0,1366392165 +46,89745,5.0,1366391603 +46,91529,5.0,1366391663 +46,98124,5.0,1366390127 +47,1,5.0,832228931 +47,2,5.0,832229657 +47,10,4.0,832228931 +47,32,4.0,832229007 +47,39,3.0,832229039 +47,50,4.0,832229039 +47,95,3.0,832229161 +47,110,5.0,832228979 +47,150,4.0,832228796 +47,153,4.0,832228859 +47,160,3.0,832229039 +47,161,5.0,832228931 +47,165,4.0,832228859 +47,173,5.0,832229561 +47,208,3.0,832228958 +47,231,3.0,832228906 +47,236,4.0,832229068 +47,253,3.0,832228958 +47,266,3.0,832229007 +47,288,4.0,832228979 +47,292,5.0,832228958 +47,296,4.0,832228796 +47,300,3.0,832228958 +47,315,4.0,832229068 +47,316,5.0,832228906 +47,329,4.0,832228906 +47,344,3.0,832228859 +47,349,4.0,832228859 +47,380,4.0,832228796 +47,410,3.0,832228979 +47,420,3.0,832229068 +47,434,4.0,832228931 +47,442,3.0,832229985 +47,457,5.0,832229879 +47,588,4.0,832228859 +47,592,3.0,832228796 +47,593,5.0,832229879 +47,595,3.0,832228906 +48,1,4.0,1318796720 +48,2,3.5,1322169967 +48,34,3.0,1322169717 +48,110,4.0,1319746142 +48,111,3.0,1439687078 +48,158,3.0,1322170542 +48,163,3.5,1322170475 +48,223,2.5,1322169932 +48,231,3.5,1322169695 +48,288,3.5,1319744320 +48,293,5.0,1305605384 +48,296,4.5,1410971707 +48,344,3.5,1322169641 +48,356,4.0,1319744507 +48,364,4.0,1319745852 +48,367,3.5,1322169697 +48,480,3.5,1322167325 +48,501,3.5,1367466511 +48,527,4.5,1305604773 +48,541,4.0,1322719227 +48,562,3.5,1368072767 +48,593,3.5,1322169588 +48,595,3.5,1322169669 +48,648,3.5,1322169653 +48,673,3.0,1322170930 +48,741,4.0,1414562221 +48,778,4.5,1305605614 +48,784,2.5,1419495810 +48,858,4.0,1367729182 +48,924,4.5,1425959805 +48,1097,3.5,1322169711 +48,1127,3.5,1319745467 +48,1148,3.5,1318721589 +48,1175,4.0,1305602381 +48,1185,4.0,1303371127 +48,1206,3.5,1316496812 +48,1214,3.5,1322169763 +48,1222,3.5,1322167612 +48,1240,3.5,1410971787 +48,1258,4.0,1322169973 +48,1270,3.5,1322169645 +48,1274,3.5,1318721485 +48,1293,4.0,1412452845 +48,1407,2.5,1412457717 +48,1485,3.5,1322170149 +48,1499,2.5,1412471587 +48,1527,3.5,1322169801 +48,1544,3.5,1322167341 +48,1580,3.5,1322167292 +48,1591,3.0,1322171839 +48,1676,3.0,1419495799 +48,1682,3.5,1322169947 +48,1721,4.0,1322169693 +48,1732,3.5,1318725610 +48,1784,4.5,1305604618 +48,1882,3.0,1322171335 +48,1884,4.5,1305605225 +48,1917,3.5,1322169954 +48,1921,4.0,1305604875 +48,1923,3.5,1319744666 +48,1997,3.5,1322167149 +48,2006,3.0,1322170564 +48,2167,3.5,1322170785 +48,2232,3.5,1415258524 +48,2288,3.5,1412321963 +48,2291,4.0,1322170045 +48,2294,3.0,1322170922 +48,2318,3.5,1324101279 +48,2324,4.5,1319746801 +48,2329,4.5,1305605468 +48,2355,3.5,1318835468 +48,2455,2.5,1412471207 +48,2542,3.5,1322170518 +48,2571,4.5,1322167116 +48,2617,3.5,1322167802 +48,2692,3.0,1322170331 +48,2700,3.5,1322170196 +48,2706,3.5,1322169924 +48,2710,3.0,1322170066 +48,2722,2.5,1412470814 +48,2762,3.5,1367729581 +48,2840,3.0,1412471725 +48,2959,5.0,1305604734 +48,2987,3.5,1318835841 +48,2997,3.0,1319744255 +48,3000,5.0,1305605572 +48,3114,3.5,1318797469 +48,3147,4.0,1319746199 +48,3527,3.0,1322170644 +48,3578,5.0,1305605670 +48,3677,4.5,1367466490 +48,3717,3.0,1322171045 +48,3745,3.5,1322173362 +48,3751,3.0,1316922546 +48,3793,3.5,1410971832 +48,3949,4.5,1305604501 +48,3968,3.0,1319748211 +48,4011,4.0,1318725545 +48,4016,3.5,1318835610 +48,4022,3.5,1322167231 +48,4226,3.5,1405181557 +48,4270,3.0,1322167807 +48,4306,4.0,1305604576 +48,4369,3.5,1303371101 +48,4446,3.5,1322171604 +48,4720,3.0,1319745406 +48,4878,4.5,1305605359 +48,4886,3.5,1318796382 +48,4902,3.5,1425960044 +48,4973,5.0,1305605431 +48,4975,3.5,1305602329 +48,4993,4.5,1319748409 +48,4995,4.0,1322168606 +48,5010,4.0,1322170988 +48,5146,4.0,1318724175 +48,5218,4.0,1317417327 +48,5225,3.0,1322169255 +48,5349,3.5,1322167657 +48,5459,3.0,1322167294 +48,5502,3.5,1322167764 +48,5570,3.5,1322167056 +48,5618,4.5,1316394238 +48,5669,4.0,1318694896 +48,5679,3.5,1322167180 +48,5690,4.5,1305605593 +48,5902,4.0,1317612908 +48,5903,3.5,1320820975 +48,5952,4.0,1319748416 +48,5971,4.0,1305606854 +48,5995,4.0,1316535850 +48,6016,4.5,1305606326 +48,6214,3.5,1319744880 +48,6223,3.5,1320505613 +48,6242,3.0,1412478838 +48,6283,3.5,1317277244 +48,6291,3.0,1367774627 +48,6350,4.0,1316394075 +48,6365,3.5,1322167119 +48,6373,4.0,1319744628 +48,6377,4.0,1317413795 +48,6539,4.0,1319745991 +48,6711,3.0,1317612608 +48,6857,3.5,1318796409 +48,6890,3.0,1322871160 +48,6934,3.0,1322167122 +48,6953,3.5,1322174318 +48,7099,4.0,1318721568 +48,7147,3.5,1322170898 +48,7153,4.0,1319748414 +48,7235,3.0,1368072937 +48,7254,4.0,1319744413 +48,7256,4.5,1412154802 +48,7360,2.5,1414562338 +48,7361,4.5,1305605332 +48,7373,3.5,1322167707 +48,7382,3.0,1368060971 +48,7982,4.0,1320701272 +48,8132,5.0,1356760541 +48,8157,2.5,1333323786 +48,8360,3.0,1317417331 +48,8376,3.5,1322171670 +48,8582,4.0,1405650065 +48,8636,4.0,1322167658 +48,8645,3.0,1341268936 +48,8784,4.5,1305604460 +48,8807,4.0,1319746322 +48,8874,4.5,1305605527 +48,8906,2.5,1319744919 +48,8907,2.5,1339446902 +48,8950,4.5,1305605199 +48,8957,3.0,1367968341 +48,8961,3.5,1317413816 +48,8965,3.0,1339447083 +48,26662,4.0,1318721824 +48,26776,4.0,1316409175 +48,27156,4.0,1414850854 +48,27523,3.5,1319743664 +48,27660,3.5,1425960095 +48,27713,4.0,1319744848 +48,27722,2.5,1325534468 +48,27731,4.0,1318750105 +48,27773,3.5,1316416730 +48,27800,3.5,1318796541 +48,27801,3.0,1341268726 +48,27838,3.0,1367794617 +48,27846,4.5,1305603014 +48,27850,3.5,1320128368 +48,27878,4.0,1316537666 +48,30793,3.5,1319744696 +48,30867,4.0,1369722162 +48,31410,4.5,1322719969 +48,31435,5.0,1305603880 +48,31658,4.5,1316416643 +48,31878,3.0,1341268857 +48,32031,3.0,1339446959 +48,32554,3.0,1319743714 +48,32562,4.0,1316535636 +48,32587,4.5,1305605408 +48,33154,4.0,1316536060 +48,33166,3.5,1322167635 +48,33615,3.5,1322167363 +48,33679,3.5,1319744759 +48,34323,3.0,1414562300 +48,34405,3.5,1319745276 +48,36276,2.5,1414561763 +48,36535,3.5,1317613176 +48,37729,3.0,1333324895 +48,37830,3.5,1317417268 +48,38038,3.5,1303371215 +48,40629,4.5,1305604971 +48,41569,3.5,1322174118 +48,41769,3.0,1320505644 +48,42723,3.0,1367968282 +48,44022,3.0,1322167429 +48,44191,3.5,1319745902 +48,44397,2.5,1367968590 +48,44555,4.5,1305604909 +48,44633,4.0,1316491569 +48,44828,3.0,1414561107 +48,44974,3.5,1319745453 +48,45431,4.0,1317417313 +48,45517,4.0,1317417295 +48,45720,3.0,1322168181 +48,45950,4.0,1367729197 +48,46578,3.5,1317612663 +48,46948,3.5,1317415599 +48,46976,3.0,1415388297 +48,47099,3.5,1322168130 +48,47124,3.0,1339447216 +48,47404,4.0,1316922590 +48,47610,4.0,1319745108 +48,47999,4.0,1322167913 +48,48043,3.5,1322167725 +48,48082,4.0,1305605032 +48,48385,3.5,1319745148 +48,48394,4.0,1316495346 +48,48414,3.0,1339447153 +48,48774,3.0,1322171427 +48,48780,3.5,1322171197 +48,48982,3.5,1317415398 +48,48997,4.0,1322167204 +48,49278,3.5,1322167397 +48,50583,3.0,1369722178 +48,50601,4.0,1305605741 +48,50872,3.5,1309052092 +48,51255,3.5,1317612601 +48,51540,3.0,1319745336 +48,51662,4.0,1322171094 +48,52281,3.5,1371359811 +48,52287,3.0,1339446347 +48,52319,4.0,1319745882 +48,52328,2.5,1415388549 +48,52458,3.0,1322167257 +48,52722,3.0,1322167662 +48,53121,2.5,1339447162 +48,53326,2.0,1414561720 +48,53460,3.0,1333325498 +48,53519,3.0,1428727629 +48,53883,4.0,1322169136 +48,53894,4.0,1305602945 +48,53996,3.5,1322167586 +48,54272,2.5,1317417320 +48,54503,3.5,1319746126 +48,54995,4.0,1412478977 +48,55247,4.5,1305604999 +48,55280,4.0,1305604648 +48,55442,4.5,1305605708 +48,55444,4.5,1305605690 +48,55768,3.0,1339447164 +48,55814,4.0,1316494426 +48,55908,3.5,1319745424 +48,55995,3.0,1339447168 +48,56069,2.5,1414561470 +48,56095,3.0,1322967502 +48,56145,3.5,1319743116 +48,56174,3.0,1412471624 +48,56339,4.0,1319747802 +48,56367,3.5,1320709035 +48,56607,4.0,1319748038 +48,56757,3.0,1412457389 +48,56782,3.5,1319747076 +48,56908,4.0,1319746579 +48,57274,3.5,1405916134 +48,57368,4.5,1305605784 +48,57453,3.5,1319743302 +48,57504,4.0,1317413827 +48,57640,3.0,1322167708 +48,57669,4.0,1322719278 +48,57980,3.0,1322165598 +48,58299,3.5,1319746873 +48,58347,3.5,1319744824 +48,58554,3.5,1317621831 +48,58559,4.0,1316536208 +48,59118,4.5,1305605159 +48,59141,3.5,1369880284 +48,59315,4.0,1322167983 +48,59387,4.0,1322276523 +48,59684,5.0,1305605115 +48,59784,3.5,1318796568 +48,60069,4.0,1316496606 +48,60126,3.0,1305603027 +48,60161,3.5,1317414089 +48,60291,4.0,1367774333 +48,60684,3.5,1322167566 +48,60763,3.5,1371359903 +48,61240,4.5,1305605640 +48,61323,3.5,1319744734 +48,62203,4.5,1305605093 +48,62250,3.0,1322966900 +48,62956,3.5,1305603309 +48,62999,3.5,1322167367 +48,63082,3.5,1322167677 +48,63131,2.5,1368412407 +48,63808,3.5,1322719467 +48,63859,3.5,1305603082 +48,64575,4.0,1319746554 +48,64716,4.0,1319747765 +48,64957,3.5,1319746373 +48,64969,3.0,1322168337 +48,64983,3.5,1305603272 +48,64993,4.0,1317405562 +48,65037,5.0,1305603894 +48,65261,3.5,1316539661 +48,65514,4.0,1305603793 +48,66097,3.5,1317405737 +48,66371,3.5,1316494407 +48,67197,3.5,1322167931 +48,67255,4.0,1305605077 +48,67408,3.0,1339446804 +48,67734,3.0,1322167961 +48,68157,4.0,1305605254 +48,68237,4.0,1316495274 +48,68358,3.0,1414850769 +48,68945,3.5,1405650223 +48,68954,4.0,1316537546 +48,69122,4.5,1305605932 +48,69526,3.0,1305603095 +48,69644,3.5,1322167425 +48,69712,3.5,1319748155 +48,69757,4.5,1305605276 +48,70159,4.0,1319746947 +48,70286,4.5,1305605762 +48,70533,4.0,1318721876 +48,70567,4.0,1305603934 +48,71033,4.0,1316493344 +48,71057,3.5,1317417335 +48,71264,3.5,1317414139 +48,71282,3.0,1371530476 +48,71379,4.0,1305605834 +48,71462,4.0,1316416612 +48,71468,3.0,1322167866 +48,71520,3.5,1305603492 +48,71535,3.5,1319746905 +48,71579,3.5,1319745128 +48,71899,5.0,1305605866 +48,72104,3.0,1414850946 +48,72209,3.0,1339446991 +48,72393,3.5,1319745750 +48,72731,3.0,1414562131 +48,72741,3.5,1324101310 +48,72998,4.5,1305605907 +48,73017,4.0,1319745634 +48,73268,3.0,1305603556 +48,73321,3.0,1319745660 +48,73392,3.5,1316539530 +48,73664,3.0,1317415585 +48,73881,4.0,1317277178 +48,74228,3.5,1428726464 +48,74677,4.0,1320128370 +48,74789,3.5,1319745518 +48,76093,4.0,1305604944 +48,76173,5.0,1368249994 +48,76251,3.5,1319744484 +48,77307,4.0,1319745178 +48,77427,1.5,1341268695 +48,77561,3.5,1322167990 +48,77837,4.5,1305604806 +48,78499,4.0,1318721995 +48,79029,4.0,1318694932 +48,79091,4.0,1319743447 +48,79132,4.0,1305604858 +48,79357,3.5,1320700986 +48,79702,4.0,1309051349 +48,79868,3.5,1319745212 +48,80463,4.5,1305604694 +48,80586,3.5,1368483486 +48,80831,2.5,1412309172 +48,80862,3.5,1321425442 +48,80906,4.0,1316416681 +48,81018,3.5,1318796373 +48,81562,3.5,1322167089 +48,81564,3.5,1318742711 +48,81591,4.0,1367475412 +48,81845,3.5,1415388786 +48,81847,3.5,1318796556 +48,82461,3.5,1305603954 +48,82667,3.5,1341268645 +48,83132,3.5,1368499219 +48,83134,3.5,1368250070 +48,83803,3.0,1414850824 +48,84152,4.0,1341268624 +48,84187,4.5,1367774277 +48,84772,2.5,1414851036 +48,84944,4.0,1318796696 +48,84952,4.0,1320907274 +48,85412,3.5,1319744151 +48,85414,4.0,1317277376 +48,85510,3.0,1319743782 +48,85736,4.5,1305606322 +48,85774,4.0,1367724708 +48,85788,3.5,1319743415 +48,85796,3.0,1369722191 +48,86298,4.0,1319744439 +48,86332,3.5,1317277357 +48,86347,3.5,1322169386 +48,86721,3.0,1368499410 +48,87222,4.0,1318721576 +48,87232,4.0,1319744187 +48,87306,2.5,1415388667 +48,87430,3.0,1317277197 +48,87520,3.0,1317277220 +48,88140,2.5,1410972161 +48,88744,3.5,1316907766 +48,89745,3.0,1414851073 +48,89837,2.5,1414849679 +48,90469,3.0,1329101733 +48,90531,2.5,1368483363 +48,90647,3.5,1368249365 +48,90746,3.5,1331430993 +48,91414,3.0,1368499298 +48,91529,3.5,1371530093 +48,91542,3.5,1371360050 +48,92058,2.0,1341268688 +48,92420,2.5,1415388593 +48,93272,2.5,1341268657 +48,93838,3.0,1414562176 +48,93840,2.5,1414562366 +48,95167,5.0,1368499305 +48,95311,4.0,1367774366 +48,95375,3.0,1414850934 +48,95510,3.0,1410972137 +48,95543,3.0,1368499835 +48,95858,4.0,1412494161 +48,95875,3.0,1356760463 +48,96281,3.0,1368499321 +48,96606,3.0,1415388917 +48,96610,3.0,1371530088 +48,96737,4.0,1356760430 +48,96821,4.0,1355724506 +48,97188,2.5,1410972337 +48,97225,3.5,1367725555 +48,97752,4.5,1356760414 +48,97913,3.5,1368483794 +48,97921,3.5,1367725590 +48,97938,3.5,1367786421 +48,97957,4.0,1414839828 +48,98056,3.0,1371530237 +48,98243,2.5,1412497730 +48,98809,4.0,1367728315 +48,99114,4.0,1405916092 +48,99145,4.0,1367725833 +48,100556,4.0,1410972561 +48,101142,3.5,1368499380 +48,102125,2.5,1428726967 +48,102445,4.0,1414562096 +48,103042,3.5,1410972280 +48,103228,2.0,1412570841 +48,103249,2.5,1412570882 +48,103253,2.0,1412570808 +48,103299,3.5,1414561040 +48,103335,3.0,1414850862 +48,103688,3.0,1410972358 +48,104841,2.5,1415388310 +48,106002,2.5,1412554038 +48,106072,2.5,1412561078 +48,106204,3.0,1405181551 +48,106489,4.0,1404110083 +48,106696,3.5,1410972517 +48,107406,2.5,1412570817 +48,107769,2.5,1410972202 +48,107953,2.5,1412583710 +48,108190,3.0,1410972239 +48,108945,2.5,1410972320 +48,109487,3.5,1425960344 +48,109578,3.0,1412553084 +48,109673,2.5,1410972264 +48,109846,3.0,1412553201 +48,109848,2.5,1428726440 +48,109850,2.5,1412553055 +48,110102,3.5,1410972164 +48,110127,3.0,1410972074 +48,110501,3.0,1419495256 +48,110553,3.0,1410972132 +48,110591,2.5,1405181398 +48,110655,2.5,1412553003 +48,110730,3.5,1410972058 +48,111362,3.5,1405649924 +48,111364,2.5,1410972102 +48,111659,2.5,1412552876 +48,111759,4.0,1410972752 +48,112175,3.5,1412552728 +48,112370,2.5,1412552534 +48,112515,2.5,1428726233 +48,112623,3.5,1425960080 +48,112852,3.5,1412550699 +48,113741,3.0,1415388454 +48,114180,2.5,1428726245 +48,114935,3.0,1428726219 +48,115149,2.5,1428727019 +48,115534,2.0,1428726405 +48,115617,3.0,1428726202 +48,115624,3.0,1414562891 +48,118696,2.5,1428726241 +49,2,5.0,978040739 +49,60,3.0,978039958 +49,161,4.0,978041312 +49,173,2.0,978040891 +49,258,1.0,978040922 +49,303,3.0,978040023 +49,329,3.0,978039850 +49,356,4.0,978041224 +49,421,2.0,978039693 +49,466,4.0,978041370 +49,524,3.0,978039301 +49,590,3.0,978039629 +49,592,2.0,978039693 +49,653,4.0,978040023 +49,674,3.0,978039922 +49,688,3.0,978040871 +49,733,3.0,978039850 +49,736,4.0,978040768 +49,750,4.0,978041037 +49,780,4.0,978041342 +49,897,4.0,978041189 +49,912,5.0,978041037 +49,919,5.0,978039514 +49,920,4.0,978039263 +49,952,3.0,978039654 +49,969,5.0,978039514 +49,976,4.0,978041189 +49,1017,3.0,978039693 +49,1073,5.0,978039629 +49,1085,5.0,978039693 +49,1127,4.0,978039584 +49,1129,3.0,978039819 +49,1196,4.0,978039557 +49,1197,4.0,978039557 +49,1198,5.0,978039514 +49,1204,5.0,978039514 +49,1208,4.0,978041091 +49,1210,3.0,978039301 +49,1242,4.0,978041122 +49,1254,4.0,978039557 +49,1262,5.0,978039514 +49,1272,5.0,978041122 +49,1287,5.0,978039584 +49,1291,5.0,978039584 +49,1374,3.0,978039753 +49,1375,4.0,978039922 +49,1376,4.0,978039795 +49,1391,3.0,978041342 +49,1580,3.0,978039714 +49,1676,2.0,978041312 +49,1927,4.0,978041037 +49,2013,1.0,978039958 +49,2054,2.0,978039891 +49,2088,2.0,978040828 +49,2094,2.0,978040023 +49,2105,3.0,978039891 +49,2115,5.0,978039753 +49,2161,4.0,978039850 +49,2202,5.0,978041152 +49,2287,5.0,978041250 +49,2366,3.0,978039557 +49,2402,2.0,978041370 +49,2406,4.0,978039753 +49,2414,3.0,978039795 +49,2430,5.0,978039753 +49,2471,4.0,978040828 +49,2524,2.0,978039263 +49,2537,1.0,978040922 +49,2662,4.0,978041189 +49,2669,3.0,978041224 +49,2748,3.0,978040922 +49,2815,1.0,978041370 +49,2816,1.0,978041398 +49,2817,1.0,978041398 +49,2871,3.0,978039629 +49,2941,3.0,978041279 +49,2944,4.0,978041152 +49,2968,4.0,978039629 +49,2987,5.0,978039629 +49,3062,4.0,978041224 +49,3066,3.0,978041312 +49,3196,4.0,978041064 +49,3247,3.0,978039301 +49,3269,2.0,978039988 +49,3406,4.0,978041189 +49,3412,3.0,978039891 +49,3417,5.0,978039795 +49,3441,2.0,978041342 +49,3461,2.0,978039629 +49,3519,2.0,978041312 +49,3628,4.0,978041224 +49,3643,4.0,978041279 +49,3755,4.0,978039891 +49,3836,3.0,978041189 +49,3927,3.0,978039693 +49,3959,4.0,978039557 +49,4042,3.0,978041224 +49,4047,5.0,978041122 +49,5060,4.0,978041091 +50,10,4.0,847412607 +50,21,3.0,847412676 +50,39,2.0,847412692 +50,47,3.0,847412643 +50,95,3.0,847412837 +50,110,4.0,847412607 +50,150,3.0,847412515 +50,160,3.0,847412712 +50,161,4.0,847412607 +50,165,4.0,847412543 +50,185,3.0,847412606 +50,208,3.0,847412606 +50,231,1.0,847412567 +50,253,3.0,847412628 +50,282,3.0,847412811 +50,292,4.0,847412586 +50,296,4.0,847412515 +50,315,3.0,847412812 +50,316,3.0,847412567 +50,337,3.0,847412859 +50,339,4.0,847412628 +50,344,2.0,847412544 +50,349,3.0,847412567 +50,356,4.0,847412567 +50,357,4.0,847412692 +50,367,4.0,847412643 +50,368,4.0,847413071 +50,377,3.0,847412643 +50,380,3.0,847412515 +50,420,3.0,847412692 +50,434,3.0,847412586 +50,440,4.0,847412711 +50,442,3.0,847412812 +50,454,3.0,847412628 +50,457,3.0,847413020 +50,480,4.0,847412586 +50,509,3.0,847412812 +50,527,4.0,847412676 +50,539,3.0,847412676 +50,553,3.0,847413043 +50,587,3.0,847412659 +50,589,5.0,847412628 +50,590,3.0,847412515 +50,597,3.0,847412659 +50,780,4.0,847412879 +50,786,3.0,847413043 +51,913,4.0,974729137 +51,1636,1.0,974728763 +51,1888,3.0,974728763 +51,1948,4.0,974728763 +51,1959,4.0,974729199 +51,1968,4.0,974728763 +51,2369,3.0,974728999 +51,2396,2.0,974729270 +51,2605,5.0,974729067 +51,2670,5.0,974729270 +51,2683,4.0,974728936 +51,2688,4.0,974729067 +51,2699,4.0,974728936 +51,2701,2.0,974729345 +51,2713,5.0,974729137 +51,2722,5.0,974728999 +51,2724,2.0,974729270 +51,2734,3.0,974729165 +51,2761,5.0,974729105 +51,2763,4.0,974729315 +51,2826,5.0,974728936 +51,2827,4.0,974728936 +51,2840,3.0,974729270 +51,2841,5.0,974729270 +51,2881,5.0,974729032 +51,2987,5.0,974729315 +51,3157,5.0,974729270 +51,3175,4.0,974729067 +51,3219,5.0,974729199 +51,3510,5.0,974728763 +51,3543,4.0,974729032 +52,357,4.5,1231766465 +52,365,1.0,1231763607 +52,461,3.5,1231770596 +52,866,4.0,1231767051 +52,1088,4.0,1231766626 +52,1295,4.0,1231766951 +52,1614,4.0,1231763120 +52,1639,1.0,1231770503 +52,1735,5.0,1231766895 +52,1969,0.5,1231763493 +52,2338,1.0,1231766853 +52,2396,4.0,1231766442 +52,2408,0.5,1231763521 +52,2806,1.0,1231763632 +52,2858,4.5,1231767339 +52,3155,4.5,1231763213 +52,3255,4.0,1231766571 +52,3793,3.5,1231766114 +52,3854,5.0,1231769875 +52,3967,5.0,1231767802 +52,3987,1.0,1231763560 +52,3996,5.0,1231769199 +52,4014,5.0,1231769672 +52,4228,2.0,1231763745 +52,4246,5.0,1231769802 +52,4896,5.0,1231767951 +52,4973,5.0,1231767291 +52,5222,3.5,1231770278 +52,5296,2.0,1231763949 +52,5380,4.5,1231763660 +52,5525,4.0,1231769598 +52,5791,4.5,1231769623 +52,5812,4.5,1231769923 +52,5816,4.5,1231767944 +52,5878,4.0,1231766768 +52,5992,5.0,1231769951 +52,6058,1.0,1231763805 +52,6218,4.0,1231769685 +52,6370,4.5,1231769942 +52,6539,3.5,1231769278 +52,6776,3.5,1231769628 +52,6807,5.0,1231766495 +52,6942,4.0,1231769696 +52,7160,4.5,1231766735 +52,7615,4.0,1231767245 +52,8368,5.0,1231767956 +52,8781,3.5,1231763467 +52,8918,3.5,1231770591 +52,8966,4.0,1231767125 +52,8983,3.5,1231769937 +52,27020,5.0,1231770554 +52,27721,5.0,1231769580 +52,30825,3.5,1231766722 +52,31408,4.5,1231769751 +52,37727,2.0,1231763882 +52,38886,2.0,1231763840 +52,39183,4.5,1231769880 +52,40815,5.0,1231766690 +52,41571,3.0,1231767136 +52,43744,4.0,1231770409 +52,44555,4.5,1231767111 +52,45447,3.5,1231766676 +52,50872,3.5,1231769289 +52,51094,3.5,1231770833 +52,52545,4.0,1231770796 +52,54001,5.0,1231763293 +52,55451,4.0,1231770565 +52,60950,2.0,1231769833 +53,111,4.0,955192120 +53,165,4.0,955193387 +53,238,1.0,955192933 +53,392,1.0,955192933 +53,420,3.0,955193660 +53,421,1.0,955192933 +53,484,1.0,955192933 +53,968,4.0,955192636 +53,1193,5.0,955192140 +53,1370,3.0,955193310 +53,1580,3.0,955193387 +53,1610,5.0,955193310 +53,1772,4.0,955193660 +53,1911,2.0,955192367 +53,1917,5.0,955193078 +53,1995,2.0,955191985 +53,2002,3.0,955193468 +53,2093,1.0,955192692 +53,2336,4.0,955192388 +53,2368,3.0,955193256 +53,2394,1.0,955192663 +53,2396,4.0,955192739 +53,2412,1.0,955193574 +53,2433,5.0,955192345 +53,2470,4.0,955193224 +53,2690,4.0,955192491 +53,2699,4.0,955192282 +53,2700,1.0,955192739 +53,2709,1.0,955192603 +53,2710,3.0,955192307 +53,2716,3.0,955192417 +53,2717,3.0,955192010 +53,2720,1.0,955192491 +53,2761,1.0,955192571 +53,2762,5.0,955192739 +53,2840,2.0,955192739 +53,2912,1.0,955193387 +53,2986,4.0,955193724 +53,2987,1.0,955192779 +53,2997,1.0,955192307 +53,3107,4.0,955193337 +53,3114,1.0,955192760 +53,3160,2.0,955192571 +53,3178,4.0,955192100 +53,3274,4.0,955193433 +53,3434,4.0,955193724 +54,318,4.5,1352835937 +54,1027,4.0,1352835615 +54,1088,5.0,1352836913 +54,1201,4.5,1352835880 +54,1203,4.5,1352835987 +54,1333,2.0,1352836775 +54,1680,4.0,1352836714 +54,2150,4.0,1352835557 +54,2471,2.5,1352832722 +54,2571,3.5,1352836545 +54,2991,3.5,1352835678 +54,3258,4.0,1352832850 +54,3462,3.0,1352837063 +54,3638,4.0,1352832755 +54,3906,4.0,1352836272 +54,4467,0.5,1352832871 +54,4963,4.5,1352836371 +54,5418,4.5,1352836374 +54,6378,4.5,1352837049 +54,8533,4.5,1352836618 +54,8665,4.5,1352836376 +54,26160,3.5,1352834428 +54,26294,4.0,1352837008 +54,30749,3.5,1352836442 +54,33794,1.0,1352836450 +54,44197,4.5,1352833560 +54,44199,5.0,1352835951 +54,48516,4.5,1352836485 +54,48660,1.0,1352834067 +54,48780,5.0,1352836366 +54,48997,2.0,1352833048 +54,54286,4.5,1352836377 +54,55820,1.5,1352836517 +54,56941,5.0,1352836738 +54,58803,4.5,1352836666 +54,60069,5.0,1352836154 +54,68157,4.5,1352836322 +54,69640,3.5,1352833131 +54,71899,4.0,1352836290 +54,77846,5.0,1352835980 +54,78499,4.5,1352832825 +54,79132,2.5,1352836507 +54,91355,3.5,1352834483 +54,96655,5.0,1352834564 +55,1,3.0,855926941 +55,5,3.0,855926988 +55,6,5.0,855926988 +55,7,2.0,855926988 +55,9,3.0,855927315 +55,32,4.0,855926941 +55,65,5.0,855927315 +55,74,3.0,855927438 +55,79,3.0,855927172 +55,95,3.0,855926941 +55,100,3.0,855927437 +55,104,5.0,855927131 +55,112,3.0,855927131 +55,141,4.0,855926941 +55,260,5.0,855927131 +55,376,4.0,855927131 +55,494,3.0,855926988 +55,608,3.0,855926988 +55,609,3.0,855927438 +55,637,4.0,855927172 +55,648,5.0,855926941 +55,653,4.0,855927131 +55,707,2.0,855927438 +55,708,3.0,855927131 +55,719,4.0,855927315 +55,724,4.0,855927438 +55,733,4.0,855926988 +55,736,3.0,855926941 +55,737,3.0,855927315 +55,761,2.0,855927438 +55,780,5.0,855926941 +55,784,3.0,855927131 +55,786,4.0,855926988 +55,788,5.0,855927131 +55,802,3.0,855927315 +55,805,5.0,855927172 +55,832,5.0,855927315 +55,1073,3.0,855926988 +56,1,4.0,1467004817 +56,10,4.0,1467008381 +56,16,4.0,1467004892 +56,21,2.0,1470350794 +56,29,4.0,1467004961 +56,39,5.0,1467003294 +56,47,4.0,1467004867 +56,50,4.0,1467004833 +56,101,4.0,1467007782 +56,104,4.0,1467005618 +56,111,4.0,1467005298 +56,147,2.0,1467003504 +56,160,2.0,1467004905 +56,176,4.0,1467005072 +56,216,4.0,1467004949 +56,223,4.0,1467004879 +56,231,2.0,1470350790 +56,246,5.0,1467004938 +56,250,5.0,1467005164 +56,260,2.0,1470350831 +56,292,2.0,1467006124 +56,293,4.0,1467002990 +56,296,4.0,1467003119 +56,318,4.0,1473803992 +56,333,2.0,1470350811 +56,337,4.0,1468471074 +56,342,2.0,1467004922 +56,356,4.0,1467002971 +56,377,4.0,1473801974 +56,441,4.0,1469033808 +56,442,2.0,1470350967 +56,456,4.0,1467005160 +56,457,4.0,1467004832 +56,480,4.0,1467004830 +56,527,4.0,1467002940 +56,529,4.0,1467007127 +56,541,4.0,1467006388 +56,586,4.0,1467008357 +56,593,5.0,1467002950 +56,673,2.0,1467005800 +56,750,2.0,1467003164 +56,778,4.0,1467005324 +56,916,4.0,1467006035 +56,919,5.0,1467005569 +56,922,4.0,1467005986 +56,923,4.0,1467005564 +56,924,2.0,1467005377 +56,926,4.0,1470350981 +56,942,2.0,1470351101 +56,951,4.0,1467008836 +56,953,4.0,1467005515 +56,1036,5.0,1467003129 +56,1060,4.0,1467006650 +56,1073,4.0,1467005708 +56,1089,4.0,1467003138 +56,1094,2.0,1470351007 +56,1095,4.0,1467004984 +56,1097,4.0,1467005425 +56,1120,2.0,1470350746 +56,1136,4.0,1467005321 +56,1172,2.0,1470350810 +56,1193,4.0,1467003136 +56,1196,2.0,1470350743 +56,1197,4.0,1467002983 +56,1198,4.0,1467004101 +56,1201,4.0,1467006449 +56,1206,4.0,1467006407 +56,1207,5.0,1467003288 +56,1208,4.0,1467005413 +56,1209,5.0,1467006798 +56,1210,2.0,1467005230 +56,1213,4.0,1467003139 +56,1222,4.0,1467006447 +56,1225,5.0,1467003994 +56,1226,4.0,1467006765 +56,1228,4.0,1467005790 +56,1230,2.0,1470350796 +56,1235,5.0,1467003378 +56,1240,2.0,1467006386 +56,1244,2.0,1470350740 +56,1247,2.0,1470351006 +56,1250,4.0,1467004757 +56,1252,4.0,1467003285 +56,1256,4.0,1467009159 +56,1258,4.0,1467005320 +56,1259,4.0,1467003265 +56,1263,2.0,1470351002 +56,1265,5.0,1467004858 +56,1266,4.0,1467004906 +56,1270,4.0,1473792749 +56,1283,4.0,1467006781 +56,1285,5.0,1467003397 +56,1288,4.0,1467873409 +56,1291,4.0,1467005259 +56,1302,4.0,1467006163 +56,1304,2.0,1470350881 +56,1307,2.0,1470350949 +56,1358,4.0,1467006852 +56,1380,5.0,1467004019 +56,1387,4.0,1467005541 +56,1393,4.0,1467006556 +56,1449,5.0,1467006334 +56,1466,4.0,1467005889 +56,1608,4.0,1467094780 +56,1617,4.0,1467005534 +56,1673,4.0,1467005939 +56,1676,2.0,1470350880 +56,1682,5.0,1467003127 +56,1704,5.0,1467002948 +56,1721,4.0,1467003158 +56,1732,4.0,1470350964 +56,1784,2.0,1470350958 +56,1907,4.0,1467005607 +56,1923,4.0,1467006553 +56,1947,5.0,1467003819 +56,1952,2.0,1470350857 +56,1953,4.0,1467008994 +56,1954,4.0,1467004796 +56,1957,4.0,1467093986 +56,1958,2.0,1470350850 +56,1961,2.0,1470350848 +56,1968,5.0,1467003201 +56,2000,1.0,1469031525 +56,2005,4.0,1467005771 +56,2006,4.0,1467094778 +56,2011,2.0,1470352143 +56,2028,5.0,1467002969 +56,2042,2.0,1470350841 +56,2052,4.0,1470350988 +56,2060,4.0,1467092609 +56,2072,2.0,1470352155 +56,2082,2.0,1470350839 +56,2115,4.0,1467006461 +56,2144,4.0,1468471176 +56,2186,4.0,1467866328 +56,2194,2.0,1470350837 +56,2248,4.0,1467007881 +56,2253,1.0,1467005018 +56,2300,4.0,1467009172 +56,2321,4.0,1467003359 +56,2324,2.0,1470351704 +56,2329,4.0,1467002977 +56,2395,5.0,1467004735 +56,2420,4.0,1470350864 +56,2502,4.0,1467006343 +56,2542,4.0,1467005428 +56,2572,2.0,1475110909 +56,2599,5.0,1467008130 +56,2617,4.0,1467005498 +56,2694,4.0,1470351102 +56,2700,4.0,1469152877 +56,2716,2.0,1470351096 +56,2746,5.0,1467003490 +56,2761,4.0,1469031599 +56,2791,4.0,1467005598 +56,2797,4.0,1467005707 +56,2804,4.0,1467007025 +56,2858,5.0,1467002981 +56,2863,4.0,1467009270 +56,2918,4.0,1467006448 +56,2925,4.0,1467006816 +56,2947,2.0,1467005813 +56,2951,2.0,1470351099 +56,2953,4.0,1467004973 +56,2959,4.0,1467002942 +56,3034,4.0,1467693193 +56,3039,1.0,1467006042 +56,3072,4.0,1467009823 +56,3079,4.0,1474815098 +56,3086,4.0,1467007108 +56,3089,4.0,1467006194 +56,3098,2.0,1470350837 +56,3104,2.0,1470351801 +56,3114,4.0,1467005380 +56,3152,2.0,1470351097 +56,3160,4.0,1467005729 +56,3210,2.0,1470350982 +56,3253,4.0,1467005793 +56,3255,2.0,1470351095 +56,3268,2.0,1467005081 +56,3360,5.0,1467004784 +56,3361,2.0,1467009601 +56,3365,4.0,1467006773 +56,3421,4.0,1467006182 +56,3424,4.0,1467003514 +56,3468,2.0,1470350862 +56,3480,4.0,1467007890 +56,3489,2.0,1467005858 +56,3504,4.0,1467008829 +56,3552,2.0,1467006160 +56,3606,5.0,1467004029 +56,3608,2.0,1470351118 +56,3653,5.0,1467003934 +56,3671,4.0,1467003357 +56,3683,4.0,1467007203 +56,3751,4.0,1472582918 +56,3783,4.0,1467093364 +56,3791,4.0,1475567060 +56,3868,4.0,1470355329 +56,3897,2.0,1470350976 +56,3916,2.0,1470350951 +56,3972,2.0,1470350879 +56,3988,2.0,1470350876 +56,4016,4.0,1469152869 +56,4022,4.0,1467006603 +56,4027,4.0,1467005394 +56,4034,4.0,1467006723 +56,4054,4.0,1474700994 +56,4085,2.0,1467005824 +56,4091,4.0,1467008072 +56,4102,2.0,1470355415 +56,4226,4.0,1467005242 +56,4262,2.0,1470350975 +56,4306,4.0,1467005239 +56,4370,4.0,1467005492 +56,4406,2.0,1470351000 +56,4447,4.0,1470968633 +56,4571,4.0,1467006150 +56,4649,4.0,1473802057 +56,4771,4.0,1467004075 +56,4776,2.0,1470351001 +56,4816,2.0,1470350956 +56,4848,4.0,1467005527 +56,4878,4.0,1467003134 +56,4881,2.0,1470350834 +56,4886,4.0,1467005245 +56,4896,4.0,1467005287 +56,4973,5.0,1467002978 +56,4993,4.0,1467004098 +56,5103,4.0,1467004067 +56,5377,5.0,1467003300 +56,5401,4.0,1467092617 +56,5418,4.0,1467005258 +56,5445,4.0,1467005284 +56,5673,5.0,1467003858 +56,5785,5.0,1473794542 +56,5816,4.0,1467005307 +56,5902,4.0,1467005692 +56,5952,4.0,1467004100 +56,5970,2.0,1470350980 +56,5995,4.0,1471104320 +56,6003,2.0,1470350814 +56,6016,5.0,1467002967 +56,6188,2.0,1470350817 +56,6373,2.0,1467005360 +56,6377,4.0,1467005252 +56,6618,2.0,1470350824 +56,6732,5.0,1473791601 +56,6796,4.0,1467008087 +56,6863,5.0,1467005390 +56,6867,4.0,1467006262 +56,6870,2.0,1467003213 +56,6873,2.0,1470350961 +56,6874,4.0,1467005226 +56,6932,4.0,1467094542 +56,6936,4.0,1467006226 +56,6942,2.0,1470350791 +56,6978,2.0,1470351794 +56,7018,2.0,1470350792 +56,7022,1.0,1472530513 +56,7036,2.0,1470352323 +56,7072,4.0,1470350806 +56,7132,4.0,1467093079 +56,7147,4.0,1467003174 +56,7153,4.0,1467004099 +56,7263,4.0,1467004794 +56,7361,5.0,1467002992 +56,7438,4.0,1467006373 +56,7451,5.0,1467005463 +56,8360,4.0,1467005331 +56,8368,4.0,1467005270 +56,8376,4.0,1467005493 +56,8528,2.0,1470350829 +56,8641,4.0,1467005485 +56,8665,4.0,1467006393 +56,8784,2.0,1470350939 +56,8807,4.0,1467006247 +56,8874,5.0,1467003155 +56,8914,2.0,1469228080 +56,8917,4.0,1468470510 +56,8961,4.0,1467006577 +56,8972,2.0,1470351983 +56,26084,5.0,1467691652 +56,26471,2.0,1467009198 +56,27253,4.0,1467095130 +56,27773,5.0,1467004058 +56,32587,4.0,1469154890 +56,32598,2.0,1467009678 +56,33166,2.0,1470350835 +56,33495,4.0,1469033593 +56,33660,4.0,1467003331 +56,33794,4.0,1470350738 +56,33880,2.0,1467007232 +56,34162,4.0,1475557281 +56,34528,4.0,1467007629 +56,35836,5.0,1467005373 +56,37733,2.0,1470350809 +56,38038,4.0,1467005838 +56,38061,4.0,1467003299 +56,38886,4.0,1467006300 +56,39292,4.0,1467006253 +56,40629,5.0,1467003268 +56,40815,4.0,1467005282 +56,41566,4.0,1470350742 +56,44191,4.0,1470350803 +56,44199,2.0,1467005523 +56,46578,5.0,1467003146 +56,46948,4.0,1467693406 +56,46970,4.0,1467006275 +56,47099,2.0,1470350985 +56,48322,5.0,1469073222 +56,48516,4.0,1467005248 +56,48698,5.0,1467692413 +56,48982,4.0,1467693415 +56,49272,5.0,1467005267 +56,50514,4.0,1467007522 +56,50872,4.0,1467006583 +56,51255,5.0,1467003975 +56,51540,4.0,1467005548 +56,51662,2.0,1470351003 +56,52245,4.0,1467005933 +56,52435,4.0,1469073419 +56,53123,4.0,1470350872 +56,53125,2.0,1467005359 +56,54001,4.0,1467005323 +56,54256,5.0,1467004082 +56,54286,4.0,1467006368 +56,54503,5.0,1467003951 +56,54881,5.0,1467009669 +56,55052,2.0,1467006058 +56,55118,2.0,1470350855 +56,55247,2.0,1470350851 +56,55765,2.0,1467005604 +56,55805,4.0,1467003527 +56,55820,5.0,1471306371 +56,56174,2.0,1470350845 +56,56333,4.0,1467007605 +56,56367,5.0,1467003152 +56,56757,4.0,1475479127 +56,56782,5.0,1467003185 +56,57532,1.0,1467095936 +56,57669,5.0,1467003176 +56,58025,1.0,1467005673 +56,58559,5.0,1467004094 +56,59118,4.0,1467007569 +56,59315,2.0,1467005222 +56,59369,2.0,1467005342 +56,60684,2.0,1470350978 +56,60756,4.0,1467005703 +56,60950,4.0,1467005747 +56,61024,4.0,1467006547 +56,61132,4.0,1467865426 +56,63082,4.0,1467006376 +56,63113,2.0,1470350955 +56,63131,5.0,1467003348 +56,64969,4.0,1470350987 +56,64983,2.0,1470350986 +56,65188,5.0,1467092809 +56,67087,5.0,1467003336 +56,67734,4.0,1467004345 +56,67997,4.0,1469031507 +56,68157,4.0,1467004172 +56,68954,4.0,1467004170 +56,69122,4.0,1467004173 +56,69306,2.0,1470350866 +56,69844,4.0,1467004200 +56,70286,4.0,1467003125 +56,70293,4.0,1467003364 +56,70728,4.0,1470968850 +56,71264,5.0,1467005726 +56,71466,4.0,1467003698 +56,71535,4.0,1467005198 +56,71579,4.0,1467004387 +56,72011,4.0,1467004221 +56,72171,5.0,1467004584 +56,72226,5.0,1467004119 +56,72720,2.0,1467004435 +56,73023,4.0,1467009351 +56,74275,4.0,1467004483 +56,74416,4.0,1467004574 +56,74754,5.0,1467864303 +56,74916,4.0,1467007601 +56,76111,4.0,1467092846 +56,76251,4.0,1467004204 +56,78499,5.0,1467004183 +56,79091,4.0,1467006409 +56,79132,5.0,1467002965 +56,79592,4.0,1467004374 +56,79677,5.0,1467093107 +56,79702,5.0,1467005411 +56,80463,4.0,1467004187 +56,80549,4.0,1467004158 +56,81156,5.0,1473794395 +56,81562,4.0,1467003210 +56,81591,5.0,1467003145 +56,81834,4.0,1467004198 +56,83086,1.0,1467004629 +56,83976,4.0,1467004653 +56,84116,4.0,1469153655 +56,85414,4.0,1467005355 +56,85438,5.0,1467004005 +56,86000,5.0,1467003897 +56,86884,4.0,1469032461 +56,86911,2.0,1470350858 +56,87232,2.0,1470350948 +56,87304,4.0,1467004505 +56,87522,1.0,1473791535 +56,87869,2.0,1470350973 +56,88125,4.0,1467004197 +56,88744,4.0,1467004315 +56,88810,2.0,1470350882 +56,88812,2.0,1467004552 +56,89492,4.0,1467004122 +56,89759,4.0,1467003383 +56,90374,4.0,1467004613 +56,90376,4.0,1468910117 +56,90600,4.0,1467003420 +56,90947,4.0,1469031965 +56,91199,4.0,1467092472 +56,91529,2.0,1470350873 +56,92420,4.0,1467004382 +56,93270,1.0,1467004544 +56,93422,4.0,1467007093 +56,93443,5.0,1467004638 +56,93510,5.0,1467004161 +56,93512,4.0,1467004619 +56,93721,4.0,1467004448 +56,94896,4.0,1467004582 +56,94959,4.0,1473802027 +56,95088,4.0,1467003376 +56,95441,2.0,1470350788 +56,95510,4.0,1470350782 +56,96079,5.0,1467005316 +56,96110,1.0,1467004530 +56,96467,5.0,1467003873 +56,96728,5.0,1467003849 +56,96829,5.0,1467003292 +56,96911,4.0,1467864500 +56,97306,4.0,1467004379 +56,97836,1.0,1467092453 +56,97866,4.0,1467092369 +56,97921,2.0,1467004218 +56,97923,2.0,1470350802 +56,97938,4.0,1467004316 +56,99114,4.0,1467002988 +56,99117,2.0,1467004578 +56,99764,5.0,1467863402 +56,99917,2.0,1470350983 +56,100272,4.0,1469154665 +56,100556,5.0,1467003946 +56,101577,1.0,1467092392 +56,102123,5.0,1467005764 +56,102800,4.0,1467007575 +56,102993,4.0,1467007838 +56,103141,4.0,1470350830 +56,103279,4.0,1468546977 +56,103624,4.0,1467009440 +56,103688,2.0,1470350793 +56,104944,4.0,1467006050 +56,105197,4.0,1467007684 +56,105429,4.0,1468546294 +56,105715,2.0,1474953835 +56,105844,4.0,1467005461 +56,106062,2.0,1471306876 +56,106100,4.0,1467003177 +56,106144,4.0,1467094125 +56,106332,4.0,1469845528 +56,106438,4.0,1467003435 +56,106916,2.0,1470351005 +56,106920,5.0,1467003149 +56,107141,2.0,1470351004 +56,107348,4.0,1467006008 +56,107978,5.0,1467003921 +56,108156,2.0,1467092461 +56,108932,4.0,1467003191 +56,110461,4.0,1467003769 +56,111362,2.0,1467005297 +56,111617,1.0,1467003517 +56,112138,5.0,1467005656 +56,112183,4.0,1467006422 +56,112421,4.0,1467692116 +56,112515,5.0,1470025110 +56,112552,5.0,1467006371 +56,112556,2.0,1470350815 +56,112852,2.0,1467005244 +56,113064,4.0,1469228067 +56,113453,1.0,1470355990 +56,113705,2.0,1470350818 +56,113829,4.0,1467007253 +56,113862,4.0,1473791593 +56,114074,2.0,1470352041 +56,114342,4.0,1473804166 +56,114635,4.0,1467092891 +56,115569,4.0,1467006430 +56,116797,4.0,1467002982 +56,122882,5.0,1467004819 +56,122886,2.0,1470350977 +56,127108,5.0,1467006119 +56,127152,5.0,1467094604 +56,127198,4.0,1467006189 +56,127206,2.0,1470350833 +56,128360,4.0,1467005444 +56,128620,5.0,1467003913 +56,131168,4.0,1469228116 +56,133771,5.0,1467691835 +56,134170,2.0,1469152845 +56,134853,5.0,1472582666 +56,136864,2.0,1467005931 +56,139116,5.0,1467093091 +56,139385,4.0,1467005204 +56,139757,5.0,1467862484 +56,140715,2.0,1470350745 +56,141890,4.0,1467095329 +56,142422,4.0,1468548012 +56,142488,4.0,1467004133 +56,146656,5.0,1467005847 +56,148626,2.0,1470350805 +56,148881,5.0,1467007293 +56,152081,4.0,1474951858 +56,155392,4.0,1467008759 +56,156609,4.0,1474989255 +56,160590,5.0,1467095789 +57,11,5.0,907763065 +57,17,5.0,907763245 +57,21,4.0,907763141 +57,34,5.0,907763018 +57,110,5.0,907762500 +57,151,5.0,907763808 +57,163,4.0,907763847 +57,164,3.0,907762733 +57,260,4.0,907765902 +57,265,5.0,907763245 +57,293,5.0,907763847 +57,318,5.0,907762409 +57,337,5.0,907763101 +57,350,2.0,907762795 +57,356,3.0,907763065 +57,357,5.0,907763324 +57,380,4.0,907763283 +57,440,4.0,907763283 +57,468,4.0,907763141 +57,497,5.0,907763018 +57,509,5.0,907763283 +57,527,5.0,907762409 +57,534,5.0,907763765 +57,538,5.0,907762795 +57,555,4.0,907763283 +57,590,5.0,907762565 +57,592,3.0,907764831 +57,608,5.0,907762501 +57,635,5.0,907763101 +57,648,3.0,907762795 +57,728,5.0,907763141 +57,800,5.0,907762733 +57,858,5.0,907765902 +57,914,5.0,907765600 +57,921,4.0,907764874 +57,1007,3.0,907766060 +57,1009,4.0,907766060 +57,1028,4.0,907765600 +57,1035,5.0,907765600 +57,1036,4.0,907764507 +57,1073,4.0,907766060 +57,1079,5.0,907764779 +57,1080,4.0,907766022 +57,1081,4.0,907764935 +57,1088,4.0,907764935 +57,1091,2.0,907765142 +57,1092,2.0,907762832 +57,1094,5.0,907763847 +57,1097,5.0,907764507 +57,1101,5.0,907765008 +57,1124,4.0,907764779 +57,1125,4.0,907766060 +57,1127,5.0,907765059 +57,1128,2.0,907765142 +57,1129,3.0,907765059 +57,1130,4.0,907765142 +57,1135,4.0,907765059 +57,1136,5.0,907765978 +57,1148,5.0,907762969 +57,1185,5.0,907764470 +57,1186,4.0,907765059 +57,1193,5.0,907765902 +57,1194,4.0,907766121 +57,1196,4.0,907764507 +57,1197,5.0,907764470 +57,1198,5.0,907764431 +57,1200,3.0,907764544 +57,1208,3.0,907765939 +57,1214,3.0,907765939 +57,1220,4.0,907764779 +57,1221,5.0,907765939 +57,1222,5.0,907764625 +57,1224,5.0,907764544 +57,1225,5.0,907764310 +57,1227,4.0,907765142 +57,1234,5.0,907765939 +57,1240,3.0,907764544 +57,1242,5.0,907764470 +57,1243,5.0,907763018 +57,1246,5.0,907764779 +57,1252,5.0,907765786 +57,1258,5.0,907764723 +57,1259,4.0,907764584 +57,1263,5.0,907765939 +57,1265,4.0,907763018 +57,1270,3.0,907764584 +57,1272,3.0,907765939 +57,1275,3.0,907764723 +57,1278,5.0,907765902 +57,1286,5.0,907765008 +57,1288,3.0,907764431 +57,1291,5.0,907764507 +57,1296,5.0,907764584 +57,1299,5.0,907764470 +57,1302,4.0,907764671 +57,1307,5.0,907764723 +57,1321,5.0,907764874 +57,1323,2.0,907765422 +57,1326,1.0,907765461 +57,1327,4.0,907766121 +57,1345,5.0,907766156 +57,1346,4.0,907765059 +57,1347,4.0,907765059 +57,1350,5.0,907766022 +57,1357,5.0,907763324 +57,1358,5.0,907762565 +57,1378,4.0,907764831 +57,1380,4.0,907765656 +57,1387,5.0,907766022 +57,1393,4.0,907763324 +57,1394,5.0,907764625 +57,1408,4.0,907763283 +57,1422,3.0,907762885 +57,1459,4.0,907762885 +57,1476,4.0,907763018 +57,1587,3.0,907765059 +57,1589,5.0,907762832 +57,1597,4.0,907762832 +57,1617,4.0,907762733 +57,1625,3.0,907762795 +57,1641,5.0,907763065 +57,1645,4.0,907762795 +57,1663,4.0,907764431 +57,1674,5.0,907764723 +57,1704,5.0,907762565 +57,1719,5.0,907762409 +57,1721,3.0,907763245 +57,1732,3.0,907762733 +57,1754,3.0,907762832 +57,1784,5.0,907762565 +57,1892,5.0,907762795 +57,1909,2.0,907762795 +57,1914,5.0,907762969 +57,1917,1.0,907761833 +57,1918,3.0,907761919 +57,1923,5.0,907761833 +57,1947,5.0,907765600 +57,1951,4.0,907765600 +57,1953,5.0,907766060 +57,1954,4.0,907765939 +57,1955,4.0,907766022 +57,1956,4.0,907764507 +57,1957,5.0,907764431 +57,1958,4.0,907764779 +57,1961,5.0,907764389 +57,1962,5.0,907764431 +57,1964,5.0,907765786 +57,1967,3.0,907764389 +57,1968,4.0,907764431 +57,1974,2.0,907765223 +57,1975,2.0,907765363 +57,1977,1.0,907765329 +57,1978,1.0,907765329 +57,1979,1.0,907765422 +57,1981,1.0,907765461 +57,1982,4.0,907766156 +57,1983,3.0,907765278 +57,1984,1.0,907765422 +57,1987,2.0,907765329 +57,1994,4.0,907764671 +57,1995,3.0,907765223 +57,1996,2.0,907765329 +57,1997,4.0,907765978 +57,2000,5.0,907764625 +57,2001,4.0,907764625 +57,2003,3.0,907765223 +57,2005,3.0,907764935 +57,2006,5.0,907761877 +57,2009,3.0,907765902 +57,2013,4.0,907766121 +57,2020,5.0,907764544 +57,2027,2.0,907762001 +57,2028,5.0,907761833 +57,2037,4.0,907766121 +57,2044,3.0,907765191 +57,2054,3.0,907765191 +57,2070,4.0,907764625 +57,2088,2.0,907765363 +57,2097,3.0,907765278 +57,2100,4.0,907764625 +57,2109,4.0,907765978 +57,2110,4.0,907765008 +57,2111,3.0,907765278 +57,2114,5.0,907764584 +57,2115,4.0,907765008 +57,2118,2.0,907764584 +57,2121,3.0,907765422 +57,2122,1.0,907765461 +57,2125,4.0,907761947 +57,2130,4.0,907764584 +57,2143,3.0,907765059 +57,2144,3.0,907764544 +57,2153,1.0,907762089 +57,2161,3.0,907764470 +57,2163,2.0,907765363 +57,2174,5.0,907764671 +57,2178,4.0,907766121 +57,2193,5.0,907764431 +57,2194,5.0,907764431 +57,2240,4.0,907764874 +57,2245,4.0,907764671 +57,2268,4.0,907762409 +57,2288,4.0,907764389 +57,2291,4.0,907763245 +57,2300,3.0,907765600 +57,2301,3.0,907765142 +57,2302,5.0,907762969 +57,2313,5.0,907764831 +57,5060,4.0,907765978 +58,11,5.0,961127960 +58,19,1.0,961127638 +58,150,5.0,961128124 +58,344,1.0,961127638 +58,410,3.0,961127638 +58,415,2.0,961128086 +58,616,4.0,961128178 +58,748,4.0,961128239 +58,909,2.0,961128124 +58,924,5.0,961127522 +58,940,2.0,961127724 +58,952,2.0,961128239 +58,965,5.0,961127557 +58,969,5.0,961127724 +58,999,2.0,961127522 +58,1007,2.0,961128178 +58,1019,4.0,961127522 +58,1021,4.0,961128055 +58,1127,2.0,961127638 +58,1200,4.0,961127834 +58,1203,5.0,961127480 +58,1214,4.0,961127834 +58,1225,5.0,961127896 +58,1230,2.0,961127256 +58,1269,5.0,961128239 +58,1320,3.0,961127834 +58,1321,4.0,961127960 +58,1367,4.0,961127480 +58,1459,4.0,961127638 +58,1499,1.0,961128020 +58,1517,1.0,961128302 +58,1608,5.0,961127761 +58,1690,4.0,961127834 +58,1784,2.0,961128239 +58,1917,4.0,961128178 +58,1927,5.0,961127868 +58,2015,3.0,961127592 +58,2016,2.0,961128124 +58,2072,2.0,961127480 +58,2085,3.0,961127480 +58,2124,3.0,961127690 +58,2133,4.0,961127690 +58,2153,2.0,961128302 +58,2163,4.0,961128269 +58,2180,4.0,961127256 +58,2202,5.0,961127256 +58,2311,5.0,961127522 +58,2475,3.0,961127558 +58,2505,4.0,961127592 +58,2520,2.0,961127790 +58,2522,2.0,961127761 +58,2551,2.0,961127256 +58,2683,1.0,961128302 +58,2788,5.0,961128020 +58,2791,5.0,961127761 +58,2792,5.0,961127761 +58,2817,2.0,961127638 +58,2827,3.0,961128269 +58,2846,4.0,961127690 +58,3070,4.0,961127690 +58,3153,2.0,961127558 +58,3251,5.0,961127761 +58,3420,5.0,961127480 +58,3421,5.0,961128055 +58,3510,5.0,961127407 +58,3524,4.0,961128239 +58,3535,1.0,961127407 +58,3555,5.0,961127407 +58,3649,3.0,961127923 +58,3672,1.0,961127256 +58,3701,5.0,961127834 +58,3706,4.0,961128055 +58,3710,3.0,961127639 +59,11,2.5,1144755845 +59,32,4.5,1144756065 +59,50,5.0,1144756267 +59,111,2.5,1144755826 +59,150,4.0,1144756061 +59,223,3.5,1144755802 +59,231,2.0,1144756058 +59,292,1.0,1144756054 +59,296,4.0,1144756366 +59,300,4.5,1144755818 +59,318,2.5,1144756299 +59,367,1.5,1144756051 +59,380,0.5,1144756048 +59,410,1.5,1144755842 +59,412,4.0,1144756272 +59,480,4.5,1144756044 +59,527,4.5,1144756394 +59,541,5.0,1144756037 +59,586,0.5,1144756031 +59,590,3.5,1144756028 +59,593,3.5,1144756398 +59,720,4.5,1144756414 +59,745,5.0,1144756328 +59,858,5.0,1144756296 +59,912,4.0,1144755799 +59,919,1.5,1144755833 +59,1136,4.0,1144756017 +59,1148,5.0,1144756384 +59,1193,3.5,1144756013 +59,1213,3.5,1144755855 +59,1221,5.0,1144755814 +59,1356,0.5,1144755869 +59,1673,4.0,1144756209 +59,1722,1.5,1144756203 +59,1923,3.0,1144755873 +59,1961,3.5,1144755823 +59,1968,2.5,1144756199 +59,2028,1.5,1144756004 +59,2105,1.0,1144756192 +59,2161,0.5,1144756188 +59,2167,4.0,1144756184 +59,2193,0.5,1144756181 +59,2194,3.5,1144756178 +59,2302,3.5,1144756175 +59,2329,4.0,1144756386 +59,2396,3.5,1144755999 +59,2470,0.5,1144756164 +59,2542,2.0,1144756161 +59,2617,4.0,1144756157 +59,2640,1.0,1144756153 +59,2671,1.5,1144756141 +59,2683,1.5,1144755852 +59,2692,4.0,1144756137 +59,2716,2.0,1144755809 +59,2763,1.5,1144756134 +59,2797,3.0,1144756128 +59,2858,4.0,1144755992 +59,2959,4.0,1144755805 +59,2997,1.5,1144755795 +59,3253,4.0,1144756119 +59,3578,4.0,1144756116 +59,3623,1.0,1144756112 +59,3751,4.0,1144756109 +59,3911,3.5,1144756106 +59,3948,0.5,1144756094 +59,4306,1.5,1144755866 +59,4993,4.5,1144755863 +59,5060,3.5,1144756101 +59,5349,3.0,1144756087 +59,5952,5.0,1144756362 +59,6787,5.0,1144756343 +59,7040,4.0,1144756281 +59,7153,5.0,1144756348 +59,7361,4.0,1144756082 +59,8961,5.0,1144756336 +59,26695,3.5,1144756276 +59,33794,2.0,1144756332 +59,34153,4.0,1144756402 +60,16,4.5,1125828814 +60,21,3.0,1125829035 +60,111,4.5,1125829229 +60,163,4.0,1125828888 +60,173,3.5,1125828860 +60,235,5.0,1125829070 +60,466,4.0,1125828890 +60,541,5.0,1125829154 +60,608,4.0,1125829157 +60,653,2.5,1125828818 +60,720,4.0,1125829203 +60,745,3.5,1125829207 +60,858,5.0,1125829174 +60,1080,4.5,1125828831 +60,1090,4.0,1125828893 +60,1208,4.5,1125829194 +60,1209,4.0,1125829215 +60,1219,4.5,1125829161 +60,1221,5.0,1125829152 +60,1380,1.5,1125828900 +60,1485,2.5,1125828872 +60,1653,5.0,1125828865 +60,1673,4.5,1125829038 +60,1732,5.0,1125829088 +60,2012,4.0,1125828843 +60,2115,3.5,1125828850 +60,2174,4.0,1125828802 +60,2324,5.0,1125829168 +60,2640,4.0,1125828876 +60,2710,4.5,1125828811 +60,2797,4.0,1125828806 +60,3018,3.5,1125829108 +60,3160,3.5,1125829131 +60,3608,4.0,1125829115 +60,3726,3.0,1125829042 +60,3949,5.0,1125829144 +60,4973,4.5,1125829233 +60,5060,5.0,1125828895 +60,5618,4.0,1125829190 +60,5690,5.0,1125829218 +60,5945,4.0,1125829124 +60,5952,3.0,1125828855 +60,5959,4.5,1125829077 +60,5995,5.0,1125829169 +60,6350,5.0,1125829184 +60,6502,4.5,1125829017 +60,6957,3.0,1125829047 +60,7361,5.0,1125829192 +60,7387,4.5,1125829007 +60,8638,5.0,1125829249 +60,8981,5.0,1125829091 +60,27773,4.5,1125829180 +60,27801,3.0,1125828995 +60,27803,5.0,1125829225 +60,30749,5.0,1125829142 +61,2,3.5,1216051639 +61,34,2.0,1216050806 +61,48,2.5,1216052245 +61,50,5.0,1216050620 +61,104,4.0,1216051937 +61,158,1.5,1216486613 +61,231,4.0,1216050783 +61,317,3.5,1216052001 +61,364,3.5,1216050872 +61,500,4.0,1216050755 +61,551,1.5,1216052048 +61,585,3.5,1216487185 +61,586,3.0,1216050910 +61,587,5.0,1216050728 +61,588,3.0,1216050688 +61,592,5.0,1216050426 +61,593,3.0,1217176111 +61,594,3.5,1216051901 +61,595,2.5,1216050607 +61,596,2.0,1216486577 +61,616,1.5,1216050050 +61,661,2.5,1216487081 +61,673,2.0,1216487462 +61,801,2.5,1216050212 +61,919,3.0,1216050981 +61,953,3.5,1216052355 +61,1010,3.0,1216050143 +61,1022,3.0,1216487383 +61,1028,3.5,1216052159 +61,1029,2.5,1216487645 +61,1035,4.0,1216052131 +61,1059,3.0,1216486917 +61,1073,2.0,1216050704 +61,1097,3.5,1216050633 +61,1136,5.0,1216050881 +61,1197,5.0,1216050615 +61,1207,2.5,1217176086 +61,1220,3.5,1216051628 +61,1367,2.5,1216487574 +61,1380,3.5,1216051765 +61,1500,4.5,1216051684 +61,1580,3.5,1216050812 +61,1777,2.0,1216052066 +61,1907,4.0,1216487286 +61,1954,2.0,1216051712 +61,1968,5.0,1216050874 +61,2018,2.5,1216487345 +61,2054,2.5,1216051756 +61,2078,1.5,1216050040 +61,2080,2.5,1216052376 +61,2081,3.5,1216051647 +61,2085,2.5,1216487259 +61,2087,3.0,1216487390 +61,2123,2.5,1216050185 +61,2144,3.0,1216486970 +61,2161,2.0,1216486558 +61,2174,2.0,1216050841 +61,2273,3.0,1216486754 +61,2300,5.0,1216487561 +61,2355,3.5,1216050771 +61,2384,2.0,1216050083 +61,2502,5.0,1216050948 +61,2571,4.0,1216050434 +61,2572,4.0,1216486568 +61,2716,3.0,1216050558 +61,2761,3.0,1216487170 +61,2804,1.0,1216052021 +61,2857,4.0,1217175852 +61,2918,4.5,1216050942 +61,2953,3.0,1216487450 +61,3114,1.0,1216050711 +61,3668,2.5,1216050152 +61,3751,1.5,1216050859 +61,3988,3.0,1216487130 +61,4016,1.5,1216487195 +61,4025,2.5,1217175695 +61,4232,3.5,1217175825 +61,4246,3.5,1216051015 +61,4306,3.5,1216050580 +61,4333,5.0,1216050173 +61,4701,2.5,1216486820 +61,4886,3.0,1216050489 +61,4890,3.5,1216487437 +61,4896,3.0,1216050661 +61,4993,5.0,1217175635 +61,5299,3.5,1216051026 +61,5349,4.5,1216050540 +61,5444,1.0,1216487083 +61,5449,3.5,1217175814 +61,5459,3.0,1216051664 +61,5481,1.5,1216052029 +61,5618,5.0,1216051166 +61,5693,3.5,1216050163 +61,5816,3.0,1216050722 +61,5952,5.0,1216050467 +61,5971,5.0,1217175952 +61,6218,2.5,1217175803 +61,6350,5.0,1217175973 +61,6373,3.5,1216051752 +61,6377,3.0,1216050500 +61,6539,1.5,1216050627 +61,6743,2.5,1216050335 +61,6863,4.5,1216051105 +61,6936,3.0,1216486831 +61,7004,4.0,1216487292 +61,7153,5.0,1216050411 +61,7161,2.0,1216050274 +61,7451,4.0,1216487206 +61,8360,2.0,1216050747 +61,8368,2.5,1217175562 +61,8376,0.5,1216052075 +61,8464,3.0,1217175793 +61,8544,3.5,1216486608 +61,8961,4.0,1216050419 +61,8970,2.5,1217176199 +61,26662,5.0,1216050266 +61,27706,3.5,1216487236 +61,30793,1.5,1216051039 +61,33004,2.0,1216052080 +61,33615,2.5,1216487374 +61,33660,2.0,1217176162 +61,33679,4.0,1216051779 +61,33794,5.0,1216050438 +61,34150,2.5,1216487036 +61,34162,4.0,1216051096 +61,40629,3.0,1216487165 +61,40815,4.0,1216050749 +61,41566,2.5,1216051161 +61,44191,5.0,1216050506 +61,44195,4.5,1216051092 +61,45431,1.0,1216050246 +61,45517,2.5,1216052363 +61,45720,4.0,1216486888 +61,45722,3.5,1216051047 +61,46578,5.0,1216050780 +61,46970,4.0,1216487176 +61,46972,4.0,1216487276 +61,46976,3.5,1216051666 +61,47610,2.5,1216051984 +61,48394,4.5,1216050612 +61,48780,5.0,1216050831 +61,50872,4.0,1216050762 +61,52973,4.5,1216051143 +61,53121,3.0,1216487179 +61,53125,1.0,1216051188 +61,53322,4.0,1216052121 +61,53464,2.5,1216050332 +61,53996,5.0,1216051618 +61,54001,2.5,1216051008 +61,54272,2.5,1216050692 +61,55566,4.0,1216051650 +61,55830,2.5,1217424458 +61,56030,3.5,1216050821 +61,56171,4.0,1216486738 +61,56174,4.5,1216050758 +61,56367,4.5,1216050547 +61,56757,3.0,1216052146 +61,57640,2.5,1217175527 +61,57669,4.5,1216487366 +61,58025,3.0,1216487091 +61,58559,5.0,1216487357 +61,58998,5.0,1216487144 +61,59315,4.0,1216050264 +61,60069,5.0,1216487413 +61,60074,3.0,1216486663 +61,60126,4.0,1216487141 +62,111,4.0,1451708754 +62,260,4.0,1451176940 +62,318,3.5,1451359418 +62,1196,5.0,1451176947 +62,1210,4.0,1451359247 +62,1270,4.5,1451359277 +62,2028,4.5,1451359280 +62,2918,4.5,1470457528 +62,2959,5.0,1451359348 +62,4226,4.0,1451359336 +62,5418,4.0,1449594307 +62,6016,4.0,1451708492 +62,8665,4.5,1449594323 +62,48774,4.0,1453318174 +62,49530,3.5,1452916989 +62,54286,4.0,1449594346 +62,58559,5.0,1475948734 +62,68157,4.5,1451708722 +62,68237,4.5,1451708228 +62,69481,3.5,1451707886 +62,70286,4.0,1451708064 +62,70862,4.0,1451708831 +62,79132,5.0,1451708501 +62,81591,4.0,1451713153 +62,85414,4.0,1451707852 +62,91535,3.0,1451708608 +62,92259,3.0,1451708709 +62,97304,4.0,1451708035 +62,101864,3.5,1451708254 +62,101947,3.5,1451712467 +62,103228,4.0,1451708272 +62,104374,5.0,1451178637 +62,104841,4.0,1451708082 +62,106782,4.5,1451707972 +62,106920,4.0,1451708365 +62,109487,4.5,1451708125 +62,111759,4.0,1451708157 +62,112183,3.0,1451706920 +62,112290,4.0,1451708301 +62,112552,4.0,1451708010 +62,114662,3.0,1451178678 +62,115149,3.0,1451406848 +62,115569,3.5,1451706930 +62,115713,4.0,1449594073 +62,119145,4.5,1465526836 +62,120637,1.5,1465535480 +62,122882,5.0,1448760334 +62,122900,3.5,1453472303 +62,134130,5.0,1451407005 +62,134853,5.0,1455413632 +62,139644,4.5,1451368688 +62,146656,4.0,1465279438 +62,160438,4.0,1470457197 +63,1,5.0,1079098216 +63,11,3.5,1079098249 +63,16,5.0,1075307025 +63,58,0.5,1075307034 +63,112,3.0,1075307039 +63,150,4.0,1079098211 +63,151,0.5,1075307036 +63,246,0.5,1075307056 +63,260,5.0,1078570677 +63,315,1.0,1075307064 +63,318,5.0,1079098244 +63,380,3.5,1079098188 +63,432,4.0,1075307028 +63,457,3.0,1078570670 +63,480,4.5,1078570695 +63,515,1.0,1075307062 +63,520,3.0,1079098254 +63,592,5.0,1079098217 +63,593,4.5,1079098263 +63,720,4.0,1076323993 +63,832,2.5,1075307060 +63,1015,1.5,1076324016 +63,1059,4.0,1076324042 +63,1080,4.5,1075307058 +63,1105,0.5,1076324074 +63,1193,5.0,1076324053 +63,1198,5.0,1079098242 +63,1214,5.0,1076324064 +63,1221,5.0,1079098258 +63,1230,1.5,1075307020 +63,1234,1.0,1075307065 +63,1259,5.0,1076324068 +63,1304,4.0,1075307023 +63,1307,2.0,1079098251 +63,1356,5.0,1076324056 +63,1372,3.0,1076324009 +63,1374,4.0,1075307043 +63,1376,3.5,1079098265 +63,1408,4.5,1079098267 +63,1474,1.0,1076324059 +63,1513,1.0,1076324000 +63,1517,4.0,1075307052 +63,1573,4.0,1078570732 +63,1610,4.5,1079098253 +63,1639,5.0,1078570730 +63,1641,3.0,1078570723 +63,1917,4.0,1075307050 +63,1954,4.5,1078570736 +63,1961,3.5,1078570725 +63,2004,4.5,1079098304 +63,2046,4.5,1079098294 +63,2116,2.5,1079098501 +63,2174,1.0,1078570715 +63,2268,4.0,1078570718 +63,2302,2.0,1078570716 +63,2393,4.5,1079098301 +63,2571,4.5,1076324071 +63,2628,4.5,1079098213 +63,2640,4.5,1078570740 +63,2699,4.0,1078570655 +63,2710,4.0,1079098201 +63,2762,3.0,1079098192 +63,2791,4.0,1079098199 +63,2797,5.0,1078570652 +63,2858,5.0,1080482377 +63,2918,5.0,1079098203 +63,2959,4.5,1075307030 +63,2987,4.5,1079098190 +63,2997,4.0,1078570675 +63,3114,5.0,1078570660 +63,3176,5.0,1079098196 +63,3328,4.0,1079098289 +63,3408,2.0,1078570684 +63,3471,4.0,1078570650 +63,3481,5.0,1078570661 +63,3578,5.0,1079098194 +63,3751,2.0,1078570672 +63,3793,4.5,1078570681 +63,3868,4.5,1076324022 +63,3869,4.5,1079098275 +63,3897,4.0,1078570666 +63,3996,4.0,1075307054 +63,4022,2.5,1079098205 +63,4306,5.0,1078570680 +63,4367,4.0,1079098272 +63,4369,4.5,1079098286 +63,4446,4.0,1079098273 +63,4846,5.0,1076324027 +63,4993,5.0,1079098495 +63,5349,5.0,1079098282 +63,5952,5.0,1076324012 +63,6333,5.0,1079098246 +63,6541,2.5,1076324031 +63,6711,5.0,1079098406 +63,6863,4.0,1079098400 +63,7153,5.0,1076324157 +63,7318,3.5,1079098342 +64,110,4.0,843159967 +64,150,3.0,843159644 +64,153,5.0,843159716 +64,165,3.0,843159716 +64,168,3.0,843159967 +64,231,3.0,843159770 +64,253,5.0,843159967 +64,266,5.0,843159967 +64,296,5.0,843159644 +64,318,5.0,843159871 +64,329,4.0,843159770 +64,344,2.0,843159716 +64,349,4.0,843159716 +64,356,4.0,843159871 +64,380,4.0,843159645 +64,434,4.0,843159871 +64,457,4.0,843159770 +64,590,5.0,843159644 +64,592,4.0,843159644 +64,593,5.0,843159770 +64,595,3.0,843159967 +65,260,4.0,945118587 +65,858,5.0,945149894 +65,909,5.0,945150424 +65,920,2.0,945118660 +65,924,4.0,945150571 +65,1077,5.0,945150514 +65,1078,5.0,945150514 +65,1084,5.0,945150037 +65,1210,2.0,945118792 +65,1221,4.0,945118614 +65,1230,5.0,945150175 +65,1238,2.0,945150351 +65,1256,4.0,945150351 +65,1270,3.0,945118543 +65,1278,5.0,945150424 +65,1288,3.0,945150278 +65,1292,5.0,945150473 +65,1299,5.0,945150037 +65,1304,4.0,945150395 +65,1952,4.0,945149894 +65,1956,3.0,945149834 +65,2064,5.0,945150395 +65,2289,4.0,945150395 +65,2863,5.0,945150351 +65,2871,4.0,945149894 +65,2971,5.0,945150011 +65,5060,5.0,945150351 +66,21,4.0,974600703 +66,22,2.0,974599486 +66,105,2.0,974597659 +66,110,4.0,974600526 +66,260,5.0,974600461 +66,356,4.0,974597735 +66,377,4.0,974599725 +66,457,4.0,974599773 +66,480,5.0,974600656 +66,589,5.0,974599725 +66,593,4.0,974599725 +66,608,4.0,974599074 +66,832,4.0,974599923 +66,858,5.0,974600461 +66,908,4.0,974597684 +66,1036,5.0,974600526 +66,1092,4.0,974599834 +66,1129,4.0,974600198 +66,1179,4.0,974599434 +66,1196,4.0,974597627 +66,1198,5.0,974600461 +66,1200,3.0,974600108 +66,1203,5.0,974597659 +66,1240,5.0,974600108 +66,1249,4.0,974599773 +66,1270,4.0,974600108 +66,1275,3.0,974600728 +66,1573,3.0,974599861 +66,1580,3.0,974600572 +66,1625,4.0,974600012 +66,1732,2.0,974599543 +66,1954,5.0,974600600 +66,2000,5.0,974600491 +66,2058,4.0,974599923 +66,2117,5.0,974600198 +66,2194,5.0,974600526 +66,2268,4.0,974599074 +66,2391,3.0,974599434 +66,2455,3.0,974600144 +66,2456,2.0,974600286 +66,2571,3.0,974599773 +66,2605,4.0,974599597 +66,2858,4.0,974600366 +66,2947,5.0,974600526 +66,2985,4.0,974600198 +66,3527,3.0,974600703 +66,3633,5.0,974600656 +66,3763,5.0,974600626 +66,3957,3.0,974598446 +67,1,3.0,854711770 +67,6,5.0,854711804 +67,12,3.0,854711916 +67,16,4.0,854713177 +67,17,4.0,854711772 +67,18,4.0,854711941 +67,28,5.0,854714394 +67,34,5.0,854714246 +67,42,3.0,854714498 +67,43,4.0,854712006 +67,60,4.0,854714394 +67,62,3.0,854711772 +67,86,5.0,854711958 +67,88,3.0,854711958 +67,94,3.0,854711941 +67,95,1.0,854711771 +67,104,3.0,854711830 +67,107,3.0,854711884 +67,110,5.0,854713313 +67,112,3.0,854711804 +67,141,1.0,854711771 +67,151,5.0,854714367 +67,198,4.0,854714394 +67,238,3.0,854715870 +67,260,4.0,854711862 +67,265,5.0,854713313 +67,266,3.0,854713176 +67,272,5.0,854715905 +67,277,4.0,854714200 +67,279,5.0,854714227 +67,280,5.0,854714471 +67,282,5.0,854714367 +67,288,4.0,854713176 +67,293,4.0,854713245 +67,294,3.0,854714394 +67,296,5.0,854714282 +67,314,5.0,854714201 +67,316,3.0,854713245 +67,318,5.0,854713313 +67,337,4.0,854714201 +67,350,3.0,854714421 +67,353,5.0,854715906 +67,356,4.0,854714498 +67,362,1.0,854713245 +67,364,5.0,854715906 +67,368,3.0,854715869 +67,383,4.0,854714302 +67,412,5.0,854714283 +67,431,4.0,854713245 +67,434,2.0,854715870 +67,452,5.0,854714498 +67,454,2.0,854714246 +67,457,4.0,854713245 +67,474,3.0,854714439 +67,475,5.0,854714227 +67,480,5.0,854713313 +67,491,4.0,854714315 +67,493,4.0,854714246 +67,509,5.0,854713245 +67,515,5.0,854713177 +67,524,3.0,854714302 +67,531,5.0,854713177 +67,541,4.0,854714282 +67,553,4.0,854714201 +67,586,4.0,854713176 +67,587,3.0,854714282 +67,589,4.0,854714470 +67,590,5.0,854713175 +67,592,3.0,854715905 +67,593,5.0,854714246 +67,595,4.0,854714421 +67,597,5.0,854715870 +67,609,3.0,854711916 +67,610,4.0,854714367 +67,613,4.0,854712026 +67,616,4.0,854714201 +67,628,3.0,854711862 +67,631,3.0,854711941 +67,637,3.0,854711862 +67,648,3.0,854711771 +67,650,5.0,854712060 +67,653,3.0,854711830 +67,664,3.0,854712785 +67,694,3.0,854711978 +67,707,4.0,854711916 +67,708,3.0,854711830 +67,709,4.0,854715869 +67,711,3.0,854711916 +67,719,1.0,854711884 +67,724,3.0,854711916 +67,733,4.0,854711804 +67,736,4.0,854711770 +67,743,2.0,854711884 +67,780,4.0,854711770 +67,784,3.0,854711830 +67,788,3.0,854711830 +67,849,3.0,854712006 +67,852,3.0,854711916 +67,1027,4.0,854714367 +67,1035,3.0,854714227 +67,1073,4.0,854711804 +67,1084,4.0,854713313 +67,1097,5.0,854714302 +68,1,4.0,1194741818 +68,2,3.0,1249809905 +68,11,3.5,1249808221 +68,150,4.0,1194743603 +68,260,3.0,1219476836 +68,317,3.0,1249808197 +68,318,4.0,1219476825 +68,356,4.0,1194741632 +68,367,3.0,1219477266 +68,380,4.0,1194741556 +68,454,4.0,1249807893 +68,457,4.0,1219476842 +68,468,3.0,1194740982 +68,480,4.0,1219476819 +68,500,4.0,1194741805 +68,527,3.5,1194741627 +68,539,3.5,1219477297 +68,541,3.5,1194741800 +68,586,3.5,1219477374 +68,587,4.0,1194743787 +68,590,3.5,1194741795 +68,592,3.5,1194741615 +68,597,3.0,1249809470 +68,778,2.5,1249807905 +68,780,3.5,1249809424 +68,904,4.0,1202605433 +68,908,4.0,1202605475 +68,912,4.0,1249807876 +68,914,4.0,1219474844 +68,933,3.5,1194741164 +68,934,3.5,1194741234 +68,953,4.0,1194742690 +68,1035,4.0,1219474919 +68,1073,3.0,1194743811 +68,1097,4.0,1194742498 +68,1185,3.5,1194741096 +68,1196,4.5,1202605483 +68,1197,3.5,1194742491 +68,1198,4.0,1202605399 +68,1200,3.5,1194741774 +68,1231,4.0,1194740988 +68,1265,4.5,1194741536 +68,1270,4.0,1194742462 +68,1278,4.0,1202605808 +68,1291,4.5,1249807861 +68,1292,4.0,1194741068 +68,1302,4.5,1249808142 +68,1376,4.0,1249809645 +68,1393,4.0,1249807853 +68,1409,3.5,1194741082 +68,1580,4.0,1194743774 +68,1608,4.0,1194743647 +68,1721,3.0,1249809495 +68,1923,4.0,1194741764 +68,1951,4.0,1219474926 +68,1959,4.5,1219474934 +68,2174,4.0,1249808034 +68,2384,2.5,1194741124 +68,2420,3.5,1249808019 +68,2468,4.0,1249808396 +68,2469,3.5,1194741217 +68,2716,4.0,1219477365 +68,2746,3.5,1194741010 +68,2762,4.0,1194742454 +68,2779,3.5,1249808373 +68,2791,3.5,1194742620 +68,2797,3.5,1194742605 +68,2918,4.5,1249807840 +68,2968,1.0,1249809623 +68,3072,3.5,1194740954 +68,3148,1.5,1249808007 +68,3247,3.0,1249807997 +68,3510,4.5,1194741025 +68,3578,2.5,1194743883 +68,3699,4.0,1194741198 +68,3755,3.0,1194740965 +68,4187,4.0,1194741383 +68,4306,4.5,1194741735 +68,4886,3.5,1194741657 +68,4963,3.5,1194744286 +68,4992,3.5,1249809788 +68,4993,5.0,1194741498 +68,4995,4.0,1219474681 +68,5218,3.5,1249807965 +68,5299,3.5,1194744599 +68,5349,4.0,1194742561 +68,5418,3.5,1194741843 +68,5816,4.0,1249807951 +68,5952,5.0,1194741508 +68,5989,4.0,1194742532 +68,5995,1.5,1249807943 +68,6218,3.5,1194744481 +68,6297,3.5,1194744514 +68,6373,3.0,1249807928 +68,6377,3.0,1194741828 +68,6539,4.0,1202605771 +68,6863,3.5,1194744593 +68,6874,1.0,1194741643 +68,7147,3.5,1194741823 +68,7153,5.0,1194741503 +68,7361,3.0,1194741682 +68,8360,4.5,1194744465 +68,8529,3.0,1194742776 +68,8623,4.0,1249808534 +68,8636,4.0,1346824858 +68,8865,3.5,1249808268 +68,8961,4.0,1194742060 +68,8972,4.0,1194741870 +68,26025,3.5,1255153332 +68,26562,4.0,1194741909 +68,30707,2.5,1219474832 +68,30749,3.0,1194742092 +68,30812,3.0,1194742744 +68,31374,4.0,1292732192 +68,31658,3.5,1346824829 +68,31685,4.0,1194744606 +68,33004,2.5,1194741316 +68,45431,3.5,1194744575 +68,45517,3.5,1194744487 +68,45668,3.5,1249809801 +68,46976,3.5,1194744213 +68,54259,3.5,1202605564 +68,56367,4.5,1219474721 +69,1,5.0,1366831110 +69,2,3.5,1366831701 +69,5,5.0,1366831985 +69,19,4.0,1366831735 +69,34,4.0,1366831572 +69,39,4.5,1366831626 +69,48,4.5,1366831972 +69,104,4.0,1366831788 +69,158,3.0,1366831962 +69,231,4.0,1366831564 +69,262,4.0,1348153664 +69,296,3.5,1366831100 +69,318,5.0,1366830848 +69,344,4.0,1366831253 +69,356,5.0,1366831102 +69,357,5.0,1366831615 +69,364,5.0,1366831266 +69,374,3.5,1348153638 +69,410,3.5,1366831784 +69,500,3.5,1366831290 +69,527,5.0,1366830854 +69,586,4.5,1366831610 +69,587,5.0,1366831598 +69,595,4.0,1366831275 +69,596,3.0,1366831955 +69,597,4.5,1366831566 +69,788,2.0,1366831769 +69,919,4.5,1366831679 +69,934,5.0,1348153757 +69,1020,4.5,1348153603 +69,1028,3.0,1366831950 +69,1035,4.5,1366831980 +69,1073,4.5,1366831595 +69,1193,5.0,1366830860 +69,1265,4.5,1366831588 +69,1270,5.0,1366831245 +69,1513,3.5,1348153569 +69,1682,5.0,1366831673 +69,1704,5.0,1366831619 +69,1721,4.5,1366831288 +69,1954,3.5,1366831929 +69,1968,4.5,1366831711 +69,2011,4.5,1366831778 +69,2012,4.5,1366831752 +69,2028,4.5,1366831268 +69,2054,2.5,1366831811 +69,2059,3.5,1348153818 +69,2136,1.0,1348153829 +69,2240,4.5,1348153964 +69,2302,4.5,1366831892 +69,2321,4.0,1366831968 +69,2355,4.5,1366831744 +69,2379,3.5,1348153794 +69,2706,4.0,1366831662 +69,2918,5.0,1366831695 +69,2987,4.5,1366831713 +69,3114,5.0,1366831681 +69,3253,4.5,1366832014 +69,3668,2.5,1348153841 +69,3791,4.0,1348153799 +69,3821,0.5,1348153863 +69,3948,3.5,1366831871 +69,3977,3.5,1366831839 +69,4254,3.5,1348153974 +69,4306,5.0,1366831576 +69,4878,3.5,1366831823 +69,4886,5.0,1366831687 +69,4896,4.5,1366831855 +69,4993,5.0,1366831289 +69,5308,4.0,1348153821 +69,5349,3.5,1366831708 +69,5816,4.5,1366831993 +69,5952,5.0,1366831574 +69,6377,5.0,1366831715 +69,6539,4.0,1366831670 +69,7153,5.0,1366831604 +69,7361,4.5,1366831756 +69,8961,4.0,1366831801 +69,58047,3.0,1348154058 +69,68554,4.5,1348155188 +69,69757,5.0,1348154113 +70,1,5.0,853954235 +70,3,5.0,853954323 +70,5,5.0,853954323 +70,7,3.0,853954323 +70,9,3.0,853954486 +70,12,3.0,853954577 +70,14,3.0,853954402 +70,17,4.0,853954235 +70,25,5.0,853954235 +70,26,5.0,853954729 +70,32,4.0,853954234 +70,36,4.0,853954322 +70,52,4.0,853954401 +70,58,5.0,853954401 +70,61,4.0,853954813 +70,62,5.0,853954235 +70,63,4.0,853954893 +70,65,3.0,853954577 +70,76,4.0,853954729 +70,79,4.0,853954485 +70,81,4.0,853954893 +70,82,4.0,853954893 +70,86,4.0,853954813 +70,88,3.0,853954814 +70,92,5.0,853954814 +70,95,5.0,853954235 +70,100,4.0,853954577 +70,104,3.0,853954401 +70,107,5.0,853954577 +70,112,5.0,853954323 +70,135,4.0,853954485 +70,141,5.0,853954235 +70,376,4.0,853954323 +70,494,3.0,853954323 +70,608,5.0,853954322 +70,609,5.0,853954656 +70,613,5.0,853955020 +70,628,5.0,853954485 +70,631,5.0,853954656 +70,637,3.0,853954485 +70,640,3.0,853954656 +70,648,3.0,853954235 +70,653,5.0,853954402 +70,661,5.0,853954485 +70,663,3.0,853954814 +70,667,5.0,853954729 +70,671,3.0,853954729 +70,673,3.0,853954814 +70,694,5.0,853954893 +70,704,4.0,853954893 +70,707,5.0,853954656 +70,708,5.0,853954401 +70,711,4.0,853954656 +70,719,4.0,853954577 +70,724,3.0,853954577 +70,733,5.0,853954323 +70,736,4.0,853954235 +70,737,3.0,853954485 +70,743,3.0,853954577 +70,745,4.0,853954813 +70,748,3.0,853954729 +70,761,3.0,853954656 +70,762,4.0,853954485 +70,780,4.0,853954234 +70,784,3.0,853954402 +70,785,5.0,853954893 +70,786,5.0,853954401 +70,788,5.0,853954401 +70,799,4.0,853955020 +70,802,5.0,853954577 +70,805,5.0,853954577 +70,810,3.0,853954814 +70,832,5.0,853954656 +70,839,5.0,853954813 +70,849,5.0,853955020 +70,852,5.0,853954656 +70,880,4.0,853955020 +70,891,4.0,853954893 +70,1059,5.0,853955020 +70,1061,5.0,853955020 +70,1073,5.0,853954401 +70,1356,5.0,853954485 +70,1367,5.0,853955020 +71,581,4.0,974659023 +71,589,3.0,974659502 +71,908,5.0,974659502 +71,1171,5.0,974659646 +71,1259,4.0,974659502 +71,1284,5.0,974659502 +71,1617,5.0,974659023 +71,1673,4.0,974659502 +71,1957,4.0,974659023 +71,2858,5.0,974659408 +71,3098,4.0,974659023 +71,3125,4.0,974658951 +71,3160,5.0,974659408 +71,3422,3.0,974659023 +71,3481,4.0,974659502 +71,3626,4.0,974659408 +71,3920,5.0,974659502 +71,3925,5.0,974659646 +71,3930,4.0,974659408 +71,3932,4.0,974659593 +71,3963,3.0,974659408 +71,3965,4.0,974659696 +71,3966,5.0,974659408 +72,1,3.5,1461778737 +72,2,2.5,1461784724 +72,47,3.5,1461784392 +72,50,4.0,1461778528 +72,110,3.5,1461784365 +72,150,3.5,1461784569 +72,260,3.0,1461778719 +72,296,4.0,1461778730 +72,318,4.0,1461778524 +72,356,4.0,1461778698 +72,480,3.0,1461778746 +72,527,4.0,1461778534 +72,541,4.0,1461784459 +72,593,3.5,1461778557 +72,608,4.0,1461784432 +72,778,4.0,1461784481 +72,858,4.5,1461778530 +72,912,3.5,1461784591 +72,924,4.0,1461784596 +72,1036,3.0,1461784428 +72,1196,3.0,1461778739 +72,1200,3.0,1461784475 +72,1206,4.0,1461784499 +72,1208,4.0,1461784671 +72,1213,4.0,1461778560 +72,1221,4.0,1461778537 +72,1222,4.0,1461784640 +72,1246,3.5,1461784644 +72,1258,4.0,1461784494 +72,1270,3.0,1461778751 +72,1682,3.5,1461784424 +72,1961,3.5,1461784642 +72,2006,2.5,1461778617 +72,2028,3.5,1461784345 +72,2324,4.0,1461784445 +72,2395,3.5,1461778611 +72,2571,3.5,1461778692 +72,2628,3.0,1461784613 +72,2692,3.5,1461784742 +72,2762,4.0,1461784405 +72,2858,4.0,1461784348 +72,2918,3.0,1461784637 +72,2959,4.0,1461778563 +72,3114,3.0,1461784599 +72,3481,3.0,1461778600 +72,3578,3.0,1461778760 +72,3717,1.5,1461784035 +72,3753,2.5,1461783967 +72,3793,3.0,1461783836 +72,3897,3.0,1461783926 +72,3949,3.5,1461784442 +72,3996,3.5,1461783857 +72,4011,3.5,1461783923 +72,4018,3.0,1461784071 +72,4022,4.0,1461783913 +72,4025,1.5,1461784048 +72,4027,3.5,1461783915 +72,4226,4.0,1461783834 +72,4246,2.5,1461783988 +72,4262,4.0,1461784652 +72,4306,3.0,1461784367 +72,4447,3.0,1461784065 +72,4720,3.5,1461784011 +72,4878,4.0,1461783905 +72,4886,3.0,1461783845 +72,4963,3.0,1461783869 +72,4973,3.5,1461783841 +72,4979,3.5,1461783980 +72,4993,3.0,1461778717 +72,4995,3.5,1461783881 +72,5218,2.5,1461783975 +72,5349,3.0,1461783872 +72,5378,3.0,1461784578 +72,5418,3.0,1461783889 +72,5445,3.5,1461783865 +72,5679,3.0,1461784050 +72,5903,2.5,1461784730 +72,5952,3.0,1461778734 +72,5989,3.5,1461783920 +72,5995,3.5,1461783992 +72,6333,2.5,1461784606 +72,6377,3.0,1461783846 +72,6502,3.5,1461783983 +72,6539,3.0,1461783838 +72,6711,4.0,1461784616 +72,6863,3.0,1461784038 +72,6874,3.5,1461783871 +72,6934,2.0,1461783970 +72,7143,3.0,1461784533 +72,7147,3.5,1461783960 +72,7153,3.0,1461778706 +72,7254,3.0,1461784490 +72,7361,3.5,1461783867 +72,7438,3.0,1461783898 +72,7458,2.5,1461784661 +72,7502,3.5,1461784505 +72,8644,3.0,1461784473 +72,8874,3.0,1461783972 +72,8950,3.5,1461784759 +72,8961,2.0,1461783887 +72,31696,3.0,1461784763 +72,33794,3.0,1461783896 +72,36529,3.5,1461784702 +72,41566,3.0,1461784573 +72,44191,3.5,1461784364 +72,44195,3.5,1461784711 +72,45447,2.5,1461784674 +72,46578,3.0,1461783948 +72,47610,3.0,1461784566 +72,48385,3.0,1461784585 +72,48394,3.5,1461783951 +72,48516,3.5,1461784370 +72,49272,3.0,1461783936 +72,50872,4.0,1464722870 +72,51255,3.0,1464722875 +72,51540,3.0,1464723963 +72,51662,3.0,1461783977 +72,52281,3.5,1464723975 +72,52722,1.5,1464722915 +72,52973,2.5,1464722908 +72,53000,3.5,1464723971 +72,53125,3.0,1464722892 +72,53322,2.5,1464723952 +72,53519,3.5,1464723990 +72,53972,3.0,1464723959 +72,53996,2.0,1461784655 +72,54001,2.5,1464723939 +72,54259,3.0,1464723955 +72,54272,3.5,1464722900 +72,54286,3.0,1461783945 +72,54503,3.0,1461784582 +72,54997,3.5,1464723948 +72,55247,3.5,1461784515 +72,55269,3.5,1464723984 +72,55765,3.0,1464723945 +72,55820,5.0,1464722872 +72,56174,3.0,1464722878 +72,56367,4.0,1464722868 +72,56757,3.5,1464723967 +72,56782,4.0,1461784650 +72,58559,3.5,1461778714 +72,59315,3.0,1461784352 +72,60069,4.0,1461778757 +72,61323,3.5,1461784770 +72,64957,3.5,1461784524 +72,68157,3.5,1461783955 +72,68319,2.0,1461784744 +72,68358,3.0,1461784013 +72,68954,4.0,1461778742 +72,69122,2.0,1461784029 +72,72998,2.0,1461783938 +72,74458,3.0,1461784053 +72,79132,3.5,1461778701 +72,79702,3.0,1461784665 +72,81562,3.5,1461784766 +72,81591,3.5,1461784449 +72,82459,3.5,1461784739 +72,86882,3.5,1461784720 +72,88140,3.0,1461784574 +72,88744,3.5,1461784563 +72,89492,3.5,1461784704 +72,89745,2.5,1461784358 +72,91529,3.0,1461778763 +72,92259,4.0,1461784402 +72,94959,4.0,1461784545 +72,97752,2.5,1461784734 +72,97938,3.0,1461784588 +72,99114,3.5,1461778748 +72,102445,3.0,1461784567 +72,103249,2.5,1461784749 +72,104374,3.5,1461784700 +72,104841,3.5,1461784437 +72,105844,3.5,1461784698 +72,106100,3.5,1461784548 +72,106920,4.0,1461784455 +72,109487,3.5,1461778724 +72,112552,3.5,1461784387 +72,112852,3.0,1461784379 +72,114662,1.0,1461784707 +72,115713,3.5,1461784342 +72,116797,3.5,1461778744 +72,117176,3.5,1461784635 +72,122882,4.0,1461778755 +72,122886,3.0,1461778642 +72,122904,3.0,1461778637 +72,122920,3.0,1461778586 +72,134130,3.5,1461778626 +72,136864,1.0,1461784183 +72,139385,3.5,1461784683 +72,142488,3.0,1461778632 +72,156607,2.0,1461784162 +73,1,5.0,1303464840 +73,2,2.5,1255595527 +73,6,4.5,1337593559 +73,10,3.0,1255591764 +73,15,2.5,1255593501 +73,16,4.0,1255508530 +73,19,1.5,1255501766 +73,21,3.5,1255597031 +73,25,4.5,1337593272 +73,31,3.5,1255591860 +73,32,5.0,1354676110 +73,34,2.5,1255606447 +73,36,4.5,1339744008 +73,39,4.0,1255505029 +73,44,3.0,1255596165 +73,47,5.0,1255503386 +73,48,2.0,1255608841 +73,50,5.0,1255502804 +73,60,2.0,1470720095 +73,63,3.5,1304411684 +73,65,2.0,1255587668 +73,69,4.0,1255851405 +73,70,3.5,1255596154 +73,98,3.0,1406172306 +73,101,3.5,1312496282 +73,104,2.5,1255843848 +73,107,3.0,1255742407 +73,110,4.0,1255508598 +73,111,3.5,1255502716 +73,112,3.5,1348568488 +73,145,3.0,1255596442 +73,147,4.5,1283940446 +73,150,3.5,1286701620 +73,153,1.0,1281668214 +73,158,2.0,1255608880 +73,160,3.0,1255506790 +73,163,3.5,1255505013 +73,165,3.5,1255608532 +73,168,2.5,1256018505 +73,169,0.5,1255587428 +73,172,3.5,1255503714 +73,173,3.0,1255587153 +73,175,4.5,1255850905 +73,177,3.0,1470720332 +73,180,3.5,1255593273 +73,185,2.5,1256030057 +73,193,3.0,1266049987 +73,198,4.0,1406171781 +73,208,3.0,1255503373 +73,215,5.0,1456039608 +73,216,4.0,1304411592 +73,223,4.5,1411810971 +73,231,3.5,1264835146 +73,233,4.0,1406171065 +73,235,4.0,1255508717 +73,239,3.0,1437711199 +73,246,4.5,1255585670 +73,247,4.0,1378180010 +73,253,3.5,1255506785 +73,256,2.5,1369513505 +73,258,2.0,1470720392 +73,260,4.5,1255508202 +73,266,4.0,1398568231 +73,267,3.0,1304411765 +73,288,3.5,1255844977 +73,292,3.0,1255597661 +73,293,5.0,1306826434 +73,296,5.0,1255502790 +73,300,4.0,1290089214 +73,316,3.0,1256029728 +73,318,5.0,1255502795 +73,319,4.0,1260597912 +73,322,4.5,1311319243 +73,327,2.5,1255849588 +73,333,2.0,1255609029 +73,337,3.5,1285414310 +73,338,3.0,1255593485 +73,344,2.0,1255501759 +73,349,3.0,1256029720 +73,352,3.5,1470720434 +73,353,4.0,1255509139 +73,356,5.0,1255844449 +73,364,5.0,1303464829 +73,367,2.0,1255947440 +73,368,3.0,1457597096 +73,374,2.5,1255597004 +73,377,3.0,1256030041 +73,380,3.0,1255594331 +73,407,3.5,1280749457 +73,409,2.5,1255501745 +73,410,2.5,1255597090 +73,413,2.5,1255596999 +73,428,4.0,1311318950 +73,431,3.5,1255502945 +73,435,2.5,1304412304 +73,441,3.5,1255508982 +73,442,3.5,1304412090 +73,456,4.0,1289377723 +73,457,4.0,1261572758 +73,466,2.5,1304411724 +73,471,4.0,1296460183 +73,474,3.5,1255608640 +73,480,4.0,1255503366 +73,481,3.5,1255507407 +73,482,4.0,1429168457 +73,485,3.0,1287294447 +73,493,4.0,1255503176 +73,497,3.5,1255845005 +73,500,3.5,1272354528 +73,502,3.0,1470720213 +73,507,3.5,1470896986 +73,508,4.0,1261572653 +73,510,0.5,1255593983 +73,514,3.5,1470720182 +73,520,4.0,1255595145 +73,522,3.0,1255850852 +73,527,5.0,1255844407 +73,541,4.5,1255508022 +73,551,3.5,1255844972 +73,553,4.0,1311651342 +73,555,4.0,1255502930 +73,575,3.5,1255596533 +73,585,2.5,1470719734 +73,586,3.5,1255608112 +73,588,5.0,1303464853 +73,589,3.0,1255595915 +73,590,4.5,1255594321 +73,592,4.0,1255504505 +73,593,4.5,1281307627 +73,594,3.5,1255844780 +73,595,4.5,1303464866 +73,596,3.5,1255844932 +73,597,3.0,1256030046 +73,608,4.0,1255502799 +73,610,1.5,1398568108 +73,628,4.5,1314943073 +73,631,3.0,1470720316 +73,648,3.0,1255845002 +73,653,2.5,1256030164 +73,673,3.0,1255506758 +73,694,3.0,1470720292 +73,704,3.0,1470720380 +73,708,2.5,1256018210 +73,719,2.5,1422335223 +73,733,3.0,1256029754 +73,735,4.0,1448953137 +73,736,1.5,1255608540 +73,737,2.5,1256030591 +73,741,4.0,1264405840 +73,742,2.5,1470720372 +73,745,4.0,1255588345 +73,748,3.5,1283940897 +73,761,2.5,1470720219 +73,778,5.0,1255862403 +73,780,3.5,1457596624 +73,784,1.0,1255591836 +73,785,3.5,1304411666 +73,786,2.0,1398568202 +73,788,2.5,1255606772 +73,799,3.5,1348567967 +73,802,3.0,1418785517 +73,832,2.5,1256030174 +73,849,3.5,1255500962 +73,858,5.0,1255584436 +73,880,2.5,1255849976 +73,904,4.5,1255584412 +73,909,4.0,1255608074 +73,919,4.0,1315979781 +73,924,1.5,1255501638 +73,940,4.5,1255501801 +73,968,4.0,1255607784 +73,1015,3.5,1470720223 +73,1020,3.0,1255594607 +73,1022,3.5,1303464880 +73,1025,3.5,1279948049 +73,1027,3.5,1337594349 +73,1029,3.0,1256030424 +73,1032,3.0,1255595609 +73,1033,3.5,1282638702 +73,1036,4.5,1255508391 +73,1049,3.5,1255743474 +73,1059,3.5,1255609078 +73,1060,4.0,1255506740 +73,1061,4.0,1255947496 +73,1080,4.5,1255608654 +73,1089,3.5,1255844891 +73,1090,5.0,1255506732 +73,1093,2.0,1255595979 +73,1094,3.5,1411355622 +73,1097,4.0,1255504951 +73,1101,3.5,1255595920 +73,1120,3.5,1255609131 +73,1127,4.0,1262660448 +73,1129,4.0,1255502910 +73,1136,3.0,1255508109 +73,1148,4.0,1255588350 +73,1185,4.0,1255596971 +73,1186,3.5,1280749995 +73,1193,4.5,1266581514 +73,1194,4.0,1255503156 +73,1196,5.0,1255502779 +73,1197,5.0,1255506722 +73,1198,5.0,1255508049 +73,1199,4.5,1428469603 +73,1200,5.0,1311651122 +73,1201,5.0,1348568040 +73,1203,4.5,1255501601 +73,1204,5.0,1255504946 +73,1206,4.5,1404370293 +73,1208,5.0,1255844483 +73,1210,5.0,1255508757 +73,1213,5.0,1306826464 +73,1214,5.0,1326419215 +73,1215,4.5,1255502137 +73,1218,4.5,1339744073 +73,1220,3.5,1270610619 +73,1221,5.0,1255585464 +73,1222,4.5,1255506723 +73,1225,3.0,1255608634 +73,1228,4.5,1255587798 +73,1240,4.5,1255596621 +73,1241,4.0,1464751206 +73,1242,3.5,1432525150 +73,1245,4.0,1260977284 +73,1246,3.5,1256030107 +73,1252,4.0,1255502888 +73,1255,4.5,1378180019 +73,1257,4.0,1296952002 +73,1258,4.0,1255502784 +73,1259,3.5,1280749968 +73,1261,4.5,1268808237 +73,1262,4.0,1409452810 +73,1263,4.0,1267705648 +73,1265,4.0,1255591754 +73,1266,4.5,1337593473 +73,1270,5.0,1285479373 +73,1274,4.5,1302152229 +73,1275,4.0,1255845402 +73,1282,4.0,1255606220 +73,1285,3.5,1312496151 +73,1288,2.5,1255587965 +73,1291,5.0,1306826403 +73,1293,4.5,1255506712 +73,1298,1.5,1255591944 +73,1299,3.5,1267705570 +73,1302,2.0,1255593963 +73,1320,3.5,1255501914 +73,1321,3.0,1255501035 +73,1339,3.0,1255500860 +73,1342,3.0,1348567962 +73,1343,4.0,1411355614 +73,1345,4.0,1255593958 +73,1347,3.5,1255844967 +73,1350,3.0,1255608055 +73,1356,3.5,1437103984 +73,1358,4.0,1275964521 +73,1359,2.0,1470720209 +73,1367,2.5,1470719755 +73,1370,3.0,1255502875 +73,1372,3.5,1261667770 +73,1374,4.0,1350192487 +73,1377,3.5,1281668223 +73,1380,4.0,1255594430 +73,1387,4.0,1255502774 +73,1391,3.0,1255591429 +73,1393,4.0,1255596358 +73,1394,4.0,1296730230 +73,1396,4.0,1319337546 +73,1405,3.5,1255500918 +73,1407,4.0,1464751433 +73,1408,3.0,1398567944 +73,1438,2.5,1255501084 +73,1456,1.0,1255586834 +73,1464,3.5,1409205998 +73,1466,4.0,1255508548 +73,1479,2.5,1255609223 +73,1485,3.5,1304411853 +73,1499,2.0,1255502015 +73,1500,4.0,1369206214 +73,1515,3.0,1255843935 +73,1517,3.5,1255591360 +73,1527,3.5,1255509163 +73,1544,3.0,1256030207 +73,1552,2.5,1255597293 +73,1562,0.5,1255597075 +73,1566,4.0,1303464772 +73,1573,3.5,1331374345 +73,1580,3.0,1255607723 +73,1584,3.0,1460517728 +73,1587,4.0,1287294418 +73,1590,4.5,1406172081 +73,1591,3.0,1256028479 +73,1595,0.5,1255586362 +73,1597,3.5,1255596053 +73,1599,1.0,1255589046 +73,1603,2.5,1255597219 +73,1608,3.5,1255501843 +73,1617,4.5,1255844622 +73,1625,4.0,1255591424 +73,1639,3.5,1311319246 +73,1644,1.5,1255849480 +73,1645,3.0,1255609000 +73,1653,3.5,1295875283 +73,1673,4.0,1255508776 +73,1674,3.5,1457597070 +73,1676,3.0,1255596853 +73,1681,1.5,1255507319 +73,1682,4.5,1255509032 +73,1690,2.0,1255596139 +73,1704,4.0,1255502769 +73,1707,1.5,1255845284 +73,1721,0.5,1256552857 +73,1729,3.5,1255502846 +73,1732,4.0,1255584591 +73,1748,4.0,1354676118 +73,1752,2.0,1255593683 +73,1753,4.5,1255844646 +73,1760,0.5,1255503138 +73,1762,3.5,1406172191 +73,1777,3.0,1256030295 +73,1779,3.0,1257239744 +73,1784,4.5,1296951840 +73,1785,3.5,1369514567 +73,1792,2.5,1255596509 +73,1826,1.0,1255588837 +73,1840,3.5,1272354630 +73,1858,3.0,1470720028 +73,1862,1.0,1255589167 +73,1876,2.5,1437709517 +73,1882,1.0,1255849486 +73,1884,3.5,1255594560 +73,1909,3.5,1437709512 +73,1911,3.0,1411355597 +73,1912,4.5,1369206547 +73,1916,4.0,1381126672 +73,1917,2.0,1255591355 +73,1920,2.5,1255596503 +73,1923,3.0,1255591350 +73,1953,3.5,1272355372 +73,1954,4.5,1255506671 +73,1961,4.0,1255584855 +73,1965,3.5,1431232609 +73,1967,5.0,1306826395 +73,1968,4.5,1331019382 +73,1974,3.5,1255845278 +73,1982,4.0,1255591608 +73,1991,3.5,1255742786 +73,1994,4.0,1464751442 +73,1997,4.0,1255502851 +73,2000,4.0,1255608727 +73,2003,4.5,1262056348 +73,2004,4.0,1262056355 +73,2005,5.0,1306826463 +73,2006,3.0,1437103998 +73,2009,4.0,1406171880 +73,2011,4.0,1255502841 +73,2012,2.5,1255595963 +73,2018,4.5,1255584964 +73,2021,3.5,1411452543 +73,2023,2.5,1255595957 +73,2028,4.5,1255844560 +73,2033,3.5,1303464933 +73,2052,3.5,1470720309 +73,2054,3.5,1255608711 +73,2058,2.5,1304412471 +73,2060,2.5,1304411648 +73,2076,4.0,1255503604 +73,2078,5.0,1255502836 +73,2080,3.5,1378180034 +73,2081,3.5,1303464871 +73,2082,3.5,1282545301 +73,2087,3.5,1255844937 +73,2089,3.5,1279948023 +73,2090,3.5,1437711085 +73,2093,4.0,1406171622 +73,2096,3.0,1256027987 +73,2105,3.0,1255500870 +73,2115,5.0,1306826405 +73,2123,4.0,1406171334 +73,2124,3.5,1255506668 +73,2134,4.0,1261656604 +73,2138,4.5,1324634524 +73,2139,4.0,1303464923 +73,2140,4.0,1456038593 +73,2142,3.5,1261656636 +73,2143,3.5,1300947005 +73,2144,4.5,1364100089 +73,2148,3.5,1255844084 +73,2150,3.0,1255596126 +73,2159,3.0,1418786181 +73,2161,3.5,1261656735 +73,2164,1.0,1255589018 +73,2167,3.0,1256030336 +73,2174,4.0,1255591395 +73,2193,4.0,1259037014 +73,2194,4.0,1255584576 +73,2195,3.0,1304411810 +73,2231,4.0,1311318965 +73,2232,4.0,1267705661 +73,2248,3.5,1411876538 +73,2252,4.0,1337593722 +73,2273,3.5,1348568537 +73,2278,4.0,1259040565 +73,2288,4.0,1255502833 +73,2289,4.0,1267705538 +73,2291,3.5,1255593907 +73,2294,3.5,1255502070 +73,2302,3.0,1255844988 +73,2305,4.5,1288697512 +73,2315,2.5,1255587644 +73,2318,4.5,1430027806 +73,2321,3.0,1256030202 +73,2324,3.5,1255608781 +73,2327,3.5,1441522263 +73,2329,4.5,1255501972 +73,2335,3.0,1255502470 +73,2340,0.5,1256028414 +73,2353,2.5,1255742368 +73,2355,3.0,1255594309 +73,2360,4.0,1430034069 +73,2378,3.5,1369513448 +73,2387,3.5,1255504073 +73,2391,3.5,1454042117 +73,2394,3.5,1431234283 +73,2395,4.5,1381126595 +73,2396,4.0,1255584959 +73,2402,3.0,1255593426 +73,2403,3.5,1255593420 +73,2404,3.0,1255586748 +73,2406,3.0,1275964632 +73,2409,4.0,1255608040 +73,2410,3.0,1255507270 +73,2411,3.5,1255844856 +73,2412,2.0,1255844835 +73,2420,4.5,1255591400 +73,2421,4.0,1427170335 +73,2422,3.0,1427170376 +73,2424,1.5,1255597066 +73,2427,4.0,1315969124 +73,2428,2.0,1255850016 +73,2429,2.0,1255593663 +73,2431,4.0,1255608035 +73,2451,3.5,1261487007 +73,2455,4.0,1266665318 +73,2459,4.5,1381045859 +73,2460,3.0,1441522359 +73,2467,4.5,1369205876 +73,2470,3.0,1474615000 +73,2490,3.5,1255844950 +73,2495,3.5,1274265898 +73,2502,4.5,1255508410 +73,2528,3.5,1406171915 +73,2529,4.5,1406171911 +73,2541,2.0,1256030469 +73,2542,4.5,1255508246 +73,2551,3.0,1469772944 +73,2555,1.0,1255586425 +73,2560,4.0,1275964192 +73,2571,4.5,1282543426 +73,2572,3.5,1437709524 +73,2580,4.5,1296460015 +73,2582,3.0,1427170447 +73,2596,4.0,1255844787 +73,2599,4.5,1429168678 +73,2605,2.0,1256030461 +73,2606,3.5,1369514518 +73,2617,3.5,1464751460 +73,2628,2.5,1255591345 +73,2657,2.0,1256944354 +73,2671,3.0,1437709506 +73,2683,3.0,1255596353 +73,2687,4.0,1279948065 +73,2692,4.5,1357552985 +73,2694,3.0,1255597830 +73,2699,3.0,1255502120 +73,2700,3.5,1255844776 +73,2701,2.0,1255586467 +73,2706,3.5,1255501979 +73,2707,4.0,1312496216 +73,2710,3.5,1255591385 +73,2712,4.5,1404370203 +73,2713,1.5,1255947627 +73,2716,4.5,1282545089 +73,2717,3.0,1282545112 +73,2720,1.0,1255587084 +73,2722,2.5,1472698650 +73,2723,3.0,1256019289 +73,2724,2.5,1304412607 +73,2728,4.0,1411876466 +73,2734,3.0,1369513635 +73,2746,3.0,1259325836 +73,2761,2.5,1257229357 +73,2762,4.0,1255508479 +73,2770,3.0,1255591390 +73,2791,3.5,1255501853 +73,2797,3.5,1273043702 +73,2798,3.0,1255844915 +73,2804,4.0,1255588083 +73,2808,2.0,1255596937 +73,2841,4.0,1314942833 +73,2858,4.5,1255844727 +73,2860,3.0,1348568560 +73,2862,3.5,1255506106 +73,2867,4.0,1303465749 +73,2871,4.5,1390127454 +73,2872,3.5,1255849777 +73,2879,3.5,1348568747 +73,2890,3.5,1255509017 +73,2900,3.0,1464508137 +73,2901,3.5,1456038664 +73,2915,3.5,1411355584 +73,2916,4.0,1348568388 +73,2918,4.5,1296952036 +73,2921,4.0,1470985538 +73,2924,4.5,1427170200 +73,2947,4.0,1369205974 +73,2948,4.5,1357552974 +73,2951,4.0,1470729030 +73,2952,4.0,1431584423 +73,2953,2.5,1255849720 +73,2959,5.0,1309081686 +73,2968,3.5,1432523188 +73,2974,1.0,1255586415 +73,2985,4.0,1337593255 +73,2987,3.5,1255607717 +73,2997,4.5,1262056591 +73,3006,4.5,1334396063 +73,3013,3.5,1406172160 +73,3016,4.0,1437710007 +73,3018,3.5,1261487189 +73,3019,4.0,1475124698 +73,3020,4.0,1312496325 +73,3033,3.5,1255596722 +73,3034,4.5,1303464905 +73,3036,4.0,1296730204 +73,3052,3.0,1255509153 +73,3070,3.0,1337594327 +73,3081,2.5,1255503566 +73,3082,2.5,1255500985 +73,3101,3.5,1256018249 +73,3104,4.0,1339743989 +73,3108,4.0,1267705250 +73,3113,2.5,1474615285 +73,3114,4.0,1274265884 +73,3146,2.0,1255743364 +73,3147,3.5,1257228558 +73,3153,4.0,1255606347 +73,3160,3.5,1255845019 +73,3173,2.5,1255845250 +73,3174,4.0,1303466268 +73,3175,2.5,1255608868 +73,3178,4.0,1255850836 +73,3210,3.5,1255508823 +73,3213,4.5,1281668156 +73,3252,4.0,1267705304 +73,3253,3.5,1304411787 +73,3254,2.5,1256028073 +73,3255,2.5,1255500852 +73,3256,3.0,1256030417 +73,3263,4.0,1255505507 +73,3265,4.0,1331375405 +73,3267,3.5,1475124680 +73,3273,2.5,1255607878 +73,3275,3.5,1255507224 +73,3298,4.0,1255504005 +73,3300,3.5,1369514944 +73,3328,4.5,1355922434 +73,3360,3.5,1279948734 +73,3361,3.5,1261572674 +73,3362,4.0,1255596921 +73,3363,4.0,1369513307 +73,3424,4.0,1281668274 +73,3426,3.5,1255742725 +73,3438,3.5,1255592969 +73,3439,3.0,1255586543 +73,3440,1.5,1255586548 +73,3448,3.5,1255597612 +73,3471,3.0,1264493967 +73,3476,4.0,1264751860 +73,3479,4.0,1422335547 +73,3481,4.0,1320810501 +73,3489,3.5,1255597607 +73,3499,4.0,1320810452 +73,3527,3.5,1282543451 +73,3535,4.5,1395987897 +73,3552,4.0,1303466242 +73,3554,3.0,1255506079 +73,3555,2.0,1255594378 +73,3573,0.5,1255588774 +73,3574,0.5,1255588780 +73,3578,4.0,1255584828 +73,3581,4.0,1289045177 +73,3593,0.5,1255588769 +73,3617,2.5,1255591380 +73,3623,2.0,1255608746 +73,3671,3.0,1255595938 +73,3681,4.5,1470896634 +73,3687,3.5,1469772991 +73,3688,3.0,1255844919 +73,3696,4.0,1466320273 +73,3698,4.0,1287294312 +73,3702,2.5,1258367323 +73,3703,3.5,1258367400 +73,3704,3.5,1259389532 +73,3706,4.5,1464750953 +73,3717,3.5,1370057557 +73,3727,3.5,1464751470 +73,3728,4.0,1418461988 +73,3735,4.0,1343119731 +73,3740,3.5,1255596218 +73,3745,3.5,1259325859 +73,3751,2.0,1255608143 +73,3752,2.5,1255594368 +73,3753,3.0,1255597273 +73,3755,3.0,1255844941 +73,3761,4.0,1296459580 +73,3785,3.0,1255591794 +73,3793,2.5,1255608592 +73,3821,1.5,1255608249 +73,3826,1.5,1257229260 +73,3843,4.0,1435472709 +73,3852,3.5,1261573299 +73,3861,2.5,1255596214 +73,3882,1.5,1255742451 +73,3897,4.0,1255859036 +73,3916,3.5,1255844895 +73,3917,3.0,1262826535 +73,3948,4.0,1304411842 +73,3949,4.0,1255504813 +73,3950,3.5,1312496194 +73,3955,3.0,1304411604 +73,3961,3.0,1255742998 +73,3962,2.5,1255586357 +73,3967,3.5,1255849638 +73,3970,4.5,1431234143 +73,3972,4.0,1427170187 +73,3977,2.0,1255608483 +73,3979,0.5,1255503033 +73,3986,3.0,1369513586 +73,3994,2.5,1255596840 +73,3996,3.5,1255591337 +73,4002,3.0,1257229345 +73,4006,4.0,1274265922 +73,4007,4.0,1396156423 +73,4011,4.5,1255508282 +73,4014,4.0,1255584991 +73,4015,2.5,1255742448 +73,4018,3.0,1255597278 +73,4019,3.0,1255845245 +73,4022,3.0,1255594363 +73,4025,2.5,1256030443 +73,4027,4.5,1309414189 +73,4034,4.5,1256029491 +73,4054,2.0,1255608233 +73,4069,1.5,1456038994 +73,4085,3.5,1255609092 +73,4103,4.5,1283169534 +73,4105,4.0,1268808234 +73,4128,3.5,1255845024 +73,4135,3.5,1437710061 +73,4148,3.0,1418462162 +73,4214,3.5,1255844881 +73,4223,3.5,1255849756 +73,4226,4.5,1255508007 +73,4232,0.5,1255596198 +73,4239,4.5,1255503937 +73,4246,2.5,1255608478 +73,4255,0.5,1255592082 +73,4262,4.0,1255506569 +73,4270,2.5,1255596703 +73,4275,4.0,1411452469 +73,4299,2.5,1256019294 +73,4306,4.0,1303464731 +73,4308,2.5,1257228611 +73,4310,1.0,1255849364 +73,4340,2.0,1255845363 +73,4343,2.5,1255596208 +73,4344,3.5,1255507158 +73,4351,4.0,1429168542 +73,4361,4.0,1255502625 +73,4367,1.5,1257229023 +73,4369,5.0,1369515350 +73,4370,2.5,1255609063 +73,4378,3.5,1255844800 +73,4388,2.0,1255596203 +73,4415,3.5,1255506563 +73,4437,3.5,1457597545 +73,4438,4.0,1337593133 +73,4441,3.0,1428469574 +73,4443,4.0,1457596520 +73,4444,4.0,1427170203 +73,4447,1.5,1255608385 +73,4448,3.5,1456038999 +73,4454,3.5,1256944285 +73,4467,4.5,1427168121 +73,4488,3.5,1370057531 +73,4519,5.0,1306826427 +73,4533,3.0,1255593845 +73,4553,4.5,1441514881 +73,4571,3.5,1255596109 +73,4577,4.0,1448953321 +73,4614,3.5,1427170442 +73,4618,3.5,1406172273 +73,4619,2.5,1296952145 +73,4621,2.0,1255505425 +73,4624,4.0,1418462025 +73,4638,3.0,1255594496 +73,4641,4.0,1282545187 +73,4642,4.0,1456039121 +73,4643,2.5,1255742990 +73,4697,3.5,1448953270 +73,4701,3.0,1255845239 +73,4713,4.5,1409205919 +73,4718,3.0,1255596106 +73,4720,3.5,1304411492 +73,4728,1.5,1255608222 +73,4734,3.0,1255591538 +73,4744,1.5,1255594879 +73,4775,0.5,1255606781 +73,4776,3.5,1255509080 +73,4800,4.0,1255505417 +73,4816,2.0,1255594188 +73,4823,3.0,1255844809 +73,4846,4.0,1427170169 +73,4848,3.5,1272355409 +73,4855,4.0,1352959815 +73,4865,3.5,1306826998 +73,4873,4.0,1295875347 +73,4874,4.0,1259411120 +73,4878,4.0,1448953284 +73,4886,3.0,1255608487 +73,4890,2.5,1255607838 +73,4896,3.0,1312496381 +73,4899,2.0,1456039352 +73,4915,3.5,1331374381 +73,4963,3.5,1255844964 +73,4974,3.0,1255844032 +73,4975,3.5,1272354473 +73,4979,4.0,1398567966 +73,4980,3.5,1255591532 +73,4987,3.0,1406172104 +73,4989,3.0,1255504768 +73,4993,5.0,1306826438 +73,4995,4.5,1255595932 +73,5010,4.0,1304412210 +73,5014,4.5,1315969212 +73,5025,3.0,1256030678 +73,5040,3.5,1255592071 +73,5055,3.0,1255742674 +73,5064,4.0,1264835164 +73,5094,0.5,1255586200 +73,5103,4.0,1273217119 +73,5110,3.0,1255606569 +73,5139,3.5,1369514322 +73,5146,4.0,1262569280 +73,5151,3.0,1256030657 +73,5152,3.0,1456039054 +73,5159,4.0,1406171597 +73,5165,4.0,1441514214 +73,5205,3.5,1448953334 +73,5210,3.5,1435472845 +73,5218,3.0,1304411962 +73,5219,3.0,1255844887 +73,5244,5.0,1387082402 +73,5266,3.5,1448953194 +73,5283,3.0,1255593557 +73,5294,3.5,1395987921 +73,5299,3.0,1460517505 +73,5313,2.0,1456039090 +73,5329,4.5,1306065234 +73,5349,4.0,1348568293 +73,5378,3.0,1255591376 +73,5388,3.0,1255591889 +73,5401,3.0,1304411695 +73,5418,3.0,1256017396 +73,5445,3.0,1255503508 +73,5449,3.0,1255503893 +73,5452,1.0,1256030597 +73,5459,2.0,1255608382 +73,5463,3.0,1456039073 +73,5464,3.5,1304412191 +73,5481,2.0,1255849610 +73,5502,2.5,1255609142 +73,5504,0.5,1255742979 +73,5507,1.5,1255503888 +73,5524,2.0,1456039270 +73,5540,4.0,1255606114 +73,5541,2.5,1337594371 +73,5572,1.5,1257164626 +73,5574,2.5,1256029172 +73,5585,1.0,1255587508 +73,5617,3.5,1431406170 +73,5618,4.0,1348568766 +73,5621,2.0,1427170483 +73,5630,3.5,1255850919 +73,5666,4.0,1255742663 +73,5669,4.0,1255584902 +73,5673,4.5,1337591896 +73,5679,3.0,1255595533 +73,5690,4.0,1311653407 +73,5691,2.5,1255587123 +73,5734,2.5,1256029535 +73,5735,3.5,1256029550 +73,5736,2.5,1255588990 +73,5737,2.0,1255588995 +73,5746,4.5,1406172244 +73,5810,3.5,1255501720 +73,5816,3.0,1312496408 +73,5882,3.5,1406172340 +73,5902,4.0,1338530999 +73,5903,4.0,1255507053 +73,5942,2.0,1456039316 +73,5943,2.0,1456039164 +73,5952,5.0,1306826436 +73,5954,4.0,1309761451 +73,5955,3.5,1279948760 +73,5956,3.5,1255503878 +73,5959,4.0,1285311199 +73,5989,4.0,1266581545 +73,5991,1.5,1255608120 +73,6016,5.0,1255503493 +73,6025,4.0,1406172365 +73,6155,3.0,1411355691 +73,6156,3.5,1369513550 +73,6157,0.5,1255503002 +73,6188,3.5,1255844960 +73,6212,2.0,1456039319 +73,6213,2.5,1456039235 +73,6218,2.5,1255849679 +73,6223,4.0,1255504698 +73,6281,3.0,1432523137 +73,6287,2.5,1304411827 +73,6298,0.5,1255586932 +73,6303,3.5,1255503222 +73,6323,4.5,1315969183 +73,6333,3.5,1417081916 +73,6338,3.0,1369514779 +73,6365,2.0,1255596285 +73,6373,2.5,1255591371 +73,6377,4.0,1255584888 +73,6378,3.0,1417081929 +73,6379,2.5,1309414298 +73,6383,3.0,1369515372 +73,6440,4.0,1411451683 +73,6502,3.0,1255501671 +73,6503,1.5,1255843864 +73,6534,0.5,1257229292 +73,6537,2.0,1255503487 +73,6539,4.0,1255509006 +73,6548,2.0,1255595377 +73,6559,4.0,1337594385 +73,6564,3.0,1369513547 +73,6565,2.5,1257229160 +73,6566,0.5,1255589036 +73,6582,3.0,1427170631 +73,6586,3.0,1464508095 +73,6593,0.5,1256029804 +73,6595,1.5,1256028643 +73,6602,3.5,1460519359 +73,6615,1.5,1255742653 +73,6659,4.0,1255502597 +73,6664,3.0,1337594381 +73,6695,1.5,1255587133 +73,6707,2.5,1348567959 +73,6708,4.0,1378179956 +73,6711,4.5,1273216574 +73,6731,4.0,1471332878 +73,6754,3.5,1457596987 +73,6755,4.5,1304411442 +73,6774,3.5,1289045130 +73,6796,4.5,1255502997 +73,6803,4.0,1448953300 +73,6807,3.0,1255591789 +73,6816,4.0,1295874873 +73,6820,3.0,1471332819 +73,6857,3.5,1264405832 +73,6863,2.5,1257228185 +73,6870,4.0,1260877884 +73,6874,4.5,1384069892 +73,6887,3.5,1369514741 +73,6888,2.0,1464508090 +73,6902,3.5,1257222707 +73,6934,2.0,1255503478 +73,6936,2.0,1255596893 +73,6947,3.0,1441513227 +73,6952,3.0,1255593542 +73,6953,3.5,1255588164 +73,6957,2.0,1255607831 +73,6977,3.0,1279947114 +73,7001,4.0,1378179792 +73,7007,4.0,1429168553 +73,7022,4.5,1337593385 +73,7036,3.5,1261656678 +73,7045,3.5,1454042575 +73,7046,3.0,1256029303 +73,7063,4.0,1411451412 +73,7090,4.0,1337594037 +73,7099,4.5,1348568786 +73,7117,3.0,1261486850 +73,7137,4.0,1311654117 +73,7143,2.5,1256030436 +73,7147,2.0,1255594326 +73,7153,5.0,1255503465 +73,7161,2.0,1456039242 +73,7235,4.5,1337593642 +73,7254,3.5,1255849692 +73,7285,4.0,1289046716 +73,7293,3.5,1255594489 +73,7308,3.5,1474614697 +73,7317,4.0,1255607425 +73,7318,3.0,1255591876 +73,7324,2.5,1257164378 +73,7325,2.5,1255596889 +73,7346,3.0,1288095855 +73,7360,3.0,1255591517 +73,7361,4.5,1255508137 +73,7367,2.0,1260977308 +73,7373,3.5,1304412434 +73,7387,3.5,1255503212 +73,7411,3.0,1255844992 +73,7419,4.0,1411810861 +73,7438,4.0,1255585779 +73,7445,3.5,1255606539 +73,7454,1.5,1255743175 +73,7458,2.0,1255595662 +73,7481,4.0,1257418583 +73,7482,4.0,1255850712 +73,7502,4.0,1352959898 +73,7701,1.5,1256559095 +73,7743,3.5,1279948092 +73,7802,5.0,1308113349 +73,7842,2.5,1287575320 +73,7844,4.0,1441513891 +73,7845,3.0,1255503838 +73,7846,2.5,1255586520 +73,7915,3.5,1423801745 +73,7976,4.0,1273217198 +73,7984,3.5,1448953187 +73,7987,3.5,1435474813 +73,8131,4.0,1456039436 +73,8340,4.5,1406172202 +73,8360,3.5,1303464741 +73,8361,3.0,1255742433 +73,8363,1.5,1255589173 +73,8368,3.5,1312496376 +73,8371,3.0,1456039039 +73,8372,1.0,1256029799 +73,8373,2.5,1256030665 +73,8376,3.5,1255844984 +73,8507,3.5,1411451654 +73,8526,2.5,1427170338 +73,8528,3.0,1255596174 +73,8529,4.0,1304412427 +73,8531,2.0,1456039261 +73,8622,3.5,1255742327 +73,8636,3.5,1348568288 +73,8638,4.5,1398568522 +73,8640,2.5,1456039172 +73,8641,4.5,1304411558 +73,8644,3.0,1255502811 +73,8665,3.0,1256017177 +73,8783,2.5,1256019169 +73,8784,4.0,1381126678 +73,8798,3.0,1255593134 +73,8807,3.0,1255608196 +73,8810,2.0,1255843862 +73,8811,0.5,1255588939 +73,8854,3.5,1441522129 +73,8859,0.5,1255588886 +73,8861,2.5,1255594684 +73,8874,4.0,1348568180 +73,8906,4.0,1464751323 +73,8910,4.0,1448953173 +73,8914,3.0,1296460230 +73,8917,3.5,1255591865 +73,8928,3.5,1475989020 +73,8947,0.5,1255592030 +73,8949,3.5,1304412144 +73,8950,4.5,1404370289 +73,8957,4.0,1255844819 +73,8961,3.0,1255597036 +73,8972,3.0,1256019079 +73,8984,2.5,1255742417 +73,25962,4.0,1255851182 +73,26258,4.5,1398568001 +73,26403,3.5,1359617333 +73,26480,3.0,1406172493 +73,26547,4.5,1347441796 +73,26585,3.5,1456038539 +73,26603,3.5,1469772963 +73,26606,4.0,1432788454 +73,26684,3.5,1437710037 +73,26704,4.0,1317177146 +73,26729,3.0,1255587770 +73,26736,4.0,1427170642 +73,26842,4.0,1427170496 +73,27002,2.5,1255589582 +73,27022,4.5,1359974275 +73,27032,4.0,1427170460 +73,27109,4.5,1423801920 +73,27317,4.5,1369206010 +73,27369,3.5,1255590127 +73,27478,2.5,1255501883 +73,27555,4.0,1319337509 +73,27604,4.0,1474263883 +73,27611,2.0,1256029681 +73,27646,4.5,1295874824 +73,27660,4.5,1282543364 +73,27704,2.5,1337593382 +73,27706,3.0,1255596884 +73,27772,1.0,1456039398 +73,27773,5.0,1350192496 +73,27778,3.5,1431234249 +73,27793,2.0,1255589041 +73,27800,3.5,1255947240 +73,27801,4.0,1427170205 +73,27808,3.0,1427168079 +73,27831,4.0,1319337521 +73,27904,3.5,1262838012 +73,30707,4.5,1422335423 +73,30749,5.0,1255844444 +73,30810,4.0,1381126659 +73,30812,3.5,1457597312 +73,30820,3.5,1469772912 +73,30825,3.0,1255596762 +73,31150,4.0,1406171407 +73,31225,3.5,1255844160 +73,31290,0.5,1354679048 +73,31422,1.0,1255587749 +73,31431,1.0,1255743146 +73,31435,4.5,1295591221 +73,31685,3.0,1255596758 +73,31696,3.0,1255595655 +73,31878,3.5,1337593113 +73,32352,3.0,1289046552 +73,32387,4.0,1469772672 +73,32587,4.5,1255508160 +73,32596,2.5,1255845334 +73,33004,3.0,1255843857 +73,33162,4.0,1301481269 +73,33164,1.0,1255587163 +73,33166,5.0,1259323569 +73,33171,4.0,1273217166 +73,33493,3.0,1255595926 +73,33679,2.0,1256018225 +73,33794,4.0,1345798859 +73,33834,3.0,1255507534 +73,34048,2.5,1255607814 +73,34150,3.0,1369513542 +73,34162,3.0,1257228496 +73,34319,3.0,1255591870 +73,34405,3.5,1255844803 +73,34437,3.5,1309414233 +73,34530,2.0,1255506326 +73,35836,3.0,1255596097 +73,36519,2.5,1255845337 +73,36529,3.5,1255508666 +73,36708,3.5,1255592012 +73,37386,3.0,1255845325 +73,37731,4.5,1289377714 +73,37733,4.0,1331809803 +73,38061,1.5,1256029685 +73,39381,3.5,1457320124 +73,39446,3.5,1256028349 +73,40278,3.5,1369513527 +73,40574,3.0,1255505821 +73,40629,1.5,1256029392 +73,40732,4.0,1348567955 +73,40815,3.5,1312496387 +73,41285,3.5,1411355658 +73,41566,3.0,1417081946 +73,41569,2.5,1257228521 +73,41997,4.0,1255503794 +73,42011,3.0,1255844003 +73,42723,3.0,1256030828 +73,42725,3.5,1454043394 +73,43838,3.5,1304412896 +73,43919,1.0,1255588757 +73,43921,4.0,1337593212 +73,43936,3.0,1256030820 +73,44191,4.0,1284880889 +73,44195,3.5,1255502976 +73,44199,4.0,1315969272 +73,44245,4.0,1304412870 +73,44397,3.0,1309414323 +73,44665,4.0,1302152616 +73,44761,4.5,1288782721 +73,44972,2.0,1256559191 +73,44974,4.0,1288096054 +73,45183,3.0,1427170230 +73,45186,2.5,1257229414 +73,45447,2.5,1454042655 +73,45506,4.0,1261217204 +73,45666,0.5,1255742925 +73,45672,1.0,1255591703 +73,45722,3.5,1255844928 +73,45726,2.5,1255742920 +73,45728,3.0,1255508977 +73,46322,4.0,1355922906 +73,46335,3.0,1369515354 +73,46337,0.5,1255587403 +73,46578,3.5,1255584710 +73,46865,1.0,1255586255 +73,46965,2.5,1454042857 +73,46970,2.5,1362112175 +73,46972,3.5,1411355653 +73,46976,4.0,1418784900 +73,47099,3.5,1255844905 +73,47200,3.5,1255593521 +73,47610,4.0,1303465599 +73,47640,3.0,1255504580 +73,47815,0.5,1255586400 +73,47997,4.0,1256027956 +73,48043,3.5,1296460156 +73,48304,3.5,1255502085 +73,48385,3.5,1255506853 +73,48394,3.5,1466320346 +73,48516,4.0,1345798905 +73,48591,0.5,1255587385 +73,48696,4.0,1369514062 +73,48744,3.5,1457597587 +73,48774,4.5,1354676065 +73,48780,4.5,1268806416 +73,48877,2.5,1256030711 +73,49272,4.0,1354676002 +73,49278,3.0,1422335258 +73,49526,2.5,1255586478 +73,49528,2.5,1259837617 +73,49530,3.5,1255502965 +73,49649,2.5,1257164355 +73,49651,3.0,1256030617 +73,49817,4.0,1306826934 +73,50641,5.0,1441514296 +73,50651,3.0,1286699648 +73,50794,2.5,1256030870 +73,50798,1.0,1255588747 +73,50806,1.0,1255586233 +73,50872,3.0,1255596877 +73,51255,2.5,1255845225 +73,51277,4.5,1337593162 +73,51540,4.0,1441514086 +73,51662,3.0,1255501684 +73,51931,4.0,1337593096 +73,51937,2.5,1309414319 +73,52245,3.0,1454042794 +73,52281,3.5,1255592002 +73,52328,3.5,1441513955 +73,52458,3.0,1256029140 +73,52462,3.5,1255502108 +73,52604,4.5,1315969200 +73,52722,2.0,1348568291 +73,52952,4.0,1255502672 +73,52973,3.0,1257228572 +73,53000,3.5,1255591698 +73,53121,2.0,1255742621 +73,53125,3.0,1255503784 +73,53318,4.5,1304411411 +73,53322,2.0,1256018404 +73,53468,4.0,1274526720 +73,53519,3.5,1384070152 +73,53550,4.0,1311653909 +73,53972,3.0,1257228718 +73,53996,2.5,1256018025 +73,54001,3.5,1312496372 +73,54190,2.0,1256029937 +73,54272,3.0,1256017323 +73,54286,3.0,1255947527 +73,54290,0.5,1255588933 +73,54331,4.0,1270610590 +73,54503,4.0,1260273754 +73,54648,3.0,1255503405 +73,54745,3.5,1323247224 +73,54995,3.5,1255844923 +73,54997,4.0,1285673360 +73,55052,4.0,1312496234 +73,55094,4.0,1312496164 +73,55207,4.0,1457598523 +73,55232,2.5,1256030803 +73,55245,3.0,1369514644 +73,55247,4.0,1264751836 +73,55269,3.5,1281668271 +73,55290,4.0,1302604152 +73,55577,3.0,1255844816 +73,55721,4.5,1259837542 +73,55765,3.5,1255501962 +73,55805,2.5,1256029998 +73,55820,4.5,1255508012 +73,55830,3.5,1255504199 +73,55995,2.0,1423801583 +73,56003,2.5,1286794236 +73,56145,4.0,1464751381 +73,56174,2.5,1255596747 +73,56251,3.5,1255505761 +73,56367,3.5,1255502960 +73,56587,3.0,1457598052 +73,56757,2.5,1255596552 +73,56775,2.5,1473060722 +73,56782,4.0,1255508166 +73,56801,2.0,1256559213 +73,57368,1.5,1255594676 +73,57528,3.5,1255844900 +73,57532,1.0,1255586222 +73,57640,3.0,1255592007 +73,57669,4.0,1255844632 +73,58025,1.5,1255596555 +73,58146,0.5,1255586134 +73,58293,1.0,1255501589 +73,58295,3.0,1454042795 +73,58301,4.0,1471759060 +73,58315,1.0,1255586976 +73,58351,4.0,1259837601 +73,58559,5.0,1345798871 +73,58627,3.5,1427170416 +73,58803,3.0,1255501647 +73,58975,2.5,1435472881 +73,58998,3.5,1454042671 +73,59014,1.0,1255589062 +73,59022,2.5,1454043041 +73,59315,3.0,1255597366 +73,59369,3.0,1255596548 +73,59387,3.5,1255606270 +73,59615,1.5,1255591493 +73,59784,2.5,1257228964 +73,59900,2.0,1454042917 +73,59995,4.5,1255607031 +73,60037,2.0,1255503396 +73,60069,3.0,1255508072 +73,60072,2.5,1255591693 +73,60074,2.0,1255593506 +73,60126,2.0,1255844138 +73,60161,4.0,1255503392 +73,60293,5.0,1259323222 +73,60487,3.5,1437711118 +73,60609,4.0,1259323854 +73,60684,3.0,1255505738 +73,60753,3.0,1288697624 +73,60756,4.0,1304411580 +73,61024,3.5,1457597334 +73,61132,3.5,1255843975 +73,61248,3.0,1369514646 +73,61323,3.5,1457318292 +73,61348,0.5,1255588727 +73,61394,3.5,1255844953 +73,62394,1.0,1256559067 +73,62434,3.5,1430034154 +73,62801,4.0,1384069863 +73,62912,0.5,1255587337 +73,62956,3.5,1255504546 +73,63072,3.5,1266309913 +73,63082,5.0,1255587902 +73,63113,2.0,1256018282 +73,63131,3.0,1255742863 +73,63540,0.5,1255586420 +73,63826,3.0,1337593619 +73,63876,4.0,1259325788 +73,63992,2.0,1454042733 +73,64197,4.0,1441513491 +73,64508,1.0,1255589051 +73,64614,4.5,1296209705 +73,64716,4.0,1312495981 +73,64839,5.0,1267705501 +73,64900,4.0,1435472671 +73,64957,4.5,1255606209 +73,64983,3.5,1418785824 +73,65126,4.0,1262826563 +73,65310,3.0,1406172474 +73,65514,4.5,1329122482 +73,65982,3.5,1460517652 +73,66066,0.5,1255506219 +73,66090,4.0,1432523734 +73,66297,3.5,1255851305 +73,66335,3.5,1255501824 +73,66934,4.0,1441513660 +73,67252,3.5,1427170617 +73,67255,4.0,1334134888 +73,67665,3.0,1255509258 +73,67695,3.0,1273231862 +73,67734,3.5,1423801587 +73,67923,3.5,1369515334 +73,68073,4.0,1272351330 +73,68157,4.0,1259037238 +73,68159,4.0,1315969142 +73,68237,4.0,1256944127 +73,68319,3.0,1454042683 +73,68358,3.5,1255508067 +73,68444,3.0,1257228665 +73,68554,2.5,1454042767 +73,68901,3.5,1289995423 +73,68952,3.5,1348567926 +73,68954,4.0,1284880892 +73,68959,2.5,1255851331 +73,68965,0.5,1261217423 +73,69122,3.5,1255584542 +73,69306,3.0,1260280418 +73,69481,4.0,1262471588 +73,69640,3.5,1256639055 +73,69685,3.0,1476086345 +73,69746,2.5,1255850946 +73,69757,4.5,1275964203 +73,69844,3.5,1312496413 +73,70286,3.5,1255505699 +73,70465,4.0,1319336907 +73,70946,0.5,1257228032 +73,71057,3.0,1263197192 +73,71106,4.0,1312496343 +73,71135,4.5,1406172090 +73,71248,3.5,1264835071 +73,71379,3.5,1268808266 +73,71429,4.5,1457597657 +73,71466,4.0,1280749920 +73,71520,4.0,1262487606 +73,71533,3.0,1262490949 +73,71535,4.0,1257418656 +73,71745,3.5,1369514017 +73,71838,2.0,1260877856 +73,72011,4.0,1262660477 +73,72171,3.5,1441513896 +73,72226,4.0,1311319024 +73,72603,3.0,1437711220 +73,72641,4.0,1279948740 +73,72733,4.5,1279948672 +73,72998,4.0,1261487370 +73,73023,4.0,1331019387 +73,73268,3.0,1270610716 +73,73321,3.0,1279948662 +73,73759,4.0,1273212258 +73,74416,4.5,1270626393 +73,74458,4.5,1369205637 +73,74545,4.0,1284788822 +73,74851,3.5,1432523566 +73,74944,3.5,1279947051 +73,74948,4.0,1288782501 +73,75813,3.5,1471493475 +73,76060,2.0,1288697300 +73,76077,3.5,1277244869 +73,76093,4.0,1287639123 +73,76251,4.5,1274171831 +73,76272,3.5,1279948640 +73,77561,2.5,1286184933 +73,77800,3.5,1293747419 +73,77837,3.5,1293747383 +73,77866,2.5,1454042956 +73,78209,3.0,1286699464 +73,78266,2.5,1295874843 +73,78349,3.5,1289045492 +73,78469,3.0,1369514012 +73,78499,4.5,1290170524 +73,78574,3.5,1288262844 +73,78772,2.0,1454041525 +73,79008,4.5,1280207089 +73,79057,3.5,1337594376 +73,79091,4.0,1334134881 +73,79132,4.0,1354676128 +73,79242,3.5,1296730408 +73,79251,3.5,1470450406 +73,79274,4.0,1281668137 +73,79357,5.0,1286364707 +73,79553,3.5,1334396237 +73,79695,3.5,1337593917 +73,79702,4.0,1290923031 +73,79720,3.5,1476081506 +73,79879,2.5,1457597559 +73,80083,3.5,1304412705 +73,80219,4.0,1288095832 +73,80463,4.5,1295875330 +73,80489,4.0,1293747396 +73,80693,4.0,1303283044 +73,80831,3.0,1320810425 +73,80846,2.5,1457597487 +73,81083,3.5,1437709564 +73,81562,3.5,1300946992 +73,81564,5.0,1303464661 +73,81591,4.0,1294806059 +73,81660,2.5,1406172509 +73,81788,4.0,1331889469 +73,81834,4.0,1312496405 +73,81932,4.0,1301291585 +73,82041,3.5,1471332805 +73,82459,4.0,1411355319 +73,82527,4.0,1311318839 +73,82667,4.5,1374355498 +73,83134,4.0,1323226011 +73,83613,3.0,1411452415 +73,84152,4.0,1311318846 +73,84772,3.0,1315968775 +73,84944,4.0,1311651421 +73,85342,5.0,1308222797 +73,85401,4.5,1431584367 +73,85414,4.5,1315968748 +73,85788,4.0,1348567976 +73,85881,3.5,1317176746 +73,86142,4.0,1384069356 +73,86644,3.5,1369515303 +73,86882,4.5,1330240107 +73,87192,4.5,1348567873 +73,87232,4.0,1316757783 +73,87234,4.0,1319336798 +73,87298,3.5,1457597592 +73,87306,4.0,1320810413 +73,87869,3.5,1319336835 +73,88118,4.0,1317176741 +73,88125,4.5,1312496402 +73,88129,3.5,1345798952 +73,88140,3.5,1357553094 +73,88163,4.0,1320810254 +73,88744,3.5,1324634215 +73,89039,3.5,1325543528 +73,89085,4.5,1323857570 +73,89343,3.5,1431406208 +73,89470,3.0,1329461095 +73,89745,4.5,1337593575 +73,89774,4.5,1324634205 +73,89864,3.0,1329122460 +73,90376,3.5,1345799028 +73,90430,3.5,1325685214 +73,90439,3.5,1329461077 +73,90531,4.0,1430706568 +73,91485,3.5,1348568449 +73,91500,4.0,1337593368 +73,91529,4.0,1345798866 +73,91630,4.0,1326315218 +73,91658,4.0,1334396206 +73,91976,3.0,1457597425 +73,92309,3.0,1329986644 +73,93320,5.0,1448953095 +73,93363,3.0,1411452403 +73,93443,3.5,1345799036 +73,93510,4.0,1334396050 +73,93831,3.5,1348568088 +73,93838,4.5,1339743740 +73,93840,4.0,1348568138 +73,93855,5.0,1347441732 +73,94018,2.5,1352959770 +73,94070,4.0,1350192390 +73,94677,4.0,1352959766 +73,94833,3.5,1351406444 +73,94864,4.0,1339743735 +73,94959,4.0,1351406414 +73,95088,4.0,1357552636 +73,95147,3.5,1437711595 +73,95165,3.0,1398570058 +73,95182,3.0,1398570053 +73,95441,4.0,1355736140 +73,95473,3.5,1437711059 +73,95475,4.5,1398570027 +73,95499,4.5,1398570019 +73,95510,4.0,1345799054 +73,95558,3.5,1358144551 +73,95780,3.5,1437711174 +73,95782,3.5,1398570077 +73,95875,3.5,1348568386 +73,95963,3.5,1398570066 +73,95965,4.5,1398569999 +73,96004,4.0,1398569927 +73,96007,3.5,1437711131 +73,96079,4.5,1354675993 +73,96110,2.5,1359358796 +73,96281,3.0,1348568337 +73,96432,3.5,1441514105 +73,96588,3.5,1454043300 +73,96610,4.0,1354675986 +73,96737,3.5,1369515292 +73,96811,4.0,1374355461 +73,96821,4.5,1374355516 +73,97306,4.0,1374355492 +73,97752,4.5,1357552147 +73,97860,3.5,1357552193 +73,97913,3.5,1369206362 +73,97921,4.0,1369205846 +73,97923,3.5,1374355488 +73,97938,4.5,1357552149 +73,98607,3.5,1437710825 +73,98809,4.5,1355735865 +73,98829,4.0,1427170660 +73,98961,4.0,1364009534 +73,99112,3.5,1357552186 +73,99114,4.5,1369206612 +73,99145,4.0,1362112152 +73,99728,3.5,1370057754 +73,100159,4.0,1437709595 +73,100383,4.0,1369205631 +73,100714,4.5,1437104737 +73,101525,4.0,1409452760 +73,101864,3.5,1411452577 +73,102033,3.5,1378179817 +73,102123,4.0,1454043331 +73,102194,4.0,1395986174 +73,102252,4.5,1427170676 +73,102407,2.5,1454041530 +73,102445,4.0,1369205577 +73,102716,3.5,1374355582 +73,102993,4.0,1437104788 +73,103042,3.0,1409452741 +73,103048,4.0,1437104521 +73,103228,2.5,1457596601 +73,103249,2.5,1454042845 +73,103253,3.0,1406171923 +73,103384,2.0,1457597113 +73,103624,3.0,1437104561 +73,103688,3.5,1418462292 +73,103772,3.0,1427170398 +73,104841,4.5,1395986150 +73,104913,4.5,1395986058 +73,104944,4.5,1398567572 +73,105213,3.5,1457597402 +73,105504,4.0,1395986019 +73,106002,3.5,1411452394 +73,106022,4.0,1411355255 +73,106100,4.5,1398567543 +73,106487,0.5,1390015641 +73,106489,3.5,1404370211 +73,106491,3.0,1427170708 +73,106782,4.5,1395986157 +73,106916,4.5,1395986160 +73,106918,3.5,1404370215 +73,106920,4.0,1418461939 +73,107069,3.5,1406172291 +73,107348,3.5,1457597419 +73,107406,4.0,1454043018 +73,107953,3.5,1427170706 +73,107999,3.5,1398570071 +73,108090,3.5,1437711587 +73,108190,3.5,1411452354 +73,108583,5.0,1435472609 +73,108932,4.0,1410578415 +73,108981,3.5,1437104540 +73,109074,4.0,1427170717 +73,109374,4.5,1417081790 +73,109487,4.5,1422335272 +73,109850,3.0,1411452818 +73,109895,3.5,1409452259 +73,110127,2.0,1411452812 +73,110348,4.0,1432523533 +73,110501,4.5,1404370180 +73,110882,3.0,1409452254 +73,111360,3.0,1457597194 +73,111362,4.0,1411355333 +73,111364,2.5,1454043389 +73,111624,3.5,1423801674 +73,111659,2.5,1454043328 +73,111759,4.0,1411355268 +73,111781,3.5,1454043334 +73,111921,4.0,1454043365 +73,112183,4.5,1427168087 +73,112290,2.5,1423801598 +73,112515,3.5,1422335674 +73,112552,4.5,1427168057 +73,112556,4.0,1422335277 +73,112623,3.0,1454042867 +73,112818,3.0,1457597515 +73,112852,5.0,1409205899 +73,113252,4.0,1418462083 +73,113348,2.5,1427170549 +73,113573,3.0,1457597407 +73,114060,4.0,1437104690 +73,114180,3.5,1418462052 +73,114662,4.0,1431406217 +73,114670,3.0,1457597605 +73,114935,4.5,1417081980 +73,115122,5.0,1448953211 +73,115149,3.5,1423801646 +73,115216,4.0,1417593332 +73,115569,4.5,1423801600 +73,115713,4.0,1432523152 +73,115877,3.5,1437711208 +73,115881,3.0,1437711165 +73,116397,3.5,1418462066 +73,116797,4.0,1432788703 +73,116823,0.5,1454042838 +73,117123,3.0,1457597665 +73,117176,4.0,1457597352 +73,117529,3.0,1454042923 +73,118082,3.5,1431232449 +73,118696,3.0,1454042873 +73,119145,3.5,1454042779 +73,120466,3.5,1431233322 +73,121231,3.5,1431233272 +73,122882,5.0,1435472640 +73,122886,4.5,1454041548 +73,122890,4.0,1466320057 +73,122900,3.0,1466320222 +73,122904,4.5,1456038880 +73,122924,3.5,1474255427 +73,126006,3.5,1437711226 +73,127198,3.5,1457597882 +73,128360,4.5,1460517538 +73,130642,3.5,1437709660 +73,130682,3.5,1432523179 +73,133771,3.5,1466320172 +73,134130,4.5,1448953050 +73,135887,3.0,1466320258 +73,137857,3.5,1470720695 +73,139130,4.0,1437711245 +73,139385,4.0,1460517533 +73,139644,3.5,1457597863 +73,140267,3.0,1456038901 +73,140715,4.0,1456038576 +73,141718,3.5,1471332767 +73,141866,4.0,1469772876 +73,146656,4.0,1456038516 +73,148626,3.5,1457332236 +73,152077,3.5,1466320302 +73,152091,3.0,1466320393 +73,152844,4.0,1476080611 +73,156726,3.5,1460517484 +73,158238,4.0,1470719796 +73,159462,3.0,1469772608 +73,159858,3.5,1473060620 +73,161594,3.0,1474255459 +73,162376,4.5,1474255532 +74,10,5.0,942704394 +74,16,3.0,942705457 +74,17,4.0,942705568 +74,104,4.0,942703730 +74,110,5.0,942705318 +74,153,4.0,942703172 +74,260,5.0,942705457 +74,356,4.0,942705608 +74,527,5.0,942705304 +74,592,5.0,942703172 +74,612,1.0,942703569 +74,912,5.0,942705568 +74,1059,4.0,942703337 +74,1080,3.0,942703678 +74,1097,3.0,942705648 +74,1136,5.0,942703678 +74,1196,5.0,942705496 +74,1210,5.0,942705496 +74,1272,5.0,942705381 +74,1302,4.0,942705413 +74,1377,4.0,942703172 +74,1562,4.0,942703172 +74,1584,5.0,942705533 +74,1704,4.0,942705382 +74,1721,2.0,942705232 +74,1722,5.0,942704332 +74,1876,3.0,942704723 +74,1917,4.0,942702876 +74,1918,5.0,942703038 +74,1954,3.0,942705496 +74,1961,4.0,942705608 +74,2000,4.0,942703038 +74,2002,4.0,942703038 +74,2028,5.0,942703474 +74,2106,5.0,942705708 +74,2167,4.0,942704005 +74,2188,3.0,942704863 +74,2333,4.0,942704616 +74,2396,5.0,942703337 +74,2490,5.0,942705899 +74,2541,4.0,942704668 +74,2549,3.0,942704192 +74,2571,5.0,942705678 +74,2572,4.0,942705303 +74,2628,4.0,942703093 +74,2640,3.0,942705648 +74,2700,4.0,942702937 +74,2710,4.0,942702971 +74,2762,4.0,942703538 +75,1,3.0,1165607201 +75,3,3.0,1143047700 +75,32,4.0,1165607192 +75,161,4.0,1143049641 +75,253,4.5,1143048074 +75,260,4.5,1143049571 +75,316,2.0,1165607377 +75,318,4.0,1165597501 +75,350,3.0,1143047643 +75,353,4.5,1143048140 +75,356,4.0,1143048117 +75,368,2.0,1143047471 +75,377,4.0,1143049541 +75,379,0.5,1165607346 +75,442,2.0,1143047458 +75,480,3.0,1143047880 +75,509,0.5,1143047478 +75,520,3.0,1165596956 +75,527,4.0,1143048687 +75,541,4.0,1143048797 +75,589,4.0,1165607264 +75,592,1.0,1143047916 +75,708,4.0,1143047668 +75,786,1.0,1143047463 +75,800,3.0,1143048961 +75,858,1.0,1143048947 +75,880,1.0,1165596837 +75,899,3.0,1143048856 +75,904,4.0,1143049098 +75,908,4.5,1143049193 +75,923,4.5,1143049074 +75,933,4.0,1165607749 +75,953,4.0,1143048735 +75,955,4.0,1165607773 +75,1080,0.5,1143047705 +75,1127,3.0,1143047928 +75,1196,4.0,1143048680 +75,1197,3.5,1165607559 +75,1198,4.0,1165607472 +75,1201,3.5,1143048840 +75,1207,3.5,1143048887 +75,1208,0.5,1143048986 +75,1214,4.0,1143048691 +75,1219,4.0,1165596756 +75,1221,0.5,1143048977 +75,1225,1.0,1143047503 +75,1234,3.0,1143048836 +75,1240,3.0,1165607261 +75,1253,4.0,1165607757 +75,1258,4.5,1143047710 +75,1259,4.0,1165607737 +75,1265,3.5,1165607211 +75,1270,4.0,1165607206 +75,1272,4.0,1143048849 +75,1278,4.0,1165596933 +75,1288,4.0,1143048844 +75,1291,4.5,1165607763 +75,1297,3.0,1143048004 +75,1356,2.0,1143048064 +75,1358,0.5,1165607144 +75,1376,0.5,1143048164 +75,1441,3.5,1143048156 +75,1517,3.0,1143047444 +75,1580,2.5,1143049592 +75,1584,4.0,1143047448 +75,1672,4.0,1143048056 +75,1721,3.0,1165607364 +75,1917,0.5,1143047624 +75,1967,3.0,1143048523 +75,1994,3.0,1143047921 +75,2003,3.0,1143048053 +75,2005,3.5,1143048090 +75,2011,4.5,1143047874 +75,2012,3.5,1143047679 +75,2115,3.0,1143047997 +75,2134,3.0,1143048070 +75,2161,4.5,1143048175 +75,2167,2.5,1165607133 +75,2174,3.5,1143047685 +75,2176,4.0,1165607636 +75,2231,3.5,1143048532 +75,2300,4.0,1165596884 +75,2302,4.0,1143047960 +75,2311,2.5,1143048305 +75,2355,2.0,1143047636 +75,2371,3.0,1143048520 +75,2423,4.5,1143048106 +75,2424,2.5,1143049630 +75,2455,4.5,1143048615 +75,2502,4.0,1143049615 +75,2571,5.0,1165607547 +75,2600,3.0,1165607066 +75,2692,5.0,1143048712 +75,2707,1.5,1143048602 +75,2710,0.5,1143047691 +75,2797,2.0,1143047689 +75,2841,4.5,1165596737 +75,2916,3.5,1143048020 +75,2959,3.5,1143048746 +75,2991,3.0,1143048172 +75,3007,4.0,1165607415 +75,3020,3.0,1143048565 +75,3033,4.0,1143048267 +75,3087,3.5,1143047896 +75,3147,2.0,1143049546 +75,3252,3.5,1143048546 +75,3408,4.0,1143049565 +75,3510,0.5,1165607272 +75,3671,4.0,1165596914 +75,3793,3.0,1143047490 +75,3948,3.5,1143047941 +75,3959,4.0,1165607230 +75,4223,3.0,1143048203 +75,4226,4.5,1143048829 +75,4306,3.5,1143049532 +75,4571,2.5,1165607291 +75,4799,4.0,1143048182 +75,4878,4.0,1143048879 +75,4973,4.0,1143048866 +75,4975,4.5,1143048659 +75,4980,2.5,1165607318 +75,4993,4.5,1143048707 +75,5054,3.5,1143048060 +75,5171,2.0,1165607360 +75,5445,4.0,1143049523 +75,5782,4.0,1143048930 +75,5952,4.5,1143048725 +75,6323,3.5,1143048192 +75,6537,3.0,1165607372 +75,6820,4.0,1165607099 +75,7153,5.0,1143048765 +75,7254,4.0,1143048629 +75,7361,4.5,1143048967 +75,7743,3.0,1143047861 +75,8581,4.0,1143048671 +75,8638,4.0,1143049061 +75,8957,4.5,1143048646 +75,8985,3.0,1165607136 +75,27788,3.0,1165607299 +75,33166,4.5,1143048773 +75,33794,4.5,1143048683 +75,34319,4.0,1165596823 +75,39446,4.0,1165607919 +75,42002,4.0,1165596874 +75,44397,0.5,1165607897 +76,45,5.0,1194384499 +76,303,3.0,1194384318 +76,531,3.0,1194384313 +76,915,4.0,1194384411 +76,954,4.0,1194384386 +76,1096,4.5,1194384460 +76,1185,3.5,1194384373 +76,1269,3.5,1194384328 +76,1449,4.0,1194384361 +76,2020,4.5,1194384299 +76,2087,3.5,1194384353 +76,2336,4.0,1194384281 +76,2948,4.0,1194384341 +76,3671,3.5,1194384277 +76,3911,4.0,1194384275 +76,3988,2.0,1194384399 +76,4321,4.5,1194384338 +76,44694,4.5,1194384512 +76,49530,3.5,1194384470 +76,54259,3.5,1194384451 +77,1,4.0,1163005363 +77,6,3.5,1163252774 +77,10,3.0,1183844529 +77,32,4.0,1163013349 +77,34,3.5,1163253023 +77,39,2.5,1163253088 +77,47,4.0,1163008777 +77,62,3.5,1163252918 +77,70,3.5,1163004464 +77,76,3.5,1163219726 +77,95,1.5,1163253105 +77,110,3.5,1163013335 +77,111,4.0,1183920234 +77,141,3.0,1163253085 +77,161,2.0,1183844506 +77,163,3.0,1163286142 +77,165,2.5,1163082488 +77,173,2.5,1163219428 +77,185,2.0,1163253082 +77,208,3.0,1163253079 +77,223,4.5,1163004353 +77,231,1.0,1163125859 +77,253,2.5,1163259531 +77,260,4.0,1163006051 +77,288,3.5,1163253117 +77,292,2.5,1163252922 +77,293,4.0,1163012798 +77,296,3.5,1163012801 +77,316,4.0,1163082508 +77,318,4.0,1163006037 +77,329,2.0,1163253047 +77,339,2.5,1163253104 +77,344,3.0,1163082485 +77,349,3.5,1163082500 +77,353,4.0,1163219321 +77,356,3.5,1163006023 +77,364,3.0,1163125780 +77,367,3.5,1163219373 +77,377,2.5,1163013353 +77,380,2.5,1163013344 +77,413,1.5,1163286164 +77,442,3.0,1163277657 +77,457,2.5,1163013330 +77,480,3.0,1163006020 +77,500,3.0,1183920204 +77,541,2.0,1163013198 +77,551,4.5,1163005103 +77,586,1.5,1183920099 +77,587,2.5,1163252886 +77,588,3.5,1163082479 +77,589,4.0,1163013341 +77,590,3.0,1163013339 +77,592,3.5,1163006012 +77,593,3.0,1163013328 +77,595,3.5,1163253015 +77,597,2.5,1163253037 +77,608,2.0,1183844492 +77,648,2.5,1163013368 +77,720,3.0,1183512581 +77,733,3.0,1163253027 +77,736,2.0,1163253163 +77,741,4.0,1163079173 +77,745,3.0,1183512477 +77,750,4.5,1163004390 +77,780,3.5,1163005369 +77,839,3.0,1163219390 +77,849,2.5,1163277702 +77,919,4.5,1163004359 +77,924,3.5,1183920326 +77,1036,3.0,1163253110 +77,1073,4.0,1163079436 +77,1079,3.5,1163252515 +77,1080,4.0,1163004406 +77,1097,3.0,1163253049 +77,1129,4.0,1163277603 +77,1136,4.5,1163012788 +77,1148,3.0,1183512491 +77,1196,4.5,1163013360 +77,1197,4.5,1163125789 +77,1198,4.0,1163082497 +77,1199,4.0,1163219937 +77,1200,4.0,1163252283 +77,1206,4.0,1163008790 +77,1208,3.5,1183920321 +77,1210,4.0,1163006027 +77,1214,3.5,1163253113 +77,1215,4.5,1163005217 +77,1217,3.5,1163013055 +77,1220,4.5,1163004386 +77,1222,3.5,1163012783 +77,1223,3.0,1183512498 +77,1240,4.5,1163125801 +77,1258,3.0,1163252277 +77,1262,4.5,1163915651 +77,1265,4.0,1163082678 +77,1270,3.5,1163006001 +77,1274,3.5,1163219327 +77,1278,3.5,1163079424 +77,1282,4.5,1163004479 +77,1291,4.0,1163079277 +77,1321,4.0,1163005225 +77,1380,3.0,1163252892 +77,1387,3.5,1183920197 +77,1393,2.0,1183920089 +77,1517,4.0,1163125883 +77,1527,4.0,1163125876 +77,1552,3.5,1163286102 +77,1580,3.5,1163253071 +77,1584,1.5,1183920103 +77,1591,2.5,1163219409 +77,1610,4.0,1163082518 +77,1653,3.5,1163277597 +77,1676,4.0,1183920299 +77,1682,3.5,1163915779 +77,1704,3.0,1183844513 +77,1721,2.0,1163252930 +77,1732,3.5,1163079388 +77,1772,2.5,1163269736 +77,1779,2.5,1163219656 +77,1784,2.5,1183844547 +77,1917,2.0,1163286171 +77,1923,2.0,1163252812 +77,1961,2.5,1163253127 +77,1967,4.5,1166027866 +77,1968,3.0,1183920347 +77,2000,3.5,1183920251 +77,2001,3.5,1183920333 +77,2005,4.0,1163082649 +77,2011,4.0,1183844575 +77,2012,3.5,1163286265 +77,2021,3.5,1163004544 +77,2054,2.5,1163915788 +77,2081,3.5,1183920345 +77,2105,4.0,1163277609 +77,2115,4.0,1163915709 +77,2139,4.0,1166027980 +77,2140,4.5,1166027880 +77,2167,4.0,1163219362 +77,2174,4.0,1163005101 +77,2275,4.5,1163259483 +77,2291,3.5,1163005107 +77,2321,4.0,1163738014 +77,2355,3.5,1183844537 +77,2395,2.0,1163252612 +77,2450,3.5,1163219423 +77,2502,4.5,1163005196 +77,2528,3.5,1163277646 +77,2529,3.5,1163277601 +77,2541,3.5,1163738035 +77,2542,4.5,1163004608 +77,2571,4.0,1163079154 +77,2599,2.5,1163738031 +77,2600,4.0,1184948966 +77,2628,1.5,1163006017 +77,2640,3.5,1163219366 +77,2641,3.0,1163219414 +77,2671,2.5,1163252918 +77,2683,4.0,1183920219 +77,2700,4.0,1183844561 +77,2706,3.5,1163125798 +77,2709,3.0,1166027951 +77,2710,1.0,1183844524 +77,2716,4.0,1163253120 +77,2762,4.0,1163253062 +77,2788,4.0,1163219953 +77,2797,3.5,1163125886 +77,2808,2.0,1163259854 +77,2858,3.0,1163013177 +77,2916,3.5,1163125878 +77,2918,4.5,1183844565 +77,2959,4.0,1163005335 +77,2968,4.0,1163004536 +77,2985,3.5,1163277606 +77,2986,2.5,1163277704 +77,2987,3.5,1183920193 +77,3000,4.0,1163005456 +77,3033,4.0,1163004499 +77,3052,4.5,1183920214 +77,3070,4.5,1163005080 +77,3081,3.0,1163259912 +77,3114,3.5,1163082621 +77,3147,4.0,1163286260 +77,3148,2.5,1163738069 +77,3175,3.5,1183920264 +77,3196,4.0,1163252250 +77,3204,4.0,1163219938 +77,3264,3.0,1163259527 +77,3275,4.5,1163265784 +77,3396,4.0,1166027886 +77,3397,3.5,1166027891 +77,3398,3.0,1166027895 +77,3408,1.5,1183844498 +77,3418,0.5,1183920246 +77,3421,4.5,1163005031 +77,3429,3.0,1183512502 +77,3438,2.5,1163219416 +77,3439,1.5,1163260803 +77,3471,4.0,1183920231 +77,3527,4.0,1183920227 +77,3578,3.0,1163006008 +77,3623,1.5,1163915774 +77,3671,4.0,1163079471 +77,3702,4.0,1163265859 +77,3703,4.0,1163265861 +77,3704,3.5,1163265862 +77,3751,3.5,1163220288 +77,3753,3.5,1183920122 +77,3793,4.0,1163004371 +77,3882,3.0,1163252840 +77,3897,3.0,1163252803 +77,3977,3.0,1163125809 +77,3994,4.5,1183920274 +77,3996,0.5,1163004354 +77,4011,4.5,1163004631 +77,4027,2.5,1183920127 +77,4040,1.0,1163346129 +77,4092,2.5,1163277700 +77,4246,2.0,1183920136 +77,4270,3.0,1166027898 +77,4306,3.5,1163125847 +77,4446,3.5,1163286177 +77,4447,3.5,1163252909 +77,4467,4.0,1163219953 +77,4499,4.5,1163633273 +77,4533,3.5,1163005241 +77,4886,4.0,1163082640 +77,4896,3.0,1163125785 +77,4963,3.0,1183920097 +77,4979,2.0,1183844539 +77,4993,3.0,1183844467 +77,5171,2.0,1163005117 +77,5218,4.0,1183920341 +77,5254,3.5,1163219308 +77,5349,4.0,1163125813 +77,5378,1.0,1163386523 +77,5445,3.0,1163006045 +77,5502,0.5,1183920259 +77,5522,4.0,1163277663 +77,5618,4.0,1163005522 +77,5650,3.5,1163004657 +77,5669,0.5,1183511678 +77,5782,4.0,1183512622 +77,5816,3.0,1163125818 +77,5903,4.0,1163277586 +77,6093,3.5,1166027993 +77,6157,3.0,1163219386 +77,6281,3.0,1163219717 +77,6303,3.5,1163219638 +77,6305,3.0,1163277592 +77,6316,3.0,1163005385 +77,6333,4.0,1163219317 +77,6350,4.0,1163005491 +77,6365,3.0,1183844543 +77,6377,0.5,1163004453 +77,6537,3.5,1183920262 +77,6539,4.0,1163082645 +77,6541,4.0,1163219402 +77,6645,3.0,1163277654 +77,6662,3.0,1163346143 +77,6755,4.5,1163259669 +77,6807,4.0,1163079326 +77,6811,4.0,1163286010 +77,6874,3.5,1163004488 +77,6934,2.5,1183844503 +77,7099,4.5,1163005487 +77,7143,2.0,1163004783 +77,7147,4.0,1163005091 +77,7163,3.5,1163219723 +77,7236,4.0,1163277648 +77,7360,4.0,1163005229 +77,7373,4.0,1163219298 +77,7387,4.5,1163259811 +77,7438,3.5,1163004517 +77,7649,4.5,1166028040 +77,7708,2.5,1183511703 +77,7810,4.0,1166028045 +77,7811,4.0,1166028040 +77,7812,4.0,1166028010 +77,7841,4.0,1163346052 +77,7842,4.0,1163346050 +77,8157,4.0,1163012825 +77,8368,3.0,1183844570 +77,8537,4.0,1163260633 +77,8622,0.5,1183511682 +77,8636,4.0,1163219319 +77,8644,2.0,1183920174 +77,8665,4.0,1183844557 +77,8874,4.5,1163259824 +77,8958,3.5,1163252803 +77,8961,4.0,1163125836 +77,26492,3.5,1183511991 +77,26700,2.0,1183511757 +77,27685,1.0,1163219241 +77,27831,4.0,1163004633 +77,31150,3.5,1183511779 +77,31221,2.5,1163219395 +77,31658,4.0,1163005497 +77,31878,3.5,1163013078 +77,32587,4.5,1163006062 +77,33493,3.0,1163386501 +77,33794,4.0,1163013182 +77,34319,2.0,1163286160 +77,34405,4.5,1163008703 +77,36708,3.5,1163079317 +77,37729,4.0,1163259890 +77,37857,4.0,1163219907 +77,38038,3.5,1163220283 +77,40732,2.5,1163005991 +77,40819,4.0,1163737974 +77,44191,4.5,1163006072 +77,45499,3.5,1163125866 +77,45722,4.0,1183511846 +77,47423,0.5,1163005434 +77,47518,4.0,1163286001 +77,53894,0.5,1183511648 +78,2,3.5,1274051069 +78,10,5.0,1274050854 +78,16,5.0,1344470037 +78,32,5.0,1274050782 +78,34,3.5,1344469842 +78,39,5.0,1274050940 +78,47,4.0,1344469790 +78,50,5.0,1274051508 +78,110,1.5,1274050758 +78,111,3.5,1274050991 +78,141,4.0,1274050945 +78,150,3.5,1327289203 +78,172,5.0,1274046007 +78,185,4.5,1274050942 +78,193,5.0,1344470407 +78,223,4.5,1274051011 +78,253,5.0,1274050895 +78,260,5.0,1274050755 +78,296,4.5,1274050741 +78,316,4.0,1274050827 +78,318,5.0,1274050752 +78,329,5.0,1274050869 +78,345,4.5,1327288678 +78,349,4.5,1274051738 +78,356,5.0,1274050745 +78,364,3.5,1274050816 +78,377,4.5,1274050797 +78,480,3.5,1274050750 +78,500,4.0,1274050831 +78,508,4.0,1328636541 +78,540,4.0,1344470455 +78,588,3.5,1274050785 +78,589,5.0,1274050763 +78,593,4.5,1274050748 +78,648,5.0,1274050801 +78,736,4.5,1274050821 +78,778,4.5,1274051080 +78,780,4.0,1274050766 +78,788,3.5,1327289197 +78,858,4.5,1327288505 +78,919,3.5,1274051063 +78,924,2.0,1274051008 +78,1059,4.5,1274046035 +78,1089,1.0,1274050989 +78,1094,4.0,1345676388 +78,1097,3.5,1274050843 +78,1136,3.0,1274050885 +78,1196,4.0,1274050792 +78,1200,4.5,1274050964 +78,1206,2.5,1327288495 +78,1208,5.0,1274051079 +78,1210,4.0,1274050770 +78,1213,4.5,1274050993 +78,1214,3.5,1274050904 +78,1222,5.0,1327062981 +78,1240,4.0,1274050852 +78,1265,2.0,1274050876 +78,1270,4.5,1274050805 +78,1293,5.0,1344470536 +78,1320,3.5,1345676342 +78,1345,4.0,1327288652 +78,1356,5.0,1274051262 +78,1371,4.0,1344470332 +78,1374,4.0,1344470035 +78,1375,5.0,1327289353 +78,1376,3.0,1274045997 +78,1407,4.5,1344469958 +78,1513,4.0,1274046052 +78,1517,3.0,1274051802 +78,1527,4.0,1274050950 +78,1552,4.0,1344470497 +78,1580,2.5,1344469730 +78,1584,5.0,1274051255 +78,1586,3.5,1274046079 +78,1610,5.0,1274051089 +78,1625,5.0,1344469988 +78,1644,4.5,1327288610 +78,1676,5.0,1344469919 +78,1680,5.0,1356219742 +78,1682,3.5,1274051084 +78,1690,4.0,1344470446 +78,1704,5.0,1274050948 +78,1717,5.0,1327289341 +78,1721,4.0,1274050845 +78,1722,4.5,1344470107 +78,1732,5.0,1344469830 +78,1747,4.0,1274046023 +78,1805,5.0,1274046061 +78,1876,5.0,1327288604 +78,1917,4.5,1274051067 +78,1923,1.5,1274050974 +78,1968,5.0,1274051253 +78,1997,4.0,1344470116 +78,2011,4.5,1344469836 +78,2012,4.0,1274051275 +78,2028,2.5,1274050826 +78,2107,3.0,1344470388 +78,2174,4.0,1344469948 +78,2231,4.5,1344470322 +78,2297,4.0,1274046142 +78,2329,5.0,1274052026 +78,2334,5.0,1328046149 +78,2336,5.0,1274046041 +78,2353,5.0,1328046208 +78,2393,4.0,1344470328 +78,2394,4.0,1274046086 +78,2541,5.0,1327288596 +78,2542,4.5,1274051581 +78,2571,5.0,1274050787 +78,2617,5.0,1327289320 +78,2628,5.0,1274050865 +78,2657,2.0,1274046002 +78,2683,3.5,1274050967 +78,2700,5.0,1344469934 +78,2706,5.0,1274051060 +78,2710,5.0,1274051281 +78,2858,4.5,1274050793 +78,2908,5.0,1327288635 +78,2916,4.0,1274051279 +78,2947,5.0,1345676411 +78,2959,5.0,1274050848 +78,2987,4.0,1344469750 +78,2995,2.5,1274046172 +78,3052,4.0,1344469913 +78,3077,5.0,1344470523 +78,3082,4.5,1344470341 +78,3147,4.5,1274051797 +78,3256,4.0,1344470469 +78,3273,5.0,1327288628 +78,3298,4.0,1274051897 +78,3386,5.0,1327289236 +78,3418,5.0,1327288622 +78,3504,3.5,1274046121 +78,3556,3.0,1344470577 +78,3578,5.0,1274050886 +78,3617,4.5,1344470313 +78,3623,5.0,1327288585 +78,3753,5.0,1344469943 +78,3755,3.0,1327289233 +78,3785,5.0,1327289228 +78,3793,4.0,1274050970 +78,3897,4.0,1274051784 +78,3908,4.5,1344530161 +78,3949,5.0,1327063029 +78,3967,3.5,1344472522 +78,3977,3.5,1344469805 +78,3979,4.0,1344471126 +78,3986,4.0,1333307515 +78,3994,3.5,1327288577 +78,3996,4.5,1274050983 +78,4007,5.0,1344470392 +78,4011,5.0,1274051829 +78,4015,3.5,1344470351 +78,4018,3.5,1344470343 +78,4022,3.5,1327288572 +78,4025,5.0,1327288563 +78,4128,5.0,1274051637 +78,4226,5.0,1274050984 +78,4239,5.0,1327288556 +78,4270,5.0,1327288550 +78,4306,1.5,1274050890 +78,4308,4.5,1344469968 +78,4367,5.0,1344470491 +78,4369,4.5,1344470449 +78,4370,4.5,1344470026 +78,4388,5.0,1344470349 +78,4446,4.5,1274046093 +78,4641,5.0,1356229145 +78,4643,5.0,1327288541 +78,4718,4.5,1344470443 +78,4744,3.5,1344530365 +78,4878,4.0,1274051518 +78,4896,2.5,1274051757 +78,4973,5.0,1327063019 +78,4974,5.0,1333307847 +78,4993,4.5,1274050863 +78,4995,4.5,1274051748 +78,5010,4.0,1344470040 +78,5219,4.5,1344470309 +78,5378,5.0,1274051759 +78,5418,5.0,1274051563 +78,5445,4.5,1274051086 +78,5463,3.5,1344530435 +78,5502,4.5,1344470149 +78,5669,5.0,1344469825 +78,5693,4.0,1274046191 +78,5784,2.5,1344530420 +78,5872,5.0,1344530381 +78,5952,5.0,1274050908 +78,5989,4.5,1274051712 +78,5992,4.0,1328636458 +78,6016,5.0,1327062972 +78,6058,4.5,1333307553 +78,6365,5.0,1274051783 +78,6377,3.0,1274051715 +78,6502,5.0,1327288534 +78,6537,3.5,1327288529 +78,6539,3.0,1274051268 +78,6552,4.0,1346672082 +78,6564,4.5,1344470357 +78,6793,4.0,1344518331 +78,6796,4.0,1274052032 +78,6874,4.0,1274051752 +78,6888,5.0,1327288739 +78,6934,5.0,1274051798 +78,6979,5.0,1274051633 +78,7153,5.0,1274050980 +78,7254,4.0,1344470121 +78,7323,4.0,1344470372 +78,7438,4.0,1274051794 +78,7458,5.0,1344470476 +78,7566,5.0,1344470545 +78,8361,4.5,1327288726 +78,8368,3.5,1274051780 +78,8464,3.5,1327288523 +78,8533,5.0,1344518494 +78,8622,5.0,1327289219 +78,8644,5.0,1344469996 +78,8665,5.0,1274051848 +78,8861,5.0,1327288720 +78,8874,4.0,1344469894 +78,8947,3.5,1344530363 +78,8972,3.5,1344530371 +78,26614,5.0,1327063041 +78,26712,5.0,1344518298 +78,27831,4.5,1327288715 +78,33166,5.0,1328651648 +78,33493,5.0,1274051716 +78,33794,4.0,1327063058 +78,34048,2.0,1345676370 +78,36529,5.0,1327288988 +78,38499,5.0,1328636442 +78,39183,5.0,1328636566 +78,40815,3.5,1274051816 +78,43679,4.5,1344470539 +78,44191,3.5,1274051721 +78,44555,4.5,1327063006 +78,46335,4.5,1363462225 +78,46723,5.0,1344470740 +78,48774,4.0,1327289209 +78,49272,3.5,1344469724 +78,50658,5.0,1344518302 +78,50740,5.0,1344518809 +78,50742,5.0,1344518317 +78,51662,5.0,1274051823 +78,51935,5.0,1328046198 +78,52767,5.0,1344518294 +78,52952,5.0,1344470834 +78,54001,4.0,1344470126 +78,54272,4.5,1344470065 +78,54286,5.0,1274051523 +78,56174,4.5,1327288700 +78,58559,5.0,1274051773 +78,65130,5.0,1327063126 +78,68358,4.0,1344469772 +78,69757,4.0,1344529892 +78,70678,4.5,1358634080 +78,72998,5.0,1274051746 +78,79132,4.5,1327062958 +78,81834,4.5,1344470051 +78,88125,4.5,1344469820 +78,88129,4.0,1344470072 +78,97673,4.5,1352920811 +79,1,2.0,1182994648 +79,2,2.5,1182994926 +79,7,0.5,1182995062 +79,150,2.5,1182994636 +79,260,3.0,1182994622 +79,344,2.0,1182994728 +79,356,4.0,1182994610 +79,367,2.5,1182994765 +79,468,0.5,1182555848 +79,480,3.0,1182994616 +79,519,2.0,1182556000 +79,587,2.5,1182994781 +79,588,2.5,1182994717 +79,592,2.5,1182994627 +79,648,2.5,1182994732 +79,736,3.0,1182994756 +79,778,3.0,1182994965 +79,780,2.5,1182994653 +79,924,2.0,1182994899 +79,1097,3.0,1182994775 +79,1101,2.5,1182994952 +79,1196,3.0,1182994723 +79,1210,3.0,1182994711 +79,1291,2.5,1182994818 +79,1517,0.5,1182994912 +79,1580,3.0,1182994786 +79,1721,2.5,1182994791 +79,1917,2.5,1182994945 +79,2013,2.5,1182555959 +79,2150,0.5,1182555847 +79,2422,2.0,1182556054 +79,2571,3.0,1182994750 +79,2628,3.0,1182994807 +79,2640,2.5,1182995057 +79,2641,2.5,1182555876 +79,2683,0.5,1182994878 +79,2918,3.5,1182994972 +79,3478,3.0,1182556148 +79,3578,3.0,1182994834 +79,3697,2.0,1182555991 +79,3702,2.5,1182555869 +79,3793,3.0,1182994903 +79,3864,2.5,1182556240 +79,4306,3.0,1182994861 +79,4886,3.0,1182995029 +79,4993,3.0,1182994849 +79,5349,3.0,1182995072 +79,5952,3.0,1182994884 +79,6539,2.5,1182995104 +79,7153,3.0,1182995012 +79,32031,3.5,1182556308 +79,39292,3.0,1182556130 +79,42738,2.5,1182556378 +79,45081,2.0,1182556482 +79,49530,3.5,1182556320 +80,2,2.0,844860022 +80,6,4.0,844860041 +80,7,4.0,844860107 +80,10,3.0,844860003 +80,16,5.0,844860062 +80,20,1.0,844860151 +80,21,4.0,844860003 +80,25,4.0,844860041 +80,32,5.0,844860003 +80,45,4.0,844860062 +80,46,3.0,844860173 +80,50,3.0,844860003 +80,73,5.0,844860517 +80,89,3.0,844860250 +80,93,1.0,844860173 +80,95,2.0,844860022 +80,100,2.0,844860266 +80,105,3.0,844860062 +80,112,4.0,844860085 +80,141,3.0,844860022 +80,156,5.0,844861440 +80,191,2.0,844860215 +80,608,5.0,844860062 +80,610,3.0,844860085 +80,616,4.0,844860085 +80,661,4.0,844860198 +80,671,4.0,844860496 +80,745,5.0,844861413 +80,762,2.0,844860250 +80,778,5.0,844860215 +80,780,4.0,844860041 +80,783,5.0,844860173 +80,800,5.0,844861413 +80,802,3.0,844860198 +80,805,4.0,844860266 +80,1084,4.0,844861019 +80,1104,4.0,844861019 +81,111,4.0,1307172367 +81,154,4.0,1307169402 +81,190,3.0,1307179969 +81,306,4.0,1307174799 +81,308,3.5,1307172938 +81,318,3.0,1307171149 +81,495,3.5,1307173087 +81,509,3.0,1307173089 +81,549,4.5,1307172985 +81,668,5.0,1307174641 +81,750,4.0,1307171452 +81,872,5.0,1307172386 +81,899,3.5,1307169236 +81,903,4.0,1307172383 +81,904,4.0,1307172343 +81,910,5.0,1307178610 +81,922,5.0,1307180667 +81,924,4.0,1307171594 +81,1132,3.0,1307178475 +81,1136,3.5,1307178724 +81,1173,4.5,1307173047 +81,1176,4.0,1307174899 +81,1199,4.5,1307180625 +81,1201,3.5,1307175182 +81,1206,4.0,1307172416 +81,1213,3.0,1307178374 +81,1219,4.0,1307172330 +81,1222,4.0,1307178462 +81,1230,4.0,1307172514 +81,1232,4.5,1307172080 +81,1251,4.5,1307169415 +81,1258,4.0,1307178606 +81,1295,3.5,1307172085 +81,1298,4.0,1307180587 +81,1339,1.5,1307169246 +81,1719,4.5,1307172493 +81,1913,3.0,1307178387 +81,1921,4.0,1307180647 +81,2010,5.0,1307174910 +81,2068,5.0,1307171800 +81,2131,4.0,1307171603 +81,2424,2.0,1307169218 +81,2551,4.0,1307180591 +81,2673,4.5,1307179973 +81,2712,4.5,1307180643 +81,2730,4.0,1307179936 +81,2959,4.0,1307180621 +81,2997,4.0,1307172282 +81,3000,4.5,1307172475 +81,3083,4.0,1307169335 +81,3160,4.0,1307179945 +81,3415,5.0,1307172071 +81,3578,3.5,1307173783 +81,3637,4.0,1307179942 +81,3788,4.5,1307171554 +81,3814,5.0,1307171816 +81,3910,4.5,1307169357 +81,3925,4.0,1307180690 +81,3949,4.0,1307172357 +81,3967,3.0,1307169275 +81,3993,4.0,1307169422 +81,3996,4.0,1307180985 +81,4144,4.0,1307172241 +81,4271,5.0,1307174778 +81,4312,4.0,1307179931 +81,4334,4.5,1307171682 +81,4422,4.5,1307171518 +81,4437,4.0,1307173092 +81,4470,4.5,1307171511 +81,4658,5.0,1307172034 +81,4848,4.0,1307180444 +81,4878,2.0,1307180653 +81,4928,3.0,1307171489 +81,5028,5.0,1307172908 +81,5105,3.0,1307171929 +81,5147,4.0,1307171418 +81,5269,4.5,1307172978 +81,5530,2.5,1307169545 +81,5618,4.0,1307172369 +81,5668,2.5,1307169589 +81,5686,4.0,1307173060 +81,5971,4.5,1307172197 +81,6123,4.5,1307171746 +81,6214,3.5,1307180611 +81,6301,2.5,1307169608 +81,6440,4.5,1307180639 +81,6509,4.0,1307171598 +81,6641,4.5,1307173663 +81,6643,4.0,1307171752 +81,6666,4.0,1307171631 +81,6711,4.0,1307172319 +81,6807,5.0,1307173007 +81,6993,5.0,1307172238 +81,7172,4.0,1307179979 +81,7265,3.5,1307180420 +81,7323,4.0,1307172433 +81,7327,4.0,1307171479 +81,7361,4.0,1307172154 +81,7460,4.0,1307180598 +81,7564,5.0,1307174689 +81,7574,5.0,1307172961 +81,7786,3.5,1307178465 +81,7820,4.0,1307171686 +81,7938,4.0,1307171420 +81,7979,4.5,1307178330 +81,8014,3.5,1307175022 +81,8199,4.5,1307171680 +81,8239,5.0,1307171842 +81,8327,4.0,1307179983 +81,8338,4.5,1307171907 +81,8367,4.0,1307173075 +81,8485,4.0,1307178208 +81,8533,2.5,1307177440 +81,8638,5.0,1307172225 +81,8983,4.0,1307180990 +81,26150,5.0,1307172805 +81,26228,4.0,1307172101 +81,26258,5.0,1307171878 +81,26318,4.5,1307180149 +81,26326,4.5,1307180746 +81,26578,5.0,1307172863 +81,26662,4.0,1307172450 +81,31437,4.0,1307171367 +81,31524,4.0,1307180847 +81,31930,4.0,1307180362 +81,36276,4.0,1307174858 +81,37731,3.0,1307177412 +81,40491,4.5,1307171356 +81,43899,3.0,1307178303 +81,44694,3.0,1307172173 +81,45000,4.0,1307180335 +81,47274,4.0,1307172325 +81,47610,2.5,1307177426 +81,48043,3.5,1307180145 +81,48165,4.0,1307172130 +81,52528,4.0,1307172373 +81,52617,5.0,1307173112 +81,52885,4.0,1307180141 +81,53447,3.5,1307173098 +81,56782,4.0,1307178621 +81,58425,4.5,1307172311 +81,60950,3.0,1307169533 +81,61206,4.5,1307173763 +81,64701,4.0,1307172454 +81,65130,4.0,1307180134 +81,68137,2.0,1307180237 +81,68967,4.0,1307172169 +81,69516,4.0,1307180694 +81,69757,2.0,1307169383 +81,71108,4.0,1307171589 +81,71438,3.5,1307175227 +81,72998,3.0,1307177375 +81,73344,4.0,1307172203 +81,78836,4.0,1307171458 +81,79132,3.0,1307180634 +81,80463,3.0,1307172215 +81,81054,4.0,1307180849 +81,81591,2.5,1307172182 +81,81786,4.0,1307171915 +81,82459,3.5,1307172379 +82,10,3.0,835973445 +82,21,3.0,835973471 +82,34,5.0,835973471 +82,39,5.0,835973488 +82,47,5.0,835973458 +82,50,4.0,835973488 +82,110,5.0,835973458 +82,150,4.0,835973379 +82,153,3.0,835973398 +82,160,2.0,835973504 +82,165,3.0,835973398 +82,208,3.0,835973445 +82,231,4.0,835973419 +82,253,5.0,835973445 +82,266,4.0,835973504 +82,288,3.0,835973458 +82,292,3.0,835973431 +82,296,5.0,835973380 +82,300,4.0,835973458 +82,316,2.0,835973419 +82,318,5.0,835973419 +82,329,2.0,835973418 +82,339,4.0,835973431 +82,344,3.0,835973398 +82,356,5.0,835973504 +82,364,4.0,835973488 +82,367,3.0,835973504 +82,380,3.0,835973380 +82,410,3.0,835973458 +82,420,1.0,835973488 +82,434,3.0,835973431 +82,435,3.0,835973504 +82,454,3.0,835973488 +82,457,3.0,835973445 +82,588,4.0,835973398 +82,590,4.0,835973379 +82,592,3.0,835973379 +82,593,4.0,835973430 +82,595,5.0,835973419 +83,6,5.0,1156206916 +83,21,1.0,1156206448 +83,39,4.0,1156207541 +83,50,5.0,1156205258 +83,69,3.5,1156207469 +83,101,3.5,1156206709 +83,141,4.0,1156207607 +83,150,5.0,1156206932 +83,151,0.5,1156205069 +83,205,4.0,1156207528 +83,224,4.0,1156205399 +83,235,4.5,1156207393 +83,266,5.0,1156205395 +83,272,4.5,1156206432 +83,351,3.5,1156205656 +83,356,4.0,1156207431 +83,370,4.0,1156205062 +83,377,2.5,1156205254 +83,441,4.0,1156207404 +83,480,3.5,1156205241 +83,514,4.0,1156205644 +83,532,3.5,1156205647 +83,608,4.5,1156206584 +83,663,5.0,1156207579 +83,750,5.0,1156205385 +83,778,4.0,1156206735 +83,799,3.5,1156207536 +83,904,4.5,1156205103 +83,908,4.5,1156205036 +83,923,4.5,1156205382 +83,1060,5.0,1156206581 +83,1077,4.5,1156206305 +83,1078,4.0,1156205621 +83,1197,5.0,1156206554 +83,1208,5.0,1156205372 +83,1210,5.0,1156205236 +83,1230,5.0,1156205012 +83,1233,5.0,1156205366 +83,1240,3.0,1156205231 +83,1247,4.5,1156206232 +83,1257,5.0,1156205603 +83,1259,4.5,1156206569 +83,1265,4.5,1156206193 +83,1270,4.0,1156206651 +83,1276,5.0,1156205360 +83,1278,5.0,1156205116 +83,1288,4.5,1156205079 +83,1348,4.0,1156205597 +83,1358,0.5,1156205108 +83,1394,5.0,1156206678 +83,1476,5.0,1156207561 +83,1500,5.0,1156205057 +83,1590,5.0,1156205586 +83,1639,4.5,1156207452 +83,1653,5.0,1156205019 +83,1732,5.0,1156205355 +83,1747,4.0,1156207505 +83,1777,4.5,1156207576 +83,1799,5.0,1156207007 +83,1917,2.0,1156205343 +83,1920,0.5,1156205568 +83,1923,2.0,1156206976 +83,1961,5.0,1156205341 +83,2000,1.5,1156205337 +83,2109,3.5,1156205560 +83,2155,4.0,1156207519 +83,2291,5.0,1156207407 +83,2300,4.0,1156206206 +83,2302,4.0,1156207465 +83,2324,4.0,1156207385 +83,2359,4.0,1156206335 +83,2371,3.5,1156205549 +83,2395,5.0,1156207378 +83,2406,4.0,1156205072 +83,2502,5.0,1156205066 +83,2571,1.0,1156205227 +83,2599,4.0,1156205050 +83,2700,4.5,1156205318 +83,2716,4.0,1156206687 +83,2791,5.0,1156205315 +83,2795,5.0,1156206643 +83,2804,4.5,1156206109 +83,2858,4.0,1156206557 +83,2863,4.0,1156206361 +83,2918,5.0,1156206548 +83,2997,5.0,1156206640 +83,3022,4.5,1156206330 +83,3033,4.0,1156205312 +83,3037,4.0,1156206276 +83,3044,4.0,1156206983 +83,3087,3.5,1156205522 +83,3114,4.0,1156205304 +83,3160,0.5,1156205302 +83,3176,4.5,1156205298 +83,3198,4.0,1156205508 +83,3210,3.5,1156206681 +83,3252,4.0,1156205515 +83,3253,3.5,1156206992 +83,3261,4.0,1156207514 +83,3355,5.0,1156207276 +83,3359,4.0,1156205502 +83,3361,4.0,1156205494 +83,3362,4.5,1156206161 +83,3396,4.0,1156206211 +83,3398,4.0,1156205797 +83,3408,4.0,1156205095 +83,3421,5.0,1156206559 +83,3450,4.0,1156207595 +83,3481,4.0,1156206178 +83,3552,4.0,1156206668 +83,3671,4.5,1156206112 +83,3735,5.0,1156205479 +83,3751,4.0,1156206371 +83,3753,1.0,1156205296 +83,3809,4.0,1156207556 +83,3814,4.5,1156206196 +83,3868,5.0,1156206694 +83,3869,3.0,1156205474 +83,3897,4.0,1156206169 +83,3911,2.0,1156205292 +83,3950,3.5,1156205780 +83,4025,3.5,1156205468 +83,4027,5.0,1156206599 +83,4034,4.5,1156205085 +83,4066,4.0,1156205765 +83,4174,4.0,1156206943 +83,4255,1.5,1156205759 +83,4321,4.5,1156207591 +83,4322,4.5,1156205751 +83,4361,4.5,1156206364 +83,4388,4.0,1156205739 +83,4558,3.5,1156205736 +83,4571,3.5,1156205449 +83,4688,4.0,1156206995 +83,4886,4.0,1156206165 +83,4898,0.5,1156207279 +83,4963,4.5,1156205274 +83,4975,0.5,1156205445 +83,5060,4.5,1156206253 +83,5103,4.0,1156206947 +83,5135,4.5,1156206394 +83,5152,5.0,1156205729 +83,5377,4.0,1156206692 +83,5445,0.5,1156205029 +83,5602,3.5,1156206308 +83,5650,3.5,1156206705 +83,5669,4.0,1156205270 +83,5673,1.0,1156205435 +83,5902,0.5,1156206646 +83,6373,3.5,1156205432 +83,6659,3.5,1156207498 +83,6863,4.5,1156206301 +83,6947,5.0,1156205421 +83,7028,4.5,1156206134 +83,8376,4.0,1156205417 +83,8493,5.0,1156206979 +83,8528,3.5,1156205409 +83,8784,4.0,1156206637 +83,8807,5.0,1156205696 +83,8874,4.5,1156206118 +83,35836,3.5,1156206624 +84,1,3.5,1429910800 +84,110,4.0,1429910930 +84,260,4.0,1429910910 +84,296,4.0,1429910837 +84,356,3.0,1429910797 +84,589,3.0,1429910957 +84,1036,4.5,1429910764 +84,1196,4.0,1429910902 +84,1198,3.5,1429910909 +84,1210,4.0,1429910922 +84,1610,3.5,1429910906 +84,2028,3.0,1429910948 +84,2268,3.5,1429911562 +84,2329,3.0,1429910790 +84,2571,5.0,1429712680 +84,2858,3.5,1429910812 +84,2916,4.0,1429910913 +84,2959,4.0,1429910771 +84,3114,3.5,1429910861 +84,3301,4.0,1429911170 +84,3578,4.0,1429910935 +84,3623,3.5,1429911066 +84,3624,4.0,1429911144 +84,3717,4.0,1429911104 +84,3752,3.5,1429911142 +84,3753,4.0,1429911073 +84,3980,4.5,1429911363 +84,3994,3.0,1429911077 +84,4023,3.0,1429911265 +84,4148,4.0,1429911164 +84,4270,3.5,1429911152 +84,4306,4.0,1429911006 +84,4310,3.5,1429911137 +84,4701,3.5,1429911227 +84,4720,4.0,1429911106 +84,4776,4.0,1429911149 +84,4886,4.0,1429911038 +84,4896,3.5,1429911063 +84,4963,4.0,1429911041 +84,4993,4.5,1429910749 +84,4995,4.5,1429911049 +84,5010,4.0,1429911572 +84,5418,3.5,1429910917 +84,5445,3.5,1429911017 +84,5459,3.5,1429911098 +84,5481,3.0,1429911130 +84,5630,3.5,1429911247 +84,5952,4.5,1429910753 +84,5989,3.5,1429911059 +84,6016,4.0,1429910831 +84,6287,3.5,1429911297 +84,6365,3.5,1429910872 +84,6373,3.5,1429911118 +84,6377,3.0,1429911039 +84,6378,3.0,1429911113 +84,6539,3.5,1429910932 +84,6874,4.0,1429911044 +84,7153,5.0,1429712691 +84,7254,3.5,1429911126 +84,7293,3.5,1429911204 +84,7438,4.0,1429911060 +84,7458,4.0,1429911207 +84,8361,3.0,1429911214 +84,8368,4.0,1429910840 +84,8531,3.5,1429911525 +84,8644,3.5,1429911101 +84,8665,3.5,1429910987 +84,8961,4.0,1429911051 +84,8972,3.5,1429911276 +84,30825,3.5,1429911292 +84,31696,4.0,1429911295 +84,32587,3.5,1429910892 +84,33646,4.0,1429911509 +84,33794,4.0,1429910927 +84,34162,3.5,1429911174 +84,35836,4.0,1429911102 +84,36529,3.5,1429911221 +84,40815,3.5,1429910876 +84,44199,3.5,1429911233 +84,45447,3.0,1429911253 +84,45499,4.0,1429911198 +84,45722,3.5,1429911097 +84,53125,3.5,1429911229 +84,54001,3.5,1429911203 +84,54272,3.0,1429911238 +84,54286,4.0,1429910996 +84,56174,3.0,1429911193 +84,58559,4.0,1429910919 +84,58803,4.0,1429911340 +84,59315,3.5,1429910974 +84,64983,4.0,1429911421 +84,65514,2.5,1429910960 +84,68157,3.5,1429910829 +84,68358,3.5,1429910890 +84,69122,4.0,1429911154 +84,69844,3.5,1429910852 +84,72998,4.0,1429911107 +84,74458,4.0,1429911208 +84,74795,4.0,1429911567 +84,76093,4.0,1429910886 +84,81229,3.5,1429911541 +84,85342,3.5,1429910984 +84,89745,4.0,1429910785 +84,91500,3.5,1429910849 +84,91529,4.0,1429911262 +84,91658,3.5,1429911003 +84,92259,4.5,1429911538 +84,94777,4.0,1429910965 +84,96079,3.0,1429911001 +84,99114,3.0,1429910808 +84,102125,3.5,1429910884 +84,106487,3.5,1429910860 +84,106489,5.0,1429910856 +84,110102,4.0,1429910866 +84,116797,4.5,1429712709 +84,117176,4.0,1429911324 +85,2,5.0,837511784 +85,3,2.0,837512420 +85,5,3.0,837512493 +85,10,5.0,837507143 +85,19,3.0,837512280 +85,21,4.0,837511743 +85,23,3.0,837512169 +85,44,2.0,837512134 +85,58,1.0,837506990 +85,110,5.0,837506903 +85,153,4.0,837506803 +85,158,1.0,837513025 +85,160,3.0,837512403 +85,161,4.0,837507117 +85,165,4.0,837506796 +85,170,3.0,837512681 +85,172,3.0,837513025 +85,173,4.0,837512148 +85,177,2.0,837512454 +85,181,1.0,837512701 +85,185,3.0,837511998 +85,186,3.0,837512987 +85,188,1.0,837511493 +85,196,3.0,837511986 +85,203,3.0,837512599 +85,208,3.0,837511797 +85,216,3.0,837512325 +85,227,4.0,837512325 +85,230,2.0,837512519 +85,231,4.0,837507101 +85,234,4.0,837512212 +85,247,1.0,837512599 +85,253,3.0,837512030 +85,255,5.0,837512635 +85,256,4.0,837513025 +85,261,1.0,837513012 +85,275,3.0,837512134 +85,277,2.0,837512482 +85,282,1.0,837512962 +85,288,4.0,837512114 +85,291,1.0,837512611 +85,292,4.0,837507117 +85,293,5.0,837511431 +85,296,5.0,837506719 +85,315,4.0,837512200 +85,316,5.0,837512888 +85,317,4.0,837512236 +85,318,5.0,837506848 +85,327,1.0,837512249 +85,329,5.0,837507101 +85,333,4.0,837511448 +85,339,1.0,837512763 +85,344,4.0,837506801 +85,349,5.0,837506799 +85,350,3.0,837511838 +85,355,3.0,837512312 +85,356,4.0,837506902 +85,357,3.0,837512561 +85,364,3.0,837512169 +85,366,1.0,837512580 +85,367,4.0,837511809 +85,368,4.0,837511822 +85,370,2.0,837512403 +85,374,1.0,837512723 +85,377,5.0,837511771 +85,380,5.0,837506726 +85,405,3.0,837512599 +85,410,4.0,837511784 +85,415,3.0,837512420 +85,420,1.0,837512433 +85,432,4.0,837512344 +85,434,3.0,837512015 +85,437,3.0,837512344 +85,442,4.0,837511349 +85,454,3.0,837512191 +85,457,5.0,837506903 +85,466,3.0,837512312 +85,471,3.0,837512312 +85,480,5.0,837511743 +85,485,3.0,837512225 +85,500,4.0,837512181 +85,508,2.0,837512648 +85,519,3.0,837512249 +85,520,3.0,837511838 +85,527,2.0,837506847 +85,543,4.0,837512561 +85,546,1.0,837512482 +85,548,4.0,837512388 +85,551,1.0,837512648 +85,553,4.0,837511743 +85,555,3.0,837512114 +85,586,3.0,837512268 +85,587,3.0,837512325 +85,588,3.0,837506797 +85,589,5.0,837507044 +85,590,3.0,837506714 +85,592,4.0,837506709 +85,593,4.0,837506876 +85,594,2.0,837512504 +85,595,3.0,837507101 +85,597,4.0,837512519 +85,610,3.0,837512225 +85,616,4.0,837512681 +85,648,5.0,837511448 +85,688,1.0,837512681 +85,709,1.0,837512723 +85,733,5.0,837506902 +86,1,3.0,848161799 +86,11,1.0,848159306 +86,14,4.0,848161252 +86,17,5.0,848159382 +86,18,5.0,848160301 +86,19,1.0,848159249 +86,21,1.0,848159249 +86,25,3.0,848161123 +86,26,4.0,848160245 +86,28,4.0,848160132 +86,29,4.0,848160311 +86,30,5.0,848161285 +86,32,5.0,848159270 +86,34,3.0,848159230 +86,35,4.0,848160169 +86,36,4.0,848159467 +86,39,4.0,848161788 +86,41,4.0,848160022 +86,46,3.0,848161443 +86,47,5.0,848159211 +86,58,4.0,848161091 +86,62,3.0,848161498 +86,68,4.0,848160534 +86,72,4.0,848161284 +86,73,3.0,848161182 +86,81,5.0,848161391 +86,82,3.0,848161091 +86,85,4.0,848161221 +86,97,4.0,848161123 +86,105,3.0,848161330 +86,110,3.0,848161539 +86,116,4.0,848160534 +86,121,3.0,848161182 +86,124,3.0,848161391 +86,126,1.0,848160230 +86,141,4.0,848159382 +86,144,3.0,848161353 +86,147,5.0,848161267 +86,150,4.0,848159074 +86,151,4.0,848161799 +86,154,4.0,848161123 +86,159,3.0,848161454 +86,160,2.0,848159289 +86,162,3.0,848161091 +86,171,4.0,848160273 +86,172,3.0,848161811 +86,178,5.0,848160534 +86,180,3.0,848161507 +86,186,1.0,848159406 +86,194,4.0,848161090 +86,198,3.0,848159752 +86,203,4.0,848159634 +86,208,3.0,848159167 +86,213,4.0,848161123 +86,218,4.0,848161454 +86,223,5.0,848159545 +86,224,3.0,848161373 +86,229,4.0,848160081 +86,231,1.0,848159117 +86,232,4.0,848159826 +86,235,4.0,848159429 +86,242,4.0,848160360 +86,246,3.0,848161252 +86,247,5.0,848159905 +86,249,4.0,848161208 +86,252,1.0,848159406 +86,253,4.0,848159191 +86,254,4.0,848161465 +86,260,5.0,848161982 +86,261,3.0,848161454 +86,263,3.0,848161149 +86,265,4.0,848159467 +86,266,3.0,848161787 +86,269,4.0,848161199 +86,272,4.0,848159608 +86,273,3.0,848161308 +86,282,3.0,848161308 +86,287,3.0,848161343 +86,288,3.0,848161773 +86,290,5.0,848160119 +86,292,3.0,848161773 +86,296,5.0,848159074 +86,299,5.0,848160039 +86,300,4.0,848159230 +86,302,3.0,848161134 +86,305,3.0,848159765 +86,306,5.0,848159807 +86,307,5.0,848159845 +86,308,5.0,848159932 +86,314,3.0,848161182 +86,316,3.0,848159117 +86,318,5.0,848159148 +86,319,5.0,848159779 +86,321,3.0,848160389 +86,324,3.0,848160729 +86,329,5.0,848159148 +86,331,3.0,848161199 +86,332,3.0,848160081 +86,337,4.0,848161104 +86,342,5.0,848159621 +86,345,5.0,848159719 +86,348,3.0,848161134 +86,357,5.0,848159270 +86,362,3.0,848159654 +86,364,4.0,848159211 +86,365,4.0,848161330 +86,369,4.0,848161149 +86,372,3.0,848161404 +86,405,2.0,848162010 +86,419,3.0,848159719 +86,427,3.0,848161443 +86,435,4.0,848161788 +86,444,4.0,848161353 +86,446,3.0,848160066 +86,454,2.0,848159191 +86,461,4.0,848160573 +86,468,3.0,848161491 +86,469,3.0,848161343 +86,471,4.0,848161161 +86,475,4.0,848159706 +86,477,3.0,848161443 +86,480,3.0,848159148 +86,481,3.0,848159932 +86,482,4.0,848161465 +86,497,4.0,848161123 +86,500,3.0,848161773 +86,501,5.0,848160301 +86,508,3.0,848159361 +86,509,5.0,848159326 +86,515,5.0,848159503 +86,527,5.0,848159249 +86,531,3.0,848159779 +86,534,4.0,848159856 +86,535,5.0,848159932 +86,538,5.0,848159989 +86,539,3.0,848159249 +86,541,4.0,848162072 +86,550,4.0,848159949 +86,551,4.0,848159429 +86,555,4.0,848159503 +86,568,3.0,848161252 +86,585,5.0,848161811 +86,586,1.0,848161788 +86,587,3.0,848159230 +86,588,3.0,848159093 +86,589,2.0,848159191 +86,590,3.0,848161161 +86,592,3.0,848159074 +86,593,5.0,848161773 +86,594,4.0,848159503 +86,595,3.0,848161267 +86,596,4.0,848159689 +86,597,3.0,848159230 +86,608,5.0,848159590 +86,613,3.0,848161360 +86,616,3.0,848161308 +86,633,5.0,848161343 +86,640,3.0,848160245 +86,650,3.0,848161481 +86,661,3.0,848161221 +86,665,4.0,848161149 +86,671,4.0,848161330 +86,708,3.0,848159794 +86,720,4.0,848162097 +86,724,3.0,848162119 +86,728,4.0,848160360 +86,753,3.0,848161237 +86,756,3.0,848161539 +86,766,5.0,848161161 +86,778,4.0,848159975 +86,780,2.0,848159406 +86,783,3.0,848159949 +86,784,2.0,848162010 +86,828,3.0,848161481 +86,830,2.0,848161528 +86,844,3.0,848161552 +86,892,3.0,848161552 +86,1035,4.0,848162129 +86,1036,1.0,848162026 +86,1041,5.0,848160714 +86,1046,4.0,848160865 +86,1059,3.0,848161267 +86,1073,4.0,848160039 +86,1079,4.0,848162144 +86,1084,3.0,848160211 +86,1148,5.0,848160625 +86,1161,4.0,848160729 +86,1163,3.0,848160993 +86,1354,5.0,848160983 +86,1357,5.0,848161044 +87,1,3.0,858623186 +87,7,3.0,858623219 +87,25,4.0,858623186 +87,32,3.0,858623186 +87,52,4.0,858623240 +87,62,1.0,858623186 +87,88,3.0,858623319 +87,95,3.0,858623186 +87,104,4.0,858623240 +87,112,3.0,858623240 +87,141,4.0,858623186 +87,260,4.0,858623240 +87,293,5.0,858623456 +87,494,4.0,858623219 +87,608,5.0,858623219 +87,648,3.0,858623186 +87,663,3.0,858623335 +87,728,5.0,858623364 +87,733,3.0,858623219 +87,736,2.0,858623186 +87,762,3.0,858623257 +87,778,3.0,858623270 +87,780,3.0,858623186 +87,785,4.0,858623319 +87,786,3.0,858623219 +87,802,3.0,858623257 +87,852,1.0,858623283 +87,1073,3.0,858623219 +87,1210,3.0,858623299 +87,1357,5.0,858623403 +87,1405,2.0,858623335 +88,2,3.5,1239773232 +88,7,4.0,1239765126 +88,11,3.5,1239764623 +88,21,3.5,1239764334 +88,31,3.0,1239755559 +88,36,4.0,1239758454 +88,39,3.0,1239764316 +88,47,4.0,1239763433 +88,62,3.5,1239758460 +88,95,2.0,1239764336 +88,104,0.5,1239764721 +88,141,4.5,1239764330 +88,150,4.0,1239763733 +88,153,2.0,1239763939 +88,160,2.0,1239765071 +88,163,3.0,1239766992 +88,165,3.0,1239763933 +88,185,3.0,1239764312 +88,223,4.5,1239764512 +88,231,0.5,1239767689 +88,253,3.0,1239764173 +88,256,0.5,1239755560 +88,260,4.0,1239763727 +88,261,3.5,1239755456 +88,288,3.0,1239758451 +88,296,3.5,1239757625 +88,316,2.5,1239763984 +88,318,4.0,1239757629 +88,337,3.5,1239764763 +88,339,4.0,1239764337 +88,344,2.0,1239763845 +88,345,3.0,1239775160 +88,350,3.0,1239764885 +88,353,4.0,1239764964 +88,356,4.0,1239757626 +88,357,5.0,1239764169 +88,364,4.0,1239763943 +88,377,3.0,1239763839 +88,380,2.0,1239763826 +88,435,1.5,1239766980 +88,440,2.5,1239773306 +88,454,2.5,1239764176 +88,457,2.5,1239763731 +88,480,3.0,1239763722 +88,497,4.0,1239765126 +88,500,2.5,1239772521 +88,508,4.0,1239764638 +88,509,5.0,1239764747 +88,520,1.5,1239766985 +88,527,4.0,1239756770 +88,539,3.5,1239767724 +88,541,4.5,1239758268 +88,551,4.5,1239764701 +88,552,2.0,1239755377 +88,553,3.0,1239765069 +88,586,2.5,1239764309 +88,588,3.0,1239757679 +88,592,3.0,1239772558 +88,593,2.0,1239763711 +88,594,4.0,1239764749 +88,595,3.5,1239763938 +88,596,4.0,1239755381 +88,608,3.5,1239763830 +88,648,3.5,1239763854 +88,708,3.5,1239764853 +88,733,3.0,1239772575 +88,736,3.5,1239763983 +88,745,3.0,1239762941 +88,778,4.5,1239772824 +88,780,3.5,1239757090 +88,802,1.0,1239755385 +88,913,4.0,1239755437 +88,914,4.0,1239755560 +88,919,4.0,1239764515 +88,924,4.0,1239764492 +88,1028,3.0,1239775047 +88,1073,3.0,1239758081 +88,1079,4.0,1239764641 +88,1080,3.5,1239764678 +88,1097,3.5,1239758059 +88,1101,4.0,1239764609 +88,1136,3.5,1239758202 +88,1183,3.0,1239764886 +88,1193,4.0,1239758210 +88,1196,3.5,1239757684 +88,1197,4.0,1239758069 +88,1207,4.0,1239763265 +88,1225,4.5,1239764628 +88,1246,5.0,1239764716 +88,1258,3.0,1239764604 +88,1259,4.5,1239764615 +88,1265,2.5,1239772561 +88,1270,3.5,1239763858 +88,1278,4.0,1239766995 +88,1282,4.0,1239755420 +88,1291,3.0,1239764173 +88,1293,4.0,1239755561 +88,1302,2.5,1239755415 +88,1307,4.0,1239764516 +88,1380,2.5,1239765070 +88,1391,3.0,1239764905 +88,1393,3.0,1239764514 +88,1394,3.5,1239765130 +88,1407,1.5,1239764889 +88,1485,0.5,1239764845 +88,1500,4.0,1239765138 +88,1517,0.5,1239767713 +88,1527,4.0,1239758428 +88,1573,3.0,1239764767 +88,1580,2.5,1239756858 +88,1639,4.5,1239766989 +88,1641,4.0,1239764988 +88,1674,3.0,1239755446 +88,1704,5.0,1239758442 +88,1732,4.0,1239764905 +88,1777,1.5,1239773365 +88,1784,3.5,1239764518 +88,1909,0.5,1239755427 +88,1917,3.0,1239764540 +88,1961,3.5,1239764341 +88,1968,3.5,1239772229 +88,2011,2.0,1239764751 +88,2054,3.0,1239764896 +88,2100,3.5,1239774217 +88,2115,2.0,1239764695 +88,2174,4.0,1239764636 +88,2268,3.0,1239765142 +88,2291,4.5,1239764706 +88,2302,3.0,1239767000 +88,2321,3.0,1257010873 +88,2329,2.5,1239764852 +88,2353,3.5,1239766983 +88,2355,3.5,1239764618 +88,2396,4.5,1239764344 +88,2502,4.0,1239764770 +88,2571,4.0,1239763841 +88,2599,4.0,1239772626 +88,2617,2.5,1239764978 +88,2628,0.5,1239758086 +88,2640,2.0,1239764969 +88,2671,4.0,1239774709 +88,2692,4.5,1239763430 +88,2710,1.0,1239764684 +88,2712,2.5,1239766975 +88,2716,3.5,1239767661 +88,2762,4.0,1239767652 +88,2763,2.5,1239755416 +88,2791,3.5,1239764774 +88,2797,4.0,1239764693 +88,2858,4.0,1239757873 +88,2959,4.0,1239758107 +88,2962,4.5,1239778395 +88,2997,4.0,1239764339 +88,3052,2.5,1239765128 +88,3081,3.0,1239773748 +88,3147,4.0,1239764794 +88,3160,4.0,1239774220 +88,3255,3.0,1239755557 +88,3408,4.5,1239765070 +88,3418,3.5,1239775154 +88,3435,3.5,1239763277 +88,3448,4.0,1239773739 +88,3481,4.5,1239765131 +88,3578,2.0,1239764184 +88,3751,3.5,1239765070 +88,3753,3.5,1239773151 +88,3755,2.5,1239755558 +88,3793,3.0,1239756814 +88,3897,4.5,1239764782 +88,3996,3.5,1239758460 +88,4017,4.0,1239775449 +88,4022,4.0,1239764966 +88,4027,4.0,1239764951 +88,4034,4.0,1239764957 +88,4226,3.0,1239762847 +88,4246,4.0,1239772249 +88,4308,3.0,1239772623 +88,4720,2.5,1239773931 +88,4886,4.0,1239764688 +88,4896,3.5,1239767658 +88,4963,4.5,1239764753 +88,4973,5.0,1239757171 +88,4979,4.0,1239772946 +88,4993,4.0,1239756824 +88,4995,3.0,1239757094 +88,5218,3.5,1239772461 +88,5299,3.5,1239772239 +88,5349,3.0,1239764714 +88,5377,4.5,1239778184 +88,5378,1.0,1239767719 +88,5418,4.0,1239767682 +88,5445,3.5,1239764608 +88,5459,2.5,1239773123 +88,5618,4.0,1239762921 +88,5679,2.0,1239773937 +88,5952,3.5,1239756837 +88,5991,3.0,1239773743 +88,5995,4.5,1239763309 +88,6016,4.0,1239762854 +88,6373,2.5,1239773941 +88,6377,4.0,1239764786 +88,6539,4.0,1239764697 +88,6711,4.5,1239767643 +88,6807,4.0,1239773949 +88,6863,3.0,1239772568 +88,6873,4.0,1239771765 +88,6874,4.0,1239756823 +88,6881,4.0,1256960996 +88,6942,4.5,1239771692 +88,7147,4.0,1239772247 +88,7153,3.5,1239757077 +88,7285,4.0,1239775462 +88,7361,4.0,1239766978 +88,7438,4.0,1239767657 +88,8228,4.5,1239763295 +88,8368,3.5,1239767702 +88,8636,3.0,1239772533 +88,8644,4.0,1239772225 +88,8665,4.0,1239767646 +88,8784,4.0,1239772582 +88,8874,3.5,1239772618 +88,30707,3.5,1239772528 +88,30793,2.5,1239772951 +88,32587,3.5,1239772632 +88,32598,3.0,1239778397 +88,33794,2.0,1239755439 +88,34405,3.0,1239775005 +88,35836,2.5,1239772928 +88,36517,4.0,1239778633 +88,40815,3.5,1239774702 +88,40819,4.5,1239761146 +88,41566,4.0,1239772241 +88,45447,3.0,1239774712 +88,46976,4.5,1239774126 +88,50872,4.0,1239772995 +88,51705,4.5,1251668327 +88,52668,4.5,1259386770 +88,52973,3.0,1239773175 +88,54001,4.0,1239773229 +88,55269,1.5,1256960930 +88,56367,5.0,1239757476 +88,57669,4.0,1256961092 +88,59615,1.0,1239772235 +88,60684,2.5,1239758696 +88,62344,4.5,1239775107 +88,63515,2.5,1239772923 +88,63876,4.5,1239775407 +88,65261,4.0,1251668389 +88,66097,4.0,1239758693 +88,66198,3.0,1239759260 +88,67193,3.0,1239758705 +88,67799,2.5,1239767650 +88,68954,4.5,1249886099 +88,69844,4.0,1249886123 +88,70293,4.5,1251956371 +89,1,5.0,1257620018 +89,107,4.0,1257610324 +89,110,5.0,1257620127 +89,165,4.0,1257620488 +89,231,5.0,1257620511 +89,260,5.0,1257620279 +89,296,5.0,1257620073 +89,303,4.0,1257610311 +89,316,4.0,1257620499 +89,318,5.0,1257620251 +89,327,2.0,1257610314 +89,344,5.0,1257620122 +89,364,5.0,1257620508 +89,428,4.0,1257610525 +89,480,5.0,1257620110 +89,500,5.0,1257620515 +89,588,4.5,1257620522 +89,589,4.0,1257620040 +89,590,5.0,1257620132 +89,648,4.0,1257620113 +89,780,4.0,1257620045 +89,1019,3.0,1257610347 +89,1073,4.5,1257620538 +89,1214,3.5,1257620544 +89,1240,4.5,1257620479 +89,1265,4.5,1257620589 +89,1385,3.0,1257610479 +89,1617,4.0,1257620572 +89,1772,5.0,1257610885 +89,2028,5.0,1257620592 +89,2378,4.0,1257610468 +89,2571,5.0,1257620269 +89,2628,5.0,1257620129 +89,2683,5.0,1257620503 +89,2706,5.0,1257620604 +89,2762,5.0,1257620518 +89,2951,5.0,1257610437 +89,2959,5.0,1257620271 +89,2987,4.0,1257620535 +89,2991,5.0,1257610538 +89,3114,4.5,1257620568 +89,3254,4.0,1257610494 +89,3578,5.0,1257620265 +89,3638,5.0,1257610567 +89,3793,5.0,1257620282 +89,4886,4.0,1257620037 +89,4896,5.0,1257620582 +89,4963,5.0,1257620117 +89,5219,4.5,1257610620 +89,5349,4.5,1257620031 +89,5418,5.0,1257620554 +89,5952,5.0,1257620258 +89,6365,5.0,1257620255 +89,6539,5.0,1257620050 +89,6874,5.0,1257620132 +89,7153,5.0,1257620466 +89,7438,5.0,1257620454 +89,7454,4.0,1257610864 +89,8528,5.0,1257610580 +89,33794,5.0,1257620448 +89,45722,5.0,1257620541 +89,48516,5.0,1257620575 +89,49272,4.0,1257620285 +89,51662,5.0,1257620602 +89,58559,5.0,1257620481 +89,59315,5.0,1257620457 +90,1,4.0,875517174 +90,6,4.0,875517954 +90,25,2.0,875517624 +90,29,5.0,875517306 +90,32,4.0,875517953 +90,36,4.0,875516371 +90,79,3.0,875520648 +90,81,4.0,875520409 +90,141,3.0,875518226 +90,260,4.0,875516370 +90,608,5.0,875516370 +90,648,4.0,875519306 +90,661,3.0,875518088 +90,733,4.0,875516731 +90,736,3.0,875518345 +90,766,3.0,875520264 +90,778,4.0,875517233 +90,780,2.0,875520463 +90,783,3.0,875518641 +90,800,5.0,875517174 +90,802,4.0,875518088 +90,830,3.0,875520464 +90,832,4.0,875517754 +90,837,4.0,875517233 +90,866,4.0,875517953 +90,986,4.0,895843258 +90,1047,4.0,875518345 +90,1061,4.0,875517306 +90,1073,3.0,875518016 +90,1183,4.0,875514792 +90,1351,4.0,875517306 +90,1356,4.0,875517233 +90,1367,4.0,875519306 +90,1407,4.0,875514792 +90,1422,4.0,875515203 +90,1438,3.0,875515203 +90,1472,4.0,875519715 +90,1479,3.0,875515030 +90,1500,5.0,875517174 +90,1513,2.0,876370672 +90,1515,3.0,876288277 +90,1527,4.0,875518289 +90,1552,4.0,875517306 +90,1554,4.0,875516370 +90,1569,4.0,875518088 +90,1580,4.0,875517358 +90,1584,5.0,876288017 +90,1590,5.0,875515956 +90,1597,4.0,875515902 +90,1608,2.0,875515030 +91,1,5.0,1448798200 +91,12,3.5,1448813887 +91,19,4.0,1448813534 +91,23,3.5,1448798511 +91,34,3.0,1448798347 +91,104,4.0,1448814310 +91,110,5.0,1448798142 +91,216,4.0,1448813322 +91,231,4.5,1448813386 +91,260,5.0,1448798105 +91,267,3.5,1448814317 +91,318,5.0,1448798101 +91,356,5.0,1448798168 +91,370,4.5,1448814268 +91,380,4.5,1448798508 +91,466,5.0,1448814281 +91,527,5.0,1448798139 +91,588,4.5,1448798326 +91,589,5.0,1448798161 +91,747,3.5,1448814498 +91,1036,5.0,1448798146 +91,1047,4.0,1448798490 +91,1097,5.0,1448798242 +91,1196,5.0,1448798104 +91,1198,5.0,1448798107 +91,1200,4.0,1448798180 +91,1210,5.0,1448798136 +91,1214,4.0,1448798206 +91,1240,5.0,1448798178 +91,1265,5.0,1448798300 +91,1270,5.0,1448798307 +91,1291,5.0,1448798140 +91,1573,4.0,1448798532 +91,1682,5.0,1448798342 +91,2028,5.0,1448798143 +91,2335,3.0,1448813382 +91,2379,3.0,1448814231 +91,2380,3.0,1448814231 +91,2381,3.0,1448814230 +91,2382,2.5,1448814268 +91,2571,5.0,1448798112 +91,2706,4.0,1448813169 +91,2791,5.0,1448814124 +91,2948,4.5,1448798580 +91,3114,5.0,1448798200 +91,3146,3.5,1448813361 +91,3387,3.0,1448814276 +91,3578,4.0,1448798170 +91,3623,4.0,1448798564 +91,3821,3.0,1448814280 +91,3869,4.5,1448814228 +91,3979,3.0,1448814200 +91,3996,4.0,1448798208 +91,4015,3.0,1448813368 +91,4084,3.5,1448814226 +91,4306,4.5,1448798338 +91,4340,3.0,1448814412 +91,4718,4.0,1448813183 +91,4886,5.0,1448798317 +91,4973,4.5,1448798341 +91,4993,5.0,1448798115 +91,5218,4.5,1448813064 +91,5418,5.0,1448798216 +91,5952,5.0,1448798134 +91,6482,2.0,1448813528 +91,6550,3.0,1448814312 +91,6763,3.5,1448814436 +91,7153,5.0,1448798114 +91,7317,4.0,1448813185 +91,7346,4.0,1448813189 +91,8360,4.5,1448813078 +91,8531,3.0,1448814393 +91,30825,4.0,1448814287 +91,33679,4.5,1448798548 +91,33794,5.0,1448798175 +91,34162,4.5,1448813022 +91,35836,4.0,1448813008 +91,43836,3.5,1448814434 +91,44022,4.5,1448813043 +91,44191,4.5,1448798234 +91,44972,3.0,1448814469 +91,45186,4.5,1448798488 +91,46865,2.5,1448814476 +91,50806,2.0,1448814443 +91,52694,3.5,1448814407 +91,54272,4.5,1448813111 +91,54286,5.0,1448798163 +91,54503,4.0,1448813293 +91,54732,3.0,1448813885 +91,57532,2.0,1448814418 +91,58559,5.0,1448798116 +91,59014,3.0,1448814399 +91,59315,5.0,1448798230 +91,59369,4.5,1448798219 +91,59900,3.0,1448813535 +91,66798,4.0,1448814401 +91,68358,4.5,1448798186 +91,68954,4.0,1448798188 +91,69122,4.5,1448813028 +91,71535,4.5,1448798331 +91,73017,4.5,1448813010 +91,74851,4.5,1448798475 +91,76093,5.0,1448798187 +91,78041,3.5,1448798561 +91,78499,5.0,1448798300 +91,79132,5.0,1448798165 +91,79185,4.0,1448798481 +91,79293,4.0,1448798492 +91,79428,3.0,1448814299 +91,80549,3.5,1448813209 +91,81229,5.0,1448798482 +91,81564,4.5,1448813080 +91,82852,3.5,1448814286 +91,85414,5.0,1448798233 +91,87232,5.0,1448798202 +91,89745,5.0,1448798191 +91,91500,3.5,1448798222 +91,91542,5.0,1448798645 +91,91630,4.5,1448798513 +91,92259,5.0,1448813059 +91,92507,4.5,1448798507 +91,93326,4.0,1448798554 +91,93510,4.0,1448813012 +91,94466,4.0,1448798161 +91,96610,5.0,1448798244 +91,96616,3.0,1448814395 +91,97913,4.5,1448798340 +91,98809,4.5,1448798239 +91,103335,4.5,1448813040 +91,103341,3.5,1448813127 +91,103810,5.0,1448798514 +91,103883,4.0,1448813037 +91,104218,3.5,1448814472 +91,104374,4.5,1448813046 +91,106487,3.0,1448798204 +91,106489,4.5,1448798214 +91,106782,4.5,1448813133 +91,109374,5.0,1448813013 +91,110102,5.0,1448798210 +91,111781,4.0,1448798496 +91,112138,4.0,1448814302 +91,112175,4.5,1448813019 +91,112623,4.5,1448798238 +91,112852,5.0,1448798144 +91,115617,5.0,1448798217 +91,116977,3.5,1448813890 +91,132157,2.5,1448814423 +91,134368,4.0,1448798654 +91,134853,4.0,1448813002 +91,138036,5.0,1448798537 +92,1,5.0,848526251 +92,2,3.0,848525932 +92,6,3.0,848526431 +92,10,2.0,848525661 +92,11,4.0,848525903 +92,19,1.0,848525799 +92,21,5.0,848525799 +92,32,5.0,848525833 +92,34,5.0,848525764 +92,39,2.0,848525833 +92,44,3.0,848526389 +92,45,4.0,848526550 +92,47,5.0,848525730 +92,50,5.0,848525799 +92,62,3.0,848526334 +92,76,3.0,848526084 +92,95,3.0,848525971 +92,110,5.0,848525661 +92,112,4.0,848526594 +92,141,4.0,848526274 +92,145,3.0,848526572 +92,150,3.0,848525510 +92,151,3.0,848526334 +92,153,3.0,848525554 +92,160,2.0,848525873 +92,161,5.0,848525661 +92,163,5.0,848526550 +92,165,3.0,848525554 +92,172,1.0,848526406 +92,173,3.0,848525932 +92,177,2.0,848526037 +92,181,3.0,848526572 +92,186,3.0,848526334 +92,188,3.0,848526060 +92,193,1.0,848526484 +92,196,3.0,848526274 +92,204,4.0,848526363 +92,208,3.0,848525661 +92,223,5.0,848526508 +92,224,3.0,848526484 +92,231,3.0,848525589 +92,235,4.0,848526363 +92,237,3.0,848526529 +92,247,5.0,848526037 +92,252,3.0,848526334 +92,253,2.0,848525694 +92,266,2.0,848525873 +92,273,3.0,848526005 +92,288,3.0,848525694 +92,292,3.0,848525624 +92,293,4.0,848526363 +92,296,4.0,848525510 +92,300,4.0,848525764 +92,315,2.0,848525932 +92,316,1.0,848525589 +92,317,2.0,848525873 +92,318,5.0,848525624 +92,319,4.0,848526711 +92,328,3.0,848526037 +92,329,3.0,848525624 +92,330,3.0,848526061 +92,332,3.0,848526061 +92,333,3.0,848526431 +92,339,3.0,848525694 +92,344,2.0,848525554 +92,349,3.0,848525589 +92,350,2.0,848525873 +92,353,3.0,848526389 +92,355,2.0,848526484 +92,356,4.0,848525589 +92,357,3.0,848525833 +92,362,3.0,848526594 +92,364,1.0,848525730 +92,366,2.0,848526037 +92,367,3.0,848525730 +92,368,4.0,848526363 +92,370,3.0,848526431 +92,377,3.0,848525730 +92,380,4.0,848525510 +92,413,1.0,848526671 +92,420,1.0,848525833 +92,426,2.0,848526037 +92,432,2.0,848525903 +92,434,3.0,848525624 +92,435,3.0,848525903 +92,440,3.0,848525873 +92,442,3.0,848525971 +92,454,2.0,848525694 +92,455,3.0,848526615 +92,457,4.0,848525554 +92,466,2.0,848526508 +92,471,4.0,848526594 +92,474,4.0,848525932 +92,480,4.0,848525624 +92,485,3.0,848526431 +92,497,4.0,848526484 +92,500,3.0,848525730 +92,508,3.0,848526251 +92,509,1.0,848525932 +92,520,2.0,848526508 +92,527,4.0,848525799 +92,529,3.0,848526615 +92,532,3.0,848526005 +92,539,3.0,848525799 +92,543,3.0,848526632 +92,551,3.0,848526363 +92,552,1.0,848526529 +92,553,5.0,848525971 +92,555,5.0,848526458 +92,587,3.0,848525764 +92,588,3.0,848525554 +92,589,5.0,848525694 +92,590,4.0,848525510 +92,592,3.0,848525510 +92,595,5.0,848525589 +92,597,2.0,848525764 +92,606,2.0,848526061 +92,608,5.0,848526005 +92,610,3.0,848526615 +92,648,5.0,848526431 +92,736,2.0,848526274 +92,778,5.0,848526711 +92,780,2.0,848526334 +93,1,4.0,1304992014 +93,11,3.5,1304992956 +93,17,4.0,1304992470 +93,21,5.0,1304992496 +93,25,3.5,1304992612 +93,34,4.0,1304992044 +93,39,4.0,1304992650 +93,62,3.5,1304992545 +93,150,4.0,1304992002 +93,208,3.0,1304992201 +93,260,4.0,1304991771 +93,265,3.5,1304729472 +93,266,3.5,1304993113 +93,337,4.0,1304993047 +93,339,4.5,1304992536 +93,342,3.5,1304729463 +93,357,3.5,1304992467 +93,364,3.5,1304991727 +93,368,3.5,1304993029 +93,377,4.5,1304991695 +93,457,4.0,1304991813 +93,508,4.0,1304992794 +93,515,2.5,1304729519 +93,529,4.0,1304729511 +93,539,4.0,1304992253 +93,586,2.5,1304992362 +93,587,3.5,1304992164 +93,588,3.0,1304991715 +93,590,4.5,1304991644 +93,592,3.5,1304992145 +93,595,4.0,1304991672 +93,597,3.5,1304991976 +93,648,3.5,1304992476 +93,733,3.0,1304992157 +93,858,4.5,1304991806 +93,898,5.0,1304730634 +93,902,2.5,1304729528 +93,904,4.5,1304993084 +93,908,4.0,1304993135 +93,910,3.5,1304729500 +93,912,4.5,1304992427 +93,914,3.5,1304729546 +93,919,4.0,1304992912 +93,920,4.0,1304993128 +93,923,4.0,1304993105 +93,1073,3.5,1304991872 +93,1079,4.0,1304993056 +93,1097,4.0,1304991877 +93,1193,4.0,1304992150 +93,1197,4.0,1304992131 +93,1198,4.0,1304991788 +93,1225,4.0,1304992590 +93,1234,4.0,1304993139 +93,1240,3.0,1304991885 +93,1242,3.5,1304729440 +93,1246,3.5,1304992621 +93,1247,3.5,1304992965 +93,1259,4.0,1304992601 +93,1265,4.0,1304991801 +93,1270,3.5,1304992197 +93,1278,4.0,1304993180 +93,1291,3.5,1304992081 +93,1304,4.5,1304992945 +93,1307,4.0,1304992566 +93,1380,3.5,1304992785 +93,1387,3.0,1304992367 +93,1393,3.5,1304992382 +93,1394,4.0,1304992980 +93,1580,3.5,1304992244 +93,1610,4.0,1304992258 +93,1641,4.5,1304992689 +93,1682,3.5,1304992372 +93,1704,4.0,1304992435 +93,1721,4.0,1304992542 +93,1747,5.0,1304729481 +93,1784,3.5,1304992334 +93,1912,4.0,1304729620 +93,1923,3.5,1304992089 +93,1961,4.5,1304992108 +93,1968,3.5,1304992212 +93,2011,3.0,1304992510 +93,2081,2.5,1304992707 +93,2100,2.5,1304729449 +93,2115,3.5,1304992236 +93,2194,4.5,1304992654 +93,2268,4.5,1304992659 +93,2291,3.5,1304992445 +93,2302,4.0,1304992644 +93,2321,4.0,1304992988 +93,2355,3.0,1304992274 +93,2396,4.0,1304992573 +93,2406,3.5,1304992693 +93,2470,2.5,1304993132 +93,2599,4.0,1304992774 +93,2657,3.0,1304992753 +93,2716,3.5,1304991839 +93,2797,4.0,1304992605 +93,2918,4.0,1304992288 +93,3072,3.5,1304729573 +93,3101,4.0,1304993022 +93,3114,4.0,1304992431 +93,3176,3.0,1304992724 +93,3255,3.0,1304729539 +93,3256,3.5,1304729577 +93,3317,4.0,1304730537 +93,3408,3.5,1304992717 +93,3471,3.5,1304992675 +93,3751,4.0,1304992393 +93,3897,5.0,1304992126 +93,4014,3.5,1304993193 +93,4022,3.5,1304992208 +93,4027,3.5,1304992116 +93,4029,5.0,1304730462 +93,4085,3.5,1304992960 +93,4246,4.0,1304992617 +93,4306,3.0,1304991655 +93,4361,4.5,1304729607 +93,4886,3.0,1304992417 +93,4963,4.0,1304992228 +93,4979,4.5,1304992578 +93,4993,5.0,1304991776 +93,4995,4.0,1304992025 +93,5299,3.5,1304992638 +93,5377,3.5,1304992993 +93,5952,5.0,1304991738 +93,5989,4.0,1304992101 +93,6377,3.5,1304991702 +93,6711,4.0,1304992293 +93,6863,3.0,1304992773 +93,6942,3.5,1304993061 +93,7147,3.5,1304730389 +93,7153,5.0,1304991683 +93,8360,3.0,1304991855 +93,8636,3.5,1304992297 +93,8949,4.0,1304993087 +93,8961,5.0,1304991698 +93,27790,5.0,1304730326 +93,41566,4.0,1304992905 +93,41569,3.0,1304993097 +93,44195,4.0,1304730662 +93,45722,2.5,1304992317 +93,46578,4.0,1304992240 +93,49272,3.5,1304992218 +93,50872,3.5,1304992595 +93,54328,5.0,1304730410 +93,56367,5.0,1304992038 +93,59315,4.0,1304992192 +93,59615,2.5,1304993120 +93,60069,3.5,1304992010 +93,68954,5.0,1304992278 +93,72011,4.0,1304993011 +93,72998,4.0,1304991627 +93,74789,3.5,1304992976 +93,77561,4.0,1304992900 +93,78499,5.0,1304992451 +93,79132,4.0,1304730598 +93,81845,4.0,1304992984 +93,82459,4.0,1304993169 +93,84304,3.5,1304991723 +94,1,4.0,1291779829 +94,16,3.5,1291781117 +94,50,4.0,1291780058 +94,69,3.0,1291777340 +94,104,2.5,1291781042 +94,110,4.5,1291779579 +94,111,3.5,1291780487 +94,150,5.0,1291779548 +94,161,3.5,1291780453 +94,208,2.0,1291780169 +94,231,4.0,1291779818 +94,260,3.0,1291779564 +94,292,3.5,1291780604 +94,296,4.0,1291779736 +94,316,2.5,1291779708 +94,318,5.0,1291779616 +94,344,3.0,1291780145 +94,353,3.0,1291781185 +94,356,5.0,1291779585 +94,367,1.5,1291779806 +94,442,1.5,1291781070 +94,480,2.5,1291779540 +94,527,5.0,1291779717 +94,551,1.0,1291781004 +94,590,4.0,1292392510 +94,593,5.0,1291779634 +94,733,2.5,1291779941 +94,780,2.0,1291779697 +94,858,4.5,1291781482 +94,923,3.0,1291781464 +94,1049,3.0,1291777310 +94,1089,2.5,1291780484 +94,1131,4.5,1291781501 +94,1172,3.5,1291781459 +94,1193,3.5,1291779824 +94,1198,2.5,1291780026 +94,1213,4.0,1291780363 +94,1222,4.0,1291780634 +94,1233,1.5,1291780751 +94,1246,3.0,1291780969 +94,1252,3.5,1291781469 +94,1265,2.0,1291780019 +94,1270,4.0,1291779596 +94,1393,3.0,1291780592 +94,1552,2.5,1291781119 +94,1580,3.0,1291779528 +94,1610,4.0,1291780451 +94,1617,3.5,1291779626 +94,1653,4.0,1291780889 +94,1676,4.0,1291781072 +94,1682,4.0,1291780472 +94,1704,4.5,1291780191 +94,1721,4.5,1291779614 +94,1726,2.0,1291777522 +94,1777,2.5,1291781044 +94,1784,3.5,1291780064 +94,1961,4.0,1291779810 +94,1962,4.0,1292392507 +94,2012,2.5,1291780343 +94,2028,5.0,1291779546 +94,2115,1.0,1291780076 +94,2324,5.0,1291780553 +94,2329,4.5,1291780430 +94,2423,4.0,1291777298 +94,2501,4.5,1292392496 +94,2571,4.5,1291779758 +94,2628,1.0,1291780335 +94,2692,2.5,1291780964 +94,2706,3.5,1291779761 +94,2710,1.5,1291780347 +94,2762,3.0,1291779570 +94,2795,3.5,1291777280 +94,2804,4.0,1291781145 +94,2858,4.0,1291779537 +94,2916,2.0,1291780196 +94,2959,4.5,1291779525 +94,3105,4.5,1292392529 +94,3147,4.5,1291780171 +94,3175,1.5,1291780877 +94,3178,4.0,1291777330 +94,3243,1.5,1291777466 +94,3409,2.5,1291777325 +94,3441,0.5,1291777450 +94,3450,2.5,1291777293 +94,3471,3.0,1291780906 +94,3578,5.0,1291779610 +94,3593,0.5,1291777353 +94,3753,4.0,1291780599 +94,3948,3.5,1291780358 +94,3949,4.5,1291781033 +94,4011,3.0,1291780351 +94,4014,3.5,1291781096 +94,4022,4.0,1291780054 +94,4226,4.5,1291780090 +94,4306,5.0,1291779549 +94,4878,4.0,1291780425 +94,4973,4.5,1291779803 +94,4993,4.5,1291779544 +94,4995,5.0,1291779591 +94,5010,4.0,1291781082 +94,5218,3.5,1291780951 +94,5349,4.0,1291779535 +94,5418,4.0,1291779744 +94,5445,2.5,1291779700 +94,5464,3.5,1291777250 +94,5502,1.5,1291780622 +94,5679,2.5,1291780996 +94,5952,4.0,1291779657 +94,5989,4.5,1291779740 +94,5991,4.0,1291777241 +94,6016,3.0,1291781112 +94,6365,2.5,1291779623 +94,6373,2.5,1291781129 +94,6377,4.0,1291779714 +94,6378,1.0,1291781066 +94,6539,3.5,1291779733 +94,6552,3.5,1291777509 +94,6711,1.5,1291779692 +94,6863,4.0,1291781010 +94,6870,3.5,1292392675 +94,6874,3.5,1291779659 +94,6934,1.5,1291780177 +94,7153,4.5,1291779589 +94,7254,2.0,1291781215 +94,7361,3.0,1291779577 +94,7438,2.0,1291779607 +94,8132,4.5,1292392486 +94,8360,3.5,1291779652 +94,8464,3.0,1291780898 +94,8636,3.5,1291779827 +94,8644,3.0,1291780974 +94,8645,3.5,1292392653 +94,8781,3.0,1291777481 +94,8784,2.5,1291780596 +94,8798,2.5,1291781001 +94,8873,2.5,1292392659 +94,8874,2.0,1291780469 +94,8949,1.5,1291781025 +94,8961,3.0,1291779663 +94,30707,4.5,1291780881 +94,30749,4.5,1292392561 +94,30793,1.0,1291781212 +94,32587,4.0,1291779636 +94,33166,4.5,1292392492 +94,33660,4.5,1292392483 +94,33794,3.0,1291780509 +94,34162,3.5,1291780992 +94,34405,3.5,1291781105 +94,35836,4.5,1291780442 +94,39292,3.5,1292392712 +94,40414,4.0,1292392598 +94,40819,4.0,1292392488 +94,44191,4.0,1291779648 +94,44195,3.0,1291781085 +94,44204,3.0,1292392700 +94,45722,2.5,1291779888 +94,46578,4.0,1291780166 +94,46976,4.0,1291781133 +94,47099,3.5,1292392505 +94,48394,3.0,1291780552 +94,48516,4.0,1291779751 +94,48738,4.0,1292392595 +94,48780,3.5,1292392628 +94,50068,3.5,1292392633 +94,50872,3.0,1291780606 +94,51662,4.0,1291779813 +94,53996,2.5,1291781053 +94,54272,3.0,1291780941 +94,54503,3.0,1291780984 +94,55118,4.0,1292392685 +94,55820,3.0,1291780476 +94,56174,2.5,1291780610 +94,56367,3.5,1291781204 +94,58559,4.0,1291780084 +94,58706,4.0,1291781289 +94,59315,3.0,1291779704 +94,59784,5.0,1292392763 +94,60069,5.0,1291780489 +94,63062,4.0,1292392523 +94,63082,3.5,1291780148 +94,64614,4.0,1292392650 +94,64620,3.5,1292392670 +94,64622,3.5,1292392500 +94,64957,4.5,1291781225 +94,68358,3.5,1292392637 +94,68954,5.0,1291779884 +94,69122,4.5,1291780012 +94,69481,3.5,1292392716 +94,70286,4.0,1291779687 +94,71535,4.0,1291780570 +94,72641,4.5,1292392773 +94,72998,4.0,1291780456 +94,74458,2.5,1291780910 +94,76251,3.0,1291780495 +94,78499,4.0,1291780580 +94,79132,4.0,1291779510 +95,6,5.0,1016317227 +95,9,3.0,1016317600 +95,11,4.0,1025556196 +95,16,5.0,1016316940 +95,19,4.0,1016317584 +95,24,4.0,1018816035 +95,63,4.0,1016317617 +95,70,4.0,1019023190 +95,86,4.0,1018816147 +95,88,4.0,1016317721 +95,174,2.0,1016317489 +95,196,3.0,1016317721 +95,198,4.0,1016317489 +95,222,4.0,1016317856 +95,223,5.0,1018815674 +95,236,4.0,1016317519 +95,253,4.0,1019023054 +95,260,5.0,1018816569 +95,261,5.0,1016317793 +95,266,5.0,1016317396 +95,296,5.0,1018816557 +95,328,3.0,1019023101 +95,329,3.0,1016317617 +95,332,3.0,1019023293 +95,339,4.0,1016317208 +95,357,4.0,1025556197 +95,360,3.0,1016317696 +95,364,4.0,1025556197 +95,366,4.0,1016317140 +95,382,4.0,1019023230 +95,457,4.0,1016317171 +95,480,4.0,1016316990 +95,519,2.0,1016317171 +95,553,4.0,1025556197 +95,593,5.0,1018816582 +95,610,4.0,1019023054 +95,724,3.0,1019023206 +95,733,4.0,1025556197 +95,778,5.0,1016317192 +95,780,4.0,1016317773 +95,785,4.0,1016317193 +95,879,3.0,1019023343 +95,968,5.0,1018816003 +95,999,4.0,1016317074 +95,1022,4.0,1016317584 +95,1037,3.0,1016317074 +95,1059,5.0,1025556197 +95,1088,5.0,1016317856 +95,1093,4.0,1018815698 +95,1127,4.0,1018815528 +95,1130,5.0,1019023148 +95,1198,5.0,1018816548 +95,1210,5.0,1016316940 +95,1214,5.0,1019022863 +95,1215,5.0,1019022916 +95,1219,5.0,1019022863 +95,1246,4.0,1025556197 +95,1258,4.0,1019022885 +95,1261,5.0,1019022916 +95,1268,5.0,1016317806 +95,1320,4.0,1019023230 +95,1321,5.0,1019023029 +95,1322,2.0,1019023613 +95,1327,4.0,1019023230 +95,1330,4.0,1019023569 +95,1339,5.0,1019023054 +95,1342,4.0,1019023410 +95,1345,4.0,1019023029 +95,1347,5.0,1019023054 +95,1350,4.0,1019023148 +95,1370,4.0,1025556197 +95,1377,4.0,1025556197 +95,1387,5.0,1019022863 +95,1388,4.0,1019023343 +95,1389,4.0,1016317140 +95,1393,5.0,1016317157 +95,1407,4.0,1019022937 +95,1513,4.0,1018816073 +95,1644,3.0,1019023410 +95,1645,4.0,1019022937 +95,1655,2.0,1019023252 +95,1690,3.0,1019023190 +95,1717,4.0,1019023169 +95,1762,3.0,1019023230 +95,1909,4.0,1016317584 +95,1917,3.0,1016317074 +95,1969,4.0,1019023569 +95,1970,4.0,1019023293 +95,1971,4.0,1019023650 +95,1972,3.0,1019023736 +95,1973,3.0,1016317396 +95,1974,4.0,1019023410 +95,1975,3.0,1019023569 +95,1982,5.0,1019022916 +95,1983,3.0,1019023517 +95,1984,3.0,1016317090 +95,1985,2.0,1019023463 +95,1988,3.0,1019023369 +95,1994,4.0,1019022970 +95,1995,3.0,1019023613 +95,2003,5.0,1019023101 +95,2004,4.0,1019023169 +95,2005,5.0,1025556197 +95,2013,3.0,1018816035 +95,2026,3.0,1019023410 +95,2028,4.0,1016316964 +95,2069,3.0,1016317111 +95,2081,4.0,1025556197 +95,2105,3.0,1025556197 +95,2107,4.0,1019023517 +95,2109,5.0,1019022736 +95,2113,2.0,1019023768 +95,2118,4.0,1019023078 +95,2119,5.0,1019023569 +95,2120,3.0,1019023230 +95,2121,2.0,1019023343 +95,2123,4.0,1016317674 +95,2148,4.0,1019023190 +95,2149,3.0,1016317773 +95,2160,3.0,1019022937 +95,2163,3.0,1016317697 +95,2167,4.0,1019023078 +95,2188,3.0,1018815528 +95,2193,5.0,1025556197 +95,2279,4.0,1019023540 +95,2294,4.0,1025556197 +95,2327,4.0,1019023343 +95,2336,4.0,1018815770 +95,2353,4.0,1025556197 +95,2369,3.0,1018815698 +95,2389,4.0,1019023275 +95,2394,4.0,1018816055 +95,2395,5.0,1018816073 +95,2396,4.0,1018816106 +95,2421,3.0,1016317157 +95,2428,4.0,1018815786 +95,2443,4.0,1018816035 +95,2445,3.0,1016317856 +95,2451,4.0,1019023275 +95,2455,4.0,1019023054 +95,2459,5.0,1019023275 +95,2461,4.0,1019023650 +95,2462,2.0,1019023753 +95,2465,3.0,1019023314 +95,2470,5.0,1025556197 +95,2485,4.0,1018816106 +95,2513,4.0,1019023517 +95,2541,4.0,1018815674 +95,2572,5.0,1018815528 +95,2580,4.0,1018815804 +95,2581,4.0,1018816003 +95,2599,4.0,1018815770 +95,2600,5.0,1018816171 +95,2617,4.0,1019023148 +95,2628,5.0,1016316859 +95,2641,3.0,1025556197 +95,2657,4.0,1019023078 +95,2672,3.0,1018816130 +95,2683,4.0,1018815560 +95,2694,4.0,1018815599 +95,2699,5.0,1018815560 +95,2701,3.0,1018816171 +95,2702,3.0,1018816130 +95,2706,5.0,1018815560 +95,2710,4.0,1018815599 +95,2713,3.0,1018815904 +95,2716,5.0,1018815804 +95,2717,4.0,1016317818 +95,2722,3.0,1018815674 +95,2746,4.0,1019023078 +95,2762,4.0,1018816106 +95,2787,4.0,1019023275 +95,2789,3.0,1019023252 +95,2793,5.0,1016317111 +95,2841,5.0,1018816106 +95,2858,5.0,1018815528 +95,2867,4.0,1019023101 +95,2868,4.0,1019023671 +95,2881,4.0,1018815698 +95,2888,3.0,1018815770 +95,2901,4.0,1018816035 +95,2907,5.0,1016317306 +95,2908,4.0,1018815599 +95,2928,4.0,1016317885 +95,2959,5.0,1018815786 +95,2976,3.0,1018815599 +95,2985,5.0,1025556197 +95,2987,5.0,1018816171 +95,3005,4.0,1018815599 +95,3016,4.0,1018815674 +95,3017,3.0,1019023314 +95,3018,3.0,1019023054 +95,3024,3.0,1019023314 +95,3033,5.0,1019022702 +95,3051,3.0,1018815560 +95,3081,5.0,1018816106 +95,3107,4.0,1016317872 +95,3146,4.0,1016317489 +95,3168,4.0,1016317535 +95,3185,4.0,1018816106 +95,3203,4.0,1018815674 +95,3255,4.0,1025556197 +95,3257,4.0,1016317396 +95,3258,4.0,1016317306 +95,3261,4.0,1016317208 +95,3264,4.0,1019023169 +95,3269,3.0,1016317600 +95,3273,3.0,1018816073 +95,3285,4.0,1018815574 +95,3298,4.0,1018815599 +95,3300,5.0,1018816035 +95,3391,2.0,1016317833 +95,3408,5.0,1018815770 +95,3409,4.0,1018815786 +95,3441,3.0,1016317074 +95,3448,3.0,1025556197 +95,3477,4.0,1016317773 +95,3481,5.0,1016316859 +95,3499,5.0,1019022937 +95,3510,5.0,1018815804 +95,3535,3.0,1019023102 +95,3578,5.0,1018815804 +95,3617,5.0,1018816073 +95,3623,3.0,1018815953 +95,3660,4.0,1019023369 +95,3693,3.0,1019023314 +95,3702,5.0,1016316990 +95,3709,3.0,1019023569 +95,3752,4.0,1018815916 +95,3764,3.0,1016317140 +95,3793,5.0,1018816171 +95,3826,2.0,1018815877 +95,3840,3.0,1019023613 +95,3843,3.0,1019023671 +95,3863,4.0,1018815615 +95,3877,2.0,1016317856 +95,3917,5.0,1019023102 +95,3918,4.0,1019023540 +95,3948,5.0,1025556197 +95,3961,2.0,1019023517 +95,3967,4.0,1025556197 +95,3994,3.0,1025556197 +95,4002,4.0,1025556197 +95,4008,4.0,1016317157 +95,4018,3.0,1016317519 +95,4030,4.0,1016317721 +95,4036,4.0,1019023029 +95,4081,4.0,1019022819 +95,4085,4.0,1025556197 +95,4105,5.0,1019022937 +95,4124,3.0,1016317253 +95,4128,5.0,1019022970 +95,4135,4.0,1019023054 +95,4140,5.0,1019022672 +95,4148,4.0,1019023078 +95,4205,4.0,1016316990 +95,4213,4.0,1019023569 +95,4222,3.0,1019023736 +95,4266,3.0,1016317253 +95,4321,5.0,1025556197 +95,4351,5.0,1016317519 +95,4369,5.0,1019022782 +95,4480,4.0,1019023569 +95,4490,4.0,1016316940 +95,4499,5.0,1025556197 +95,4501,4.0,1019023517 +95,4516,3.0,1016317227 +95,4520,5.0,1019022802 +95,4560,3.0,1019023736 +95,4561,4.0,1019022885 +95,4618,4.0,1019023671 +95,4636,2.0,1016317111 +95,4639,3.0,1018815528 +95,4670,4.0,1019023540 +95,4681,5.0,1025556197 +95,4682,4.0,1019023190 +95,4697,3.0,1016317721 +95,4700,4.0,1016317564 +95,4718,4.0,1025556197 +95,4734,4.0,1025556197 +95,4865,4.0,1019022970 +95,4949,2.0,1016316859 +95,4993,5.0,1018816582 +95,5025,5.0,1025556328 +95,5049,3.0,1025556197 +95,5080,3.0,1025556369 +95,5103,3.0,1025556197 +95,5203,4.0,1016317674 +95,5222,4.0,1025556344 +95,5292,4.0,1018816337 +95,5303,3.0,1018816326 +95,5308,4.0,1018816304 +95,5309,3.0,1018816304 +95,5342,2.0,1018816267 +95,5343,3.0,1018816267 +95,5346,4.0,1018816267 +95,5349,4.0,1025556297 +95,5378,5.0,1025556344 +95,5449,3.0,1025556285 +96,31,2.5,1223256331 +96,50,4.0,1223256642 +96,318,2.0,1223256805 +96,527,3.5,1223256797 +96,608,4.0,1223256741 +96,628,3.0,1223256282 +96,724,3.0,1223256349 +96,750,5.0,1223256660 +96,903,5.0,1223256822 +96,904,5.0,1223256630 +96,905,5.0,1223256671 +96,908,5.0,1223256689 +96,910,4.5,1223256312 +96,912,5.0,1223256587 +96,913,5.0,1223256273 +96,922,5.0,1223256562 +96,923,5.0,1223256720 +96,926,5.0,1223256572 +96,930,4.5,1223256771 +96,951,5.0,1223256610 +96,969,5.0,1223256296 +96,1084,3.0,1223256301 +96,1104,4.0,1223256696 +96,1212,5.0,1223256813 +96,1219,5.0,1223256782 +96,1235,4.0,1223256376 +96,1242,3.5,1223256264 +96,1247,4.0,1223256864 +96,1252,5.0,1223256591 +96,1267,4.0,1223256617 +96,1284,5.0,1223256583 +96,1285,4.0,1223256307 +96,1617,4.0,1223256759 +96,1747,2.5,1223256322 +96,1912,4.0,1223256353 +96,2186,3.0,1223256635 +96,2208,5.0,1223256883 +96,2248,3.0,1223256357 +96,2336,3.0,1223256336 +96,2692,3.0,1223256786 +96,2858,2.5,1223256713 +96,2908,4.0,1223256372 +96,3435,5.0,1223256513 +96,3730,2.5,1223256849 +96,3736,4.5,1223256540 +96,3739,5.0,1223256464 +96,4226,5.0,1223256556 +96,5008,4.0,1223256707 +96,5114,5.0,1223256543 +96,5878,3.0,1223256810 +96,6027,3.0,1223256730 +96,6254,5.0,1223256716 +96,6273,5.0,1223256876 +96,6650,5.0,1223256756 +96,7013,5.0,1223256621 +96,7056,4.0,1223256531 +96,7116,5.0,1223256727 +96,7361,4.0,1223256733 +96,7587,4.0,1223256745 +96,7831,4.0,1223256468 +96,8094,4.5,1223256833 +96,8128,4.5,1223256668 +96,8629,3.0,1223256472 +96,8765,4.0,1223256507 +96,25850,5.0,1223256486 +96,25868,4.0,1223256835 +96,25947,5.0,1223256567 +96,30712,4.0,1223256489 +96,32525,5.0,1223256595 +96,44555,3.0,1223256615 +96,47202,4.0,1223256800 +96,48394,3.5,1223256776 +96,48516,4.0,1223256656 +96,55118,4.0,1223256854 +96,55276,4.0,1223256680 +96,56367,3.5,1223256753 +97,1,1.0,1460342505 +97,32,4.5,1460343666 +97,50,5.0,1460342291 +97,110,1.0,1460342434 +97,223,3.5,1460343084 +97,293,2.0,1460343105 +97,296,4.0,1460343816 +97,318,4.5,1460342280 +97,356,2.5,1460342503 +97,364,1.5,1460342652 +97,480,2.5,1460342605 +97,527,1.5,1460342318 +97,541,4.0,1460342426 +97,588,0.5,1460342660 +97,589,2.0,1460342416 +97,593,3.5,1460342325 +97,595,1.5,1460342687 +97,597,2.0,1460342646 +97,608,4.0,1460343174 +97,750,4.0,1460342344 +97,858,3.0,1460342315 +97,899,4.5,1460342587 +97,904,3.5,1460342304 +97,908,2.0,1460342342 +97,912,1.5,1460342302 +97,923,4.0,1460342491 +97,926,4.0,1460342556 +97,1036,1.5,1460342421 +97,1084,2.5,1460342673 +97,1088,2.0,1460342716 +97,1089,2.0,1460343721 +97,1136,4.0,1460342440 +97,1193,2.5,1460342322 +97,1196,4.5,1460342349 +97,1197,4.5,1460342403 +97,1198,3.5,1460342334 +97,1200,2.0,1460342420 +97,1201,4.5,1460343815 +97,1203,4.5,1460342327 +97,1204,3.0,1460342517 +97,1207,3.5,1460342468 +97,1208,3.5,1460343956 +97,1210,4.0,1460342397 +97,1212,4.0,1460342494 +97,1213,3.0,1460342330 +97,1219,2.5,1460342480 +97,1221,2.5,1460342320 +97,1228,2.0,1460342498 +97,1240,2.0,1460342433 +97,1262,4.0,1460343849 +97,1265,1.5,1460342560 +97,1267,4.0,1460342471 +97,1270,2.5,1460342413 +97,1288,4.0,1460343682 +97,1291,3.0,1460342413 +97,1387,1.5,1460342563 +97,1527,3.5,1460342531 +97,1580,2.5,1460342451 +97,1721,0.5,1460342715 +97,1732,4.0,1460342762 +97,1884,3.5,1460343016 +97,1997,0.5,1460342648 +97,2000,3.0,1460342624 +97,2019,4.0,1460342337 +97,2028,1.0,1460342488 +97,2324,4.5,1460343845 +97,2395,4.0,1460343230 +97,2502,4.0,1460342786 +97,2542,3.5,1460343708 +97,2571,2.5,1460342388 +97,2716,2.5,1460342443 +97,2797,1.0,1460342654 +97,2918,1.5,1460342423 +97,2959,1.5,1460342389 +97,2997,3.5,1460343714 +97,3033,3.5,1460342705 +97,3253,3.0,1460342676 +97,3421,1.5,1460342685 +97,3471,3.0,1460342668 +97,3527,1.0,1460342613 +97,3552,1.5,1460342644 +97,3578,0.5,1460342547 +97,3868,3.5,1460343718 +97,3911,5.0,1460343773 +97,4226,3.0,1460343661 +97,4816,4.0,1460343802 +97,4878,5.0,1460342871 +97,4973,4.5,1460343052 +97,4979,3.5,1460343011 +97,5618,4.0,1460343114 +97,5902,2.5,1460343401 +97,5903,2.0,1460343083 +97,5952,2.5,1460342395 +97,5971,4.0,1460344057 +97,6711,4.0,1460343048 +97,6863,4.0,1460343701 +97,7153,3.0,1460342391 +97,7361,3.5,1460343777 +97,8376,3.5,1460342807 +97,8641,4.0,1460343798 +97,8784,1.5,1460343379 +97,8949,3.0,1460343218 +97,8950,1.5,1460343699 +97,30810,5.0,1460342855 +97,31658,3.5,1460343862 +97,33004,3.5,1460342888 +97,33679,2.0,1460343786 +97,34437,3.0,1460343233 +97,35836,3.5,1460343228 +97,44199,4.5,1460342819 +97,44555,4.5,1460343328 +97,46578,5.0,1460342986 +97,46970,3.0,1460343800 +97,46976,4.5,1460343057 +97,48394,1.5,1460343121 +97,48516,2.0,1460342400 +97,54503,4.0,1460342777 +97,55269,4.5,1460343087 +97,55820,4.0,1460343726 +97,56367,4.0,1460342758 +97,56782,4.5,1460342789 +97,58559,2.0,1460342393 +97,58998,1.5,1460343388 +97,61024,4.0,1460342851 +97,72226,4.0,1460343331 +97,91529,1.0,1460342589 +97,94959,3.5,1460343371 +97,114662,1.0,1460342797 +98,5,3.0,1459405466 +98,39,3.0,1459405274 +98,296,4.5,1459405871 +98,339,3.5,1459405698 +98,356,4.5,1459405061 +98,357,3.5,1459405701 +98,597,5.0,1459405239 +98,724,5.0,1459405507 +98,902,5.0,1459405325 +98,920,3.5,1459405340 +98,1197,4.5,1459405035 +98,1198,5.0,1459405031 +98,1215,5.0,1459405397 +98,1261,4.0,1459405419 +98,1527,5.0,1459405539 +98,1569,5.0,1459405413 +98,1704,5.0,1459405043 +98,1721,5.0,1459405132 +98,1732,5.0,1459405119 +98,1967,4.0,1459405401 +98,2144,5.0,1459405443 +98,2193,2.5,1459405478 +98,2321,5.0,1459405606 +98,2572,5.0,1459405252 +98,2599,3.5,1459405423 +98,2617,5.0,1459405229 +98,2724,5.0,1459405410 +98,2762,4.0,1459405074 +98,2858,2.5,1459405039 +98,3081,3.0,1459405262 +98,4014,5.0,1459405197 +98,4246,5.0,1459405188 +98,4447,5.0,1459405186 +98,4878,4.0,1459405067 +98,5620,5.0,1459405375 +98,5943,3.0,1459405452 +98,6155,3.5,1459405271 +98,6564,3.0,1459405319 +98,6593,4.0,1459405332 +98,6874,5.0,1459405100 +98,7081,5.0,1459405753 +98,7154,5.0,1459405504 +98,7438,5.0,1459405098 +98,7444,5.0,1459405307 +98,7458,3.0,1459405160 +98,8360,5.0,1459405138 +98,8522,5.0,1459405771 +98,8533,5.0,1459405179 +98,8874,5.0,1459405104 +98,8969,5.0,1459405390 +98,25801,5.0,1459405765 +98,31685,5.0,1459405174 +98,45720,4.0,1459405166 +98,55280,3.5,1459405380 +98,56949,5.0,1459405344 +98,64034,5.0,1459405292 +98,68954,3.5,1459405048 +98,71535,5.0,1459405121 +98,71745,1.5,1459405437 +98,79132,3.5,1459405880 +98,81834,5.0,1459405111 +98,84374,5.0,1459405355 +98,88163,5.0,1459405578 +98,88810,5.0,1459405175 +98,106487,2.0,1459405127 +98,106782,4.5,1459405094 +98,115617,5.0,1459405107 +98,122904,5.0,1459404749 +98,148888,3.0,1459404907 +98,149830,3.0,1459404951 +98,156025,5.0,1459404758 +99,1,4.0,938586006 +99,2,2.0,950999958 +99,17,3.0,938586999 +99,28,3.0,938586999 +99,39,4.0,938587073 +99,47,1.0,938585500 +99,50,4.0,938585285 +99,105,3.0,938587407 +99,110,3.0,947519500 +99,154,3.0,938623596 +99,160,2.0,938586337 +99,170,2.0,938585857 +99,208,2.0,938586560 +99,296,3.0,938585556 +99,316,1.0,938586591 +99,318,5.0,947519825 +99,356,5.0,938584975 +99,357,5.0,938587407 +99,367,3.0,938585656 +99,377,4.0,938587203 +99,380,2.0,938587172 +99,455,1.0,938586663 +99,457,4.0,938585499 +99,468,3.0,938587407 +99,480,4.0,938586403 +99,497,3.0,938587034 +99,509,5.0,938587301 +99,527,4.0,938584894 +99,546,1.0,938586706 +99,588,3.0,938586006 +99,593,4.0,938585500 +99,595,5.0,938586006 +99,596,4.0,947519681 +99,608,5.0,938585500 +99,647,4.0,947519527 +99,720,5.0,938586021 +99,733,2.0,947519711 +99,736,3.0,938586662 +99,750,4.0,938623534 +99,838,4.0,938587172 +99,898,4.0,938587876 +99,899,4.0,938588239 +99,900,3.0,938588178 +99,902,3.0,938624252 +99,903,5.0,938588142 +99,904,4.0,938588142 +99,908,4.0,938588109 +99,909,3.0,938623596 +99,912,5.0,938587795 +99,913,4.0,938587916 +99,914,4.0,938623534 +99,918,5.0,938588010 +99,923,4.0,938587817 +99,924,3.0,938623596 +99,928,4.0,938587795 +99,951,4.0,938587876 +99,953,5.0,938587876 +99,968,4.0,938624591 +99,969,5.0,938588142 +99,1012,4.0,938588329 +99,1014,2.0,938624708 +99,1016,2.0,938588392 +99,1017,1.0,938624591 +99,1019,2.0,938588290 +99,1022,3.0,938588290 +99,1025,2.0,938624617 +99,1028,5.0,938623675 +99,1029,3.0,938587916 +99,1032,3.0,938588290 +99,1035,3.0,938623534 +99,1083,2.0,938624591 +99,1084,4.0,938624252 +99,1103,4.0,938588178 +99,1183,3.0,938585037 +99,1204,5.0,938623534 +99,1207,4.0,938623534 +99,1210,4.0,938584975 +99,1219,3.0,938623675 +99,1233,5.0,938584894 +99,1247,3.0,947519573 +99,1250,4.0,947519501 +99,1276,4.0,938624252 +99,1282,3.0,938587916 +99,1284,3.0,938587876 +99,1304,5.0,938623675 +99,1333,4.0,938624252 +99,1334,2.0,938588358 +99,1358,3.0,938585285 +99,1393,3.0,938587104 +99,1580,3.0,947519657 +99,1586,2.0,938585094 +99,1589,3.0,938585718 +99,1591,1.0,938586764 +99,1617,5.0,938585285 +99,1619,5.0,938585094 +99,1670,4.0,938584894 +99,1676,1.0,938585037 +99,1721,5.0,938586999 +99,1732,3.0,938585613 +99,1735,4.0,938587240 +99,1748,4.0,938549817 +99,1777,3.0,938587337 +99,1909,4.0,938586216 +99,1920,3.0,938586895 +99,1937,3.0,947519573 +99,1945,4.0,947519658 +99,1947,4.0,938623534 +99,1948,4.0,938624529 +99,1949,3.0,938624252 +99,1950,4.0,938623596 +99,1951,2.0,947519658 +99,1952,4.0,938624807 +99,2006,3.0,947519629 +99,2015,1.0,938623675 +99,2018,4.0,938587916 +99,2028,4.0,938584894 +99,2067,5.0,938624807 +99,2080,4.0,938588239 +99,2085,3.0,938624708 +99,2094,2.0,947519712 +99,2096,4.0,938588178 +99,2099,4.0,938587980 +99,2106,2.0,938584974 +99,2126,1.0,938585869 +99,2132,2.0,938623675 +99,2135,1.0,938624708 +99,2136,1.0,938624807 +99,2160,3.0,947519712 +99,2324,4.0,943444622 +99,2355,4.0,938586074 +99,2391,5.0,938585500 +99,2393,2.0,942783208 +99,2396,3.0,938586999 +99,2424,3.0,942783156 +99,2427,5.0,938584894 +99,2436,3.0,938549745 +99,2442,4.0,938623241 +99,2529,1.0,951000065 +99,2539,3.0,938623208 +99,2565,3.0,947519597 +99,2599,5.0,943444622 +99,2677,4.0,938549991 +99,2687,3.0,938586006 +99,2692,5.0,938549686 +99,2761,2.0,950999958 +99,2801,3.0,938587172 +99,2836,2.0,938549053 +99,2858,5.0,939314422 +99,2908,5.0,947519286 +99,2912,4.0,942783078 +99,2959,3.0,940223140 +99,2966,2.0,942783078 +99,2997,4.0,949880591 +99,3125,3.0,950999736 +99,3129,4.0,951000163 +99,3147,4.0,953428514 +99,3160,5.0,947519369 +99,3174,2.0,947519315 +99,3186,2.0,948412004 +99,3298,2.0,953399961 +99,3408,4.0,1015037861 +99,3578,1.0,1015038047 +99,3752,4.0,962144750 +99,3783,3.0,963871870 +99,3897,3.0,970943910 +99,3910,5.0,982280677 +99,3911,3.0,1015037811 +99,3948,2.0,1015038093 +99,3967,4.0,1015037795 +99,3996,4.0,982280581 +99,4014,4.0,1015038047 +99,4019,3.0,1044786615 +99,4022,3.0,982280624 +99,4027,3.0,1015037743 +99,4033,2.0,1015037795 +99,4034,5.0,982280553 +99,4226,4.0,1015037725 +99,4246,4.0,1015037951 +99,4380,5.0,1044786697 +99,4641,5.0,1015037824 +99,4881,4.0,1044786543 +99,4973,5.0,1015037811 +99,4993,5.0,1044786919 +99,4995,5.0,1015037662 +99,5013,4.0,1015037662 +99,5349,4.0,1025915895 +99,5952,4.0,1044786919 +99,5991,5.0,1044754204 +100,1,4.0,854193977 +100,3,4.0,854194024 +100,6,3.0,854194023 +100,7,3.0,854194024 +100,25,4.0,854193977 +100,32,5.0,854193977 +100,52,3.0,854194056 +100,62,3.0,854193977 +100,86,3.0,854194208 +100,88,2.0,854194208 +100,95,3.0,854193977 +100,135,3.0,854194086 +100,141,3.0,854193977 +100,608,4.0,854194024 +100,648,3.0,854193977 +100,661,3.0,854194086 +100,708,3.0,854194056 +100,733,3.0,854194024 +100,736,3.0,854193977 +100,745,4.0,854194208 +100,780,3.0,854193977 +100,786,3.0,854194056 +100,802,4.0,854194111 +100,1073,5.0,854194056 +100,1356,4.0,854194086 +101,145,3.5,1292402318 +101,163,2.5,1292402288 +101,172,2.5,1292402307 +101,196,3.5,1292402305 +101,260,4.0,1292402500 +101,315,2.0,1292402324 +101,318,4.0,1292402404 +101,370,2.5,1292402282 +101,457,3.5,1292402634 +101,520,2.5,1292402274 +101,527,4.5,1292402397 +101,541,4.0,1292402458 +101,589,4.5,1292402496 +101,762,2.5,1292402330 +101,1036,3.5,1292402569 +101,1196,4.5,1292402493 +101,1198,5.0,1292402603 +101,1200,4.5,1292402446 +101,1210,4.5,1292402512 +101,1214,3.5,1292402444 +101,1240,3.5,1292402503 +101,1270,4.5,1292402504 +101,1291,4.5,1292402584 +101,1374,4.5,1292402509 +101,1376,4.5,1292402299 +101,1610,4.0,1292402616 +101,1909,3.0,1292402316 +101,2000,3.5,1292402618 +101,2001,4.0,1292402302 +101,2019,4.0,1292402401 +101,2028,4.5,1292402651 +101,2268,3.5,1292402682 +101,2302,2.5,1292402269 +101,2353,4.0,1292402271 +101,2571,4.5,1292402491 +101,2699,3.0,1292402279 +101,2716,3.5,1292402688 +101,2770,3.0,1292402332 +101,3147,4.0,1292402692 +101,3471,4.0,1292402294 +101,3527,3.5,1292402724 +101,4993,5.0,1292402643 +101,5952,5.0,1292402713 +101,7153,4.5,1292402711 +101,26701,4.0,1292402719 +101,27611,4.5,1292402460 +101,33794,5.0,1292402625 +101,44199,4.0,1292402696 +101,54286,4.0,1292402671 +101,56921,4.0,1292402507 +101,58559,5.0,1292402610 +101,68237,4.0,1292402716 +101,68358,4.5,1292402497 +101,70286,4.5,1292402675 +101,79132,5.0,1292402393 +102,14,4.0,957895013 +102,25,4.0,956599039 +102,28,4.0,956590655 +102,34,4.0,956591671 +102,35,4.0,957894204 +102,36,4.0,956598974 +102,37,1.0,959976593 +102,45,4.0,957894251 +102,47,4.0,958248432 +102,50,4.0,956598567 +102,52,4.0,956600232 +102,58,4.0,956598787 +102,70,2.0,957980283 +102,78,4.0,957895295 +102,94,2.0,957895047 +102,111,5.0,956590822 +102,117,4.0,958248486 +102,125,4.0,957895967 +102,147,4.0,957894564 +102,150,4.0,957893991 +102,159,4.0,957894848 +102,162,5.0,956598725 +102,194,4.0,957894450 +102,202,4.0,957895469 +102,224,4.0,957894935 +102,235,4.0,956599987 +102,246,5.0,956598609 +102,247,5.0,957893897 +102,253,3.0,957895080 +102,260,5.0,956598697 +102,261,3.0,957894400 +102,272,4.0,957893763 +102,280,4.0,957894358 +102,296,4.0,956591745 +102,300,4.0,957894232 +102,303,4.0,957895736 +102,314,2.0,956598995 +102,318,3.0,956598677 +102,334,4.0,956599916 +102,337,5.0,957893949 +102,342,4.0,957896110 +102,345,4.0,956600309 +102,346,3.0,956599860 +102,348,4.0,956598960 +102,352,4.0,957895947 +102,382,3.0,957895251 +102,410,3.0,958249214 +102,417,4.0,958249107 +102,434,4.0,958248568 +102,441,4.0,958248859 +102,457,3.0,956600134 +102,471,5.0,958248997 +102,474,3.0,956600183 +102,492,4.0,958249091 +102,501,4.0,957894006 +102,506,3.0,957894532 +102,507,3.0,957894532 +102,508,2.0,957894170 +102,527,4.0,956590890 +102,529,4.0,956600199 +102,532,4.0,957980250 +102,535,4.0,957893915 +102,538,4.0,957894170 +102,541,4.0,956590911 +102,549,4.0,956591782 +102,551,4.0,957980939 +102,555,3.0,958248454 +102,556,4.0,956590911 +102,562,5.0,957893672 +102,574,4.0,957894400 +102,581,4.0,957895604 +102,590,2.0,957894532 +102,592,4.0,957894505 +102,593,4.0,956598567 +102,594,5.0,957980883 +102,596,4.0,958250022 +102,599,5.0,956600050 +102,608,5.0,956591420 +102,616,4.0,958250102 +102,661,5.0,958250119 +102,745,4.0,956590890 +102,750,5.0,956590655 +102,766,4.0,957894204 +102,778,4.0,956600246 +102,780,2.0,957980779 +102,799,3.0,957980120 +102,800,4.0,956598803 +102,802,3.0,957895047 +102,858,5.0,956598493 +102,898,5.0,957895908 +102,899,5.0,956598942 +102,902,4.0,956600034 +102,903,5.0,956590727 +102,904,5.0,956590677 +102,905,4.0,956598677 +102,908,5.0,956590655 +102,909,4.0,956600065 +102,910,4.0,956598634 +102,912,5.0,956590727 +102,913,4.0,956590706 +102,914,5.0,957980851 +102,918,4.0,957980883 +102,919,4.0,956590822 +102,920,5.0,956591803 +102,921,4.0,956600034 +102,922,5.0,956590624 +102,923,5.0,956590609 +102,924,5.0,956598725 +102,926,5.0,956591655 +102,927,4.0,958248832 +102,928,4.0,956591745 +102,930,5.0,956590956 +102,931,4.0,956600103 +102,945,4.0,956591745 +102,948,5.0,957894084 +102,949,4.0,956598942 +102,950,5.0,957982142 +102,953,5.0,956600396 +102,954,4.0,956599860 +102,955,4.0,956598921 +102,965,4.0,956591596 +102,968,5.0,957980120 +102,969,4.0,956591745 +102,971,4.0,956598656 +102,973,5.0,957893763 +102,982,4.0,956600155 +102,994,4.0,956591420 +102,1009,3.0,959976680 +102,1010,4.0,958249168 +102,1012,5.0,957894142 +102,1019,4.0,959976634 +102,1028,5.0,957980851 +102,1029,5.0,958250063 +102,1035,5.0,957980939 +102,1036,4.0,959976817 +102,1046,4.0,956600103 +102,1057,5.0,957980883 +102,1061,2.0,957894450 +102,1073,4.0,957896110 +102,1077,4.0,956598725 +102,1078,4.0,956600265 +102,1079,5.0,956599182 +102,1080,4.0,956598921 +102,1081,4.0,957980939 +102,1082,4.0,956599941 +102,1084,4.0,956591548 +102,1086,5.0,956599833 +102,1089,4.0,956598825 +102,1090,2.0,957893991 +102,1093,3.0,957894807 +102,1094,4.0,956598634 +102,1095,4.0,956599987 +102,1096,4.0,956591745 +102,1097,4.0,956600083 +102,1103,4.0,956591762 +102,1104,5.0,956590843 +102,1120,4.0,957894466 +102,1124,4.0,957894532 +102,1125,5.0,957895999 +102,1128,4.0,957980222 +102,1131,4.0,956591390 +102,1132,4.0,956598841 +102,1136,5.0,956591803 +102,1147,4.0,956590727 +102,1148,4.0,956590890 +102,1171,4.0,957896110 +102,1172,4.0,956598768 +102,1173,5.0,957894648 +102,1175,5.0,957895828 +102,1178,5.0,956590655 +102,1179,5.0,957893541 +102,1185,4.0,956598825 +102,1186,4.0,956599082 +102,1188,3.0,956590405 +102,1189,4.0,956590911 +102,1192,5.0,957895604 +102,1193,4.0,956598567 +102,1196,5.0,957893656 +102,1197,5.0,958248642 +102,1198,4.0,956590465 +102,1200,5.0,956600284 +102,1201,5.0,957980614 +102,1203,4.0,956598898 +102,1204,5.0,956590934 +102,1207,5.0,956598547 +102,1208,5.0,956591671 +102,1209,5.0,956598841 +102,1210,3.0,956590405 +102,1211,5.0,957893839 +102,1212,5.0,956590677 +102,1213,5.0,956590890 +102,1214,4.0,956598869 +102,1217,5.0,956598803 +102,1218,5.0,956590706 +102,1219,5.0,956590862 +102,1220,4.0,957895908 +102,1221,5.0,956598567 +102,1222,5.0,956600155 +102,1224,4.0,956591420 +102,1225,4.0,956598567 +102,1227,5.0,957893972 +102,1228,5.0,956598656 +102,1230,5.0,956598547 +102,1231,4.0,956598725 +102,1233,5.0,956598656 +102,1234,4.0,956598869 +102,1235,4.0,956598869 +102,1237,4.0,956590822 +102,1238,4.0,957895908 +102,1240,4.0,956598942 +102,1242,4.0,956599082 +102,1243,4.0,956600349 +102,1244,5.0,956598768 +102,1245,5.0,956600349 +102,1246,3.0,957893991 +102,1247,5.0,956590822 +102,1248,5.0,956590677 +102,1249,4.0,956600199 +102,1250,4.0,956598590 +102,1251,5.0,956590862 +102,1252,5.0,956598547 +102,1253,5.0,956600349 +102,1256,4.0,956598609 +102,1258,5.0,957979592 +102,1259,4.0,956598898 +102,1260,5.0,956590609 +102,1262,4.0,956591803 +102,1263,5.0,957893782 +102,1264,4.0,957894084 +102,1265,5.0,957895874 +102,1266,5.0,956591624 +102,1267,5.0,956598547 +102,1268,3.0,957894707 +102,1270,3.0,958248668 +102,1272,5.0,957980677 +102,1273,4.0,956599013 +102,1276,5.0,956591745 +102,1278,4.0,956591762 +102,1279,4.0,957894685 +102,1281,5.0,956598768 +102,1282,4.0,956591782 +102,1283,5.0,956591636 +102,1284,5.0,956599013 +102,1285,4.0,956599039 +102,1287,4.0,956600217 +102,1288,5.0,956599039 +102,1289,4.0,956599821 +102,1292,5.0,957895947 +102,1293,5.0,956598697 +102,1296,4.0,956598697 +102,1299,4.0,956598567 +102,1300,4.0,956598656 +102,1302,3.0,957894204 +102,1304,5.0,956598742 +102,1307,3.0,956599971 +102,1320,3.0,957980378 +102,1321,4.0,957980041 +102,1323,2.0,957980557 +102,1327,4.0,957980426 +102,1333,5.0,956598961 +102,1339,3.0,957980250 +102,1340,5.0,957980072 +102,1341,4.0,957980173 +102,1342,3.0,957980222 +102,1345,5.0,957980072 +102,1346,3.0,957980400 +102,1347,5.0,957980222 +102,1348,4.0,956598590 +102,1350,5.0,957980146 +102,1357,4.0,956600328 +102,1358,3.0,956599100 +102,1361,5.0,956599182 +102,1366,4.0,957894870 +102,1374,4.0,959976792 +102,1377,2.0,958248516 +102,1380,4.0,957980962 +102,1384,4.0,956599821 +102,1387,4.0,956591596 +102,1389,2.0,957980557 +102,1393,2.0,957894170 +102,1394,4.0,956591671 +102,1405,4.0,958250139 +102,1407,4.0,957980094 +102,1411,5.0,957893740 +102,1420,5.0,957895586 +102,1449,5.0,957896110 +102,1466,4.0,957893897 +102,1516,4.0,958249411 +102,1517,4.0,957896069 +102,1535,4.0,956600328 +102,1554,4.0,957894126 +102,1584,2.0,957894285 +102,1594,2.0,957982093 +102,1610,3.0,959976817 +102,1611,4.0,957894309 +102,1617,5.0,957893520 +102,1644,2.0,957980451 +102,1648,5.0,957894935 +102,1663,4.0,958248949 +102,1673,4.0,957893804 +102,1690,4.0,957980283 +102,1701,4.0,957895947 +102,1704,2.0,957893804 +102,1717,4.0,957980283 +102,1719,4.0,956591390 +102,1729,4.0,958248432 +102,1732,5.0,958248454 +102,1734,4.0,956600034 +102,1788,4.0,957894505 +102,1797,4.0,956591420 +102,1836,4.0,957894505 +102,1841,4.0,957894606 +102,1856,2.0,957895650 +102,1883,4.0,956600328 +102,1884,3.0,958249148 +102,1888,1.0,957895013 +102,1895,2.0,957894870 +102,1923,3.0,956600246 +102,1924,5.0,957980072 +102,1927,4.0,956590934 +102,1929,4.0,956598898 +102,1931,4.0,956591762 +102,1939,5.0,957980677 +102,1941,4.0,956598869 +102,1944,5.0,956598898 +102,1945,5.0,957893719 +102,1946,4.0,956599013 +102,1947,5.0,956598898 +102,1950,5.0,956591624 +102,1952,5.0,956591803 +102,1953,5.0,956598697 +102,1954,5.0,957894100 +102,1955,4.0,956599162 +102,1956,4.0,956598825 +102,1957,4.0,956599039 +102,1958,4.0,957894084 +102,1960,5.0,956600328 +102,1961,4.0,957893949 +102,1962,3.0,956599162 +102,1965,4.0,957895999 +102,1966,5.0,956600379 +102,1968,4.0,957894285 +102,1969,4.0,957980426 +102,1974,5.0,957980309 +102,1982,4.0,956590465 +102,1987,4.0,957980451 +102,1994,4.0,957980072 +102,1997,5.0,957979592 +102,1999,3.0,957980400 +102,2000,2.0,957894204 +102,2001,2.0,957894807 +102,2003,2.0,957980222 +102,2010,4.0,956590862 +102,2014,4.0,958249253 +102,2018,4.0,958250044 +102,2019,4.0,956598510 +102,2020,4.0,956591624 +102,2021,4.0,959976656 +102,2023,2.0,957894667 +102,2043,3.0,959976680 +102,2064,4.0,956600232 +102,2065,4.0,957896110 +102,2067,4.0,956599916 +102,2068,5.0,956599137 +102,2069,4.0,956600217 +102,2070,4.0,956600309 +102,2075,4.0,956598634 +102,2076,5.0,956600134 +102,2078,4.0,958250044 +102,2080,4.0,958250044 +102,2085,4.0,956599039 +102,2087,4.0,957980851 +102,2088,4.0,957980999 +102,2090,4.0,958250119 +102,2097,4.0,957980196 +102,2099,5.0,957980939 +102,2100,4.0,959976656 +102,2105,3.0,959976680 +102,2107,3.0,957980451 +102,2109,4.0,958248997 +102,2110,3.0,958248471 +102,2112,2.0,957894627 +102,2118,4.0,957980072 +102,2121,2.0,957980426 +102,2124,4.0,958249214 +102,2130,5.0,956591745 +102,2132,5.0,956591576 +102,2135,4.0,957980962 +102,2137,5.0,958250078 +102,2138,4.0,958250102 +102,2140,3.0,959976634 +102,2144,3.0,958248878 +102,2145,3.0,957894667 +102,2146,3.0,957895251 +102,2160,5.0,956599971 +102,2163,4.0,957980309 +102,2174,4.0,956600134 +102,2186,5.0,956590677 +102,2193,3.0,959976680 +102,2194,4.0,957894309 +102,2202,4.0,957893782 +102,2203,4.0,956598921 +102,2208,4.0,956599137 +102,2219,4.0,956591624 +102,2227,4.0,956600002 +102,2240,1.0,957894741 +102,2243,3.0,957894126 +102,2248,4.0,956599117 +102,2268,4.0,957894627 +102,2282,4.0,957894037 +102,2289,4.0,956591576 +102,2290,4.0,957896048 +102,2291,4.0,956599082 +102,2300,5.0,956598787 +102,2301,4.0,958248997 +102,2303,5.0,956591624 +102,2312,3.0,957894400 +102,2313,5.0,956599941 +102,2318,5.0,956600363 +102,2321,3.0,956600183 +102,2333,4.0,957893857 +102,2336,4.0,956591745 +102,2344,4.0,957894424 +102,2345,3.0,957894126 +102,2351,5.0,957893656 +102,2352,3.0,957893897 +102,2356,4.0,958249590 +102,2361,5.0,956600065 +102,2362,4.0,956600265 +102,2366,4.0,957980072 +102,2367,3.0,957980309 +102,2391,4.0,958248391 +102,2395,4.0,956600183 +102,2396,4.0,956598656 +102,2397,3.0,957894400 +102,2406,3.0,958248949 +102,2407,3.0,958249041 +102,2420,3.0,957894883 +102,2423,3.0,958249076 +102,2439,4.0,957981110 +102,2453,3.0,956599941 +102,2454,5.0,957980196 +102,2455,3.0,957980146 +102,2459,5.0,957980343 +102,2517,3.0,957980283 +102,2520,4.0,957894989 +102,2524,4.0,957895047 +102,2527,4.0,957895736 +102,2541,1.0,957894760 +102,2548,1.0,957980378 +102,2599,4.0,956591624 +102,2616,3.0,958248533 +102,2628,4.0,959976656 +102,2639,4.0,957894989 +102,2644,4.0,957980072 +102,2657,5.0,957980146 +102,2662,4.0,957980677 +102,2664,5.0,957980041 +102,2672,3.0,957893541 +102,2683,4.0,957981224 +102,2692,4.0,956598825 +102,2702,3.0,957895189 +102,2710,3.0,957980173 +102,2712,4.0,957894170 +102,2716,4.0,957895908 +102,2717,2.0,957980426 +102,2725,4.0,957894057 +102,2726,5.0,957893520 +102,2728,4.0,956590405 +102,2729,5.0,956600363 +102,2730,4.0,956599860 +102,2731,4.0,956590956 +102,2734,4.0,957894627 +102,2739,4.0,956599137 +102,2746,4.0,957980173 +102,2747,4.0,957980094 +102,2749,4.0,957894788 +102,2750,4.0,956600284 +102,2757,4.0,957894309 +102,2762,4.0,956591782 +102,2764,4.0,958248454 +102,2779,4.0,958249021 +102,2784,4.0,957980222 +102,2791,4.0,956599971 +102,2793,4.0,958249508 +102,2795,4.0,958248911 +102,2797,3.0,959976634 +102,2804,4.0,956590911 +102,2820,4.0,956600309 +102,2844,4.0,957895278 +102,2852,4.0,956600349 +102,2857,4.0,957980883 +102,2858,5.0,956590890 +102,2859,3.0,956598547 +102,2863,3.0,956591576 +102,2866,4.0,957894037 +102,2871,4.0,956600134 +102,2872,3.0,957894309 +102,2883,4.0,958248928 +102,2890,4.0,957893857 +102,2902,2.0,957980469 +102,2915,4.0,956599891 +102,2917,4.0,956600002 +102,2918,4.0,957895909 +102,2919,4.0,956598825 +102,2920,5.0,956590677 +102,2921,4.0,956599182 +102,2922,4.0,956600103 +102,2925,5.0,956591420 +102,2926,4.0,957894170 +102,2929,5.0,957894726 +102,2932,5.0,957894251 +102,2944,5.0,957980704 +102,2947,4.0,956600155 +102,2948,4.0,956599891 +102,2949,4.0,956599971 +102,2951,5.0,956599039 +102,2966,4.0,956590465 +102,2968,4.0,959976634 +102,2970,5.0,957893672 +102,2973,5.0,956599061 +102,2987,3.0,956600083 +102,2993,4.0,959976817 +102,2997,4.0,957895846 +102,3006,4.0,956591596 +102,3007,5.0,956590934 +102,3011,4.0,956600309 +102,3018,4.0,957979592 +102,3019,4.0,956590890 +102,3022,5.0,956590465 +102,3037,4.0,956599941 +102,3039,3.0,957896083 +102,3060,3.0,956599100 +102,3061,4.0,957980939 +102,3062,5.0,957980704 +102,3066,4.0,957980740 +102,3067,4.0,956591576 +102,3068,4.0,956598768 +102,3071,3.0,957894126 +102,3072,4.0,956598921 +102,3081,4.0,957980120 +102,3088,5.0,957895947 +102,3089,4.0,956598510 +102,3093,5.0,957895708 +102,3095,5.0,957893696 +102,3098,4.0,956600217 +102,3129,4.0,957894685 +102,3130,3.0,958249773 +102,3134,5.0,956598547 +102,3145,4.0,957894400 +102,3147,2.0,957893930 +102,3152,5.0,956598869 +102,3163,4.0,956590956 +102,3168,5.0,957893915 +102,3169,3.0,956599162 +102,3176,2.0,957894309 +102,3179,2.0,957893972 +102,3196,4.0,956590727 +102,3198,4.0,956600183 +102,3201,4.0,956591596 +102,3203,4.0,956600379 +102,3210,4.0,956600112 +102,3218,4.0,957894788 +102,3223,4.0,956598768 +102,3224,4.0,956590706 +102,3246,4.0,956600396 +102,3250,4.0,957894588 +102,3251,3.0,957894505 +102,3253,3.0,958248878 +102,3255,4.0,957894588 +102,3262,3.0,957895233 +102,3264,4.0,958249181 +102,3265,4.0,958248367 +102,3266,4.0,957893696 +102,3273,3.0,956598432 +102,3285,2.0,957893451 +102,3301,2.0,957893451 +102,3307,5.0,956590465 +102,3308,2.0,956599821 +102,3317,2.0,957893364 +102,3324,2.0,957893405 +102,3327,2.0,957893405 +102,3329,4.0,957894564 +102,3342,3.0,956599874 +102,3350,4.0,956598787 +102,3354,1.0,957893451 +102,3358,4.0,958248911 +102,3360,4.0,957893804 +102,3361,3.0,956591745 +102,3362,5.0,956591576 +102,3363,4.0,956598898 +102,3365,5.0,956591391 +102,3386,3.0,957894788 +102,3396,4.0,956600309 +102,3408,2.0,957893364 +102,3418,4.0,956598961 +102,3420,4.0,957894424 +102,3421,3.0,956599061 +102,3422,4.0,958248928 +102,3424,5.0,956591391 +102,3426,4.0,957894870 +102,3428,4.0,957895495 +102,3435,5.0,956590584 +102,3441,2.0,957980779 +102,3448,3.0,957894667 +102,3451,5.0,957894482 +102,3461,4.0,956598974 +102,3462,5.0,956590677 +102,3468,4.0,956591655 +102,3469,4.0,956598590 +102,3471,4.0,956598677 +102,3478,3.0,957894760 +102,3479,4.0,959976656 +102,3481,4.0,956598345 +102,3484,1.0,957893428 +102,3499,4.0,956600014 +102,3503,5.0,957893629 +102,3504,5.0,956591420 +102,3508,5.0,957895708 +102,3511,1.0,957893428 +102,3519,4.0,957980758 +102,3521,4.0,957893972 +102,3526,2.0,957894267 +102,3528,2.0,957981575 +102,3529,4.0,957981575 +102,3538,3.0,959975630 +102,3543,4.0,956590822 +102,3544,4.0,957981594 +102,3545,4.0,957980704 +102,3546,5.0,956600396 +102,3547,4.0,956599061 +102,3548,4.0,956591762 +102,3549,5.0,957980939 +102,3550,5.0,957980250 +102,3551,5.0,956599039 +102,3552,4.0,958248161 +102,3564,2.0,957893471 +102,3565,3.0,957981663 +102,3566,4.0,959021992 +102,3588,4.0,956598590 +102,3590,4.0,957981516 +102,3591,3.0,956590822 +102,3606,5.0,957980851 +102,3608,4.0,957895846 +102,3609,4.0,957981575 +102,3614,4.0,957981492 +102,3618,4.0,959975659 +102,3633,4.0,959976792 +102,3635,4.0,958248322 +102,3639,4.0,959976817 +102,3655,5.0,959975764 +102,3668,4.0,959975910 +102,3671,4.0,959975744 +102,3675,4.0,959975931 +102,3676,5.0,959975786 +102,3678,4.0,959975848 +102,3679,4.0,959975786 +102,3680,4.0,959975786 +102,3681,4.0,959976043 +102,3683,5.0,959021771 +102,3685,4.0,959975885 +102,3698,3.0,959976106 +102,3700,4.0,959975764 +102,3702,4.0,959975848 +102,3703,4.0,959975848 +102,3704,3.0,959975848 +102,3706,3.0,959021792 +102,3708,3.0,959976044 +102,3724,4.0,959975991 +102,3729,4.0,959975910 +102,3730,5.0,959975991 +102,3733,4.0,959975875 +102,3734,4.0,959975875 +102,3735,5.0,959975910 +102,3740,3.0,961791852 +102,3741,5.0,959975726 +102,3742,4.0,959975744 +102,5060,5.0,957895828 +103,29,5.0,1117481918 +103,32,5.0,1117402453 +103,47,4.5,1117403556 +103,71,1.0,1117751197 +103,196,1.5,1117482144 +103,293,4.5,1117402575 +103,393,1.0,1117750991 +103,519,1.0,1117751173 +103,541,4.5,1117482289 +103,589,3.0,1117403705 +103,592,3.0,1117403402 +103,593,5.0,1117482311 +103,671,4.0,1117315933 +103,735,4.0,1117403064 +103,736,2.5,1117751391 +103,741,4.5,1117402874 +103,778,4.5,1117482329 +103,780,2.0,1117482051 +103,866,4.5,1117403711 +103,1037,1.0,1117315897 +103,1101,2.0,1117402549 +103,1129,2.5,1117315794 +103,1199,4.0,1117481923 +103,1200,4.0,1117403684 +103,1214,5.0,1117481910 +103,1215,3.5,1117403369 +103,1240,4.0,1117481941 +103,1241,3.5,1117403410 +103,1255,3.0,1117403375 +103,1261,4.5,1117315956 +103,1274,3.5,1117481903 +103,1320,3.0,1117315673 +103,1339,3.5,1117315810 +103,1385,1.5,1117751643 +103,1389,1.0,1117751071 +103,1527,4.0,1117403286 +103,1552,2.0,1117402521 +103,1562,1.5,1117315867 +103,1580,3.0,1117403717 +103,1584,3.5,1117402531 +103,1599,1.0,1117750982 +103,1645,3.5,1117402540 +103,1653,3.5,1117315619 +103,1676,4.0,1117482082 +103,1690,1.5,1117315761 +103,1721,3.0,1117751684 +103,1805,2.0,1117315940 +103,2021,1.5,1117315845 +103,2232,4.0,1117403832 +103,2329,4.5,1117482271 +103,2405,3.0,1117751407 +103,2549,1.0,1117403012 +103,2571,4.0,1117403661 +103,2605,3.0,1117315874 +103,2701,2.0,1117402713 +103,2858,4.0,1117482349 +103,2916,3.5,1117482016 +103,2959,5.0,1117403605 +103,2985,3.0,1117402464 +103,3033,4.0,1117482022 +103,3175,4.0,1117481971 +103,3527,3.5,1117403390 +103,3578,4.0,1117403674 +103,3697,2.0,1117482135 +103,3793,4.0,1117403280 +103,3863,3.0,1117482102 +103,4105,3.5,1117402645 +103,4226,4.5,1117402477 +103,4370,4.0,1117402625 +103,4475,4.0,1117404328 +103,4848,5.0,1117403775 +103,4896,4.0,1117403646 +103,4973,5.0,1117482339 +103,5349,4.0,1117403497 +103,5445,4.0,1117315690 +103,5528,3.5,1117402615 +103,5700,1.0,1117751135 +103,5816,4.0,1117403745 +103,6242,4.5,1117403493 +103,6333,4.0,1117315905 +103,6502,4.0,1117403477 +103,6790,4.0,1117481980 +103,6857,3.0,1117403312 +103,6874,5.0,1117315927 +103,6996,1.5,1117751234 +103,7022,5.0,1117403423 +103,7090,4.5,1117403588 +103,7235,4.5,1117751478 +103,7438,5.0,1117404267 +103,7481,2.0,1117482004 +103,8019,4.5,1117751459 +103,8093,3.5,1117751568 +103,8157,4.0,1117403597 +103,8636,3.5,1117402600 +104,110,4.5,1446673724 +104,150,4.0,1446674277 +104,260,4.0,1446673679 +104,293,4.5,1446673753 +104,296,4.0,1446674272 +104,318,5.0,1446673698 +104,589,5.0,1446673907 +104,733,4.5,1446673861 +104,1036,4.0,1446673896 +104,1196,3.5,1446673678 +104,1573,3.5,1446674058 +104,2571,3.5,1446673686 +104,3578,4.0,1446673781 +104,4993,4.0,1446673683 +104,4995,4.0,1446674309 +104,5628,3.5,1446674117 +104,5952,5.0,1446673694 +104,5956,4.0,1446674021 +104,6365,3.5,1446674123 +104,6539,4.5,1446673739 +104,6754,4.0,1446673986 +104,7153,4.0,1446673682 +104,7458,3.5,1446674066 +104,8371,3.5,1446674097 +104,8636,4.0,1446673947 +104,8644,4.0,1446673870 +104,8972,3.5,1446673980 +104,27611,3.5,1446673794 +104,33794,4.5,1446673711 +104,42738,3.5,1446674082 +104,47099,4.0,1446674352 +104,48043,4.5,1446673951 +104,48780,4.0,1446674197 +104,51662,4.0,1446673807 +104,53125,3.5,1446673875 +104,53972,4.0,1446673928 +104,57640,3.5,1446674148 +104,58559,4.5,1446673690 +104,59315,4.5,1446674306 +104,60069,4.5,1446674190 +104,64614,4.0,1446674365 +104,64957,4.0,1446674300 +104,65682,3.5,1446674037 +104,68358,4.0,1446674282 +104,70286,4.0,1446673836 +104,71135,3.5,1446674062 +104,71535,4.5,1446674335 +104,72998,4.5,1446673799 +104,73017,4.0,1446674429 +104,74458,4.5,1446674211 +104,76093,4.5,1446673706 +104,77561,4.0,1446673820 +104,79132,4.5,1446673718 +104,80219,4.0,1446674103 +104,82461,3.0,1446674088 +104,84152,4.5,1446674400 +104,84844,4.0,1446673934 +104,86644,4.0,1446674030 +104,88140,3.5,1446673778 +104,88744,4.0,1446673846 +104,89745,4.5,1446673714 +104,91529,4.5,1446673734 +104,92259,4.5,1446674215 +104,94777,3.5,1446673992 +104,103228,4.0,1446673791 +104,106072,3.5,1446673802 +104,106489,4.0,1446673764 +104,109487,4.5,1446673771 +104,111362,4.0,1446674330 +104,112171,3.0,1446674139 +104,112556,4.0,1446674396 +104,112852,5.0,1446673703 +104,115617,4.5,1446674193 +104,122882,4.5,1446673832 +104,122892,4.5,1446673756 +104,129354,3.5,1446674078 +105,6,3.0,1085578997 +105,10,3.5,1101130624 +105,11,3.5,1100533597 +105,16,5.0,1085573826 +105,19,2.0,1088058230 +105,21,3.5,1086093635 +105,22,2.5,1085574077 +105,25,4.0,1100533528 +105,32,4.0,1085581768 +105,36,3.0,1100533551 +105,47,4.0,1086094595 +105,50,4.5,1086272608 +105,52,4.0,1085574005 +105,95,2.5,1088058158 +105,104,3.5,1100533831 +105,105,3.5,1088058675 +105,110,3.5,1086093600 +105,111,4.0,1085574450 +105,150,3.0,1100529775 +105,151,3.5,1085581733 +105,153,3.0,1085581726 +105,164,4.0,1085640748 +105,165,3.5,1100533423 +105,168,2.0,1088058683 +105,173,2.0,1100533903 +105,196,2.5,1100533996 +105,198,4.0,1088058689 +105,208,2.5,1086093646 +105,253,3.5,1100533509 +105,260,3.0,1101130498 +105,272,3.5,1085579933 +105,288,3.5,1085574471 +105,290,2.5,1088058647 +105,292,3.5,1100533466 +105,293,4.0,1100533653 +105,296,4.0,1086094607 +105,300,3.0,1100533564 +105,305,2.0,1088058656 +105,316,3.0,1085579676 +105,318,3.0,1086272698 +105,339,3.0,1085579171 +105,344,3.0,1100533414 +105,348,3.5,1086101939 +105,349,3.0,1101130575 +105,356,3.0,1086094614 +105,357,4.0,1085579921 +105,364,3.5,1100533451 +105,367,3.5,1101130637 +105,368,3.0,1086095273 +105,370,3.0,1100534070 +105,377,3.0,1086094602 +105,380,3.5,1100529797 +105,381,2.5,1088058623 +105,382,4.0,1085579068 +105,383,3.0,1086093920 +105,410,3.0,1100533629 +105,420,2.5,1085581664 +105,427,3.0,1086095239 +105,431,4.0,1086095202 +105,432,1.5,1085573835 +105,434,3.5,1100533484 +105,435,2.5,1100533815 +105,440,3.0,1100533587 +105,442,3.5,1086101945 +105,454,3.5,1100533501 +105,457,3.5,1100529745 +105,458,3.0,1085640697 +105,459,3.0,1085640689 +105,468,3.0,1086094013 +105,471,4.0,1085574088 +105,474,3.5,1100533610 +105,480,3.0,1086094619 +105,481,3.5,1086094026 +105,497,2.5,1085574422 +105,500,3.0,1086101954 +105,508,3.5,1086095236 +105,509,4.0,1086093610 +105,522,3.5,1085640658 +105,535,4.0,1086094007 +105,539,3.0,1085574395 +105,541,4.0,1086095152 +105,555,3.5,1086095164 +105,586,3.0,1086093615 +105,587,3.5,1100533482 +105,589,3.5,1086272680 +105,590,3.0,1088058164 +105,592,4.0,1086101860 +105,593,4.0,1086272669 +105,597,3.5,1086095185 +105,608,4.0,1086094625 +105,648,3.0,1100533435 +105,653,4.0,1085574389 +105,688,2.5,1088058610 +105,733,3.0,1100533457 +105,736,2.5,1085581674 +105,762,3.5,1086093893 +105,778,4.0,1086095169 +105,780,2.5,1085574335 +105,784,2.5,1085581638 +105,785,4.0,1085581634 +105,788,2.5,1088058188 +105,832,3.0,1086101906 +105,852,2.5,1085581624 +105,858,4.5,1085581604 +105,866,3.5,1086095142 +105,912,3.5,1100533616 +105,923,4.0,1085573960 +105,996,3.0,1086274277 +105,1020,3.0,1086095103 +105,1027,3.0,1085579881 +105,1036,4.0,1085579867 +105,1047,4.0,1086095114 +105,1057,2.5,1088058573 +105,1061,4.0,1085579876 +105,1079,3.5,1085574410 +105,1080,3.5,1085573973 +105,1088,3.0,1086095128 +105,1089,4.0,1085581592 +105,1090,4.0,1085581582 +105,1094,4.0,1100534077 +105,1101,3.0,1085581557 +105,1120,4.0,1085579857 +105,1127,2.5,1086093583 +105,1129,3.5,1088058555 +105,1136,3.0,1085579179 +105,1147,4.5,1088058547 +105,1173,3.5,1085579028 +105,1175,4.0,1086095081 +105,1179,3.5,1086095072 +105,1183,4.0,1085574385 +105,1185,3.0,1086095090 +105,1186,4.0,1086095086 +105,1187,3.0,1088059092 +105,1193,4.0,1085579154 +105,1196,3.0,1101130590 +105,1198,4.0,1085579138 +105,1199,4.0,1086101872 +105,1200,3.5,1086101917 +105,1202,4.0,1085640597 +105,1206,4.0,1100532174 +105,1208,3.5,1085581565 +105,1210,3.0,1101130530 +105,1213,4.5,1086093572 +105,1214,4.0,1086095067 +105,1216,3.5,1085580336 +105,1220,3.5,1100533822 +105,1221,4.0,1085579162 +105,1222,4.5,1086272503 +105,1225,3.5,1086101890 +105,1227,3.5,1085580285 +105,1233,5.0,1085574426 +105,1234,3.5,1101125772 +105,1238,4.0,1086093860 +105,1240,4.0,1085581523 +105,1246,1.5,1085573954 +105,1247,5.0,1085573851 +105,1249,4.0,1088058527 +105,1252,4.5,1100534090 +105,1258,4.5,1086095076 +105,1259,3.0,1086272749 +105,1263,4.0,1100532241 +105,1265,4.0,1086095095 +105,1270,3.0,1085581535 +105,1275,3.0,1086093850 +105,1277,3.5,1088058500 +105,1278,4.0,1100534028 +105,1291,3.0,1085579145 +105,1298,3.5,1085640555 +105,1299,4.0,1101115984 +105,1300,3.0,1086093867 +105,1305,4.0,1085640535 +105,1307,4.0,1085579151 +105,1320,3.5,1086101897 +105,1321,3.5,1085579314 +105,1333,3.5,1086960518 +105,1346,3.0,1086094327 +105,1367,2.5,1085581530 +105,1370,3.5,1086960509 +105,1377,4.0,1085581548 +105,1378,2.5,1086093877 +105,1380,3.0,1086101845 +105,1387,4.5,1085578985 +105,1391,3.5,1086095038 +105,1392,3.0,1086960525 +105,1393,3.5,1086095060 +105,1394,3.5,1085573855 +105,1395,3.5,1085640550 +105,1407,3.0,1100533952 +105,1438,3.0,1086095042 +105,1466,4.0,1086094994 +105,1480,3.5,1086093488 +105,1499,2.0,1085580294 +105,1500,4.0,1085573987 +105,1503,3.0,1085579473 +105,1527,3.5,1088058180 +105,1544,3.0,1085574042 +105,1552,3.0,1085581486 +105,1573,3.5,1086095010 +105,1580,4.0,1086094990 +105,1586,2.0,1086274021 +105,1589,4.0,1085579848 +105,1608,3.0,1086095002 +105,1610,3.5,1100533713 +105,1617,5.0,1100532149 +105,1625,4.0,1100532012 +105,1635,4.0,1085640504 +105,1641,3.5,1085581466 +105,1673,4.0,1086094998 +105,1682,3.5,1086960071 +105,1721,3.0,1086101836 +105,1727,3.0,1088059037 +105,1729,4.5,1086095017 +105,1732,4.0,1086272767 +105,1784,4.0,1100606295 +105,1801,3.0,1101116025 +105,1810,3.0,1085640483 +105,1846,4.0,1101115552 +105,1882,2.0,1085579811 +105,1884,3.5,1088058417 +105,1889,4.0,1085580269 +105,1913,4.0,1086093482 +105,1917,3.0,1086093845 +105,1923,4.0,1100533705 +105,1953,3.5,1086093383 +105,1961,4.0,1085579817 +105,1962,3.0,1088058422 +105,1965,4.0,1085579802 +105,1968,3.0,1100533686 +105,1997,4.0,1086094947 +105,2000,3.5,1100533958 +105,2001,3.0,1085581438 +105,2002,3.0,1085581441 +105,2006,2.5,1088058369 +105,2011,2.5,1100533989 +105,2020,4.0,1088058393 +105,2023,3.0,1086094963 +105,2028,3.0,1086272795 +105,2058,3.0,1085581411 +105,2115,3.5,1100534034 +105,2116,2.0,1086093376 +105,2124,3.5,1088058350 +105,2126,3.0,1086093792 +105,2159,4.0,1085579444 +105,2167,3.0,1086094915 +105,2174,4.5,1085574328 +105,2194,3.0,1086272559 +105,2231,4.0,1085579823 +105,2243,4.0,1085581427 +105,2247,3.0,1088058975 +105,2268,3.5,1199439298 +105,2288,4.0,1086093836 +105,2291,4.0,1100533947 +105,2294,3.5,1085579021 +105,2329,4.0,1085581415 +105,2352,3.5,1085581448 +105,2353,2.5,1085581377 +105,2394,3.0,1088058358 +105,2395,3.0,1085574059 +105,2396,3.0,1100533577 +105,2405,3.0,1086093370 +105,2406,3.5,1100534113 +105,2423,3.0,1088058376 +105,2427,3.0,1088058315 +105,2455,3.0,1085579828 +105,2467,3.5,1086272645 +105,2478,3.5,1086094900 +105,2502,4.0,1086094924 +105,2513,2.0,1085640299 +105,2529,3.0,1085581383 +105,2539,3.0,1086094906 +105,2542,4.0,1086272637 +105,2551,4.0,1085640284 +105,2571,3.0,1085574342 +105,2580,4.0,1086272688 +105,2616,2.5,1086093818 +105,2617,3.5,1085574093 +105,2640,1.5,1085574070 +105,2671,3.0,1086094844 +105,2683,3.0,1085581341 +105,2692,3.5,1199439167 +105,2699,3.0,1086094851 +105,2701,1.0,1086102111 +105,2710,2.5,1086094875 +105,2712,3.0,1085581358 +105,2716,4.0,1086094848 +105,2717,3.0,1086274315 +105,2746,2.0,1086093346 +105,2762,3.5,1086960054 +105,2763,3.0,1086094859 +105,2790,3.0,1085579657 +105,2793,2.0,1088058933 +105,2797,3.0,1100533937 +105,2822,2.5,1086960284 +105,2858,4.0,1085581346 +105,2862,2.5,1085581054 +105,2890,3.0,1086272690 +105,2916,4.0,1086094829 +105,2917,4.0,1101125846 +105,2919,4.0,1085640230 +105,2942,3.0,1086094218 +105,2959,3.5,1086093785 +105,2968,4.0,1086094813 +105,2985,3.0,1086101839 +105,2987,3.0,1085574349 +105,2997,4.0,1085574365 +105,3006,4.0,1085640181 +105,3019,3.5,1101125851 +105,3020,4.0,1085640196 +105,3037,4.0,1085640140 +105,3072,3.0,1086093777 +105,3081,3.0,1086094809 +105,3082,3.0,1086094805 +105,3104,4.5,1085640164 +105,3127,3.0,1086094522 +105,3130,3.5,1085579412 +105,3141,2.5,1085641901 +105,3147,3.0,1085581274 +105,3157,3.0,1086274284 +105,3168,3.5,1086093765 +105,3176,3.5,1086094765 +105,3185,3.5,1086093452 +105,3198,3.5,1085580217 +105,3201,4.0,1100606354 +105,3210,3.0,1085640104 +105,3246,3.0,1086272799 +105,3253,2.5,1086094787 +105,3255,2.5,1086093357 +105,3257,3.5,1086102081 +105,3263,3.0,1088058238 +105,3271,3.0,1086272525 +105,3285,2.5,1086093741 +105,3324,2.5,1100531148 +105,3328,3.0,1101125778 +105,3386,3.0,1086272631 +105,3408,3.5,1085574022 +105,3418,3.5,1085581284 +105,3421,4.0,1086094759 +105,3424,4.0,1088058292 +105,3426,3.0,1086960240 +105,3448,3.0,1085581289 +105,3450,3.0,1085640064 +105,3471,4.0,1085579214 +105,3476,4.0,1085640021 +105,3481,4.0,1085574084 +105,3489,2.5,1086102087 +105,3498,4.0,1100532099 +105,3499,4.0,1086272508 +105,3503,2.0,1088058852 +105,3527,3.5,1086094781 +105,3529,3.0,1085579419 +105,3552,3.5,1086093773 +105,3557,3.0,1086094534 +105,3578,4.5,1100533679 +105,3584,3.5,1086094545 +105,3614,4.0,1088058828 +105,3676,2.0,1086094180 +105,3682,4.0,1085639996 +105,3683,4.0,1085639989 +105,3685,4.0,1085639974 +105,3686,3.0,1086094194 +105,3697,3.0,1086093756 +105,3702,4.0,1085639969 +105,3703,3.5,1086102036 +105,3717,2.5,1086274173 +105,3735,4.0,1086102041 +105,3740,3.0,1085580186 +105,3744,3.0,1086274263 +105,3752,3.0,1088058270 +105,3753,3.0,1086094721 +105,3755,3.0,1085581279 +105,3783,3.0,1101125836 +105,3793,3.0,1086094736 +105,3809,4.0,1086275253 +105,3825,2.0,1086275040 +105,3826,2.5,1086093749 +105,3831,3.0,1085639931 +105,3836,3.0,1086272615 +105,3917,4.0,1086094149 +105,3918,3.0,1088058788 +105,3946,2.0,1086094164 +105,3967,3.0,1085639873 +105,3980,2.0,1085639899 +105,3996,3.5,1085573843 +105,4002,3.5,1100532157 +105,4007,3.5,1086272672 +105,4011,4.0,1086102024 +105,4027,3.5,1086272776 +105,4034,4.0,1086272718 +105,4041,3.5,1085580193 +105,4056,4.0,1100606338 +105,4084,3.0,1088058815 +105,4148,3.5,1085580206 +105,4161,3.0,1085639858 +105,4203,2.0,1086094470 +105,4210,4.0,1086272626 +105,4218,4.0,1085641797 +105,4223,3.5,1088058250 +105,4226,4.0,1085581263 +105,4234,3.0,1085639848 +105,4235,4.5,1100532272 +105,4239,4.0,1086101981 +105,4246,3.0,1085639812 +105,4251,4.0,1085641793 +105,4262,3.5,1085580172 +105,4280,3.0,1085639807 +105,4321,3.5,1086094703 +105,4326,4.0,1086272756 +105,4361,3.0,1086101988 +105,4367,2.0,1085579220 +105,4407,4.5,1085581010 +105,4448,3.0,1086093719 +105,4467,3.5,1085639777 +105,4479,4.0,1085579231 +105,4482,3.0,1085579637 +105,4487,3.0,1085580165 +105,4557,3.0,1085580993 +105,4558,3.0,1086274032 +105,4572,3.0,1086094467 +105,4643,2.5,1088058223 +105,4654,3.0,1086094100 +105,4673,2.5,1085639782 +105,4679,4.0,1086094125 +105,4681,3.5,1085582146 +105,4719,3.5,1086274529 +105,4772,4.0,1086275259 +105,4776,3.0,1086272790 +105,4837,3.5,1085581236 +105,4855,3.5,1086272598 +105,4878,3.0,1086272410 +105,4896,3.0,1085581244 +105,4901,3.0,1101115611 +105,4958,3.0,1085582137 +105,4963,3.0,1086093708 +105,4979,3.5,1085582061 +105,4993,5.0,1085574372 +105,4995,2.5,1199438959 +105,5003,3.0,1086093682 +105,5013,3.0,1088058214 +105,5026,4.0,1085582071 +105,5049,4.0,1085580155 +105,5060,4.0,1100534081 +105,5180,3.0,1086094105 +105,5218,4.0,1085582076 +105,5299,3.0,1085574460 +105,5302,3.5,1085582030 +105,5308,2.0,1086274470 +105,5309,1.5,1088058733 +105,5334,3.5,1085641574 +105,5349,2.5,1101115415 +105,5377,4.0,1085574465 +105,5388,4.0,1085580133 +105,5400,2.5,1085582022 +105,5418,4.0,1085574443 +105,5419,1.5,1086094117 +105,5445,3.0,1085581212 +105,5447,4.0,1199439617 +105,5464,4.0,1086272549 +105,5630,3.0,1086094066 +105,5669,3.0,1100532042 +105,5693,4.0,1088058740 +105,5747,3.5,1100532177 +105,5816,3.0,1086101995 +105,5867,3.5,1101125659 +105,5878,3.5,1085581939 +105,5900,3.0,1085641448 +105,5902,3.5,1086093675 +105,5940,4.0,1085641421 +105,5945,3.5,1100606244 +105,5952,5.0,1085579003 +105,5954,3.5,1086272571 +105,5959,4.0,1085579117 +105,5989,3.5,1101125697 +105,6016,5.0,1100530925 +105,6104,2.5,1086272492 +105,6125,4.0,1100532053 +105,6188,3.5,1100605991 +105,6218,3.5,1088058706 +105,6238,3.0,1086094075 +105,6291,3.0,1085581170 +105,6344,3.5,1085581157 +105,6365,3.0,1199438599 +105,6377,3.0,1086272603 +105,6378,2.0,1199439214 +105,6502,3.5,1100532089 +105,6539,3.0,1086094656 +105,6595,2.5,1085580015 +105,6659,4.0,1085581903 +105,6711,4.0,1100532215 +105,6774,3.0,1086094360 +105,6787,3.5,1100532118 +105,6796,3.0,1085581870 +105,6807,4.0,1085579346 +105,6870,3.5,1100532019 +105,6874,4.0,1100531989 +105,6898,4.0,1101115431 +105,6989,4.0,1086094632 +105,6997,3.0,1100606302 +105,7005,2.0,1086094349 +105,7017,2.5,1088059177 +105,7034,4.0,1085580911 +105,7060,2.5,1086093699 +105,7104,3.0,1085579207 +105,7143,4.0,1100531114 +105,7149,3.5,1100606316 +105,7153,5.0,1086272392 +105,7193,3.5,1086093623 +105,7272,2.5,1085581780 +105,7438,4.0,1100531941 +105,7802,3.5,1086272341 +105,7836,3.0,1086272346 +105,8042,3.5,1101125893 +105,8228,3.5,1086272329 +105,8798,4.0,1199439320 +105,8874,3.5,1199439249 +105,8949,4.0,1199439187 +105,32587,4.5,1199438786 +105,33166,4.0,1199439242 +105,34162,3.5,1199439144 +105,34542,4.5,1199439476 +105,41569,2.5,1199439080 +105,44195,4.0,1199439192 +105,48304,4.5,1199439376 +105,48385,3.5,1199438665 +105,48516,3.0,1199438842 +105,51255,1.5,1199439007 +106,1,4.0,1215818369 +106,551,3.0,1215820041 +106,837,5.0,1215760082 +106,1246,5.0,1215923111 +106,1721,4.5,1215818307 +106,1968,4.5,1215819684 +106,1992,4.0,1215760993 +106,2052,3.0,1215760658 +106,2145,3.5,1215759985 +106,2174,4.5,1215819696 +106,2279,3.5,1215760493 +106,2395,5.0,1215818606 +106,2672,3.0,1215760243 +106,2762,3.5,1215818358 +106,2804,4.5,1215761648 +106,3210,4.0,1215759966 +106,3786,5.0,1215818780 +106,4040,2.5,1215760669 +106,4306,4.0,1215818300 +106,4886,4.0,1215818347 +106,5296,2.5,1215761066 +106,5422,4.5,1215761551 +106,6377,4.5,1215818402 +106,7161,2.0,1215761101 +106,7773,5.0,1236572531 +106,8360,3.5,1215818302 +106,8366,5.0,1215818597 +106,8641,4.0,1215760422 +106,8961,3.0,1215818385 +106,39408,0.5,1215818472 +106,39416,5.0,1215818584 +106,43919,1.0,1215818522 +106,44731,4.0,1215819614 +106,45431,3.0,1215760972 +106,46976,0.5,1215819552 +106,48394,5.0,1215818377 +106,51086,4.5,1215761312 +106,53996,4.0,1231299100 +106,54281,5.0,1215818691 +106,56367,3.5,1215818396 +106,57368,4.0,1215819568 +106,58559,5.0,1216958340 +106,59306,4.0,1215818489 +106,59315,5.0,1215761098 +106,60069,5.0,1215761519 +107,293,3.0,1446493028 +107,296,5.0,1446493021 +107,527,5.0,1446493024 +107,2605,3.0,1446493238 +107,2701,0.5,1446493194 +107,2805,2.0,1446493350 +107,2959,4.5,1446493013 +107,3005,3.5,1446493296 +107,3082,1.5,1446493230 +107,3160,3.5,1446493183 +107,3176,3.5,1446493152 +107,3300,3.5,1446493281 +107,3409,0.5,1446493334 +107,3755,1.5,1446493198 +107,3785,0.5,1446493222 +107,4239,2.0,1446493286 +107,4344,2.0,1446493319 +107,4370,3.0,1446493190 +107,4447,0.5,1446493216 +107,4718,1.5,1446493250 +107,4816,0.5,1446493273 +107,4874,4.0,1446493306 +107,5502,3.5,1446493203 +107,5669,4.0,1446493178 +107,5995,4.5,1446493188 +107,6016,4.5,1446493019 +107,6377,4.0,1446493039 +107,6502,1.5,1446493170 +107,6874,4.0,1446493044 +107,7361,4.0,1446493042 +107,109487,4.0,1446493059 +107,115713,3.0,1446493062 +108,10,4.0,843302067 +108,34,3.0,843302154 +108,47,2.0,843302154 +108,110,3.0,843302110 +108,153,3.0,843301948 +108,161,3.0,843302067 +108,185,3.0,843302067 +108,208,4.0,843302111 +108,225,3.0,843302196 +108,231,2.0,843301990 +108,253,3.0,843302067 +108,288,3.0,843302110 +108,296,3.0,843301884 +108,329,5.0,843301990 +108,339,3.0,843302111 +108,344,1.0,843301948 +108,356,4.0,843302026 +108,364,5.0,843302154 +108,367,3.0,843302154 +108,377,4.0,843302196 +108,380,3.0,843301884 +108,434,3.0,843302026 +108,454,3.0,843302111 +108,457,4.0,843301990 +108,480,4.0,843302067 +108,500,5.0,843302196 +108,588,5.0,843301948 +108,589,3.0,843302154 +108,590,3.0,843301884 +108,593,5.0,843301990 +108,595,5.0,843301990 +109,16,3.5,1153229790 +109,47,5.0,1153862175 +109,296,4.5,1153862055 +109,318,5.0,1153862063 +109,442,2.5,1153229745 +109,509,4.5,1153229750 +109,543,4.5,1153229872 +109,553,4.5,1153229795 +109,592,4.0,1153862071 +109,593,5.0,1153862058 +109,648,4.0,1153862117 +109,784,4.0,1153229824 +109,1101,4.5,1153229777 +109,1213,4.5,1153229724 +109,1917,4.0,1153229766 +109,2268,4.0,1153229838 +109,2640,4.5,1153229817 +109,2683,2.5,1153229716 +109,3052,4.0,1153229865 +109,3793,3.5,1153229759 +109,4993,4.0,1153229733 +109,5445,4.0,1153229813 +109,6953,4.0,1156107879 +110,3,4.0,840101142 +110,5,4.0,840100796 +110,6,4.0,840100719 +110,7,4.0,840100994 +110,9,5.0,840101320 +110,10,4.0,840100456 +110,11,5.0,840100602 +110,16,4.0,840100745 +110,19,4.0,840100515 +110,23,5.0,840100893 +110,31,4.0,840100695 +110,32,3.0,840100546 +110,34,3.0,840100501 +110,39,5.0,840100529 +110,45,5.0,840100781 +110,47,3.0,840100501 +110,79,1.0,840101128 +110,95,5.0,840100644 +110,122,4.0,840100908 +110,132,4.0,840101305 +110,135,4.0,840101394 +110,150,5.0,840100361 +110,153,3.0,840100386 +110,160,3.0,840100546 +110,161,4.0,840100438 +110,163,5.0,840100745 +110,165,5.0,840100386 +110,168,4.0,840100672 +110,173,3.0,840100585 +110,179,5.0,840101468 +110,185,4.0,840100456 +110,186,4.0,840100631 +110,193,5.0,840100695 +110,204,4.0,840100644 +110,207,5.0,840100808 +110,208,4.0,840100456 +110,225,4.0,840100515 +110,227,4.0,840100758 +110,231,5.0,840100416 +110,236,4.0,840100602 +110,237,4.0,840100719 +110,248,4.0,840100881 +110,249,3.0,840100893 +110,252,4.0,840100614 +110,253,3.0,840100456 +110,256,4.0,840100656 +110,257,4.0,840100836 +110,260,4.0,840100976 +110,266,3.0,840100546 +110,276,4.0,840100731 +110,280,4.0,840100808 +110,282,4.0,840100602 +110,292,4.0,840100438 +110,296,5.0,840100361 +110,303,3.0,840100821 +110,305,4.0,840100836 +110,315,5.0,840100585 +110,318,3.0,840100439 +110,327,3.0,840100821 +110,329,4.0,840100416 +110,339,5.0,840100456 +110,344,4.0,840100386 +110,345,2.0,840100921 +110,349,5.0,840100386 +110,350,4.0,840100602 +110,356,4.0,840100475 +110,357,4.0,840100585 +110,364,3.0,840100501 +110,367,4.0,840100515 +110,368,4.0,840101167 +110,370,5.0,840100745 +110,374,4.0,840101494 +110,377,5.0,840100515 +110,378,5.0,840101150 +110,380,5.0,840100361 +110,381,4.0,840100796 +110,413,4.0,840100796 +110,415,3.0,840100946 +110,420,4.0,840100529 +110,434,5.0,840100438 +110,445,5.0,840101191 +110,454,4.0,840100501 +110,457,5.0,840100438 +110,464,4.0,840101508 +110,466,5.0,840100758 +110,474,5.0,840100656 +110,480,5.0,840100475 +110,485,4.0,840100731 +110,489,4.0,840101294 +110,494,5.0,840100958 +110,500,4.0,840100546 +110,508,4.0,840100672 +110,519,3.0,840100994 +110,520,5.0,840100769 +110,527,4.0,840100559 +110,532,3.0,840100921 +110,539,5.0,840100585 +110,540,5.0,840100881 +110,542,4.0,840101142 +110,548,5.0,840101207 +110,550,4.0,840101099 +110,552,4.0,840100758 +110,586,5.0,840100559 +110,587,5.0,840100559 +110,588,4.0,840100386 +110,589,5.0,840100515 +110,590,4.0,840100360 +110,592,4.0,840100360 +110,593,5.0,840100416 +110,595,3.0,840100416 +110,597,5.0,840100559 +110,648,4.0,840100719 +110,719,5.0,840101225 +110,733,5.0,840100851 +110,736,3.0,840100695 +110,761,4.0,840101368 +110,762,5.0,840101207 +110,780,5.0,840100851 +110,786,5.0,840101099 +110,802,4.0,840101284 +111,5,3.0,1097430540 +111,7,3.5,1097429457 +111,10,3.5,1097432318 +111,11,4.0,1097432404 +111,18,2.5,1098045013 +111,25,4.0,1097430903 +111,31,3.5,1097429230 +111,32,3.5,1097429750 +111,39,4.5,1097432363 +111,45,1.0,1097429193 +111,47,4.0,1097431427 +111,50,4.0,1097432297 +111,81,3.0,1097431144 +111,95,3.0,1097430874 +111,105,0.5,1097429180 +111,110,4.0,1097429291 +111,122,3.5,1097514612 +111,141,3.5,1097432358 +111,150,4.0,1098045292 +111,161,4.0,1097430893 +111,185,3.0,1097432346 +111,216,2.5,1097431678 +111,223,4.0,1097432413 +111,224,5.0,1098373536 +111,231,0.5,1097431412 +111,253,3.5,1097430507 +111,260,4.0,1097429700 +111,292,3.5,1097432320 +111,296,4.5,1097429606 +111,300,3.5,1097432375 +111,318,4.0,1097429677 +111,327,3.0,1097514606 +111,339,4.0,1097432349 +111,344,3.0,1097430518 +111,345,2.0,1097429176 +111,353,3.0,1097514380 +111,356,3.5,1097429651 +111,364,3.5,1098045314 +111,367,2.0,1097432326 +111,368,4.5,1097432453 +111,372,3.5,1097431682 +111,377,3.5,1097429767 +111,380,4.5,1097429708 +111,440,4.0,1097432399 +111,454,2.5,1097432334 +111,457,4.0,1097429686 +111,480,3.5,1097429669 +111,497,4.0,1097431077 +111,508,3.5,1097430883 +111,527,4.0,1097429740 +111,539,3.0,1097432336 +111,541,3.5,1097430881 +111,542,3.5,1098044819 +111,551,1.0,1097430889 +111,552,3.5,1097429406 +111,586,3.0,1097432380 +111,587,1.5,1097432330 +111,588,2.5,1097429297 +111,589,4.5,1097429719 +111,592,4.0,1097429732 +111,593,4.0,1097429638 +111,595,3.0,1097432294 +111,597,3.0,1097430856 +111,608,5.0,1097429759 +111,647,2.5,1097429228 +111,648,3.5,1097432291 +111,708,4.0,1097429411 +111,733,3.5,1097432312 +111,778,4.0,1097431399 +111,783,1.5,1097429183 +111,800,4.0,1097514629 +111,802,2.5,1097429387 +111,839,4.0,1097431115 +111,851,3.0,1097514893 +111,852,3.5,1097429385 +111,920,4.0,1097430847 +111,932,5.0,1097431310 +111,1013,4.5,1098044811 +111,1022,4.0,1098044804 +111,1036,4.0,1098374024 +111,1047,3.0,1097429251 +111,1073,4.5,1097432352 +111,1080,3.5,1097429373 +111,1088,3.5,1097431651 +111,1089,4.0,1097429390 +111,1101,4.0,1097429367 +111,1104,3.0,1097431125 +111,1127,4.0,1097429377 +111,1136,4.0,1097430860 +111,1183,2.5,1097432456 +111,1196,4.5,1097432302 +111,1197,4.5,1097432365 +111,1198,4.5,1097432308 +111,1210,4.0,1097429301 +111,1220,4.5,1097438364 +111,1231,4.0,1098373619 +111,1234,3.5,1097429355 +111,1240,4.5,1097432389 +111,1265,3.0,1097431418 +111,1270,4.5,1097430850 +111,1291,5.0,1097430510 +111,1297,4.0,1097431648 +111,1307,3.5,1097432420 +111,1333,3.0,1098044795 +111,1391,3.5,1097431623 +111,1393,3.5,1097431420 +111,1408,4.5,1097431081 +111,1460,4.0,1097431952 +111,1517,4.0,1097432482 +111,1527,3.0,1097432450 +111,1541,3.5,1098373835 +111,1544,1.5,1097431619 +111,1580,4.0,1097430678 +111,1584,3.5,1097429361 +111,1593,3.5,1097514793 +111,1608,3.0,1097431614 +111,1610,4.0,1098373983 +111,1617,4.0,1097430708 +111,1639,4.0,1097431610 +111,1648,3.5,1097514816 +111,1653,3.5,1097429351 +111,1658,4.0,1097514776 +111,1682,3.0,1098044660 +111,1688,4.0,1097514591 +111,1704,4.0,1097430685 +111,1721,1.5,1097429349 +111,1747,1.5,1097429237 +111,1760,2.5,1097431968 +111,1777,4.5,1097429222 +111,1784,1.0,1097430687 +111,1797,4.5,1097429836 +111,1799,3.5,1097431959 +111,1804,3.0,1098373801 +111,1863,3.0,1097432240 +111,1888,3.0,1097431606 +111,1912,3.5,1098374434 +111,1917,2.5,1097429293 +111,1921,2.5,1097431602 +111,1923,3.5,1097429320 +111,1943,3.5,1097430719 +111,1961,3.5,1098373990 +111,1967,4.0,1097514579 +111,1968,4.0,1097432441 +111,2014,3.5,1097514936 +111,2038,4.5,1097431289 +111,2046,3.5,1098374461 +111,2059,3.0,1098373776 +111,2081,2.5,1097429187 +111,2100,4.0,1098374452 +111,2106,3.5,1097514940 +111,2115,3.5,1098045265 +111,2125,3.5,1097431564 +111,2133,4.0,1097431098 +111,2134,3.5,1097431577 +111,2153,2.0,1097431941 +111,2174,4.0,1097431570 +111,2249,4.0,1097438356 +111,2252,2.5,1097514906 +111,2321,1.5,1097429203 +111,2324,4.0,1097429317 +111,2330,5.0,1097437092 +111,2380,3.0,1098373766 +111,2395,3.5,1098374417 +111,2396,4.0,1097432382 +111,2432,3.5,1097514883 +111,2447,3.0,1097431925 +111,2470,3.5,1098373592 +111,2478,4.0,1097431568 +111,2502,4.5,1097438248 +111,2541,4.0,1098044728 +111,2558,2.5,1098373755 +111,2563,4.5,1098373745 +111,2571,5.0,1097430682 +111,2572,4.5,1097430545 +111,2594,1.5,1097431911 +111,2598,4.0,1097431549 +111,2599,4.5,1098374393 +111,2605,2.5,1098044731 +111,2616,3.0,1098044735 +111,2628,2.5,1097432395 +111,2657,4.5,1097431559 +111,2671,3.5,1098374402 +111,2683,1.5,1097432489 +111,2692,5.0,1097431071 +111,2706,3.0,1097430705 +111,2712,1.0,1097429310 +111,2716,4.5,1097430655 +111,2723,3.5,1097431536 +111,2770,1.0,1097429213 +111,2791,4.0,1097514500 +111,2797,4.0,1098374372 +111,2846,4.5,1098735274 +111,2858,4.0,1097432316 +111,2877,3.5,1097514822 +111,2890,3.5,1097431519 +111,2916,4.0,1097430665 +111,2918,4.5,1098735255 +111,2953,3.0,1097431523 +111,2959,5.0,1097429287 +111,2997,3.0,1097432427 +111,3004,3.0,1097431882 +111,3006,4.5,1098374376 +111,3033,5.0,1097429547 +111,3060,4.0,1098044718 +111,3087,4.5,1098374343 +111,3098,4.0,1098374355 +111,3114,3.5,1098374333 +111,3160,0.5,1097429253 +111,3173,3.5,1098044715 +111,3210,3.0,1097429526 +111,3247,3.5,1097429513 +111,3252,3.0,1098373553 +111,3253,4.5,1097429219 +111,3254,4.0,1098373508 +111,3255,4.5,1097431096 +111,3257,1.0,1097429530 +111,3261,3.5,1097429519 +111,3270,4.0,1097432224 +111,3273,2.5,1098374329 +111,3298,2.5,1098374337 +111,3317,3.5,1097431498 +111,3360,4.0,1097438321 +111,3361,4.0,1097431509 +111,3418,3.5,1097429206 +111,3421,4.0,1098374307 +111,3448,3.5,1097429533 +111,3476,4.5,1097429539 +111,3481,3.5,1097431490 +111,3526,3.5,1097429535 +111,3534,1.0,1097429517 +111,3578,3.5,1097432437 +111,3608,3.5,1098374299 +111,3698,3.5,1098373571 +111,3712,3.5,1097514909 +111,3753,2.0,1098374296 +111,3783,4.5,1097514745 +111,3791,4.0,1097514650 +111,3825,3.5,1097431843 +111,3835,2.5,1098045068 +111,3852,3.5,1097514767 +111,3882,4.5,1097431838 +111,3893,3.0,1097431503 +111,3897,3.5,1097431493 +111,3911,3.5,1098374191 +111,3915,4.5,1099603600 +111,3948,4.0,1098044690 +111,3967,3.5,1098374196 +111,3968,2.5,1097514553 +111,3994,0.5,1097431467 +111,4011,4.5,1098374209 +111,4014,4.5,1098374184 +111,4017,3.5,1097514787 +111,4027,5.0,1097430515 +111,4034,4.0,1097429322 +111,4052,2.5,1097514663 +111,4121,3.5,1098044698 +111,4130,3.0,1097432186 +111,4132,2.5,1097514666 +111,4161,4.0,1098374183 +111,4219,4.0,1097431364 +111,4221,4.0,1097438330 +111,4226,4.5,1097429324 +111,4228,3.5,1097431823 +111,4231,4.0,1098373713 +111,4246,4.5,1097429490 +111,4299,3.5,1098044693 +111,4304,3.5,1097436698 +111,4308,4.0,1098374167 +111,4310,2.5,1098374158 +111,4321,3.5,1097431477 +111,4322,4.5,1097431827 +111,4344,2.5,1097514531 +111,4351,3.5,1097431817 +111,4357,5.0,1097430670 +111,4367,2.5,1098374154 +111,4447,5.0,1097429482 +111,4545,3.5,1097431810 +111,4600,4.0,1097432158 +111,4623,4.0,1097432234 +111,4677,4.5,1097514916 +111,4700,3.0,1097514898 +111,4734,2.5,1097431464 +111,4757,3.5,1097514657 +111,4776,2.0,1098374142 +111,4816,4.0,1097514550 +111,4823,3.0,1097431797 +111,4844,3.0,1097514862 +111,4901,5.0,1098374109 +111,4954,2.5,1098045051 +111,4963,4.5,1097429464 +111,4973,5.0,1098374097 +111,4975,1.5,1097431446 +111,4979,4.0,1097429466 +111,4980,1.5,1097430574 +111,4992,3.0,1097514874 +111,4993,4.0,1098374083 +111,5013,4.0,1098374091 +111,5055,4.0,1097430563 +111,5255,3.0,1097432135 +111,5283,3.5,1098045039 +111,5308,3.5,1097514754 +111,5349,4.0,1097430966 +111,5377,4.0,1097430970 +111,5418,3.5,1098045419 +111,5438,3.5,1097432127 +111,5481,3.0,1097432492 +111,5505,4.0,1097514913 +111,5524,4.0,1097432212 +111,5528,4.0,1097437328 +111,5620,4.0,1097514837 +111,5673,4.0,1098044666 +111,5816,3.0,1098373561 +111,5829,3.0,1097514681 +111,5902,1.5,1097429446 +111,5952,4.5,1098374060 +111,5957,3.0,1098045033 +111,5961,3.0,1097436615 +111,5991,3.5,1097429453 +111,6183,4.0,1097432112 +111,6299,4.0,1097436714 +111,6375,4.5,1097436630 +111,6377,3.5,1098374066 +111,6378,4.0,1098044670 +111,6480,4.5,1097438343 +111,6502,4.0,1097431764 +111,6537,2.0,1098044676 +111,6638,3.5,1097432077 +111,6744,3.0,1097432100 +111,6811,4.0,1097432268 +111,6850,3.0,1097432064 +111,6942,4.0,1097431710 +111,6974,4.0,1097432048 +111,7101,3.5,1097432030 +111,7153,4.5,1098374038 +111,7255,3.0,1097437389 +111,7256,4.5,1097436667 +111,7451,4.5,1099937091 +111,8366,4.5,1099603580 +111,8493,4.0,1097432008 +111,8622,4.0,1099937080 +111,8709,3.0,1097432018 +112,1,5.0,852720865 +112,3,5.0,852720897 +112,6,3.0,852720897 +112,18,3.0,852720984 +112,32,3.0,852720865 +112,41,5.0,852720950 +112,85,5.0,852721004 +112,95,3.0,852720866 +112,141,4.0,852720866 +112,296,5.0,852721145 +112,376,5.0,852720897 +112,648,2.0,852720866 +112,708,5.0,852720915 +112,733,4.0,852720897 +112,736,1.0,852720866 +112,780,4.0,852720865 +112,802,4.0,852720950 +112,805,5.0,852720950 +112,1073,5.0,852720915 +112,1183,4.0,852721058 +112,1356,5.0,852720950 +113,2,5.0,844884330 +113,4,3.0,844884590 +113,5,5.0,844884467 +113,6,4.0,844884390 +113,8,5.0,844885084 +113,9,4.0,844884734 +113,10,3.0,844884266 +113,16,5.0,844884467 +113,20,5.0,844884632 +113,21,5.0,844884266 +113,24,5.0,844884632 +113,25,4.0,844884390 +113,36,4.0,844884390 +113,65,4.0,844884932 +113,74,5.0,844885045 +113,79,5.0,844884793 +113,89,4.0,844884932 +113,104,5.0,844884632 +113,105,5.0,844884467 +113,135,5.0,844884853 +113,140,5.0,844884853 +113,494,5.0,844884528 +113,616,5.0,844884528 +113,637,5.0,844884932 +113,647,5.0,844885044 +113,711,5.0,844885206 +113,762,5.0,844884932 +114,10,4.0,838365857 +114,34,5.0,838365827 +114,153,3.0,838365897 +114,158,4.0,838365765 +114,165,3.0,838365897 +114,185,4.0,838365857 +114,208,4.0,838365857 +114,253,3.0,838365857 +114,267,1.0,838365737 +114,288,3.0,838365840 +114,292,4.0,838365867 +114,333,5.0,838365737 +114,339,4.0,838365857 +114,349,5.0,838365897 +114,356,5.0,838365840 +114,364,5.0,838365827 +114,380,5.0,838365907 +114,434,5.0,838365867 +114,457,5.0,838365867 +114,586,5.0,838365827 +114,588,5.0,838365897 +114,590,4.0,838365907 +114,592,3.0,838365907 +114,593,3.0,838365867 +114,595,5.0,838365878 +115,2,5.0,1107034391 +115,3,5.0,1107034474 +115,19,4.0,1107034440 +115,45,3.5,1107034126 +115,160,2.0,1107034459 +115,231,4.5,1107034320 +115,318,5.0,1107034264 +115,342,3.0,1107034092 +115,466,3.0,1107034046 +115,480,5.0,1107034257 +115,520,4.0,1107034112 +115,543,3.5,1107034097 +115,608,5.0,1107034287 +115,784,2.5,1107034038 +115,1073,5.0,1107034335 +115,1089,3.5,1107034454 +115,1148,4.5,1107034130 +115,1197,4.5,1107034342 +115,1259,4.0,1107034443 +115,1265,5.0,1107034360 +115,1270,5.0,1107034308 +115,1278,4.0,1107034056 +115,1288,4.0,1107034052 +115,1500,3.0,1107034043 +115,1639,3.5,1107034088 +115,1704,4.0,1107034404 +115,1732,5.0,1107034158 +115,1923,3.5,1107034448 +115,2001,3.5,1107034119 +115,2502,5.0,1107034121 +115,2683,4.5,1107034409 +115,2706,4.0,1107034471 +115,2762,4.0,1107034350 +115,2959,4.0,1107034465 +115,2997,4.5,1107034393 +115,3176,4.5,1107034109 +115,3578,4.5,1107034401 +115,3751,3.0,1107034074 +115,3897,3.5,1107034071 +115,4027,5.0,1107034105 +115,7361,5.0,1107034201 +116,47,5.0,1163454737 +116,153,1.5,1163454706 +116,231,5.0,1163454716 +116,260,5.0,1163454699 +116,296,5.0,1163454673 +116,316,4.0,1163454741 +116,318,4.5,1163454676 +116,356,4.5,1163454645 +116,367,2.5,1163454728 +116,434,2.5,1163454712 +116,480,2.0,1163454650 +116,593,3.0,1163454691 +116,733,4.0,1163454734 +116,1573,5.0,1163454719 +116,2571,4.0,1163454662 +116,2762,5.0,1163454695 +116,2858,3.0,1163454632 +116,2890,1.0,1163454748 +116,2959,2.0,1163454640 +116,4306,5.0,1163454681 +116,4993,5.0,1163454653 +116,5952,5.0,1163454658 +116,6539,4.0,1163454669 +116,7153,5.0,1163454656 +116,40414,5.0,1163454931 +117,215,3.5,1320638323 +117,281,4.0,1320640472 +117,318,5.0,1320636964 +117,524,4.0,1320634639 +117,527,3.5,1320638237 +117,539,5.0,1320636576 +117,1124,4.5,1320639869 +117,1185,3.0,1320634780 +117,1188,2.5,1320634699 +117,1235,2.5,1320634623 +117,1271,4.5,1320637156 +117,1307,4.5,1320639878 +117,1347,0.5,1320634657 +117,1674,5.0,1320637063 +117,1704,4.5,1320639090 +117,1831,0.5,1320634669 +117,1835,4.0,1320634819 +117,1957,3.0,1320634724 +117,1958,4.0,1320634810 +117,1961,3.0,1320638154 +117,2236,4.0,1320638938 +117,2324,4.0,1320638280 +117,2686,3.0,1320640136 +117,2719,0.5,1320634828 +117,2739,5.0,1320636860 +117,2840,0.5,1320634835 +117,3107,2.0,1320634634 +117,3147,5.0,1320636937 +117,3363,3.5,1320634680 +117,3504,3.0,1320634856 +117,3512,5.0,1320636888 +117,3565,4.0,1320638959 +117,3969,4.5,1320638669 +117,4361,4.0,1320634616 +117,4564,4.5,1320637425 +117,8638,4.0,1320638358 +117,8949,4.0,1320637606 +117,30707,5.0,1320636770 +117,43396,3.5,1320637335 +117,47099,4.5,1320637244 +117,47148,4.5,1320636826 +117,50685,4.0,1320640798 +117,53123,5.0,1320636446 +117,56587,5.0,1320636687 +117,59018,5.0,1320636732 +117,64614,3.5,1320639535 +117,64716,3.5,1320637031 +117,66371,4.5,1320636632 +117,72011,4.5,1320637937 +117,73023,4.0,1320640384 +117,81845,4.0,1320638004 +117,82527,4.5,1320637762 +117,85881,4.0,1320637732 +117,88810,4.5,1320637502 +117,89804,5.0,1320637871 +118,16,4.0,951009481 +118,32,4.0,951008797 +118,36,4.0,950154206 +118,47,4.0,951009525 +118,50,5.0,951009296 +118,111,4.0,951009296 +118,247,2.0,951009429 +118,260,5.0,951008797 +118,296,5.0,950154177 +118,329,4.0,951009067 +118,377,4.0,951009525 +118,457,5.0,951009370 +118,474,4.0,951009429 +118,480,4.0,951008941 +118,527,5.0,950154206 +118,541,4.0,951008797 +118,589,5.0,951008828 +118,593,5.0,951009296 +118,597,3.0,951009851 +118,608,5.0,950154138 +118,674,2.0,951009005 +118,750,5.0,951008797 +118,780,4.0,951009097 +118,832,4.0,951009585 +118,866,5.0,951009481 +118,903,4.0,951009322 +118,904,5.0,951009296 +118,905,5.0,951009676 +118,908,5.0,951009296 +118,913,4.0,958531282 +118,922,5.0,950153928 +118,924,5.0,951008798 +118,930,4.0,951009322 +118,954,4.0,958531282 +118,965,3.0,951009349 +118,1019,4.0,951008941 +118,1036,4.0,951009397 +118,1086,3.0,951009429 +118,1089,4.0,951009349 +118,1127,4.0,951009005 +118,1129,3.0,951009005 +118,1196,5.0,951008828 +118,1199,4.0,951008798 +118,1200,5.0,951008883 +118,1206,4.0,951008828 +118,1210,3.0,950153947 +118,1212,4.0,951009322 +118,1213,5.0,950154138 +118,1214,5.0,951008798 +118,1219,5.0,951009349 +118,1221,5.0,950153998 +118,1227,4.0,951009429 +118,1233,5.0,950154138 +118,1238,5.0,951009750 +118,1240,5.0,951008828 +118,1249,4.0,951009397 +118,1252,5.0,951009296 +118,1260,4.0,951009322 +118,1264,4.0,951009397 +118,1267,4.0,951009296 +118,1269,3.0,951009429 +118,1270,5.0,951008828 +118,1276,5.0,951009653 +118,1304,5.0,958531282 +118,1356,4.0,951009037 +118,1358,5.0,951009370 +118,1371,3.0,951009005 +118,1374,4.0,951008855 +118,1375,4.0,951008911 +118,1376,3.0,951008883 +118,1396,4.0,951009005 +118,1407,3.0,951009585 +118,1527,2.0,951008911 +118,1573,4.0,951008855 +118,1580,4.0,951008970 +118,1584,4.0,951008883 +118,1610,4.0,951009481 +118,1617,5.0,950153998 +118,1625,4.0,951009552 +118,1653,3.0,951008828 +118,1674,5.0,951009370 +118,1683,1.0,951009552 +118,1690,3.0,951009097 +118,1747,4.0,950153998 +118,1748,3.0,951009481 +118,1834,5.0,951009429 +118,1845,4.0,951009397 +118,1909,4.0,951009037 +118,1917,4.0,951009209 +118,1953,4.0,951009349 +118,1965,4.0,951008883 +118,1994,4.0,951009610 +118,2009,4.0,951009168 +118,2011,5.0,951009005 +118,2012,3.0,951009067 +118,2021,1.0,951009097 +118,2028,5.0,950154206 +118,2034,3.0,951009097 +118,2054,4.0,951009148 +118,2064,5.0,951009676 +118,2094,4.0,951009148 +118,2110,4.0,951009611 +118,2117,3.0,951009067 +118,2118,3.0,951009481 +118,2139,3.0,950153928 +118,2160,3.0,951009397 +118,2176,4.0,951009585 +118,2178,4.0,951009585 +118,2186,5.0,951009370 +118,2203,4.0,951009296 +118,2243,5.0,950153998 +118,2278,4.0,951009585 +118,2288,4.0,951008911 +118,2311,4.0,951009037 +118,2324,5.0,951009653 +118,2344,5.0,951009552 +118,2346,3.0,951008941 +118,2349,4.0,951009429 +118,2353,4.0,951009525 +118,2391,5.0,951009451 +118,2393,3.0,951009067 +118,2407,4.0,951008911 +118,2435,3.0,951009826 +118,2450,1.0,951009209 +118,2455,4.0,951008970 +118,2528,3.0,951009005 +118,2529,5.0,951008941 +118,2533,3.0,951009097 +118,2571,3.0,951008855 +118,2613,3.0,951009148 +118,2628,3.0,951009037 +118,2640,4.0,951008970 +118,2641,3.0,951009005 +118,2668,3.0,951009230 +118,2692,5.0,950154314 +118,2722,3.0,951009168 +118,2762,5.0,958531282 +118,2804,5.0,951009676 +118,2819,4.0,951009349 +118,2871,5.0,951009322 +118,2916,4.0,951009552 +118,2917,5.0,951009429 +118,2968,4.0,951008855 +118,2985,4.0,951008941 +118,3006,5.0,958531282 +118,3033,2.0,951009097 +118,3101,4.0,951009451 +118,3147,4.0,951008705 +118,3148,5.0,964408725 +118,3152,5.0,950154314 +118,3173,4.0,951008705 +118,3176,4.0,951008668 +118,3178,4.0,951008726 +118,3196,4.0,950154314 +118,3198,5.0,950154314 +118,3200,5.0,950154314 +118,3203,4.0,951009504 +118,3204,4.0,951009481 +118,3252,4.0,950154104 +118,3256,4.0,951009504 +118,3350,5.0,958531355 +118,3371,4.0,958531252 +118,3543,4.0,958531252 +118,3578,5.0,964408657 +118,3615,4.0,964408657 +118,3717,3.0,964408657 +118,3724,4.0,964408813 +118,3725,3.0,964408796 +118,3727,4.0,964408961 +118,3730,5.0,964408874 +118,3732,3.0,964408894 +118,3734,3.0,964408994 +118,3735,5.0,964408994 +118,3738,3.0,964409017 +118,3740,2.0,964408796 +118,3742,5.0,964408796 +118,3755,5.0,964408657 +118,3760,3.0,964408911 +118,3763,4.0,964408874 +118,3769,4.0,964409017 +118,3789,4.0,964408994 +118,3801,4.0,964408796 +118,3806,3.0,964408938 +118,3810,3.0,964409039 +118,3811,5.0,964408813 +118,3812,4.0,964408874 +118,3814,3.0,964408938 +118,3816,4.0,964408961 +118,6184,3.0,964408938 +119,1,2.0,913048158 +119,2,3.0,913051445 +119,6,5.0,913057893 +119,16,3.0,913048006 +119,21,4.0,913049013 +119,24,3.0,913050793 +119,26,5.0,913117867 +119,29,3.0,915411448 +119,32,4.0,913047936 +119,36,3.0,945993306 +119,41,4.0,913048297 +119,47,5.0,913233441 +119,50,4.0,913047839 +119,60,2.0,913048438 +119,62,4.0,913049366 +119,70,4.0,959734582 +119,78,3.0,945993516 +119,95,2.0,913232674 +119,101,2.0,952582537 +119,110,5.0,913047936 +119,111,5.0,913047839 +119,112,3.0,913128316 +119,141,4.0,913049888 +119,145,4.0,913050230 +119,151,3.0,913048077 +119,153,1.0,913232864 +119,160,2.0,913051632 +119,161,4.0,913117754 +119,163,4.0,960751875 +119,168,2.0,913232864 +119,173,1.0,913051632 +119,180,2.0,960751812 +119,196,2.0,913051475 +119,203,3.0,913050333 +119,208,2.0,913232894 +119,223,4.0,945994116 +119,227,2.0,913232929 +119,235,4.0,952584312 +119,253,2.0,913050480 +119,260,5.0,913052591 +119,265,4.0,913048077 +119,266,4.0,913048721 +119,272,5.0,913049150 +119,288,4.0,913233068 +119,292,3.0,913050293 +119,296,5.0,913047597 +119,316,3.0,913051506 +119,318,4.0,913047258 +119,329,3.0,913048548 +119,345,5.0,913049331 +119,353,3.0,913049150 +119,356,3.0,952583089 +119,364,3.0,913049072 +119,368,3.0,913048916 +119,370,2.0,913050396 +119,373,4.0,913232013 +119,377,2.0,913049964 +119,383,4.0,915412154 +119,428,4.0,952583024 +119,435,2.0,913051632 +119,443,2.0,952583169 +119,454,3.0,952583509 +119,457,3.0,913048158 +119,480,4.0,913048721 +119,481,4.0,972099168 +119,482,3.0,972097228 +119,492,4.0,913052193 +119,527,5.0,927055846 +119,531,3.0,952582353 +119,532,4.0,960938884 +119,535,4.0,952581900 +119,541,4.0,952580959 +119,551,5.0,913048721 +119,553,3.0,913047597 +119,585,3.0,952582708 +119,587,4.0,913050857 +119,588,4.0,913048006 +119,589,4.0,913048983 +119,590,5.0,913047973 +119,592,4.0,913232794 +119,593,4.0,913048297 +119,595,4.0,913049486 +119,596,4.0,945993306 +119,597,4.0,913048605 +119,599,4.0,915412223 +119,608,5.0,913207624 +119,611,1.0,913232929 +119,648,3.0,913048883 +119,653,3.0,913052090 +119,661,3.0,913049964 +119,678,4.0,952581199 +119,688,2.0,913232864 +119,707,3.0,915411867 +119,728,5.0,918856559 +119,733,4.0,913057993 +119,735,4.0,952583624 +119,736,2.0,913232716 +119,745,5.0,945993227 +119,750,5.0,915411448 +119,778,4.0,913047687 +119,780,3.0,913050553 +119,785,4.0,913050711 +119,788,4.0,913052089 +119,800,4.0,952584582 +119,832,4.0,913048799 +119,849,1.0,913051506 +119,858,5.0,913052626 +119,870,3.0,913211320 +119,880,3.0,913051666 +119,881,2.0,952583400 +119,903,5.0,989623265 +119,904,5.0,913052756 +119,908,5.0,913052591 +119,910,5.0,952581061 +119,912,5.0,913052699 +119,913,5.0,952581106 +119,919,5.0,945993179 +119,920,5.0,927055517 +119,922,4.0,913052591 +119,923,5.0,913052756 +119,924,4.0,913058394 +119,926,5.0,945993179 +119,943,4.0,952582729 +119,953,4.0,952582145 +119,954,4.0,952581796 +119,968,3.0,915411502 +119,969,5.0,913232642 +119,971,4.0,952581408 +119,996,3.0,913232992 +119,1009,3.0,960671689 +119,1027,2.0,913050827 +119,1028,3.0,913681100 +119,1034,3.0,952584169 +119,1035,5.0,952582174 +119,1036,4.0,913232601 +119,1037,3.0,913051666 +119,1042,3.0,913050942 +119,1049,3.0,913048764 +119,1059,2.0,913049782 +119,1061,4.0,952583272 +119,1063,4.0,945995420 +119,1073,3.0,960671633 +119,1077,5.0,913681190 +119,1079,4.0,952581978 +119,1080,4.0,913681190 +119,1081,4.0,952583089 +119,1084,4.0,952581304 +119,1085,5.0,989623184 +119,1089,4.0,952581199 +119,1097,4.0,915411448 +119,1101,4.0,913232754 +119,1103,5.0,945993269 +119,1112,2.0,913050942 +119,1127,2.0,913232754 +119,1129,4.0,913232754 +119,1136,5.0,913681021 +119,1148,5.0,945993227 +119,1172,4.0,913051262 +119,1179,3.0,913680627 +119,1183,2.0,952583063 +119,1192,2.0,913118043 +119,1193,5.0,927055342 +119,1196,4.0,913232524 +119,1197,4.0,913681326 +119,1198,4.0,913052591 +119,1199,5.0,915411448 +119,1200,4.0,913058394 +119,1201,4.0,913232601 +119,1203,5.0,989622199 +119,1204,5.0,913052699 +119,1206,5.0,915411480 +119,1207,4.0,913211024 +119,1208,5.0,952581061 +119,1210,4.0,913048438 +119,1213,4.0,913128255 +119,1214,3.0,913058346 +119,1215,4.0,913211024 +119,1220,4.0,913232567 +119,1221,4.0,913232567 +119,1223,5.0,960751702 +119,1224,5.0,913052862 +119,1225,5.0,952580936 +119,1233,5.0,913048035 +119,1234,4.0,913052591 +119,1235,5.0,913207776 +119,1237,3.0,952581003 +119,1240,4.0,913058278 +119,1243,5.0,913048764 +119,1246,4.0,952582145 +119,1247,4.0,945993227 +119,1249,4.0,952581335 +119,1252,4.0,913058346 +119,1254,4.0,952581106 +119,1256,4.0,913681100 +119,1258,4.0,952581686 +119,1259,5.0,927055517 +119,1262,4.0,913052662 +119,1265,2.0,913049179 +119,1266,5.0,913047687 +119,1267,4.0,913058314 +119,1269,4.0,913058314 +119,1270,4.0,913681222 +119,1271,4.0,913048639 +119,1272,5.0,945993306 +119,1275,4.0,913232716 +119,1276,4.0,913681100 +119,1277,4.0,913048548 +119,1278,4.0,913058153 +119,1282,4.0,952581686 +119,1283,4.0,915412223 +119,1287,5.0,913232524 +119,1291,3.0,913232524 +119,1292,5.0,913207845 +119,1293,4.0,913052528 +119,1296,4.0,952581470 +119,1299,4.0,952581856 +119,1303,4.0,952581003 +119,1304,4.0,913232524 +119,1317,4.0,913050333 +119,1320,2.0,913051590 +119,1332,4.0,913232065 +119,1333,4.0,952582034 +119,1339,5.0,913049366 +119,1340,4.0,945993269 +119,1342,2.0,952584516 +119,1345,4.0,952581718 +119,1347,2.0,952582585 +119,1350,3.0,952582509 +119,1356,3.0,913049427 +119,1358,5.0,915411308 +119,1370,4.0,913049888 +119,1372,2.0,952583400 +119,1374,3.0,913232642 +119,1375,2.0,913232965 +119,1376,3.0,952582034 +119,1377,1.0,913232965 +119,1378,3.0,913232794 +119,1379,4.0,915412154 +119,1387,4.0,913232567 +119,1388,2.0,913233215 +119,1390,4.0,913050186 +119,1391,3.0,913051590 +119,1394,5.0,945995160 +119,1411,5.0,913049270 +119,1416,4.0,913050480 +119,1429,4.0,913057939 +119,1485,2.0,913050666 +119,1499,2.0,913232929 +119,1503,4.0,952581933 +119,1508,4.0,960673585 +119,1517,2.0,913050368 +119,1518,3.0,913232754 +119,1527,4.0,913049116 +119,1544,2.0,913051590 +119,1552,3.0,913048764 +119,1554,2.0,952581174 +119,1556,1.0,913233239 +119,1562,1.0,913233239 +119,1564,5.0,972096905 +119,1569,2.0,952583721 +119,1573,2.0,913048476 +119,1580,4.0,913049303 +119,1584,3.0,913051475 +119,1586,2.0,913050942 +119,1587,3.0,913232754 +119,1588,2.0,913050793 +119,1589,3.0,913050230 +119,1591,2.0,913233183 +119,1597,4.0,913048476 +119,1603,2.0,913051632 +119,1606,2.0,913233268 +119,1608,3.0,915579236 +119,1610,4.0,913047737 +119,1611,5.0,913048605 +119,1613,3.0,952582839 +119,1617,4.0,913047737 +119,1619,1.0,913049303 +119,1625,4.0,913048232 +119,1627,4.0,913208236 +119,1639,4.0,945994088 +119,1641,3.0,913048232 +119,1646,2.0,913048077 +119,1653,4.0,913048338 +119,1663,3.0,952583024 +119,1670,3.0,913211248 +119,1674,4.0,913058314 +119,1676,2.0,913050553 +119,1678,3.0,913117813 +119,1682,3.0,927055670 +119,1687,3.0,913232894 +119,1689,3.0,952583747 +119,1690,1.0,913051506 +119,1694,2.0,913050075 +119,1702,3.0,913052089 +119,1704,5.0,913047643 +119,1711,4.0,913049542 +119,1713,3.0,913057714 +119,1721,3.0,913047343 +119,1727,2.0,913049844 +119,1729,3.0,913047878 +119,1732,4.0,913047643 +119,1747,4.0,913048605 +119,1748,4.0,913047343 +119,1754,3.0,913050029 +119,1762,3.0,913049605 +119,1769,2.0,913050666 +119,1772,2.0,913233215 +119,1777,2.0,913048883 +119,1779,3.0,913051445 +119,1784,5.0,913047973 +119,1788,4.0,913047466 +119,1792,3.0,913232864 +119,1799,3.0,913048721 +119,1801,2.0,913048605 +119,1804,3.0,913128356 +119,1805,4.0,913128255 +119,1824,5.0,959733966 +119,1827,2.0,913057714 +119,1831,2.0,913051666 +119,1833,2.0,913233136 +119,1834,3.0,913047687 +119,1848,3.0,913049396 +119,1852,3.0,913680547 +119,1862,2.0,913051697 +119,1866,3.0,913233296 +119,1876,3.0,913050997 +119,1882,2.0,913051666 +119,1883,5.0,927055026 +119,1884,2.0,913058499 +119,1885,4.0,913057714 +119,1894,2.0,913680503 +119,1911,2.0,913050666 +119,1912,4.0,915579154 +119,1917,3.0,913051632 +119,1918,4.0,913049605 +119,1920,2.0,913052129 +119,1921,4.0,952582409 +119,1923,5.0,928442267 +119,1924,3.0,952583206 +119,1931,5.0,952582207 +119,1944,4.0,952581718 +119,1948,4.0,952581174 +119,1952,4.0,952581304 +119,1953,4.0,913058394 +119,1954,3.0,913052966 +119,1955,3.0,952582353 +119,1956,4.0,952581552 +119,1957,4.0,927055670 +119,1958,5.0,927055708 +119,1960,4.0,913052966 +119,1961,4.0,952582145 +119,1962,5.0,927055670 +119,1965,5.0,945995181 +119,1967,3.0,960671689 +119,1968,4.0,913052966 +119,1994,4.0,913058153 +119,1997,4.0,913058153 +119,1999,3.0,952583848 +119,2000,4.0,952582353 +119,2001,3.0,952583799 +119,2002,3.0,913050368 +119,2005,3.0,952581796 +119,2006,4.0,913048367 +119,2009,4.0,913058394 +119,2011,2.0,952583848 +119,2012,2.0,913050261 +119,2013,3.0,913233012 +119,2019,4.0,913232524 +119,2021,3.0,960671689 +119,2028,5.0,945993179 +119,2053,2.0,913051697 +119,2054,2.0,960671689 +119,2058,4.0,915579122 +119,2065,4.0,952581506 +119,2067,4.0,952581960 +119,2069,4.0,952582353 +119,2071,4.0,913049605 +119,2076,5.0,913207917 +119,2080,3.0,913211160 +119,2083,4.0,913050620 +119,2087,4.0,945993396 +119,2094,2.0,913051697 +119,2096,4.0,952581739 +119,2100,3.0,952583442 +119,2101,4.0,960671832 +119,2104,4.0,945993396 +119,2105,3.0,913233215 +119,2108,4.0,952581530 +119,2109,4.0,913052756 +119,2111,2.0,952582409 +119,2112,4.0,959733499 +119,2115,3.0,913232965 +119,2118,3.0,913058346 +119,2120,3.0,952584492 +119,2124,3.0,913050518 +119,2132,4.0,913052591 +119,2136,3.0,913211320 +119,2138,3.0,913211248 +119,2140,3.0,945993582 +119,2143,3.0,960671726 +119,2155,3.0,952582538 +119,2160,4.0,913208080 +119,2161,3.0,960671689 +119,2167,3.0,915411308 +119,2174,5.0,952582117 +119,2183,4.0,927055517 +119,2193,4.0,913232524 +119,2194,4.0,913052626 +119,2240,3.0,952582887 +119,2243,4.0,952581827 +119,2253,2.0,913052129 +119,2263,3.0,913058279 +119,2268,4.0,913047343 +119,2278,4.0,927055342 +119,2279,2.0,952584516 +119,2282,4.0,928442005 +119,2289,4.0,913207729 +119,2291,4.0,913048232 +119,2297,2.0,927055099 +119,2302,3.0,913051262 +119,2303,5.0,952581003 +119,2306,2.0,952583548 +119,2312,3.0,952582839 +119,2313,5.0,913052756 +119,2321,4.0,927055752 +119,2329,4.0,952581900 +119,2333,4.0,952121533 +119,2336,5.0,952121490 +119,2337,4.0,952122333 +119,2338,2.0,913046852 +119,2340,3.0,927055342 +119,2346,3.0,952583721 +119,2352,4.0,952582353 +119,2353,3.0,952582174 +119,2355,3.0,952121372 +119,2359,4.0,952582207 +119,2361,4.0,989784765 +119,2365,1.0,913233136 +119,2366,4.0,913052699 +119,2369,3.0,945995494 +119,2371,3.0,952582248 +119,2373,2.0,913233327 +119,2375,4.0,913681261 +119,2391,3.0,952581686 +119,2398,4.0,952582117 +119,2404,2.0,913233183 +119,2406,3.0,913232567 +119,2407,4.0,913052662 +119,2411,2.0,913233296 +119,2412,2.0,913232864 +119,2414,3.0,913233268 +119,2420,3.0,927055846 +119,2421,2.0,913232642 +119,2422,1.0,913233136 +119,2425,3.0,952583624 +119,2440,4.0,928442046 +119,2454,3.0,972097288 +119,2455,3.0,915411448 +119,2463,4.0,952582409 +119,2469,4.0,952583902 +119,2470,4.0,927055846 +119,2478,3.0,915412223 +119,2498,3.0,945993844 +119,2502,4.0,972097622 +119,2524,2.0,952583587 +119,2527,2.0,952582887 +119,2529,4.0,927055446 +119,2539,3.0,952583587 +119,2542,3.0,952582382 +119,2571,4.0,945993764 +119,2574,1.0,945993859 +119,2587,2.0,959733676 +119,2590,3.0,952583902 +119,2600,3.0,945993764 +119,2616,3.0,952583967 +119,2617,2.0,945993697 +119,2622,3.0,945993582 +119,2628,3.0,952583509 +119,2639,4.0,927055797 +119,2648,4.0,952581439 +119,2657,4.0,972097322 +119,2660,5.0,952580766 +119,2664,4.0,952582034 +119,2672,3.0,945993537 +119,2686,4.0,959734646 +119,2688,3.0,952121533 +119,2700,2.0,952582248 +119,2701,1.0,945993764 +119,2707,3.0,952582887 +119,2710,1.0,945993967 +119,2713,2.0,952121596 +119,2716,4.0,952582174 +119,2719,2.0,952121533 +119,2728,5.0,952581223 +119,2734,2.0,952583721 +119,2739,4.0,952582271 +119,2746,5.0,952583400 +119,2750,4.0,952582145 +119,2762,4.0,959733393 +119,2769,2.0,989622527 +119,2770,3.0,952121372 +119,2779,2.0,952583136 +119,2784,4.0,952583624 +119,2797,3.0,952582207 +119,2804,5.0,945993269 +119,2826,3.0,952121372 +119,2828,2.0,952121490 +119,2857,5.0,952583442 +119,2858,5.0,952580851 +119,2863,3.0,952581439 +119,2871,4.0,945993269 +119,2872,3.0,945993349 +119,2901,4.0,952580766 +119,2912,4.0,959733348 +119,2915,4.0,952581470 +119,2916,4.0,952581900 +119,2918,4.0,945993486 +119,2919,4.0,952581960 +119,2921,3.0,952582069 +119,2926,4.0,952581856 +119,2944,4.0,952581506 +119,2947,4.0,952581470 +119,2949,4.0,952582003 +119,2968,4.0,952581640 +119,2971,5.0,952582477 +119,2973,5.0,952581084 +119,2976,4.0,959734551 +119,2985,3.0,945993582 +119,2987,4.0,952121796 +119,2997,5.0,960938945 +119,3011,4.0,989622248 +119,3019,5.0,945993227 +119,3032,3.0,952583136 +119,3035,4.0,952581603 +119,3037,5.0,952581356 +119,3039,3.0,952582207 +119,3052,5.0,960751774 +119,3066,4.0,945993329 +119,3081,4.0,959733423 +119,3095,5.0,952581061 +119,3099,3.0,952582639 +119,3100,3.0,952582729 +119,3107,2.0,952583587 +119,3108,5.0,952581379 +119,3113,3.0,960751946 +119,3114,4.0,989622248 +119,3127,2.0,972097355 +119,3129,3.0,972097906 +119,3148,4.0,972097228 +119,3152,4.0,952581223 +119,3159,3.0,952583442 +119,3160,2.0,972097256 +119,3168,5.0,945993227 +119,3169,4.0,945993269 +119,3175,3.0,959734260 +119,3181,4.0,972097153 +119,3194,4.0,952582959 +119,3198,4.0,952582679 +119,3201,5.0,952580802 +119,3204,4.0,952580878 +119,3219,4.0,952121654 +119,3250,2.0,952583929 +119,3252,4.0,952582431 +119,3253,3.0,952581470 +119,3255,2.0,952583206 +119,3263,2.0,952583587 +119,3267,4.0,952581933 +119,3308,5.0,953675542 +119,3317,4.0,989623184 +119,3324,2.0,972097449 +119,3330,4.0,952581686 +119,3350,4.0,952580851 +119,3354,2.0,972097473 +119,3355,2.0,972097288 +119,3360,3.0,952581856 +119,3363,4.0,952580442 +119,3379,3.0,952580649 +119,3388,2.0,952580566 +119,3396,4.0,952580606 +119,3397,4.0,952580566 +119,3409,3.0,972097355 +119,3414,5.0,952580606 +119,3418,4.0,952580692 +119,3421,4.0,952580442 +119,3429,5.0,989784738 +119,3438,2.0,960671726 +119,3441,3.0,952580649 +119,3448,4.0,952580566 +119,3450,3.0,952580566 +119,3457,3.0,972097322 +119,3461,4.0,953675594 +119,3467,5.0,989622199 +119,3471,5.0,953675360 +119,3476,4.0,959734551 +119,3479,4.0,960671633 +119,3481,4.0,972097228 +119,3489,2.0,960671726 +119,3490,1.0,989784509 +119,3499,4.0,953675866 +119,3504,5.0,989622144 +119,3527,4.0,959734194 +119,3535,2.0,972097378 +119,3548,5.0,989784738 +119,3563,1.0,989622944 +119,3654,4.0,959734139 +119,3699,4.0,960671856 +119,3701,3.0,989623049 +119,3702,4.0,959734169 +119,3735,4.0,989622144 +119,3740,4.0,959734115 +119,3741,4.0,960751727 +119,3827,3.0,989622945 +119,3841,2.0,972097449 +119,3844,4.0,972097355 +119,3869,2.0,972097449 +119,3889,2.0,989622976 +119,3893,3.0,989623306 +119,3895,2.0,989623049 +119,3897,5.0,989622057 +119,3911,5.0,989622166 +119,3926,4.0,972097410 +119,3928,3.0,972097355 +119,3929,5.0,989622144 +119,3943,5.0,989622663 +119,3946,2.0,989622976 +119,3959,4.0,972097288 +119,3967,5.0,989622717 +119,3977,3.0,989622945 +119,3980,4.0,989622743 +119,3986,3.0,989622945 +119,4018,3.0,989622570 +119,4106,3.0,989622945 +119,4139,2.0,989784550 +119,4179,4.0,989623122 +119,4186,4.0,989623184 +119,4190,4.0,989623150 +119,4195,4.0,989622087 +119,4280,4.0,989623184 +119,4282,4.0,989623150 +119,4292,4.0,989623150 +119,5060,5.0,913680947 +120,1,2.5,1167422234 +120,32,3.5,1167420751 +120,36,3.0,1125350649 +120,47,3.5,1167421762 +120,50,4.0,1167421675 +120,104,5.0,1167420288 +120,185,3.0,1167422401 +120,198,2.5,1125350327 +120,231,2.0,1167422338 +120,292,3.0,1167422364 +120,296,3.5,1125522893 +120,356,4.5,1167422193 +120,364,3.0,1167422305 +120,377,3.0,1167422258 +120,380,3.5,1167422230 +120,454,3.5,1167422387 +120,457,3.5,1125523032 +120,480,3.0,1125523035 +120,500,3.0,1167422333 +120,539,3.0,1167422359 +120,587,3.5,1125523111 +120,589,4.0,1167421705 +120,592,3.5,1167420777 +120,593,4.5,1167422201 +120,597,3.0,1167422326 +120,608,1.5,1167420460 +120,648,3.5,1167422272 +120,733,3.0,1167422320 +120,736,3.0,1167422296 +120,780,3.5,1125523023 +120,903,1.5,1167420471 +120,1036,4.0,1167421024 +120,1092,4.0,1125350310 +120,1097,3.0,1167421691 +120,1198,3.5,1125523097 +120,1214,3.5,1125523103 +120,1240,4.5,1167421051 +120,1265,4.5,1167420333 +120,1270,4.5,1167422024 +120,1302,3.5,1167422131 +120,1307,3.0,1125523069 +120,1343,3.5,1125350472 +120,1350,4.0,1125350440 +120,1387,4.5,1167421344 +120,1388,3.5,1167421349 +120,1389,1.5,1167421357 +120,1391,2.5,1125523079 +120,1393,3.5,1125522964 +120,1476,2.5,1125350599 +120,1517,3.0,1125350568 +120,1552,3.0,1125350259 +120,1573,3.5,1125523072 +120,1580,4.0,1167422378 +120,1597,3.0,1125350313 +120,1608,3.0,1125523087 +120,1625,4.0,1125350227 +120,1663,5.0,1167420323 +120,1721,3.5,1167422380 +120,1748,3.0,1125350343 +120,1777,3.5,1125350275 +120,1923,4.0,1125350510 +120,1954,5.0,1167420301 +120,1961,5.0,1167420306 +120,1994,2.5,1167420608 +120,1997,3.0,1167420253 +120,2000,3.5,1125523075 +120,2003,3.0,1125350356 +120,2009,1.5,1167420444 +120,2013,2.5,1167420413 +120,2028,4.0,1167420767 +120,2109,4.0,1125350584 +120,2118,4.5,1167421606 +120,2268,5.0,1167422043 +120,2321,3.0,1167420364 +120,2371,3.5,1125350564 +120,2402,4.0,1167421005 +120,2403,4.5,1167420996 +120,2407,3.0,1125350335 +120,2416,5.0,1167420932 +120,2470,3.5,1125350317 +120,2474,3.5,1125350538 +120,2529,4.5,1125350279 +120,2571,4.5,1167421379 +120,2640,3.5,1125523055 +120,2699,3.0,1125523007 +120,2716,4.0,1167422102 +120,2762,4.5,1167420730 +120,2791,5.0,1167422113 +120,2795,3.5,1125350425 +120,2797,5.0,1167420347 +120,2858,3.5,1167421669 +120,2915,4.0,1125350474 +120,2916,4.5,1167421081 +120,2918,4.5,1167421968 +120,2959,3.0,1125522923 +120,2987,3.0,1167421776 +120,2997,2.0,1167420840 +120,3039,3.5,1167422034 +120,3098,3.5,1167422048 +120,3101,4.5,1125350268 +120,3102,3.5,1125350417 +120,3210,4.0,1167422097 +120,3253,3.5,1125523048 +120,3360,3.5,1167420588 +120,3363,3.5,1167422090 +120,3421,5.0,1167420895 +120,3448,3.5,1125350348 +120,3481,2.0,1125523044 +120,3527,4.0,1125523040 +120,3552,5.0,1167420317 +120,3635,2.5,1167420410 +120,3671,2.5,1167422038 +120,3793,2.5,1125523018 +120,4002,3.0,1167420604 +120,4007,3.5,1125350427 +120,4022,3.5,1125522968 +120,4085,4.0,1167422061 +120,4102,3.0,1125350544 +120,4220,3.0,1167420597 +120,4226,4.5,1125522907 +120,4306,2.5,1125523014 +120,4623,4.5,1167420969 +120,4963,4.0,1167421701 +120,4973,0.5,1167420818 +120,5049,3.5,1125350483 +120,5250,3.0,1125350587 +120,5349,4.0,1167420830 +120,5418,4.0,1167421733 +120,5445,4.0,1167421737 +120,5693,2.0,1125350613 +120,6188,3.0,1125350594 +120,6373,5.0,1167420875 +120,6787,3.5,1125350627 +120,6874,2.0,1167421715 +120,7616,4.5,1167421410 +120,8636,4.0,1167421751 +120,32587,1.5,1167420746 +120,48385,3.0,1167421787 +121,1,4.0,833058442 +121,6,4.0,833058704 +121,10,3.0,833058428 +121,11,4.0,833058545 +121,17,5.0,833058557 +121,34,5.0,833058465 +121,39,4.0,836906043 +121,40,5.0,833059219 +121,50,5.0,833058475 +121,95,4.0,833058545 +121,105,3.0,833058633 +121,110,5.0,836905999 +121,112,3.0,833058866 +121,125,3.0,833059070 +121,150,4.0,833058355 +121,153,3.0,833058390 +121,161,4.0,833058428 +121,163,5.0,833058714 +121,165,3.0,833058390 +121,171,4.0,833058784 +121,186,3.0,833058557 +121,198,5.0,833058929 +121,203,4.0,833058843 +121,215,4.0,833058980 +121,222,4.0,833058843 +121,223,4.0,833058645 +121,246,5.0,833058685 +121,249,4.0,833058885 +121,253,3.0,833058442 +121,256,3.0,833058621 +121,265,5.0,833058611 +121,273,4.0,833058704 +121,281,5.0,833058875 +121,282,4.0,833058575 +121,293,5.0,833058599 +121,296,5.0,833058355 +121,300,4.0,833058442 +121,303,5.0,833058856 +121,307,5.0,833058929 +121,315,5.0,833058518 +121,316,3.0,833058414 +121,318,5.0,833058414 +121,329,4.0,833058414 +121,339,3.0,833058428 +121,345,5.0,833058775 +121,348,3.0,833058704 +121,349,4.0,833058390 +121,356,4.0,833059029 +121,357,4.0,836906137 +121,364,4.0,833058633 +121,377,4.0,836906063 +121,380,4.0,833058355 +121,435,3.0,833058489 +121,440,5.0,833058714 +121,442,4.0,833058843 +121,454,3.0,833058645 +121,457,4.0,833058489 +121,468,4.0,833058704 +121,475,4.0,833059235 +121,480,4.0,833059045 +121,497,5.0,833059219 +121,509,4.0,833058733 +121,515,5.0,833058894 +121,527,5.0,833059235 +121,529,4.0,833059190 +121,539,3.0,836906092 +121,551,4.0,833058866 +121,553,3.0,833058545 +121,585,3.0,833058905 +121,587,3.0,836906093 +121,588,4.0,833058390 +121,589,5.0,836906063 +121,590,4.0,833058355 +121,592,4.0,833058354 +121,593,4.0,833058489 +121,595,4.0,833058414 +121,597,3.0,836906141 +121,610,3.0,833058905 +121,736,4.0,833058938 +121,780,5.0,836905940 +122,1,3.0,832773057 +122,10,3.0,832773057 +122,17,3.0,832773202 +122,28,3.0,832773358 +122,73,4.0,832773302 +122,150,3.0,832772925 +122,153,3.0,832772980 +122,161,3.0,832773057 +122,165,2.0,832772980 +122,185,2.0,832773092 +122,208,1.0,832773092 +122,231,1.0,832773017 +122,253,3.0,832773092 +122,261,3.0,832773358 +122,265,3.0,832773202 +122,272,4.0,832773202 +122,292,3.0,832773092 +122,296,1.0,832772925 +122,300,3.0,832773092 +122,316,4.0,832773017 +122,318,4.0,832773017 +122,329,3.0,832773017 +122,339,3.0,832773057 +122,342,1.0,832773202 +122,344,1.0,832772980 +122,349,3.0,832772977 +122,356,3.0,832773358 +122,380,1.0,832772925 +122,434,3.0,832773057 +122,468,3.0,832773202 +122,497,4.0,832773302 +122,527,3.0,832773302 +122,529,4.0,832773302 +122,534,5.0,832773302 +122,588,3.0,832772977 +122,590,3.0,832772925 +122,592,3.0,832772925 +122,595,3.0,832773017 +122,613,3.0,832773358 +122,668,3.0,832773358 +123,233,4.0,994021026 +123,288,5.0,994015967 +123,407,5.0,994021077 +123,785,5.0,994021092 +123,968,3.0,994021141 +123,1968,4.0,994015836 +123,1976,4.0,994015911 +123,2003,4.0,994015911 +123,2369,3.0,994021000 +123,2378,1.0,994015880 +123,2428,5.0,994021026 +123,2502,5.0,994021141 +123,2672,2.0,994015896 +123,2699,2.0,994020942 +123,2702,2.0,994021210 +123,2707,2.0,994020942 +123,2710,1.0,994020953 +123,2762,5.0,994021194 +123,2841,5.0,994021194 +123,2959,4.0,994021038 +123,2995,2.0,994021077 +123,3005,5.0,994020971 +123,3016,5.0,994021000 +123,3203,5.0,994021000 +123,3219,5.0,994021153 +123,3273,3.0,994021178 +123,3409,5.0,994021038 +123,3578,3.0,994021057 +123,3826,5.0,994021057 +123,3857,2.0,994020971 +123,4228,5.0,994015865 +123,4492,4.0,994020819 +123,4493,4.0,994020819 +124,1,4.5,1147862310 +124,2,3.0,1147861200 +124,19,4.0,1147861227 +124,47,3.5,1147861617 +124,110,5.0,1147862138 +124,266,3.0,1147861437 +124,293,4.5,1147861654 +124,296,3.0,1147861878 +124,318,3.5,1147861620 +124,350,4.0,1147861428 +124,356,4.0,1147861623 +124,527,5.0,1147861790 +124,541,2.5,1147862448 +124,589,5.0,1147862223 +124,593,3.5,1147862163 +124,786,3.0,1147861240 +124,1036,4.5,1147861587 +124,1090,4.5,1147862264 +124,1198,4.0,1147862042 +124,1200,5.0,1147862198 +124,1214,5.0,1147862306 +124,1222,3.5,1147862239 +124,1240,5.0,1147862371 +124,1270,5.0,1147862279 +124,1291,4.0,1147861555 +124,1625,4.0,1147861686 +124,1917,4.0,1147861415 +124,1961,3.5,1147861842 +124,2000,3.0,1147862399 +124,2028,4.0,1147861660 +124,2355,4.0,1147862049 +124,2542,4.0,1147861853 +124,2571,5.0,1147861561 +124,2683,3.0,1147861193 +124,2716,4.0,1147861161 +124,2762,4.0,1147862130 +124,2858,4.5,1147862230 +124,2959,5.0,1147861149 +124,3066,3.5,1147861893 +124,3114,4.0,1147861255 +124,3147,4.0,1147861568 +124,3578,4.5,1147861566 +124,3793,3.5,1147861388 +124,3996,2.0,1147861403 +124,4011,3.0,1147861760 +124,4014,4.0,1147862834 +124,4016,4.0,1147861701 +124,4223,4.0,1147861711 +124,4306,5.0,1147861207 +124,4973,4.0,1147862227 +124,4993,5.0,1147861204 +124,4995,3.5,1147861832 +124,5218,3.5,1147861688 +124,5418,2.5,1147861744 +124,5445,3.5,1147862433 +124,5679,3.0,1147861810 +124,5782,2.0,1147862179 +124,5952,5.0,1147861440 +124,5989,2.5,1147861752 +124,6323,3.0,1147861764 +124,6377,4.5,1147861640 +124,6539,4.5,1147861577 +124,6874,2.0,1147862295 +124,6942,3.0,1147861798 +124,7090,2.5,1147862366 +124,7153,5.0,1147861559 +124,7254,4.5,1147861821 +124,7360,3.0,1147861916 +124,7438,2.0,1147862207 +124,7445,4.0,1147861769 +124,8132,4.5,1147861726 +124,8360,4.5,1147861582 +124,8665,2.5,1147862346 +124,8798,2.5,1147861882 +124,8874,3.0,1147862438 +124,8957,3.0,1147861819 +124,8961,4.0,1147862135 +124,30707,3.0,1147861932 +124,32587,4.0,1147861867 +124,33166,3.5,1147861944 +124,33493,3.5,1147861644 +124,34405,2.5,1147862196 +124,37475,3.5,1147861573 +124,41569,4.0,1147862461 +124,41997,4.0,1147862176 +125,1,4.0,1269736592 +125,11,4.0,1269735560 +125,47,4.5,1269733663 +125,50,5.0,1244537461 +125,104,4.0,1269735058 +125,111,4.0,1244538123 +125,150,4.5,1269734153 +125,208,0.5,1269733955 +125,231,5.0,1244537702 +125,236,4.5,1269736207 +125,260,5.0,1244537436 +125,293,4.5,1244538139 +125,296,5.0,1244537427 +125,318,5.0,1244537564 +125,344,4.0,1269734365 +125,356,5.0,1244537870 +125,364,4.0,1269733891 +125,367,2.0,1244537743 +125,440,4.0,1269736684 +125,457,3.5,1269733436 +125,474,5.0,1269735100 +125,480,5.0,1244537415 +125,508,4.0,1269736628 +125,524,4.0,1269734088 +125,539,4.0,1269733830 +125,546,4.0,1269832398 +125,586,4.0,1269734212 +125,595,4.0,1269733931 +125,597,3.0,1244537726 +125,608,5.0,1244537507 +125,648,4.0,1244537842 +125,750,5.0,1269735179 +125,780,3.0,1269734068 +125,858,4.5,1269734004 +125,903,4.5,1269736378 +125,904,5.0,1269735467 +125,908,5.0,1269735305 +125,912,5.0,1244538087 +125,913,4.0,1269736203 +125,919,4.5,1244538057 +125,920,2.0,1269735439 +125,933,4.0,1269736604 +125,953,5.0,1269735864 +125,1035,2.5,1269735996 +125,1036,4.5,1269733784 +125,1073,4.5,1269733443 +125,1089,4.5,1244538001 +125,1097,4.5,1269734007 +125,1101,4.0,1269736599 +125,1136,5.0,1244537778 +125,1193,4.5,1269736437 +125,1196,4.0,1269736613 +125,1197,5.0,1244537770 +125,1198,4.5,1244537561 +125,1201,4.5,1269735930 +125,1204,5.0,1269736091 +125,1210,4.0,1269733639 +125,1213,4.5,1269734168 +125,1220,3.5,1269734601 +125,1221,4.0,1269736718 +125,1230,5.0,1244538472 +125,1234,4.0,1269736400 +125,1240,4.5,1244537845 +125,1242,3.5,1269736034 +125,1245,4.0,1269736643 +125,1265,5.0,1244537789 +125,1270,5.0,1244538151 +125,1278,4.5,1269736368 +125,1288,4.5,1269736393 +125,1291,4.5,1269736488 +125,1304,4.5,1269735681 +125,1387,4.5,1269736483 +125,1391,4.0,1269735088 +125,1485,5.0,1269734733 +125,1580,4.0,1269733878 +125,1608,4.0,1269735288 +125,1610,5.0,1244537823 +125,1653,3.5,1269736671 +125,1673,4.5,1269736548 +125,1682,5.0,1244537860 +125,1704,5.0,1244537923 +125,1721,4.0,1269733430 +125,1729,3.0,1269735987 +125,1732,5.0,1244538114 +125,1777,3.0,1269735628 +125,1784,4.5,1269736558 +125,1884,5.0,1269737513 +125,1892,4.0,1269736632 +125,1917,3.0,1269734042 +125,1961,4.5,1269736429 +125,2000,4.0,1269736478 +125,2011,0.5,1269734109 +125,2012,3.5,1244537996 +125,2028,4.5,1269736423 +125,2194,4.5,1269735278 +125,2355,3.0,1269734161 +125,2359,5.0,1244536977 +125,2407,4.0,1269736528 +125,2502,4.5,1244537980 +125,2571,4.0,1269733874 +125,2572,4.5,1269736000 +125,2628,0.5,1244537537 +125,2683,4.0,1269733455 +125,2706,0.5,1269734112 +125,2716,4.5,1269736504 +125,2723,4.0,1269734054 +125,2763,4.0,1269736390 +125,2791,5.0,1244538022 +125,2797,5.0,1269734032 +125,2804,4.0,1269736680 +125,2858,5.0,1244537657 +125,2918,4.5,1269736515 +125,2959,5.0,1244537480 +125,2987,3.5,1269736579 +125,3033,2.5,1269735788 +125,3160,5.0,1269823824 +125,3175,5.0,1269734513 +125,3246,3.0,1244537079 +125,3253,4.5,1269735457 +125,3360,4.5,1244537063 +125,3524,4.0,1269736562 +125,3552,4.5,1244536928 +125,3671,4.5,1269735510 +125,3717,3.0,1269735935 +125,3751,2.5,1269734016 +125,3755,3.5,1269735525 +125,3897,5.0,1244537685 +125,3948,3.0,1269734062 +125,3994,3.5,1269734659 +125,4002,3.0,1269737566 +125,4018,3.5,1269736108 +125,4022,3.5,1269733447 +125,4023,4.0,1269733776 +125,4025,1.0,1269735812 +125,4085,4.5,1269735202 +125,4226,4.0,1269733384 +125,4306,5.0,1244537528 +125,4361,4.0,1269736601 +125,4367,2.0,1269736281 +125,4886,4.0,1244537708 +125,4979,5.0,1244538176 +125,4993,4.5,1269733683 +125,5266,2.5,1269736021 +125,5349,4.0,1269733651 +125,5377,4.0,1269735816 +125,5378,1.0,1269734116 +125,5459,1.5,1269734961 +125,5481,3.0,1269736040 +125,5502,5.0,1244538086 +125,5952,3.5,1269733990 +125,5989,5.0,1244537608 +125,6373,4.0,1269735196 +125,6377,5.0,1244538015 +125,6539,3.0,1269734050 +125,6708,3.5,1269737542 +125,6711,5.0,1244537800 +125,6863,3.0,1269735283 +125,6870,4.5,1269735068 +125,6942,5.0,1269735210 +125,6947,3.5,1269735728 +125,6953,4.0,1269736255 +125,6979,3.0,1269737520 +125,7147,5.0,1269733926 +125,7153,4.0,1244537487 +125,7361,5.0,1269734149 +125,8360,3.5,1269733972 +125,8376,4.0,1269736638 +125,8784,4.0,1269733912 +125,8798,3.5,1269734945 +125,8949,5.0,1269734731 +125,8961,4.0,1269733906 +125,8981,4.0,1269737571 +125,30707,4.0,1244538187 +125,30793,0.5,1269734106 +125,32587,4.5,1269736410 +125,33166,5.0,1269734692 +125,33493,1.5,1269734083 +125,33679,3.5,1269735602 +125,34162,4.0,1269736371 +125,35836,4.0,1269733947 +125,40819,4.0,1269735313 +125,44191,4.5,1244537921 +125,44195,5.0,1269734797 +125,44665,4.5,1269736453 +125,45447,3.5,1269735450 +125,45722,2.5,1269734352 +125,46578,5.0,1269733885 +125,46723,5.0,1269736164 +125,47610,2.5,1269735873 +125,48394,4.5,1269736433 +125,48516,5.0,1244537556 +125,48774,4.5,1269736542 +125,48780,4.5,1269734205 +125,49272,4.0,1269734075 +125,52973,4.5,1269735187 +125,54503,4.0,1269733816 +125,55820,5.0,1244537638 +125,56367,4.5,1269733995 +125,57669,3.5,1269736050 +125,58559,5.0,1244537602 +125,59315,4.5,1269733998 +125,59387,5.0,1269733921 +125,61132,4.0,1269736587 +125,61323,5.0,1269735674 +125,64614,4.5,1269735004 +125,66659,0.5,1269735444 +125,68157,5.0,1269733529 +125,68319,0.5,1269736273 +125,68358,4.5,1244537577 +125,68954,4.5,1269736384 +126,1,5.0,833286470 +126,2,3.0,833286607 +126,10,3.0,833286456 +126,34,3.0,833286506 +126,39,3.0,833286550 +126,48,3.0,833286654 +126,58,4.0,833286795 +126,95,3.0,833286594 +126,150,5.0,833286399 +126,153,4.0,833286421 +126,160,3.0,833286550 +126,161,4.0,833286456 +126,185,3.0,833286470 +126,186,2.0,833286594 +126,207,3.0,833286795 +126,208,3.0,833286470 +126,231,4.0,833286440 +126,246,4.0,833286688 +126,252,3.0,833286577 +126,256,3.0,833286643 +126,292,4.0,833286456 +126,316,3.0,833286440 +126,317,3.0,833286506 +126,318,4.0,833286440 +126,329,3.0,833286440 +126,344,4.0,833286421 +126,349,4.0,833286421 +126,350,3.0,833286723 +126,356,4.0,833286916 +126,357,3.0,833287094 +126,362,3.0,833286940 +126,364,4.0,833286624 +126,367,4.0,833286643 +126,368,4.0,833287094 +126,377,4.0,833286957 +126,380,4.0,833286399 +126,410,4.0,833286488 +126,421,2.0,833286978 +126,435,3.0,833286550 +126,440,4.0,833286688 +126,454,3.0,833286624 +126,455,2.0,833287220 +126,457,4.0,833286524 +126,466,4.0,833287173 +126,468,3.0,833286712 +126,471,5.0,833287141 +126,474,5.0,833286996 +126,480,5.0,833286940 +126,497,4.0,833287056 +126,500,4.0,833287015 +126,529,4.0,833287141 +126,531,3.0,833287311 +126,539,4.0,833287219 +126,551,4.0,833286776 +126,588,5.0,833286421 +126,589,5.0,833286916 +126,590,3.0,833286399 +126,592,4.0,833286399 +126,593,4.0,833286506 +126,594,3.0,833287296 +126,595,4.0,833286440 +126,596,4.0,833287296 +126,616,3.0,833287296 +126,736,3.0,833287194 +127,5,4.0,842323102 +127,135,5.0,842323288 +127,193,4.0,842323003 +127,236,4.0,842322801 +127,237,5.0,842323052 +127,339,5.0,842322523 +127,350,3.0,842322769 +127,356,4.0,842322467 +127,367,4.0,842322571 +127,370,4.0,842322953 +127,380,4.0,842322388 +127,381,3.0,842323102 +127,420,3.0,842322681 +127,454,4.0,842322523 +127,480,3.0,842322523 +127,500,5.0,842322608 +127,539,4.0,842322709 +127,586,4.0,842322608 +127,597,5.0,842322608 +127,648,4.0,842322979 +127,736,4.0,842322979 +128,1,5.0,1049690031 +128,2,4.0,1049685256 +128,3,2.0,1049682634 +128,4,3.0,1049682515 +128,7,5.0,1049683873 +128,8,4.0,1049685242 +128,25,2.0,1049683567 +128,39,4.0,1049683567 +128,45,5.0,1049682646 +128,47,5.0,1049683132 +128,48,5.0,1049683855 +128,60,3.0,1049690251 +128,79,5.0,1049683456 +128,86,5.0,1049685242 +128,89,5.0,1049683332 +128,93,1.0,1049684039 +128,110,5.0,1049683003 +128,111,1.0,1049682562 +128,140,5.0,1049683791 +128,145,4.0,1049684584 +128,153,3.0,1049684855 +128,160,4.0,1049684855 +128,168,4.0,1049683955 +128,170,5.0,1049683282 +128,179,4.0,1049684017 +128,217,2.0,1049683476 +128,225,3.0,1049683383 +128,239,3.0,1049690067 +128,253,1.0,1049682729 +128,257,5.0,1049683504 +128,258,2.0,1049684039 +128,266,5.0,1049683032 +128,273,2.0,1049682822 +128,276,3.0,1049683828 +128,280,5.0,1049683189 +128,292,4.0,1049684687 +128,313,4.0,1049690067 +128,317,5.0,1049690269 +128,340,5.0,1049685213 +128,350,4.0,1049683309 +128,356,5.0,1049682548 +128,362,5.0,1049685227 +128,364,5.0,1049690031 +128,367,3.0,1049690251 +128,377,5.0,1049683587 +128,380,4.0,1049683651 +128,420,5.0,1049684979 +128,434,5.0,1049684794 +128,455,4.0,1049689862 +128,480,5.0,1049684614 +128,509,5.0,1049683680 +128,516,5.0,1049683062 +128,517,2.0,1049684701 +128,527,5.0,1049683003 +128,539,5.0,1049683603 +128,552,3.0,1049684687 +128,558,3.0,1049684826 +128,587,5.0,1049683716 +128,588,5.0,1049690334 +128,593,5.0,1049683132 +128,595,5.0,1049690031 +128,597,5.0,1049683603 +128,605,4.0,1049683889 +128,628,5.0,1049683151 +128,662,4.0,1049683325 +128,673,4.0,1049685256 +128,724,3.0,1049682807 +128,733,5.0,1049683179 +128,736,5.0,1049683266 +128,780,5.0,1049683032 +128,782,3.0,1049683439 +128,783,5.0,1049690067 +128,788,4.0,1049683889 +128,802,4.0,1049683674 +128,891,2.0,1049683456 +128,1015,5.0,1049685213 +128,1022,4.0,1049690967 +128,1028,5.0,1049690908 +128,1029,4.0,1049691020 +128,1030,5.0,1049690439 +128,1031,5.0,1049690439 +128,1032,5.0,1049690967 +128,1035,5.0,1049690908 +128,1049,4.0,1049684733 +128,1059,5.0,1049683620 +128,1064,3.0,1049690086 +128,1088,5.0,1049690378 +128,1092,4.0,1049683249 +128,1100,3.0,1049683972 +128,1183,1.0,1049683032 +128,1197,3.0,1049682539 +128,1210,5.0,1049682515 +128,1215,2.0,1049684749 +128,1265,2.0,1049683548 +128,1282,2.0,1049691020 +128,1320,2.0,1049682780 +128,1377,4.0,1049684769 +128,1380,5.0,1049690439 +128,1391,2.0,1049684916 +128,1393,5.0,1049683587 +128,1407,4.0,1049682729 +128,1438,4.0,1049683309 +128,1457,3.0,1049683751 +128,1479,4.0,1049683360 +128,1487,5.0,1049690334 +128,1488,4.0,1049683062 +128,1499,2.0,1049683504 +128,1513,4.0,1049682539 +128,1518,4.0,1049683351 +128,1541,3.0,1049683768 +128,1544,3.0,1049683326 +128,1552,5.0,1049682623 +128,1566,5.0,1049690067 +128,1569,4.0,1049683674 +128,1573,5.0,1049683179 +128,1580,4.0,1049685213 +128,1586,5.0,1049683042 +128,1608,3.0,1049683220 +128,1615,4.0,1049683231 +128,1616,5.0,1049683062 +128,1617,2.0,1049682679 +128,1644,3.0,1049682807 +128,1645,2.0,1049682729 +128,1667,3.0,1049684733 +128,1686,5.0,1049683423 +128,1687,3.0,1049683351 +128,1688,5.0,1049690067 +128,1717,2.0,1049682780 +128,1721,5.0,1049683567 +128,1760,3.0,1049690354 +128,1777,4.0,1049683603 +128,1866,3.0,1049684794 +128,1876,2.0,1049684762 +128,1889,2.0,1049683204 +128,1892,4.0,1049683249 +128,1895,5.0,1049683587 +128,1917,5.0,1049683282 +128,1947,4.0,1049690908 +128,2006,3.0,1049683738 +128,2017,5.0,1049690929 +128,2028,3.0,1049682497 +128,2078,5.0,1049690908 +128,2080,5.0,1049690967 +128,2081,5.0,1049690378 +128,2087,4.0,1049690967 +128,2088,4.0,1049690395 +128,2092,5.0,1049690102 +128,2096,5.0,1049690967 +128,2106,4.0,1049683033 +128,2114,5.0,1049682562 +128,2126,4.0,1049683439 +128,2137,5.0,1049682572 +128,2142,3.0,1049690086 +128,2162,4.0,1049689902 +128,2166,4.0,1049683835 +128,2279,3.0,1049682780 +128,2291,5.0,1049683620 +128,2316,4.0,1049683907 +128,2340,5.0,1049683716 +128,2353,4.0,1049683166 +128,2355,5.0,1049690048 +128,2385,3.0,1049683929 +128,2389,2.0,1049682835 +128,2424,5.0,1049683738 +128,2485,5.0,1049683651 +128,2490,3.0,1049683204 +128,2540,4.0,1049683326 +128,2548,1.0,1049682865 +128,2558,4.0,1049683873 +128,2572,5.0,1049683603 +128,2581,3.0,1049683701 +128,2605,4.0,1049683309 +128,2617,4.0,1049683204 +128,2620,4.0,1049683701 +128,2628,4.0,1049684749 +128,2657,5.0,1049690447 +128,2671,5.0,1049683620 +128,2687,5.0,1049690048 +128,2688,3.0,1049683467 +128,2707,5.0,1049683249 +128,2710,1.0,1049682795 +128,2719,3.0,1049682759 +128,2722,2.0,1049684817 +128,2762,5.0,1049683132 +128,2805,5.0,1049683920 +128,2806,4.0,1049683282 +128,2840,5.0,1049683282 +128,2841,5.0,1049683166 +128,2881,4.0,1049683408 +128,2888,5.0,1049683873 +128,2906,3.0,1049683920 +128,2978,3.0,1049683651 +128,3005,1.0,1049683266 +128,3081,4.0,1049683805 +128,3107,5.0,1049684713 +128,3114,5.0,1049690031 +128,3147,5.0,1049682660 +128,3159,1.0,1049690048 +128,3176,3.0,1049683249 +128,3178,4.0,1049684596 +128,3185,3.0,1049690613 +128,3285,3.0,1049690808 +128,3298,3.0,1049690695 +128,3299,3.0,1049690847 +128,3400,3.0,1049690102 +128,3408,5.0,1049690505 +128,3418,4.0,1049684584 +128,3489,4.0,1049685256 +128,3528,4.0,1049683716 +128,3535,1.0,1049684340 +128,3553,4.0,1049684436 +128,3554,4.0,1049684105 +128,3555,2.0,1049684373 +128,3556,3.0,1049690644 +128,3578,5.0,1049685053 +128,3594,4.0,1049690750 +128,3615,2.0,1049690152 +128,3675,3.0,1049690988 +128,3709,1.0,1049682846 +128,3717,5.0,1049685113 +128,3743,5.0,1049684216 +128,3753,4.0,1049683086 +128,3755,4.0,1049684436 +128,3798,5.0,1049684359 +128,3824,2.0,1049684260 +128,3825,5.0,1049690710 +128,3897,3.0,1049690481 +128,3908,2.0,1049682975 +128,3953,2.0,1049684289 +128,3977,3.0,1049685075 +128,3978,4.0,1049684186 +128,3980,4.0,1049690622 +128,3993,4.0,1049690662 +128,3998,4.0,1049690570 +128,3999,5.0,1049685145 +128,4016,2.0,1049690140 +128,4022,4.0,1049689958 +128,4023,4.0,1049684131 +128,4025,4.0,1049685090 +128,4034,4.0,1049690547 +128,4039,5.0,1049690378 +128,4052,4.0,1049682539 +128,4054,5.0,1049684159 +128,4056,4.0,1049690750 +128,4148,3.0,1049684450 +128,4155,4.0,1049684216 +128,4161,4.0,1049685113 +128,4238,4.0,1049684373 +128,4246,3.0,1049684142 +128,4299,4.0,1049685113 +128,4306,5.0,1049690140 +128,4308,5.0,1049690302 +128,4310,5.0,1049683099 +128,4344,4.0,1049685126 +128,4367,3.0,1049685135 +128,4369,5.0,1049684373 +128,4372,3.0,1049684216 +128,4388,1.0,1049682951 +128,4448,4.0,1049685075 +128,4639,3.0,1049684159 +128,4699,4.0,1049684505 +128,4720,5.0,1049682921 +128,4727,1.0,1049683099 +128,4745,3.0,1049690695 +128,4756,2.0,1049685166 +128,4814,5.0,1049684390 +128,4821,5.0,1049689981 +128,4823,4.0,1049684120 +128,4865,2.0,1049682909 +128,4867,5.0,1049690794 +128,4878,4.0,1049684082 +128,4886,5.0,1049690140 +128,4896,4.0,1049689958 +128,4901,5.0,1049684340 +128,4903,3.0,1049690516 +128,4951,4.0,1049683220 +128,4963,5.0,1049685053 +128,4973,5.0,1049684082 +128,4977,3.0,1049690695 +128,4979,3.0,1049690580 +128,4992,4.0,1049684159 +128,4993,5.0,1049689958 +128,5010,1.0,1049683086 +128,5013,1.0,1049690547 +128,5014,4.0,1049690599 +128,5066,4.0,1049684216 +128,5106,4.0,1049684289 +128,5108,5.0,1049684359 +128,5151,5.0,1049684159 +128,5159,5.0,1049690086 +128,5164,4.0,1049690110 +128,5266,4.0,1049684359 +128,5296,3.0,1049684271 +128,5299,5.0,1049684095 +128,5312,4.0,1049684359 +128,5349,3.0,1049685053 +128,5387,4.0,1049684468 +128,5388,3.0,1049684359 +128,5415,4.0,1049690710 +128,5418,4.0,1049684321 +128,5444,5.0,1049690140 +128,5449,4.0,1049684193 +128,5502,5.0,1049684340 +128,5524,4.0,1049684171 +128,5612,4.0,1049684545 +128,5620,4.0,1049684131 +128,5630,5.0,1049684321 +128,5677,3.0,1049684537 +128,5679,5.0,1049682909 +128,5693,2.0,1049690439 +128,5810,4.0,1049690588 +128,5816,3.0,1049689958 +128,5829,3.0,1049684216 +128,5872,1.0,1049685126 +128,5952,5.0,1049689958 +128,5954,3.0,1049690674 +128,5957,5.0,1049684171 +128,5970,5.0,1049683889 +128,5989,5.0,1049685053 +128,5991,5.0,1049690302 +128,5992,4.0,1049684082 +128,6155,5.0,1049684186 +128,6316,1.0,1049690439 +129,39,3.0,965328135 +129,527,5.0,965328135 +129,736,3.0,965328135 +129,1027,3.0,965328135 +129,1245,3.0,965328135 +129,1611,4.0,965328135 +129,2163,3.0,965328135 +129,3578,4.0,965328241 +129,3593,1.0,965328476 +129,3598,4.0,965328241 +129,3615,4.0,965328416 +129,3616,3.0,965328302 +129,3617,3.0,965328416 +129,3618,3.0,965328241 +129,3623,4.0,965328302 +129,3624,3.0,965328302 +129,3691,2.0,965328135 +129,3717,2.0,965328302 +129,3744,3.0,965328416 +129,3745,2.0,965328241 +129,3751,4.0,965328241 +129,3752,3.0,965328416 +129,3753,4.0,965328302 +129,3755,4.0,965328241 +129,3785,3.0,965328416 +129,3793,3.0,965328241 +130,1,3.0,1138997743 +130,10,3.5,1140723887 +130,19,1.0,1138998764 +130,21,3.5,1138999325 +130,34,3.0,1138999264 +130,36,4.0,1138999312 +130,48,3.0,1139003683 +130,50,3.5,1138997386 +130,104,1.5,1140723854 +130,110,3.0,1138999206 +130,141,2.5,1138999333 +130,150,4.0,1138999203 +130,153,0.5,1138998386 +130,165,2.0,1139003532 +130,173,1.0,1138999624 +130,193,0.5,1139000278 +130,216,3.0,1139000192 +130,223,3.0,1138999377 +130,231,3.5,1138999284 +130,235,0.5,1138998368 +130,246,4.0,1139002230 +130,260,4.5,1138997369 +130,266,2.5,1138999494 +130,272,3.5,1138999984 +130,288,1.0,1138999363 +130,293,4.0,1138997798 +130,300,3.5,1138999359 +130,303,3.5,1139000274 +130,315,3.5,1138998393 +130,316,2.0,1138999234 +130,318,3.5,1138985739 +130,333,1.5,1140723852 +130,337,4.0,1138999509 +130,339,3.5,1138999338 +130,349,3.0,1138999240 +130,353,3.5,1138998345 +130,356,3.5,1138998954 +130,364,3.5,1138998339 +130,367,2.5,1138999304 +130,368,3.0,1139003169 +130,377,3.0,1138999246 +130,380,3.5,1149644358 +130,410,2.5,1138999426 +130,423,2.0,1139003970 +130,442,1.0,1138998357 +130,454,2.5,1138998351 +130,457,4.0,1138998578 +130,475,3.5,1139000027 +130,480,3.0,1138999196 +130,497,4.0,1138998334 +130,500,3.5,1138999276 +130,508,1.5,1138999450 +130,527,4.0,1138997935 +130,541,4.0,1138997782 +130,543,2.0,1149644393 +130,551,3.0,1139004419 +130,588,4.0,1138998871 +130,589,3.5,1138998637 +130,590,4.0,1138998106 +130,592,3.5,1138998867 +130,593,3.0,1138997735 +130,594,4.0,1138999481 +130,595,3.5,1138999226 +130,596,4.0,1138985459 +130,597,3.0,1138999271 +130,608,2.0,1138999218 +130,610,2.0,1139000095 +130,648,2.0,1138999229 +130,661,3.5,1138999943 +130,674,1.0,1139003949 +130,720,4.0,1138997913 +130,736,3.0,1138999279 +130,745,4.0,1138985753 +130,750,3.0,1138998722 +130,780,1.5,1138998179 +130,785,2.5,1138999897 +130,858,4.0,1138997697 +130,899,4.5,1139000019 +130,908,3.5,1138998705 +130,914,3.5,1139003939 +130,919,3.5,1138999381 +130,953,5.0,1138999770 +130,1022,4.0,1139000177 +130,1023,4.0,1139002594 +130,1028,4.0,1138999778 +130,1035,5.0,1138999781 +130,1036,4.5,1138997776 +130,1042,3.5,1139000148 +130,1059,4.0,1138998314 +130,1079,3.5,1138999458 +130,1080,0.5,1138998296 +130,1086,4.0,1139002565 +130,1090,4.0,1138999632 +130,1092,3.0,1138999948 +130,1097,3.0,1138999293 +130,1101,3.0,1138998307 +130,1127,3.0,1138999543 +130,1136,4.5,1138997938 +130,1148,4.0,1138985476 +130,1172,4.0,1139003923 +130,1193,3.0,1138999352 +130,1196,5.0,1138985701 +130,1197,4.5,1138985732 +130,1198,4.0,1138985706 +130,1199,3.0,1138985488 +130,1200,4.0,1138997709 +130,1201,4.0,1138998626 +130,1204,4.5,1138985495 +130,1206,3.0,1138999487 +130,1208,4.5,1138998285 +130,1210,4.0,1138997428 +130,1213,3.5,1138998614 +130,1214,4.5,1138997786 +130,1215,3.0,1138985543 +130,1221,4.0,1139003651 +130,1222,3.5,1138999564 +130,1223,4.0,1138997410 +130,1224,5.0,1139002617 +130,1225,3.5,1138999472 +130,1240,4.0,1138998260 +130,1243,3.0,1139003088 +130,1246,4.0,1138998267 +130,1247,1.0,1138999570 +130,1249,4.0,1139000061 +130,1250,4.0,1140723823 +130,1259,3.5,1139002409 +130,1262,4.0,1138997921 +130,1265,4.5,1138997954 +130,1266,4.0,1138999766 +130,1270,4.0,1138998695 +130,1271,4.0,1139000109 +130,1275,3.0,1138999930 +130,1276,2.5,1138999889 +130,1277,4.0,1139003095 +130,1282,4.5,1138985550 +130,1288,4.5,1138998045 +130,1291,4.0,1138997398 +130,1293,4.0,1139000042 +130,1299,4.0,1139000228 +130,1302,3.5,1138999832 +130,1304,4.0,1139003629 +130,1307,3.5,1138999386 +130,1333,3.0,1138999978 +130,1339,2.0,1139000051 +130,1357,3.5,1139000105 +130,1370,3.5,1138999646 +130,1371,3.0,1138999999 +130,1372,1.0,1138985523 +130,1374,4.0,1138999538 +130,1375,1.5,1138985568 +130,1377,1.0,1138999849 +130,1378,3.0,1139003911 +130,1380,2.0,1138999651 +130,1387,3.5,1138999441 +130,1391,2.5,1138999586 +130,1393,2.0,1138999392 +130,1396,3.0,1139003180 +130,1411,4.0,1139002698 +130,1449,4.5,1138998001 +130,1466,3.5,1139000022 +130,1485,1.0,1140723811 +130,1500,4.0,1138997985 +130,1527,4.0,1138998269 +130,1544,2.5,1138999757 +130,1562,2.5,1139000200 +130,1566,2.5,1139003364 +130,1580,4.0,1138999316 +130,1610,2.5,1138999414 +130,1617,3.5,1138998573 +130,1625,1.5,1138985430 +130,1641,3.5,1138998229 +130,1674,3.0,1138985529 +130,1676,3.5,1138999699 +130,1682,3.0,1139002586 +130,1704,3.0,1138999402 +130,1721,3.0,1138998251 +130,1722,3.0,1138999878 +130,1729,3.5,1139003501 +130,1732,4.0,1138999639 +130,1747,2.5,1138999939 +130,1748,4.0,1138998225 +130,1777,3.5,1138999817 +130,1884,1.5,1138998812 +130,1909,1.5,1138985574 +130,1954,4.0,1139002614 +130,1957,5.0,1138997823 +130,1961,3.5,1139003177 +130,1968,4.5,1138998906 +130,1997,1.0,1138999860 +130,2000,3.0,1140723797 +130,2001,2.0,1138985434 +130,2003,3.5,1138999966 +130,2005,4.0,1139000114 +130,2006,3.5,1138998245 +130,2011,3.5,1138999592 +130,2012,2.0,1138998151 +130,2021,2.0,1139000186 +130,2023,3.5,1139003198 +130,2028,4.0,1138998595 +130,2054,3.0,1138998159 +130,2078,3.5,1139000209 +130,2081,3.5,1138985437 +130,2083,4.0,1139003860 +130,2087,4.0,1139004425 +130,2100,3.0,1138998930 +130,2105,4.0,1139000088 +130,2108,4.0,1149644350 +130,2115,2.5,1138998238 +130,2117,3.5,1139003856 +130,2124,2.5,1139000322 +130,2139,4.0,1139002520 +130,2140,3.5,1139004433 +130,2150,4.0,1139000159 +130,2151,3.5,1139003454 +130,2161,3.5,1139000118 +130,2174,3.0,1138999518 +130,2194,4.0,1138998587 +130,2268,3.5,1138999663 +130,2291,3.5,1138998919 +130,2294,3.0,1139000084 +130,2302,1.0,1138985399 +130,2324,4.5,1138998220 +130,2355,2.0,1138999477 +130,2359,4.0,1139002709 +130,2396,2.5,1138998912 +130,2406,4.0,1138998923 +130,2407,3.0,1138998883 +130,2409,3.0,1139003270 +130,2411,2.5,1139003272 +130,2421,2.5,1139003277 +130,2455,3.0,1139003192 +130,2467,4.0,1139002636 +130,2470,3.5,1138999903 +130,2502,4.5,1138998134 +130,2513,1.0,1139003839 +130,2542,4.5,1138998747 +130,2571,4.5,1138997421 +130,2628,3.5,1138999343 +130,2640,3.0,1138999611 +130,2642,2.5,1139003845 +130,2657,1.0,1138998776 +130,2699,3.0,1138985408 +130,2716,4.0,1138998888 +130,2728,4.0,1138998727 +130,2745,4.5,1139003045 +130,2761,3.0,1139002432 +130,2763,3.0,1138999845 +130,2788,3.5,1138998544 +130,2791,3.0,1138999531 +130,2792,2.0,1139003827 +130,2795,3.5,1139002483 +130,2797,3.5,1138999514 +130,2804,3.5,1138999827 +130,2858,2.0,1138999259 +130,2890,4.0,1138998896 +130,2915,2.5,1139000240 +130,2916,3.5,1138998117 +130,2918,4.5,1138998120 +130,2942,2.0,1139003804 +130,2947,3.5,1139000015 +130,2948,4.0,1139002557 +130,2949,3.5,1139002538 +130,2950,2.0,1139003810 +130,2951,4.0,1138998769 +130,2959,4.0,1138998566 +130,2968,4.0,1139000164 +130,2985,4.0,1138998205 +130,2987,3.5,1138999421 +130,2991,3.5,1139004267 +130,2993,3.5,1139002739 +130,2997,3.0,1138998089 +130,3033,2.5,1138999989 +130,3034,4.0,1139002528 +130,3039,3.5,1139002323 +130,3060,4.0,1139002753 +130,3087,3.5,1139003233 +130,3088,3.5,1139002489 +130,3098,3.5,1139002089 +130,3100,3.5,1140723698 +130,3101,3.0,1138999838 +130,3107,3.0,1139000344 +130,3108,3.0,1139004475 +130,3114,4.0,1138997747 +130,3173,2.5,1139003778 +130,3175,3.5,1138998124 +130,3247,3.5,1139003786 +130,3253,3.0,1138999869 +130,3256,2.5,1149644342 +130,3360,3.5,1139002313 +130,3396,4.0,1139002508 +130,3441,3.0,1139003239 +130,3448,3.5,1138998877 +130,3481,3.5,1138999687 +130,3527,4.0,1138999865 +130,3578,3.5,1138999373 +130,3608,4.0,1139003745 +130,3623,0.5,1138985391 +130,3671,2.0,1149644335 +130,3702,4.0,1139000265 +130,3703,4.5,1139000232 +130,3740,3.0,1139003758 +130,3755,3.5,1139000126 +130,3793,4.0,1138999444 +130,3897,2.5,1140723774 +130,3911,2.0,1138998034 +130,3967,3.0,1139002677 +130,3996,4.5,1138998097 +130,4011,4.0,1138998731 +130,4022,3.5,1138998191 +130,4027,4.5,1138998892 +130,4085,4.0,1139000136 +130,4226,4.5,1138997445 +130,4232,4.0,1139003242 +130,4262,3.0,1139002534 +130,4306,2.5,1138999409 +130,4369,2.0,1140723933 +130,4499,4.0,1138998510 +130,4545,3.5,1140723925 +130,4571,4.0,1139003602 +130,4623,2.5,1139003545 +130,4643,2.0,1139002134 +130,4679,4.0,1138997969 +130,4857,4.5,1139002624 +130,4886,3.0,1138997700 +130,4896,4.0,1138999934 +130,4963,3.5,1138998187 +130,4971,3.0,1139004237 +130,4980,3.0,1139003560 +130,4993,5.0,1138985690 +130,4995,3.5,1149644325 +130,5014,3.5,1139003416 +130,5016,1.0,1149644286 +130,5049,3.5,1139003209 +130,5299,3.0,1139000247 +130,5349,4.0,1138998112 +130,5378,4.0,1138998084 +130,5418,3.5,1138998092 +130,5445,2.5,1138999669 +130,5650,4.0,1139002715 +130,5782,3.5,1138997691 +130,5816,4.0,1139000140 +130,5952,4.0,1138985686 +130,6218,4.0,1139002775 +130,6296,4.0,1138998020 +130,6333,4.0,1138997801 +130,6365,3.5,1139000080 +130,6377,3.0,1138997433 +130,6378,3.5,1139003694 +130,6440,3.5,1139004327 +130,6539,4.5,1138985554 +130,6664,3.0,1139003401 +130,6768,4.0,1139003109 +130,6782,4.0,1139003468 +130,6791,4.0,1139004312 +130,6807,3.0,1139003512 +130,6934,2.0,1139003706 +130,6947,3.0,1138998783 +130,6979,4.0,1139002333 +130,7153,5.0,1138985455 +130,7247,3.0,1139004044 +130,7373,1.0,1138998410 +130,8169,4.0,1139002015 +130,8368,4.0,1139002299 +130,8376,4.0,1140723873 +130,8580,3.5,1139004407 +130,8636,3.0,1138998609 +130,8644,3.0,1139003215 +130,8665,3.0,1138998402 +130,8879,3.5,1139002515 +130,8961,4.0,1138997373 +130,8970,4.0,1139002082 +130,33493,4.0,1139002726 +130,33794,3.0,1138997905 +130,40959,0.5,1139002372 +130,41566,5.0,1138998599 +131,306,5.0,992234269 +131,307,5.0,992234780 +131,355,3.0,992138514 +131,356,5.0,992138595 +131,593,5.0,992234666 +131,728,5.0,992293816 +131,1176,4.0,992234666 +131,1233,3.0,992234666 +131,1265,4.0,992234930 +131,1927,5.0,992293241 +131,1959,4.0,992138514 +131,2028,5.0,992234780 +131,2324,5.0,992293816 +131,2357,4.0,992234780 +131,2396,5.0,992293816 +131,2420,3.0,992138595 +131,2628,4.0,992138465 +131,2683,3.0,992139118 +131,2688,2.0,992139284 +131,2692,3.0,992234780 +131,2700,2.0,992294336 +131,2706,3.0,992139118 +131,2710,4.0,992139152 +131,2762,5.0,992294297 +131,2763,3.0,992294336 +131,2858,4.0,992234780 +131,2997,5.0,992139152 +131,3253,2.0,992293841 +131,3317,4.0,992232012 +131,3408,5.0,992139237 +131,3824,3.0,992139118 +131,3852,3.0,992232012 +131,3897,4.0,992232012 +131,3967,5.0,992232012 +131,3977,3.0,992139205 +131,3979,1.0,992232108 +131,3988,2.0,992294182 +131,3991,3.0,992232081 +131,4018,4.0,992232081 +131,4025,3.0,992232081 +131,4031,2.0,992232012 +131,4034,4.0,992232012 +131,4246,5.0,992324879 +131,4310,3.0,992324879 +132,126,4.0,1283414558 +132,153,3.5,1285244965 +132,296,4.5,1284656495 +132,356,4.5,1284656497 +132,364,3.0,1285312208 +132,377,2.0,1285312185 +132,590,3.5,1284656529 +132,593,3.5,1284656508 +132,595,3.0,1285312214 +132,1111,5.0,1283508912 +132,1270,2.5,1285312198 +132,1900,4.5,1283508886 +132,2028,2.5,1285244961 +132,2135,4.0,1283414426 +132,2174,4.0,1284132807 +132,2357,4.5,1283435971 +132,2395,5.0,1283509594 +132,2571,3.5,1285244968 +132,2843,5.0,1283509429 +132,2997,5.0,1284797391 +132,3000,5.0,1284797346 +132,3083,5.0,1284658827 +132,3396,4.0,1283413949 +132,3456,5.0,1283416290 +132,3481,5.0,1283423354 +132,3744,1.5,1283414100 +132,3996,4.0,1285244977 +132,4306,2.5,1285245057 +132,4312,5.0,1296286644 +132,4873,3.5,1296286126 +132,4964,4.5,1283419525 +132,4967,5.0,1296286559 +132,4973,4.5,1283421870 +132,4979,5.0,1283509486 +132,5135,4.5,1283414221 +132,5577,4.5,1288623777 +132,5878,4.0,1283421217 +132,5902,5.0,1283423129 +132,5971,5.0,1284797310 +132,6003,5.0,1296286136 +132,6016,4.0,1283419384 +132,6211,4.5,1283417628 +132,6571,4.0,1283421336 +132,6711,4.5,1283421710 +132,6867,4.5,1296286578 +132,7349,4.5,1283508978 +132,7842,4.5,1283414551 +132,8012,5.0,1283423388 +132,8014,4.5,1283421212 +132,8910,5.0,1284797097 +132,8949,4.0,1284656613 +132,27178,5.0,1283423342 +132,27255,2.5,1283580984 +132,27727,4.0,1283421625 +132,27904,3.5,1285241821 +132,30810,5.0,1283414079 +132,38886,4.5,1283423121 +132,39768,4.5,1284658407 +132,41527,4.5,1283419790 +132,42935,4.0,1283418860 +132,44555,4.5,1283419399 +132,44694,4.0,1283421294 +132,46578,5.0,1283423097 +132,48082,5.0,1283419800 +132,48394,4.0,1283421257 +132,48744,3.5,1283416148 +132,50872,4.0,1285241214 +132,52885,5.0,1284496773 +132,53189,4.0,1284496709 +132,55269,5.0,1283423181 +132,55442,5.0,1283419466 +132,55555,5.0,1283421604 +132,56274,4.0,1283417106 +132,56367,4.0,1283423157 +132,57243,5.0,1283419368 +132,57792,3.5,1283580966 +132,60069,3.5,1285241067 +132,61323,4.5,1284132727 +132,65261,5.0,1283416116 +132,66097,5.0,1284797425 +132,66371,4.5,1283436034 +132,66665,5.0,1283509716 +132,67267,3.5,1283416213 +132,68954,4.0,1283423105 +132,69757,4.5,1283419079 +132,71464,4.5,1283419604 +132,71899,5.0,1283419541 +132,72226,5.0,1283419533 +132,73344,5.0,1283508931 +132,73587,5.0,1283420183 +132,74486,4.5,1285335351 +132,74916,4.5,1283417405 +132,79132,3.5,1296285967 +132,79702,4.5,1284658506 +133,47,2.5,1416147036 +133,110,2.5,1416147058 +133,111,0.5,1416151676 +133,215,1.0,1416148560 +133,247,1.0,1416148907 +133,296,4.0,1416147064 +133,318,2.5,1416146851 +133,356,3.5,1416147092 +133,551,2.5,1416149693 +133,593,0.5,1416147032 +133,595,2.5,1416166708 +133,745,0.5,1416152168 +133,912,2.5,1416151751 +133,919,2.0,1416152164 +133,1028,3.0,1416149837 +133,1080,2.0,1416166759 +133,1088,1.5,1416166508 +133,1148,0.5,1416152160 +133,1172,5.0,1416151906 +133,1193,3.5,1416147099 +133,1198,0.5,1416146861 +133,1207,5.0,1416151382 +133,1222,0.5,1416167123 +133,1235,3.0,1416147759 +133,1247,2.0,1416151683 +133,1259,5.0,1416147060 +133,1265,2.0,1416147111 +133,1270,2.5,1416147040 +133,1271,2.0,1416149794 +133,1302,1.0,1416151786 +133,1354,2.0,1416148867 +133,1357,1.5,1416148459 +133,1527,0.5,1416150265 +133,1653,1.5,1416149433 +133,1704,4.0,1416147114 +133,1732,0.5,1416167074 +133,1784,0.5,1416149415 +133,1884,2.0,1416149825 +133,1968,2.5,1416147765 +133,2005,2.0,1416149643 +133,2081,4.0,1416152156 +133,2087,1.0,1416152218 +133,2090,2.0,1416152182 +133,2096,1.0,1416152187 +133,2297,3.5,1416151493 +133,2324,4.0,1416151832 +133,2329,3.0,1416147085 +133,2692,0.5,1416166658 +133,2739,2.0,1416149829 +133,2762,0.5,1416147045 +133,2918,2.0,1416147101 +133,2920,3.0,1416166743 +133,2959,3.0,1416149349 +133,3317,0.5,1416150251 +133,3897,2.0,1416148801 +133,3949,0.5,1416147215 +133,3977,1.0,1416151854 +133,4896,4.0,1416151762 +133,4973,3.0,1416147113 +133,4979,4.0,1416152326 +133,4993,0.5,1416152056 +133,5218,0.5,1416151747 +133,5464,1.0,1416150738 +133,5608,2.5,1416148463 +133,5816,4.0,1416151667 +133,5992,2.0,1416150569 +133,6218,0.5,1416151745 +133,6724,3.5,1416148555 +133,6874,0.5,1416151669 +133,6953,1.5,1416150273 +133,7034,2.0,1416149089 +133,7042,1.5,1416150896 +133,7147,0.5,1416148619 +133,7254,2.5,1416150482 +133,7323,0.5,1416148052 +133,7371,4.0,1416148500 +133,8368,4.0,1416149457 +133,8464,0.5,1416151035 +133,8533,3.0,1416148805 +133,8638,0.5,1416147953 +133,8970,4.0,1416149122 +133,27178,0.5,1416150855 +133,27721,2.0,1416148791 +133,30707,3.5,1416148256 +133,30810,2.0,1416151800 +133,33166,4.0,1416152334 +133,36535,1.0,1416149227 +133,39183,0.5,1416150529 +133,40629,3.0,1416148375 +133,40815,4.0,1416151712 +133,40819,1.5,1416167044 +133,40870,3.5,1416148707 +133,41566,1.0,1416151820 +133,43376,3.0,1416148514 +133,45722,2.0,1416151753 +133,46578,1.5,1416147889 +133,46723,1.0,1416150791 +133,47099,2.0,1416148883 +133,47423,1.0,1416150781 +133,48082,3.0,1416152236 +133,48394,0.5,1416147175 +133,53123,3.5,1416167222 +133,54001,4.0,1416151665 +133,55247,3.0,1416166737 +133,55269,4.0,1416151542 +133,55442,3.0,1416166854 +133,55444,1.5,1416148953 +133,56367,5.0,1416148322 +133,56587,2.0,1416151937 +133,57669,4.0,1416148127 +133,59995,4.0,1416149894 +133,60069,0.5,1416147095 +133,60950,0.5,1416151020 +133,63853,4.5,1416151462 +133,63876,2.0,1416148342 +133,64614,2.0,1416147321 +133,64701,2.0,1416150287 +133,64716,4.5,1416150651 +133,64957,2.0,1416151014 +133,65188,4.0,1416166822 +133,68157,5.0,1416147245 +133,69757,4.5,1416151741 +133,69844,4.0,1416151678 +133,71899,3.0,1416147749 +133,72011,0.5,1416149287 +133,72395,0.5,1416151053 +133,72641,4.0,1416148353 +133,73290,5.0,1416149511 +133,73321,1.5,1416152072 +133,79132,1.0,1416151620 +133,80969,4.0,1416150601 +133,81562,4.0,1416166749 +133,81591,3.0,1416148004 +133,81834,4.0,1416148157 +133,82459,0.5,1416151654 +133,85438,2.5,1416167104 +133,85612,3.5,1416151509 +133,86880,0.5,1416151960 +133,86882,1.5,1416151825 +133,88125,4.0,1416151647 +133,88810,3.0,1416147860 +133,89492,0.5,1416152127 +133,89864,2.5,1416148204 +133,90866,2.5,1416150536 +133,91500,1.0,1416151755 +133,91653,1.5,1416149735 +133,92259,2.5,1416151835 +133,94959,4.0,1416147324 +133,95510,0.5,1416151768 +133,96821,2.5,1416152378 +133,97304,3.0,1416151661 +133,97921,2.5,1416151890 +133,97938,4.5,1416148545 +133,98056,3.0,1416166671 +133,98961,4.0,1416151976 +133,99114,3.5,1416151617 +133,100383,1.5,1416151903 +133,100714,4.0,1416148059 +133,102792,1.0,1416150767 +133,102993,4.5,1416151920 +133,103048,4.0,1416166531 +133,103279,3.0,1416150940 +133,103372,0.5,1416166636 +133,104374,2.5,1416148065 +133,104841,2.0,1416152039 +133,104879,3.0,1416151814 +133,106100,4.0,1416146897 +133,106438,4.5,1416166856 +133,106441,5.0,1416151147 +133,106782,2.5,1416146932 +133,106916,1.0,1416152114 +133,106920,4.0,1416166520 +133,107141,2.0,1416146928 +133,107559,5.0,1416151292 +133,109374,2.0,1416146891 +133,110730,0.5,1416146955 +133,112290,2.5,1416146886 +133,116939,0.5,1416166965 +134,1,3.5,1361244876 +134,2,4.5,1361245855 +134,5,1.0,1361244162 +134,10,4.0,1361245744 +134,16,4.0,1361245969 +134,19,2.0,1361245876 +134,29,5.0,1361244735 +134,32,4.5,1361244318 +134,36,4.0,1361245841 +134,39,3.5,1361245791 +134,47,4.5,1361245167 +134,110,3.0,1361245653 +134,141,5.0,1361245810 +134,145,1.0,1361244182 +134,153,3.0,1361246182 +134,165,4.0,1361246178 +134,196,2.0,1361244165 +134,223,3.0,1361245161 +134,231,2.5,1361245725 +134,253,4.0,1361245770 +134,260,3.5,1361245346 +134,292,4.5,1361245780 +134,293,5.0,1361245227 +134,296,4.5,1361245254 +134,300,4.0,1361245883 +134,316,4.5,1361245717 +134,317,2.5,1361246029 +134,318,4.0,1361245496 +134,319,4.5,1361246780 +134,329,4.0,1361245761 +134,342,4.0,1361244190 +134,344,2.5,1361245689 +134,349,4.0,1361245733 +134,356,4.0,1361245469 +134,364,3.0,1361246175 +134,367,2.0,1361246185 +134,377,3.5,1361245691 +134,440,4.0,1361245940 +134,457,4.5,1361245658 +134,480,5.0,1361244829 +134,485,2.0,1361244151 +134,494,3.0,1361244172 +134,500,4.0,1361245714 +134,539,3.5,1361245759 +134,541,5.0,1361245289 +134,551,5.0,1361245119 +134,552,2.0,1361244168 +134,586,2.5,1361245768 +134,587,3.5,1361245754 +134,588,3.0,1361245676 +134,589,5.0,1361245153 +134,592,4.0,1361245665 +134,593,5.0,1361245451 +134,595,3.0,1361245704 +134,597,3.0,1361245727 +134,608,4.5,1361245683 +134,648,4.5,1361245694 +134,708,4.0,1361246034 +134,736,4.5,1361245707 +134,778,4.5,1361245287 +134,780,4.5,1361245661 +134,910,3.0,1361245112 +134,924,4.0,1361244392 +134,950,2.5,1361245321 +134,1036,3.5,1361245315 +134,1041,4.5,1361245448 +134,1073,5.0,1361245751 +134,1079,5.0,1361244502 +134,1080,5.0,1361245220 +134,1094,3.5,1361244188 +134,1097,4.0,1361245730 +134,1101,3.0,1361245892 +134,1127,4.0,1361245079 +134,1136,5.0,1361244634 +134,1175,4.5,1361245258 +134,1193,4.5,1361245538 +134,1196,4.5,1361245293 +134,1197,4.0,1361245241 +134,1198,5.0,1361245317 +134,1199,4.5,1361245323 +134,1200,5.0,1361244548 +134,1206,4.0,1361245326 +134,1208,3.0,1361245847 +134,1210,4.5,1361245231 +134,1214,4.5,1361244541 +134,1215,4.0,1361245114 +134,1219,4.5,1361245942 +134,1220,4.0,1361245638 +134,1222,2.5,1361245888 +134,1233,2.5,1361244155 +134,1240,5.0,1361245348 +134,1242,2.0,1361244184 +134,1246,3.5,1361245921 +134,1247,4.0,1361246026 +134,1249,5.0,1361245566 +134,1257,4.0,1361246755 +134,1258,4.5,1361245265 +134,1259,4.0,1361245907 +134,1261,3.5,1361245133 +134,1265,3.5,1361245107 +134,1270,4.0,1361245236 +134,1275,3.0,1361244819 +134,1278,5.0,1361245157 +134,1285,5.0,1361244815 +134,1291,5.0,1361244571 +134,1307,3.0,1361244856 +134,1345,4.5,1361246286 +134,1350,4.0,1361246284 +134,1356,4.0,1361245916 +134,1370,4.0,1361246076 +134,1374,4.0,1361245275 +134,1376,4.0,1361244145 +134,1380,2.5,1361246019 +134,1387,4.5,1361245872 +134,1391,4.5,1361245977 +134,1394,4.5,1361245198 +134,1407,4.5,1361245983 +134,1517,4.0,1361245835 +134,1527,4.5,1361245150 +134,1573,3.5,1361245956 +134,1580,4.5,1361245709 +134,1584,3.5,1361245898 +134,1610,4.0,1361245881 +134,1625,4.0,1361245171 +134,1653,4.0,1361245961 +134,1663,4.5,1361246843 +134,1676,4.0,1361246089 +134,1721,3.0,1361245711 +134,1748,4.5,1361245204 +134,1917,3.0,1361245851 +134,1921,4.0,1361246998 +134,1923,5.0,1361245805 +134,1961,4.0,1361245795 +134,1968,4.0,1361244798 +134,1994,5.0,1361245189 +134,1997,4.5,1361245251 +134,2000,4.0,1361245990 +134,2001,3.0,1361244148 +134,2005,4.5,1361244814 +134,2010,4.0,1361245339 +134,2011,3.5,1361245934 +134,2012,3.5,1361245906 +134,2054,3.0,1361245975 +134,2072,3.0,1361244270 +134,2100,3.0,1361244186 +134,2109,4.0,1361246769 +134,2115,5.0,1361244574 +134,2132,5.0,1361245435 +134,2144,4.5,1361246955 +134,2160,4.0,1361245556 +134,2174,5.0,1361244489 +134,2288,3.5,1361245203 +134,2289,4.0,1361244842 +134,2291,4.5,1361245104 +134,2302,4.0,1361246094 +134,2311,4.0,1361244401 +134,2355,3.0,1361245894 +134,2492,3.0,1361244382 +134,2502,4.0,1361245071 +134,2504,4.5,1361244387 +134,2517,4.5,1361244758 +134,2571,4.0,1361245337 +134,2572,3.0,1361244291 +134,2580,4.0,1361246917 +134,2599,5.0,1361246976 +134,2617,3.5,1361245986 +134,2628,4.0,1361245740 +134,2640,4.0,1361246047 +134,2664,4.0,1361246291 +134,2683,5.0,1361245802 +134,2692,4.5,1361246015 +134,2710,4.5,1361245914 +134,2716,4.5,1361244865 +134,2762,4.5,1361245343 +134,2791,4.5,1361244871 +134,2797,3.5,1361245927 +134,2804,4.5,1361245467 +134,2858,4.0,1361245681 +134,2916,4.5,1361245911 +134,2918,5.0,1361245273 +134,2947,4.5,1361244879 +134,2959,4.0,1361245193 +134,2985,4.0,1361246745 +134,2987,4.5,1361245860 +134,2997,4.5,1361245214 +134,3039,4.5,1361244850 +134,3052,4.0,1361246037 +134,3081,4.5,1361246463 +134,3095,3.0,1361245531 +134,3101,4.0,1361244178 +134,3114,3.5,1361245129 +134,3175,4.5,1361244157 +134,3253,4.0,1361246747 +134,3471,4.5,1361245249 +134,3476,4.5,1361246347 +134,3499,4.0,1361245185 +134,3527,4.5,1361245137 +134,3534,5.0,1361244428 +134,3546,4.5,1361246695 +134,3552,4.5,1361246993 +134,3578,3.0,1361245074 +134,3623,4.0,1361245997 +134,3671,4.5,1361244873 +134,3676,4.5,1361246392 +134,3702,4.5,1361246719 +134,3703,5.0,1361245175 +134,3751,3.5,1361246024 +134,3793,4.5,1361245788 +134,3868,4.5,1361246775 +134,3948,3.5,1361246072 +134,3977,3.0,1361246008 +134,4011,4.0,1361245126 +134,4027,5.0,1361245134 +134,4034,4.0,1361245994 +134,4128,4.5,1361246435 +134,4226,5.0,1361245237 +134,4262,4.0,1361245147 +134,4306,4.0,1361244845 +134,4343,5.0,1361244590 +134,4427,4.5,1361245417 +134,4720,4.5,1361246288 +134,4833,4.5,1361246390 +134,4878,4.5,1361245165 +134,4886,3.0,1361244834 +134,4896,4.0,1361246057 +134,4963,4.5,1361245862 +134,4973,5.0,1361245145 +134,4979,4.5,1361247011 +134,4993,3.0,1361245076 +134,5294,4.0,1361246356 +134,5349,4.5,1361245858 +134,5378,4.0,1361246062 +134,5418,5.0,1361244793 +134,5445,4.5,1361245832 +134,5528,4.5,1361246669 +134,5574,4.5,1361244676 +134,5782,5.0,1361244688 +134,5952,3.0,1361245069 +134,6235,4.5,1361245563 +134,6323,5.0,1361246401 +134,6333,5.0,1361244857 +134,6365,4.0,1361246050 +134,6377,3.0,1361244810 +134,6379,4.0,1361244604 +134,6383,3.0,1361244379 +134,6502,4.5,1361244435 +134,6539,3.0,1361244837 +134,6755,4.5,1361246471 +134,6807,5.0,1361244643 +134,6874,5.0,1361247167 +134,7044,4.5,1361247220 +134,7104,3.5,1361244363 +134,7153,3.0,1361245067 +134,7438,5.0,1361245173 +134,7444,1.5,1361244337 +134,8169,3.5,1361244279 +134,8464,4.0,1361246742 +134,8810,4.0,1361246386 +134,8874,4.5,1361245123 +134,8914,4.5,1361246778 +134,8950,4.5,1361246646 +134,8961,3.0,1361244869 +134,27751,3.5,1361244267 +134,33004,5.0,1361244658 +134,33794,3.0,1361245093 +134,34405,5.0,1361244621 +134,40732,5.0,1361244531 +134,48394,5.0,1361244748 +134,48516,4.0,1361244808 +134,48774,4.5,1361245217 +134,49272,4.5,1361244801 +134,51255,4.0,1361245109 +134,53000,4.5,1361244438 +134,53468,4.5,1361246394 +134,53953,5.0,1361244346 +134,54286,4.5,1361244795 +134,55820,4.0,1361245196 +134,56757,2.5,1361246377 +134,57669,4.5,1361246902 +134,58559,2.5,1361245099 +134,59315,4.5,1361244827 +134,59387,4.5,1361246730 +134,59615,4.0,1361244568 +134,60069,3.0,1361244853 +134,62049,4.5,1361244367 +134,66934,2.0,1361245355 +134,68135,1.0,1361244352 +134,68157,5.0,1361245488 +134,68237,4.5,1361245186 +134,68358,4.0,1361244848 +134,68954,4.5,1361245434 +134,71057,4.0,1361244468 +134,71535,5.0,1361246441 +134,74324,4.0,1361245607 +134,74458,5.0,1361246568 +134,76093,4.0,1361245512 +134,76251,4.0,1361247081 +134,78499,3.0,1361245454 +134,79132,4.5,1361245301 +134,83134,4.5,1361246337 +134,88125,4.0,1361245571 +134,89745,5.0,1361244788 +134,91529,1.0,1361244804 +134,93510,4.5,1361244409 +134,93840,5.0,1361244516 +134,94864,5.0,1361244557 +134,94959,3.5,1361245472 +134,96079,5.0,1361244666 +134,96610,2.0,1361244831 +134,97757,2.0,1361244263 +134,99114,4.5,1361245398 +135,10,3.0,844995924 +135,18,4.0,844996129 +135,20,3.0,844995987 +135,21,3.0,844995924 +135,27,3.0,844996094 +135,65,1.0,844996036 +135,102,3.0,844996094 +135,104,3.0,844995987 +135,121,4.0,844996191 +135,135,1.0,844996017 +135,209,3.0,844996159 +135,637,3.0,844996036 +135,662,3.0,844996171 +135,736,1.0,844995935 +135,737,1.0,844996003 +135,747,2.0,844996017 +135,754,3.0,844996213 +135,762,3.0,844996036 +135,778,5.0,844996017 +135,818,2.0,844996139 +135,849,1.0,844996105 +135,1103,3.0,844996304 +136,1,4.5,1405977265 +136,104,4.5,1405977509 +136,260,4.5,1405975997 +136,318,4.0,1405975931 +136,364,4.5,1405977316 +136,500,3.5,1405977333 +136,586,3.5,1405977381 +136,588,4.5,1405977300 +136,595,4.0,1405977321 +136,780,4.0,1405977278 +136,912,3.0,1405975956 +136,953,4.0,1405977627 +136,1099,4.5,1405975538 +136,1196,4.0,1405977294 +136,1210,3.5,1405977273 +136,1265,3.0,1405977357 +136,1682,4.0,1405977426 +136,1968,1.0,1405977464 +136,2014,3.5,1405975561 +136,2135,3.5,1405975526 +136,2153,4.0,1405975484 +136,2394,4.0,1405975260 +136,2422,3.0,1405975376 +136,2628,4.0,1405977361 +136,2797,3.5,1405977493 +136,2926,2.0,1405975398 +136,3114,4.5,1405977436 +136,3461,3.0,1405975454 +136,3552,3.0,1405975219 +136,3578,5.0,1405977354 +136,3793,4.0,1405977391 +136,3991,3.0,1405975645 +136,4006,4.0,1405975439 +136,4306,5.0,1405977351 +136,4886,3.5,1405977432 +136,4896,4.5,1405977551 +136,4993,4.0,1405977327 +136,5349,4.0,1405977459 +136,5378,4.0,1405977563 +136,5952,4.5,1405977346 +136,6377,4.5,1405977449 +136,6535,3.5,1405975580 +136,6539,5.0,1405977419 +136,6663,3.5,1405975698 +136,6794,3.5,1405975826 +136,7153,4.0,1405977371 +136,8636,3.5,1405977595 +136,8961,4.0,1405977506 +136,34332,3.5,1405975837 +136,58559,4.0,1405977519 +137,10,4.0,946411786 +137,32,5.0,946412547 +137,50,5.0,946412158 +137,60,3.0,946411893 +137,260,5.0,946412230 +137,296,5.0,946412180 +137,349,4.0,946411786 +137,364,5.0,946412403 +137,367,5.0,946412262 +137,380,5.0,946411809 +137,531,3.0,946411129 +137,541,4.0,946412480 +137,588,4.0,946412403 +137,589,5.0,946412517 +137,590,4.0,946411646 +137,594,3.0,946412403 +137,595,5.0,946412430 +137,736,4.0,946411786 +137,898,4.0,946411959 +137,899,4.0,946412362 +137,910,5.0,946411987 +137,919,3.0,946412362 +137,952,4.0,946411786 +137,986,2.0,946411524 +137,1009,4.0,946411809 +137,1017,4.0,946411646 +137,1073,3.0,946411524 +137,1077,3.0,946412547 +137,1097,5.0,946412262 +137,1136,4.0,946411987 +137,1196,5.0,946412480 +137,1200,3.0,946412517 +137,1210,5.0,946411653 +137,1214,3.0,946412480 +137,1240,5.0,946412480 +137,1244,1.0,946412054 +137,1259,5.0,946411610 +137,1265,5.0,946411375 +137,1270,5.0,946412054 +137,1282,2.0,946412430 +137,1287,5.0,946411567 +137,1291,5.0,946411646 +137,1292,2.0,946412015 +137,1375,4.0,946411833 +137,1537,3.0,946412054 +137,1580,5.0,946411685 +137,1617,4.0,946412180 +137,1653,4.0,946412570 +137,1784,3.0,946412072 +137,1848,2.0,946412302 +137,1976,1.0,946411077 +137,2006,4.0,946411720 +137,2009,5.0,946412603 +137,2011,5.0,946412603 +137,2013,4.0,946411720 +137,2021,3.0,946412302 +137,2043,2.0,946411646 +137,2054,2.0,946411893 +137,2080,4.0,946412403 +137,2094,2.0,946411077 +137,2118,5.0,946411354 +137,2135,3.0,946411893 +137,2161,2.0,946412262 +137,2174,3.0,946412230 +137,2279,1.0,946411077 +137,2396,4.0,946412015 +137,2522,2.0,946411129 +137,2528,4.0,946411786 +137,2529,5.0,946412517 +137,2571,4.0,946412517 +137,2628,4.0,946411858 +137,2791,3.0,946412031 +137,2797,4.0,946412262 +137,2858,3.0,946411180 +137,2918,4.0,946411987 +137,2987,3.0,946411610 +137,3032,4.0,946412547 +137,3156,2.0,946412517 +137,3169,4.0,946411129 +137,5060,4.0,946412015 +138,1,2.0,1440379001 +138,50,4.0,1440379088 +138,260,4.0,1440379476 +138,296,4.5,1440379472 +138,318,4.5,1440379086 +138,356,4.0,1440378996 +138,480,2.5,1440378998 +138,527,4.0,1440379092 +138,780,0.5,1440379483 +138,858,5.0,1440379089 +138,924,5.0,1440379938 +138,1193,4.0,1440379520 +138,1201,4.0,1440380633 +138,1203,4.5,1440379345 +138,1206,4.0,1440380329 +138,1213,4.0,1440379097 +138,1221,3.0,1440379096 +138,1258,4.5,1440380325 +138,1270,4.0,1440379003 +138,1584,3.5,1440379423 +138,2028,3.0,1440379493 +138,2329,3.0,1440379257 +138,2571,3.5,1440379002 +138,2959,4.0,1440379242 +138,3578,2.0,1440379156 +138,3793,2.5,1440379164 +138,4226,5.0,1440379161 +138,4306,0.5,1440379157 +138,4886,0.5,1440379171 +138,4993,3.5,1440379148 +138,4995,4.5,1440379184 +138,5349,0.5,1440379177 +138,5388,3.5,1440380097 +138,5816,3.0,1440379205 +138,5952,3.0,1440379149 +138,5995,4.0,1440379563 +138,6016,3.0,1440379211 +138,6333,0.5,1440379198 +138,6377,1.0,1440379175 +138,6539,2.5,1440379166 +138,7153,3.5,1440379152 +138,7502,4.0,1440379262 +138,8360,0.5,1440379203 +138,8368,3.0,1440379816 +138,8636,0.5,1440379200 +138,8961,0.5,1440379805 +138,33794,4.0,1440379809 +138,44555,3.5,1440379269 +138,48516,4.5,1440379207 +138,48780,5.0,1440379248 +138,55247,3.5,1440379576 +138,58559,4.0,1440379179 +138,59315,3.5,1440379218 +138,68157,4.5,1440379255 +138,77658,4.5,1440379355 +138,79132,5.0,1440379245 +138,80463,3.5,1440379410 +138,80906,4.0,1440380773 +138,81845,3.5,1440379572 +138,86880,2.5,1440380767 +138,86911,3.0,1440380782 +138,88810,3.0,1440380741 +138,89904,1.5,1440380784 +138,90866,2.0,1440380751 +138,91529,5.0,1440379247 +138,95510,0.5,1440380709 +138,97938,3.0,1440380727 +138,99114,4.0,1440379643 +138,103249,2.0,1440380794 +138,104841,3.5,1440379950 +138,105844,3.0,1440380763 +138,106100,3.0,1440380757 +138,106782,4.0,1440380722 +138,109374,1.0,1440379581 +138,109487,5.0,1440379056 +138,112552,3.0,1440379431 +138,115713,4.0,1440379062 +138,116797,4.0,1440379059 +138,122882,3.5,1440379061 +138,122900,1.0,1440379297 +138,134170,3.5,1440379307 +139,110,3.5,1066860908 +139,318,3.5,1066860904 +139,333,4.0,1066860647 +139,342,4.5,1066860617 +139,480,4.5,1066861186 +139,541,4.0,1066861224 +139,589,3.0,1066861159 +139,785,2.5,1066860664 +139,852,2.5,1066860594 +139,1011,3.5,1066861087 +139,1097,4.5,1066861156 +139,1196,5.0,1066861128 +139,1206,2.5,1066861232 +139,1210,5.0,1066861138 +139,1240,4.0,1066861175 +139,1242,3.0,1066860858 +139,1258,4.5,1066860569 +139,1259,4.0,1066860889 +139,1270,4.0,1066861118 +139,1461,2.5,1066861049 +139,1517,4.5,1066860555 +139,1580,3.5,1066861243 +139,1584,5.0,1066861183 +139,1653,3.5,1066860612 +139,1704,4.5,1066860897 +139,1917,0.5,1066860579 +139,1958,3.0,1066860952 +139,1961,4.5,1066860883 +139,1968,3.5,1066860861 +139,2011,4.0,1066860601 +139,2100,2.0,1066860669 +139,2174,3.0,1066860559 +139,2268,5.0,1066860609 +139,2302,3.5,1066860675 +139,2324,5.0,1066860586 +139,2395,3.5,1066860623 +139,2529,3.0,1066861192 +139,2571,4.5,1066861121 +139,2712,2.0,1066860605 +139,2791,2.0,1066860946 +139,2804,5.0,1066860658 +139,2916,4.0,1066861215 +139,2918,3.0,1066860979 +139,3098,4.0,1066860886 +139,3147,4.5,1066860820 +139,3386,4.5,1066860900 +139,3408,4.5,1066860638 +139,3471,4.0,1066861168 +139,3538,4.5,1066860969 +139,3702,3.0,1066861237 +139,3994,3.5,1066861206 +139,4149,3.5,1066861079 +139,4226,4.5,1066860833 +139,4247,0.5,1066861031 +139,4290,3.0,1066861058 +139,4394,3.0,1066861052 +139,4532,0.5,1066861066 +139,4929,1.0,1066861099 +139,4995,4.0,1066860912 +139,5054,3.5,1066861201 +139,5308,4.5,1066861006 +139,5349,3.5,1066861152 +139,5360,3.5,1066861002 +139,5377,4.0,1066860838 +139,5445,4.5,1066861132 +139,5502,4.0,1066861171 +139,5989,4.0,1066860827 +139,6796,5.0,1066860848 +140,5,4.5,1398068239 +140,60,2.0,1398068334 +140,216,1.0,1398068296 +140,256,3.5,1398068279 +140,267,3.5,1398068429 +140,318,5.0,1398068779 +140,342,0.5,1398068255 +140,356,4.5,1398069548 +140,364,4.0,1398069877 +140,552,0.5,1398068232 +140,593,4.5,1398069545 +140,765,4.5,1398068376 +140,1197,3.5,1398068846 +140,1203,4.5,1398068810 +140,1513,2.0,1398068298 +140,2059,4.5,1398068475 +140,2329,3.5,1398068868 +140,2470,4.0,1398068249 +140,2565,1.5,1398068441 +140,3247,3.5,1398068320 +140,3564,3.5,1398068624 +140,4022,4.5,1398070519 +140,4306,4.5,1398069816 +140,4896,4.0,1398070559 +140,4963,4.5,1398069792 +140,5349,4.0,1398070498 +140,5445,3.0,1398070522 +140,5618,1.5,1398068815 +140,5816,3.0,1398070657 +140,5989,4.0,1398069787 +140,6218,1.5,1398068331 +140,6539,4.0,1398069800 +140,6942,3.0,1398070514 +140,8368,4.5,1398070576 +140,31658,4.0,1398070578 +140,57504,3.5,1398070653 +140,72641,3.0,1398070681 +140,74458,3.5,1398069668 +140,81845,3.0,1398069605 +140,81847,3.0,1398069703 +140,88125,3.5,1398069632 +140,97895,3.5,1398069387 +140,103801,2.5,1398069406 +140,104374,4.0,1398069369 +140,104841,4.5,1398069325 +140,106540,4.0,1398069540 +141,318,5.0,944933710 +141,349,4.0,956540824 +141,356,3.0,944933710 +141,480,4.0,944933847 +141,648,3.0,979428119 +141,1061,3.0,959003310 +141,1210,3.0,949293748 +141,1544,3.0,998014490 +141,1693,4.0,958707490 +141,1876,2.0,945056203 +141,2028,5.0,944933710 +141,2427,2.0,947534592 +141,2571,4.0,949293609 +141,2628,2.0,979428220 +141,2724,2.0,979428203 +141,2881,3.0,952206207 +141,3147,4.0,949293748 +141,3185,2.0,979428221 +141,3256,4.0,979428134 +141,3354,1.0,979428095 +141,3513,2.0,959003302 +141,3623,3.0,979428119 +141,3753,4.0,979428134 +141,3755,3.0,979428204 +141,3793,2.0,979428037 +141,3916,5.0,979428077 +141,4022,3.0,998014346 +141,4033,4.0,998014346 +141,4034,4.0,998014346 +141,4310,4.0,991081955 +141,4638,3.0,998014490 +142,1,4.0,997731606 +142,150,3.0,997098002 +142,260,2.0,997731322 +142,296,2.0,997731488 +142,344,1.0,997097547 +142,356,3.0,997097201 +142,593,5.0,997731460 +142,904,3.0,997731488 +142,909,3.0,997098002 +142,919,5.0,997731439 +142,1097,3.0,997731585 +142,1136,1.0,997731439 +142,1196,1.0,997731406 +142,1219,4.0,997731439 +142,1270,4.0,997098178 +142,1327,3.0,997097862 +142,1379,1.0,997097126 +142,1387,4.0,997731540 +142,1499,2.0,997097887 +142,1984,1.0,997097104 +142,2011,3.0,997098179 +142,2012,3.0,997098179 +142,2028,3.0,997731406 +142,2133,2.0,997097602 +142,2262,2.0,997097547 +142,2378,1.0,997097175 +142,2522,2.0,997097663 +142,2699,2.0,997098027 +142,2791,3.0,997097663 +142,2846,3.0,997097602 +142,2971,3.0,997097731 +142,3107,4.0,997098179 +142,3114,4.0,997731514 +142,3147,4.0,997731488 +142,3250,3.0,997097710 +142,3362,4.0,997097201 +142,3363,3.0,997097801 +142,3421,3.0,997097922 +142,3471,2.0,997731439 +142,3524,3.0,997098048 +142,3534,3.0,997097461 +142,3543,3.0,997731565 +142,4238,3.0,997097753 +142,4291,1.0,997097510 +142,4465,3.0,997097547 +142,4564,2.0,997097774 +142,4673,3.0,999350539 +142,4677,2.0,999350539 +142,4679,3.0,999350539 +142,4686,1.0,999350510 +142,4709,3.0,999350465 +142,4714,1.0,997097967 +142,4720,3.0,999350418 +142,4744,3.0,1001762787 +142,4784,2.0,1001762723 +142,4787,4.0,1001762723 +142,4803,3.0,1001762672 +142,4814,4.0,1001762651 +142,4830,3.0,1001762599 +142,4834,1.0,1001762575 +142,4835,2.0,1001762575 +143,47,4.5,1149649707 +143,101,5.0,1149650173 +143,160,1.5,1149647922 +143,173,2.0,1149648223 +143,225,1.0,1149648213 +143,296,4.0,1149649318 +143,318,4.5,1149651150 +143,353,3.0,1149647927 +143,356,5.0,1149649352 +143,370,1.5,1149648270 +143,432,1.0,1149648209 +143,480,3.0,1149649360 +143,522,1.0,1149650329 +143,527,3.5,1149651175 +143,593,4.5,1149649343 +143,778,4.5,1149651154 +143,832,3.5,1149648233 +143,920,5.0,1149647934 +143,1084,4.0,1149649643 +143,1089,4.5,1149649880 +143,1188,4.0,1149652279 +143,1206,5.0,1149649966 +143,1245,1.5,1149650037 +143,1247,4.5,1149650168 +143,1252,3.5,1149650138 +143,1258,4.5,1149649889 +143,1288,2.0,1149650080 +143,1304,4.0,1149647915 +143,1358,4.0,1149650028 +143,1380,3.0,1149648260 +143,1449,1.5,1149650110 +143,1653,1.0,1149648217 +143,1673,4.5,1149649730 +143,1729,4.0,1149650090 +143,1884,4.0,1149649531 +143,2011,3.0,1149647890 +143,2054,1.0,1149648220 +143,2329,4.5,1149651144 +143,2333,5.0,1149650313 +143,2502,4.5,1149649957 +143,2599,3.0,1149648257 +143,2858,4.5,1149651146 +143,2908,3.5,1149650126 +143,2959,4.5,1149649718 +143,3019,3.0,1149650334 +143,3949,3.5,1149649869 +143,4011,5.0,1149651197 +143,4034,3.5,1149648743 +143,4235,4.5,1149649478 +143,4262,3.5,1149649918 +143,4308,4.5,1149652281 +143,4848,0.5,1149650208 +143,4855,4.5,1149649979 +143,4886,3.0,1149648266 +143,4973,4.5,1149649456 +143,4979,5.0,1149649247 +143,5225,4.5,1149650154 +143,5391,4.5,1149649786 +143,5445,0.5,1149648226 +143,5669,4.5,1149651166 +143,6711,4.5,1149649208 +143,6874,5.0,1149649302 +143,6953,4.0,1149649945 +143,7147,5.0,1149649503 +143,7438,5.0,1149649305 +143,8645,4.5,1149649993 +143,8784,4.5,1149649885 +143,8873,4.0,1149651186 +143,8970,5.0,1149650013 +143,30810,5.0,1149650322 +143,32587,5.0,1149649858 +143,33166,4.5,1149651189 +143,33794,2.5,1149651161 +143,34437,3.0,1149650183 +143,39414,5.0,1149649189 +143,44191,5.0,1149649076 +143,45499,3.5,1149649117 +144,10,5.0,837455462 +144,21,2.0,837455574 +144,32,5.0,837455646 +144,39,3.0,837455602 +144,47,4.0,837455508 +144,150,3.0,837455152 +144,153,3.0,837455212 +144,165,4.0,837455201 +144,185,2.0,837455463 +144,225,4.0,837455538 +144,253,3.0,837455463 +144,266,4.0,837455648 +144,282,2.0,837455702 +144,288,3.0,837455510 +144,292,3.0,837455389 +144,296,5.0,837455154 +144,315,3.0,837455702 +144,316,3.0,837455360 +144,329,3.0,837455359 +144,337,4.0,837455765 +144,344,3.0,837455207 +144,349,5.0,837455205 +144,356,3.0,837455538 +144,364,5.0,837455538 +144,377,5.0,837455646 +144,380,3.0,837455155 +144,410,2.0,837455505 +144,420,1.0,837455574 +144,432,2.0,837455642 +144,434,3.0,837455389 +144,454,5.0,837455537 +144,457,5.0,837455389 +144,480,4.0,837455574 +144,500,3.0,837455700 +144,527,4.0,837455762 +144,553,3.0,837455769 +144,588,3.0,837455203 +144,589,5.0,837455602 +144,590,4.0,837455151 +144,592,3.0,837455149 +144,593,5.0,837455389 +145,10,5.0,845421721 +145,19,5.0,845421886 +145,32,5.0,845421966 +145,47,5.0,845421789 +145,110,4.0,845421721 +145,150,3.0,845421514 +145,153,5.0,845421597 +145,161,5.0,845421721 +145,165,5.0,845421597 +145,185,5.0,845421758 +145,208,3.0,845421721 +145,225,5.0,845421966 +145,231,5.0,845421636 +145,253,3.0,845421758 +145,292,4.0,845421721 +145,296,3.0,845421514 +145,300,1.0,845421838 +145,316,5.0,845421676 +145,317,5.0,845421966 +145,329,3.0,845421636 +145,344,5.0,845421597 +145,356,5.0,845421676 +145,364,5.0,845421789 +145,367,5.0,845421838 +145,377,5.0,845421789 +145,380,5.0,845421515 +145,410,4.0,845421838 +145,434,5.0,845421676 +145,480,5.0,845421676 +145,500,5.0,845421838 +145,587,5.0,845421838 +145,588,4.0,845421597 +145,589,5.0,845421789 +145,592,5.0,845421514 +145,593,5.0,845421636 +145,595,4.0,845421636 +145,597,5.0,845421886 +145,780,5.0,845421991 +146,1,5.0,1256071139 +146,150,4.0,1256071106 +146,153,2.0,1256071554 +146,165,3.0,1256071535 +146,260,5.0,1256071143 +146,318,4.5,1256071030 +146,344,2.5,1256071403 +146,356,4.0,1256071022 +146,364,5.0,1256071598 +146,377,2.5,1256071385 +146,380,2.5,1256071313 +146,435,3.0,1256070632 +146,457,4.0,1256071062 +146,480,4.0,1256071213 +146,494,3.5,1256070637 +146,520,4.0,1256070626 +146,524,3.5,1256070798 +146,543,3.0,1256070669 +146,588,5.0,1256071447 +146,592,4.0,1256071159 +146,593,4.0,1256071052 +146,733,4.0,1256071636 +146,736,3.5,1256071551 +146,780,3.5,1256071087 +146,1097,3.5,1256071515 +146,1196,4.0,1256071274 +146,1198,4.0,1256071242 +146,1210,4.0,1256071366 +146,1270,4.5,1256071235 +146,1302,4.0,1256070700 +146,1569,1.5,1256070731 +146,1580,3.5,1256071497 +146,1721,3.0,1256071301 +146,1831,1.0,1256070809 +146,2006,2.5,1256070651 +146,2028,4.5,1256071156 +146,2302,3.5,1256070622 +146,2478,3.5,1256070833 +146,2628,3.0,1256071434 +146,2683,4.0,1256071580 +146,2716,4.0,1256071454 +146,2762,3.5,1256071125 +146,2804,4.0,1256070692 +146,2881,2.5,1256070791 +146,2959,3.5,1256071570 +146,3105,3.5,1256070838 +146,3247,3.0,1256070819 +146,3421,4.5,1256070712 +146,4226,4.5,1256071259 +146,4306,4.5,1256071075 +146,4886,3.5,1256071278 +146,4963,4.0,1256071486 +146,5378,3.0,1256071619 +146,6377,4.5,1256071103 +146,6711,3.0,1256071561 +146,6874,3.0,1256071208 +146,7438,2.5,1256071348 +146,8360,3.0,1256071512 +146,8961,4.5,1256071187 +146,33493,3.5,1256071623 +146,33794,3.5,1256071306 +146,44191,4.0,1256071471 +146,48516,4.0,1256071373 +146,49272,3.5,1256071427 +146,51662,3.0,1256071632 +146,56367,3.0,1256071408 +146,58559,5.0,1256071081 +146,59315,3.5,1256071479 +146,59945,3.0,1256071414 +146,60069,4.0,1256071467 +146,66915,3.0,1256071118 +146,71102,4.0,1256071640 +146,71460,1.0,1256071015 +147,50,5.0,1405201558 +147,111,5.0,1405202753 +147,207,3.5,1405201255 +147,296,5.0,1405201686 +147,381,3.5,1405201272 +147,527,4.5,1405202775 +147,608,5.0,1405202743 +147,778,5.0,1405202767 +147,934,4.0,1405201296 +147,1199,3.5,1405202676 +147,1258,5.0,1405202787 +147,1556,2.0,1405201244 +147,1588,4.0,1405201311 +147,1665,3.5,1405201384 +147,2116,4.0,1405201249 +147,2123,4.0,1405201435 +147,2324,4.5,1405202640 +147,2542,5.0,1405202792 +147,2565,4.0,1405201348 +147,2686,3.0,1405201225 +147,2692,5.0,1405202772 +147,2858,4.5,1405202798 +147,3034,4.0,1405201300 +147,3155,4.0,1405201361 +147,3159,4.0,1405201319 +147,3396,3.0,1405201208 +147,3825,2.0,1405201342 +147,3949,4.0,1405201615 +147,4011,5.0,1405201762 +147,4306,4.5,1405202645 +147,6016,5.0,1405201578 +147,7323,5.0,1405202632 +147,8873,4.0,1405203154 +147,35836,1.5,1405201645 +147,40819,5.0,1405202727 +147,46578,5.0,1405201783 +147,56367,5.0,1405201523 +147,58559,4.0,1405201572 +148,29,3.5,1059603929 +148,32,4.0,1059603935 +148,40,4.5,1059507590 +148,52,4.0,1059504972 +148,58,4.0,1059504946 +148,145,2.0,1059530841 +148,172,2.5,1059504993 +148,185,3.0,1059604099 +148,232,4.5,1059603866 +148,329,4.0,1059604036 +148,364,4.0,1059604221 +148,480,4.5,1059604007 +148,492,3.5,1059604535 +148,585,2.5,1059530882 +148,588,4.0,1059604244 +148,589,3.5,1059507607 +148,590,3.5,1059507635 +148,596,4.5,1059604241 +148,648,4.0,1059604568 +148,780,3.5,1059603985 +148,903,5.0,1059604409 +148,904,5.0,1059604392 +148,913,4.0,1059604403 +148,919,4.5,1059604212 +148,924,5.0,1059604500 +148,934,3.5,1059603845 +148,950,3.5,1059604425 +148,1022,4.5,1059604253 +148,1028,5.0,1059505000 +148,1037,3.0,1059604127 +148,1097,5.0,1059604303 +148,1136,4.5,1059604684 +148,1172,5.0,1059680324 +148,1175,4.0,1059603920 +148,1208,5.0,1059504953 +148,1234,4.0,1059604733 +148,1247,4.0,1059504938 +148,1249,3.5,1059507495 +148,1252,5.0,1059604431 +148,1258,2.0,1059504978 +148,1261,3.0,1059531137 +148,1269,5.0,1059604396 +148,1278,5.0,1059604712 +148,1284,4.0,1059604455 +148,1288,4.5,1059505008 +148,1304,4.0,1059504930 +148,1391,2.5,1059604044 +148,1394,4.5,1059504950 +148,1449,4.5,1059604760 +148,1517,4.5,1059504984 +148,1544,3.5,1059604070 +148,1580,4.0,1059603838 +148,1584,3.5,1059603976 +148,1610,5.0,1059507616 +148,1617,4.5,1059604383 +148,1625,4.0,1059604479 +148,1653,4.0,1059603970 +148,1676,3.5,1059604059 +148,1690,3.0,1059604077 +148,1711,4.0,1059604605 +148,1732,4.0,1059604507 +148,1779,3.5,1059604123 +148,1909,3.5,1059604016 +148,1921,4.5,1059603952 +148,1923,4.0,1059507622 +148,2046,4.5,1059603988 +148,2053,2.5,1059604160 +148,2080,4.5,1059604227 +148,2085,4.0,1059604267 +148,2087,4.0,1059604258 +148,2116,4.0,1059531240 +148,2174,4.0,1059504959 +148,2184,4.5,1059604513 +148,2324,4.0,1059504997 +148,2571,4.5,1059603925 +148,2599,5.0,1059504967 +148,2628,2.5,1059604051 +148,2706,1.0,1059504922 +148,2797,4.5,1059504963 +148,2858,5.0,1059604705 +148,2986,3.5,1059530938 +148,2997,4.5,1059604716 +148,3175,4.0,1059603944 +148,3176,3.5,1059604467 +148,3256,4.0,1059507647 +148,3262,3.0,1059604600 +148,3362,4.0,1059604747 +148,3386,3.5,1059604495 +148,3462,5.0,1059507502 +148,3476,4.5,1059604531 +148,3481,5.0,1059604744 +148,3504,4.0,1059604730 +148,3671,4.0,1059604766 +148,3730,4.5,1059604436 +148,3897,4.5,1059604694 +148,3911,4.5,1059604772 +148,3977,3.0,1059530858 +148,3996,5.0,1059504987 +148,4105,3.0,1059531133 +148,4226,5.0,1059604413 +148,4306,5.0,1059604208 +148,4734,2.0,1059680407 +148,4835,4.0,1059507563 +148,4848,2.0,1059604523 +148,4878,4.0,1059604483 +148,4886,5.0,1059604199 +148,4896,4.0,1059531179 +148,4993,5.0,1059531227 +148,5013,3.0,1059604443 +148,5060,4.5,1059604726 +148,5291,5.0,1059604388 +148,5444,4.0,1059604248 +148,5670,4.0,1059507612 +148,5791,4.0,1059507522 +148,5816,5.0,1059604290 +148,5878,4.5,1059530804 +148,5900,4.0,1059530921 +148,5902,3.0,1059507478 +148,5944,3.5,1059530891 +148,5945,4.5,1059507529 +148,5952,4.5,1059531235 +148,5956,3.5,1059507573 +148,5995,5.0,1059507470 +148,6170,4.0,1059604204 +148,6195,4.0,1059531188 +148,6269,5.0,1059531274 +148,6303,3.0,1059604518 +148,6333,3.5,1059505089 +148,6365,4.5,1059505092 +148,6440,4.0,1059507519 +148,6502,4.5,1059505081 +148,6561,4.5,1059507486 +149,1,3.0,1436919660 +149,39,3.5,1436923278 +149,47,3.5,1436922267 +149,50,3.0,1436922260 +149,104,1.0,1436923406 +149,231,4.0,1436923238 +149,253,3.5,1436920137 +149,260,3.5,1436919731 +149,293,4.5,1436922129 +149,296,4.0,1436923208 +149,318,4.5,1436919800 +149,337,3.5,1436923463 +149,356,3.5,1436919682 +149,480,2.0,1436919678 +149,541,3.5,1436922091 +149,586,3.0,1436923262 +149,593,3.0,1436919666 +149,610,1.0,1436923874 +149,780,3.5,1436923201 +149,908,3.0,1436922845 +149,1089,4.0,1436923271 +149,1090,2.5,1436923492 +149,1103,3.5,1436924020 +149,1193,3.0,1436922838 +149,1197,3.5,1436923241 +149,1222,3.0,1436923341 +149,1230,3.0,1436921940 +149,1259,4.0,1436923357 +149,1265,4.0,1436921617 +149,1270,3.0,1436919693 +149,1274,3.5,1436923824 +149,1347,3.5,1436923836 +149,1393,4.0,1436920227 +149,1517,4.0,1436923318 +149,1527,4.0,1436923259 +149,1676,3.5,1436923511 +149,1682,3.5,1436923301 +149,1704,4.0,1436922946 +149,1732,2.5,1436923361 +149,1968,4.0,1436921723 +149,1982,3.0,1437092078 +149,1994,3.5,1436923701 +149,2011,4.0,1436923386 +149,2161,4.0,1436923670 +149,2288,4.0,1436923762 +149,2291,3.0,1436923336 +149,2329,4.0,1436921024 +149,2360,2.0,1436920748 +149,2485,3.5,1437092289 +149,2541,3.5,1436923731 +149,2571,3.5,1436919662 +149,2572,4.0,1436923608 +149,2700,4.0,1436923445 +149,2706,3.0,1436923311 +149,2761,4.0,1436920245 +149,2791,2.0,1436924332 +149,2858,3.5,1436921212 +149,2918,4.0,1436921919 +149,2959,4.0,1436920755 +149,2978,4.0,1436920187 +149,2997,3.5,1436921174 +149,3000,3.0,1436921241 +149,3039,3.5,1436923694 +149,3147,3.0,1436921204 +149,3176,4.0,1436924153 +149,3409,3.5,1436924169 +149,3535,3.5,1436923770 +149,3556,4.0,1436924041 +149,3617,2.5,1436923897 +149,3882,4.0,1437092262 +149,3949,2.0,1436921198 +149,3969,2.5,1436924129 +149,3979,0.5,1436923433 +149,4002,3.5,1436923904 +149,4011,4.0,1436922388 +149,4014,3.0,1436922147 +149,4016,3.5,1436924098 +149,4226,4.5,1436920885 +149,4246,4.0,1436921922 +149,4262,3.0,1436920788 +149,4299,3.5,1436924086 +149,4308,4.0,1436920104 +149,4624,1.0,1436924457 +149,4641,2.5,1436924064 +149,4755,5.0,1436921673 +149,4816,4.0,1436923923 +149,4878,4.0,1436922987 +149,4886,3.5,1436923292 +149,4896,3.5,1436923452 +149,4973,3.5,1436920698 +149,4974,3.5,1437092382 +149,5481,1.0,1436923801 +149,5618,4.0,1436920691 +149,5679,3.5,1436923718 +149,5903,1.5,1436923984 +149,5971,3.5,1436920875 +149,5989,4.0,1436923456 +149,6593,3.0,1436924288 +149,6711,4.0,1436921627 +149,6942,4.5,1436922164 +149,7153,3.5,1436921220 +149,7316,3.0,1437092225 +149,7361,3.5,1436921237 +149,7380,4.0,1437092174 +149,7438,3.5,1437092060 +149,7451,4.5,1436924226 +149,8528,3.5,1436924140 +149,8529,3.5,1436924164 +149,8644,1.5,1436920426 +149,8784,3.5,1436922210 +149,8874,3.5,1436923619 +149,8917,3.5,1436924295 +149,26662,4.0,1436920792 +149,27773,2.0,1436921197 +149,30707,3.0,1436921489 +149,31658,4.0,1436921101 +149,32587,4.0,1436923514 +149,33679,2.5,1436923970 +149,34048,3.0,1436924006 +149,34162,3.5,1436923949 +149,34332,4.0,1436920082 +149,35836,1.5,1436920434 +149,36529,4.0,1436921517 +149,38061,4.0,1436921503 +149,40815,4.0,1436920421 +149,42418,5.0,1436919996 +149,44199,4.0,1436924115 +149,45720,4.0,1436922084 +149,45722,3.0,1436920430 +149,46578,3.5,1436923611 +149,46976,3.5,1437092098 +149,48385,4.0,1436923884 +149,48394,3.5,1436920411 +149,48516,2.5,1436920881 +149,48780,3.5,1436920417 +149,49286,4.0,1437091824 +149,50872,3.5,1436919763 +149,51662,3.5,1436920406 +149,52281,3.5,1436924283 +149,53519,4.5,1436920262 +149,54259,4.0,1436921554 +149,54503,3.0,1436923971 +149,54995,3.0,1436924285 +149,55247,4.0,1436924188 +149,56152,4.5,1436921929 +149,56367,4.0,1436921552 +149,56949,3.0,1436924293 +149,58559,4.0,1436920675 +149,59369,1.0,1436922011 +149,60684,3.5,1436924083 +149,60950,4.5,1436921950 +149,61071,3.0,1437092283 +149,63082,3.0,1437092038 +149,63992,3.0,1437092357 +149,64614,3.0,1436922181 +149,65193,4.0,1437092257 +149,65261,3.5,1436924372 +149,66097,4.0,1436920173 +149,68135,4.0,1437092263 +149,68157,3.5,1436920649 +149,68954,3.5,1436921076 +149,69757,3.0,1436924009 +149,70286,3.5,1436923816 +149,71535,2.0,1436920701 +149,71899,1.0,1436920763 +149,72998,3.5,1436923666 +149,74458,3.5,1436921688 +149,76093,3.0,1436920657 +149,76251,3.5,1437092374 +149,78499,4.0,1436921474 +149,79091,3.0,1436920699 +149,79132,5.0,1436919794 +149,79702,4.0,1436920119 +149,80463,4.0,1436921703 +149,80549,3.0,1437092345 +149,80969,3.0,1436921599 +149,81591,4.0,1436922188 +149,81834,4.0,1436920710 +149,81845,3.0,1436920647 +149,81847,4.5,1436920279 +149,84152,4.0,1436921427 +149,86347,4.0,1436920752 +149,86377,4.5,1437091929 +149,86882,4.5,1436921192 +149,88125,4.0,1436920686 +149,88810,2.0,1436920889 +149,89745,2.0,1436922387 +149,89864,2.0,1436921750 +149,89904,5.0,1436920020 +149,90061,5.0,1436920568 +149,90866,2.0,1436921752 +149,91500,5.0,1436920212 +149,91529,4.0,1436920695 +149,91542,2.5,1436920661 +149,92535,4.5,1437091917 +149,93510,4.0,1436920162 +149,94959,3.5,1436921332 +149,96588,4.0,1436920032 +149,96821,4.0,1436920294 +149,97913,4.0,1436920703 +149,98809,3.0,1436920652 +149,99114,1.5,1436920644 +149,100034,4.0,1436921131 +149,103249,3.5,1436921987 +149,103539,4.0,1436920364 +149,104069,4.5,1437092404 +149,104374,5.0,1436920051 +149,106100,3.5,1437091813 +149,106487,4.0,1436921972 +149,106920,4.0,1436920062 +149,108190,4.0,1436921652 +149,109374,4.0,1436923001 +149,109487,4.0,1436922074 +149,111921,5.0,1436919931 +149,112138,4.0,1437091831 +149,112515,4.0,1436921568 +149,112552,1.5,1436919773 +149,112852,2.0,1436920459 +149,114180,3.5,1436920672 +149,114935,1.5,1436922811 +149,115617,4.0,1436919979 +149,115713,4.0,1436920008 +149,116797,5.0,1436919856 +149,116823,4.0,1436920668 +149,117176,4.0,1437091480 +149,117444,3.5,1436921034 +149,117533,3.0,1436920450 +149,121231,5.0,1436919828 +149,122882,3.0,1436919888 +149,127152,3.5,1436920456 +149,134853,5.0,1436919867 +150,1,3.0,1114306148 +150,2,3.0,1114306834 +150,5,2.5,1114308628 +150,10,4.0,1114306741 +150,19,3.0,1114305732 +150,21,3.5,1338710602 +150,23,2.0,1114307220 +150,25,4.0,1114306776 +150,31,2.5,1130905954 +150,39,2.5,1114306777 +150,44,1.0,1114308273 +150,45,1.5,1113906883 +150,50,4.5,1114306168 +150,60,2.5,1114309836 +150,69,2.5,1114307227 +150,70,2.5,1113906876 +150,71,3.0,1114310004 +150,95,3.0,1116309622 +150,104,5.0,1114307365 +150,110,4.5,1113907087 +150,112,4.0,1140424494 +150,145,2.5,1116309027 +150,153,3.0,1114306717 +150,165,3.5,1113907638 +150,170,2.5,1140424747 +150,172,1.0,1113906767 +150,174,3.0,1114307200 +150,180,3.0,1114306408 +150,185,3.5,1114306762 +150,196,1.5,1113907546 +150,208,0.5,1114306763 +150,216,4.5,1114308366 +150,227,2.5,1114307190 +150,231,3.0,1114306739 +150,256,2.0,1113907543 +150,260,4.5,1113907415 +150,288,3.0,1114306793 +150,292,3.0,1116309076 +150,296,4.5,1113907407 +150,316,4.0,1114306719 +150,318,5.0,1113907633 +150,327,2.0,1114307194 +150,333,3.0,1114307088 +150,339,1.5,1130906351 +150,342,1.0,1113906795 +150,344,3.5,1113907646 +150,349,4.0,1114306193 +150,356,4.5,1113907410 +150,364,3.0,1114306733 +150,367,3.0,1114306743 +150,376,4.0,1130905961 +150,377,3.5,1114306710 +150,380,4.0,1114306685 +150,432,2.0,1114309590 +150,435,2.5,1114309597 +150,442,1.5,1140424503 +150,457,4.0,1113907785 +150,480,3.5,1114306136 +150,500,1.5,1113907512 +150,508,2.5,1113907507 +150,520,0.5,1114305827 +150,539,1.5,1130906332 +150,541,3.5,1114306799 +150,544,2.5,1114309144 +150,548,3.0,1114309149 +150,586,2.5,1116309673 +150,588,3.5,1113907403 +150,589,3.5,1113907611 +150,590,3.0,1114305997 +150,592,3.0,1114306681 +150,648,3.5,1116308883 +150,733,3.5,1113907841 +150,736,4.0,1113907502 +150,780,4.0,1114306687 +150,784,3.0,1113907501 +150,785,3.5,1113907509 +150,786,2.5,1113907499 +150,788,3.0,1114306821 +150,799,3.0,1116309174 +150,805,4.0,1114306038 +150,809,3.0,1114309361 +150,829,1.0,1114309340 +150,832,3.5,1113907497 +150,836,3.0,1140424715 +150,852,3.5,1113907486 +150,858,3.5,1113907480 +150,999,4.0,1114309130 +150,1005,0.5,1114309343 +150,1020,3.0,1114308357 +150,1027,4.0,1114305648 +150,1036,4.0,1113907074 +150,1047,2.5,1116309093 +150,1061,3.0,1114306312 +150,1064,3.0,1114305646 +150,1073,2.0,1130906339 +150,1097,3.0,1114306755 +150,1126,3.0,1140424695 +150,1196,4.0,1114306016 +150,1198,4.0,1114306013 +150,1210,4.5,1113907413 +150,1240,3.5,1113907614 +150,1246,3.0,1114308753 +150,1259,4.0,1114306194 +150,1265,3.5,1114306439 +150,1270,4.0,1114306018 +150,1291,4.5,1113907080 +150,1302,4.0,1114306213 +150,1370,3.5,1116309029 +150,1371,2.5,1114308250 +150,1373,2.5,1114309788 +150,1374,2.5,1114306405 +150,1375,2.5,1113907467 +150,1376,3.0,1140424472 +150,1377,1.0,1113907471 +150,1391,3.5,1114308253 +150,1393,3.5,1114306247 +150,1396,4.0,1130905780 +150,1405,3.0,1114305651 +150,1407,3.0,1114307068 +150,1409,3.5,1114310411 +150,1429,3.5,1116308716 +150,1485,3.5,1114309780 +150,1500,2.0,1130905926 +150,1515,2.0,1140424671 +150,1517,3.0,1114306438 +150,1518,3.5,1114309794 +150,1527,4.0,1114306426 +150,1544,3.0,1114305802 +150,1552,3.5,1113907463 +150,1573,4.0,1116309089 +150,1580,2.5,1113907470 +150,1584,4.0,1113907464 +150,1588,1.0,1114309118 +150,1590,4.5,1114308333 +150,1597,3.5,1113907173 +150,1608,3.0,1114308258 +150,1610,4.5,1113907613 +150,1616,3.0,1130906048 +150,1617,3.0,1114306474 +150,1620,4.0,1114310407 +150,1625,4.5,1113906867 +150,1641,3.5,1113907621 +150,1644,2.5,1114305644 +150,1645,4.0,1113907448 +150,1653,2.0,1113907429 +150,1668,2.5,1114309570 +150,1673,3.0,1113906862 +150,1676,0.5,1114308962 +150,1682,3.0,1113907620 +150,1704,4.0,1114307286 +150,1721,4.5,1113907435 +150,1722,4.5,1130905849 +150,1732,3.0,1140424835 +150,1746,3.5,1114310162 +150,1748,4.0,1114306492 +150,1752,3.0,1114309965 +150,1777,4.0,1116309070 +150,1784,2.5,1114308739 +150,1792,3.5,1114308327 +150,1831,2.5,1114308323 +150,1833,3.0,1140424655 +150,1876,4.0,1140425339 +150,1892,2.5,1114309121 +150,1894,2.0,1140424652 +150,1895,3.0,1114309099 +150,1909,3.0,1116309060 +150,1917,4.0,1114306890 +150,1918,3.5,1114309094 +150,1923,3.0,1113907434 +150,1954,4.0,1114306335 +150,1961,3.0,1114308749 +150,1967,3.0,1140424926 +150,2000,3.5,1113907755 +150,2001,3.0,1113906820 +150,2002,3.0,1114309102 +150,2004,2.0,1114305796 +150,2005,3.0,1114306506 +150,2011,4.0,1113907624 +150,2012,4.5,1114309769 +150,2028,4.5,1113907849 +150,2042,1.5,1114309314 +150,2054,1.0,1113906789 +150,2058,3.5,1114306170 +150,2082,2.0,1114309106 +150,2114,1.5,1114306418 +150,2115,4.0,1114305720 +150,2194,4.0,1113906808 +150,2253,2.0,1114309083 +150,2273,3.5,1114309756 +150,2294,2.5,1114309081 +150,2321,2.0,1114308243 +150,2334,2.5,1140425276 +150,2335,4.0,1114308325 +150,2338,3.0,1130906021 +150,2353,4.0,1113906815 +150,2355,2.5,1114305999 +150,2376,3.0,1114309068 +150,2396,1.5,1130905942 +150,2420,3.5,1116309062 +150,2421,3.0,1140424614 +150,2422,3.5,1130906013 +150,2424,1.5,1114309074 +150,2485,2.5,1140424609 +150,2490,3.5,1116309095 +150,2496,3.5,1130906025 +150,2502,3.5,1114306322 +150,2505,3.0,1114308297 +150,2541,2.5,1116309105 +150,2567,1.0,1114305779 +150,2571,5.0,1113907848 +150,2572,2.5,1116309128 +150,2580,3.0,1114306340 +150,2605,2.5,1140425211 +150,2617,4.0,1113906772 +150,2628,3.5,1116308629 +150,2640,2.5,1116309195 +150,2683,3.0,1116309037 +150,2694,3.5,1114307128 +150,2701,2.0,1140424450 +150,2706,3.5,1113907439 +150,2707,3.0,1114310351 +150,2716,2.0,1114306803 +150,2722,2.5,1114308289 +150,2762,4.5,1113907594 +150,2763,3.5,1114306436 +150,2770,2.0,1114307063 +150,2797,3.5,1114306285 +150,2858,3.5,1113907596 +150,2881,4.0,1114309051 +150,2916,3.0,1113907447 +150,2918,4.5,1114306156 +150,2947,2.5,1114306272 +150,2948,2.5,1114306338 +150,2949,2.5,1114306349 +150,2953,1.5,1130906007 +150,2959,3.5,1114306253 +150,2987,2.5,1116309776 +150,2989,2.5,1114306511 +150,2990,3.0,1114309060 +150,2991,3.0,1114306459 +150,2993,2.5,1114306295 +150,2997,3.5,1140424443 +150,3005,3.0,1130905997 +150,3039,3.5,1114306175 +150,3052,2.0,1114306402 +150,3082,4.0,1114310339 +150,3146,3.5,1116308763 +150,3147,4.0,1113906817 +150,3173,4.0,1140424887 +150,3208,2.0,1114309274 +150,3253,3.5,1114308255 +150,3254,3.5,1114309045 +150,3256,4.0,1114306032 +150,3261,3.0,1116309257 +150,3301,3.5,1114310328 +150,3316,2.5,1140424586 +150,3408,2.5,1114306379 +150,3452,4.0,1140424566 +150,3466,2.5,1114309258 +150,3477,3.0,1140424569 +150,3509,3.0,1114309532 +150,3510,3.5,1114306035 +150,3534,3.0,1114307344 +150,3536,3.0,1116309150 +150,3578,4.5,1113907076 +150,3617,4.5,1114307106 +150,3623,3.0,1113907405 +150,3635,3.0,1114306306 +150,3638,2.5,1114307106 +150,3639,2.5,1114306483 +150,3698,3.0,1140424875 +150,3753,3.5,1113907398 +150,3793,4.0,1114306145 +150,3798,2.5,1114309035 +150,3821,2.0,1114305883 +150,3861,2.5,1114309231 +150,3863,0.5,1114307111 +150,3897,5.0,1147599034 +150,3948,4.0,1114306278 +150,3955,4.0,1114309240 +150,3959,2.5,1114309032 +150,3975,1.5,1114308565 +150,3977,2.0,1113906866 +150,3984,3.5,1114306448 +150,3994,2.5,1140425267 +150,3998,3.0,1114308424 +150,4018,2.0,1114309026 +150,4020,3.5,1114307255 +150,4023,2.5,1114309029 +150,4025,2.5,1114308990 +150,4027,0.5,1130905933 +150,4040,2.0,1114305880 +150,4149,3.0,1140425059 +150,4153,3.5,1114308399 +150,4214,2.0,1114309224 +150,4223,3.0,1114306129 +150,4225,4.0,1114306496 +150,4226,2.0,1113907418 +150,4228,2.5,1114308408 +150,4229,3.5,1114309507 +150,4238,3.5,1130905973 +150,4265,0.5,1114307260 +150,4321,2.5,1114308268 +150,4343,3.5,1114307108 +150,4344,4.0,1114309715 +150,4351,3.0,1116309087 +150,4369,3.5,1114305764 +150,4448,3.5,1114306435 +150,4489,4.0,1116309091 +150,4545,2.5,1114308411 +150,4571,3.5,1116309199 +150,4616,3.5,1114306196 +150,4638,2.0,1114309000 +150,4701,3.5,1116309074 +150,4718,4.0,1114310291 +150,4727,2.0,1116308745 +150,4734,3.0,1114305746 +150,4757,1.0,1114307240 +150,4814,3.5,1140425035 +150,4816,4.0,1114307100 +150,4866,2.0,1116309045 +150,4878,4.0,1114308881 +150,4896,1.5,1114306226 +150,4901,3.5,1114306208 +150,4951,3.0,1114309217 +150,4963,4.0,1114306024 +150,4980,3.0,1116308752 +150,4993,4.5,1113907089 +150,5010,3.0,1114308733 +150,5025,3.0,1114308377 +150,5081,2.5,1114308518 +150,5093,2.5,1114309202 +150,5171,2.0,1114309198 +150,5219,2.5,1114308375 +150,5282,3.0,1140425335 +150,5283,3.5,1130905875 +150,5312,2.5,1114309192 +150,5349,2.5,1114306144 +150,5377,3.0,1114306442 +150,5378,3.5,1114309684 +150,5400,4.0,1140424535 +150,5418,4.5,1113907084 +150,5445,0.5,1113906878 +150,5449,3.5,1114307235 +150,5459,2.5,1113907675 +150,5502,2.0,1130905878 +150,5574,3.5,1140425041 +150,5816,1.5,1114306240 +150,5872,4.0,1113907672 +150,5952,4.5,1113906770 +150,5956,3.0,1114308996 +150,6059,3.0,1116309023 +150,6188,4.0,1114306358 +150,6250,3.0,1140425340 +150,6264,2.5,1114307223 +150,6265,3.0,1114308502 +150,6287,4.0,1140425015 +150,6294,3.0,1140425023 +150,6322,3.0,1130905862 +150,6323,3.0,1114306263 +150,6333,3.0,1113907846 +150,6365,4.5,1114308731 +150,6373,3.5,1116309020 +150,6378,4.5,1113907652 +150,6383,2.5,1140425017 +150,6502,4.0,1114307356 +150,6537,3.5,1116309048 +150,6539,4.0,1113907082 +150,6541,2.5,1140425226 +150,6708,3.5,1140424531 +150,6711,4.5,1233053813 +150,6764,3.5,1114306451 +150,6893,4.0,1114306002 +150,6936,3.0,1114308384 +150,6944,3.0,1130906087 +150,7101,2.5,1114308481 +150,7153,4.5,1114306021 +150,7173,3.0,1140425006 +150,7254,4.0,1114306244 +150,7293,4.0,1114308810 +150,7325,3.5,1114309184 +150,7346,4.0,1116309043 +150,7360,3.5,1140425002 +150,7381,3.0,1114309640 +150,7439,4.0,1114308483 +150,7569,3.0,1114306250 +150,7570,3.5,1114310030 +150,7573,2.0,1140425213 +150,8010,4.0,1140425327 +150,8368,2.0,1114306190 +150,8376,4.0,1140424519 +150,8493,3.0,1114306172 +150,8528,4.0,1116309158 +150,8614,2.5,1114310016 +150,8622,4.5,1113907658 +150,8665,4.5,1114305992 +150,8874,3.5,1140424514 +150,8957,4.5,1114308477 +150,8968,3.0,1140425194 +150,8972,4.0,1140424981 +150,27338,3.0,1233053797 +150,27808,3.0,1114306375 +150,27821,3.0,1140424985 +150,33493,4.0,1130905770 +150,34048,2.5,1140424802 +150,34319,4.0,1130905845 +150,44199,4.0,1338710639 +150,47610,4.0,1338710597 +150,48516,5.0,1233053823 +150,49530,4.5,1338710592 +150,54286,4.0,1338710631 +150,74458,4.0,1338710628 +150,79132,5.0,1338710636 +151,2,4.0,847296918 +151,10,5.0,847296716 +151,19,3.0,847296838 +151,21,5.0,847296838 +151,32,5.0,847296863 +151,34,3.0,847296802 +151,39,3.0,847296863 +151,47,5.0,847296774 +151,50,3.0,847296838 +151,95,3.0,847297041 +151,110,4.0,847296748 +151,150,5.0,847296585 +151,153,1.0,847296625 +151,160,3.0,847296891 +151,161,5.0,847296716 +151,165,4.0,847296624 +151,173,1.0,847296918 +151,185,3.0,847296716 +151,208,4.0,847296716 +151,225,3.0,847296838 +151,231,4.0,847296653 +151,253,3.0,847296748 +151,266,3.0,847296891 +151,288,4.0,847296748 +151,292,4.0,847296686 +151,296,5.0,847296586 +151,300,3.0,847296802 +151,315,2.0,847296945 +151,316,5.0,847296653 +151,317,3.0,847296891 +151,329,5.0,847296686 +151,339,3.0,847296716 +151,344,3.0,847296625 +151,349,4.0,847296653 +151,350,4.0,847296918 +151,356,5.0,847296653 +151,357,5.0,847296863 +151,364,5.0,847296775 +151,367,3.0,847296774 +151,377,5.0,847296775 +151,380,4.0,847296586 +151,410,3.0,847296802 +151,420,3.0,847296863 +151,432,2.0,847296918 +151,434,4.0,847296686 +151,435,5.0,847296891 +151,440,3.0,847296891 +151,442,4.0,847296945 +151,454,4.0,847296748 +151,457,5.0,847296624 +151,474,4.0,847296945 +151,480,5.0,847296686 +151,500,4.0,847296774 +151,509,3.0,847296945 +151,527,5.0,847296863 +151,539,3.0,847296838 +151,553,3.0,847297041 +151,587,5.0,847296802 +151,588,3.0,847296624 +151,589,5.0,847296747 +151,590,3.0,847296584 +151,592,3.0,847296583 +151,595,3.0,847296653 +151,597,3.0,847296802 +152,1,3.5,1335947960 +152,6,4.0,1335948353 +152,10,1.5,1335948177 +152,21,3.5,1335948369 +152,25,0.5,1335948417 +152,32,5.0,1335947997 +152,47,5.0,1335948042 +152,50,5.0,1335948008 +152,95,3.5,1335948357 +152,110,0.5,1335947944 +152,111,3.5,1335948381 +152,135,1.5,1335899920 +152,150,3.5,1335947956 +152,161,4.0,1335948346 +152,185,1.5,1335948277 +152,208,1.5,1335948220 +152,231,2.0,1335948114 +152,253,2.0,1335948227 +152,260,4.0,1335947940 +152,288,2.0,1335948404 +152,293,4.0,1335948387 +152,296,4.5,1335947920 +152,316,4.0,1335948100 +152,318,4.0,1335947939 +152,349,3.0,1335948140 +152,356,3.0,1335900437 +152,357,3.5,1335948229 +152,367,4.0,1335948107 +152,377,3.5,1335948034 +152,380,3.5,1335947993 +152,434,1.5,1335948250 +152,454,3.5,1335948259 +152,457,4.0,1335947953 +152,480,3.0,1335947928 +152,500,2.5,1335948104 +152,541,4.5,1335948214 +152,586,2.5,1335948233 +152,587,2.5,1335948190 +152,590,3.5,1335947977 +152,593,4.5,1335947925 +152,597,2.0,1335948123 +152,608,4.5,1335948018 +152,733,2.5,1335948136 +152,736,1.0,1335948087 +152,750,3.0,1335900366 +152,778,2.0,1335948451 +152,780,4.0,1335947970 +152,924,4.0,1335948399 +152,1019,3.5,1335899984 +152,1036,3.5,1335948212 +152,1089,3.5,1335948295 +152,1090,3.5,1335900642 +152,1097,2.5,1335948126 +152,1136,4.5,1335948172 +152,1175,5.0,1335948656 +152,1193,3.0,1335948194 +152,1196,4.0,1335948015 +152,1198,3.5,1335948027 +152,1200,4.0,1335948282 +152,1206,3.5,1335948427 +152,1210,4.0,1335947973 +152,1214,4.5,1335948202 +152,1222,3.0,1335900442 +152,1240,3.5,1335948146 +152,1263,3.5,1335900563 +152,1265,4.0,1335947847 +152,1270,3.5,1335948037 +152,1272,2.5,1335900548 +152,1296,1.0,1335899988 +152,1476,2.0,1335900032 +152,1500,3.5,1335949082 +152,1517,1.5,1335948429 +152,1527,3.5,1335948270 +152,1580,4.0,1335948091 +152,1590,4.5,1335899996 +152,1635,0.5,1335900055 +152,1653,5.0,1335947506 +152,1680,3.5,1335899930 +152,1682,3.5,1335948443 +152,1704,2.0,1335948255 +152,1721,1.5,1335948097 +152,1732,4.0,1335949447 +152,1923,4.0,1335948327 +152,1961,3.5,1335948291 +152,2028,5.0,1335948073 +152,2324,3.0,1335900376 +152,2396,3.5,1335948379 +152,2431,2.0,1335900014 +152,2571,5.0,1335948000 +152,2628,4.0,1335948160 +152,2683,2.0,1335948728 +152,2706,3.5,1335948421 +152,2762,2.5,1335948068 +152,2858,4.5,1335948022 +152,2944,3.0,1335899937 +152,2959,4.5,1335948082 +152,2997,4.5,1335948262 +152,3148,2.5,1335899940 +152,3257,3.0,1335900020 +152,3354,4.0,1335899980 +152,3481,2.5,1335949482 +152,3578,4.0,1335900859 +152,3826,2.0,1335899953 +152,3897,3.0,1335900864 +152,3910,4.5,1335901493 +152,3967,3.0,1335901749 +152,3996,4.0,1335948374 +152,4002,1.0,1335899914 +152,4011,3.0,1335901184 +152,4027,5.0,1335949459 +152,4223,3.5,1335902247 +152,4226,4.0,1335901129 +152,4239,2.0,1335902212 +152,4306,3.0,1335900931 +152,4720,3.5,1335902192 +152,4848,3.5,1335947708 +152,4878,4.5,1335902334 +152,4886,3.5,1335901317 +152,4896,4.0,1335947815 +152,4963,3.0,1335901901 +152,4973,4.5,1335901843 +152,4993,4.0,1335901299 +152,4995,3.0,1335900924 +152,5010,3.5,1335947578 +152,5013,2.5,1335900026 +152,5060,1.5,1335900702 +152,5349,2.0,1335948558 +152,5418,4.0,1335900758 +152,5445,4.0,1335902338 +152,5816,4.0,1335947718 +152,5903,4.0,1335901882 +152,5952,4.0,1335901226 +152,5989,3.0,1335900942 +152,6300,2.0,1335901802 +152,6333,4.0,1335948546 +152,6365,4.5,1335948525 +152,6539,3.0,1335901347 +152,6711,4.0,1335947808 +152,6934,4.5,1335949597 +152,6942,3.5,1335901818 +152,6953,3.5,1335902114 +152,7022,2.0,1335901696 +152,7147,4.0,1335901712 +152,7153,4.0,1335900949 +152,7254,3.5,1335902217 +152,7323,4.0,1335949090 +152,7361,4.0,1335901633 +152,7502,5.0,1335900352 +152,8117,1.5,1335902266 +152,8368,4.0,1335902075 +152,8533,2.5,1335901682 +152,8636,3.5,1335948549 +152,8665,4.0,1335900762 +152,8798,4.0,1335902244 +152,8961,3.5,1335901169 +152,26614,3.5,1335947549 +152,27611,4.0,1335900965 +152,30707,2.5,1335900800 +152,30749,3.5,1335900784 +152,31410,5.0,1335900450 +152,32587,4.0,1335900991 +152,33166,3.0,1335901270 +152,33493,4.0,1335948529 +152,33794,4.0,1335900790 +152,34405,4.0,1335901026 +152,34542,3.0,1335901666 +152,36517,3.5,1335901976 +152,36529,3.5,1335901772 +152,38061,2.5,1335901278 +152,40815,4.0,1335902257 +152,40819,3.0,1335901584 +152,41566,3.5,1335947593 +152,41997,3.5,1335902045 +152,44191,2.0,1335900892 +152,44195,3.0,1335900898 +152,44555,4.5,1335900817 +152,45950,4.0,1335902087 +152,46578,4.0,1335901057 +152,46723,3.0,1335902209 +152,47491,2.0,1335901071 +152,48774,3.0,1335948539 +152,49272,4.0,1335901478 +152,49530,4.5,1335900652 +152,50068,4.0,1335901513 +152,50872,3.5,1335901202 +152,54001,4.0,1335902260 +152,54286,4.0,1335900754 +152,54997,4.0,1335901908 +152,55820,4.0,1335900919 +152,56174,4.0,1335948691 +152,56367,4.0,1335901293 +152,56782,3.5,1335901035 +152,57669,3.0,1335901274 +152,58559,4.5,1335900808 +152,59315,4.0,1335900880 +152,59369,3.0,1335901427 +152,59784,3.5,1335902094 +152,60069,4.0,1335900839 +152,63082,4.0,1335900886 +152,67255,3.5,1335947842 +152,68157,3.0,1335900445 +152,68237,4.0,1335900774 +152,68954,4.5,1335900872 +152,69481,4.0,1335900821 +152,69844,4.0,1335902035 +152,70286,3.5,1335901210 +152,72998,4.5,1335901466 +152,73321,4.0,1335948695 +152,74458,3.5,1335947751 +152,76093,3.5,1335947573 +152,78499,3.5,1335947706 +152,79132,4.5,1335947742 +152,80463,3.5,1335947732 +152,81834,4.0,1335947613 +152,81845,2.5,1335947556 +152,85414,4.5,1335947588 +152,85736,4.0,1335901372 +152,88125,4.0,1335947546 +153,1,5.0,1046739645 +153,32,5.0,1046740237 +153,34,4.0,1046739068 +153,110,3.0,1046738981 +153,147,4.0,1046739545 +153,170,5.0,1046739505 +153,224,3.0,1046739844 +153,296,5.0,1046740124 +153,306,5.0,1046740081 +153,307,5.0,1046740081 +153,489,3.0,1046739156 +153,546,1.0,1046739765 +153,760,5.0,1046739825 +153,912,5.0,1046740112 +153,920,5.0,1046739691 +153,932,5.0,1046739002 +153,1097,5.0,1046739044 +153,1136,5.0,1046740112 +153,1206,5.0,1046740286 +153,1210,4.0,1046739068 +153,1255,5.0,1046739622 +153,1259,5.0,1046740337 +153,1277,4.0,1046739622 +153,1498,5.0,1046739486 +153,1617,3.0,1046739028 +153,1682,4.0,1046739044 +153,1777,5.0,1046739964 +153,2116,5.0,1046739545 +153,2336,5.0,1046740238 +153,2396,4.0,1046740305 +153,2562,5.0,1046739545 +153,2571,4.0,1046740276 +153,2692,5.0,1046740162 +153,2762,5.0,1046740098 +153,2858,5.0,1046740238 +153,2959,4.0,1046740372 +153,2995,2.0,1046739622 +153,2997,5.0,1046740315 +153,3269,3.0,1046739925 +153,3799,1.0,1046739925 +153,3825,3.0,1046739825 +153,3897,5.0,1046740060 +153,4270,2.0,1046739622 +153,4367,4.0,1046739002 +153,4886,5.0,1046739947 +153,4973,5.0,1046740081 +153,5099,5.0,1046739645 +153,5605,4.0,1046738981 +153,5841,2.0,1046739947 +153,5952,5.0,1046740481 +153,6093,5.0,1046740361 +154,1,4.0,850917310 +154,3,4.0,850917346 +154,5,3.0,850917346 +154,7,3.0,850917346 +154,18,5.0,850917480 +154,52,5.0,850917383 +154,62,3.0,850917310 +154,85,4.0,850917507 +154,92,3.0,850917507 +154,107,4.0,850917436 +154,608,5.0,850917346 +154,637,3.0,850917416 +154,648,5.0,853249060 +154,661,5.0,850917416 +154,671,4.0,853249033 +154,673,4.0,850917554 +154,708,3.0,850917383 +154,711,3.0,850917460 +154,762,4.0,850917416 +154,780,5.0,853249233 +154,783,3.0,850917383 +154,806,4.0,850917687 +154,1060,5.0,853249301 +154,1391,4.0,850917706 +154,1393,4.0,853249189 +154,1405,4.0,850917917 +155,32,3.0,943350048 +155,110,4.0,943350687 +155,198,4.0,943350250 +155,260,5.0,943350048 +155,480,2.0,943350184 +155,527,5.0,943351044 +155,541,5.0,943350184 +155,589,4.0,943350184 +155,593,5.0,943350686 +155,750,3.0,943350048 +155,780,2.0,943350327 +155,908,4.0,943350749 +155,912,4.0,943350905 +155,924,4.0,943350292 +155,965,4.0,943350953 +155,1097,4.0,943350184 +155,1127,3.0,943350327 +155,1129,4.0,943350400 +155,1148,5.0,943350687 +155,1175,3.0,943350140 +155,1193,5.0,943351044 +155,1196,5.0,943350101 +155,1197,4.0,943350749 +155,1198,4.0,943350868 +155,1199,3.0,943350140 +155,1200,5.0,943350140 +155,1206,4.0,943350327 +155,1210,5.0,943350140 +155,1214,4.0,943350048 +155,1240,3.0,943350572 +155,1396,3.0,943350366 +155,1527,3.0,943350292 +155,1573,2.0,943350366 +155,1580,5.0,943350292 +155,1704,3.0,943350687 +155,1957,3.0,943350789 +155,1965,1.0,943350292 +155,2011,2.0,943350250 +155,2012,2.0,943350184 +155,2028,5.0,943350749 +155,2288,4.0,943350292 +155,2401,3.0,943350687 +155,2455,4.0,943350366 +155,2528,3.0,943350101 +155,2529,3.0,943350101 +155,2571,5.0,943350048 +155,2628,4.0,943350101 +155,2699,3.0,943350250 +155,2739,3.0,943350749 +155,2791,5.0,943350804 +155,2916,3.0,943350250 +156,36,5.0,1277430241 +156,372,4.0,1277429637 +156,485,3.5,1277429506 +156,508,5.0,1277430118 +156,585,0.5,1277429585 +156,785,4.5,1277429569 +156,802,4.5,1277429489 +156,1042,4.5,1277429611 +156,1271,4.5,1277429617 +156,1285,4.5,1277429566 +156,1572,4.5,1277429999 +156,1673,5.0,1277429498 +156,1722,0.5,1277429539 +156,1747,4.5,1277429559 +156,1884,5.0,1277429786 +156,2395,4.0,1277429514 +156,2770,1.5,1277429575 +156,2797,5.0,1277430139 +156,2858,5.0,1277430057 +156,3101,4.5,1277429528 +156,3255,5.0,1277429591 +156,3556,4.5,1277430041 +156,3717,0.5,1277429624 +156,3948,5.0,1277429905 +156,4239,4.5,1277429941 +156,4262,4.5,1277430276 +156,4776,5.0,1277429930 +156,4816,4.5,1277429977 +156,4975,5.0,1277430183 +156,5103,4.5,1277430169 +156,5577,5.0,1277429860 +156,8533,5.0,1277429834 +156,8910,5.0,1277430028 +156,48516,5.0,1277429950 +156,55280,5.0,1277429804 +156,55765,5.0,1277430198 +156,56367,4.0,1277430018 +156,60756,5.0,1277430103 +156,66665,4.0,1277429774 +156,69122,4.5,1277429880 +156,69481,4.5,1277429888 +156,70286,4.0,1277429869 +156,72226,5.0,1277430304 +156,74458,4.5,1277429818 +156,77561,0.5,1277430461 +157,1,3.5,1291598726 +157,2,2.5,1291654669 +157,10,3.5,1291598989 +157,12,2.0,1291598164 +157,32,4.0,1308343617 +157,34,1.0,1323623560 +157,47,3.5,1292893066 +157,50,4.0,1323549288 +157,160,3.0,1293113893 +157,165,3.0,1291598753 +157,208,2.0,1365940346 +157,235,4.5,1291599967 +157,260,3.5,1291598691 +157,267,2.5,1291598182 +157,293,4.5,1291599434 +157,296,4.0,1293212841 +157,316,3.0,1365939855 +157,344,1.0,1365940218 +157,367,1.0,1365940267 +157,370,2.5,1292452031 +157,377,3.0,1292893321 +157,466,2.5,1292452011 +157,480,3.0,1365940159 +157,485,2.5,1293113928 +157,527,3.0,1291599281 +157,541,3.5,1362937775 +157,551,4.0,1293016220 +157,586,3.0,1292893387 +157,589,4.0,1291598937 +157,648,3.5,1291598930 +157,733,3.0,1291598910 +157,736,2.5,1291598746 +157,741,4.0,1291599847 +157,778,4.0,1291599703 +157,780,3.0,1291598762 +157,924,3.5,1291654589 +157,1036,3.0,1292893393 +157,1097,3.0,1291598808 +157,1127,3.5,1293016236 +157,1196,3.5,1291598784 +157,1198,3.5,1291598908 +157,1200,4.0,1291599001 +157,1206,4.0,1291599826 +157,1208,4.0,1291599797 +157,1210,3.5,1291598625 +157,1214,4.0,1291654582 +157,1222,4.0,1291599448 +157,1240,4.0,1291598885 +157,1258,4.0,1291599736 +157,1261,3.5,1365893094 +157,1265,3.0,1292893377 +157,1270,4.0,1291598828 +157,1274,4.0,1291599916 +157,1291,3.5,1320685313 +157,1320,3.5,1293113883 +157,1387,3.0,1291654595 +157,1391,2.5,1291665492 +157,1517,3.5,1291599035 +157,1527,3.5,1292893137 +157,1544,3.0,1293109610 +157,1573,2.5,1291654674 +157,1580,3.0,1291598819 +157,1590,3.5,1323617866 +157,1653,4.0,1291599973 +157,1676,2.5,1292893513 +157,1682,4.0,1365891786 +157,1690,3.0,1292451944 +157,1721,3.0,1291599080 +157,1732,4.0,1344511098 +157,1923,2.0,1294526056 +157,1961,3.5,1292893076 +157,1991,3.0,1291598335 +157,2003,3.0,1292521972 +157,2012,3.5,1291654575 +157,2025,3.0,1365939990 +157,2028,3.0,1295793889 +157,2054,3.0,1344510238 +157,2115,3.5,1292893361 +157,2162,2.5,1291598407 +157,2167,2.5,1365941887 +157,2288,4.5,1355865691 +157,2291,4.0,1291599122 +157,2355,3.0,1291599023 +157,2363,3.0,1291598299 +157,2382,2.0,1365941508 +157,2383,2.0,1365941511 +157,2421,2.5,1291598091 +157,2455,4.5,1344510553 +157,2470,2.5,1292451929 +157,2502,3.0,1365939927 +157,2571,4.5,1295749331 +157,2628,2.5,1323618008 +157,2683,3.0,1365940395 +157,2692,4.0,1291599810 +157,2706,3.0,1291598945 +157,2710,3.5,1344510213 +157,2716,3.5,1291598880 +157,2762,4.0,1291598742 +157,2810,4.0,1344510970 +157,2858,4.0,1292540589 +157,2890,3.5,1293109639 +157,2959,4.5,1295749344 +157,2985,3.0,1292451917 +157,3000,4.5,1291599722 +157,3020,3.5,1323649448 +157,3113,1.0,1365941844 +157,3271,3.5,1292893831 +157,3441,3.0,1291598272 +157,3527,3.5,1291654702 +157,3535,4.0,1295663802 +157,3623,1.5,1291599091 +157,3793,3.5,1291598864 +157,3917,3.5,1291598320 +157,3977,1.0,1344510369 +157,4011,4.0,1320684776 +157,4022,3.5,1294526030 +157,4036,3.0,1291598302 +157,4084,3.0,1291598172 +157,4226,4.5,1295749327 +157,4306,3.0,1291598859 +157,4310,2.5,1292451959 +157,4367,2.0,1344510529 +157,4370,3.5,1291665526 +157,4454,4.5,1291666053 +157,4545,3.0,1291598243 +157,4718,2.5,1292451971 +157,4878,4.5,1295749346 +157,4886,3.5,1291598976 +157,4902,3.5,1295749296 +157,4963,4.0,1291598901 +157,4973,4.0,1291598941 +157,4993,3.5,1292893258 +157,5010,3.5,1293016263 +157,5146,4.0,1365939667 +157,5254,2.5,1365941890 +157,5349,3.0,1365939875 +157,5378,2.5,1323618006 +157,5418,3.5,1362938388 +157,5445,3.5,1293016283 +157,5618,4.5,1308343658 +157,5679,2.5,1344510472 +157,5690,3.5,1291600250 +157,5903,3.5,1292893873 +157,5952,3.5,1291598877 +157,6016,4.0,1312671459 +157,6218,1.5,1344510189 +157,6283,4.0,1291599840 +157,6333,3.0,1323623646 +157,6365,3.0,1365939971 +157,6373,2.5,1291665485 +157,6377,3.5,1291598862 +157,6378,4.0,1291665463 +157,6502,4.5,1291599986 +157,6537,3.0,1293016287 +157,6539,3.0,1365939907 +157,6863,3.5,1291665403 +157,6874,3.5,1323617840 +157,6934,2.5,1365939958 +157,7022,4.0,1344510959 +157,7090,4.0,1291599851 +157,7153,3.5,1291598673 +157,7254,4.0,1291665568 +157,7360,4.0,1330113012 +157,7361,4.0,1295583661 +157,7438,2.5,1291598696 +157,7454,1.5,1365941863 +157,7981,3.5,1292499258 +157,8012,4.0,1291600170 +157,8117,4.0,1291599997 +157,8157,4.0,1362938231 +157,8360,3.0,1291599019 +157,8361,2.0,1365941322 +157,8370,4.0,1344509737 +157,8636,3.0,1291598711 +157,8644,2.5,1365940004 +157,8665,3.5,1362938408 +157,8861,2.0,1291598416 +157,8874,3.5,1365939715 +157,8914,4.0,1291599978 +157,8950,4.5,1291599751 +157,8961,3.0,1291598639 +157,8984,2.0,1365941516 +157,8985,1.0,1365941909 +157,26547,3.5,1291644796 +157,27317,4.0,1355865366 +157,27773,4.5,1291599694 +157,27801,4.0,1323549425 +157,27831,3.5,1292893101 +157,30745,3.5,1291644922 +157,30793,3.0,1291654728 +157,31364,4.0,1291644715 +157,31658,4.0,1291644679 +157,31878,3.5,1344509648 +157,32078,3.0,1344510654 +157,32587,4.0,1291598768 +157,32840,4.0,1323540498 +157,33004,3.0,1292452004 +157,33493,2.5,1323618003 +157,33794,4.0,1362938402 +157,34048,2.0,1291665551 +157,34150,2.0,1365941993 +157,34405,3.5,1293109672 +157,35836,3.0,1293016154 +157,36529,4.0,1291599930 +157,37731,4.5,1292893813 +157,42632,4.0,1325041713 +157,44665,4.5,1295749334 +157,45499,3.0,1293016163 +157,45722,3.0,1365939913 +157,46723,4.5,1344509323 +157,47491,4.5,1295749355 +157,47937,3.0,1291599363 +157,48082,3.5,1295576379 +157,48385,3.5,1293016134 +157,48394,4.0,1291599055 +157,48516,4.0,1344510341 +157,48780,4.5,1295749321 +157,49272,3.5,1292893280 +157,51255,3.0,1295662855 +157,51662,3.5,1292893170 +157,52328,3.0,1297193695 +157,52885,4.5,1295749323 +157,52952,4.0,1325028444 +157,53318,4.0,1295663448 +157,53464,2.0,1365942000 +157,53468,3.0,1292893998 +157,53519,3.5,1362938651 +157,53996,2.5,1365941359 +157,54286,3.5,1362938391 +157,54503,3.5,1308343647 +157,55684,3.0,1362938622 +157,55721,3.5,1362938345 +157,55765,3.5,1362937651 +157,55820,4.0,1291599005 +157,56174,2.5,1365940028 +157,56367,4.0,1291599050 +157,57274,4.0,1291599897 +157,57504,3.0,1355865379 +157,57669,4.5,1344510907 +157,58295,3.5,1365891207 +157,58376,3.5,1292893005 +157,58559,4.5,1295749357 +157,59315,3.0,1291598709 +157,59369,4.0,1344509870 +157,59814,4.5,1320685381 +157,60069,3.5,1323617792 +157,60074,2.0,1291598421 +157,60684,4.5,1295749312 +157,61160,2.5,1323617992 +157,61240,4.5,1295749337 +157,62394,0.5,1365941829 +157,64614,4.5,1295749342 +157,65514,4.5,1291644683 +157,65642,4.5,1295749315 +157,66097,3.5,1344509879 +157,66130,3.5,1323965285 +157,67255,4.0,1365940059 +157,68157,4.0,1291598986 +157,68237,4.5,1295749325 +157,68358,4.0,1291599112 +157,68954,4.0,1291599027 +157,69122,4.0,1291599135 +157,69481,3.5,1330113001 +157,70286,4.5,1295749347 +157,71106,3.5,1355865641 +157,71135,4.0,1293109715 +157,71304,2.5,1293212820 +157,71535,3.5,1291665385 +157,72171,4.0,1362938608 +157,72378,3.0,1292521924 +157,72998,3.5,1291598631 +157,73808,4.5,1292890961 +157,74458,3.5,1365939711 +157,74789,3.0,1293016250 +157,76091,4.0,1323622639 +157,76251,4.0,1291654648 +157,77561,2.5,1291654739 +157,79132,4.5,1295749340 +157,79553,4.0,1369334534 +157,79702,4.5,1295749318 +157,80350,0.5,1291599117 +157,80463,4.5,1323549222 +157,80489,4.0,1330113072 +157,81417,3.5,1292893081 +157,81834,3.5,1369334448 +157,82242,4.0,1295146250 +157,82667,4.0,1323623436 +157,83349,1.5,1365942027 +157,84952,4.5,1309103313 +157,85179,4.5,1323559112 +157,85342,4.0,1365893313 +157,85414,3.5,1320684703 +157,85510,0.5,1344510080 +157,86190,3.0,1365940034 +157,86320,3.5,1323620427 +157,86345,4.0,1365939981 +157,86377,4.0,1365892488 +157,86892,3.0,1323622974 +157,87232,4.5,1323623618 +157,88125,3.5,1369334443 +157,88129,4.0,1325812510 +157,88140,2.0,1344510027 +157,88163,4.0,1344509722 +157,88744,3.5,1344509886 +157,89745,3.0,1355865600 +157,89774,4.0,1344511155 +157,89864,4.0,1323993937 +157,89904,4.0,1365892345 +157,90469,1.5,1365941495 +157,91529,4.0,1344509506 +157,92259,4.0,1365939614 +157,92535,4.0,1365939979 +157,93838,4.0,1356654885 +157,93840,4.0,1355865512 +157,93855,4.0,1365892088 +157,94780,1.5,1344510618 +157,94864,3.5,1355865522 +157,95510,2.5,1365941277 +157,96079,4.0,1365892481 +157,96610,4.5,1355865507 +157,97306,4.0,1367356289 +157,97752,4.0,1362937379 +157,97921,4.0,1365887059 +157,98607,4.0,1366064367 +157,102125,3.5,1369334582 +157,102445,4.0,1371067235 +158,319,4.0,1231502686 +158,327,2.0,1231502691 +158,481,3.5,1231502746 +158,1388,2.5,1231502784 +158,1957,4.0,1231502707 +158,1967,4.0,1231502676 +158,2004,3.5,1231502801 +158,2376,2.5,1231502861 +158,2412,4.0,1231502856 +158,2533,3.0,1231502866 +158,2643,2.0,1231502844 +158,3264,1.5,1231502789 +158,3386,3.5,1231502682 +158,3984,4.0,1231502808 +158,30810,4.5,1231502827 +158,54286,3.5,1231502773 +158,58559,4.0,1231503014 +158,60069,1.5,1231502994 +158,60293,1.5,1231503042 +158,61323,3.5,1231503157 +158,62956,4.0,1231503023 +159,10,2.5,1183519921 +159,25,4.5,1183519288 +159,34,2.0,1183519883 +159,47,3.5,1183519855 +159,50,4.5,1183519004 +159,62,3.5,1183519692 +159,72,0.5,1183519180 +159,76,3.0,1183518573 +159,110,4.0,1183519810 +159,111,4.0,1183518995 +159,150,3.5,1183519814 +159,165,3.5,1183519849 +159,180,3.0,1183519514 +159,231,1.5,1183519900 +159,253,1.5,1183519943 +159,260,5.0,1183518958 +159,265,4.0,1183519388 +159,296,4.5,1183518896 +159,318,5.0,1183518940 +159,329,2.5,1183519918 +159,344,2.0,1183519845 +159,349,2.0,1183519867 +159,356,4.0,1183519794 +159,364,3.5,1183519399 +159,367,1.5,1183519905 +159,377,3.0,1183519839 +159,380,3.0,1183519821 +159,434,0.5,1183519940 +159,457,3.0,1183519802 +159,480,4.0,1183519798 +159,491,1.5,1183518385 +159,497,3.5,1183519707 +159,500,2.0,1183519898 +159,527,4.5,1183518932 +159,539,2.0,1183519929 +159,541,5.0,1183518700 +159,587,2.5,1183519923 +159,589,3.5,1183519818 +159,592,3.0,1183519807 +159,593,5.0,1183518946 +159,597,3.0,1183519890 +159,608,4.0,1183518764 +159,733,2.5,1183519887 +159,745,3.5,1183519013 +159,780,3.5,1183519823 +159,799,3.0,1183518371 +159,800,4.5,1183519437 +159,858,4.0,1183518780 +159,903,4.0,1183519007 +159,904,5.0,1183518916 +159,908,4.0,1183518868 +159,912,5.0,1183518707 +159,913,4.0,1183518836 +159,923,5.0,1183518729 +159,933,4.5,1183518534 +159,1080,3.5,1183519667 +159,1097,3.0,1183519916 +159,1136,4.5,1183518852 +159,1148,4.0,1183519019 +159,1196,4.0,1183518962 +159,1197,4.5,1183518890 +159,1198,5.0,1183518903 +159,1204,5.0,1183518813 +159,1207,4.0,1183518995 +159,1208,4.5,1183518676 +159,1210,4.0,1183519833 +159,1213,4.0,1183518786 +159,1217,4.0,1183518912 +159,1221,4.5,1183518783 +159,1228,4.0,1183518901 +159,1233,4.0,1183518704 +159,1240,4.0,1183519937 +159,1252,5.0,1183518725 +159,1254,4.0,1183518995 +159,1262,4.5,1183518791 +159,1267,4.0,1183518842 +159,1270,4.0,1183519863 +159,1580,3.5,1183519595 +159,1586,3.0,1183518377 +159,1721,4.0,1183519927 +159,1907,3.5,1183519710 +159,1911,1.0,1183518395 +159,1952,3.5,1183519612 +159,1955,3.5,1183519234 +159,1965,4.0,1183518389 +159,1974,3.5,1183518591 +159,2000,4.0,1183519353 +159,2019,4.5,1183518936 +159,2028,4.5,1183519880 +159,2302,3.5,1183519734 +159,2329,4.5,1183518667 +159,2527,4.0,1183518536 +159,2571,4.0,1183518845 +159,2688,3.5,1183518403 +159,2762,3.0,1183519914 +159,2858,4.5,1183518664 +159,2959,3.5,1183518768 +159,3000,3.5,1183518894 +159,3019,4.0,1183518568 +159,3022,3.5,1183518778 +159,3037,4.0,1183519404 +159,3070,3.5,1183518550 +159,3089,3.5,1183518696 +159,3098,4.0,1183518519 +159,3104,2.5,1183519617 +159,3498,3.5,1183519611 +159,3551,4.0,1183519553 +159,3698,3.0,1183518491 +159,3703,4.5,1183519500 +159,3763,3.0,1183518579 +159,3836,4.0,1183519171 +159,4226,3.5,1183518849 +159,4235,3.5,1183518670 +159,4308,2.0,1183519684 +159,4327,4.5,1183519506 +159,4848,3.0,1183519713 +159,4878,4.0,1183518745 +159,4973,4.5,1183518660 +159,4993,4.5,1183518820 +159,5015,3.0,1183519658 +159,5060,4.0,1183519490 +159,5299,4.0,1183519731 +159,5952,4.5,1183518833 +159,5971,3.5,1183518857 +159,6016,3.5,1183518733 +159,6350,4.0,1183518710 +159,6711,2.5,1183519466 +159,6786,2.5,1183519224 +159,6807,3.5,1183519665 +159,6874,4.0,1183519198 +159,6942,4.0,1183519470 +159,7143,3.0,1183519269 +159,7153,4.5,1183518832 +159,7445,4.5,1183519537 +159,8645,4.0,1183519558 +159,8873,3.5,1183519681 +159,8966,1.5,1183519215 +159,26294,3.5,1183519761 +159,26662,4.0,1183519187 +159,27831,2.5,1183519282 +159,27838,4.5,1183519581 +159,30810,1.0,1183519374 +159,31878,1.5,1183519243 +159,36529,3.0,1183519455 +159,46578,4.0,1183519416 +159,48394,3.5,1183518878 +159,48516,3.5,1183518740 +159,51255,3.5,1183518799 +160,34,2.0,974256306 +160,36,4.0,974256106 +160,111,4.0,974255599 +160,280,5.0,974258204 +160,318,5.0,974256031 +160,339,4.0,974256766 +160,350,4.0,974258113 +160,356,5.0,974256558 +160,454,4.0,974258259 +160,457,5.0,974258079 +160,490,4.0,974258351 +160,527,3.0,974255503 +160,539,5.0,974256628 +160,586,3.0,974257089 +160,587,5.0,974256809 +160,593,3.0,974256051 +160,597,5.0,974256628 +160,832,5.0,974258127 +160,858,3.0,974258948 +160,1079,3.0,974257297 +160,1088,4.0,974258881 +160,1092,4.0,974258307 +160,1124,5.0,974259358 +160,1135,4.0,974257516 +160,1193,5.0,974255556 +160,1213,3.0,974256205 +160,1230,5.0,974258923 +160,1244,4.0,974258923 +160,1265,4.0,974258618 +160,1270,3.0,974257259 +160,1302,4.0,974257680 +160,1307,5.0,974257378 +160,1358,5.0,974258079 +160,1380,4.0,974258923 +160,1393,5.0,974258587 +160,1395,3.0,974257516 +160,1409,3.0,974256830 +160,1485,3.0,974256784 +160,1500,4.0,974256766 +160,1569,3.0,974256864 +160,1617,3.0,974258079 +160,1674,5.0,974257782 +160,1678,4.0,974256180 +160,1704,5.0,974256122 +160,1721,4.0,974258635 +160,1727,3.0,974256416 +160,1784,4.0,974256588 +160,1923,4.0,974257038 +160,1955,5.0,974258996 +160,1956,4.0,974257697 +160,1958,5.0,974257391 +160,1961,5.0,974257680 +160,1962,4.0,974257730 +160,1968,4.0,974257362 +160,2002,4.0,974256809 +160,2245,4.0,974257871 +160,2247,3.0,974257475 +160,2313,4.0,974257808 +160,2352,4.0,974257712 +160,2369,4.0,974257516 +160,2375,3.0,974257547 +160,2424,4.0,974257038 +160,2431,4.0,974256864 +160,2469,2.0,974258881 +160,2520,4.0,974259049 +160,2639,4.0,974258004 +160,2716,2.0,974257362 +160,2736,4.0,974257437 +160,2739,5.0,974257730 +160,2762,5.0,974258079 +160,2791,3.0,974255599 +160,2858,3.0,974255556 +160,2875,3.0,974258728 +160,2881,5.0,974258307 +160,2918,4.0,974257297 +160,2942,4.0,974258004 +160,2987,2.0,974255556 +160,3068,5.0,974257855 +160,3100,4.0,974256221 +160,3111,5.0,974257888 +160,3157,2.0,974257056 +160,3178,4.0,974256628 +160,3194,4.0,974259013 +160,3244,4.0,974258923 +160,3249,5.0,974258142 +160,3252,5.0,974256394 +160,3362,5.0,974258996 +160,3363,4.0,974258974 +160,3421,3.0,974259106 +160,3430,4.0,974259049 +160,3448,3.0,974257297 +160,3450,3.0,974256661 +160,3524,3.0,974257516 +160,3584,4.0,974255599 +160,3591,4.0,974257475 +160,3688,3.0,974257600 +160,3690,2.0,974257630 +160,3791,4.0,974258004 +160,3809,5.0,974256977 +160,3844,5.0,974257950 +161,2,4.0,837629692 +161,10,4.0,837629446 +161,11,4.0,837629659 +161,17,5.0,837629711 +161,21,3.0,837629516 +161,25,3.0,837629819 +161,31,3.0,837629820 +161,32,3.0,837629562 +161,36,4.0,837629925 +161,39,3.0,837629544 +161,44,3.0,837629757 +161,47,4.0,837629464 +161,48,3.0,837629866 +161,62,4.0,837629820 +161,95,4.0,837629733 +161,141,5.0,837629733 +161,145,3.0,837630800 +161,150,4.0,837629353 +161,153,3.0,837629381 +161,158,4.0,837629757 +161,160,3.0,837629544 +161,161,5.0,837629427 +161,163,4.0,837630040 +161,165,3.0,837629381 +161,172,4.0,837629757 +161,173,3.0,837629586 +161,181,3.0,837630800 +161,185,4.0,837629446 +161,204,3.0,837629733 +161,224,3.0,837629820 +161,225,4.0,837629488 +161,227,3.0,837629973 +161,231,3.0,837629407 +161,236,3.0,837629615 +161,237,3.0,837629940 +161,252,4.0,837629692 +161,256,3.0,837629757 +161,261,3.0,837629733 +161,266,4.0,837629562 +161,277,3.0,837629896 +161,292,4.0,837629427 +161,293,3.0,837629711 +161,296,3.0,837629353 +161,300,4.0,837629464 +161,315,3.0,837629586 +161,316,3.0,837629406 +161,317,3.0,837629516 +161,318,5.0,837629406 +161,329,3.0,837629406 +161,337,3.0,837629692 +161,339,3.0,837629446 +161,344,4.0,837629381 +161,349,3.0,837629381 +161,350,5.0,837629659 +161,356,4.0,837629488 +161,357,5.0,837629692 +161,364,3.0,837629516 +161,367,3.0,837629516 +161,368,5.0,837630040 +161,370,3.0,837630800 +161,377,5.0,837629562 +161,380,4.0,837629354 +161,410,5.0,837629464 +161,420,3.0,837629544 +161,434,3.0,837629427 +161,440,4.0,837629586 +161,442,3.0,837629711 +161,454,4.0,837629488 +161,457,5.0,837629427 +161,474,4.0,837629866 +161,480,4.0,837629488 +161,485,3.0,837630094 +161,500,4.0,837629586 +161,508,4.0,837629925 +161,509,4.0,837629733 +161,515,3.0,837629973 +161,539,3.0,837629615 +161,553,4.0,837629615 +161,585,3.0,837629925 +161,586,3.0,837629659 +161,587,4.0,837629615 +161,588,3.0,837629381 +161,589,5.0,837629544 +161,590,3.0,837629353 +161,592,3.0,837629353 +161,593,5.0,837629427 +161,595,3.0,837629407 +161,597,3.0,837629659 +161,608,3.0,837630040 +161,648,3.0,837630094 +162,3,2.0,852791965 +162,5,4.0,852791965 +162,6,3.0,852791965 +162,7,3.0,852791965 +162,17,4.0,852792058 +162,36,3.0,852791965 +162,52,5.0,852791994 +162,62,5.0,852792058 +162,64,3.0,852792308 +162,100,3.0,852792221 +162,118,3.0,852792392 +162,140,4.0,852792019 +162,141,5.0,852792058 +162,376,4.0,852791965 +162,494,3.0,852792107 +162,605,3.0,852792452 +162,608,5.0,852791965 +162,637,3.0,852792019 +162,648,3.0,852792058 +162,650,3.0,852792354 +162,707,3.0,852792246 +162,708,3.0,852791994 +162,719,3.0,852792246 +162,736,2.0,852792058 +162,780,3.0,852792058 +162,788,3.0,852791994 +162,805,3.0,852792221 +162,852,3.0,852792272 +162,1353,3.0,852792392 +162,1393,5.0,852792372 +163,1,3.0,1390767736 +163,19,0.5,1390776289 +163,110,4.0,1390766930 +163,150,4.5,1390766905 +163,153,0.5,1390767109 +163,260,4.0,1390766833 +163,296,3.0,1390766954 +163,318,5.0,1294084408 +163,344,1.5,1390767810 +163,356,5.0,1294158771 +163,367,2.0,1390767129 +163,457,4.0,1390766921 +163,480,3.5,1390766825 +163,527,5.0,1294084403 +163,586,3.5,1390776274 +163,588,2.5,1390767042 +163,589,2.0,1390766869 +163,592,2.5,1390766860 +163,593,4.5,1390766814 +163,648,3.0,1390776270 +163,743,0.5,1294063848 +163,780,3.0,1390766855 +163,858,5.0,1294084360 +163,1092,3.5,1294063744 +163,1196,4.0,1390767035 +163,1210,4.0,1390766848 +163,1221,5.0,1294084374 +163,1370,1.5,1390776630 +163,1704,4.5,1294158881 +163,1721,3.5,1390767124 +163,1735,4.5,1294064044 +163,1835,3.5,1294063913 +163,1882,1.5,1294063829 +163,1994,3.5,1390767684 +163,2028,4.0,1390767157 +163,2278,4.0,1294063761 +163,2324,3.0,1294158283 +163,2404,0.5,1294159272 +163,2412,0.5,1294063996 +163,2541,4.0,1294063793 +163,2571,2.0,1390766977 +163,2858,4.5,1294158301 +163,2997,4.5,1390767211 +163,3438,2.0,1294063921 +163,3578,3.5,1390767582 +163,3615,2.0,1294064126 +163,3717,3.5,1390776583 +163,3793,3.5,1390776260 +163,4718,2.5,1390776566 +163,4963,4.0,1390767742 +163,4993,3.5,1390767117 +163,5349,2.5,1390776249 +163,6059,0.5,1294064112 +163,6565,4.5,1294159057 +163,7153,3.0,1294158525 +163,8636,2.5,1390776545 +163,33493,3.5,1390776540 +163,55247,3.5,1390767791 +163,56174,1.5,1294158761 +163,60069,4.0,1294158603 +163,64034,4.5,1390768421 +163,66544,3.0,1294158232 +163,72378,0.5,1390767164 +163,73290,4.5,1320604494 +163,74688,2.5,1320602141 +163,78499,2.5,1294158583 +163,79132,2.5,1294064035 +163,82202,2.5,1294064607 +163,87485,1.5,1320618115 +163,88744,4.5,1321732673 +163,91077,3.5,1390776168 +163,92751,4.0,1390766615 +163,93422,4.0,1390767537 +163,97938,4.0,1390775823 +163,98809,3.5,1390767498 +163,103249,3.0,1390775312 +163,104337,4.0,1390775779 +163,104925,3.5,1390775955 +163,105844,4.0,1390766794 +163,106489,4.0,1390767502 +163,106782,4.5,1390767414 +164,1,3.5,1179531301 +164,10,4.0,1182287578 +164,104,4.0,1180653733 +164,110,3.0,1182619735 +164,111,4.5,1182619786 +164,223,4.5,1182287392 +164,231,2.0,1179531233 +164,260,3.0,1179531305 +164,293,4.0,1178928230 +164,296,4.5,1182619724 +164,317,1.0,1178927026 +164,318,4.5,1182619722 +164,364,4.0,1179530417 +164,441,4.0,1182287459 +164,480,3.0,1182620144 +164,608,4.5,1182619843 +164,609,2.0,1178926978 +164,788,2.5,1178926928 +164,904,3.5,1179031670 +164,908,4.5,1178927749 +164,913,4.0,1179891195 +164,922,4.0,1179030022 +164,954,5.0,1182619887 +164,1073,4.0,1182387701 +164,1089,5.0,1178927475 +164,1136,3.5,1179533887 +164,1203,5.0,1178927651 +164,1206,5.0,1178926943 +164,1207,4.0,1179031702 +164,1208,4.0,1182287518 +164,1210,2.5,1182619757 +164,1240,2.5,1182620184 +164,1265,4.0,1179531237 +164,1285,4.0,1178927539 +164,1517,4.0,1179531366 +164,1580,3.5,1179530356 +164,1688,3.0,1178926883 +164,1704,4.0,1182287580 +164,1722,3.5,1178926971 +164,1732,3.5,1182619909 +164,1907,3.0,1178926953 +164,1923,3.5,1179530384 +164,1968,4.0,1179031968 +164,2109,4.0,1178927123 +164,2321,4.0,1178927517 +164,2683,4.0,1179531258 +164,2791,4.0,1179890279 +164,2858,4.0,1180653109 +164,2947,4.0,1178927090 +164,3114,3.5,1178926925 +164,3253,3.5,1179890296 +164,3751,3.5,1179890318 +164,4022,4.0,1179530376 +164,4027,4.0,1179031032 +164,4306,4.0,1178928048 +164,4447,3.0,1178926889 +164,4641,4.5,1178927454 +164,4878,5.0,1179890521 +164,4973,4.0,1182619921 +164,4993,3.0,1179531357 +164,5349,3.5,1182619938 +164,5418,4.0,1178927008 +164,5810,3.5,1178926870 +164,5952,2.5,1179531309 +164,6218,4.0,1179031139 +164,6331,4.5,1182619942 +164,6373,3.5,1179891094 +164,6377,3.5,1179530369 +164,6502,3.5,1182619905 +164,7153,3.0,1178927037 +164,8360,2.5,1182620196 +164,8464,4.0,1182287570 +164,8600,4.0,1182287586 +164,8636,3.0,1182619936 +164,8665,3.5,1179531245 +164,8784,5.0,1178927228 +164,8961,3.5,1178927070 +164,26974,4.0,1182619873 +164,33166,4.0,1182387710 +164,34048,3.5,1182287590 +164,43396,3.0,1182619927 +164,45728,4.0,1182287395 +165,1,2.5,1111482682 +165,2,3.0,1111981462 +165,3,2.5,1111981538 +165,10,2.5,1111482847 +165,19,1.0,1111482570 +165,21,2.5,1111479425 +165,22,3.5,1111479044 +165,31,3.5,1111981801 +165,44,4.0,1111482102 +165,47,3.5,1111479971 +165,50,2.0,1111482816 +165,62,3.5,1111981437 +165,70,5.0,1111480089 +165,81,3.0,1111482441 +165,104,4.0,1111482096 +165,110,4.5,1111912930 +165,111,4.0,1111981448 +165,112,2.0,1111981621 +165,145,3.5,1111981751 +165,158,2.0,1111479041 +165,163,4.0,1111981715 +165,165,5.0,1111612298 +165,173,1.5,1111981610 +165,181,1.0,1111482443 +165,185,2.5,1111482873 +165,196,2.0,1111981642 +165,198,3.0,1111479127 +165,216,3.5,1111981940 +165,225,2.0,1111981559 +165,231,4.0,1111482094 +165,246,3.0,1111980924 +165,276,2.0,1111982099 +165,280,3.5,1111982190 +165,292,3.0,1111482854 +165,293,5.0,1111479305 +165,296,3.5,1111480525 +165,317,2.5,1111981484 +165,318,4.0,1111479639 +165,322,4.5,1111609877 +165,338,2.0,1111982333 +165,339,2.5,1111482645 +165,344,4.0,1111482800 +165,350,3.0,1111482557 +165,356,3.5,1111480611 +165,364,3.5,1111482824 +165,367,3.5,1111482856 +165,370,3.0,1111981697 +165,377,3.0,1111480633 +165,380,4.0,1111480618 +165,393,1.0,1111611009 +165,413,3.0,1111982342 +165,424,3.5,1111610567 +165,428,3.0,1111480423 +165,432,2.0,1111981613 +165,434,2.0,1111482554 +165,442,2.5,1111981478 +165,457,3.0,1111479900 +165,466,4.0,1111482079 +165,470,3.0,1111612047 +165,480,3.0,1111480613 +165,485,3.5,1111482300 +165,500,3.0,1111482850 +165,502,1.5,1111479498 +165,508,4.5,1111479855 +165,514,3.0,1111479736 +165,520,5.0,1111479064 +165,524,3.0,1111982109 +165,527,4.0,1120068294 +165,529,3.5,1111482724 +165,538,3.5,1111982281 +165,539,2.0,1111981315 +165,543,4.5,1111612357 +165,546,1.0,1111611453 +165,586,4.5,1111482718 +165,587,3.0,1111482864 +165,588,4.0,1111480626 +165,589,4.5,1113267986 +165,592,4.0,1111480537 +165,593,3.0,1111480609 +165,595,3.0,1111482813 +165,596,3.0,1111612353 +165,608,3.0,1111480631 +165,648,3.5,1111482809 +165,653,1.0,1111482551 +165,671,3.5,1111482370 +165,673,1.5,1111981824 +165,733,3.0,1111482833 +165,736,2.5,1111482822 +165,741,1.0,1112679125 +165,780,4.0,1111480621 +165,784,2.0,1111981662 +165,802,2.5,1111482731 +165,805,4.5,1111981721 +165,810,2.5,1111483539 +165,832,2.5,1111981626 +165,834,3.0,1111544586 +165,866,3.0,1111982104 +165,919,3.5,1111482179 +165,968,5.0,1111480014 +165,1022,3.0,1111981968 +165,1027,3.0,1111482392 +165,1032,3.0,1111982266 +165,1036,2.5,1111479916 +165,1047,3.0,1111981835 +165,1059,4.0,1111612225 +165,1061,2.5,1111610189 +165,1073,5.0,1111482359 +165,1092,2.5,1111981773 +165,1097,4.0,1111482860 +165,1198,4.0,1111482627 +165,1200,3.5,1111981454 +165,1208,3.0,1111981544 +165,1215,3.5,1111482290 +165,1222,2.0,1111981603 +165,1240,3.0,1111609894 +165,1257,1.5,1111479962 +165,1258,1.0,1111981565 +165,1259,3.5,1111479987 +165,1265,4.0,1111482033 +165,1270,3.5,1111481917 +165,1291,3.0,1111480417 +165,1307,2.5,1111482635 +165,1320,3.5,1111479101 +165,1333,2.5,1111981816 +165,1347,4.5,1111982292 +165,1370,2.5,1111480080 +165,1377,4.0,1111482012 +165,1380,2.0,1111479020 +165,1391,3.0,1111481945 +165,1393,5.0,1111612302 +165,1405,4.0,1111981890 +165,1430,2.5,1111544609 +165,1447,3.5,1111544605 +165,1485,4.0,1111981711 +165,1490,0.5,1111611335 +165,1500,4.0,1111482493 +165,1517,2.5,1111481904 +165,1527,4.0,1112176015 +165,1532,2.5,1111544615 +165,1544,3.0,1111482601 +165,1552,2.5,1111482228 +165,1562,0.5,1111982007 +165,1573,3.5,1111482648 +165,1580,2.5,1111609797 +165,1597,2.5,1111482168 +165,1599,3.0,1111481213 +165,1625,3.0,1111479081 +165,1632,2.5,1111544629 +165,1639,4.0,1111482544 +165,1645,2.5,1111482162 +165,1661,1.5,1111544643 +165,1681,0.5,1111611428 +165,1682,3.0,1111482297 +165,1704,4.0,1111479936 +165,1721,3.0,1111482007 +165,1729,2.0,1111981828 +165,1739,0.5,1111481183 +165,1747,1.0,1111482560 +165,1753,4.0,1111479403 +165,1777,3.5,1111482502 +165,1784,3.0,1111481912 +165,1805,2.0,1111982193 +165,1840,3.0,1111479764 +165,1863,3.5,1111610272 +165,1876,3.0,1111482039 +165,1882,1.0,1111982294 +165,1886,1.5,1111611940 +165,1917,5.0,1111481969 +165,1921,3.5,1111982185 +165,1923,3.5,1111482007 +165,1970,3.0,1112679242 +165,1972,3.5,1111482343 +165,1997,2.5,1111481937 +165,2003,3.5,1111981798 +165,2005,3.5,1111479677 +165,2012,2.5,1111481863 +165,2018,3.0,1111982351 +165,2025,2.5,1111612199 +165,2028,4.0,1111481983 +165,2054,3.0,1111479052 +165,2078,3.0,1111982010 +165,2081,2.0,1111479088 +165,2087,3.0,1111982307 +165,2115,3.0,1111482251 +165,2134,3.0,1111612190 +165,2174,3.5,1111479770 +165,2231,3.0,1111610238 +165,2232,5.0,1111609799 +165,2248,2.0,1111980163 +165,2253,3.5,1111480641 +165,2278,1.0,1111981918 +165,2302,3.0,1111481853 +165,2321,3.0,1111481929 +165,2329,4.5,1111480370 +165,2338,2.0,1111482351 +165,2353,4.0,1111479079 +165,2395,3.5,1111482199 +165,2420,4.5,1111479346 +165,2421,4.0,1111479353 +165,2422,3.0,1111479385 +165,2424,3.0,1111981819 +165,2449,3.0,1111610900 +165,2455,3.0,1111981837 +165,2462,3.0,1111481241 +165,2490,0.5,1111981929 +165,2502,3.0,1111479056 +165,2541,5.0,1111982121 +165,2571,5.0,1111480428 +165,2580,4.0,1111479966 +165,2617,3.5,1111481985 +165,2628,2.5,1111482668 +165,2662,2.0,1111482591 +165,2683,2.5,1111482027 +165,2686,4.5,1111482431 +165,2692,3.5,1111481961 +165,2699,3.0,1111479011 +165,2700,4.5,1111481861 +165,2706,3.5,1111481975 +165,2710,0.5,1111482114 +165,2716,3.5,1111981451 +165,2746,3.0,1111482574 +165,2762,5.0,1111480419 +165,2791,3.0,1111981616 +165,2797,4.0,1111482437 +165,2799,2.5,1111481181 +165,2804,2.5,1111482692 +165,2841,3.0,1111610514 +165,2845,0.5,1111544698 +165,2858,3.5,1111481873 +165,2881,1.0,1111982102 +165,2890,2.5,1111482060 +165,2916,3.0,1111481989 +165,2918,5.0,1111479924 +165,2953,3.5,1111482608 +165,2959,5.0,1111480653 +165,2979,2.0,1111544701 +165,2987,4.0,1111479767 +165,2997,3.0,1111482042 +165,3000,3.5,1111609915 +165,3020,4.5,1111479759 +165,3033,4.0,1111479682 +165,3046,2.0,1111544716 +165,3052,2.0,1111481749 +165,3081,2.0,1111482099 +165,3101,2.5,1111479106 +165,3147,4.0,1111479859 +165,3148,3.5,1111482598 +165,3160,3.5,1111981804 +165,3253,3.5,1111479715 +165,3255,3.0,1111482585 +165,3257,2.0,1111479356 +165,3271,3.0,1111479931 +165,3300,1.5,1111612105 +165,3328,3.5,1111482407 +165,3350,3.0,1120068354 +165,3354,0.5,1111982354 +165,3437,5.0,1111611824 +165,3438,3.0,1111611097 +165,3439,4.0,1111611099 +165,3440,2.5,1111611103 +165,3471,2.5,1111482158 +165,3481,3.0,1111481949 +165,3510,3.0,1111480425 +165,3535,2.0,1111982349 +165,3554,4.0,1112679158 +165,3555,3.0,1111982299 +165,3578,3.5,1111479902 +165,3593,0.5,1111610943 +165,3617,2.5,1111982357 +165,3623,0.5,1111479113 +165,3696,5.0,1111544780 +165,3751,2.0,1111482054 +165,3752,2.0,1111982324 +165,3761,2.5,1111976030 +165,3773,3.0,1111612043 +165,3774,3.5,1111612045 +165,3785,3.5,1111982301 +165,3793,4.0,1111481856 +165,3823,1.5,1111544774 +165,3863,2.5,1111982128 +165,3869,3.5,1111482367 +165,3897,3.5,1111479994 +165,3914,1.0,1111544796 +165,3916,3.0,1111610539 +165,3943,4.0,1111544813 +165,3948,2.0,1111482140 +165,3949,2.5,1111980153 +165,3973,0.5,1111611914 +165,3977,1.0,1111482127 +165,3996,5.0,1111481866 +165,4011,1.0,1111609765 +165,4019,3.5,1111609772 +165,4022,2.5,1111482063 +165,4025,1.5,1111479360 +165,4034,3.5,1111479094 +165,4054,3.5,1111974579 +165,4066,3.5,1111612079 +165,4105,3.0,1111609926 +165,4128,4.0,1111610175 +165,4217,2.5,1120068379 +165,4226,3.5,1111479248 +165,4235,4.0,1111980518 +165,4255,3.0,1111611899 +165,4262,2.0,1111609900 +165,4306,4.0,1111479940 +165,4369,2.0,1111482425 +165,4370,1.0,1111982123 +165,4446,3.5,1111482418 +165,4532,2.5,1120068461 +165,4533,4.5,1120068453 +165,4571,4.0,1111479751 +165,4616,3.0,1111610138 +165,4623,2.5,1111610270 +165,4630,5.0,1111611982 +165,4649,2.5,1111544905 +165,4720,3.5,1111610250 +165,4732,2.5,1111544926 +165,4734,2.5,1111482568 +165,4749,2.0,1111481171 +165,4750,1.5,1111481174 +165,4765,3.0,1111544922 +165,4775,2.0,1111481159 +165,4875,1.0,1111610955 +165,4878,3.5,1111479322 +165,4886,3.0,1111480753 +165,4963,3.0,1112862161 +165,4968,1.5,1111544939 +165,4995,3.5,1111610361 +165,5053,3.0,1111611965 +165,5080,2.5,1111609693 +165,5094,1.0,1111611733 +165,5095,3.0,1111612120 +165,5103,3.5,1111479713 +165,5106,1.5,1111611419 +165,5152,1.0,1111610214 +165,5165,3.5,1111480053 +165,5170,2.5,1111544956 +165,5294,1.5,1111610103 +165,5323,3.5,1111611803 +165,5329,2.0,1111545166 +165,5349,4.0,1111481920 +165,5378,0.5,1111981923 +165,5387,1.0,1111544973 +165,5418,2.0,1111479893 +165,5443,2.0,1111610890 +165,5445,3.5,1111479887 +165,5448,2.5,1111611144 +165,5464,1.0,1111483124 +165,5501,3.0,1111545003 +165,5502,4.5,1111982312 +165,5507,1.0,1111482454 +165,5531,2.5,1111544994 +165,5556,1.0,1111611741 +165,5562,2.0,1111544998 +165,5569,2.0,1111545007 +165,5577,3.0,1111612163 +165,5597,4.0,1111610879 +165,5609,0.5,1111611730 +165,5615,1.5,1111545018 +165,5625,1.0,1111479721 +165,5628,2.0,1111545012 +165,5630,3.0,1111480432 +165,5669,4.5,1111980113 +165,5679,3.5,1111609738 +165,5765,5.0,1111479691 +165,5880,0.5,1111611312 +165,5883,2.0,1111611979 +165,5901,2.5,1111545046 +165,5902,0.5,1111980416 +165,5903,3.5,1111480402 +165,5945,2.5,1111482091 +165,5955,5.0,1111479949 +165,5959,4.0,1111610222 +165,5962,0.5,1111611889 +165,5989,3.5,1111480414 +165,6016,3.0,1111479653 +165,6057,2.5,1111545061 +165,6063,4.5,1111479742 +165,6157,3.0,1112679205 +165,6188,4.0,1111610235 +165,6204,2.5,1111611955 +165,6218,2.5,1111609912 +165,6242,2.0,1111979893 +165,6284,0.5,1111479753 +165,6323,4.0,1111610524 +165,6333,3.5,1111479877 +165,6365,2.0,1111982019 +165,6378,1.5,1111610528 +165,6464,2.0,1111483520 +165,6482,0.5,1111611916 +165,6502,3.5,1111482107 +165,6587,0.5,1111481156 +165,6620,1.5,1111980536 +165,6731,4.0,1111480034 +165,6796,4.5,1111610549 +165,6827,2.0,1111481221 +165,6867,1.0,1111980432 +165,6870,3.0,1111980126 +165,6872,0.5,1111610819 +165,6874,5.0,1111480750 +165,6909,3.0,1111912447 +165,6936,2.5,1111482460 +165,6942,4.0,1111609760 +165,6947,1.0,1111482458 +165,6953,1.0,1111610395 +165,7022,3.5,1111609775 +165,7090,3.5,1111610377 +165,7117,3.0,1111611208 +165,7137,2.5,1111610228 +165,7139,3.0,1111980236 +165,7143,5.0,1111479870 +165,7160,1.5,1111479295 +165,7189,1.5,1111483453 +165,7254,3.5,1111479987 +165,7263,2.5,1111480374 +165,7315,2.0,1111611968 +165,7343,1.5,1112176029 +165,7360,4.0,1111480043 +165,7361,4.0,1111479326 +165,7387,1.5,1111480042 +165,7438,4.0,1111480654 +165,7445,4.0,1111480366 +165,7458,2.5,1111479400 +165,7802,4.0,1112679238 +165,7899,3.0,1111610107 +165,8130,3.0,1111544466 +165,8225,2.5,1111480022 +165,8360,4.0,1111480666 +165,8363,1.0,1111611403 +165,8366,2.0,1111979070 +165,8367,2.0,1112095574 +165,8372,1.0,1111611905 +165,8528,2.0,1111479699 +165,8529,3.5,1112078947 +165,8533,2.0,1111912388 +165,8534,2.5,1113813088 +165,8636,4.0,1111480382 +165,8641,2.5,1111479407 +165,8645,5.0,1111980134 +165,8665,3.5,1111479979 +165,8667,2.0,1111610219 +165,8720,2.5,1111611992 +165,8781,3.0,1111479704 +165,8783,1.5,1111479377 +165,8784,4.0,1111479298 +165,8798,4.0,1111610172 +165,8807,3.5,1111479419 +165,8810,1.0,1111479349 +165,8832,1.5,1111610198 +165,8835,1.5,1111479362 +165,8836,0.5,1111479487 +165,8839,2.5,1111481229 +165,8860,1.0,1111479436 +165,8861,0.5,1111479388 +165,8864,3.5,1111479342 +165,8865,1.5,1111479431 +165,8870,4.0,1111479473 +165,8874,4.0,1111480068 +165,8907,2.0,1111912408 +165,8908,1.0,1111479466 +165,8910,1.5,1111479442 +165,8911,2.5,1113813097 +165,8918,2.5,1111479446 +165,8937,4.5,1111479434 +165,8947,1.0,1111912422 +165,8957,4.5,1112176043 +165,8958,3.5,1120068362 +165,8961,3.0,1111479242 +165,8974,2.5,1112679141 +165,8984,1.0,1112862150 +165,9010,5.0,1111480338 +165,9018,2.5,1112078957 +165,27317,3.0,1111610390 +165,27604,2.0,1113411108 +165,27773,4.0,1111479561 +165,27808,3.0,1112679214 +165,27822,0.5,1111479464 +165,27838,3.0,1112679117 +165,27869,3.0,1113167865 +165,30749,1.0,1120068332 +165,30820,2.5,1112982315 +165,31221,3.5,1112679197 +165,31445,2.0,1111479484 +165,31696,2.5,1111479578 +165,31724,1.0,1111479503 +165,32587,4.0,1112840368 +165,33794,3.5,1120068275 +166,34,4.0,1064888506 +166,147,4.5,1064888637 +166,163,3.5,1064888606 +166,293,4.5,1064888812 +166,342,4.0,1064887336 +166,356,4.0,1064889082 +166,376,4.0,1064887032 +166,435,0.5,1064886959 +166,480,3.5,1064889111 +166,524,4.0,1064888483 +166,590,5.0,1064889120 +166,608,3.0,1064888510 +166,653,3.0,1064887021 +166,785,2.0,1064887460 +166,912,2.0,1064888582 +166,1242,5.0,1064887402 +166,1246,4.5,1064889089 +166,1393,4.0,1064889126 +166,1584,4.0,1064889136 +166,1676,3.0,1064889007 +166,1682,4.0,1064887297 +166,1732,1.0,1064887367 +166,1917,3.0,1064887265 +166,1968,4.0,1064889114 +166,2096,4.0,1064888456 +166,2302,4.0,1064887417 +166,2355,4.0,1064886953 +166,2797,4.5,1064887245 +166,3114,4.0,1064887231 +166,3404,3.0,1064888661 +166,3489,4.0,1064888994 +166,3578,5.0,1064887026 +166,3624,4.0,1064887949 +166,3751,3.0,1064887383 +166,3897,4.5,1064887435 +166,4223,4.0,1064889094 +166,4262,4.0,1064888885 +166,4367,2.5,1064888102 +166,4886,4.5,1064889159 +166,4963,3.5,1064887933 +166,5349,4.0,1064887939 +166,5445,4.5,1064887945 +166,5669,5.0,1064888495 +166,5952,4.5,1064888405 +166,5989,4.5,1064887927 +166,6156,4.0,1064888066 +166,6157,2.5,1064889000 +166,6287,3.0,1064888682 +166,6333,4.0,1064887923 +166,6383,2.0,1064888685 +166,6535,4.0,1064888374 +166,6539,4.5,1064887792 +166,6564,2.5,1064887823 +166,6595,4.0,1064887801 +166,6596,2.5,1064887827 +166,6686,2.0,1064888366 +167,480,5.0,954114978 +167,575,5.0,954115144 +167,1097,5.0,954114904 +167,1199,4.0,954115020 +167,1210,3.0,954114958 +167,1214,4.0,954114958 +167,1240,4.0,954114958 +167,1270,5.0,954114930 +167,2002,4.0,954053457 +167,2053,4.0,954053457 +167,2078,5.0,954053212 +167,2081,4.0,954115144 +167,2174,2.0,954053165 +167,2355,4.0,954115544 +167,2365,2.0,954115062 +167,2407,4.0,954114998 +167,2454,5.0,954115020 +167,2455,5.0,954115040 +167,2571,2.0,954114904 +167,2640,3.0,954114998 +167,2699,3.0,954115524 +167,2985,3.0,954114978 +167,3101,5.0,954051710 +167,3157,4.0,954115163 +168,1,5.0,848866772 +168,4,3.0,848879299 +168,20,2.0,848879311 +168,21,4.0,848879039 +168,32,3.0,848866720 +168,39,4.0,848866720 +168,50,4.0,848866691 +168,93,2.0,848879389 +168,110,3.0,848866642 +168,111,5.0,848866943 +168,122,3.0,848879277 +168,145,3.0,848879177 +168,150,4.0,848866570 +168,151,3.0,848879076 +168,153,3.0,848866602 +168,163,3.0,848879158 +168,164,3.0,848879389 +168,165,3.0,848866602 +168,173,1.0,848866744 +168,175,3.0,848879449 +168,196,2.0,848879076 +168,198,2.0,848879256 +168,204,3.0,848879090 +168,217,3.0,848879608 +168,225,3.0,848866720 +168,227,2.0,848879167 +168,234,2.0,848879242 +168,235,4.0,848866964 +168,237,3.0,848879151 +168,252,3.0,848879090 +168,255,1.0,848879412 +168,259,3.0,848879449 +168,260,5.0,848879311 +168,269,4.0,848879781 +168,287,3.0,848879874 +168,288,3.0,848866666 +168,292,3.0,848866631 +168,296,4.0,848866570 +168,300,4.0,848866683 +168,318,5.0,848866631 +168,322,4.0,848879585 +168,329,3.0,848866631 +168,333,2.0,848879115 +168,356,4.0,848866615 +168,357,3.0,848866720 +168,358,2.0,848879527 +168,364,4.0,848866666 +168,371,3.0,848879231 +168,377,4.0,848866653 +168,378,3.0,848879424 +168,380,3.0,848866570 +168,384,3.0,848879761 +168,391,3.0,848879900 +168,410,3.0,848866683 +168,417,4.0,848879377 +168,419,1.0,848879222 +168,420,1.0,848866720 +168,426,3.0,848879364 +168,427,3.0,848879256 +168,428,3.0,848879489 +168,432,3.0,848866744 +168,434,3.0,848866631 +168,440,4.0,848866730 +168,442,3.0,848866757 +168,445,3.0,848879489 +168,450,2.0,848879449 +168,454,3.0,848866653 +168,457,4.0,848866602 +168,474,4.0,848866744 +168,485,2.0,848879115 +168,489,2.0,848879333 +168,493,4.0,848879513 +168,500,3.0,848879030 +168,505,2.0,848879570 +168,508,3.0,848866772 +168,509,3.0,848866757 +168,510,2.0,848879661 +168,514,3.0,848879318 +168,515,4.0,848866861 +168,516,3.0,848879396 +168,519,1.0,848879299 +168,524,3.0,848879333 +168,535,3.0,848879349 +168,538,3.0,848879389 +168,540,2.0,848879201 +168,541,4.0,848879462 +168,553,3.0,848866772 +168,555,4.0,848879127 +168,569,3.0,848879585 +168,587,3.0,848866683 +168,589,4.0,848866653 +168,590,4.0,848866570 +168,592,3.0,848866570 +168,593,5.0,848866954 +168,597,3.0,848866683 +168,608,5.0,848866823 +168,639,3.0,848879799 +168,648,3.0,848866900 +168,750,5.0,848879829 +168,780,4.0,848866900 +168,912,5.0,848879874 +168,924,5.0,848879838 +168,1021,3.0,848879822 +168,1028,5.0,848879600 +168,1035,3.0,848879553 +168,1036,5.0,848866980 +168,1073,5.0,848879424 +168,1079,4.0,848879585 +168,1089,4.0,848879874 +168,1092,3.0,848879886 +168,1097,4.0,848879667 +168,1101,2.0,848879730 +168,1136,4.0,848879812 +168,1196,4.0,848879846 +168,1198,5.0,848879900 +168,1210,4.0,848879900 +169,1,4.0,1234228717 +169,60,1.5,1234227391 +169,262,3.5,1234228429 +169,274,2.0,1234227686 +169,502,3.5,1234227478 +169,527,5.0,1234228124 +169,780,5.0,1234228422 +169,838,3.5,1234228513 +169,914,3.5,1234228764 +169,1021,3.0,1234227487 +169,1197,4.0,1234228105 +169,1270,3.5,1234228754 +169,2059,4.0,1234227516 +169,2346,1.0,1234227572 +169,2422,3.5,1234227474 +169,2424,4.0,1234228215 +169,2571,5.0,1234228070 +169,2572,4.0,1234227791 +169,2762,4.5,1234228613 +169,2962,3.0,1234228370 +169,3114,3.5,1234228773 +169,3594,3.5,1234227692 +169,3791,2.5,1234227497 +169,3793,5.0,1234228796 +169,4016,4.0,1234228306 +169,4069,2.0,1234227463 +169,4306,5.0,1234228634 +169,4886,5.0,1234228604 +169,4896,3.5,1234228309 +169,4963,5.0,1234228703 +169,4993,5.0,1234228062 +169,4995,3.5,1234228640 +169,5103,4.5,1234228737 +169,5418,5.0,1234228624 +169,5816,3.5,1234228295 +169,5903,4.0,1234228827 +169,5952,5.0,1234228530 +169,5989,4.5,1234228679 +169,6333,5.0,1234228677 +169,6377,4.5,1234228584 +169,6378,5.0,1234228759 +169,6539,5.0,1234228608 +169,6593,4.5,1234228236 +169,6881,1.0,1234227698 +169,7139,3.5,1234227565 +169,7143,4.5,1234228728 +169,7153,5.0,1234228064 +169,7163,5.0,1234228200 +169,7444,3.5,1234227812 +169,8131,5.0,1234228470 +169,8360,5.0,1234228302 +169,8368,3.0,1234228925 +169,8373,2.5,1234227650 +169,8636,4.0,1234228789 +169,8643,3.0,1234228162 +169,8644,4.5,1234228488 +169,8665,5.0,1234228667 +169,8808,3.0,1234228178 +169,8961,4.5,1234228586 +169,8970,5.0,1234228592 +169,8982,3.5,1234228391 +169,26198,3.5,1234228341 +169,27808,3.0,1234227608 +169,31225,5.0,1234228749 +169,32587,4.0,1234228835 +169,33166,5.0,1234228978 +169,33794,5.0,1234228540 +169,34332,4.0,1234228501 +169,34405,5.0,1234228611 +169,36525,3.0,1234228242 +169,37475,4.5,1234228411 +169,40815,3.0,1234228944 +169,40819,5.0,1234228974 +169,42732,2.0,1234228185 +169,43936,4.0,1234227822 +169,44191,5.0,1234228823 +169,44665,4.5,1234228629 +169,45499,5.0,1234228476 +169,46578,2.5,1234229002 +169,47099,5.0,1234228254 +169,47610,5.0,1234228652 +169,48516,4.5,1234228857 +169,48774,5.0,1234228994 +169,48780,5.0,1234228867 +169,48982,4.5,1234228692 +169,49278,3.5,1234228981 +169,49530,5.0,1234228905 +169,50872,5.0,1234228589 +169,51935,5.0,1234228300 +169,52458,3.5,1234228417 +169,52722,4.5,1234228224 +169,53121,5.0,1234228245 +169,53123,3.0,1234228913 +169,53972,5.0,1234228427 +169,54001,3.5,1234228263 +169,54259,5.0,1234228383 +169,54286,4.0,1234228570 +169,54736,5.0,1234228757 +169,55290,4.5,1234227677 +169,56152,5.0,1234228437 +169,56174,4.5,1234227525 +169,56949,4.0,1234228168 +169,58299,5.0,1234228443 +169,58559,5.0,1234227999 +169,58803,5.0,1234227839 +169,59784,5.0,1234228650 +169,60069,3.5,1234228849 +169,60126,4.0,1234228440 +169,61729,4.0,1234228373 +169,63515,4.5,1234228843 +169,63859,5.0,1234227768 +169,64249,3.5,1234228257 +169,64957,3.5,1234228939 +170,29,2.5,1220532219 +170,524,2.5,1220532237 +170,616,2.0,1220532233 +170,849,1.0,1220532210 +170,1093,2.0,1220532230 +170,1240,3.0,1263219169 +170,1270,1.0,1263219174 +170,1272,3.0,1220532208 +170,1299,3.5,1220532234 +170,1373,4.0,1220532238 +170,1527,2.0,1263219159 +170,1682,3.0,1263219164 +170,1805,4.5,1220532240 +170,1962,1.5,1220532200 +170,2020,3.0,1220532223 +170,2078,2.0,1220532202 +170,2144,3.0,1220532233 +170,2355,2.5,1263219154 +170,2723,2.5,1220532222 +170,2881,2.5,1220532231 +170,3107,1.5,1220532229 +170,3174,3.0,1220532245 +170,3510,2.0,1220532233 +170,3702,3.0,1220532228 +170,3703,3.0,1220532205 +170,5952,3.0,1263219135 +171,16,5.0,950556329 +171,47,4.0,950996333 +171,110,5.0,950556269 +171,111,5.0,950556231 +171,223,5.0,950556680 +171,296,5.0,950996299 +171,555,5.0,950996381 +171,608,5.0,950996299 +171,785,5.0,950556788 +171,1034,5.0,950996358 +171,1089,5.0,950996299 +171,1093,3.0,950556231 +171,1179,3.0,950996333 +171,1198,5.0,950556329 +171,1213,5.0,950996299 +171,1466,4.0,950996299 +171,1500,4.0,950996381 +171,1513,4.0,950556889 +171,1729,5.0,950996333 +171,1732,4.0,950996358 +171,1747,3.0,950556329 +171,1805,3.0,950996381 +171,2231,4.0,950996408 +171,2268,4.0,950996408 +171,2301,4.0,950556329 +171,2336,5.0,950556723 +171,2355,4.0,950556652 +171,2395,5.0,950556889 +171,2396,5.0,950556911 +171,2541,4.0,950556680 +171,2598,3.0,950556889 +171,2599,5.0,950556705 +171,2683,3.0,950556611 +171,2686,4.0,951774844 +171,2688,2.0,951139528 +171,2694,4.0,950556652 +171,2699,4.0,950556611 +171,2702,4.0,950556911 +171,2707,4.0,950556611 +171,2710,2.0,950556652 +171,2716,3.0,950556751 +171,2724,4.0,950556889 +171,2734,4.0,950556821 +171,2770,4.0,950556652 +171,2858,5.0,950556611 +171,2881,3.0,950556705 +171,2987,3.0,950556960 +171,3039,3.0,950556231 +172,17,4.0,843290928 +172,32,3.0,843290818 +172,34,3.0,843290717 +172,50,5.0,843290785 +172,107,5.0,843291455 +172,141,3.0,843291407 +172,150,4.0,843290451 +172,296,5.0,843290451 +172,300,4.0,843290752 +172,318,4.0,843290567 +172,356,3.0,843290566 +172,364,3.0,843290717 +172,377,3.0,843290752 +172,457,4.0,843290534 +172,480,3.0,843290645 +172,509,4.0,843290928 +172,527,4.0,843290844 +172,539,3.0,843290844 +172,586,4.0,843290786 +172,588,3.0,843290496 +172,590,3.0,843290451 +172,592,3.0,843290451 +172,663,5.0,843291455 +172,806,5.0,843291455 +173,1,4.0,875357598 +173,6,5.0,875357288 +173,32,4.0,875356677 +173,40,4.0,875356897 +173,62,4.0,875460345 +173,100,4.0,876821498 +173,107,3.0,875357448 +173,112,4.0,875460476 +173,260,5.0,875356589 +173,494,4.0,876821269 +173,605,5.0,876821382 +173,647,4.0,875357143 +173,653,3.0,876821405 +173,673,4.0,876821773 +173,708,3.0,876821338 +173,733,5.0,875356897 +173,736,4.0,876821462 +173,745,5.0,875356590 +173,762,3.0,876823420 +173,778,5.0,875356505 +173,780,4.0,876821249 +173,799,4.0,875356898 +173,804,4.0,876821747 +173,805,4.0,876821177 +173,832,4.0,875357143 +173,852,5.0,875357504 +173,999,3.0,876821773 +173,1003,3.0,876821498 +173,1047,4.0,875357598 +173,1073,4.0,876822636 +173,1210,4.0,875356506 +173,1367,4.0,875357504 +173,1485,3.0,875356096 +173,1517,4.0,876821366 +173,1542,5.0,876821338 +173,1552,4.0,876821250 +173,1562,3.0,876822114 +173,1569,5.0,875356677 +173,1580,4.0,875357289 +173,1591,3.0,876821028 +174,48,4.5,1109621256 +174,163,1.5,1109621187 +174,168,4.0,1109621240 +174,172,2.0,1109621197 +174,186,3.5,1109621215 +174,246,1.0,1109621190 +174,342,2.5,1109621247 +174,370,3.5,1109621206 +174,543,3.0,1109621260 +174,552,4.0,1109621268 +174,1094,2.0,1109621184 +174,1252,0.5,1109621175 +174,1376,4.5,1109621264 +174,1380,4.5,1109621244 +174,1639,4.0,1109621237 +174,2302,2.5,1109621251 +174,2699,3.5,1109621233 +174,3751,3.0,1109621170 +174,3897,4.0,1109621166 +174,5060,3.5,1109621201 +174,6534,3.0,1109623540 +175,1,4.0,1052837092 +175,47,4.0,1052884279 +175,48,3.0,1052884607 +175,73,4.0,1052884561 +175,95,4.0,1052836094 +175,107,4.0,1052884580 +175,199,4.0,1052883340 +175,260,5.0,1052836298 +175,261,4.0,1052836837 +175,262,5.0,1052836450 +175,276,2.0,1052836139 +175,296,5.0,1052836094 +175,308,3.0,1052884351 +175,364,4.0,1052884561 +175,480,4.0,1052884652 +175,588,3.0,1052884328 +175,595,4.0,1052884561 +175,647,3.0,1052835782 +175,783,3.0,1052884580 +175,919,4.0,1052837107 +175,1022,4.0,1052884387 +175,1029,4.0,1052835824 +175,1097,4.0,1052884090 +175,1196,5.0,1052836299 +175,1197,4.0,1052884057 +175,1198,4.0,1052836981 +175,1207,4.0,1052883110 +175,1210,5.0,1052836299 +175,1211,5.0,1052883365 +175,1242,4.0,1052837129 +175,1260,4.0,1052883957 +175,1265,3.0,1052884237 +175,1270,3.0,1052835731 +175,1291,4.0,1052884115 +175,1348,3.0,1052883909 +175,1416,4.0,1052884607 +175,1479,3.0,1052835996 +175,1487,3.0,1052884607 +175,1527,4.0,1052884668 +175,1537,4.0,1052837118 +175,1562,2.0,1052836139 +175,1580,4.0,1052884652 +175,1584,4.0,1052884668 +175,1653,4.0,1052835698 +175,1688,4.0,1052884561 +175,1704,5.0,1052884216 +175,1721,3.0,1052883663 +175,1784,4.0,1052884252 +175,1961,4.0,1052884134 +175,1968,4.0,1052884134 +175,2010,4.0,1052883909 +175,2028,1.0,1052835797 +175,2059,4.0,1052836094 +175,2077,4.0,1052884101 +175,2083,4.0,1052884561 +175,2084,4.0,1052884580 +175,2089,4.0,1052836112 +175,2092,2.0,1052884607 +175,2115,4.0,1052884171 +175,2125,4.0,1052884387 +175,2248,4.0,1052884134 +175,2291,3.0,1052835757 +175,2324,4.0,1052837138 +175,2394,4.0,1052884580 +175,2424,2.0,1052835824 +175,2542,4.0,1052884306 +175,2571,5.0,1052837064 +175,2628,3.0,1052836299 +175,2791,4.0,1052884134 +175,2858,4.0,1052837064 +175,2907,3.0,1052835680 +175,2918,4.0,1052884090 +175,2953,2.0,1052836058 +175,2959,5.0,1052836746 +175,3114,4.0,1052884243 +175,3159,4.0,1052884370 +175,3160,4.0,1052883399 +175,3350,4.0,1052836024 +175,3565,3.0,1052883579 +175,3668,2.0,1052835996 +175,3844,4.0,1052883399 +175,3910,5.0,1052835893 +175,3948,2.0,1052883487 +175,3977,2.0,1052883562 +175,3996,3.0,1052836544 +175,4016,5.0,1052836491 +175,4018,3.0,1052836125 +175,4025,3.0,1052883600 +175,4054,4.0,1052836665 +175,4161,4.0,1052883579 +175,4226,4.0,1052836233 +175,4246,2.0,1052836656 +175,4306,4.0,1052836491 +175,4308,5.0,1052836601 +175,4447,4.0,1052883522 +175,4459,5.0,1052883264 +175,4519,4.0,1052835712 +175,4700,4.0,1052883635 +175,4823,4.0,1052883635 +175,4896,4.0,1052836491 +175,4963,4.0,1052836734 +175,4993,5.0,1052836265 +175,5103,4.0,1052836151 +175,5299,4.0,1052836656 +175,5349,4.0,1052836544 +175,5378,2.0,1052836299 +175,5444,5.0,1052836491 +175,5460,4.0,1052883600 +175,5524,4.0,1052836558 +175,5577,4.0,1052883446 +175,5679,2.0,1052884713 +175,5810,4.0,1052884516 +175,5812,5.0,1052836346 +175,5816,4.0,1052836491 +175,5839,4.0,1052884893 +175,5840,4.0,1052884865 +175,5882,4.0,1052836544 +175,5943,4.0,1052883648 +175,5952,5.0,1052836265 +175,5957,3.0,1052883635 +175,5989,4.0,1052883861 +175,5991,3.0,1052836408 +175,6006,1.0,1052883562 +175,6157,3.0,1052836572 +175,6323,4.0,1052884734 +176,1,2.0,1340720798 +176,2,3.0,1341047637 +176,19,2.0,1340915742 +176,34,2.0,1341001737 +176,39,1.0,1341002026 +176,48,3.0,1341050021 +176,253,2.0,1340720267 +176,260,4.0,1340714702 +176,296,4.0,1368312442 +176,337,2.5,1341051741 +176,344,2.0,1340915739 +176,364,3.0,1341048908 +176,480,2.5,1340915680 +176,541,3.0,1364721985 +176,551,2.5,1340717480 +176,588,3.5,1341001015 +176,593,4.0,1340714712 +176,595,4.0,1341001312 +176,596,0.5,1341001883 +176,648,2.5,1340916038 +176,709,2.5,1340713490 +176,783,3.5,1341049379 +176,1022,2.0,1341048898 +176,1028,4.0,1340913845 +176,1035,3.0,1340913798 +176,1196,4.5,1340714717 +176,1198,3.0,1340720756 +176,1210,5.0,1340715454 +176,1232,0.5,1340715213 +176,1246,3.5,1340715420 +176,1259,2.0,1340715553 +176,1291,3.0,1340720595 +176,1380,3.0,1341050757 +176,1381,1.5,1340721359 +176,1391,2.0,1341047743 +176,1485,3.0,1341047497 +176,1517,1.5,1341001785 +176,1527,4.0,1340715371 +176,1566,3.5,1340713303 +176,1580,2.5,1340720372 +176,1682,3.0,1340715465 +176,1721,2.0,1341000961 +176,1760,0.5,1340721274 +176,1907,3.5,1341048915 +176,1921,3.0,1364722231 +176,1923,1.0,1341002141 +176,1947,2.5,1341056101 +176,2018,2.0,1341050051 +176,2054,1.5,1341047061 +176,2078,2.0,1341050029 +176,2080,3.0,1341049365 +176,2081,2.0,1341048783 +176,2087,2.0,1341050036 +176,2096,2.0,1341048925 +176,2115,3.0,1340720823 +176,2571,4.5,1340714691 +176,2617,1.5,1341002882 +176,2628,4.0,1340914514 +176,2671,2.5,1342857564 +176,2683,1.0,1341001087 +176,2700,1.0,1341002755 +176,2701,1.5,1340713142 +176,2706,1.5,1341001492 +176,2716,2.5,1340720739 +176,2987,3.5,1340912716 +176,2997,2.0,1340902346 +176,3000,4.5,1340715628 +176,3034,2.0,1340713347 +176,3054,1.0,1340721399 +176,3355,4.0,1340713421 +176,3408,3.5,1341002809 +176,3752,0.5,1340713193 +176,3785,0.5,1340721192 +176,3825,2.5,1340747831 +176,3948,0.5,1341002119 +176,3988,2.0,1343335492 +176,3996,4.0,1340715471 +176,3997,1.0,1340713554 +176,4246,3.5,1340914843 +176,4306,3.5,1340916569 +176,4308,4.0,1341050244 +176,4310,3.0,1340913211 +176,4367,2.0,1340721222 +176,4383,2.0,1364722317 +176,4446,1.0,1340713233 +176,4447,3.5,1340914405 +176,4700,1.0,1340914730 +176,4720,3.5,1340715834 +176,4816,0.5,1341002155 +176,4896,3.0,1340715346 +176,4963,4.0,1340715408 +176,4973,3.5,1340714662 +176,4993,4.5,1340714789 +176,5064,2.5,1340716670 +176,5072,0.5,1340713734 +176,5128,2.0,1343335570 +176,5218,3.0,1340918054 +176,5349,3.0,1340715341 +176,5378,4.0,1341001419 +176,5445,3.5,1378384744 +176,5502,3.0,1341047860 +176,5618,4.0,1340716921 +176,5690,3.0,1340713498 +176,5816,3.0,1341002040 +176,5903,3.5,1340917181 +176,5952,5.0,1340714904 +176,5971,4.0,1340717474 +176,5989,3.0,1340715530 +176,6016,4.0,1377799393 +176,6283,3.0,1340720444 +176,6287,1.5,1341003081 +176,6350,4.0,1340719768 +176,6365,3.5,1340917301 +176,6378,3.5,1340716737 +176,6539,4.0,1340715375 +176,6541,2.0,1340721386 +176,6754,2.5,1340720299 +176,6794,0.5,1340747921 +176,6874,3.5,1340715623 +176,6934,2.5,1340917347 +176,7022,1.5,1340916972 +176,7090,4.5,1340715365 +176,7099,4.0,1340719701 +176,7143,4.5,1340715325 +176,7147,4.0,1340715415 +176,7153,5.0,1340714791 +176,7438,3.5,1340715612 +176,7458,2.5,1341055462 +176,7649,3.5,1340713901 +176,8360,3.5,1341056045 +176,8368,3.5,1340715337 +176,8622,3.5,1341001212 +176,8957,0.5,1340721882 +176,8969,3.5,1340914846 +176,8970,3.5,1345915332 +176,8972,3.0,1341055400 +176,8981,1.5,1340746374 +176,8983,4.0,1340716647 +176,26662,3.5,1340715128 +176,26776,4.0,1340713725 +176,27660,3.5,1340720451 +176,27689,1.0,1364722311 +176,27815,4.0,1341055663 +176,27850,3.0,1340748665 +176,30793,2.5,1340717676 +176,30816,3.5,1340914509 +176,31410,4.0,1340911312 +176,31658,5.0,1340716841 +176,33004,3.5,1343335486 +176,33493,3.5,1340916558 +176,33794,2.5,1340720656 +176,36401,2.0,1343335392 +176,36529,3.5,1340913567 +176,37830,4.0,1341002201 +176,38061,2.5,1340811802 +176,40597,2.0,1341047338 +176,40815,3.0,1340715333 +176,41566,2.5,1340748142 +176,41571,3.0,1340720952 +176,43419,2.0,1342949753 +176,44191,3.5,1340715546 +176,44195,4.0,1340748200 +176,44665,4.0,1340716274 +176,44849,3.5,1340917675 +176,45447,3.0,1343335399 +176,45720,2.0,1340914687 +176,45722,3.0,1340916181 +176,45880,2.0,1344347678 +176,45950,3.5,1340748640 +176,46976,4.0,1340748088 +176,47610,4.0,1345577132 +176,47999,4.0,1340748485 +176,48043,4.5,1340716497 +176,48738,4.0,1364721926 +176,48997,3.5,1340913756 +176,49649,2.0,1343335247 +176,50068,5.0,1340715275 +176,51662,3.0,1340747499 +176,52579,3.5,1340714267 +176,53125,3.5,1340916173 +176,53894,2.5,1340748506 +176,54259,3.0,1340716832 +176,54999,3.5,1340747539 +176,55167,3.5,1341002428 +176,55721,2.5,1341056232 +176,55820,3.0,1340913712 +176,56152,3.0,1340915519 +176,56171,3.0,1343335280 +176,56367,3.5,1345237994 +176,56757,4.0,1340717629 +176,56949,2.5,1340912864 +176,58559,3.0,1340714650 +176,59333,2.0,1340912969 +176,59615,3.0,1341056136 +176,60069,4.5,1340715076 +176,60397,3.5,1340914801 +176,62849,3.5,1368312386 +176,63082,4.0,1345667861 +176,63276,3.5,1340916711 +176,63853,3.0,1343333689 +176,63992,1.0,1340720312 +176,66198,2.5,1340747587 +176,66203,2.5,1347306212 +176,66317,3.0,1340720957 +176,66808,1.0,1368307751 +176,68073,3.0,1340918200 +176,68157,4.0,1340715172 +176,69275,1.5,1344167211 +176,69640,3.5,1340916241 +176,69757,3.0,1340914244 +176,70183,4.0,1340914570 +176,71282,4.0,1340748467 +176,72737,3.5,1343333718 +176,73017,2.5,1341047285 +176,73319,3.0,1340915442 +176,74458,4.0,1340913552 +176,77201,2.0,1366545291 +176,79132,4.0,1340714683 +176,79293,2.5,1364722469 +176,79702,4.0,1341001585 +176,80463,2.5,1340715537 +176,80864,3.0,1341001174 +176,81591,4.0,1340715600 +176,81845,5.0,1340714943 +176,81847,3.0,1366545246 +176,82167,2.5,1340914719 +176,82202,2.5,1378384504 +176,82463,3.0,1343334260 +176,86142,3.0,1340916679 +176,86190,2.5,1340911697 +176,86835,2.0,1368307787 +176,86882,5.0,1340715390 +176,88129,4.0,1340715435 +176,89102,2.0,1340916326 +176,89745,3.0,1340714765 +176,89761,3.5,1340911985 +176,89804,3.5,1345237982 +176,90405,2.5,1340714469 +176,90866,4.0,1340714108 +176,91500,2.0,1340917043 +176,91529,3.5,1343334119 +176,92259,5.0,1340714592 +176,93805,3.5,1340912551 +176,94478,2.5,1340717602 +176,94480,1.0,1340915855 +176,94864,3.0,1340720332 +176,95875,3.5,1366545262 +176,96079,3.0,1378384538 +176,96737,3.0,1368307805 +176,97304,3.5,1378384885 +176,99114,4.0,1364721906 +176,99320,2.0,1368307727 +176,100556,3.5,1384107215 +176,101864,3.5,1377799692 +176,103253,3.0,1377799432 +176,104841,3.0,1384107175 +177,1,5.0,907515679 +177,2,5.0,907380055 +177,6,5.0,907380682 +177,10,4.0,907380744 +177,18,4.0,907380994 +177,22,4.0,907380781 +177,23,3.0,907380781 +177,32,4.0,907380000 +177,47,5.0,907380653 +177,50,5.0,907380653 +177,66,1.0,907380378 +177,70,4.0,907380745 +177,76,2.0,907380055 +177,89,4.0,907380994 +177,95,4.0,907380781 +177,107,3.0,907380964 +177,111,4.0,907380710 +177,150,5.0,907380653 +177,160,2.0,907380369 +177,161,4.0,907380781 +177,163,4.0,907380964 +177,164,4.0,907380964 +177,165,5.0,907380918 +177,170,4.0,907381025 +177,172,4.0,907380321 +177,173,3.0,907380056 +177,185,4.0,907380138 +177,196,3.0,907380056 +177,198,5.0,907380055 +177,200,4.0,907381306 +177,223,5.0,907516215 +177,225,3.0,907381025 +177,230,4.0,907380884 +177,240,3.0,907381064 +177,256,3.0,907380138 +177,258,2.0,907380138 +177,288,3.0,907381132 +177,292,4.0,907380820 +177,293,5.0,907380710 +177,316,4.0,907380138 +177,319,4.0,907380682 +177,327,3.0,907380138 +177,329,4.0,907380055 +177,332,4.0,907381178 +177,338,4.0,907380203 +177,349,4.0,907380710 +177,350,4.0,907380820 +177,353,4.0,907380745 +177,356,5.0,907515749 +177,376,4.0,907381132 +177,377,4.0,907380964 +177,379,3.0,907380203 +177,405,2.0,907380203 +177,407,2.0,907381096 +177,422,5.0,907381097 +177,423,5.0,907381178 +177,426,3.0,907380203 +177,435,4.0,907380203 +177,442,3.0,907380203 +177,454,4.0,907380884 +177,457,5.0,907380710 +177,474,5.0,907380781 +177,480,5.0,907379910 +177,481,4.0,907380884 +177,482,4.0,907380884 +177,494,3.0,907381132 +177,497,5.0,907515749 +177,504,3.0,907380321 +177,512,4.0,907380246 +177,519,2.0,907380369 +177,540,3.0,907381218 +177,541,5.0,907380504 +177,546,3.0,907380138 +177,547,1.0,907381218 +177,587,4.0,907380820 +177,588,4.0,907516093 +177,589,4.0,907379910 +177,593,5.0,907380682 +177,600,4.0,907381025 +177,608,5.0,907380653 +177,610,5.0,907380567 +177,611,3.0,907380369 +177,628,5.0,907380849 +177,662,5.0,907380994 +177,691,4.0,907515750 +177,733,4.0,907380745 +177,736,4.0,907381097 +177,741,4.0,907380000 +177,748,3.0,907380246 +177,780,5.0,907380000 +177,786,4.0,907380849 +177,788,4.0,907380246 +177,798,4.0,907381064 +177,832,4.0,907380820 +177,839,3.0,907381218 +177,849,3.0,907380138 +177,861,4.0,907380745 +177,880,2.0,907380369 +177,882,3.0,907380964 +177,891,3.0,907381264 +177,1003,3.0,907380964 +177,1028,4.0,907515785 +177,1037,3.0,907380203 +177,1047,4.0,907380918 +177,1055,3.0,907381243 +177,1080,5.0,907516215 +177,1089,5.0,907380653 +177,1092,5.0,907380918 +177,1097,5.0,907380544 +177,1127,5.0,907380544 +177,1129,3.0,907380544 +177,1136,5.0,907515447 +177,1148,5.0,907515679 +177,1196,5.0,907380504 +177,1197,5.0,907515749 +177,1199,5.0,907380504 +177,1200,5.0,907380504 +177,1210,5.0,907379910 +177,1215,5.0,907380000 +177,1235,5.0,907515785 +177,1240,5.0,907380504 +177,1259,5.0,907516215 +177,1270,5.0,907380504 +177,1274,5.0,907380544 +177,1276,5.0,907516215 +177,1304,5.0,907516215 +177,1306,3.0,907380253 +177,1320,3.0,907380321 +177,1343,3.0,907380964 +177,1356,4.0,907380055 +177,1370,5.0,907380918 +177,1372,5.0,907380055 +177,1373,3.0,907380567 +177,1374,5.0,907380504 +177,1375,4.0,907380544 +177,1376,5.0,907380544 +177,1391,4.0,907380321 +177,1396,4.0,907379910 +177,1407,5.0,907380820 +177,1422,3.0,907381025 +177,1427,3.0,907381243 +177,1438,4.0,907381132 +177,1459,1.0,907380918 +177,1479,5.0,907380849 +177,1488,2.0,907381064 +177,1499,1.0,907381218 +177,1515,4.0,907381025 +177,1518,3.0,907380918 +177,1527,5.0,907380001 +177,1544,4.0,907380321 +177,1552,5.0,907380820 +177,1573,4.0,907379910 +177,1580,4.0,907379910 +177,1584,5.0,907379910 +177,1590,1.0,907380246 +177,1591,3.0,907380138 +177,1597,4.0,907380884 +177,1598,5.0,907381132 +177,1603,2.0,907380246 +177,1608,4.0,907380884 +177,1610,5.0,907380653 +177,1615,4.0,907380884 +177,1616,4.0,907380849 +177,1617,5.0,907380682 +177,1620,4.0,907380849 +177,1625,5.0,907380745 +177,1644,5.0,907381064 +177,1645,5.0,907380745 +177,1647,3.0,907381064 +177,1653,5.0,907379910 +177,1658,5.0,907380781 +177,1661,5.0,907381096 +177,1676,5.0,907380138 +177,1686,3.0,907380884 +177,1687,2.0,907381064 +177,1690,3.0,907380203 +177,1717,5.0,907380849 +177,1722,5.0,907380820 +177,1732,4.0,907380820 +177,1748,3.0,907380000 +177,1750,2.0,907380203 +177,1752,4.0,907380994 +177,1754,4.0,907380781 +177,1769,4.0,907380781 +177,1779,2.0,907380246 +177,1784,4.0,907515785 +177,1792,5.0,907380994 +177,1805,4.0,907380781 +177,1831,5.0,907380246 +177,1862,4.0,907380321 +177,1876,5.0,907380055 +177,1882,3.0,907380321 +177,1909,5.0,907380000 +177,1917,3.0,907379242 +177,1920,4.0,907379459 +177,1923,4.0,907379242 +177,1968,5.0,907516093 +177,2000,5.0,907515679 +177,2006,4.0,907379242 +177,2011,4.0,907380544 +177,2012,4.0,907380000 +177,2015,3.0,907516093 +177,2021,5.0,907380567 +177,2026,5.0,907379474 +177,2028,4.0,907379242 +177,2046,4.0,907380000 +177,2053,3.0,907380435 +177,2054,3.0,907380567 +177,2093,3.0,907380544 +177,2094,4.0,907380321 +177,2107,3.0,907379359 +177,2109,5.0,907516735 +177,2113,3.0,907381312 +177,2125,4.0,907379359 +177,2133,5.0,907516215 +177,2141,4.0,907516735 +177,2144,5.0,907516215 +177,2148,5.0,907516735 +177,2150,4.0,907515679 +177,2167,5.0,907379306 +177,2273,5.0,907379242 +177,2288,4.0,907380504 +177,2311,3.0,907380544 +177,4006,4.0,907380567 +178,1,4.0,1437425800 +178,110,3.5,1437422963 +178,111,4.5,1437424662 +178,260,5.0,1437422811 +178,293,3.5,1437422890 +178,296,5.0,1437422805 +178,318,5.0,1437422760 +178,356,3.0,1437422880 +178,364,4.0,1437428147 +178,551,3.5,1437428256 +178,555,3.0,1437428180 +178,593,4.0,1437422779 +178,595,3.5,1437428338 +178,608,4.0,1437422835 +178,750,3.0,1437422818 +178,778,4.5,1437424747 +178,858,4.0,1437422766 +178,899,3.0,1437424656 +178,919,3.0,1437424660 +178,920,4.5,1437428160 +178,951,2.5,1437422833 +178,1028,3.0,1437428244 +178,1036,3.0,1437424756 +178,1073,4.0,1437428247 +178,1080,4.0,1437424665 +178,1097,2.5,1437428108 +178,1120,4.0,1437428349 +178,1193,3.0,1437422776 +178,1196,5.0,1437422810 +178,1197,3.5,1437422824 +178,1198,5.0,1437422795 +178,1208,4.0,1437424637 +178,1210,5.0,1437424676 +178,1213,3.0,1437422775 +178,1220,5.0,1437425933 +178,1221,4.5,1437422769 +178,1228,5.0,1437425892 +178,1246,3.5,1437424537 +178,1247,3.5,1437424542 +178,1258,3.0,1437424658 +178,1259,5.0,1437422879 +178,1262,5.0,1437422856 +178,1265,4.0,1437425799 +178,1266,3.5,1437424710 +178,1269,2.0,1437424514 +178,1278,4.0,1437424720 +178,1282,4.0,1437428214 +178,1288,4.5,1437425824 +178,1302,2.5,1437428325 +178,1348,3.5,1437428224 +178,1387,3.5,1437428238 +178,1580,4.0,1437428274 +178,1682,4.0,1437425818 +178,1704,3.5,1437422848 +178,1873,2.5,1437428133 +178,1954,4.0,1437428303 +178,1968,5.0,1437425895 +178,2000,3.5,1437428222 +178,2028,4.0,1437422865 +178,2078,4.0,1437428249 +178,2096,3.5,1437428391 +178,2268,3.0,1437425881 +178,2329,4.0,1437422821 +178,2571,3.0,1437422802 +178,2716,3.0,1437428178 +178,2804,1.5,1437424699 +178,2858,4.0,1437422814 +178,2959,4.5,1437422799 +178,2997,5.0,1437425827 +178,3034,4.0,1437428211 +178,3052,4.0,1437428241 +178,3061,3.5,1437425865 +178,3089,2.5,1437424594 +178,3168,3.5,1437428230 +178,3210,3.0,1437428385 +178,3275,3.0,1437424701 +178,3408,1.5,1437428200 +178,3471,3.0,1437428141 +178,3552,2.5,1437428389 +178,3578,3.0,1437424533 +178,3629,3.5,1437424506 +178,3671,4.0,1437427720 +178,3949,3.5,1437424649 +178,4034,2.5,1437425897 +178,4262,2.5,1437425829 +178,4878,2.5,1437424604 +178,4979,5.0,1437428297 +178,5577,2.5,1437428346 +178,5669,2.0,1437425794 +178,6979,3.5,1437428144 +178,7022,2.5,1437425868 +178,7158,4.0,1437428088 +178,7386,3.0,1437428365 +178,7451,3.0,1437428328 +178,8874,3.0,1437425811 +178,8966,3.5,1437428168 +178,27773,2.5,1437422884 +178,30707,3.0,1437424588 +178,30812,4.0,1437428226 +178,34405,3.5,1437422956 +178,44195,4.0,1437424646 +178,45728,3.0,1437428336 +178,46578,3.0,1437424520 +178,47999,4.0,1437425934 +178,48394,5.0,1437422842 +178,51662,3.0,1437428208 +178,52435,3.0,1437427724 +178,54503,4.5,1437428171 +178,55442,3.0,1437422958 +178,56367,3.0,1437424530 +178,60684,3.5,1437428189 +178,61024,3.5,1437428372 +178,61323,4.0,1437428340 +178,63131,2.5,1437428278 +178,67267,3.5,1437428153 +178,69481,5.0,1437424744 +178,74458,2.5,1437424590 +178,74948,4.0,1437428126 +178,77455,2.0,1437424624 +178,77800,2.0,1437425808 +178,78574,3.0,1437424758 +178,81591,1.5,1437424684 +178,91658,3.0,1437424582 +178,93840,4.0,1437428254 +178,97921,2.0,1437424600 +178,99114,3.5,1437422854 +178,106487,2.5,1437425871 +178,106782,3.5,1437425856 +178,112552,4.5,1437422861 +178,112623,3.5,1437428138 +179,1,5.0,1436669947 +179,1197,5.0,1436670015 +179,1270,3.0,1436669953 +179,1682,3.0,1436670038 +179,3882,3.0,1436670351 +179,4226,4.0,1436670107 +179,4246,3.0,1436670156 +179,4306,2.5,1436670105 +179,4447,3.5,1436670189 +179,4896,5.0,1436670127 +179,5816,5.0,1436670137 +179,6377,4.0,1436670112 +179,6539,5.0,1436670114 +179,7361,3.5,1436670118 +179,7451,4.5,1436670359 +179,8368,5.0,1436670143 +179,8641,3.5,1436670323 +179,8644,0.5,1436670174 +179,8665,2.5,1436670145 +179,8972,4.0,1436670344 +179,34162,4.0,1436670214 +179,45722,5.0,1436670180 +179,46578,4.5,1436670048 +179,46976,3.5,1436670234 +179,49272,2.0,1436670152 +179,53125,5.0,1436670469 +179,55280,5.0,1436670452 +179,56367,3.5,1436670163 +179,64957,5.0,1436670353 +179,67734,3.5,1436670449 +179,69757,4.0,1436670228 +179,78499,5.0,1436670034 +179,80463,4.0,1436670311 +179,80693,4.0,1436670477 +179,81591,5.0,1436670309 +179,86377,4.0,1436670050 +179,86882,5.0,1436670432 +179,91529,2.0,1436670023 +180,24,4.0,945446829 +180,223,3.0,945446726 +180,527,4.0,945446508 +180,589,4.0,945446677 +180,700,3.0,945446980 +180,1073,5.0,945446652 +180,1127,4.0,945446618 +180,1193,4.0,945446483 +180,1197,4.0,945446462 +180,1225,4.0,945446901 +180,1240,4.0,945446677 +180,1265,5.0,945446581 +180,2013,3.0,945446829 +180,2145,3.0,945446462 +180,2474,3.0,945446462 +180,2490,4.0,945446804 +180,2502,2.0,945446804 +180,2541,3.0,945446740 +180,2581,4.0,945446804 +180,2699,2.0,945446708 +180,2700,2.0,945446845 +180,2710,1.0,945446726 +180,2716,4.0,945446754 +180,2987,4.0,945446861 +181,296,5.0,1154542932 +181,380,5.0,1154543016 +181,435,3.5,1154542675 +181,555,5.0,1154543020 +181,733,4.0,1154542861 +181,1089,5.0,1154542951 +181,1213,5.0,1154543059 +181,1396,4.5,1154542739 +181,1552,3.0,1154542755 +181,1597,4.0,1154542821 +181,1625,3.5,1154542746 +181,1729,4.0,1154542953 +181,2003,3.5,1154542815 +181,2302,5.0,1154542725 +181,2329,5.0,1154542765 +181,2353,4.0,1154542729 +181,2640,4.0,1154542691 +181,2700,4.0,1154542686 +181,3052,4.0,1154542736 +181,3753,4.0,1154542777 +181,4011,5.0,1154542915 +181,5418,4.5,1154542805 +181,5445,4.0,1154542682 +181,6874,5.0,1154542945 +181,7153,5.0,1154542709 +181,7438,5.0,1154542948 +181,8528,4.0,1154543028 +182,2,5.0,845744191 +182,3,4.0,845745032 +182,4,3.0,845745077 +182,5,4.0,845744805 +182,7,5.0,845745009 +182,8,5.0,845745710 +182,9,3.0,845746347 +182,11,5.0,845744166 +182,13,3.0,845745917 +182,17,3.0,845744218 +182,21,3.0,845744047 +182,25,1.0,845744316 +182,34,5.0,845743924 +182,36,3.0,845744347 +182,48,3.0,845744430 +182,60,4.0,845745009 +182,61,3.0,845746546 +182,62,5.0,845744284 +182,79,3.0,845745516 +182,95,3.0,845744218 +182,105,4.0,845744430 +182,110,5.0,845743855 +182,126,3.0,845745742 +182,141,4.0,845744250 +182,144,3.0,845745457 +182,146,5.0,845745929 +182,150,5.0,845743682 +182,165,3.0,845743728 +182,168,5.0,845744316 +182,169,3.0,845744976 +182,174,3.0,845745373 +182,185,4.0,845743855 +182,186,3.0,845746300 +182,195,4.0,845745289 +182,201,4.0,845746347 +182,207,5.0,845744884 +182,208,4.0,845743824 +182,224,3.0,845744545 +182,225,4.0,845744047 +182,231,1.0,845743763 +182,236,3.0,845744218 +182,237,3.0,845744603 +182,238,4.0,845745792 +182,243,4.0,845745917 +182,261,4.0,845744316 +182,262,3.0,845746126 +182,265,3.0,845744347 +182,266,3.0,845744141 +182,270,5.0,845745671 +182,271,3.0,845745685 +182,276,5.0,845744721 +182,277,5.0,845744575 +182,282,3.0,845744191 +182,292,4.0,845743824 +182,300,3.0,845743924 +182,313,4.0,845746347 +182,316,3.0,845743763 +182,317,4.0,845744141 +182,337,2.0,845744250 +182,339,5.0,845743824 +182,342,3.0,845744805 +182,343,3.0,845745671 +182,344,1.0,845743728 +182,349,4.0,845743763 +182,350,4.0,845744166 +182,351,5.0,845746421 +182,355,3.0,845744575 +182,356,5.0,845743798 +182,357,3.0,845744141 +182,360,3.0,845745613 +182,361,5.0,845745091 +182,362,5.0,845744842 +182,364,4.0,845743889 +182,368,4.0,845744347 +182,370,3.0,845744545 +182,377,4.0,845743889 +182,380,4.0,845743682 +182,381,3.0,845744842 +182,383,4.0,845745050 +182,410,3.0,845743924 +182,432,5.0,845744166 +182,440,4.0,845744141 +182,454,4.0,845743854 +182,455,3.0,845744864 +182,457,4.0,845743763 +182,480,5.0,845743798 +182,485,3.0,845744545 +182,489,3.0,845745440 +182,494,5.0,845744976 +182,500,5.0,845743924 +182,502,3.0,845745289 +182,508,3.0,845744250 +182,524,5.0,845745289 +182,529,3.0,845744864 +182,531,4.0,845745032 +182,539,5.0,845744047 +182,546,3.0,845745077 +182,553,3.0,845744218 +182,569,3.0,845745757 +182,587,5.0,845744047 +182,589,4.0,845743889 +182,590,5.0,845743682 +182,593,3.0,845743728 +182,594,5.0,845744575 +182,595,5.0,845746325 +182,597,5.0,845746090 +182,609,3.0,845745770 +182,616,5.0,845744884 +182,637,4.0,845745583 +182,647,5.0,845745642 +182,687,3.0,845746928 +182,688,4.0,845745373 +182,707,3.0,845745742 +182,708,4.0,845745077 +182,719,4.0,845746113 +182,733,5.0,845746076 +182,736,5.0,845744266 +182,765,5.0,845745957 +182,780,5.0,845744316 +182,801,3.0,845746773 +182,802,5.0,845745486 +182,818,2.0,845745856 +182,830,5.0,845746376 +182,835,3.0,845746155 +182,838,4.0,845745874 +182,852,4.0,845745991 +182,986,5.0,845746376 +182,1042,5.0,845746421 +182,1049,5.0,845746793 +182,1073,2.0,845745804 +182,1084,3.0,845745838 +183,32,5.0,983096875 +183,34,4.0,983097092 +183,36,4.0,983096307 +183,47,5.0,983096400 +183,50,5.0,983096683 +183,260,3.0,983096240 +183,296,5.0,983096739 +183,318,5.0,983096713 +183,345,4.0,983096267 +183,527,4.0,983096660 +183,593,4.0,983096752 +183,608,5.0,983096777 +183,924,4.0,983096954 +183,1046,5.0,983097135 +183,1089,5.0,983096739 +183,1111,4.0,983097040 +183,1136,4.0,983097028 +183,1193,4.0,983096713 +183,1196,2.0,983096892 +183,1199,4.0,983096764 +183,1208,4.0,983096820 +183,1247,3.0,983096695 +183,1354,5.0,983096660 +183,1617,3.0,983096806 +183,1673,5.0,983097183 +183,1721,4.0,983096280 +183,1952,3.0,983096843 +183,1961,5.0,983096307 +183,2360,5.0,983097228 +183,2542,5.0,983097061 +183,2692,5.0,983096914 +183,2762,4.0,983096752 +183,2858,4.0,983096713 +183,2959,5.0,983096992 +183,3556,4.0,983096400 +183,3646,1.0,983096472 +183,3751,3.0,983096370 +183,3821,1.0,983096431 +183,3994,3.0,983096541 +183,4011,4.0,983096517 +183,4027,3.0,983096505 +184,1,5.0,833524830 +184,161,3.0,833524819 +184,175,4.0,833525185 +184,180,3.0,833525271 +184,223,5.0,833524934 +184,231,3.0,833524803 +184,246,3.0,833524952 +184,256,2.0,833524925 +184,280,4.0,833524992 +184,288,4.0,833524839 +184,293,5.0,833524894 +184,296,5.0,833524768 +184,300,4.0,833524830 +184,318,5.0,833524803 +184,334,2.0,833525355 +184,337,4.0,833524877 +184,349,4.0,833524782 +184,356,3.0,833525056 +184,357,4.0,833525142 +184,364,5.0,833524911 +184,371,3.0,833525154 +184,377,4.0,833525123 +184,380,3.0,833524768 +184,413,3.0,833525000 +184,415,2.0,833525223 +184,431,4.0,833524992 +184,434,3.0,833524818 +184,440,4.0,833524952 +184,454,3.0,833524911 +184,457,4.0,833524857 +184,471,5.0,833525100 +184,474,5.0,833525204 +184,480,3.0,833525100 +184,485,2.0,833525330 +184,500,4.0,833525160 +184,508,3.0,833525233 +184,527,4.0,833525132 +184,555,4.0,833524925 +184,586,3.0,833525249 +184,588,4.0,833524782 +184,589,5.0,833525116 +184,593,4.0,833524848 +184,595,4.0,833524803 +184,597,3.0,833525212 +184,720,5.0,833525124 +185,1,5.0,1003523268 +185,2,4.0,1003523847 +185,24,4.0,1019787401 +185,29,5.0,1003523544 +185,48,3.0,1019787132 +185,50,5.0,1019787636 +185,110,4.0,1003523170 +185,150,3.0,1003524274 +185,172,2.0,1019787488 +185,223,4.0,1003524442 +185,239,2.0,1003523380 +185,256,2.0,1019787467 +185,260,3.0,1003523818 +185,296,3.0,1003524153 +185,316,4.0,1003523646 +185,317,4.0,1003523891 +185,318,5.0,1003524104 +185,329,4.0,1019787409 +185,353,5.0,1003525185 +185,356,4.0,1003524536 +185,364,3.0,1003523305 +185,367,4.0,1003523829 +185,418,3.0,1003523129 +185,440,3.0,1003524606 +185,450,4.0,1003524659 +185,527,5.0,1003524122 +185,543,4.0,1003524715 +185,551,4.0,1019787212 +185,588,4.0,1003523305 +185,589,4.0,1003523544 +185,593,4.0,1003524134 +185,594,3.0,1003523305 +185,595,5.0,1019787081 +185,596,3.0,1003523305 +185,610,4.0,1003523380 +185,653,4.0,1003523863 +185,661,4.0,1003523338 +185,709,3.0,1003523419 +185,720,4.0,1003523251 +185,741,5.0,1003523359 +185,745,5.0,1003524299 +185,750,4.0,1003523527 +185,778,4.0,1003524182 +185,780,4.0,1003523689 +185,783,3.0,1003523359 +185,788,2.0,1003523752 +185,910,3.0,1003524426 +185,914,4.0,1019787199 +185,919,3.0,1019787199 +185,924,3.0,1003523597 +185,1009,4.0,1003523863 +185,1022,3.0,1003523323 +185,1025,3.0,1003523380 +185,1028,3.0,1003524590 +185,1029,3.0,1019787095 +185,1032,3.0,1019787081 +185,1033,3.0,1003523404 +185,1035,4.0,1019787199 +185,1037,3.0,1019787475 +185,1073,4.0,1003523848 +185,1079,4.0,1003524508 +185,1080,4.0,1003524358 +185,1097,4.0,1003523818 +185,1104,2.0,1003524153 +185,1136,4.0,1003524397 +185,1148,5.0,1003523251 +185,1171,4.0,1003524482 +185,1175,4.0,1003523527 +185,1193,5.0,1003524122 +185,1196,3.0,1003523115 +185,1197,5.0,1003524311 +185,1199,4.0,1003523544 +185,1206,4.0,1003523576 +185,1210,3.0,1003523140 +185,1214,4.0,1003523527 +185,1215,4.0,1003523576 +185,1220,3.0,1003524548 +185,1223,4.0,1003523268 +185,1225,4.0,1003524134 +185,1242,4.0,1003524182 +185,1253,4.0,1003523544 +185,1265,3.0,1003524369 +185,1270,4.0,1003523556 +185,1274,4.0,1003523544 +185,1278,5.0,1003524407 +185,1282,3.0,1019787081 +185,1288,2.0,1003524190 +185,1301,4.0,1019787270 +185,1307,3.0,1003524299 +185,1320,3.0,1003523715 +185,1356,4.0,1003523611 +185,1376,4.0,1019787261 +185,1411,5.0,1003523195 +185,1441,5.0,1003524722 +185,1500,4.0,1003524378 +185,1527,5.0,1003523585 +185,1544,2.0,1003523741 +185,1566,3.0,1003523338 +185,1580,4.0,1003523611 +185,1584,3.0,1003523576 +185,1590,2.0,1003523766 +185,1641,4.0,1003524558 +185,1688,3.0,1003523404 +185,1690,3.0,1003523716 +185,1702,3.0,1003523930 +185,1734,4.0,1003523129 +185,1747,3.0,1003524699 +185,1748,3.0,1003523597 +185,1784,2.0,1003524616 +185,1883,4.0,1003523129 +185,1907,4.0,1003523268 +185,1916,4.0,1003524650 +185,1917,5.0,1003523698 +185,1921,3.0,1003523622 +185,1947,4.0,1019787180 +185,1967,3.0,1003523195 +185,2011,4.0,1003523646 +185,2012,4.0,1003523679 +185,2018,3.0,1019787081 +185,2021,3.0,1003523646 +185,2028,3.0,1003523195 +185,2033,3.0,1003523404 +185,2054,3.0,1003523767 +185,2078,3.0,1003523305 +185,2080,3.0,1003523305 +185,2081,3.0,1003524637 +185,2085,2.0,1003523380 +185,2087,3.0,1019787081 +185,2089,4.0,1019787117 +185,2090,4.0,1003523404 +185,2091,3.0,1003523788 +185,2094,3.0,1003523727 +185,2096,3.0,1003523305 +185,2105,3.0,1003523848 +185,2128,2.0,1003524415 +185,2137,3.0,1019787081 +185,2139,3.0,1003523323 +185,2141,3.0,1019787107 +185,2142,3.0,1019787132 +185,2161,4.0,1003523830 +185,2193,3.0,1003523848 +185,2253,5.0,1003523930 +185,2294,3.0,1019787081 +185,2324,5.0,1003524170 +185,2355,5.0,1003524558 +185,2359,3.0,1003524637 +185,2396,4.0,1003524369 +185,2450,2.0,1019787502 +185,2495,4.0,1003523323 +185,2565,3.0,1019787180 +185,2571,5.0,1003523544 +185,2599,3.0,1003524397 +185,2622,3.0,1003523891 +185,2628,3.0,1003523669 +185,2657,5.0,1003523658 +185,2686,4.0,1003524170 +185,2692,5.0,1003525148 +185,2700,5.0,1003523323 +185,2716,3.0,1003524508 +185,2747,3.0,1003524753 +185,2761,4.0,1003523251 +185,2797,4.0,1019787754 +185,2804,2.0,1003524144 +185,2858,5.0,1003524311 +185,2959,5.0,1003524134 +185,2987,3.0,1003523305 +185,2997,4.0,1003524311 +185,3000,5.0,1003523251 +185,3034,4.0,1003523359 +185,3052,4.0,1003525163 +185,3054,3.0,1019787143 +185,3095,3.0,1003524249 +185,3114,4.0,1003523154 +185,3159,4.0,1003523251 +185,3175,3.0,1019787278 +185,3255,3.0,1003524691 +185,3429,4.0,1003524358 +185,3438,3.0,1003523891 +185,3448,5.0,1003524637 +185,3477,4.0,1003524674 +185,3479,3.0,1003523830 +185,3489,3.0,1003523863 +185,3545,2.0,1019787199 +185,3549,3.0,1019787199 +185,3556,4.0,1003524768 +185,3751,5.0,1003523268 +185,3863,3.0,1003523634 +185,3910,2.0,1019787577 +185,3911,4.0,1003524497 +185,4016,3.0,1003523268 +185,4121,3.0,1003523658 +185,4275,2.0,1003523777 +185,4306,4.0,1019787052 +185,4321,3.0,1003524743 +185,4366,3.0,1003523848 +185,4446,4.0,1003523359 +185,4571,4.0,1003523818 +185,4655,3.0,1003524096 +185,4734,5.0,1003524650 +185,4886,5.0,1019787052 +185,4896,5.0,1019787607 +185,4941,2.0,1019787456 +185,4993,5.0,1019787591 +185,5159,3.0,1019787132 +186,31,3.0,1276205768 +186,555,4.0,1276205691 +186,836,1.5,1295458775 +186,924,5.0,1295459361 +186,1385,2.5,1295458745 +186,1921,5.0,1295459249 +186,2021,5.0,1295458665 +186,2136,1.0,1276205530 +186,2329,4.0,1295459628 +186,2571,5.0,1295459287 +186,2605,2.0,1276205797 +186,2863,3.5,1295458819 +186,2959,4.5,1295459572 +186,3504,5.0,1295458792 +186,3578,4.0,1295460096 +186,3617,1.0,1295458718 +186,3959,4.0,1276205558 +186,3996,3.5,1295460021 +186,4019,5.0,1276206397 +186,4226,5.0,1295459225 +186,4238,2.5,1276205604 +186,4306,4.0,1295460103 +186,4639,1.5,1276205429 +186,4873,4.5,1295459170 +186,4993,5.0,1295459393 +186,5618,4.5,1295459618 +186,5952,4.5,1295459397 +186,6365,4.5,1295459290 +186,6539,2.0,1295460254 +186,6934,4.5,1295459291 +186,7002,4.5,1295459191 +186,7153,4.5,1295459398 +186,7361,3.0,1295459509 +186,8783,5.0,1295459270 +186,27660,4.5,1295460283 +186,31658,4.5,1295459978 +186,46976,2.0,1276205381 +186,58559,3.0,1295459570 +186,60069,3.0,1295459523 +186,68237,4.5,1295459335 +186,72998,5.0,1295459318 +186,79132,5.0,1295459201 +187,1,4.0,1228072644 +187,2,3.0,1237164142 +187,16,4.0,1230360891 +187,39,4.5,1228083642 +187,104,4.0,1241225121 +187,141,4.0,1233516836 +187,147,4.0,1241388228 +187,162,4.0,1241931376 +187,175,4.0,1233459044 +187,180,4.5,1233448960 +187,208,2.5,1241388856 +187,223,4.5,1230362008 +187,231,3.5,1228072708 +187,239,3.0,1228071856 +187,272,2.0,1241225088 +187,290,3.0,1241225489 +187,296,4.5,1228072628 +187,317,4.0,1230417239 +187,318,5.0,1228072636 +187,329,1.0,1228072734 +187,337,5.0,1241224512 +187,344,3.0,1228072670 +187,356,4.5,1228072373 +187,362,3.0,1237164136 +187,364,4.5,1228072687 +187,367,3.5,1228072720 +187,372,3.0,1233449807 +187,410,4.0,1230417209 +187,427,2.0,1233450000 +187,441,3.5,1233448869 +187,448,3.0,1233449697 +187,454,4.0,1228072772 +187,480,3.5,1228072634 +187,500,3.5,1228072703 +187,524,4.0,1233459078 +187,551,4.0,1230360992 +187,562,4.5,1230361549 +187,575,2.5,1237164197 +187,586,3.5,1228073327 +187,588,4.5,1228072659 +187,593,4.0,1228072631 +187,594,4.0,1233458835 +187,595,4.5,1228072685 +187,596,3.5,1233458937 +187,597,4.0,1228072697 +187,609,3.5,1237164040 +187,628,4.0,1230361515 +187,661,2.5,1237164098 +187,705,2.5,1233449634 +187,724,4.0,1228071645 +187,780,4.0,1228072650 +187,783,3.5,1230417334 +187,805,4.5,1230417313 +187,837,2.5,1237164243 +187,919,4.5,1230361966 +187,926,4.0,1228072218 +187,953,3.0,1230361942 +187,1005,5.0,1233517052 +187,1006,3.5,1233449627 +187,1015,3.5,1237164038 +187,1022,4.0,1228073424 +187,1027,4.0,1228073419 +187,1028,4.5,1241416598 +187,1032,3.5,1233458848 +187,1047,3.0,1233449906 +187,1059,3.5,1237160042 +187,1060,4.0,1237159148 +187,1073,4.0,1228072744 +187,1088,4.0,1241388285 +187,1089,4.0,1228072453 +187,1097,3.5,1228072722 +187,1193,5.0,1228072435 +187,1197,3.5,1228072739 +187,1203,3.5,1228072190 +187,1208,3.0,1233458483 +187,1246,5.0,1233449323 +187,1285,4.5,1230361560 +187,1345,4.0,1228071668 +187,1356,0.5,1228083634 +187,1366,4.0,1233458974 +187,1372,0.5,1230417324 +187,1380,3.5,1237163986 +187,1407,3.5,1230417235 +187,1485,3.5,1230417226 +187,1502,2.0,1233449963 +187,1513,4.0,1228071671 +187,1517,3.5,1228073319 +187,1580,4.0,1228072725 +187,1639,4.0,1230360619 +187,1653,3.0,1241225002 +187,1672,3.5,1233459023 +187,1673,5.0,1230360554 +187,1682,4.5,1233458808 +187,1704,5.0,1228072924 +187,1717,3.5,1241388444 +187,1721,4.0,1228072729 +187,1729,4.0,1241415970 +187,1732,5.0,1230361502 +187,1734,4.0,1230360984 +187,1735,4.0,1237163990 +187,1884,4.0,1233448784 +187,1885,2.5,1241225070 +187,1895,4.5,1241388065 +187,1917,3.5,1233516622 +187,1923,3.5,1230417187 +187,1954,0.5,1230417281 +187,1968,5.0,1230361003 +187,1997,4.0,1233448875 +187,2000,2.5,1230417250 +187,2005,4.0,1230416453 +187,2018,3.5,1228071707 +187,2042,5.0,1233517050 +187,2078,3.5,1233448914 +187,2080,2.5,1233458858 +187,2081,4.5,1233448953 +187,2082,5.0,1233517049 +187,2084,3.5,1237164292 +187,2085,5.0,1241388033 +187,2096,3.5,1241415892 +187,2124,4.0,1228073393 +187,2132,4.0,1233449418 +187,2136,2.5,1228071867 +187,2146,3.0,1233449374 +187,2181,4.0,1241416624 +187,2231,3.5,1230360941 +187,2269,3.0,1241931401 +187,2316,4.0,1228071918 +187,2321,4.0,1230417276 +187,2329,5.0,1228072229 +187,2356,4.0,1233450018 +187,2396,4.5,1233458944 +187,2485,4.0,1237164621 +187,2502,4.0,1233448238 +187,2541,4.5,1228073388 +187,2571,1.0,1228072412 +187,2572,4.0,1237162862 +187,2580,4.0,1228071638 +187,2581,4.0,1237164285 +187,2599,4.5,1228073080 +187,2628,2.5,1233515950 +187,2683,3.5,1230417185 +187,2706,5.0,1233516195 +187,2710,2.5,1233516579 +187,2712,4.0,1233449823 +187,2759,4.0,1241388272 +187,2762,5.0,1228072467 +187,2803,3.5,1228071763 +187,2804,4.5,1228072860 +187,2858,5.0,1228072224 +187,2997,2.5,1230360779 +187,3005,3.5,1241388583 +187,3101,3.5,1233449591 +187,3108,3.0,1233449947 +187,3114,4.0,1228083629 +187,3176,5.0,1228073376 +187,3186,4.0,1228071787 +187,3210,5.0,1230361226 +187,3251,4.0,1241416050 +187,3252,4.0,1233448853 +187,3253,4.0,1230417315 +187,3258,4.0,1228071839 +187,3273,3.0,1241388448 +187,3275,4.0,1228072333 +187,3408,4.0,1233516872 +187,3476,4.0,1233449981 +187,3489,4.0,1228073371 +187,3535,3.5,1233459015 +187,3556,3.0,1233447535 +187,3608,0.5,1233459107 +187,3707,3.0,1233449767 +187,3793,3.0,1230417193 +187,3897,5.0,1230361495 +187,3916,4.0,1237159283 +187,3949,4.0,1228072451 +187,4308,2.5,1228073359 +187,4389,4.0,1228072544 +187,4409,3.0,1259371717 +187,4447,4.0,1237164175 +187,4450,4.0,1259371744 +187,4649,2.0,1233450060 +187,4700,3.5,1237164365 +187,4720,5.0,1228073355 +187,4734,4.5,1241225112 +187,4878,5.0,1228072919 +187,4963,4.0,1233515933 +187,4993,1.0,1228072764 +187,4995,4.5,1230361971 +187,5060,1.0,1230417287 +187,5065,4.0,1228071909 +187,5103,4.5,1237159350 +187,5379,4.0,1230360795 +187,5418,3.5,1233516041 +187,5419,1.5,1241388829 +187,5444,4.5,1233459092 +187,5459,3.0,1241388385 +187,5481,2.5,1228083856 +187,5505,4.5,1233448284 +187,5617,5.0,1230362022 +187,5668,4.0,1241388524 +187,5669,5.0,1228083856 +187,5785,4.0,1237164092 +187,5952,1.0,1228073314 +187,5989,4.0,1230417302 +187,5991,3.5,1228073156 +187,6040,2.5,1241388598 +187,6155,4.5,1237164054 +187,6187,5.0,1233458909 +187,6188,4.5,1241225062 +187,6207,4.0,1233449667 +187,6242,2.5,1237159334 +187,6323,4.0,1230416413 +187,6333,3.0,1228083851 +187,6365,0.5,1233515977 +187,6377,4.0,1230360827 +187,6436,4.5,1233447527 +187,6493,2.0,1241388736 +187,6502,3.0,1230416982 +187,6659,3.0,1241388708 +187,6711,3.5,1230361184 +187,6743,3.5,1241415977 +187,6874,3.0,1230360839 +187,6890,3.0,1237159319 +187,6930,3.5,1241225260 +187,6934,0.5,1233516626 +187,6942,4.5,1233458861 +187,6952,3.5,1237163983 +187,6987,3.0,1228072912 +187,7038,3.5,1233447509 +187,7045,3.5,1237161336 +187,7147,3.5,1230362003 +187,7153,1.0,1233515881 +187,7254,4.5,1237159957 +187,7265,4.5,1230361260 +187,7285,4.5,1228073122 +187,7317,3.5,1237163844 +187,7361,5.0,1230416336 +187,7438,3.0,1230360841 +187,7444,4.0,1237162920 +187,7451,5.0,1237162301 +187,7541,3.0,1237162916 +187,7624,4.0,1233449116 +187,8129,2.0,1233449745 +187,8366,5.0,1230360583 +187,8368,3.5,1233516741 +187,8531,3.5,1241388511 +187,8622,4.0,1230360598 +187,8636,3.5,1228073344 +187,8784,5.0,1230361955 +187,8807,4.0,1233449891 +187,8857,3.0,1233449875 +187,8874,4.0,1228073339 +187,8917,3.0,1237162835 +187,8947,2.0,1241388789 +187,8961,3.5,1233515791 +187,8970,3.5,1230361472 +187,8981,5.0,1230361237 +187,26116,3.5,1230361622 +187,26133,2.5,1230361340 +187,26422,5.0,1237164000 +187,26614,3.5,1228072339 +187,27020,3.5,1233449779 +187,27674,3.5,1230360607 +187,27706,3.0,1233459123 +187,27904,3.0,1230416400 +187,30707,4.0,1230361412 +187,31114,4.0,1259371560 +187,32587,4.0,1230361439 +187,33669,4.5,1237164640 +187,34162,5.0,1241416061 +187,34164,4.0,1233449549 +187,34532,3.5,1241388495 +187,35836,5.0,1230360635 +187,39446,1.5,1241388807 +187,40629,3.0,1230362102 +187,40815,3.5,1233516607 +187,40826,4.5,1237164389 +187,41566,3.5,1233516986 +187,42004,5.0,1230361206 +187,43177,1.0,1259371730 +187,43919,2.0,1241388761 +187,44191,5.0,1230361545 +187,44709,4.5,1233447888 +187,44761,2.0,1241225435 +187,45728,5.0,1237159237 +187,45950,3.5,1230361530 +187,46578,5.0,1228071723 +187,47423,3.0,1230361558 +187,47518,4.0,1237162935 +187,48322,4.5,1241225054 +187,48385,4.0,1233516564 +187,48516,4.5,1230361313 +187,49280,5.0,1228072108 +187,51174,4.0,1233450038 +187,51540,4.5,1233448746 +187,52245,2.5,1241388565 +187,52281,3.5,1230361482 +187,52973,5.0,1233458791 +187,53318,4.5,1233447922 +187,53519,3.5,1230416949 +187,54001,3.5,1228071900 +187,54004,3.5,1233449569 +187,54272,3.0,1233516732 +187,54503,4.5,1230361202 +187,55280,3.0,1230360964 +187,56169,3.5,1237163378 +187,56339,5.0,1230361720 +187,56367,4.0,1230361139 +187,56949,4.0,1241388210 +187,58559,4.0,1230360691 +187,59022,3.0,1233449888 +187,59315,4.0,1233515839 +187,59418,5.0,1233449519 +187,60037,2.5,1241388628 +187,60074,4.0,1237164008 +187,60487,2.5,1230361868 +187,61024,4.0,1230416904 +187,61075,3.0,1259371668 +187,61401,3.0,1233516540 +187,62434,4.0,1237161154 +187,62437,4.0,1237161148 +187,63131,5.0,1230360498 +187,63479,3.5,1259371684 +187,67087,4.0,1259371855 +187,68135,4.5,1241225462 +188,2,4.0,841064145 +188,10,4.0,841063568 +188,22,3.0,841064493 +188,24,4.0,841064046 +188,32,4.0,841063691 +188,34,4.0,841063623 +188,39,3.0,841063654 +188,47,3.0,841063606 +188,48,3.0,841063983 +188,60,4.0,841064073 +188,62,3.0,841063743 +188,93,3.0,841064610 +188,110,5.0,841063586 +188,112,4.0,841064029 +188,150,5.0,841063490 +188,153,3.0,841063511 +188,158,3.0,841064649 +188,160,3.0,841063654 +188,165,2.0,841063510 +188,173,3.0,841064943 +188,196,3.0,841064894 +188,208,2.0,841063568 +188,217,4.0,841064569 +188,231,3.0,841063527 +188,253,3.0,841063568 +188,262,3.0,841064705 +188,277,3.0,841063901 +188,282,4.0,841063954 +188,288,4.0,841063585 +188,292,3.0,841063550 +188,296,5.0,841063491 +188,312,4.0,841064943 +188,316,2.0,841063527 +188,317,3.0,841063637 +188,318,5.0,841063550 +188,329,3.0,841063550 +188,339,3.0,841063569 +188,344,4.0,841063511 +188,349,4.0,841063510 +188,350,3.0,841064111 +188,356,5.0,841063568 +188,357,4.0,841063974 +188,362,3.0,841064171 +188,364,4.0,841063606 +188,367,3.0,841063623 +188,368,4.0,841064018 +188,374,3.0,841064862 +188,377,3.0,841063623 +188,380,5.0,841063491 +188,410,3.0,841063606 +188,420,3.0,841063637 +188,435,3.0,841063691 +188,454,3.0,841063586 +188,457,3.0,841063527 +188,475,4.0,841063812 +188,480,4.0,841063586 +188,485,4.0,841064541 +188,500,5.0,841063637 +188,508,5.0,841063783 +188,509,3.0,841064089 +188,519,3.0,841064871 +188,527,5.0,841063691 +188,539,3.0,841063691 +188,543,4.0,841064722 +188,551,3.0,841064601 +188,575,3.0,841064758 +188,586,4.0,841063654 +188,587,5.0,841063654 +188,588,4.0,841063510 +188,589,5.0,841063606 +188,590,4.0,841063489 +188,592,3.0,841063489 +188,593,4.0,841063527 +188,594,5.0,841063996 +188,595,4.0,841063527 +188,596,5.0,841064111 +188,597,4.0,841063654 +188,648,3.0,841064202 +188,653,3.0,841064171 +188,661,4.0,841064618 +188,671,3.0,841064493 +188,733,4.0,841063996 +188,736,4.0,841064029 +188,780,3.0,841063954 +188,801,3.0,841064551 +188,802,4.0,841063783 +188,867,3.0,841064894 +188,1009,3.0,841065073 +188,1012,4.0,841065032 +188,1013,3.0,841065046 +188,1017,3.0,841065032 +188,1019,3.0,841065015 +188,1022,4.0,841065064 +188,1023,3.0,841065015 +188,1024,3.0,841065015 +188,1025,3.0,841065046 +188,1028,4.0,841065032 +188,1029,5.0,841064992 +188,1030,3.0,841065046 +188,1033,3.0,841065064 +189,145,2.0,968095049 +189,239,1.0,968095225 +189,253,2.0,968094991 +189,288,5.0,968092489 +189,299,4.0,968093274 +189,370,2.0,968095164 +189,434,3.0,968095141 +189,481,4.0,968095049 +189,541,5.0,968092650 +189,608,5.0,968094734 +189,673,1.0,968095189 +189,736,2.0,968095141 +189,737,1.0,968095281 +189,780,3.0,968095112 +189,785,4.0,968093150 +189,835,3.0,968094971 +189,913,3.0,968093184 +189,968,3.0,968093248 +189,1028,1.0,968094971 +189,1090,5.0,968094780 +189,1127,4.0,968092747 +189,1173,5.0,968092524 +189,1206,5.0,968092439 +189,1208,5.0,968092701 +189,1216,2.0,968094876 +189,1230,5.0,968094734 +189,1244,5.0,968094780 +189,1270,4.0,968092318 +189,1296,1.0,968094876 +189,1354,2.0,968094946 +189,1358,2.0,968092650 +189,1374,1.0,968094946 +189,1387,4.0,968094780 +189,1513,2.0,968093299 +189,1623,3.0,968093403 +189,1625,5.0,968094780 +189,1639,4.0,968094876 +189,1732,3.0,968094971 +189,1911,2.0,968092938 +189,1959,1.0,968093248 +189,2000,3.0,968094946 +189,2001,4.0,968095015 +189,2147,1.0,968092883 +189,2167,5.0,968092650 +189,2269,3.0,968092318 +189,2290,2.0,968095015 +189,2302,2.0,968094991 +189,2316,1.0,968092318 +189,2318,5.0,968093085 +189,2333,2.0,968093085 +189,2336,3.0,968092976 +189,2340,1.0,968094971 +189,2355,1.0,968092883 +189,2369,1.0,968092913 +189,2392,1.0,968093150 +189,2428,3.0,968092976 +189,2433,2.0,968092883 +189,2490,3.0,968093248 +189,2502,5.0,968093248 +189,2530,1.0,968095112 +189,2531,1.0,968095189 +189,2532,1.0,968095113 +189,2533,1.0,968095049 +189,2541,2.0,968092913 +189,2568,2.0,968093210 +189,2571,5.0,968092611 +189,2574,1.0,968093248 +189,2580,5.0,968093085 +189,2581,2.0,968093248 +189,2587,1.0,968095281 +189,2598,3.0,968093274 +189,2605,2.0,968092976 +189,2668,1.0,968095164 +189,2672,2.0,968093385 +189,2676,3.0,968093150 +189,2683,5.0,968092795 +189,2686,3.0,968093299 +189,2688,3.0,968093049 +189,2692,5.0,968093299 +189,2699,4.0,968092795 +189,2700,1.0,968093332 +189,2701,1.0,968093403 +189,2702,3.0,968093358 +189,2706,5.0,968092747 +189,2707,3.0,968092795 +189,2710,4.0,968092827 +189,2712,5.0,968092976 +189,2713,1.0,968093150 +189,2716,3.0,968093049 +189,2719,1.0,968093085 +189,2720,1.0,968093150 +189,2722,3.0,968092913 +189,2724,2.0,968093299 +189,2734,4.0,968093210 +189,2759,1.0,968092913 +189,2762,5.0,968093332 +189,2763,3.0,968093385 +189,2770,2.0,968092827 +189,2771,1.0,968092883 +189,2772,1.0,968092913 +189,2805,3.0,968093211 +189,2806,2.0,968093358 +189,2826,2.0,968092747 +189,2827,1.0,968092795 +189,2840,3.0,968093358 +189,2841,4.0,968093358 +189,2858,4.0,968092747 +189,2861,1.0,968093049 +189,2881,1.0,968092938 +189,2882,1.0,968093150 +189,2888,1.0,968092938 +189,2959,3.0,968092976 +189,2976,5.0,968092883 +189,2987,2.0,968093385 +189,2995,1.0,968093085 +189,2997,4.0,968092795 +189,3001,2.0,968092318 +189,3004,1.0,968092795 +189,3005,2.0,968092827 +189,3016,3.0,968092913 +189,3081,4.0,968093332 +189,3113,2.0,968092976 +189,3146,1.0,968094657 +189,3147,2.0,968094603 +189,3148,4.0,968094603 +189,3175,2.0,968093049 +189,3176,4.0,968093358 +189,3177,1.0,968094682 +189,3179,1.0,968094603 +189,3181,5.0,968094603 +189,3186,2.0,968094632 +189,3203,4.0,968092913 +189,3219,4.0,968093248 +189,3238,1.0,968092976 +189,3262,5.0,968092404 +189,3263,2.0,968095113 +189,3273,3.0,968093332 +189,3285,3.0,968092795 +189,3298,3.0,968092827 +189,3299,1.0,968094657 +189,3316,3.0,968094657 +189,3326,3.0,968094657 +189,3355,2.0,968094682 +189,3408,1.0,968092976 +189,3409,2.0,968093049 +189,3445,2.0,968095024 +189,3448,3.0,968092318 +189,3452,2.0,968094632 +189,3476,5.0,968092592 +189,3510,3.0,968093049 +189,3564,1.0,968093049 +189,3578,5.0,968093085 +189,3623,3.0,968093211 +189,3706,5.0,968092364 +189,3717,2.0,968093085 +189,3751,1.0,968093525 +189,3752,4.0,968093184 +189,3761,4.0,968095257 +189,3763,3.0,968094971 +189,3764,2.0,968095141 +189,3765,2.0,968095225 +189,3766,3.0,968095257 +189,3771,1.0,968094946 +189,3793,3.0,968093403 +189,3798,4.0,968093385 +189,3802,2.0,968095281 +189,3807,1.0,968094946 +189,3809,3.0,968095015 +189,3810,1.0,968095049 +189,3836,3.0,968094902 +189,3841,2.0,968095189 +189,3844,2.0,968095113 +189,3863,5.0,968092386 +189,3865,2.0,968093525 +189,3868,4.0,968094876 +189,3869,3.0,968095141 +190,43,4.0,975695042 +190,223,4.0,975693787 +190,314,5.0,975695150 +190,342,4.0,975693159 +190,785,5.0,975694561 +190,1097,5.0,975693159 +190,1513,4.0,975695042 +190,2067,4.0,975693108 +190,2070,4.0,975693108 +190,2294,3.0,975693159 +190,2310,4.0,975694759 +190,2333,4.0,975694498 +190,2336,3.0,975694137 +190,2390,4.0,975694648 +190,2394,3.0,975694955 +190,2395,4.0,975695150 +190,2396,5.0,975695150 +190,2433,3.0,975693787 +190,2434,5.0,975694030 +190,2502,4.0,975694849 +190,2575,5.0,975694030 +190,2580,5.0,975694498 +190,2585,4.0,975694648 +190,2598,3.0,975695042 +190,2599,4.0,975694137 +190,2600,3.0,975695345 +190,2607,4.0,975694309 +190,2622,4.0,975694759 +190,2629,3.0,975694648 +190,2630,4.0,975693657 +190,2683,3.0,975693352 +190,2686,5.0,975695042 +190,2690,4.0,975694561 +190,2692,5.0,975695150 +190,2702,4.0,975695197 +190,2712,5.0,975694137 +190,2716,4.0,975694498 +190,2724,3.0,975695150 +190,2734,3.0,975694759 +190,2759,4.0,975694030 +190,2762,5.0,975695150 +190,2770,3.0,975693657 +190,2858,4.0,975693291 +190,2861,3.0,975694309 +190,2881,3.0,975694030 +190,2908,5.0,975693787 +190,2975,4.0,975693657 +190,2976,5.0,975693787 +190,2987,4.0,975695345 +190,2997,5.0,975693352 +190,3051,2.0,975693352 +190,3114,5.0,975695243 +190,3117,3.0,978110441 +190,3160,5.0,975694648 +190,3174,5.0,975694648 +190,3176,5.0,975695243 +190,3298,3.0,975693657 +190,3408,4.0,975694137 +190,3512,4.0,975695042 +190,4022,3.0,978110391 +191,10,2.0,839925608 +191,34,2.0,839925667 +191,47,3.0,839925667 +191,110,3.0,839925631 +191,150,4.0,839925515 +191,153,2.0,839925540 +191,161,4.0,839925587 +191,165,3.0,839925540 +191,185,3.0,839925608 +191,208,3.0,839925608 +191,231,2.0,839925563 +191,292,2.0,839925587 +191,296,5.0,839925515 +191,300,4.0,839925667 +191,318,5.0,839925587 +191,339,4.0,839925608 +191,344,1.0,839925540 +191,349,3.0,839925540 +191,356,4.0,839925631 +191,380,3.0,839925515 +191,434,2.0,839925587 +191,454,3.0,839925667 +191,457,4.0,839925587 +191,480,3.0,839925631 +191,588,2.0,839925540 +191,590,4.0,839925515 +191,592,2.0,839925515 +191,593,4.0,839925563 +191,595,2.0,839925563 +192,2,4.0,843634025 +192,19,3.0,843633899 +192,34,5.0,843633865 +192,39,3.0,843633926 +192,44,3.0,843634056 +192,47,3.0,843633842 +192,48,3.0,843634125 +192,62,5.0,843634148 +192,158,3.0,843634056 +192,160,3.0,843633946 +192,181,2.0,843634228 +192,185,3.0,843633784 +192,208,2.0,843633809 +192,231,4.0,843633696 +192,237,5.0,843634187 +192,261,3.0,843634056 +192,266,5.0,843633967 +192,277,4.0,843634148 +192,316,3.0,843633696 +192,318,5.0,843633747 +192,344,4.0,843633649 +192,349,4.0,843633649 +192,350,3.0,843633967 +192,355,2.0,843634211 +192,356,4.0,843633747 +192,362,4.0,843634310 +192,364,5.0,843633842 +192,367,3.0,843633842 +192,370,3.0,843634211 +192,374,2.0,843634385 +192,377,3.0,843633865 +192,380,3.0,843633612 +192,432,4.0,843633967 +192,434,3.0,843633747 +192,442,2.0,843634025 +192,454,3.0,843633842 +192,455,3.0,843634419 +192,457,4.0,843633696 +192,474,3.0,843634025 +192,480,4.0,843633784 +192,500,4.0,843633865 +192,508,4.0,843634078 +192,527,5.0,843633946 +192,539,3.0,843633926 +192,551,1.0,843634056 +192,586,5.0,843633899 +192,587,4.0,843633926 +192,588,4.0,843633649 +192,590,5.0,843633612 +192,592,3.0,843633612 +192,593,3.0,843633696 +192,594,5.0,843634166 +192,595,5.0,843633696 +192,597,2.0,843633926 +192,736,3.0,843634105 +193,1,4.0,971216031 +193,16,4.0,971217498 +193,105,4.0,971217587 +193,111,5.0,971215659 +193,277,4.0,971215478 +193,296,3.0,971215907 +193,318,4.0,971217748 +193,337,5.0,971217205 +193,356,4.0,971215478 +193,428,5.0,971217447 +193,527,5.0,971217447 +193,543,5.0,971216244 +193,593,4.0,971215542 +193,608,5.0,971215638 +193,858,5.0,971215542 +193,904,4.0,971216851 +193,957,4.0,971215907 +193,1179,4.0,971217769 +193,1188,4.0,971216056 +193,1196,3.0,971215428 +193,1197,3.0,971215449 +193,1203,3.0,971215624 +193,1220,5.0,971216680 +193,1221,5.0,971215701 +193,1225,5.0,971215907 +193,1240,4.0,971215478 +193,1247,5.0,971215849 +193,1250,4.0,971215659 +193,1252,3.0,971216851 +193,1265,4.0,971216007 +193,1270,4.0,971216703 +193,1394,3.0,971216596 +193,1517,5.0,971216337 +193,1641,5.0,971216217 +193,1680,5.0,971217748 +193,1693,5.0,971215542 +193,1747,4.0,971216170 +193,2109,4.0,971215449 +193,2145,4.0,971216703 +193,2155,4.0,971216097 +193,2289,3.0,971217336 +193,2291,4.0,971217447 +193,2294,4.0,971215478 +193,2302,4.0,971216077 +193,2359,5.0,971216187 +193,2396,4.0,971215982 +193,2436,4.0,971217648 +193,2539,5.0,971216187 +193,2683,5.0,971216337 +193,2690,4.0,971216097 +193,2791,4.0,971216680 +193,2858,4.0,971217498 +193,2997,5.0,971216097 +193,3039,5.0,971216680 +193,3063,5.0,971216432 +193,3108,5.0,971216981 +193,3114,3.0,971215982 +193,3148,4.0,971215875 +193,3174,4.0,971216402 +193,3179,4.0,971215478 +193,3210,3.0,971216680 +193,3418,5.0,971215624 +193,3543,3.0,971215849 +193,3552,5.0,971216579 +193,3809,5.0,971216115 +193,3968,5.0,971216361 +194,19,3.0,848098383 +194,32,4.0,848098405 +194,44,3.0,848098576 +194,95,3.0,848098479 +194,110,4.0,848098284 +194,150,4.0,848098173 +194,151,3.0,848098528 +194,158,3.0,848098576 +194,160,3.0,848098427 +194,165,4.0,848098205 +194,172,3.0,848098592 +194,173,3.0,848098445 +194,196,3.0,848098500 +194,204,4.0,848098555 +194,208,3.0,848098284 +194,225,4.0,848098405 +194,231,3.0,848098235 +194,253,3.0,848098310 +194,292,3.0,848098264 +194,296,3.0,848098173 +194,316,4.0,848098235 +194,317,3.0,848098427 +194,329,4.0,848098264 +194,339,4.0,848098310 +194,344,3.0,848098205 +194,349,4.0,848098235 +194,353,3.0,848098576 +194,356,5.0,848098235 +194,364,5.0,848098339 +194,367,4.0,848098339 +194,368,3.0,848098555 +194,377,3.0,848098339 +194,380,4.0,848098174 +194,420,3.0,848098405 +194,432,3.0,848098445 +194,434,4.0,848098264 +194,442,3.0,848098464 +194,454,3.0,848098310 +194,457,3.0,848098205 +194,480,3.0,848098264 +194,500,3.0,848098339 +194,527,5.0,848098383 +194,551,3.0,848098555 +194,587,3.0,848098362 +194,589,4.0,848098310 +194,590,4.0,848098173 +194,592,4.0,848098173 +194,597,3.0,848098362 +194,736,4.0,848098500 +194,780,4.0,848098528 +195,6,4.0,975417247 +195,25,3.0,977756074 +195,34,4.0,976288815 +195,39,3.0,976288703 +195,42,2.0,975419204 +195,60,2.0,975416589 +195,95,3.0,975418995 +195,104,1.0,976289312 +195,110,3.0,975417183 +195,111,2.0,977743492 +195,112,1.0,977724281 +195,150,3.0,977743614 +195,164,4.0,975416383 +195,165,1.0,975418855 +195,196,2.0,978700402 +195,208,1.0,975419204 +195,235,4.0,976288515 +195,246,2.0,977724593 +195,258,2.0,975416759 +195,260,5.0,975416496 +195,281,3.0,977755886 +195,288,3.0,975417426 +195,296,3.0,977723922 +195,303,2.0,975418810 +195,318,3.0,977725027 +195,330,1.0,976288108 +195,349,3.0,975418706 +195,356,2.0,976289373 +195,368,3.0,975418706 +195,377,3.0,975417396 +195,379,2.0,975419267 +195,380,3.0,975418616 +195,405,1.0,975419407 +195,420,1.0,975419174 +195,426,3.0,978700358 +195,443,2.0,977724768 +195,457,4.0,975417105 +195,471,3.0,976289176 +195,480,4.0,975417396 +195,485,2.0,975419174 +195,527,4.0,977725070 +195,531,3.0,977743659 +195,541,3.0,975416263 +195,587,2.0,976289373 +195,589,3.0,975416970 +195,590,4.0,975763379 +195,593,4.0,977725070 +195,595,3.0,975748393 +195,597,3.0,976289451 +195,608,4.0,977723884 +195,661,4.0,975763096 +195,722,4.0,977724634 +195,724,2.0,978700358 +195,736,2.0,975419080 +195,788,1.0,975416589 +195,858,5.0,975415157 +195,898,3.0,977723786 +195,899,3.0,978700526 +195,900,3.0,978700555 +195,905,5.0,976288064 +195,908,3.0,977743568 +195,909,2.0,976288256 +195,910,5.0,976287996 +195,912,5.0,977725295 +195,913,5.0,975416305 +195,915,3.0,976288882 +195,916,2.0,976288064 +195,919,4.0,977743531 +195,920,4.0,977754632 +195,921,2.0,976288703 +195,922,5.0,975416263 +195,923,5.0,977724925 +195,924,5.0,977750661 +195,930,4.0,978699871 +195,942,5.0,975416305 +195,943,3.0,977755609 +195,944,3.0,977755742 +195,945,3.0,976287942 +195,951,3.0,977723565 +195,952,2.0,975763311 +195,953,4.0,977755092 +195,954,4.0,977755609 +195,960,3.0,977755525 +195,969,4.0,975763311 +195,971,3.0,977754744 +195,973,4.0,977743706 +195,1012,3.0,977754812 +195,1019,4.0,975416496 +195,1035,3.0,978700625 +195,1036,1.0,975417065 +195,1073,3.0,975416496 +195,1077,4.0,976288931 +195,1080,3.0,976288189 +195,1081,3.0,976289149 +195,1084,4.0,977723994 +195,1085,4.0,975763311 +195,1090,3.0,977743706 +195,1093,4.0,978700656 +195,1096,2.0,977755782 +195,1097,3.0,975416496 +195,1101,2.0,975418661 +195,1103,3.0,977754744 +195,1104,4.0,977743568 +195,1125,1.0,976289451 +195,1129,1.0,975417321 +195,1136,3.0,976287996 +195,1179,4.0,975416383 +195,1189,3.0,977724593 +195,1193,4.0,977725295 +195,1196,4.0,975416836 +195,1197,3.0,976288064 +195,1198,3.0,975416836 +195,1200,4.0,975416970 +195,1201,3.0,975416922 +195,1207,4.0,977725105 +195,1208,4.0,977750746 +195,1210,5.0,975415188 +195,1213,3.0,977723922 +195,1214,5.0,975416922 +195,1217,4.0,977725339 +195,1220,5.0,975417183 +195,1221,5.0,975416836 +195,1222,4.0,975417065 +195,1225,4.0,977725105 +195,1226,3.0,976288931 +195,1228,2.0,977743531 +195,1230,4.0,976287942 +195,1231,3.0,977754695 +195,1233,5.0,975416836 +195,1234,4.0,976288108 +195,1235,3.0,976288143 +195,1240,3.0,975417022 +195,1242,2.0,975416922 +195,1244,4.0,976288064 +195,1247,4.0,977743492 +195,1250,4.0,977725105 +195,1252,5.0,975416263 +195,1253,4.0,977750831 +195,1254,4.0,975763217 +195,1256,3.0,976288064 +195,1259,2.0,976288779 +195,1260,3.0,977723884 +195,1262,4.0,975763217 +195,1263,3.0,977743659 +195,1265,2.0,976288515 +195,1267,3.0,975416263 +195,1269,4.0,976288649 +195,1270,3.0,976288228 +195,1272,4.0,977754744 +195,1275,2.0,975763348 +195,1276,5.0,976287942 +195,1278,5.0,976288624 +195,1281,4.0,976288703 +195,1282,5.0,975748393 +195,1284,5.0,975416383 +195,1287,5.0,975417105 +195,1291,3.0,975417065 +195,1292,2.0,976288189 +195,1293,4.0,977743659 +195,1302,3.0,977755058 +195,1304,5.0,975416922 +195,1307,3.0,976288703 +195,1320,3.0,975418888 +195,1339,4.0,975415133 +195,1370,1.0,975417321 +195,1372,2.0,975418706 +195,1374,3.0,975417247 +195,1375,3.0,975418661 +195,1376,4.0,975418616 +195,1380,3.0,978700656 +195,1387,4.0,975416922 +195,1391,3.0,975418855 +195,1393,3.0,977750746 +195,1394,4.0,976287942 +195,1395,2.0,976289485 +195,1517,4.0,976288846 +195,1552,2.0,975418810 +195,1583,2.0,975416759 +195,1586,1.0,975419080 +195,1608,3.0,975418810 +195,1610,4.0,975417247 +195,1641,2.0,976288992 +195,1690,3.0,975418810 +195,1702,2.0,975416664 +195,1747,3.0,976289064 +195,1772,4.0,978700726 +195,1827,4.0,976288815 +195,1831,1.0,975419245 +195,1884,3.0,976289402 +195,1918,1.0,975419174 +195,1923,4.0,976288931 +195,1929,3.0,977743706 +195,1935,3.0,977754632 +195,1938,4.0,977756127 +195,1944,3.0,977750706 +195,1946,3.0,977755525 +195,1947,3.0,978700555 +195,1950,2.0,977750706 +195,1951,4.0,978700625 +195,1953,3.0,975416970 +195,1954,1.0,975417247 +195,1955,3.0,977750615 +195,1957,1.0,977755569 +195,1958,4.0,976288815 +195,1961,5.0,975415133 +195,1962,3.0,977755609 +195,1964,2.0,977755058 +195,1965,2.0,976288779 +195,2000,1.0,976288931 +195,2001,1.0,975417350 +195,2002,1.0,975419021 +195,2004,1.0,978700358 +195,2013,3.0,975418810 +195,2015,4.0,975416545 +195,2019,5.0,975416836 +195,2021,2.0,975416545 +195,2023,3.0,977724281 +195,2028,5.0,975416922 +195,2043,5.0,975416643 +195,2054,2.0,975416616 +195,2064,4.0,976288437 +195,2067,3.0,977755671 +195,2070,3.0,977755165 +195,2075,3.0,977743614 +195,2077,2.0,975763348 +195,2084,2.0,978700726 +195,2088,2.0,978700726 +195,2094,2.0,975419107 +195,2100,1.0,975416545 +195,2102,5.0,975748262 +195,2105,3.0,975416589 +195,2109,3.0,976289269 +195,2110,2.0,976289485 +195,2111,2.0,976289269 +195,2112,3.0,977724281 +195,2115,3.0,975417321 +195,2124,3.0,976288882 +195,2132,3.0,977755058 +195,2134,2.0,976289485 +195,2135,3.0,978700681 +195,2139,3.0,975748444 +195,2144,3.0,976289095 +195,2150,2.0,976289312 +195,2174,2.0,975416496 +195,2182,4.0,975416414 +195,2186,5.0,975416305 +195,2193,3.0,975416545 +195,2194,3.0,975417183 +195,2202,3.0,977755480 +195,2208,4.0,976288189 +195,2243,3.0,976288846 +195,2268,3.0,977724034 +195,2288,3.0,975417022 +195,2291,2.0,977756127 +195,2294,4.0,975763070 +195,2302,3.0,976289241 +195,2312,3.0,977755569 +195,2313,3.0,977755058 +195,2315,1.0,978700434 +195,2352,4.0,976288550 +195,2353,3.0,975417426 +195,2355,4.0,975748393 +195,2359,3.0,976288743 +195,2366,5.0,975417022 +195,2367,3.0,975419080 +195,2376,3.0,975418941 +195,2396,5.0,976288228 +195,2402,1.0,975419204 +195,2404,1.0,975419407 +195,2405,1.0,975419141 +195,2406,1.0,975417247 +195,2407,3.0,976289485 +195,2410,1.0,975419174 +195,2411,1.0,975419367 +195,2412,1.0,975419448 +195,2414,2.0,975418763 +195,2423,2.0,976289241 +195,2453,3.0,975416589 +195,2468,1.0,975419292 +195,2476,2.0,975418973 +195,2502,3.0,976289149 +195,2524,3.0,975419141 +195,2527,2.0,975417247 +195,2528,3.0,975418661 +195,2529,4.0,975417277 +195,2530,3.0,975419049 +195,2532,3.0,975419049 +195,2533,3.0,975418941 +195,2549,1.0,975419351 +195,2568,1.0,977724492 +195,2599,3.0,976288143 +195,2616,3.0,975418973 +195,2617,3.0,975418661 +195,2628,3.0,975416589 +195,2640,2.0,975417396 +195,2641,2.0,975418855 +195,2657,3.0,978700656 +195,2662,4.0,975417396 +195,2700,2.0,975748444 +195,2701,1.0,975419351 +195,2706,2.0,976289451 +195,2710,1.0,978700274 +195,2719,2.0,978700434 +195,2722,1.0,975419049 +195,2728,3.0,977743492 +195,2739,2.0,977755058 +195,2746,3.0,976289345 +195,2750,3.0,976288883 +195,2763,2.0,975418855 +195,2779,3.0,976289451 +195,2788,3.0,977723661 +195,2791,4.0,976288515 +195,2797,2.0,975416496 +195,2804,2.0,977723528 +195,2826,3.0,975418763 +195,2857,3.0,978700555 +195,2858,4.0,976288064 +195,2863,3.0,976288189 +195,2870,3.0,976289064 +195,2872,4.0,975416545 +195,2877,4.0,978700701 +195,2915,2.0,976288779 +195,2916,3.0,975763311 +195,2917,4.0,977723994 +195,2918,1.0,976289027 +195,2929,3.0,977755165 +195,2941,3.0,978700625 +195,2944,4.0,975417022 +195,2946,2.0,976289241 +195,2947,3.0,975417022 +195,2951,3.0,975417105 +195,2968,3.0,975416496 +195,2971,3.0,978700598 +195,2985,2.0,975418661 +195,2986,2.0,977724465 +195,2987,4.0,975416383 +195,2988,3.0,977756127 +195,2989,3.0,975418728 +195,2995,2.0,978700402 +195,3011,3.0,977725295 +195,3019,4.0,977724034 +195,3022,4.0,976287996 +195,3035,5.0,976287996 +195,3037,4.0,976288515 +195,3039,1.0,976289095 +195,3052,2.0,976289149 +195,3061,3.0,976288846 +195,3062,4.0,977755569 +195,3068,4.0,977743492 +195,3072,2.0,976288992 +195,3076,3.0,976288649 +195,3077,4.0,977724675 +195,3081,3.0,978700307 +195,3088,5.0,976288883 +195,3095,4.0,977725170 +195,3098,3.0,977750746 +195,3099,2.0,975415188 +195,3100,3.0,977750831 +195,3104,4.0,975417146 +195,3107,3.0,975418706 +195,3122,3.0,977750661 +195,3135,3.0,977755569 +195,3147,3.0,977754632 +195,3152,3.0,977750706 +195,3169,2.0,977755525 +195,3175,4.0,976289202 +195,3178,1.0,975417146 +195,3194,3.0,977756127 +195,3196,3.0,977743706 +195,3197,3.0,975417321 +195,3198,4.0,977754812 +195,3201,3.0,977743614 +195,3210,3.0,976289027 +195,3244,3.0,976289345 +195,3253,1.0,976289118 +195,3255,2.0,976289402 +195,3256,4.0,975417350 +195,3257,3.0,975419327 +195,3271,3.0,977754867 +195,3307,3.0,976288064 +195,3334,4.0,975416305 +195,3341,4.0,976288550 +195,3350,3.0,977743659 +195,3359,2.0,977750706 +195,3360,2.0,977755742 +195,3361,3.0,977723728 +195,3362,2.0,976288228 +195,3363,3.0,976288703 +195,3364,4.0,978699871 +195,3398,2.0,976289241 +195,3404,4.0,975419080 +195,3406,3.0,975417065 +195,3421,4.0,976288743 +195,3424,1.0,976288965 +195,3427,1.0,977724066 +195,3432,1.0,975419431 +195,3435,5.0,975416263 +195,3441,3.0,975419141 +195,3448,3.0,976289176 +195,3451,3.0,976288550 +195,3461,2.0,977755742 +195,3462,4.0,977723497 +195,3468,4.0,977725070 +195,3471,4.0,977755480 +195,3481,3.0,976288703 +195,3494,3.0,975763408 +195,3498,3.0,977754867 +195,3504,4.0,976288064 +195,3507,3.0,976288992 +195,3516,3.0,976288743 +195,3519,3.0,975418616 +195,3526,1.0,976288965 +195,3527,3.0,975417105 +195,3529,3.0,977724314 +195,3543,3.0,976288437 +195,3546,3.0,977754974 +195,3549,3.0,978700598 +195,3552,2.0,976289373 +195,3555,3.0,975417247 +195,3578,5.0,975417146 +195,3591,1.0,976289402 +195,3608,1.0,976288965 +195,3629,4.0,976288624 +195,3638,3.0,975418810 +195,3639,3.0,975417146 +195,3643,3.0,975419174 +195,3654,4.0,975416970 +195,3668,3.0,977750746 +195,3671,5.0,976288624 +195,3697,3.0,975419141 +195,3698,2.0,975418941 +195,3699,2.0,975763348 +195,3701,2.0,977724170 +195,3702,3.0,975417183 +195,3705,1.0,975419431 +195,3717,1.0,977724346 +195,3733,3.0,977750661 +195,3735,3.0,977723922 +195,3740,3.0,975417277 +195,3742,3.0,977743492 +195,3744,1.0,977724206 +195,3751,3.0,975748444 +195,3754,3.0,975763148 +195,3755,2.0,975418888 +195,3760,3.0,976289345 +195,3763,3.0,975417396 +195,3811,2.0,977743614 +195,3836,3.0,975417022 +195,3841,2.0,975419224 +195,3863,3.0,975415696 +195,3868,4.0,976288815 +195,3871,5.0,977750746 +195,3873,3.0,976289064 +195,3889,1.0,975416759 +195,3893,3.0,975415658 +195,3897,5.0,975415619 +195,3929,3.0,976288108 +195,3946,1.0,978700227 +195,3952,3.0,975416174 +195,3959,4.0,975763311 +195,3969,3.0,975415619 +195,3972,2.0,978700114 +195,3975,3.0,975415799 +195,3977,1.0,975418973 +195,3978,2.0,978700170 +195,3979,1.0,975415731 +195,3981,4.0,975415799 +195,3984,3.0,975417247 +195,3986,2.0,978700199 +195,3987,3.0,978700170 +195,3988,3.0,978700199 +195,3994,2.0,975416141 +195,3998,2.0,978700170 +195,3999,2.0,978700227 +195,4002,4.0,975748167 +195,4016,2.0,978700114 +195,4018,3.0,978700227 +195,4019,2.0,978700114 +195,4022,2.0,978700170 +195,4023,2.0,978700170 +195,4025,2.0,978700199 +195,4030,3.0,978700135 +195,4037,4.0,977723884 +195,4041,2.0,977743741 +195,5060,3.0,976288143 +196,5,4.0,959224062 +196,261,4.0,959223783 +196,265,5.0,959223757 +196,454,4.0,959223784 +196,809,2.0,958511618 +196,916,3.0,958511618 +196,1081,5.0,959223885 +196,1127,4.0,959223666 +196,1375,4.0,959223885 +196,1863,2.0,959224101 +196,1959,4.0,959223757 +196,2076,4.0,959223689 +196,2082,3.0,959224001 +196,2161,2.0,958511618 +196,2424,4.0,958511618 +196,2474,4.0,959223827 +196,2628,4.0,959224276 +196,2712,3.0,959223885 +196,2746,3.0,959223827 +196,2762,5.0,959223610 +196,2840,4.0,959223973 +196,2858,5.0,959224230 +196,2861,4.0,959223713 +196,2882,3.0,959224001 +196,2888,3.0,959224101 +196,2889,4.0,959223827 +196,2906,4.0,959224316 +196,2912,3.0,959223757 +196,2949,5.0,959223666 +196,2975,4.0,959223945 +196,2977,4.0,959224101 +196,3004,4.0,959224101 +196,3005,4.0,959223827 +196,3052,2.0,959223636 +196,3072,2.0,958511618 +196,3082,5.0,959223885 +196,3102,4.0,959223827 +196,3113,3.0,959224062 +196,3115,4.0,959223910 +196,3118,4.0,959223973 +196,3157,4.0,959224001 +196,3175,4.0,959224261 +196,3285,3.0,958511826 +196,3301,4.0,958511889 +196,3317,5.0,958511738 +196,3324,2.0,958511979 +196,3354,3.0,958511889 +196,3387,4.0,959223973 +196,3408,5.0,958511738 +196,3481,4.0,958511738 +196,3483,3.0,958511889 +196,3484,3.0,958511826 +196,3489,5.0,959224062 +196,3494,4.0,959223827 +196,3501,4.0,959223757 +196,3510,5.0,958511738 +196,3512,4.0,958511777 +196,3534,4.0,958511777 +196,3536,5.0,958511738 +196,3537,3.0,958511889 +196,3552,4.0,959223827 +196,3555,3.0,958511738 +196,3557,3.0,959224101 +196,3565,4.0,958512347 +196,3572,1.0,959224101 +196,3578,4.0,958511777 +196,3579,3.0,958511979 +196,3591,4.0,959223885 +196,3593,2.0,958511949 +196,3594,4.0,958511950 +196,3614,2.0,959223945 +196,3618,2.0,959223469 +196,3620,2.0,959223363 +196,3623,4.0,959223363 +196,3624,5.0,959223469 +196,3633,4.0,959223406 +196,3635,5.0,959223469 +196,3638,5.0,959223363 +196,3639,5.0,959223363 +196,3649,4.0,959223183 +196,3654,4.0,959223827 +196,3669,2.0,959223506 +196,3671,5.0,959223213 +196,3681,3.0,959223271 +196,3682,4.0,959223363 +196,3684,4.0,959223271 +196,3685,4.0,959223406 +196,3686,5.0,959223271 +196,3688,3.0,959223406 +196,3689,1.0,959223406 +196,3690,1.0,959223406 +196,3697,3.0,959223406 +196,3699,5.0,959223469 +196,3702,4.0,959223305 +196,3703,4.0,959223305 +196,3704,4.0,959223363 +196,3705,4.0,959223213 +196,3706,3.0,959223183 +196,3707,4.0,959223363 +197,32,3.0,975429339 +197,260,5.0,975429107 +197,295,2.0,975428980 +197,316,3.0,975429524 +197,329,5.0,975429480 +197,356,3.0,975428956 +197,367,3.0,975429132 +197,368,4.0,975428934 +197,379,4.0,975429588 +197,442,5.0,975429481 +197,541,4.0,975429292 +197,589,5.0,975429317 +197,610,5.0,975429433 +197,653,5.0,975429167 +197,674,3.0,975429568 +197,750,4.0,975429317 +197,780,5.0,975429453 +197,924,4.0,975429292 +197,1009,5.0,975429192 +197,1019,3.0,975429133 +197,1037,2.0,975429619 +197,1196,5.0,975429292 +197,1210,5.0,975428956 +197,1215,3.0,975429373 +197,1240,5.0,975429292 +197,1356,5.0,975429391 +197,1372,5.0,975429453 +197,1374,4.0,975429373 +197,1376,5.0,975429391 +197,1391,4.0,975429588 +197,1527,5.0,975429433 +197,1580,5.0,975429410 +197,1676,5.0,975429433 +197,1690,4.0,975429504 +197,1702,5.0,975429234 +197,1748,3.0,975429391 +197,1909,5.0,975429373 +197,2011,4.0,975429481 +197,2015,4.0,975429167 +197,2021,5.0,975429167 +197,2087,5.0,975429107 +197,2094,5.0,975429568 +197,2100,4.0,975429133 +197,2105,5.0,975429167 +197,2117,4.0,975429481 +197,2174,3.0,975429107 +197,2311,3.0,975429481 +197,2528,3.0,975429453 +197,2571,5.0,975429292 +197,2628,5.0,975428980 +197,2640,4.0,975429433 +197,2642,1.0,975428980 +197,2797,4.0,975429107 +197,2872,5.0,975429107 +197,2916,5.0,975429339 +197,2968,1.0,975429339 +197,3466,3.0,975429133 +197,3479,4.0,975429107 +197,3638,5.0,975429524 +197,3701,4.0,975429504 +197,3702,3.0,975429373 +197,3703,3.0,975429317 +197,3877,4.0,975429248 +198,36,5.0,1068823117 +198,608,3.5,1068822866 +198,858,5.0,1068822819 +198,912,5.0,1068822904 +198,1041,4.0,1068822266 +198,1042,1.0,1068822226 +198,1077,4.0,1068822270 +198,1089,2.0,1068822632 +198,1148,5.0,1068822816 +198,1172,3.5,1068822207 +198,1198,2.0,1068823363 +198,1199,5.0,1068822650 +198,1204,4.0,1068822127 +198,1208,5.0,1068822929 +198,1221,5.0,1068822896 +198,1222,5.0,1068823085 +198,1223,5.0,1068822853 +198,1244,5.0,1068822243 +198,1250,5.0,1068823038 +198,1252,5.0,1068822843 +198,1254,4.0,1068823358 +198,1259,5.0,1068823096 +198,1266,3.5,1068823099 +198,1273,2.0,1068822696 +198,1289,5.0,1068822699 +198,1405,3.0,1068822233 +198,1449,3.0,1068822980 +198,1732,4.5,1068822671 +198,1747,2.0,1068822200 +198,1900,2.5,1068822968 +198,2064,5.0,1068822263 +198,2108,5.0,1068822240 +198,2599,5.0,1068822958 +198,2692,4.0,1068823224 +198,2770,2.5,1068822148 +198,2858,5.0,1068822860 +198,2966,2.5,1068823216 +198,2973,0.5,1068822629 +198,2997,5.0,1068822844 +198,3006,3.0,1068823218 +198,3147,3.5,1068822174 +198,3160,5.0,1068823138 +198,3176,1.5,1068822131 +198,3198,5.0,1068823120 +198,3210,5.0,1068822692 +198,3246,3.5,1068823036 +198,3267,3.5,1068822701 +198,3359,4.5,1068822900 +198,3470,4.5,1068822689 +198,3481,4.5,1068822123 +198,3543,4.5,1068823063 +198,3811,5.0,1068823057 +198,3911,3.0,1068823004 +198,3925,2.0,1068822719 +198,3983,4.0,1068822774 +198,3996,3.5,1068822933 +198,4022,3.0,1068822149 +198,4027,4.5,1068823071 +198,4034,4.5,1068822841 +198,4226,4.0,1068822760 +198,4306,4.0,1068822156 +198,4641,1.5,1068823056 +198,4772,2.5,1068823126 +198,4886,4.5,1068823236 +198,4967,1.5,1068823188 +198,4973,4.5,1068822798 +198,5446,4.0,1068822788 +198,5669,4.5,1068822766 +198,5792,1.0,1068822709 +198,5812,3.0,1068823111 +198,5876,5.0,1068822832 +198,5902,5.0,1068822875 +198,5952,2.0,1068823353 +198,5995,2.0,1068823183 +198,6296,3.0,1068822990 +199,6,4.5,1398939340 +199,10,2.5,1214653475 +199,12,4.0,1214653108 +199,16,4.0,1229897881 +199,23,3.5,1214653088 +199,25,4.0,1398939318 +199,32,3.5,1214668938 +199,44,4.0,1302655511 +199,47,4.5,1252353822 +199,50,4.5,1398939345 +199,110,4.5,1214912749 +199,111,4.0,1214913146 +199,173,4.0,1214915015 +199,180,3.5,1214654817 +199,208,3.5,1214914943 +199,260,5.0,1240236363 +199,292,4.0,1214914241 +199,293,4.5,1214912822 +199,296,5.0,1214654105 +199,316,4.0,1214914498 +199,318,4.5,1246110774 +199,319,3.5,1344870428 +199,356,4.5,1219674099 +199,380,3.5,1219674129 +199,405,3.5,1214914983 +199,457,4.0,1219674110 +199,480,3.5,1214913846 +199,527,4.5,1403615210 +199,541,4.0,1399348452 +199,546,0.5,1214653017 +199,589,5.0,1240236360 +199,592,4.0,1214669072 +199,593,4.5,1214912989 +199,608,3.5,1398939437 +199,673,3.5,1214914642 +199,741,5.0,1214668931 +199,778,4.0,1309732550 +199,780,3.5,1214914176 +199,858,3.0,1214912828 +199,924,3.5,1214653527 +199,1036,4.5,1214655205 +199,1080,5.0,1214913125 +199,1127,4.0,1214915966 +199,1136,5.0,1214912843 +199,1165,1.5,1214653422 +199,1196,5.0,1214669103 +199,1198,3.5,1214912760 +199,1200,5.0,1240236332 +199,1210,5.0,1240236362 +199,1213,3.5,1214912898 +199,1214,5.0,1240236331 +199,1215,4.5,1214652837 +199,1240,4.0,1214669116 +199,1246,4.0,1398939304 +199,1252,4.0,1399560401 +199,1261,3.5,1214654850 +199,1265,4.0,1309387643 +199,1270,4.5,1214669158 +199,1274,3.0,1214668969 +199,1320,4.5,1214914556 +199,1356,3.0,1399348624 +199,1416,1.0,1214653024 +199,1527,4.0,1214669213 +199,1544,3.0,1214914617 +199,1580,4.0,1214914160 +199,1584,3.5,1214916040 +199,1587,4.0,1214652969 +199,1590,4.5,1214913804 +199,1616,2.5,1214653125 +199,1617,5.0,1399348898 +199,1625,4.0,1309386792 +199,1676,4.0,1214914656 +199,1682,4.0,1309387364 +199,1690,2.5,1214914513 +199,1704,4.5,1309733045 +199,1722,3.0,1214652862 +199,1732,3.5,1232588864 +199,1748,4.0,1215030826 +199,1882,3.0,1214915000 +199,1917,3.0,1214914523 +199,1982,3.0,1214652997 +199,2011,4.0,1214916735 +199,2012,4.0,1214914528 +199,2019,4.0,1214912802 +199,2021,4.0,1214916702 +199,2028,4.0,1309733329 +199,2231,4.0,1309919881 +199,2232,3.5,1214914147 +199,2288,5.0,1240236366 +199,2329,3.0,1246110925 +199,2336,4.0,1403615672 +199,2410,4.0,1214653058 +199,2411,3.5,1214653082 +199,2455,4.0,1214916746 +199,2467,4.0,1214654860 +199,2542,4.0,1309697035 +199,2571,5.0,1240236348 +199,2579,3.5,1232588784 +199,2628,3.5,1214914653 +199,2664,4.5,1398939259 +199,2701,2.5,1214652894 +199,2716,3.5,1242920789 +199,2788,4.5,1219266091 +199,2858,4.0,1214913104 +199,2913,3.0,1214914182 +199,2916,4.0,1214914154 +199,2959,5.0,1214654080 +199,2985,4.0,1214916772 +199,3147,4.5,1309733787 +199,3300,4.0,1242942801 +199,3355,4.5,1244708825 +199,3448,4.0,1398939283 +199,3499,4.0,1302678956 +199,3527,4.0,1214668996 +199,3576,3.0,1242920809 +199,3578,4.0,1228445210 +199,3581,3.0,1228445275 +199,3697,4.0,1214914625 +199,3793,2.5,1214916659 +199,3948,4.0,1317304364 +199,3984,3.0,1214653145 +199,3986,2.5,1214653104 +199,4011,4.0,1252258691 +199,4105,3.5,1214654864 +199,4161,3.0,1214653162 +199,4226,5.0,1246111303 +199,4370,3.5,1244632094 +199,4533,4.0,1214916673 +199,4553,3.5,1242920817 +199,4720,3.5,1399348891 +199,4735,2.5,1244632077 +199,4878,3.0,1242921062 +199,4887,3.0,1244632053 +199,4963,4.0,1310145490 +199,4993,4.0,1309696113 +199,4995,4.0,1309744312 +199,5046,3.5,1244632046 +199,5146,4.0,1228445241 +199,5171,3.0,1244632038 +199,5219,3.5,1244632033 +199,5349,1.5,1242925353 +199,5378,4.5,1244632021 +199,5418,4.0,1246111634 +199,5445,3.5,1214916646 +199,5502,4.0,1398939359 +199,5903,3.5,1214654473 +199,5952,3.0,1214912934 +199,5954,3.5,1252359427 +199,5995,3.5,1214913137 +199,6104,4.5,1214654839 +199,6188,4.0,1317304347 +199,6281,4.0,1214957551 +199,6283,4.0,1214654479 +199,6333,3.0,1214669163 +199,6350,2.5,1214654885 +199,6365,4.0,1244319731 +199,6378,3.5,1214654560 +199,6502,3.0,1214669044 +199,6537,3.5,1244319714 +199,6731,3.0,1242755992 +199,6807,4.5,1214654854 +199,6826,1.0,1214653280 +199,6870,3.5,1228344928 +199,6874,3.5,1215032354 +199,6934,4.0,1244319695 +199,6996,3.0,1399348760 +199,7001,4.0,1304732372 +199,7048,4.0,1317209176 +199,7099,2.5,1214654894 +199,7153,3.5,1309720217 +199,7254,4.0,1214669181 +199,7282,0.5,1214653717 +199,7360,3.5,1230436803 +199,7387,3.5,1309732737 +199,7438,3.5,1215033850 +199,7458,4.0,1252274571 +199,7649,2.5,1214654811 +199,7810,2.5,1214669134 +199,7841,3.5,1242921088 +199,7842,4.0,1214669187 +199,8225,4.0,1214653488 +199,8371,3.0,1242943352 +199,8403,2.0,1214654439 +199,8581,3.0,1214654799 +199,8636,1.5,1242925370 +199,8641,4.0,1317044850 +199,8644,2.5,1242925364 +199,8654,2.0,1214654443 +199,8665,4.0,1309734946 +199,8790,3.0,1219265793 +199,8810,2.5,1244319357 +199,8861,1.5,1244319344 +199,8874,4.0,1214913198 +199,8950,3.5,1309733825 +199,8957,4.5,1256387967 +199,26554,4.0,1242942657 +199,26603,4.0,1302722568 +199,26614,4.0,1309732989 +199,27005,3.5,1214912837 +199,27410,4.0,1219636901 +199,27660,3.5,1214669042 +199,27728,4.5,1214915208 +199,27773,4.0,1399349225 +199,27831,4.0,1229897877 +199,27922,4.0,1309696936 +199,31410,4.0,1214912887 +199,32587,4.0,1214654743 +199,32825,4.0,1242518308 +199,33493,5.0,1214916719 +199,33558,3.0,1229285008 +199,33660,4.0,1246111478 +199,33794,4.0,1214912961 +199,34162,3.5,1317045321 +199,34319,3.5,1214916710 +199,34405,3.0,1242517942 +199,37830,3.5,1214669077 +199,39446,4.0,1256387906 +199,40732,3.0,1304737195 +199,42197,3.5,1219674675 +199,43936,3.5,1214654578 +199,44191,4.5,1214654765 +199,44199,3.0,1228344863 +199,44665,4.0,1214654380 +199,44761,2.5,1230436250 +199,45447,4.0,1399349134 +199,45722,4.0,1401481169 +199,46976,3.5,1214913769 +199,47610,4.0,1252359464 +199,48516,4.0,1229897584 +199,48774,3.5,1228344915 +199,48780,4.0,1214654141 +199,48877,4.0,1256387898 +199,49272,4.5,1228344908 +199,51255,4.0,1214913086 +199,51357,4.0,1309905793 +199,51662,3.5,1228446268 +199,52281,3.0,1215032108 +199,52328,3.0,1242925102 +199,52606,4.0,1317045047 +199,53000,3.0,1242925393 +199,53129,4.0,1309387250 +199,53207,3.5,1245103026 +199,53519,3.0,1230436330 +199,53953,3.5,1228543860 +199,53956,3.5,1269659223 +199,53972,3.0,1400971299 +199,53996,4.0,1214916704 +199,54286,4.0,1246111471 +199,54771,3.0,1244317633 +199,54995,4.0,1214654425 +199,54997,4.0,1239292377 +199,55118,3.5,1309732614 +199,55232,2.5,1244317650 +199,55290,4.0,1228160566 +199,55363,3.0,1252238104 +199,55577,3.5,1256387894 +199,55765,3.5,1214654749 +199,55820,4.0,1214912860 +199,55908,4.5,1214654772 +199,56145,4.0,1214915945 +199,56169,4.0,1214654123 +199,56174,3.5,1214916053 +199,56587,3.5,1214654411 +199,56788,4.0,1309734942 +199,56801,2.5,1244317641 +199,57368,3.5,1242942789 +199,57669,4.0,1215054968 +199,58295,4.0,1229898168 +199,58432,3.0,1256388498 +199,58559,4.5,1219627288 +199,58998,4.0,1227983204 +199,59018,3.0,1214913351 +199,59126,4.5,1238361163 +199,59315,3.5,1227994813 +199,59369,4.0,1248801337 +199,59590,2.0,1214654359 +199,59810,3.5,1228073545 +199,60040,3.5,1242925340 +199,60069,1.5,1214653266 +199,60684,3.5,1248801345 +199,60756,3.5,1317123305 +199,60943,3.5,1238361169 +199,61132,3.5,1317123283 +199,61248,3.5,1231600156 +199,61323,3.5,1230436294 +199,62792,3.5,1252359503 +199,62849,4.0,1344680308 +199,63062,4.0,1238361176 +199,63436,3.5,1256387874 +199,63481,2.0,1256388597 +199,64957,3.5,1248801342 +199,65133,4.5,1309697099 +199,65682,3.0,1256388477 +199,66090,3.5,1340544965 +199,66509,3.5,1317045887 +199,67665,2.0,1256251935 +199,67867,2.0,1256251907 +199,68135,4.0,1256251670 +199,68157,4.0,1256251610 +199,68159,3.5,1309387306 +199,68194,3.5,1309730663 +199,68205,3.5,1256251926 +199,68237,3.5,1265915291 +199,68319,3.5,1256251923 +199,68358,4.0,1399348745 +199,68791,3.5,1263236080 +199,68932,2.0,1256251949 +199,69122,3.5,1265915315 +199,69278,3.5,1256388120 +199,69526,3.5,1258846542 +199,69844,3.5,1400971273 +199,70286,4.5,1399348657 +199,71135,4.0,1265915319 +199,71156,3.5,1264729899 +199,71535,4.0,1265915303 +199,72129,3.5,1260228448 +199,72998,3.0,1272842839 +199,73017,4.0,1264729743 +199,73211,3.5,1317509465 +199,73268,3.5,1268000977 +199,73321,3.5,1283388975 +199,73929,3.0,1269640369 +199,74452,3.5,1282429810 +199,74458,4.0,1283387896 +199,74532,3.5,1272841758 +199,74545,3.0,1283388485 +199,74685,3.5,1283389030 +199,74948,3.0,1283387901 +199,75813,3.5,1310045044 +199,75985,4.0,1283389066 +199,76210,3.0,1310045181 +199,76251,4.5,1398939824 +199,78034,3.0,1283389041 +199,78160,4.0,1309696123 +199,78209,3.5,1317045882 +199,78218,3.5,1309744461 +199,78544,4.0,1309696118 +199,79006,4.0,1310647351 +199,79057,3.5,1282419759 +199,79132,4.0,1304732271 +199,79134,3.5,1310044703 +199,79592,4.0,1310044593 +199,79695,3.5,1286975960 +199,79796,3.5,1340544998 +199,80363,3.0,1286976021 +199,80463,4.0,1293116475 +199,80489,3.5,1309732970 +199,80906,4.0,1303602834 +199,81229,3.5,1310044387 +199,81535,3.0,1291652381 +199,81562,4.0,1304735612 +199,81788,3.5,1309387345 +199,81845,4.0,1296818758 +199,81932,4.0,1398939823 +199,82459,3.5,1309194331 +199,82461,3.5,1309194348 +199,82854,3.0,1309194435 +199,83134,4.5,1317044938 +199,83349,3.5,1310044279 +199,83506,4.0,1309697063 +199,84152,4.0,1309387130 +199,84187,4.0,1302396566 +199,84374,3.5,1309194419 +199,84395,2.5,1303586336 +199,84601,3.5,1309194343 +199,84615,3.0,1317045017 +199,84954,3.5,1309387767 +199,85020,3.5,1309194365 +199,85022,3.5,1309194439 +199,85025,3.5,1304654795 +199,85131,3.5,1304654784 +199,85412,3.5,1309696063 +199,85414,4.0,1399349502 +199,85774,4.0,1398939569 +199,86142,4.0,1309695240 +199,86290,3.5,1309194324 +199,86332,4.0,1314452648 +199,86345,4.0,1310045211 +199,86347,4.0,1309695102 +199,86377,4.0,1309695097 +199,87232,4.0,1312102255 +199,87485,3.5,1314452550 +199,88140,4.0,1398939836 +199,88163,3.5,1398939852 +199,88405,3.5,1317045456 +199,88744,3.5,1320000245 +199,88785,3.5,1320000267 +199,88812,3.5,1320357301 +199,89492,4.0,1398939754 +199,89745,4.0,1398939868 +199,89753,3.5,1327437812 +199,90345,3.5,1399348480 +199,90405,3.5,1327437822 +199,91500,4.0,1398939873 +199,91529,4.5,1398939838 +199,91542,3.5,1327437817 +199,91630,3.5,1340543452 +199,91653,3.5,1340543463 +199,91658,4.0,1398939859 +199,92420,3.5,1340543440 +199,93443,4.0,1340543473 +199,94959,3.5,1398939563 +199,96079,4.5,1398939832 +199,96610,4.0,1398939944 +199,96829,4.5,1398939574 +199,97921,4.0,1398939843 +199,97938,4.0,1398939828 +199,98154,4.0,1398939943 +199,99114,4.0,1398939602 +199,103235,4.5,1401481231 +199,103253,4.0,1399348642 +199,104841,4.0,1398939891 +199,104879,3.5,1399349123 +199,104913,4.5,1398939609 +199,106100,4.0,1398939752 +199,106441,3.5,1401463668 +199,106487,4.0,1398939878 +199,106489,4.0,1398939883 +199,106696,3.5,1398939846 +199,106916,3.5,1398939907 +199,107141,3.5,1398939855 +199,112112,2.0,1403615167 +200,1,3.0,1437932719 +200,2,3.5,1457721108 +200,32,4.0,1437934584 +200,110,3.5,1438019199 +200,145,4.5,1437933154 +200,170,4.0,1437934118 +200,185,2.0,1438020091 +200,293,4.5,1437933335 +200,296,4.0,1437934292 +200,356,4.0,1437932699 +200,362,2.0,1438020132 +200,364,3.0,1438020001 +200,367,3.0,1457721047 +200,377,3.5,1438019501 +200,454,4.5,1437933180 +200,455,3.0,1438019776 +200,480,3.5,1438019480 +200,500,4.0,1437934173 +200,527,4.5,1437933687 +200,586,3.5,1438019530 +200,588,1.5,1438020304 +200,593,4.0,1437932704 +200,595,1.0,1438022848 +200,597,4.0,1438023488 +200,648,3.5,1438019541 +200,780,2.5,1457720765 +200,1020,4.5,1437933205 +200,1080,0.5,1438020533 +200,1088,1.0,1438020434 +200,1092,4.0,1438023365 +200,1097,3.0,1438026859 +200,1199,1.5,1438019794 +200,1222,4.5,1437933771 +200,1265,4.5,1437933144 +200,1270,5.0,1437932711 +200,1291,4.5,1438023102 +200,1307,4.0,1437934016 +200,1367,1.5,1457720512 +200,1380,2.5,1438023863 +200,1527,2.5,1438024193 +200,1544,3.0,1438019687 +200,1580,4.0,1437934472 +200,1584,2.0,1438020073 +200,1610,3.5,1438019190 +200,1619,2.5,1438024517 +200,1625,5.0,1437933483 +200,1645,4.5,1437933047 +200,1682,5.0,1437933004 +200,1702,3.0,1438019694 +200,1721,2.0,1438025229 +200,1801,1.5,1438025258 +200,1917,3.0,1438024391 +200,1954,4.0,1437934482 +200,2011,4.5,1437933259 +200,2012,4.0,1437933265 +200,2028,4.5,1437933564 +200,2321,4.0,1437934826 +200,2353,4.0,1437934164 +200,2378,0.5,1457720591 +200,2403,2.5,1438024000 +200,2420,3.5,1438025534 +200,2427,3.0,1438019650 +200,2470,4.5,1437933347 +200,2471,4.0,1437934384 +200,2496,4.0,1437934263 +200,2571,5.0,1437932708 +200,2605,4.0,1437934093 +200,2671,3.0,1438019826 +200,2687,1.5,1438022681 +200,2706,1.5,1438020327 +200,2724,1.0,1438023546 +200,2762,1.5,1438024902 +200,2953,2.5,1438019988 +200,2959,4.0,1438019521 +200,3020,4.5,1437933392 +200,3147,3.0,1438021867 +200,3408,4.5,1438021136 +200,3409,3.0,1438019677 +200,3462,4.0,1437934447 +200,3623,3.0,1438021130 +200,3639,3.0,1438019610 +200,3717,3.0,1438021228 +200,3785,0.5,1438020482 +200,3825,2.5,1438021572 +200,3827,3.0,1438021425 +200,4016,1.0,1438022765 +200,4018,2.0,1438020041 +200,4022,1.0,1438020390 +200,4025,3.0,1438019702 +200,4052,3.0,1438019663 +200,4161,4.5,1437933068 +200,4223,4.5,1437933190 +200,4226,4.5,1437933375 +200,4299,3.5,1438019300 +200,4306,4.5,1437933791 +200,4308,3.0,1438021180 +200,4310,2.0,1438020103 +200,4344,3.5,1438019437 +200,4369,3.5,1438021327 +200,4370,2.5,1438021196 +200,4447,0.5,1438020494 +200,4489,2.5,1438023811 +200,4519,3.0,1438019763 +200,4638,2.5,1438019912 +200,4661,2.5,1438019883 +200,4681,4.0,1437934282 +200,4886,4.0,1437934875 +200,4901,2.5,1438021417 +200,4963,4.5,1437933930 +200,4995,4.5,1437933666 +200,5010,4.0,1437934400 +200,5218,4.5,1437933821 +200,5349,4.0,1437934250 +200,5418,4.5,1437933310 +200,5445,4.5,1437933525 +200,5574,3.5,1438019427 +200,5620,4.0,1437934184 +200,5679,1.5,1438020284 +200,5809,1.0,1438024335 +200,5872,3.5,1438019509 +200,5956,2.5,1438021323 +200,5989,4.0,1437934888 +200,6059,3.5,1438019420 +200,6281,4.5,1437933101 +200,6365,2.0,1438019621 +200,6373,4.0,1437934307 +200,6377,4.5,1437934861 +200,6378,4.0,1437934457 +200,6539,4.5,1437933467 +200,6548,4.5,1437933162 +200,6550,2.5,1438019902 +200,6889,3.5,1438022656 +200,6934,1.0,1437933444 +200,7154,3.0,1438023475 +200,7155,4.0,1457123750 +200,7163,3.0,1437934203 +200,7293,3.0,1438019736 +200,7361,3.5,1438019343 +200,8360,4.0,1437934839 +200,8361,2.5,1438021370 +200,8369,4.5,1437933114 +200,8376,2.5,1438021349 +200,8529,3.5,1438019285 +200,8604,2.5,1438019943 +200,8622,1.5,1438020315 +200,8644,3.5,1437933517 +200,8665,4.5,1437933321 +200,8874,4.5,1437933843 +200,8957,1.0,1438020444 +200,8958,3.5,1438019161 +200,8961,3.0,1438021109 +200,8984,3.0,1438019594 +200,26686,3.5,1438019333 +200,26999,2.0,1438020152 +200,27193,2.0,1438020062 +200,27482,1.0,1438019854 +200,27821,3.5,1459700798 +200,30812,2.5,1438021386 +200,31685,2.5,1438019979 +200,32587,2.5,1438020017 +200,33004,4.5,1437933281 +200,33499,2.5,1438019970 +200,33679,3.0,1438019744 +200,33836,3.0,1438019713 +200,36289,2.0,1438026597 +200,36525,1.0,1438020362 +200,36529,5.0,1437933015 +200,40278,3.5,1438021715 +200,42015,3.5,1438019312 +200,44022,3.5,1438019394 +200,45186,3.0,1438019808 +200,45431,4.5,1437933214 +200,45447,3.0,1438019273 +200,45517,3.5,1438019470 +200,45720,3.0,1438019838 +200,45732,1.0,1438020402 +200,46578,4.0,1437934040 +200,46976,4.0,1437934230 +200,48516,1.5,1438023151 +200,48774,3.5,1438019237 +200,48780,4.5,1437933057 +200,49272,3.0,1438019818 +200,49530,4.5,1437933298 +200,50872,4.5,1437933614 +200,51084,1.0,1438020422 +200,52281,3.5,1438021635 +200,53121,4.0,1437933983 +200,53125,2.0,1438020116 +200,53322,4.5,1437933896 +200,53996,2.0,1438021378 +200,54272,0.5,1438020523 +200,54286,4.5,1437933424 +200,54995,4.0,1437934544 +200,54999,4.0,1437934495 +200,55247,4.0,1437934605 +200,56174,4.5,1437933411 +200,56367,4.0,1437934848 +200,57353,4.0,1437934081 +200,57528,1.5,1457720604 +200,57669,2.5,1438021457 +200,58047,3.5,1451158627 +200,58103,1.0,1438020378 +200,58295,4.0,1437934027 +200,58803,4.5,1437933124 +200,59369,2.5,1438020010 +200,60069,4.5,1437933860 +200,60074,2.0,1438020183 +200,62849,1.5,1451152938 +200,63082,3.0,1438021219 +200,63113,3.5,1438019495 +200,64716,4.5,1437933496 +200,64969,3.5,1438019382 +200,67923,3.5,1457720434 +200,68157,4.5,1438021207 +200,68954,4.0,1437934055 +200,69122,1.0,1438021278 +200,69644,4.0,1437934321 +200,73017,4.5,1437933601 +200,74946,2.0,1438020053 +200,76093,3.5,1438020823 +200,78637,3.5,1457720880 +200,79091,3.0,1457727550 +200,79132,3.5,1438019548 +200,79293,1.5,1460208561 +200,79695,4.0,1438024022 +200,81229,3.5,1438024241 +200,81847,4.5,1438022790 +200,85736,3.5,1438019406 +200,86298,3.5,1438019180 +200,87522,4.5,1437933225 +200,87975,3.0,1451143950 +200,90405,4.0,1437934107 +200,90647,1.5,1438020234 +200,90746,4.0,1437934533 +200,91542,4.5,1437933877 +200,91978,4.5,1451158649 +200,94015,4.5,1437933239 +200,95510,4.0,1457720671 +200,97225,3.0,1459713788 +200,97938,2.0,1438026480 +200,101142,3.5,1457720927 +200,102903,3.0,1438019599 +200,103141,4.0,1457720210 +200,103810,2.5,1457720226 +200,104374,3.5,1438019151 +200,106696,3.5,1438022807 +200,106782,3.0,1438022132 +200,106916,4.5,1438023118 +200,106920,3.5,1438025417 +200,111659,4.0,1438026414 +200,129354,4.0,1457720823 +200,134130,4.5,1457123787 +200,136592,1.5,1438020227 +201,1,5.0,1110421816 +201,6,5.0,1110421617 +201,32,5.0,1110497366 +201,34,4.0,1110498208 +201,47,5.0,1110497364 +201,50,5.0,1110421811 +201,58,4.0,1110498115 +201,104,3.0,1110498315 +201,110,5.0,1110497333 +201,150,5.0,1110497331 +201,153,4.0,1110497391 +201,165,4.0,1110498217 +201,186,3.0,1110421287 +201,235,1.0,1110421168 +201,260,5.0,1110497338 +201,293,5.0,1110421608 +201,296,5.0,1110497317 +201,316,4.0,1110498205 +201,318,5.0,1110421776 +201,349,4.0,1110498219 +201,356,4.0,1110498250 +201,377,4.0,1110497383 +201,380,4.0,1110498227 +201,416,4.0,1110497838 +201,457,4.0,1110498109 +201,480,5.0,1110497321 +201,494,3.0,1110498312 +201,527,4.0,1110498225 +201,589,4.0,1110498130 +201,592,4.0,1110497327 +201,593,4.0,1110497319 +201,608,4.0,1110498221 +201,648,4.0,1110498223 +201,736,4.0,1110498266 +201,741,5.0,1110497595 +201,780,4.0,1110498202 +201,832,4.0,1110421250 +201,1101,5.0,1110421653 +201,1136,5.0,1110498354 +201,1148,5.0,1110497180 +201,1196,5.0,1110498264 +201,1198,5.0,1110421783 +201,1210,5.0,1110497352 +201,1220,4.0,1110498423 +201,1270,5.0,1110497190 +201,1291,5.0,1110421804 +201,1396,4.0,1110497263 +201,1527,5.0,1110421649 +201,1653,4.0,1110498253 +201,1917,4.0,1110421212 +201,1957,5.0,1110421647 +201,2081,3.0,1110498492 +201,2115,5.0,1110421241 +201,2302,4.0,1110498147 +201,2329,4.0,1110421801 +201,2355,5.0,1110498383 +201,2406,3.0,1110498479 +201,2420,3.0,1110498317 +201,2599,4.0,1110421261 +201,2687,4.0,1110498475 +201,2690,3.0,1110498433 +201,2699,3.0,1110498308 +201,2716,4.0,1110498366 +201,2762,2.0,1110421795 +201,2797,5.0,1110421217 +201,2950,4.0,1110497834 +201,3114,4.0,1110498155 +201,3275,4.0,1110498370 +201,3498,4.0,1110498376 +201,3526,4.0,1110498443 +201,3793,4.0,1110421230 +201,3948,4.0,1110498145 +201,4085,4.0,1110497256 +201,4306,5.0,1110421227 +201,4878,4.0,1110421685 +201,4886,5.0,1110421828 +201,4993,5.0,1110421223 +201,5349,4.0,1110421545 +201,5418,4.0,1110498357 +201,5679,5.0,1110421423 +201,5903,4.0,1110498246 +201,5949,3.0,1110498495 +201,5952,5.0,1110421766 +201,5989,4.0,1110498167 +201,6333,4.0,1110421535 +201,6377,5.0,1110421778 +201,6539,4.0,1110498178 +201,6909,5.0,1110421402 +201,7147,5.0,1110497183 +201,7153,5.0,1110421590 +201,7155,1.0,1110421747 +201,7361,5.0,1110421610 +201,7458,4.0,1110421715 +201,8360,5.0,1110497187 +201,8368,5.0,1110421773 +201,8376,3.0,1110497605 +201,8600,4.0,1110421679 +201,8636,4.0,1110421548 +201,8644,4.0,1110421642 +201,8665,4.0,1110498238 +201,8666,0.5,1110421498 +201,8781,4.0,1110421712 +201,8783,4.0,1110498185 +201,8784,5.0,1110421599 +201,8798,4.0,1110421604 +201,8810,4.0,1110497817 +201,8827,4.0,1110498191 +201,8836,3.0,1110497762 +201,8860,4.0,1110421724 +201,8861,4.0,1110497774 +201,8865,4.0,1110498259 +201,8870,4.0,1110497789 +201,8873,0.5,1110421623 +201,8874,4.0,1110498257 +201,8947,5.0,1110421341 +201,8949,4.0,1110421368 +201,8958,5.0,1110421482 +201,8961,5.0,1110421389 +201,8970,4.0,1110498198 +201,27822,4.0,1110498255 +201,27882,5.0,1110421594 +201,30812,3.0,1110498310 +202,296,4.0,1046144523 +202,318,5.0,1046144523 +202,329,4.0,1046144576 +202,419,2.0,1046145872 +202,442,2.0,1046144383 +202,969,5.0,1046145571 +202,1019,4.0,1046145229 +202,1097,4.0,1046144125 +202,1127,5.0,1046145496 +202,1196,4.0,1046144150 +202,1210,4.0,1046144204 +202,1220,5.0,1046145955 +202,1250,4.0,1046146002 +202,1270,5.0,1046145766 +202,1304,5.0,1046146039 +202,1327,3.0,1046144150 +202,1333,4.0,1046145918 +202,1371,4.0,1046144576 +202,1461,4.0,1046144576 +202,1517,4.0,1046144310 +202,1587,4.0,1046146174 +202,1690,2.0,1046144283 +202,1953,4.0,1046144406 +202,1968,4.0,1046146002 +202,1997,5.0,1046146457 +202,1998,3.0,1046146457 +202,2002,4.0,1046144059 +202,2011,4.0,1046145766 +202,2012,4.0,1046145766 +202,2015,2.0,1046145496 +202,2122,2.0,1046146097 +202,2124,3.0,1046145518 +202,2393,3.0,1046144576 +202,2423,4.0,1046144340 +202,2474,4.0,1046146153 +202,2530,4.0,1046145847 +202,2531,4.0,1046145803 +202,2532,4.0,1046146174 +202,2533,4.0,1046146427 +202,2628,3.0,1046144087 +202,2683,3.0,1046145724 +202,2734,5.0,1046143639 +202,2739,4.0,1046146153 +202,2748,2.0,1046145613 +202,2794,5.0,1046144383 +202,2795,5.0,1046144576 +202,2944,5.0,1046146311 +202,3004,3.0,1046145766 +202,3101,4.0,1046144164 +202,3285,4.0,1046145833 +202,3401,2.0,1046145766 +202,3412,3.0,1046145833 +202,3471,5.0,1046146153 +202,3701,4.0,1046144283 +202,3766,4.0,1046144468 +202,3768,3.0,1046144310 +202,3930,2.0,1046146200 +202,4008,4.0,1046145972 +202,4042,4.0,1046145571 +202,4317,3.0,1046144468 +202,4327,4.0,1046144205 +202,4396,3.0,1046146054 +202,4466,5.0,1046145496 +202,4566,2.0,1046144283 +202,4589,4.0,1046146362 +202,4767,2.0,1046145496 +202,4915,3.0,1046145833 +202,4945,5.0,1046146413 +202,5055,5.0,1046146342 +202,5139,4.0,1046145782 +202,5141,3.0,1046145766 +202,5540,4.0,1046146122 +202,5568,3.0,1046144059 +202,5872,3.0,1046146311 +202,5910,1.0,1046144205 +202,5927,4.0,1046145872 +203,23,3.5,1226321189 +203,50,5.0,1226321329 +203,318,5.0,1226321327 +203,541,4.5,1226321444 +203,750,4.5,1226322072 +203,858,5.0,1226321325 +203,913,4.0,1226321449 +203,922,4.5,1226321130 +203,934,2.5,1226321225 +203,1049,3.5,1226321147 +203,1212,4.5,1226321861 +203,1221,4.5,1226322074 +203,1245,4.0,1226321604 +203,1248,3.5,1226321950 +203,1252,4.0,1226321446 +203,1284,3.5,1226321471 +203,1556,2.5,1226321160 +203,1617,5.0,1226321441 +203,1748,4.5,1226321610 +203,2085,2.0,1226321078 +203,2116,5.0,1226321153 +203,2410,3.0,1226321175 +203,2688,4.5,1226321113 +203,2707,3.5,1226321071 +203,3298,2.5,1226321194 +203,3435,4.5,1226321211 +203,3617,4.0,1226321092 +203,4226,4.5,1226322068 +203,4235,4.0,1226321209 +203,4848,4.5,1226321666 +203,5015,3.0,1226321171 +203,6016,4.0,1226322059 +203,32587,4.5,1226321660 +203,39292,3.5,1226321658 +203,44761,4.0,1226321663 +203,48872,3.5,1226321680 +203,58559,5.0,1226321322 +204,16,4.0,1096531183 +204,58,2.5,1096531266 +204,112,2.5,1096531212 +204,151,3.0,1096531207 +204,432,1.5,1096531189 +204,923,4.5,1096531237 +204,1086,2.5,1096531463 +204,1213,3.0,1096531447 +204,1230,4.0,1096531174 +204,1234,3.5,1096531281 +204,1246,2.0,1096531241 +204,1247,4.5,1096531199 +204,1304,4.0,1096531179 +204,1370,2.5,1096531246 +204,1374,3.5,1096531218 +204,1407,3.0,1096531273 +204,1682,4.0,1096531289 +204,2011,4.0,1096531232 +204,2066,5.0,1096531848 +204,2291,3.0,1096531254 +204,3552,4.0,1096532134 +204,3996,4.0,1096531194 +204,4306,3.5,1096531277 +204,4531,0.5,1096531676 +204,4700,1.0,1096531631 +204,6954,5.0,1096531803 +204,7438,3.0,1096531444 +204,8751,5.0,1096531492 +204,8754,5.0,1096531791 +204,8838,3.0,1096531437 +204,8899,4.0,1096531609 +205,1,4.5,1442148577 +205,10,3.5,1442136824 +205,47,4.5,1442137042 +205,50,5.0,1442136794 +205,110,3.0,1442148308 +205,260,3.0,1442136902 +205,356,2.5,1442148305 +205,480,4.5,1442890319 +205,589,2.5,1442148495 +205,593,3.5,1442887009 +205,720,1.0,1442148501 +205,741,4.5,1442148537 +205,745,1.0,1442146219 +205,858,4.0,1442137489 +205,919,3.0,1442148413 +205,1036,2.5,1442886992 +205,1148,1.0,1442146198 +205,1196,3.0,1442136904 +205,1197,4.0,1442136917 +205,1198,3.5,1442137496 +205,1210,3.0,1442148354 +205,1214,2.0,1442137072 +205,1221,3.5,1442137491 +205,1223,1.0,1442137206 +205,1240,4.5,1442148604 +205,1270,4.0,1442148563 +205,1291,3.5,1442148357 +205,1527,4.0,1442887259 +205,2571,2.5,1442886844 +205,2762,4.0,1442886871 +205,2916,4.5,1442890270 +205,2947,2.5,1442890213 +205,2959,3.0,1442886871 +205,3000,4.0,1442886997 +205,3996,4.5,1442890259 +205,4993,4.0,1442886841 +205,5418,3.0,1442887018 +205,5618,5.0,1442886948 +205,5952,3.5,1442886850 +205,5971,4.5,1442886950 +205,6333,3.0,1442890297 +205,6539,5.0,1442886719 +205,7090,4.0,1442890239 +205,7153,3.5,1442886842 +205,8368,3.0,1442890231 +205,8798,3.0,1442890292 +205,8961,4.0,1442148586 +205,26662,4.0,1442148486 +205,26776,3.5,1442148664 +205,27731,4.0,1442886944 +205,27839,0.5,1442152615 +205,30793,3.5,1442152212 +205,31221,2.5,1442152533 +205,31658,4.5,1442137049 +205,31685,3.5,1442152274 +205,31696,4.5,1442152271 +205,32031,3.0,1442152434 +205,32296,3.0,1442152668 +205,33493,4.5,1442152189 +205,33615,3.0,1442152295 +205,33679,4.0,1442152224 +205,33794,4.5,1442137184 +205,34162,3.0,1442152221 +205,34332,2.5,1442152658 +205,35836,2.0,1442152205 +205,36519,3.0,1442152464 +205,37386,3.5,1442152387 +205,37729,4.0,1442152266 +205,37830,4.0,1442152518 +205,37857,5.0,1442152664 +205,39446,0.5,1442152372 +205,39715,3.5,1442152678 +205,40278,1.5,1442152333 +205,40339,2.0,1442152633 +205,40815,4.5,1442152199 +205,41566,5.0,1442152215 +205,41571,4.5,1442152412 +205,42011,2.5,1442152486 +205,42723,0.5,1442152472 +205,43928,1.5,1442152594 +205,44022,2.5,1442152349 +205,44191,5.0,1442152164 +205,45186,3.5,1442152326 +205,45447,5.0,1442152240 +205,45501,1.5,1442152495 +205,45517,4.0,1442152261 +205,45668,2.5,1442152542 +205,45672,3.5,1442152374 +205,45720,2.5,1442152291 +205,45722,5.0,1442152201 +205,45730,3.5,1442152596 +205,46322,4.0,1442152580 +205,46965,2.0,1442152448 +205,46970,3.0,1442152355 +205,48322,0.5,1442152600 +205,48385,2.5,1442152210 +205,48394,3.5,1442137089 +205,48516,3.0,1442146184 +205,48780,4.5,1442137058 +205,48877,0.5,1442152465 +205,48982,3.0,1442152621 +205,49272,3.5,1442152179 +205,49530,4.5,1442148678 +205,50068,4.5,1442152385 +205,50872,5.0,1442152200 +205,51084,4.5,1442152512 +205,51086,3.5,1442152483 +205,51412,4.0,1442152511 +205,51662,4.0,1442152171 +205,52245,3.5,1442152421 +205,52281,5.0,1442152288 +205,52722,3.5,1442152262 +205,52973,3.0,1442152247 +205,53121,3.0,1442152396 +205,53464,2.0,1442152403 +205,53953,4.0,1442152356 +205,53993,2.0,1442152480 +205,54004,1.0,1442152636 +205,54259,5.0,1442152268 +205,54272,4.5,1442152234 +205,54286,2.5,1442137180 +205,54995,4.0,1442152364 +205,54997,5.0,1442152255 +205,55052,4.0,1442152381 +205,55232,3.5,1442152485 +205,55282,3.0,1442152494 +205,55577,0.5,1442152640 +205,55768,3.5,1442152645 +205,55995,4.0,1442152459 +205,56152,4.0,1442152396 +205,56171,4.0,1442152429 +205,56174,4.0,1442152226 +205,56367,3.5,1442152190 +205,56587,4.0,1442152433 +205,56757,5.0,1442152288 +205,57368,2.5,1442152301 +205,57528,4.0,1442152498 +205,57640,3.5,1442152378 +205,58025,4.0,1442152400 +205,58103,3.5,1442152604 +205,58293,3.0,1442152418 +205,58299,3.5,1442152619 +205,58559,3.0,1442136802 +205,58803,5.0,1442152397 +205,59315,4.0,1442887013 +205,59369,5.0,1442152238 +205,59615,3.0,1442152264 +205,59784,5.0,1442152249 +205,59900,3.0,1442152527 +205,60037,3.0,1442152545 +205,60040,3.5,1442152339 +205,60069,3.5,1442137080 +205,60074,2.5,1442152312 +205,60126,3.0,1442152441 +205,60397,3.5,1442152507 +205,61132,3.5,1442152303 +205,61323,3.5,1442152277 +205,62081,3.0,1442152587 +205,62999,2.0,1442152590 +205,63113,3.0,1442152310 +205,63859,4.0,1442152437 +205,63992,1.0,1442152368 +205,65261,5.0,1442152456 +205,65514,4.5,1442148475 +205,67255,4.5,1442148612 +205,68157,3.5,1442148329 +205,68954,4.0,1442137078 +205,69844,4.0,1442890218 +205,71379,0.5,1442152558 +205,71535,2.5,1442890229 +205,72378,3.0,1442137446 +205,72998,3.0,1442890222 +205,73017,3.5,1442890281 +205,76093,4.0,1442137157 +205,78499,3.0,1442148370 +205,79132,2.0,1442136916 +205,81229,4.5,1442890321 +205,81562,2.0,1442137442 +205,81834,4.0,1442887269 +205,83132,4.0,1442886945 +205,87232,3.5,1442887011 +205,88125,4.0,1442148527 +205,89745,4.0,1442148519 +205,91529,3.0,1442137155 +205,93721,5.0,1442148569 +205,95311,4.5,1442148583 +205,95858,4.0,1442148531 +205,96079,3.0,1442887273 +205,98491,5.0,1442148509 +205,102125,3.0,1442890241 +205,106489,4.0,1442887301 +205,111362,3.0,1442886996 +205,112171,3.0,1442137370 +205,112852,4.0,1442148661 +205,114552,4.5,1442137381 +205,115617,4.5,1442137321 +205,115713,4.0,1442137270 +205,116797,5.0,1442137124 +205,117529,3.5,1442137390 +205,117851,1.5,1442137409 +205,118696,4.0,1442137371 +205,119145,5.0,1442137325 +205,130073,3.0,1442137383 +205,133419,1.5,1442137397 +205,134170,3.5,1442137354 +205,135887,2.0,1442137400 +206,592,3.0,900784430 +206,1036,3.0,900784342 +206,1081,2.0,900784430 +206,1097,4.0,900784384 +206,1124,4.0,900784384 +206,1173,2.0,900784384 +206,1196,5.0,900784137 +206,1197,4.0,900784137 +206,1198,4.0,900784097 +206,1200,3.0,900784342 +206,1231,4.0,900784282 +206,1240,5.0,900784282 +206,1246,3.0,900784097 +206,1258,3.0,900784317 +206,1270,4.0,900784342 +206,1286,3.0,900784282 +206,1291,4.0,900784282 +206,1297,3.0,900784209 +206,1299,4.0,900784282 +206,1302,3.0,900784317 +206,1307,3.0,900784241 +206,1321,3.0,900784476 +206,1375,3.0,900784430 +206,1376,3.0,900784430 +206,1587,3.0,900784430 +206,1663,5.0,900784209 +206,1876,3.0,900783718 +206,1892,3.0,900783691 +206,1957,4.0,900784241 +206,1961,4.0,900784241 +206,1962,3.0,900784384 +206,1968,5.0,900784097 +206,1994,3.0,900784209 +206,2003,3.0,900784209 +206,2005,3.0,900784209 +206,2011,3.0,900784317 +206,2021,3.0,900784430 +206,2033,3.0,900784137 +206,2054,3.0,900784137 +207,24,0.5,1258439884 +207,44,0.5,1258439788 +207,69,5.0,1258440675 +207,256,3.0,1258439864 +207,296,5.0,1258440848 +207,333,3.0,1258439794 +207,431,0.5,1258439904 +207,608,5.0,1258440662 +207,673,0.5,1258439834 +207,779,0.5,1258440296 +207,899,0.5,1258439859 +207,902,0.5,1258439839 +207,910,0.5,1258439799 +207,914,0.5,1258439844 +207,1042,0.5,1258439899 +207,1120,3.0,1258439879 +207,1223,4.0,1258440810 +207,1275,0.5,1258440481 +207,1287,0.5,1258439894 +207,1339,4.0,1258439854 +207,1343,5.0,1258439849 +207,1367,0.5,1258440369 +207,1371,0.5,1258439869 +207,1405,2.5,1258439914 +207,1597,3.5,1258439804 +207,2058,0.5,1258439889 +207,2085,0.5,1258440374 +207,2336,0.5,1258439874 +207,2572,0.5,1258440344 +207,2968,2.0,1258439909 +207,3006,2.0,1258439926 +207,3256,3.0,1258439933 +207,3991,0.5,1258440380 +207,26564,0.5,1258440290 +207,27478,5.0,1258440877 +207,35836,4.0,1258441003 +207,45969,3.5,1258440769 +207,51372,0.5,1258440271 +207,58293,0.5,1258440351 +207,59834,0.5,1258440364 +207,67734,3.0,1258440219 +207,69122,4.0,1258440896 +207,69757,0.5,1258440315 +207,70121,0.5,1258440285 +207,71876,0.5,1258440240 +207,72209,0.5,1258440256 +208,16,4.0,1402255126 +208,231,5.0,1407813562 +208,296,4.5,1402191953 +208,356,4.5,1402192320 +208,924,3.5,1407812968 +208,1089,4.0,1402192047 +208,1203,4.5,1402191620 +208,1213,5.0,1402191643 +208,1232,2.0,1402191181 +208,1247,4.5,1407800396 +208,1259,4.5,1407800507 +208,1387,2.0,1407896569 +208,1569,5.0,1407800757 +208,1732,4.0,1425253162 +208,2060,3.5,1402191040 +208,2114,4.0,1402190969 +208,2858,5.0,1402511443 +208,2959,4.0,1402191626 +208,3210,3.0,1402190825 +208,3246,4.0,1402598447 +208,3484,3.0,1402598466 +208,3499,4.0,1407800441 +208,4027,4.0,1425253364 +208,4149,3.0,1402601089 +208,4238,4.0,1402192121 +208,4770,3.0,1407896581 +208,5364,4.0,1402598427 +208,6763,2.5,1407896571 +208,7348,4.0,1402191360 +208,7361,4.0,1402192005 +208,7502,4.0,1402191603 +208,37240,4.0,1402191423 +208,48516,4.0,1402191999 +208,69757,4.0,1402192192 +208,80463,4.5,1402598435 +208,86377,5.0,1407813013 +208,91658,4.5,1407812794 +208,94959,3.0,1407896565 +208,97921,5.0,1425253426 +208,104374,3.0,1425253353 +208,104879,4.0,1407800477 +208,105213,4.0,1402192294 +208,106782,4.5,1402255092 +208,106916,4.0,1407800463 +208,106920,4.5,1402191492 +208,111362,4.5,1402255071 +208,112183,5.0,1429476541 +208,112556,5.0,1413347280 +209,163,4.0,1265780034 +209,172,2.0,1265780108 +209,196,3.0,1265780086 +209,435,2.0,1265780046 +209,466,3.0,1265780055 +209,494,4.0,1265780066 +209,543,3.0,1265780091 +209,552,3.0,1265780116 +209,555,3.0,1265780039 +209,802,3.0,1265780144 +209,1233,4.0,1265780129 +209,1234,3.0,1265780071 +209,1278,2.0,1265780019 +209,1376,1.0,1265780172 +209,1625,4.0,1265780028 +209,2001,3.0,1265780098 +209,2395,2.0,1265780160 +209,2406,3.0,1265780062 +209,2657,2.0,1265780081 +209,2699,3.0,1265780009 +210,16,2.5,1070591352 +210,34,2.5,1070591483 +210,317,2.5,1070591317 +210,350,3.5,1070591308 +210,364,3.5,1070591443 +210,376,2.5,1070591346 +210,432,3.0,1070591354 +210,435,3.0,1070591342 +210,442,2.5,1070591327 +210,524,4.0,1070591598 +210,539,3.0,1070591456 +210,608,2.5,1070591427 +210,628,4.0,1070591378 +210,852,3.5,1070591382 +210,1136,3.0,1070591572 +210,1198,3.0,1070591432 +210,1259,3.0,1070591334 +210,1291,2.5,1070591449 +210,1307,2.5,1070591319 +210,1370,2.5,1070591373 +210,1394,2.5,1070591357 +210,1407,2.5,1070591368 +210,1968,3.5,1070591325 +210,1993,2.0,1070591532 +210,2115,2.5,1070591445 +210,2291,2.5,1070591364 +210,2355,3.5,1070591338 +210,2459,2.5,1070591511 +210,2461,2.5,1070591538 +210,2462,2.5,1070591536 +210,2804,4.5,1070591466 +210,6365,4.5,1070591464 +211,17,4.0,1460811260 +211,29,5.0,1460811791 +211,32,5.0,1460811900 +211,43,5.0,1460811873 +211,52,5.0,1460811527 +211,62,5.0,1460811099 +211,82,5.0,1460811588 +211,94,3.0,1460811622 +211,110,5.0,1460811378 +211,141,5.0,1460811761 +211,314,5.0,1460811701 +211,527,5.0,1460811746 +211,562,4.0,1460811237 +211,588,4.0,1460810847 +211,595,4.0,1460811488 +211,605,4.0,1460811556 +211,608,4.0,1460811808 +211,627,4.0,1460811735 +211,630,4.0,1460811831 +211,647,4.0,1460811358 +211,648,4.0,1460810957 +211,650,4.0,1460811772 +211,661,4.0,1460811719 +211,685,4.0,1460810866 +211,708,4.0,1460811571 +211,728,4.0,1460810993 +211,733,4.0,1460811414 +211,778,4.0,1460811331 +211,780,4.0,1460811399 +211,781,5.0,1460810888 +211,805,4.0,1460811859 +211,832,4.0,1460811318 +211,848,5.0,1460811636 +211,969,5.0,1460810939 +211,999,4.0,1460811608 +211,1041,5.0,1460811663 +211,1042,5.0,1460811115 +211,1073,5.0,1460811544 +211,1207,5.0,1460811137 +211,1225,5.0,1460811883 +211,1267,5.0,1460811016 +211,1270,4.0,1460811468 +211,1293,5.0,1460811686 +211,1357,5.0,1460811070 +211,1390,3.0,1460811345 +211,1391,2.0,1460811200 +211,1393,4.0,1460811514 +211,1399,5.0,1460811042 +211,1407,3.0,1460811915 +211,1479,4.0,1460810915 +211,1527,4.0,1460810432 +211,1580,3.0,1460810974 +211,1584,5.0,1460811675 +211,1617,4.0,1460811820 +211,1625,4.0,1460811844 +212,1,3.0,1218405007 +212,2,3.0,1218404003 +212,5,2.5,1218955060 +212,10,3.5,1218403807 +212,16,4.0,1218404198 +212,17,3.5,1228789756 +212,19,1.5,1218404015 +212,28,4.0,1218404673 +212,32,3.5,1254008544 +212,34,3.0,1218402042 +212,36,4.0,1218403917 +212,39,2.0,1218403872 +212,44,2.0,1260705118 +212,47,3.5,1218399790 +212,48,3.5,1218954970 +212,50,3.5,1228783190 +212,95,3.5,1218403885 +212,104,3.0,1218404119 +212,110,5.0,1218399244 +212,145,2.5,1260705114 +212,147,2.0,1228784984 +212,150,4.0,1218403258 +212,151,3.0,1218955011 +212,153,2.5,1218404711 +212,158,3.0,1218955077 +212,163,2.5,1218410254 +212,165,3.0,1227937953 +212,168,3.0,1218955124 +212,172,2.0,1260705034 +212,173,1.5,1218954991 +212,180,3.5,1228788958 +212,185,3.0,1218407304 +212,186,2.5,1218408337 +212,208,1.0,1218403841 +212,216,3.0,1227938587 +212,223,4.0,1218403976 +212,224,3.0,1227938321 +212,231,1.0,1218403790 +212,235,4.0,1218404204 +212,253,4.0,1218403846 +212,260,4.0,1218403651 +212,261,2.5,1228789183 +212,266,4.0,1218402220 +212,292,3.5,1218403822 +212,296,4.0,1218399743 +212,300,2.5,1218403969 +212,315,3.0,1218955383 +212,317,3.0,1218404202 +212,318,4.5,1218399810 +212,333,2.0,1218955809 +212,337,3.5,1218404165 +212,339,3.5,1218401641 +212,342,3.5,1218402777 +212,344,1.0,1218403754 +212,345,2.5,1218403136 +212,350,3.0,1260704788 +212,356,4.0,1228789362 +212,357,2.5,1218403826 +212,364,4.5,1218402239 +212,367,1.0,1218403792 +212,368,3.5,1218402737 +212,370,1.5,1218408333 +212,372,3.0,1227938492 +212,374,1.5,1218408458 +212,377,4.0,1218401602 +212,413,1.5,1218399009 +212,420,0.5,1218408383 +212,435,1.5,1260704800 +212,440,2.5,1260704021 +212,441,3.5,1228789202 +212,442,1.5,1227938061 +212,455,2.5,1227938597 +212,457,3.0,1218403664 +212,474,2.5,1228789067 +212,480,3.0,1218403623 +212,491,3.0,1218401907 +212,497,3.0,1218954867 +212,500,2.5,1218403787 +212,508,4.0,1218404057 +212,509,4.0,1218404104 +212,520,4.0,1218407449 +212,527,5.0,1218399784 +212,539,2.5,1218401241 +212,546,1.0,1218408479 +212,551,4.0,1218404110 +212,552,2.5,1218955161 +212,555,3.0,1218955112 +212,586,2.5,1218403867 +212,587,2.5,1218403811 +212,588,3.0,1218407218 +212,589,3.0,1218405143 +212,590,2.0,1218404771 +212,592,3.0,1218403706 +212,593,4.0,1218399822 +212,594,3.0,1218401253 +212,595,3.5,1218401003 +212,596,3.0,1218401957 +212,597,3.5,1218403778 +212,613,3.0,1228789330 +212,648,3.0,1218403759 +212,650,2.0,1228788753 +212,653,2.5,1218954782 +212,661,3.0,1227936989 +212,673,2.5,1253930188 +212,736,3.0,1218405291 +212,750,3.5,1218399346 +212,762,2.5,1218955732 +212,778,5.0,1218400587 +212,780,3.0,1218403727 +212,783,3.5,1218955418 +212,784,1.5,1218408385 +212,805,3.5,1227938232 +212,830,2.0,1218398895 +212,837,3.5,1218401491 +212,838,4.0,1218401751 +212,858,5.0,1218399403 +212,899,3.0,1227938309 +212,902,3.5,1227936983 +212,903,3.0,1218954935 +212,912,4.5,1218399268 +212,914,3.0,1254009228 +212,916,3.5,1218399029 +212,919,3.5,1218403980 +212,920,3.5,1218402653 +212,923,3.5,1227938077 +212,934,3.0,1218401138 +212,940,3.0,1218407459 +212,953,4.5,1218399500 +212,971,4.0,1228792130 +212,986,3.0,1218402149 +212,991,3.0,1228798783 +212,1012,2.0,1218402317 +212,1013,3.0,1218401208 +212,1022,3.0,1218400944 +212,1025,3.0,1218401992 +212,1027,4.0,1218407455 +212,1028,3.0,1218401487 +212,1032,3.0,1218402033 +212,1035,5.0,1218401597 +212,1036,3.0,1218403860 +212,1042,4.0,1218402386 +212,1059,3.5,1218955782 +212,1061,4.0,1253930115 +212,1073,4.0,1218403056 +212,1080,3.0,1218399632 +212,1088,3.5,1218955664 +212,1089,4.0,1218399762 +212,1090,3.0,1218954790 +212,1092,3.0,1218955372 +212,1101,3.0,1218404037 +212,1103,4.0,1218398987 +212,1104,3.5,1218398950 +212,1136,3.5,1218399629 +212,1148,3.5,1260704851 +212,1178,2.5,1218399700 +212,1183,4.0,1218404195 +212,1193,2.5,1218399677 +212,1197,4.0,1218403816 +212,1198,3.0,1218399748 +212,1200,3.0,1260704783 +212,1201,3.0,1218399417 +212,1203,3.5,1218955696 +212,1204,3.0,1218954979 +212,1206,3.5,1218399293 +212,1207,4.0,1218400550 +212,1208,3.5,1218399201 +212,1215,0.5,1218403266 +212,1220,3.0,1218404073 +212,1221,5.0,1218399406 +212,1222,4.5,1218399388 +212,1225,2.5,1228791147 +212,1230,4.0,1228789391 +212,1234,4.0,1228783210 +212,1240,3.5,1218403814 +212,1244,4.0,1253932167 +212,1246,4.0,1228789370 +212,1247,3.0,1218399423 +212,1250,2.5,1228792019 +212,1258,3.5,1227936978 +212,1259,3.0,1218404048 +212,1261,1.0,1227938686 +212,1262,3.0,1218399439 +212,1265,2.0,1218403838 +212,1266,3.0,1218954889 +212,1270,3.0,1218403561 +212,1271,4.0,1218401359 +212,1276,4.0,1218399298 +212,1278,4.0,1218400705 +212,1282,4.0,1260705098 +212,1287,3.5,1227938478 +212,1290,3.5,1218401260 +212,1291,3.0,1218399488 +212,1293,4.0,1218399391 +212,1302,3.5,1218955118 +212,1304,5.0,1218399259 +212,1307,2.5,1218403985 +212,1345,3.5,1227938591 +212,1370,2.5,1218954862 +212,1377,2.5,1218954975 +212,1380,4.0,1218954752 +212,1387,3.0,1218404023 +212,1391,3.0,1218404250 +212,1393,4.0,1218402703 +212,1407,2.0,1227938069 +212,1408,3.5,1218954892 +212,1411,4.0,1228788432 +212,1416,4.0,1227937142 +212,1441,4.0,1218402049 +212,1466,3.5,1218955584 +212,1485,2.0,1218404208 +212,1500,3.5,1270703248 +212,1517,1.5,1218403299 +212,1544,3.0,1260704117 +212,1562,2.5,1218955589 +212,1566,3.0,1218399067 +212,1569,3.0,1218955343 +212,1573,3.0,1218404181 +212,1580,1.5,1218402257 +212,1584,2.5,1228785044 +212,1586,3.0,1253930686 +212,1597,2.5,1218955043 +212,1608,3.0,1260704070 +212,1610,3.5,1218404008 +212,1619,3.5,1218402361 +212,1639,4.0,1218405272 +212,1644,2.5,1227938713 +212,1653,4.5,1218404246 +212,1673,3.0,1228793816 +212,1674,3.0,1218954785 +212,1682,4.0,1228789301 +212,1704,4.5,1218399414 +212,1717,1.5,1218408353 +212,1721,2.5,1218403801 +212,1722,2.5,1218954814 +212,1732,3.5,1253929366 +212,1777,3.5,1228789417 +212,1784,2.5,1218403271 +212,1873,4.0,1227937127 +212,1884,4.0,1253932255 +212,1907,3.5,1218400972 +212,1917,3.0,1218404021 +212,1918,2.5,1218408312 +212,1923,2.0,1218403962 +212,1927,2.0,1218399167 +212,1931,2.5,1228786974 +212,1947,4.0,1218403035 +212,1949,2.5,1218399598 +212,1951,3.0,1218402839 +212,1954,3.0,1227938183 +212,1955,2.5,1228788452 +212,1959,2.5,1228785018 +212,1960,3.0,1228792393 +212,1961,4.0,1218403920 +212,1962,3.0,1218955612 +212,1968,4.0,1218404027 +212,2000,3.5,1218404219 +212,2001,2.5,1218408176 +212,2002,3.0,1253929766 +212,2003,2.5,1229146351 +212,2005,3.0,1218409983 +212,2006,4.0,1218405356 +212,2011,2.5,1218404169 +212,2012,2.5,1218404097 +212,2020,3.5,1227938635 +212,2023,2.5,1218954953 +212,2028,4.0,1218399778 +212,2054,2.5,1218405004 +212,2080,2.5,1218955449 +212,2081,3.0,1218401037 +212,2083,2.0,1228789218 +212,2085,2.5,1218400982 +212,2087,4.0,1218401212 +212,2096,3.0,1218398999 +212,2100,2.0,1218954729 +212,2105,3.0,1260704942 +212,2114,2.5,1228798687 +212,2115,3.0,1218404116 +212,2117,3.0,1218409955 +212,2118,3.5,1228789115 +212,2125,4.0,1218401134 +212,2133,2.5,1218399052 +212,2134,3.0,1253932400 +212,2137,2.0,1218399037 +212,2139,3.5,1270703235 +212,2144,3.5,1218401981 +212,2145,3.0,1218398900 +212,2161,3.0,1218401934 +212,2167,3.0,1218955346 +212,2174,2.5,1218404076 +212,2193,2.5,1260705000 +212,2194,4.0,1218404379 +212,2236,2.5,1218401235 +212,2268,4.0,1218405283 +212,2273,3.5,1218401589 +212,2278,3.5,1218955174 +212,2291,3.5,1218404162 +212,2294,2.5,1218955199 +212,2296,1.0,1218408016 +212,2302,3.0,1218405425 +212,2310,2.0,1228788637 +212,2321,4.5,1218402898 +212,2324,4.0,1218399538 +212,2329,4.5,1218399186 +212,2336,3.0,1218955558 +212,2352,3.0,1218402519 +212,2355,2.5,1218401720 +212,2359,3.5,1253930047 +212,2383,0.5,1218408476 +212,2394,3.0,1228789780 +212,2396,3.5,1228789729 +212,2398,3.0,1228798125 +212,2406,2.0,1218401966 +212,2413,2.5,1218410207 +212,2420,3.5,1218955760 +212,2421,2.0,1253932268 +212,2424,2.5,1218954837 +212,2427,4.5,1218955624 +212,2428,2.5,1253932306 +212,2431,4.0,1218408340 +212,2455,2.0,1260704992 +212,2470,1.0,1218955052 +212,2485,1.5,1218408359 +212,2490,3.5,1260705039 +212,2501,3.5,1227938730 +212,2502,1.5,1218399669 +212,2529,2.5,1218954964 +212,2539,3.0,1218955244 +212,2541,3.5,1218955728 +212,2542,5.0,1227936491 +212,2565,4.0,1218401880 +212,2571,5.0,1218399610 +212,2572,4.0,1218401328 +212,2581,2.5,1227938706 +212,2599,3.0,1218955026 +212,2605,3.0,1218955497 +212,2617,3.0,1218955209 +212,2628,3.5,1218403836 +212,2640,3.0,1218404959 +212,2641,2.5,1253930414 +212,2642,2.0,1228087088 +212,2657,3.0,1218405307 +212,2671,3.0,1218401936 +212,2683,2.5,1218403960 +212,2687,4.0,1218401612 +212,2688,3.0,1253930511 +212,2692,4.0,1218399769 +212,2694,3.5,1218955279 +212,2699,2.0,1260703978 +212,2701,2.0,1218408481 +212,2706,2.5,1218404000 +212,2710,3.0,1218404090 +212,2716,2.5,1218403888 +212,2717,2.0,1218408266 +212,2719,2.5,1253933128 +212,2723,1.0,1227938612 +212,2724,3.0,1218955564 +212,2728,3.0,1228792230 +212,2761,3.5,1227938642 +212,2762,3.5,1227938032 +212,2791,2.0,1218404192 +212,2797,2.5,1218402054 +212,2804,3.0,1218399280 +212,2808,3.5,1228113385 +212,2819,4.0,1218403517 +212,2858,4.0,1218399183 +212,2881,3.0,1218407484 +212,2890,3.0,1218408077 +212,2908,4.0,1218955635 +212,2915,3.0,1218955438 +212,2918,4.5,1218404054 +212,2944,3.0,1218955789 +212,2953,2.0,1218408397 +212,2959,5.0,1218399374 +212,2987,2.5,1218403988 +212,2995,2.0,1227937089 +212,2997,4.0,1218403906 +212,3005,3.0,1253930439 +212,3006,3.5,1218955272 +212,3033,3.0,1218408159 +212,3034,3.0,1218401584 +212,3052,4.5,1218405169 +212,3053,2.0,1228113377 +212,3072,2.5,1218955016 +212,3079,4.0,1218401482 +212,3081,4.0,1218405379 +212,3082,3.0,1218955314 +212,3087,2.0,1253932411 +212,3101,2.5,1228113256 +212,3104,2.5,1228798064 +212,3108,3.5,1218955427 +212,3114,2.5,1218404018 +212,3135,4.0,1228788129 +212,3147,3.0,1218399442 +212,3148,4.0,1218398923 +212,3155,3.5,1218401107 +212,3168,3.0,1228794509 +212,3175,2.0,1260704012 +212,3176,3.5,1218405309 +212,3179,4.5,1218402473 +212,3186,4.0,1228789351 +212,3210,4.0,1218955460 +212,3243,0.5,1218408394 +212,3246,2.5,1228784385 +212,3247,2.0,1218955724 +212,3252,4.0,1218955704 +212,3253,1.5,1218408381 +212,3255,3.5,1218401457 +212,3256,3.5,1218409693 +212,3257,2.0,1253930535 +212,3263,1.0,1218408370 +212,3269,2.5,1228113367 +212,3273,2.5,1218398992 +212,3275,4.0,1228789293 +212,3300,3.5,1253929903 +212,3301,3.0,1253929789 +212,3354,1.5,1218398958 +212,3361,2.5,1218955472 +212,3362,3.0,1218955793 +212,3386,2.5,1218955485 +212,3408,3.5,1218401770 +212,3418,2.5,1227938253 +212,3421,1.5,1218403236 +212,3448,3.0,1218954772 +212,3452,2.0,1227937069 +212,3467,4.0,1228795370 +212,3468,4.0,1228795375 +212,3489,4.0,1228789342 +212,3526,2.5,1218410080 +212,3535,4.0,1218955407 +212,3549,3.5,1218402179 +212,3552,1.0,1218955135 +212,3555,4.0,1218955691 +212,3556,4.0,1218404568 +212,3578,5.0,1218403880 +212,3617,1.0,1218408348 +212,3623,3.0,1218405030 +212,3624,2.0,1218398904 +212,3671,2.5,1218954775 +212,3717,3.0,1218955023 +212,3745,2.5,1218408887 +212,3751,3.0,1218404819 +212,3752,2.0,1260705006 +212,3753,3.5,1218402875 +212,3785,1.5,1218408351 +212,3791,4.0,1227937048 +212,3793,4.0,1218403063 +212,3809,2.5,1253931197 +212,3868,1.5,1218408215 +212,3869,1.5,1218408331 +212,3882,2.0,1253932869 +212,3891,1.0,1229149491 +212,3897,4.5,1218403179 +212,3916,3.5,1218955225 +212,3936,2.5,1228788649 +212,3948,3.5,1218402747 +212,3967,3.0,1218955255 +212,3969,4.0,1253932843 +212,3977,2.5,1218956840 +212,3988,3.0,1218955743 +212,3996,3.5,1218403966 +212,4002,3.0,1260704969 +212,4011,5.0,1227936160 +212,4014,4.5,1218401726 +212,4015,0.5,1218408391 +212,4016,4.0,1218401755 +212,4018,2.5,1218954925 +212,4019,4.0,1218402140 +212,4022,2.5,1218404830 +212,4025,3.0,1218954850 +212,4027,2.5,1218404802 +212,4034,4.0,1218404777 +212,4041,3.5,1218401568 +212,4047,2.0,1228113530 +212,4069,2.5,1253933889 +212,4090,2.5,1228798710 +212,4103,3.5,1228791761 +212,4148,4.0,1218955215 +212,4161,2.5,1253932200 +212,4207,2.0,1228113519 +212,4212,2.5,1218409777 +212,4223,3.0,1218404408 +212,4226,5.0,1228370014 +212,4239,4.0,1228784640 +212,4246,4.0,1218401339 +212,4262,2.5,1218407891 +212,4270,2.5,1218408326 +212,4299,4.0,1218955651 +212,4306,4.0,1218403894 +212,4308,4.5,1218402772 +212,4310,4.0,1218954928 +212,4321,2.5,1260705071 +212,4322,2.0,1228787611 +212,4344,2.5,1218955606 +212,4367,3.0,1218955127 +212,4369,4.0,1218955295 +212,4370,4.0,1218405333 +212,4372,3.0,1228113510 +212,4388,1.5,1218408460 +212,4427,3.0,1228797160 +212,4447,2.5,1218408315 +212,4448,4.0,1218402350 +212,4558,1.0,1218408367 +212,4571,1.0,1218402512 +212,4616,3.5,1218401890 +212,4638,2.5,1260704980 +212,4641,3.0,1228794614 +212,4643,3.5,1218954747 +212,4701,3.5,1218955688 +212,4718,2.5,1260705010 +212,4720,4.0,1218954843 +212,4734,3.5,1218955359 +212,4735,1.0,1229149482 +212,4776,3.0,1218955171 +212,4816,2.0,1218408004 +212,4823,3.0,1227937025 +212,4855,3.0,1218955641 +212,4857,4.0,1228784319 +212,4865,4.0,1228798799 +212,4878,5.0,1218399339 +212,4886,4.0,1218404146 +212,4887,3.0,1227936446 +212,4896,2.5,1218401159 +212,4901,3.0,1218955364 +212,4963,4.0,1218404277 +212,4973,3.5,1218399180 +212,4979,4.0,1218404882 +212,4993,5.0,1218399565 +212,4995,4.5,1218404836 +212,5010,4.0,1218954078 +212,5013,3.5,1218409554 +212,5014,3.5,1227937020 +212,5015,3.5,1218955712 +212,5026,3.0,1228798876 +212,5047,0.5,1218408441 +212,5055,2.5,1228798654 +212,5064,4.0,1228789284 +212,5128,4.0,1228113497 +212,5134,3.5,1227936287 +212,5152,3.0,1228788778 +212,5218,4.0,1218401840 +212,5219,3.0,1253930577 +212,5254,2.5,1218955741 +212,5266,3.0,1260704868 +212,5296,1.5,1218408464 +212,5299,3.5,1218401197 +212,5308,1.5,1218408364 +212,5316,3.5,1218401767 +212,5349,4.0,1218402971 +212,5357,3.5,1228789865 +212,5377,4.0,1218403108 +212,5378,3.0,1218404733 +212,5388,2.0,1260704974 +212,5389,3.5,1218408878 +212,5400,3.0,1227937018 +212,5418,4.5,1218404916 +212,5421,3.5,1228784651 +212,5444,3.0,1218402230 +212,5445,4.0,1218404080 +212,5459,2.0,1218408296 +212,5479,3.0,1253933167 +212,5481,2.5,1253928645 +212,5502,3.0,1227936946 +212,5507,2.0,1253930330 +212,5574,3.5,1227936195 +212,5611,3.5,1228113759 +212,5630,4.0,1218402933 +212,5650,3.0,1218402980 +212,5669,1.0,1218404871 +212,5679,3.5,1260704173 +212,5747,2.5,1228786347 +212,5810,3.0,1218955647 +212,5816,2.5,1218401155 +212,5872,2.5,1218955155 +212,5876,2.5,1228788465 +212,5903,4.0,1228031836 +212,5941,1.5,1218408243 +212,5945,3.0,1218955083 +212,5947,3.5,1228787560 +212,5952,5.0,1218399570 +212,5956,3.0,1260704859 +212,5989,3.5,1227938227 +212,5992,2.0,1228794021 +212,5994,3.5,1228789810 +212,5995,4.0,1218399727 +212,6059,3.0,1218402334 +212,6157,2.0,1218955337 +212,6188,2.0,1218408008 +212,6218,3.5,1218401705 +212,6281,3.0,1218410311 +212,6297,3.5,1218401830 +212,6333,3.5,1228789408 +212,6365,3.0,1218409847 +212,6377,3.5,1218405371 +212,6378,3.5,1218401845 +212,6383,3.0,1228113483 +212,6482,0.5,1218407490 +212,6503,2.0,1253930097 +212,6534,2.0,1218955321 +212,6537,3.0,1218955089 +212,6539,5.0,1218402891 +212,6541,2.5,1218955714 +212,6565,3.5,1228789760 +212,6591,4.5,1228113743 +212,6662,3.0,1228788688 +212,6743,3.0,1218400959 +212,6753,3.0,1218402358 +212,6754,3.0,1228789191 +212,6763,1.5,1218408246 +212,6787,3.0,1228790939 +212,6796,2.0,1228783480 +212,6807,4.0,1218954802 +212,6863,3.5,1218402957 +212,6870,4.0,1228034541 +212,6874,3.5,1218955230 +212,6879,3.5,1228798581 +212,6888,1.5,1218408462 +212,6893,3.0,1228784975 +212,6934,3.5,1227938329 +212,6936,2.5,1218407988 +212,6942,2.5,1218405364 +212,6947,3.0,1260704846 +212,6953,3.0,1218955047 +212,6979,2.5,1218954997 +212,6985,3.5,1253931122 +212,7004,1.5,1218408318 +212,7009,3.0,1218401895 +212,7018,3.5,1228797967 +212,7046,2.5,1218956837 +212,7060,3.0,1228789174 +212,7139,5.0,1218404552 +212,7147,5.0,1218404538 +212,7149,3.0,1218401984 +212,7150,2.0,1218408882 +212,7153,5.0,1218399568 +212,7156,4.0,1228794537 +212,7160,3.5,1228113328 +212,7162,3.0,1218955672 +212,7164,4.0,1218402882 +212,7179,4.0,1228789296 +212,7255,1.5,1218408372 +212,7285,4.0,1228798584 +212,7293,4.0,1218401665 +212,7303,3.0,1228783270 +212,7317,1.0,1218408253 +212,7318,3.0,1228113320 +212,7324,3.5,1218402664 +212,7361,3.5,1218399359 +212,7373,3.0,1253929286 +212,7386,4.0,1218402383 +212,7438,3.5,1227938222 +212,7451,3.0,1218401917 +212,7454,3.0,1253930490 +212,7458,3.5,1228789650 +212,7579,2.0,1228783446 +212,7669,4.0,1270703345 +212,7714,3.5,1218401116 +212,7753,3.5,1228789654 +212,8132,4.5,1218954133 +212,8360,3.5,1228789725 +212,8368,2.5,1218401821 +212,8371,4.0,1228113477 +212,8376,2.0,1218408124 +212,8493,4.0,1228788459 +212,8528,2.0,1218408139 +212,8529,3.5,1218402992 +212,8530,5.0,1218399315 +212,8533,2.0,1218402835 +212,8636,3.5,1218404909 +212,8641,1.5,1218407990 +212,8644,4.0,1218402680 +212,8661,3.0,1228797677 +212,8665,4.0,1218404767 +212,8781,3.0,1218410309 +212,8783,3.0,1218955233 +212,8784,4.5,1218405181 +212,8807,1.0,1218402660 +212,8833,3.5,1260704639 +212,8860,3.0,1227936501 +212,8861,2.5,1253930660 +212,8873,4.0,1218955800 +212,8874,3.5,1260704059 +212,8910,3.0,1253930311 +212,8928,4.0,1253926712 +212,8935,1.5,1218955001 +212,8943,3.5,1218402046 +212,8949,3.0,1229149290 +212,8957,3.0,1218410095 +212,8961,3.5,1218405340 +212,8966,3.0,1228788609 +212,8970,4.0,1218402625 +212,8984,3.0,1218408865 +212,8998,3.5,1228797119 +212,25788,3.0,1228796260 +212,26680,3.5,1218402548 +212,26870,1.0,1218408443 +212,27706,3.0,1218402223 +212,27790,2.5,1228788180 +212,27831,4.0,1228784324 +212,27904,3.0,1253931231 +212,30707,3.0,1260704825 +212,30749,4.0,1228113290 +212,30793,3.5,1218402069 +212,30812,3.0,1260704866 +212,30816,4.0,1228789315 +212,30825,3.0,1218955620 +212,31193,3.0,1218400968 +212,31694,1.0,1218404649 +212,32174,2.0,1218955195 +212,32587,3.0,1218404902 +212,33004,2.5,1218954682 +212,33166,4.5,1218399307 +212,33493,3.5,1218404730 +212,33615,2.5,1218408155 +212,33621,3.5,1253926266 +212,33660,3.5,1218955354 +212,33669,3.5,1218400995 +212,33679,2.5,1218954716 +212,33794,4.5,1218954703 +212,33836,1.0,1218408014 +212,34048,3.0,1227937009 +212,34150,3.5,1218955751 +212,34319,2.0,1218955302 +212,34405,4.0,1253928613 +212,34532,3.5,1228789676 +212,35836,3.5,1279589129 +212,36401,2.5,1260704730 +212,36517,2.5,1228374424 +212,36519,3.5,1227936199 +212,36525,3.0,1218402709 +212,36529,3.0,1218954874 +212,37729,4.5,1218402080 +212,37733,3.0,1253929538 +212,38038,3.5,1218954909 +212,38499,4.0,1253934524 +212,38886,3.0,1253926617 +212,39231,3.5,1228113713 +212,39234,4.0,1218402822 +212,39435,3.5,1228113710 +212,39446,3.5,1228113468 +212,40148,4.0,1227936143 +212,40629,3.0,1218955778 +212,40815,2.5,1218401817 +212,40819,4.0,1218405105 +212,40826,3.5,1218402337 +212,41566,4.0,1218401123 +212,41997,3.0,1218955251 +212,42738,3.0,1253926669 +212,43908,3.5,1227936180 +212,43930,2.5,1228087080 +212,43936,1.0,1218402026 +212,44022,2.5,1218408149 +212,44191,3.0,1218954136 +212,44193,2.5,1227936555 +212,44199,2.0,1218955096 +212,44974,3.0,1228788739 +212,45186,3.5,1218955569 +212,45431,2.5,1218402850 +212,45447,3.0,1227937004 +212,45499,3.0,1218405166 +212,45668,2.5,1218404676 +212,45720,2.5,1218955551 +212,45722,3.5,1218399022 +212,45728,4.5,1218408112 +212,46322,3.5,1228113697 +212,46530,3.0,1218954744 +212,46578,4.0,1218399556 +212,46723,3.0,1218403330 +212,46948,2.5,1218402766 +212,46970,1.0,1218408000 +212,46972,2.5,1253932512 +212,46976,4.0,1218405411 +212,47200,3.0,1227936211 +212,47254,2.5,1229149478 +212,47382,2.5,1218408706 +212,47610,3.0,1218408947 +212,48304,3.0,1228784913 +212,48385,1.5,1218405016 +212,48394,5.0,1218399688 +212,48516,3.5,1218399321 +212,48738,4.0,1218408652 +212,48774,2.0,1218405124 +212,48780,4.0,1218399733 +212,48997,3.0,1228796083 +212,49272,4.0,1228031784 +212,49286,2.5,1218401171 +212,49530,4.0,1228789384 +212,49772,3.5,1218408952 +212,49822,2.5,1218408858 +212,49957,4.5,1218401030 +212,51077,2.5,1228113681 +212,51080,4.0,1228792317 +212,51255,4.0,1270703173 +212,51662,3.5,1218403092 +212,51834,2.5,1218401113 +212,52435,3.0,1227939154 +212,52722,2.0,1260704895 +212,52975,3.5,1218401810 +212,53121,3.0,1253932539 +212,53125,4.0,1218405369 +212,53322,2.5,1218408867 +212,53956,4.5,1233871131 +212,53972,3.0,1260704821 +212,53996,3.5,1260704833 +212,54001,2.5,1218405137 +212,54190,4.5,1218403121 +212,54259,3.5,1218402976 +212,54272,3.5,1218405024 +212,54286,3.5,1218399240 +212,54503,2.5,1218405134 +212,54775,3.5,1227936317 +212,55110,3.5,1218405121 +212,55247,3.0,1270703145 +212,55267,4.0,1218401011 +212,55442,4.5,1218954052 +212,55451,3.5,1218400728 +212,55872,2.5,1218403292 +212,56152,3.0,1218401759 +212,56174,3.0,1218404889 +212,56251,3.0,1218407929 +212,56339,4.0,1218409130 +212,56367,4.5,1218399511 +212,56715,4.0,1270702942 +212,56757,2.5,1218954938 +212,57326,2.0,1227936475 +212,57669,4.0,1254009201 +212,58105,3.0,1218401989 +212,58154,4.0,1218401204 +212,58295,3.5,1227936426 +212,58299,3.5,1228374469 +212,58347,4.0,1228029892 +212,58559,4.5,1218399880 +212,58998,2.5,1227938918 +212,59103,2.5,1227938934 +212,59315,4.0,1227937159 +212,59501,4.0,1218402998 +212,60040,3.0,1227938927 +212,60069,4.0,1227936901 +212,60072,2.0,1228815196 +212,60471,2.5,1253926273 +212,60684,3.5,1253926473 +212,61248,3.5,1227936275 +212,62113,3.0,1227938824 +212,62849,3.5,1227938788 +212,63082,3.0,1254009194 +212,63436,3.5,1227938836 +212,63540,0.5,1227939147 +212,63992,2.0,1253932449 +212,64034,4.0,1270703060 +212,64957,3.5,1253929128 +212,65682,3.0,1253926671 +212,66097,4.0,1253926317 +212,66934,4.0,1253926148 +212,68073,4.0,1260687978 +212,68157,4.0,1253926400 +212,68319,3.5,1253928975 +212,68358,4.5,1260688161 +212,68791,3.0,1253926279 +212,69122,3.5,1260688210 +212,69481,3.5,1270702973 +212,69526,2.5,1253929623 +212,69712,3.5,1260688041 +212,69757,3.5,1270703128 +212,69844,3.0,1260704910 +212,70286,4.0,1270703134 +212,70599,3.0,1260688196 +212,71057,3.5,1253926073 +212,72407,2.5,1260704676 +212,72605,3.0,1260704701 +212,72696,1.5,1260705013 +212,72998,4.0,1278727595 +212,74508,4.0,1270703038 +212,76054,3.5,1279587821 +212,76093,4.5,1278727614 +212,79091,4.5,1279587789 +212,79132,5.0,1279577116 +212,79134,3.0,1279588305 +213,1,3.0,1462637445 +213,2,3.0,1462637790 +213,7,2.0,1462639898 +213,13,2.5,1462644085 +213,15,3.0,1462635671 +213,19,2.0,1462644085 +213,24,2.5,1462644086 +213,32,1.5,1462640571 +213,34,1.5,1462638094 +213,39,2.0,1462638110 +213,47,2.5,1462637527 +213,48,2.0,1462638445 +213,60,2.0,1462644085 +213,89,3.5,1462644085 +213,95,2.0,1462639100 +213,104,2.0,1462638072 +213,110,2.5,1462640515 +213,141,2.0,1462639009 +213,150,1.5,1462640603 +213,153,4.0,1462644086 +213,158,3.0,1462638823 +213,160,3.0,1462635459 +213,165,3.5,1462634465 +213,168,3.5,1462640061 +213,170,3.0,1462639549 +213,172,2.5,1462644086 +213,173,2.0,1462638554 +213,185,3.0,1462638956 +213,196,2.5,1462639477 +213,204,2.5,1462640375 +213,208,4.0,1462634483 +213,216,1.0,1462638879 +213,239,1.5,1462644085 +213,253,2.5,1462644085 +213,256,0.5,1462639722 +213,260,5.0,1462633899 +213,292,4.0,1462639044 +213,293,3.0,1462637525 +213,313,3.0,1462644085 +213,316,4.5,1462638164 +213,317,2.0,1462638951 +213,339,2.5,1462638715 +213,344,1.0,1462637985 +213,349,2.5,1462634664 +213,355,1.5,1462639636 +213,356,2.0,1462637431 +213,357,1.0,1462638281 +213,364,2.5,1462637652 +213,367,1.0,1462637943 +213,368,3.0,1462638909 +213,374,1.5,1462640124 +213,377,4.0,1462637809 +213,379,3.0,1462640338 +213,380,2.0,1462640797 +213,435,1.0,1462639673 +213,440,2.5,1462639919 +213,442,3.0,1462634613 +213,455,1.5,1462639665 +213,457,4.0,1462637705 +213,474,3.5,1462644085 +213,480,5.0,1462637487 +213,494,4.0,1462644085 +213,500,2.0,1462638070 +213,520,1.5,1462638646 +213,539,2.0,1462638197 +213,541,2.0,1462634127 +213,552,4.0,1462640027 +213,586,2.0,1462644085 +213,587,2.5,1462638380 +213,588,3.0,1462640637 +213,589,4.0,1462634034 +213,590,1.0,1462638291 +213,592,3.5,1462634486 +213,593,2.5,1462637437 +213,594,2.0,1462634611 +213,595,3.0,1462637928 +213,596,2.0,1462639031 +213,597,3.0,1462637992 +213,608,2.0,1462640534 +213,616,1.5,1462639299 +213,648,3.0,1462634392 +213,653,4.0,1462635300 +213,661,1.5,1462639563 +213,673,2.0,1462638390 +213,709,2.0,1462644085 +213,719,2.5,1462644086 +213,724,2.5,1462639548 +213,733,4.0,1462637822 +213,736,4.0,1462634563 +213,741,2.5,1462644086 +213,748,3.5,1462644086 +213,780,5.0,1462634190 +213,783,2.5,1462638693 +213,786,4.0,1462635328 +213,788,1.5,1462644086 +213,799,3.0,1462644085 +213,802,1.5,1462638911 +213,805,2.5,1462639710 +213,810,2.0,1462644085 +213,832,4.0,1462635324 +213,837,3.0,1462639375 +213,919,2.5,1462638008 +213,953,2.5,1462637847 +213,986,2.0,1462644085 +213,1015,2.5,1462644086 +213,1020,1.5,1462639524 +213,1022,2.0,1462638928 +213,1025,2.0,1462644085 +213,1027,4.0,1462639280 +213,1028,3.0,1462644086 +213,1029,1.5,1462639478 +213,1032,1.5,1462638863 +213,1033,1.5,1462639823 +213,1035,2.0,1462638208 +213,1036,3.5,1462634041 +213,1047,3.0,1462644085 +213,1064,2.5,1462644085 +213,1073,1.5,1462638225 +213,1088,3.0,1462638479 +213,1097,2.5,1462637765 +213,1101,2.5,1462638315 +213,1127,2.5,1462638456 +213,1136,1.0,1462640574 +213,1196,5.0,1462633901 +213,1197,3.5,1462637559 +213,1198,3.0,1462633905 +213,1200,3.0,1462634054 +213,1210,5.0,1462633922 +213,1214,2.5,1462637613 +213,1219,2.0,1462640698 +213,1240,3.5,1462634066 +213,1253,3.0,1462639854 +213,1265,2.5,1462640563 +213,1270,3.0,1462637492 +213,1271,1.5,1462639964 +213,1274,2.5,1462644087 +213,1275,2.5,1462639102 +213,1282,1.0,1462638483 +213,1286,2.0,1462644085 +213,1291,3.0,1462634006 +213,1321,2.5,1462639987 +213,1333,2.0,1462638520 +213,1359,1.0,1462639884 +213,1367,1.5,1462639084 +213,1370,3.0,1462634560 +213,1377,3.0,1462634621 +213,1385,3.0,1462635476 +213,1387,2.5,1462637960 +213,1391,1.0,1462638171 +213,1393,1.0,1462638074 +213,1396,2.5,1462639889 +213,1407,2.0,1462644085 +213,1409,1.5,1462640420 +213,1422,4.5,1462635638 +213,1438,2.0,1462640181 +213,1479,3.0,1462639892 +213,1485,1.0,1462637952 +213,1499,3.0,1462635399 +213,1500,4.0,1462639175 +213,1513,1.0,1462640105 +213,1515,2.5,1462644085 +213,1517,1.0,1462638010 +213,1527,4.0,1462637631 +213,1544,4.0,1462634503 +213,1552,4.5,1462634535 +213,1556,1.5,1462640168 +213,1562,1.0,1462638485 +213,1566,4.0,1462638424 +213,1573,1.0,1462634445 +213,1580,4.0,1462637623 +213,1584,2.0,1462637958 +213,1586,2.0,1462639793 +213,1588,1.5,1462639993 +213,1590,2.5,1462644087 +213,1597,3.0,1462639443 +213,1603,3.0,1462644086 +213,1608,4.0,1462634565 +213,1610,3.5,1462638033 +213,1620,3.0,1462644086 +213,1644,2.0,1462644086 +213,1682,2.5,1462637551 +213,1687,4.0,1462640031 +213,1688,3.0,1462639448 +213,1690,3.5,1462644087 +213,1702,3.0,1462644086 +213,1704,4.0,1462637533 +213,1721,2.5,1462637608 +213,1726,3.5,1462644087 +213,1777,1.0,1462638404 +213,1779,2.5,1462639482 +213,1784,2.0,1462637897 +213,1792,4.0,1462640042 +213,1801,4.0,1462639272 +213,1831,2.0,1462639731 +213,1833,3.0,1462644085 +213,1835,2.0,1462644085 +213,1848,3.0,1462644085 +213,1862,2.5,1462644086 +213,1876,2.0,1462638845 +213,1882,4.5,1462634660 +213,1892,2.5,1462640427 +213,1894,3.0,1462639988 +213,1907,4.0,1462638080 +213,1911,2.0,1462639119 +213,1917,1.5,1462634402 +213,1920,3.0,1462644087 +213,1923,1.0,1462638048 +213,1961,2.5,1462637738 +213,1967,1.0,1462634704 +213,2000,2.5,1462634507 +213,2006,1.5,1462634559 +213,2009,2.5,1462644086 +213,2018,1.0,1462639012 +213,2046,2.5,1462644086 +213,2052,3.5,1462640413 +213,2054,3.0,1462638835 +213,2058,3.5,1462639289 +213,2059,2.5,1462639711 +213,2078,2.0,1462638376 +213,2081,4.0,1462638416 +213,2085,2.5,1462638969 +213,2087,2.0,1462639250 +213,2089,2.0,1462644085 +213,2090,2.0,1462640367 +213,2094,2.5,1462644086 +213,2096,2.5,1462639206 +213,2100,2.5,1462640137 +213,2115,3.5,1462634342 +213,2125,3.5,1462639405 +213,2126,1.5,1462640439 +213,2140,2.5,1462644086 +213,2141,2.5,1462644085 +213,2143,1.5,1462644085 +213,2161,2.0,1462639138 +213,2167,3.0,1462634533 +213,2174,1.0,1462638198 +213,2193,2.5,1462635387 +213,2273,3.0,1462634497 +213,2291,2.5,1462644086 +213,2294,2.0,1462638358 +213,2321,3.0,1462638532 +213,2322,3.0,1462635583 +213,2334,3.5,1462644085 +213,2340,3.0,1462638898 +213,2353,3.0,1462644086 +213,2355,1.5,1462640712 +213,2405,2.5,1462644085 +213,2406,3.0,1462639638 +213,2407,2.5,1462640083 +213,2413,3.0,1462640254 +213,2428,3.0,1462639780 +213,2429,2.0,1462644085 +213,2470,2.5,1462639529 +213,2485,3.0,1462639381 +213,2490,3.0,1462635394 +213,2496,2.5,1462644087 +213,2528,2.0,1462640273 +213,2529,1.5,1462638374 +213,2539,2.5,1462638859 +213,2541,1.5,1462638703 +213,2571,4.0,1462633918 +213,2572,1.0,1462638022 +213,2581,2.5,1462639420 +213,2605,3.0,1462639282 +213,2617,4.0,1462634414 +213,2628,3.0,1462637699 +213,2671,2.0,1462638027 +213,2687,2.0,1462638504 +213,2688,2.5,1462644085 +213,2699,3.0,1462640462 +213,2701,2.0,1462638329 +213,2710,1.5,1462638126 +213,2716,2.0,1462644086 +213,2720,2.5,1462639894 +213,2722,2.0,1462639402 +213,2723,3.0,1462639935 +213,2762,2.5,1462637529 +213,2763,3.5,1462639169 +213,2791,1.0,1462638089 +213,2803,3.0,1462639990 +213,2807,2.0,1462644086 +213,2808,2.5,1462635510 +213,2826,2.0,1462644086 +213,2835,3.0,1462644085 +213,2881,4.0,1462640068 +213,2916,2.0,1462634470 +213,2953,1.5,1462644086 +213,2985,1.5,1462634549 +213,2987,2.5,1462644085 +213,3000,2.5,1462637734 +213,3005,2.0,1462639368 +213,3034,2.5,1462639068 +213,3052,1.0,1462638067 +213,3054,2.5,1462644085 +213,3113,2.0,1462639937 +213,3114,2.5,1462637690 +213,3147,2.5,1462637541 +213,3156,1.0,1462639106 +213,3157,1.5,1462639291 +213,3175,3.5,1462644087 +213,3213,3.5,1462644085 +213,3247,2.0,1462639537 +213,3256,3.0,1462639372 +213,3258,1.0,1462640169 +213,3269,2.5,1462644086 +213,3300,3.0,1462638152 +213,3301,3.5,1462638475 +213,3354,2.5,1462644086 +213,3408,2.0,1462640755 +213,3409,2.5,1462638229 +213,3471,3.5,1462638284 +213,3489,1.5,1462638496 +213,3510,3.5,1462644086 +213,3534,2.0,1462640097 +213,3578,2.0,1462640500 +213,3593,1.0,1462639508 +213,3615,3.5,1462635457 +213,3624,3.0,1462634569 +213,3705,3.5,1462635604 +213,3717,3.0,1462637980 +213,3745,4.0,1462639449 +213,3751,1.0,1462637893 +213,3793,4.0,1462637599 +213,3825,2.0,1462638566 +213,3826,2.5,1462644087 +213,3827,1.5,1462639240 +213,3882,2.0,1462638854 +213,3968,1.5,1462638883 +213,3977,2.5,1462634421 +213,3981,1.5,1462640046 +213,3986,1.5,1462635294 +213,3988,2.0,1462638205 +213,3994,2.5,1462637877 +213,3996,2.0,1462644087 +213,3999,2.0,1462640117 +213,4014,2.0,1462637895 +213,4016,5.0,1462638146 +213,4018,2.0,1462637868 +213,4022,2.0,1462637632 +213,4025,2.5,1462640685 +213,4069,3.0,1462638660 +213,4084,3.0,1462640140 +213,4085,3.0,1462634634 +213,4090,0.5,1462644085 +213,4121,2.5,1462644085 +213,4232,1.0,1462634605 +213,4238,2.5,1462639834 +213,4270,3.5,1462634412 +213,4299,3.0,1462638105 +213,4306,3.5,1462637520 +213,4343,5.0,1462644087 +213,4361,1.5,1462639852 +213,4366,4.0,1462644087 +213,4367,2.5,1462640817 +213,4370,2.5,1462637853 +213,4386,1.0,1462639796 +213,4446,2.5,1462634675 +213,4447,2.5,1462640682 +213,4506,4.0,1462635625 +213,4519,2.0,1462644085 +213,4545,3.0,1462640268 +213,4638,4.0,1462638038 +213,4643,3.0,1462644086 +213,4673,3.0,1462635549 +213,4676,2.5,1462644085 +213,4700,2.0,1462638356 +213,4720,2.0,1462637889 +213,4756,2.5,1462644085 +213,4823,2.5,1462644087 +213,4874,2.5,1462644086 +213,4876,2.0,1462639759 +213,4886,3.5,1462634082 +213,4890,1.5,1462638309 +213,4896,4.0,1462634117 +213,4993,4.5,1462633927 +213,4995,1.0,1462637538 +213,5064,4.0,1462638535 +213,5066,1.5,1462639258 +213,5108,3.0,1462644085 +213,5146,4.5,1462644086 +213,5171,2.5,1462639053 +213,5218,3.0,1462637633 +213,5219,2.5,1462634513 +213,5247,2.5,1462644085 +213,5254,1.5,1462634523 +213,5282,2.5,1462644085 +213,5293,3.0,1462640264 +213,5299,2.0,1462637956 +213,5313,3.5,1462634680 +213,5349,3.5,1462637593 +213,5378,2.5,1462637672 +213,5389,2.5,1462644085 +213,5400,4.0,1462639451 +213,5418,4.0,1462634084 +213,5419,1.5,1462639293 +213,5444,4.0,1462644087 +213,5445,3.0,1462634120 +213,5459,2.5,1462640626 +213,5463,4.0,1462635336 +213,5478,4.0,1462635556 +213,5502,3.5,1462644086 +213,5504,0.5,1462644086 +213,5506,3.0,1462644085 +213,5507,3.5,1462638311 +213,5528,1.5,1462639038 +213,5574,3.5,1462634481 +213,5618,2.5,1462637546 +213,5620,2.5,1462638651 +213,5621,2.0,1462639526 +213,5679,1.5,1462640714 +213,5784,2.5,1462644086 +213,5816,4.0,1462637621 +213,5882,4.0,1462639746 +213,5900,1.5,1462639534 +213,5943,2.0,1462639122 +213,5952,4.0,1462633934 +213,5957,2.5,1462639089 +213,6058,2.0,1462639407 +213,6155,3.0,1462638133 +213,6156,3.0,1462638965 +213,6157,3.5,1462634527 +213,6242,2.5,1462644085 +213,6264,1.5,1462639800 +213,6281,3.5,1462638097 +213,6283,3.5,1462639234 +213,6287,1.0,1462638217 +213,6297,2.5,1462639143 +213,6333,4.0,1462637696 +213,6350,3.5,1462644086 +213,6365,2.5,1462637629 +213,6373,1.0,1462640593 +213,6377,2.5,1462637522 +213,6378,4.0,1462634311 +213,6534,3.5,1462638150 +213,6537,2.5,1462637827 +213,6539,3.0,1462637508 +213,6541,3.5,1462638131 +213,6564,3.0,1462638323 +213,6566,0.5,1462644087 +213,6593,1.5,1462638313 +213,6659,4.0,1462635452 +213,6753,2.0,1462639812 +213,6754,5.0,1462634499 +213,6873,2.0,1462639692 +213,6879,4.0,1462639751 +213,6889,1.5,1462639826 +213,6934,2.0,1462634152 +213,6936,1.0,1462638029 +213,6942,2.0,1462637743 +213,6944,1.5,1462639971 +213,6958,2.5,1462644085 +213,6959,4.5,1462644086 +213,6979,3.0,1462639266 +213,6996,2.5,1462644086 +213,7001,2.0,1462644086 +213,7004,1.5,1462640242 +213,7017,3.5,1462644085 +213,7045,2.5,1462644085 +213,7149,2.0,1462639181 +213,7153,5.0,1462633907 +213,7163,4.0,1462639144 +213,7164,3.0,1462640400 +213,7293,2.0,1462637749 +213,7324,2.0,1462640004 +213,7360,0.5,1462644086 +213,7367,2.0,1462639699 +213,7373,4.0,1462637813 +213,7380,3.0,1462639760 +213,7439,1.5,1462639223 +213,7444,1.5,1462638250 +213,7445,2.0,1462637983 +213,7451,2.0,1462637838 +213,7454,3.5,1462638124 +213,7458,2.5,1462634314 +213,8169,2.5,1462644087 +213,8360,3.5,1462634183 +213,8361,4.0,1462637761 +213,8368,3.0,1462634103 +213,8371,2.0,1462634518 +213,8373,1.5,1462639544 +213,8529,2.5,1462637764 +213,8533,2.0,1462637771 +213,8607,4.0,1462644085 +213,8633,3.0,1462644086 +213,8636,4.0,1462634203 +213,8640,3.5,1462644085 +213,8643,3.0,1462639733 +213,8644,5.0,1462640562 +213,8665,2.5,1462637458 +213,8666,3.0,1462639385 +213,8783,2.0,1462644085 +213,8798,3.5,1462634433 +213,8808,2.5,1462639621 +213,8810,4.0,1462634650 +213,8814,1.0,1462644085 +213,8860,4.0,1462635492 +213,8870,2.5,1462644086 +213,8907,1.5,1462638833 +213,8957,2.0,1462644085 +213,8961,4.0,1462634056 +213,8965,3.0,1462638505 +213,8972,4.5,1462634345 +213,8985,2.0,1462638562 +213,26375,2.5,1462644084 +213,26662,2.5,1462644085 +213,27032,1.5,1462635654 +213,27660,2.5,1462638488 +213,27706,2.0,1462638247 +213,27821,3.0,1462640149 +213,27837,3.0,1462644085 +213,30793,2.5,1462640634 +213,31193,3.0,1462644085 +213,31221,1.0,1462639701 +213,31685,2.5,1462637776 +213,31696,3.5,1462637830 +213,32017,2.5,1462640087 +213,32029,3.0,1462640401 +213,32031,3.5,1462638838 +213,32296,2.0,1462639606 +213,32596,4.0,1462639738 +213,33004,2.0,1462637816 +213,33493,2.5,1462637627 +213,33615,2.0,1462637962 +213,33679,3.5,1462634157 +213,33681,0.5,1462644086 +213,33794,3.5,1462634020 +213,33836,1.5,1462639734 +213,34048,3.5,1462634320 +213,34150,4.0,1462644087 +213,34319,3.5,1462634423 +213,34332,3.0,1462640324 +213,34405,3.5,1462637701 +213,34534,1.5,1462640183 +213,35957,3.5,1462640164 +213,36401,2.0,1462638976 +213,36519,2.5,1462635282 +213,36525,3.0,1462639662 +213,36529,2.0,1462640681 +213,37380,2.5,1462644087 +213,37386,1.5,1462638684 +213,37727,3.5,1462644085 +213,37733,3.5,1462644086 +213,37830,3.0,1462639842 +213,40339,1.5,1462639642 +213,40815,3.5,1462634139 +213,40851,3.0,1462640369 +213,41566,3.0,1462637670 +213,41569,2.5,1462637939 +213,42721,1.0,1462644085 +213,42738,3.5,1462634590 +213,43560,3.0,1462640033 +213,43836,1.0,1462639973 +213,43928,1.5,1462639646 +213,43936,2.0,1462639624 +213,44004,2.5,1462639686 +213,44022,2.5,1462638121 +213,44191,3.5,1462637453 +213,44193,1.5,1462639302 +213,44199,5.0,1462637909 +213,44828,0.5,1462644087 +213,45062,3.5,1462635615 +213,45431,1.5,1462639024 +213,45447,4.0,1462637752 +213,45499,2.5,1462634322 +213,45517,3.0,1462637832 +213,45672,1.0,1462638043 +213,45720,1.5,1462640667 +213,45722,2.5,1462637645 +213,45732,2.0,1462640089 +213,46062,2.0,1462639928 +213,46530,2.5,1462644086 +213,46965,2.0,1462639429 +213,46972,2.5,1462637971 +213,46976,2.5,1462644087 +213,47124,3.0,1462635645 +213,47382,2.5,1462644085 +213,47384,2.5,1462644086 +213,47610,4.0,1462640599 +213,47952,3.0,1462644087 +213,48043,0.5,1462634541 +213,48774,2.0,1462637655 +213,48780,2.0,1462637461 +213,49274,1.5,1462638817 +213,49278,4.0,1462638091 +213,49286,3.0,1462638263 +213,49649,3.5,1462644087 +213,50162,3.0,1462644085 +213,50601,1.5,1462636624 +213,50802,2.5,1462637078 +213,50872,4.0,1462634078 +213,51077,2.5,1462636505 +213,51255,2.0,1462634199 +213,51412,4.5,1462636573 +213,51540,2.0,1462636440 +213,51575,2.5,1462636757 +213,51698,3.0,1462637082 +213,51925,2.0,1462636926 +213,51935,4.0,1462638176 +213,52287,3.5,1462636717 +213,52435,3.0,1462639668 +213,52456,3.5,1462637281 +213,52458,3.5,1462639074 +213,52604,3.0,1462639051 +213,52712,3.0,1462644085 +213,52722,2.0,1462634378 +213,52885,3.5,1462638917 +213,52950,4.0,1462644085 +213,53121,2.5,1462638179 +213,53125,2.5,1462634224 +213,53207,3.0,1462636885 +213,53464,2.5,1462638264 +213,53466,2.5,1462644085 +213,53956,2.0,1462639790 +213,53972,3.5,1462636438 +213,53993,1.0,1462638877 +213,53996,3.5,1462634317 +213,54001,3.5,1462636406 +213,54259,5.0,1462636430 +213,54276,3.0,1462636940 +213,54286,3.0,1462634038 +213,54648,2.5,1462639491 +213,54771,3.0,1462636952 +213,55259,2.5,1462644086 +213,55276,2.0,1462636368 +213,55282,2.0,1462636566 +213,55995,1.0,1462636518 +213,55999,2.5,1462636962 +213,56152,2.5,1462638454 +213,56171,3.0,1462636486 +213,56174,2.0,1462636402 +213,56176,1.5,1462640418 +213,56587,2.5,1462636469 +213,56775,4.0,1462638129 +213,56801,2.5,1462636660 +213,56915,2.5,1462637252 +213,56949,2.0,1462638461 +213,57326,3.0,1462637338 +213,57368,2.5,1462636454 +213,57401,3.5,1462644085 +213,57504,4.0,1462644086 +213,57526,2.5,1462637293 +213,57640,2.5,1462636380 +213,57669,1.5,1462636419 +213,57951,3.0,1462636949 +213,58025,3.0,1462638160 +213,58103,4.0,1462636667 +213,58105,2.5,1462636828 +213,58293,2.0,1462636488 +213,58295,4.5,1462636475 +213,58299,2.5,1462636644 +213,58347,2.5,1462640310 +213,58559,3.5,1462634001 +213,58803,2.5,1462636375 +213,58972,2.5,1462644085 +213,58998,1.0,1462638019 +213,59103,3.5,1462644087 +213,59315,5.0,1462634010 +213,59333,2.5,1462636955 +213,59369,4.0,1462634180 +213,59421,2.0,1462636747 +213,59501,2.5,1462644087 +213,59594,1.5,1462637366 +213,59615,2.0,1462634381 +213,59784,3.5,1462634149 +213,60040,3.5,1462636360 +213,60069,2.0,1462636390 +213,60072,2.5,1462634477 +213,60074,3.5,1462636444 +213,60397,1.5,1462636560 +213,60514,2.5,1462636806 +213,60516,2.5,1462637239 +213,60937,3.5,1462636740 +213,61323,0.5,1462640709 +213,61350,2.5,1462644086 +213,61705,1.5,1462637173 +213,61729,2.0,1462636749 +213,62081,4.0,1462636618 +213,62376,3.0,1462636798 +213,62394,2.5,1462644086 +213,62733,2.0,1462637112 +213,63853,2.5,1462636705 +213,63859,2.5,1462644086 +213,63992,1.5,1462636364 +213,64030,3.0,1462635362 +213,64116,1.0,1462644085 +213,64497,4.0,1462636615 +213,64957,2.0,1462640591 +213,65552,3.5,1462644086 +213,65567,2.5,1462644085 +213,65577,1.5,1462644085 +213,65585,2.0,1462644085 +213,65682,3.0,1462635287 +213,65685,3.0,1462637101 +213,66171,3.5,1462636760 +213,66198,2.0,1462635539 +213,67197,1.5,1462635312 +213,67408,4.0,1462634700 +213,68135,2.5,1462636528 +213,68319,3.0,1462634336 +213,68358,5.0,1462634014 +213,68554,3.5,1462638138 +213,68791,3.5,1462634509 +213,68793,3.0,1462636679 +213,68848,1.5,1462636839 +213,69253,3.0,1462637399 +213,69306,2.5,1462636787 +213,69406,2.5,1462636495 +213,69524,3.0,1462634543 +213,69526,3.0,1462634530 +213,69606,2.0,1462640448 +213,69805,2.5,1462635691 +213,69844,3.5,1462634124 +213,69951,2.0,1462644086 +213,70183,2.5,1462636691 +213,70282,3.5,1462644086 +213,70286,2.5,1462634092 +213,70305,2.5,1462637155 +213,70336,3.0,1462635323 +213,70599,1.5,1462636689 +213,70697,1.0,1462644085 +213,71252,3.0,1462637022 +213,71254,3.0,1462636744 +213,71318,2.5,1462644086 +213,71520,2.0,1462644086 +213,71530,2.5,1462634602 +213,72165,3.5,1462637349 +213,72209,4.0,1462637319 +213,72378,4.0,1462634442 +213,72701,2.5,1462644086 +213,72737,3.0,1462636677 +213,72919,2.5,1462637308 +213,72998,5.0,1462636393 +213,73015,2.0,1462636831 +213,73017,4.0,1462634113 +213,73042,1.5,1462637236 +213,73268,3.5,1462639582 +213,73319,3.0,1462637026 +213,74154,3.0,1462637115 +213,74530,3.0,1462636772 +213,74545,2.5,1462644086 +213,74580,3.0,1462635602 +213,74698,2.0,1462637352 +213,74789,3.5,1462635829 +213,74851,3.5,1462636911 +213,75805,2.5,1462644085 +213,75985,2.0,1462636899 +213,76093,4.0,1462634030 +213,76251,1.0,1462636414 +213,77561,3.5,1462636421 +213,78041,3.0,1462635526 +213,78105,4.0,1462634583 +213,78264,2.0,1462637358 +213,78266,1.5,1462636901 +213,78499,3.0,1462634070 +213,78893,2.0,1462636841 +213,79057,3.0,1462644087 +213,79091,3.5,1462636432 +213,79132,2.5,1462634045 +213,79139,4.0,1462635314 +213,79185,3.5,1462636648 +213,79224,2.5,1462636794 +213,79293,3.0,1462634478 +213,80489,2.0,1462644085 +213,80615,2.0,1462644085 +213,81229,5.0,1462634453 +213,81512,2.5,1462644085 +213,81564,3.5,1462634459 +213,81782,3.5,1462636764 +213,81784,2.5,1462637092 +213,81834,2.5,1462634109 +213,81847,4.0,1462635835 +213,82095,2.5,1462644085 +213,82202,4.0,1462636709 +213,82461,1.0,1462634462 +213,82854,2.0,1462644086 +213,83132,2.5,1462636810 +213,83349,1.0,1462644085 +213,83480,3.0,1462644086 +213,83613,3.5,1462634647 +213,84152,2.5,1462637638 +213,84187,2.5,1462644086 +213,84374,1.0,1462638491 +213,84392,2.5,1462644086 +213,84601,2.5,1462644086 +213,84772,1.5,1462638332 +213,84954,3.5,1462637997 +213,85056,3.5,1462638903 +213,85131,2.0,1462639164 +213,85179,4.0,1462644085 +213,85261,2.5,1462644086 +213,85414,4.0,1462634207 +213,86059,1.0,1462644086 +213,86190,1.5,1462638361 +213,86332,4.0,1462634189 +213,86835,3.0,1462644087 +213,86880,4.0,1462637872 +213,87232,4.0,1462640565 +213,87306,4.0,1462638052 +213,87430,3.5,1462644086 +213,87520,2.5,1462634571 +213,87876,2.0,1462639610 +213,88125,2.5,1462637569 +213,88140,4.0,1462640607 +213,88356,2.5,1462644087 +213,88380,3.5,1462644086 +213,88879,2.5,1462644086 +213,89087,2.5,1462635468 +213,89470,2.5,1462638730 +213,89745,5.0,1462634050 +213,91500,2.5,1462634098 +213,91529,3.5,1462637496 +213,91535,3.5,1462644085 +213,91542,4.0,1462637662 +213,91658,3.0,1462634186 +213,91660,2.5,1462644086 +213,91842,1.5,1462640406 +213,91974,3.0,1462639321 +213,92264,3.0,1462644085 +213,92420,3.0,1462644087 +213,92507,3.0,1462644086 +213,92681,2.5,1462644087 +213,93272,1.5,1462639902 +213,93326,3.0,1462635395 +213,93363,4.5,1462638353 +213,94015,1.5,1462635507 +213,94018,4.5,1462635338 +213,94478,3.0,1462638946 +213,94777,3.5,1462634425 +213,94780,4.0,1462644086 +213,94864,2.5,1462644085 +213,95167,2.5,1462637834 +213,95207,1.5,1462635443 +213,95510,3.5,1462634367 +213,95875,3.0,1462634587 +213,96417,3.0,1462635481 +213,96590,2.5,1462644086 +213,96610,1.0,1462634146 +213,96737,2.0,1462644084 +213,96861,2.0,1462638687 +213,97225,2.0,1462638919 +213,97742,2.5,1462644085 +213,97752,1.0,1462634369 +213,98243,3.5,1462634698 +213,98296,2.5,1462644085 +213,98809,4.0,1462637604 +213,99007,4.0,1462638570 +213,99112,2.5,1462634575 +213,100163,2.5,1462635357 +213,100487,2.5,1462635559 +213,100498,3.0,1462635377 +213,101025,2.5,1462640237 +213,101076,2.0,1462635422 +213,101112,2.5,1462635369 +213,101142,1.5,1462639042 +213,101362,3.5,1462635331 +213,101577,3.0,1462644084 +213,101864,1.5,1462637923 +213,102123,1.5,1462644084 +213,102125,3.0,1462634213 +213,102445,4.5,1462634229 +213,102880,2.5,1462644084 +213,102903,3.5,1462637881 +213,103042,1.5,1462634408 +213,103228,2.0,1462634428 +213,103249,3.0,1462634335 +213,103253,2.5,1462640737 +213,103335,2.5,1462637905 +213,103339,2.5,1462638974 +213,103341,1.5,1462638289 +213,103384,3.5,1462644084 +213,103655,1.5,1462640093 +213,103772,2.0,1462638192 +213,103810,3.5,1462639033 +213,103883,1.5,1462639592 +213,104074,3.0,1462640450 +213,104243,2.0,1462644084 +213,104312,3.0,1462644084 +213,104925,3.5,1462644084 +213,106002,2.0,1462634491 +213,106072,4.5,1462634399 +213,106487,3.5,1462644084 +213,106489,4.0,1462634256 +213,106642,3.5,1462638821 +213,106696,4.0,1462637720 +213,108188,2.5,1462635434 +213,108945,2.0,1462644084 +213,108979,3.5,1462638270 +213,109487,2.0,1462637434 +213,109578,3.5,1462639128 +213,109864,3.5,1462644084 +213,110102,4.0,1462634159 +213,110553,2.5,1462638300 +213,110730,1.0,1462638438 +213,111360,2.5,1462637887 +213,111362,4.0,1462634061 +213,111659,3.5,1462638170 +213,111759,3.5,1462634090 +213,112370,2.5,1462644084 +213,112556,1.0,1462640513 +213,112852,5.0,1462634018 +213,114795,3.5,1462639097 +213,115149,2.5,1462634437 +213,116823,3.0,1462637708 +213,117529,4.0,1462634196 +213,118997,1.0,1462638888 +213,122886,4.0,1462634008 +213,122892,4.0,1462634130 +213,122900,4.0,1462640625 +213,130520,4.0,1462635343 +213,132796,3.0,1462634627 +214,10,3.0,978131768 +214,25,3.0,978382211 +214,32,3.0,978468713 +214,36,4.0,978382062 +214,47,4.0,978128389 +214,50,5.0,950123067 +214,110,5.0,978128748 +214,111,5.0,978418166 +214,260,5.0,978131447 +214,265,3.0,978381970 +214,288,3.0,978131852 +214,292,3.0,979953037 +214,293,3.0,950123254 +214,296,4.0,978381970 +214,318,5.0,978381918 +214,319,5.0,950123514 +214,364,5.0,978469195 +214,377,2.0,978131711 +214,380,4.0,979953037 +214,455,2.0,946918697 +214,457,3.0,950123254 +214,480,4.0,978128437 +214,509,4.0,978382183 +214,527,5.0,978381970 +214,541,5.0,978382302 +214,588,4.0,978469223 +214,589,5.0,978128748 +214,590,5.0,979451667 +214,592,3.0,946919102 +214,593,5.0,950123152 +214,595,4.0,978469223 +214,608,5.0,950123104 +214,628,4.0,950123331 +214,648,3.0,978125778 +214,745,5.0,979451781 +214,750,5.0,978468585 +214,780,5.0,979953037 +214,800,4.0,979953296 +214,804,1.0,978128611 +214,832,4.0,978131748 +214,858,5.0,978418166 +214,912,3.0,946918789 +214,919,5.0,979451594 +214,924,5.0,950123179 +214,1028,5.0,978469256 +214,1029,3.0,978469274 +214,1036,4.0,946918970 +214,1077,4.0,978468662 +214,1079,4.0,978417812 +214,1089,5.0,950123104 +214,1090,5.0,978382391 +214,1092,4.0,978131748 +214,1097,4.0,978417916 +214,1101,4.0,946919243 +214,1127,4.0,946919189 +214,1179,3.0,978382183 +214,1185,5.0,978417867 +214,1186,4.0,978417867 +214,1193,4.0,978418166 +214,1196,4.0,946918970 +214,1198,5.0,946918746 +214,1199,5.0,978382391 +214,1200,4.0,946918970 +214,1206,5.0,978468610 +214,1210,4.0,946918970 +214,1213,5.0,978381970 +214,1214,5.0,978131467 +214,1219,4.0,950123104 +214,1220,4.0,946919060 +214,1221,5.0,978418166 +214,1222,4.0,946919060 +214,1225,5.0,978382302 +214,1231,4.0,978382603 +214,1233,4.0,978128748 +214,1240,4.0,946918970 +214,1242,3.0,978417867 +214,1246,4.0,978417983 +214,1249,4.0,950123179 +214,1252,5.0,950123067 +214,1258,5.0,978382352 +214,1259,5.0,978382683 +214,1262,5.0,979451594 +214,1267,5.0,979451812 +214,1270,4.0,978382603 +214,1272,5.0,950119070 +214,1275,4.0,946919102 +214,1291,4.0,946918970 +214,1296,4.0,978418107 +214,1299,5.0,978382391 +214,1302,5.0,978417948 +214,1304,5.0,979952540 +214,1307,4.0,978382683 +214,1321,5.0,978418047 +214,1343,5.0,950123515 +214,1380,5.0,978469288 +214,1387,3.0,979952540 +214,1394,2.0,978417680 +214,1525,2.0,979952720 +214,1580,5.0,978468790 +214,1584,5.0,978468663 +214,1610,5.0,950123179 +214,1617,5.0,978131637 +214,1674,4.0,950123425 +214,1704,5.0,978382040 +214,1722,3.0,978131812 +214,1748,2.0,950123477 +214,1769,2.0,978131916 +214,1784,3.0,978382183 +214,1947,4.0,978469176 +214,1951,4.0,978469256 +214,1953,5.0,950123179 +214,1954,5.0,978131467 +214,1956,5.0,978418107 +214,1957,3.0,978382631 +214,1961,4.0,978382683 +214,1962,5.0,978417948 +214,1965,4.0,978417983 +214,1997,5.0,978128348 +214,2000,3.0,946919060 +214,2001,2.0,946919060 +214,2020,5.0,978382603 +214,2023,5.0,946918903 +214,2028,5.0,978128748 +214,2064,4.0,978469014 +214,2076,3.0,978417916 +214,2078,4.0,978469223 +214,2094,4.0,979953080 +214,2105,4.0,946919102 +214,2115,5.0,946919102 +214,2174,4.0,978418129 +214,2194,5.0,946919060 +214,2278,5.0,950122999 +214,2346,2.0,978468790 +214,2348,3.0,978382683 +214,2352,5.0,978418047 +214,2353,3.0,979952720 +214,2376,3.0,946919189 +214,2391,3.0,950123254 +214,2405,4.0,946919243 +214,2406,5.0,979451707 +214,2407,4.0,978468790 +214,2455,4.0,978468713 +214,2467,5.0,978417948 +214,2501,5.0,978417616 +214,2529,3.0,978468610 +214,2540,2.0,978131916 +214,2565,4.0,978469223 +214,2571,4.0,950123331 +214,2640,3.0,946918697 +214,2692,5.0,983723424 +214,2716,4.0,978417916 +214,2735,3.0,946919269 +214,2739,4.0,978418047 +214,2762,5.0,978131637 +214,2797,5.0,978418107 +214,2819,4.0,950123268 +214,2857,4.0,978469195 +214,2858,5.0,978128348 +214,2915,3.0,978417916 +214,2916,4.0,978128781 +214,2917,4.0,950123331 +214,2918,5.0,978417867 +214,2919,4.0,978418107 +214,2976,3.0,978896819 +214,2984,5.0,978469131 +214,2985,4.0,946918970 +214,2987,4.0,978382683 +214,2989,3.0,946919189 +214,2990,3.0,946919189 +214,3005,3.0,978131852 +214,3018,4.0,978417916 +214,3032,4.0,978468900 +214,3071,5.0,978418047 +214,3072,3.0,978417772 +214,3098,4.0,978418107 +214,3101,5.0,950123425 +214,3147,4.0,978131637 +214,3176,5.0,978131711 +214,3178,5.0,978131583 +214,3204,4.0,950123152 +214,3210,4.0,978417812 +214,3219,4.0,978131916 +214,3256,4.0,978131711 +214,3316,2.0,983723539 +214,3360,4.0,978418047 +214,3361,4.0,978382603 +214,3418,5.0,978131570 +214,3424,5.0,978382391 +214,3452,2.0,978896845 +214,3471,4.0,978468610 +214,3527,5.0,978417948 +214,3551,4.0,979451830 +214,3552,3.0,978382683 +214,3555,4.0,978125778 +214,3578,5.0,978125653 +214,3608,3.0,978417916 +214,3623,1.0,983723508 +214,3624,4.0,978128482 +214,3653,4.0,978469055 +214,3686,3.0,978131768 +214,3699,3.0,978417983 +214,3702,3.0,978468663 +214,3703,3.0,978382391 +214,3717,2.0,978128611 +214,3745,4.0,978125778 +214,3753,3.0,978128437 +214,3793,5.0,978128460 +214,3821,2.0,978128664 +214,3916,4.0,983723379 +214,3927,5.0,978468762 +214,3984,3.0,978128482 +214,4007,5.0,978128348 +214,4008,3.0,978128437 +214,4041,3.0,978128389 +215,1,3.0,860559708 +215,6,3.0,860559733 +215,86,3.0,860559829 +215,111,4.0,860560442 +215,260,3.0,860559756 +215,265,5.0,860560462 +215,376,4.0,860559756 +215,480,3.0,860561159 +215,509,3.0,860560537 +215,527,4.0,860560427 +215,541,3.0,860561060 +215,608,4.0,860559733 +215,648,3.0,860559709 +215,653,3.0,860559756 +215,750,5.0,860561038 +215,852,3.0,860559784 +215,858,5.0,860559830 +215,899,3.0,860561133 +215,903,4.0,860561084 +215,904,4.0,860560554 +215,908,4.0,860561084 +215,912,5.0,860560513 +215,913,5.0,860561181 +215,919,4.0,860561060 +215,920,3.0,860561134 +215,924,5.0,860561134 +215,953,4.0,860561060 +215,969,5.0,860561105 +215,1028,4.0,860560513 +215,1073,3.0,860559733 +215,1077,5.0,860561105 +215,1079,3.0,860561060 +215,1080,3.0,860561134 +215,1082,4.0,860560578 +215,1084,4.0,860560462 +215,1085,4.0,860561158 +215,1086,5.0,860560490 +215,1103,5.0,860561083 +215,1104,4.0,860560537 +215,1136,4.0,860561214 +215,1193,5.0,860561038 +215,1198,3.0,860561159 +215,1203,4.0,860561083 +215,1207,4.0,860560554 +215,1210,3.0,860559797 +215,1219,4.0,860560995 +215,1221,4.0,860561181 +215,1234,4.0,860561105 +215,1246,4.0,860561236 +215,1247,4.0,860561181 +215,1391,3.0,860559842 +215,1393,4.0,860559809 +215,1429,3.0,860559955 +215,1479,4.0,860560253 +216,47,5.0,1095792731 +216,48,4.0,1095792192 +216,260,3.5,1095792591 +216,293,4.0,1095792807 +216,318,5.0,1095792470 +216,345,4.0,1095792226 +216,356,4.5,1095792565 +216,551,5.0,1095792933 +216,593,4.0,1095792528 +216,596,3.5,1095792215 +216,628,4.0,1095792171 +216,783,4.0,1095792235 +216,899,4.0,1095792673 +216,910,4.0,1095792260 +216,919,4.5,1095792549 +216,1032,4.5,1095792813 +216,1196,4.5,1095792598 +216,1197,5.0,1095792601 +216,1198,5.0,1095792491 +216,1207,4.0,1095792661 +216,1262,4.5,1095792657 +216,1270,5.0,1095792476 +216,1282,4.0,1095792897 +216,1302,4.0,1095792202 +216,1304,4.0,1095792939 +216,1307,3.5,1095792613 +216,1485,4.0,1095792185 +216,1500,4.5,1095792818 +216,1617,4.5,1095792780 +216,1639,4.5,1095792967 +216,1682,5.0,1095792629 +216,1704,5.0,1095792477 +216,1777,3.5,1095792264 +216,1961,4.0,1095792485 +216,1968,5.0,1095792681 +216,2006,4.0,1095792245 +216,2100,4.5,1095792207 +216,2248,4.5,1095792561 +216,2321,4.5,1095792248 +216,2396,4.5,1095792603 +216,2501,4.5,1095792503 +216,2502,5.0,1095792757 +216,2571,4.5,1095792642 +216,2617,3.5,1095792164 +216,2716,4.5,1095792546 +216,2791,5.0,1095793037 +216,2858,5.0,1095792887 +216,2918,5.0,1095792527 +216,2959,5.0,1095792798 +216,3317,4.5,1095792997 +216,3421,4.0,1095792788 +216,3481,4.5,1095793028 +216,3751,3.5,1095792836 +216,3950,4.5,1095792574 +216,3996,4.5,1095793025 +216,4022,4.0,1095792181 +216,4034,5.0,1095792845 +216,4226,5.0,1095792754 +216,4246,4.0,1095792859 +216,4326,4.0,1095792617 +216,4878,5.0,1095793010 +216,4886,4.5,1095792290 +216,4993,5.0,1095792668 +216,5377,4.5,1095792573 +216,5445,4.0,1095792648 +216,5669,5.0,1095792721 +216,5952,5.0,1095792532 +216,6377,5.0,1095792467 +216,6620,4.0,1095792871 +216,6870,4.0,1095792552 +216,6942,4.0,1095792596 +216,7147,5.0,1095792686 +216,7153,5.0,1095792498 +216,7156,4.5,1095792727 +216,7361,5.0,1095792555 +216,7438,4.5,1095792992 +216,8533,2.5,1095792378 +216,8622,5.0,1095792402 +216,8636,4.0,1095792375 +216,8783,4.5,1095792416 +216,8784,5.0,1095792371 +216,8830,2.0,1095792449 +217,3,4.5,1108160863 +217,16,4.0,1108160012 +217,104,4.5,1108160819 +217,110,4.0,1108160687 +217,112,3.0,1108160047 +217,135,3.5,1108160890 +217,236,2.5,1108160038 +217,260,5.0,1108160547 +217,282,1.0,1108160067 +217,315,1.0,1108160075 +217,329,4.0,1108160615 +217,370,5.0,1108160325 +217,457,4.5,1108160760 +217,466,3.5,1108160065 +217,589,5.0,1108160689 +217,784,3.5,1108160057 +217,858,5.0,1108160208 +217,904,3.0,1108160071 +217,1036,5.0,1108160655 +217,1101,4.5,1108160024 +217,1196,5.0,1108160550 +217,1210,5.0,1108160553 +217,1220,5.0,1108160841 +217,1270,5.0,1108160742 +217,1278,2.5,1108160079 +217,1291,5.0,1108160644 +217,1371,4.5,1108160587 +217,1373,3.5,1108160602 +217,1374,4.5,1108160589 +217,1375,3.0,1108160593 +217,1376,4.0,1108160595 +217,1407,2.5,1108160049 +217,1500,4.5,1108160062 +217,1517,5.0,1108160732 +217,1610,5.0,1108160734 +217,1653,1.5,1108160059 +217,1663,5.0,1108160675 +217,1917,3.0,1108160000 +217,1923,5.0,1108160722 +217,2000,4.0,1108160141 +217,2028,4.0,1108160776 +217,2115,5.0,1108160163 +217,2174,2.5,1108160004 +217,2194,5.0,1108160751 +217,2268,5.0,1108160744 +217,2371,4.5,1108160160 +217,2423,5.0,1108160802 +217,2502,5.0,1108160766 +217,2599,2.5,1108160036 +217,2628,4.5,1108160556 +217,2706,5.0,1108160815 +217,2716,5.0,1108160673 +217,2791,5.0,1108160504 +217,2792,4.5,1108160507 +217,2795,5.0,1108160638 +217,2797,3.0,1108160007 +217,2918,5.0,1108160666 +217,2948,4.0,1108160774 +217,2989,4.5,1108160781 +217,2991,4.5,1108160190 +217,2993,4.0,1108160705 +217,3039,5.0,1108160678 +217,3098,4.5,1108160795 +217,3147,3.0,1108160737 +217,3263,4.0,1108160867 +217,3421,5.0,1108160681 +217,3552,5.0,1108160650 +217,3578,4.0,1108160726 +217,3635,4.5,1108160194 +217,3639,4.5,1108160197 +217,3760,5.0,1108160522 +217,3793,4.0,1108160027 +217,3868,5.0,1108160321 +217,3869,5.0,1108160329 +217,3948,5.0,1108160848 +217,3984,4.0,1108160201 +217,4002,4.5,1108160799 +217,4085,5.0,1108160657 +217,4102,5.0,1108160184 +217,4306,5.0,1108160015 +217,4489,4.5,1108160778 +217,4623,5.0,1108160144 +217,4963,4.0,1108160807 +217,5049,4.5,1108160692 +217,5349,4.0,1108160702 +217,5378,4.5,1108160558 +217,5500,4.5,1108160664 +217,5816,3.0,1108160809 +217,6188,5.0,1108160180 +217,6333,4.5,1108160647 +217,6628,3.0,1108160955 +217,6827,3.0,1108160919 +217,6979,4.0,1108160700 +217,7004,4.0,1108160872 +217,7027,5.0,1108160728 +217,7317,4.5,1108160859 +217,7386,5.0,1108160786 +217,7569,4.0,1108160631 +217,8008,3.0,1108160719 +217,8360,5.0,1108160754 +217,8387,3.0,1108160981 +217,8493,4.5,1108160641 +217,30822,4.0,1108160265 +217,30825,4.5,1108160248 +218,2,2.5,1163106626 +218,223,4.0,1163106588 +218,260,4.0,1163106771 +218,318,4.0,1163106758 +218,410,3.5,1163106580 +218,442,3.5,1163106620 +218,508,3.0,1163106632 +218,541,4.5,1163107054 +218,593,4.0,1163106797 +218,750,5.0,1163106647 +218,919,3.5,1163106606 +218,1101,3.0,1163106666 +218,1136,4.0,1163106972 +218,1196,4.5,1163106801 +218,1197,4.0,1163106792 +218,1198,4.0,1163106762 +218,1200,4.5,1163107197 +218,1213,4.0,1163106595 +218,1214,4.0,1163107187 +218,1225,3.5,1163106642 +218,1231,4.0,1163106834 +218,1233,5.0,1163107017 +218,1259,4.0,1163106839 +218,1307,3.0,1163106602 +218,1320,3.5,1163107203 +218,1584,3.5,1163106617 +218,1610,4.0,1163106622 +218,1690,3.0,1163107229 +218,2186,4.0,1163107047 +218,2683,3.0,1163106585 +218,2762,3.5,1163106807 +218,2804,4.5,1163106815 +218,2918,4.5,1163106787 +218,3114,3.5,1163106635 +218,3701,3.5,1163107215 +218,3996,4.0,1163106592 +218,4226,4.5,1163106945 +218,4973,4.0,1163106955 +218,5618,5.0,1163107009 +218,6909,4.0,1163107262 +218,8798,4.5,1163107150 +218,27604,4.0,1163106865 +219,1,5.0,974475264 +219,11,4.0,974496320 +219,16,2.0,974476109 +219,19,3.0,974474798 +219,34,3.0,974496128 +219,39,4.0,974496214 +219,47,4.0,997730388 +219,50,4.0,974475979 +219,104,5.0,974474544 +219,122,4.0,974496506 +219,180,3.0,974496294 +219,216,5.0,974474559 +219,223,2.0,974475047 +219,231,5.0,974474776 +219,235,3.0,974496173 +219,260,3.0,974474487 +219,296,4.0,974475887 +219,317,3.0,974496453 +219,318,5.0,974477319 +219,333,5.0,974496359 +219,344,4.0,974474798 +219,356,4.0,974474429 +219,357,4.0,974474696 +219,367,4.0,974496320 +219,377,4.0,997730329 +219,414,3.0,974496453 +219,441,3.0,974474465 +219,457,3.0,997730318 +219,500,4.0,974496359 +219,527,4.0,974474449 +219,539,4.0,974496337 +219,588,5.0,974474523 +219,597,3.0,974474713 +219,608,2.0,974474908 +219,785,4.0,974496466 +219,788,4.0,974496453 +219,1020,5.0,974496397 +219,1036,4.0,997730318 +219,1042,2.0,997928985 +219,1060,5.0,974475673 +219,1073,4.0,1156788838 +219,1079,3.0,997730507 +219,1080,4.0,974476810 +219,1089,5.0,974477433 +219,1093,3.0,974475075 +219,1136,5.0,974476810 +219,1197,5.0,974476860 +219,1198,4.0,974474465 +219,1222,4.0,997928386 +219,1240,3.0,997730363 +219,1246,5.0,974478177 +219,1265,5.0,974477862 +219,1270,5.0,974477673 +219,1288,4.0,974477119 +219,1307,3.0,997730495 +219,1367,3.0,974496506 +219,1394,5.0,974478207 +219,1513,2.0,974475200 +219,1573,5.0,974475876 +219,1580,4.0,974474449 +219,1610,4.0,997730411 +219,1641,3.0,974476810 +219,1674,3.0,997730376 +219,1682,5.0,974477599 +219,1721,5.0,974474762 +219,1732,5.0,974475946 +219,1777,3.0,974474581 +219,1805,5.0,974478082 +219,1839,3.0,974474487 +219,1907,3.0,974475273 +219,1923,4.0,974475759 +219,2011,4.0,974477673 +219,2012,3.0,974477673 +219,2018,2.0,974475355 +219,2060,4.0,974496434 +219,2081,3.0,974475288 +219,2268,3.0,997929005 +219,2335,3.0,974474569 +219,2355,4.0,974475047 +219,2394,3.0,974475200 +219,2429,3.0,997928257 +219,2431,4.0,997929073 +219,2447,4.0,974475380 +219,2502,5.0,974474607 +219,2581,3.0,974475175 +219,2671,4.0,997929018 +219,2688,5.0,974475104 +219,2692,5.0,997730251 +219,2694,5.0,974474978 +219,2706,4.0,974474954 +219,2716,4.0,974475116 +219,2724,3.0,974475217 +219,2791,3.5,1156788800 +219,2804,5.0,974477532 +219,2858,5.0,974474866 +219,2875,1.0,974474683 +219,2918,4.0,1156788711 +219,2947,4.0,974474724 +219,2993,4.0,974474746 +219,2997,3.0,997928165 +219,3253,3.0,997929005 +219,3255,3.0,974496214 +219,3258,3.0,974496408 +219,3263,5.0,974474596 +219,3408,3.0,998245976 +219,3450,4.0,974496359 +219,3536,4.0,997928220 +219,3623,4.0,997929258 +219,3639,4.0,974474735 +219,3717,4.0,999032498 +219,3752,4.0,998246002 +219,3773,3.0,974496377 +219,3793,3.0,974474879 +219,3897,4.0,1156788991 +219,3948,4.0,974474626 +219,3996,4.0,997928147 +219,3998,3.0,999032478 +219,4018,4.0,997730570 +219,4022,5.0,997928187 +219,4027,4.5,1156788862 +219,4069,2.0,998246373 +219,4306,3.5,1156788727 +219,4351,3.0,997929005 +219,4361,2.0,997928371 +219,4447,4.0,997730756 +219,4886,4.5,1156788731 +219,4993,0.5,1156788815 +219,5110,4.5,1156788957 +219,5952,0.5,1156788819 +219,7153,0.5,1156788826 +219,8376,0.5,1156789022 +219,8528,5.0,1156788967 +219,8784,5.0,1156788841 +219,8961,3.5,1156788810 +219,33615,3.0,1156788925 +219,33794,5.0,1156788735 +219,46970,4.5,1156788898 +219,47640,5.0,1156788751 +220,1,2.0,970498319 +220,16,5.0,970594863 +220,17,5.0,982598447 +220,34,4.0,970498215 +220,36,4.0,970499031 +220,62,4.0,970516338 +220,110,4.0,970498296 +220,208,2.0,970501818 +220,231,2.0,970501776 +220,260,5.0,986676501 +220,272,5.0,970503636 +220,282,4.0,970501534 +220,293,5.0,982598447 +220,296,5.0,970595346 +220,306,4.0,970498867 +220,307,4.0,970499809 +220,308,4.0,970498562 +220,319,5.0,970499216 +220,337,4.0,970499391 +220,344,1.0,970501550 +220,345,4.0,970499809 +220,350,3.0,970500624 +220,356,4.0,970500060 +220,357,4.0,970500047 +220,367,4.0,970500819 +220,370,3.0,970502087 +220,377,3.0,970504173 +220,427,1.0,970502492 +220,434,3.0,970504395 +220,441,2.0,975512249 +220,454,3.0,970499391 +220,468,4.0,970501106 +220,480,2.0,970503606 +220,481,4.0,970501625 +220,500,3.0,970503675 +220,527,5.0,982598448 +220,537,1.0,970508020 +220,539,2.0,970508429 +220,586,1.0,970501884 +220,588,3.0,970515737 +220,589,4.0,970595408 +220,590,4.0,970594948 +220,593,4.0,970498143 +220,595,4.0,975512038 +220,597,3.0,970500694 +220,608,5.0,970498170 +220,637,2.0,970502087 +220,648,4.0,970504346 +220,665,2.0,970595600 +220,733,3.0,970525276 +220,745,5.0,970515718 +220,750,4.0,986242389 +220,778,5.0,970509273 +220,780,3.0,970525064 +220,804,3.0,970508839 +220,824,3.0,970498121 +220,832,3.0,970500906 +220,858,5.0,986913482 +220,898,5.0,983223766 +220,903,4.0,981570884 +220,904,2.0,975512481 +220,908,4.0,975086737 +220,910,5.0,970507613 +220,912,4.0,970497359 +220,923,3.0,988580894 +220,924,4.0,986242365 +220,991,4.0,970501074 +220,1027,3.0,970503733 +220,1035,2.0,975086737 +220,1037,3.0,970503606 +220,1056,5.0,970503606 +220,1059,4.0,970525373 +220,1079,4.0,970507667 +220,1089,4.0,970498236 +220,1090,5.0,986242417 +220,1092,2.0,970501158 +220,1100,1.0,970501845 +220,1148,5.0,970498121 +220,1200,4.0,970503990 +220,1204,5.0,979053869 +220,1208,3.0,970581901 +220,1213,5.0,982598163 +220,1219,5.0,982598448 +220,1220,5.0,970517479 +220,1221,5.0,982598163 +220,1225,4.0,970527584 +220,1230,4.0,986913520 +220,1245,4.0,970499174 +220,1247,5.0,970504789 +220,1249,4.0,971390382 +220,1258,2.0,970510984 +220,1265,4.0,970499160 +220,1271,3.0,970499758 +220,1288,5.0,970504953 +220,1300,5.0,970505032 +220,1307,5.0,994270413 +220,1333,4.0,979053628 +220,1357,5.0,970595408 +220,1379,2.0,982598558 +220,1380,2.0,970508488 +220,1391,2.0,970501506 +220,1393,3.0,970525064 +220,1407,2.0,970500017 +220,1411,4.0,970524962 +220,1517,4.0,970500089 +220,1542,4.0,970499262 +220,1554,1.0,970499488 +220,1580,4.0,970499880 +220,1601,4.0,975086094 +220,1610,4.0,970504003 +220,1617,4.0,970498143 +220,1641,5.0,970499216 +220,1643,4.0,970515981 +220,1645,4.0,970500624 +220,1680,4.0,970500878 +220,1682,3.0,970499924 +220,1690,3.0,970501300 +220,1694,4.0,979053720 +220,1702,1.0,986242337 +220,1721,3.0,971390192 +220,1729,4.0,980728322 +220,1732,4.0,970500624 +220,1795,4.0,993492210 +220,1805,3.0,993492152 +220,1844,4.0,970524395 +220,1856,4.0,980728361 +220,1923,2.0,975512596 +220,1953,3.0,970504047 +220,1961,4.0,970504853 +220,2003,2.0,970508211 +220,2012,1.0,970501262 +220,2023,4.0,988580945 +220,2054,1.0,970517626 +220,2110,3.0,970508345 +220,2111,4.0,970508110 +220,2178,4.0,980728543 +220,2186,3.0,975511927 +220,2232,4.0,970501106 +220,2268,4.0,970516044 +220,2269,1.0,982598163 +220,2294,5.0,970500114 +220,2324,5.0,970498363 +220,2329,5.0,976581285 +220,2336,4.0,970515875 +220,2390,5.0,970499426 +220,2396,3.0,970498383 +220,2427,3.0,987019380 +220,2436,5.0,970517882 +220,2482,4.0,991660198 +220,2487,3.0,982597968 +220,2529,2.0,971390114 +220,2542,5.0,970499247 +220,2569,4.0,970581809 +220,2571,5.0,970523042 +220,2600,2.0,970523257 +220,2617,1.0,970523006 +220,2624,3.0,974389124 +220,2628,3.0,995035271 +220,2657,2.0,982598448 +220,2671,4.0,970500996 +220,2677,4.0,970594863 +220,2686,4.0,970511102 +220,2690,5.0,970508020 +220,2696,2.0,975512249 +220,2704,2.0,995035235 +220,2706,2.0,984945711 +220,2710,4.0,970594863 +220,2712,2.0,970594948 +220,2746,4.0,970581731 +220,2762,5.0,970523138 +220,2763,4.0,970504156 +220,2791,3.0,975086737 +220,2805,4.0,970503676 +220,2858,5.0,970498143 +220,2881,3.0,970501458 +220,2893,4.0,970523104 +220,2908,5.0,970517480 +220,2912,4.0,974389248 +220,2948,3.0,975086737 +220,2959,4.0,975871618 +220,2962,4.0,970524225 +220,2995,1.0,970497975 +220,2997,3.0,970498215 +220,3006,5.0,970498940 +220,3020,5.0,970504296 +220,3044,4.0,970500047 +220,3045,3.0,970501458 +220,3053,4.0,970502108 +220,3060,5.0,970517480 +220,3082,3.0,970501194 +220,3083,3.0,970497635 +220,3108,3.0,970499120 +220,3127,3.0,1014306911 +220,3147,4.0,970500175 +220,3148,4.0,970594864 +220,3160,4.0,970497680 +220,3174,3.0,970499675 +220,3175,3.0,970499638 +220,3176,4.0,970499826 +220,3178,3.0,970508077 +220,3179,3.0,970511382 +220,3182,4.0,970517155 +220,3186,4.0,990303926 +220,3192,4.0,974389143 +220,3201,4.0,979595642 +220,3238,1.0,971879004 +220,3240,3.0,991660109 +220,3247,2.0,970508336 +220,3249,3.0,970500624 +220,3250,2.0,975083896 +220,3252,5.0,982598448 +220,3253,4.0,970595601 +220,3257,3.0,971389872 +220,3269,2.0,982598060 +220,3274,3.0,970500958 +220,3285,4.0,991660159 +220,3317,2.0,988581523 +220,3320,4.0,970594666 +220,3363,4.0,979595602 +220,3386,4.0,970504953 +220,3408,4.0,1014305182 +220,3418,4.0,976582683 +220,3435,4.0,970510523 +220,3481,5.0,970497635 +220,3510,3.0,970523379 +220,3535,4.0,982597702 +220,3536,3.0,979595514 +220,3538,5.0,970497635 +220,3539,4.0,970524740 +220,3555,3.0,970595601 +220,3556,4.0,988580970 +220,3566,3.0,991314643 +220,3569,3.0,974389101 +220,3578,3.0,970523424 +220,3581,5.0,970503569 +220,3623,4.0,970497834 +220,3683,4.0,970594864 +220,3686,2.0,970497335 +220,3702,3.0,970595195 +220,3721,3.0,970523232 +220,3751,5.0,970497756 +220,3753,5.0,970595266 +220,3755,1.0,979053669 +220,3783,4.0,970517480 +220,3793,2.0,971390213 +220,3795,4.0,1014305110 +220,3798,4.0,987516659 +220,3823,5.0,970497481 +220,3831,4.0,973270190 +220,3869,4.0,970595267 +220,3893,3.0,972483492 +220,3897,4.0,971276977 +220,3910,4.0,975512988 +220,3911,2.0,996156540 +220,3916,3.0,970668549 +220,3919,1.0,970502154 +220,3948,5.0,971879061 +220,3952,4.0,1029528920 +220,3967,4.0,988581109 +220,3983,4.0,984946368 +220,3987,2.0,990303943 +220,3993,4.0,986416996 +220,3994,3.0,975512819 +220,3996,4.0,984438812 +220,4005,3.0,975088607 +220,4008,4.0,975086737 +220,4011,4.0,982175257 +220,4014,4.0,981570641 +220,4017,4.0,988817144 +220,4022,4.0,980813242 +220,4025,3.0,992888705 +220,4027,5.0,982598448 +220,4029,1.0,980880746 +220,4033,4.0,991320726 +220,4034,5.0,982597808 +220,4052,2.0,991314573 +220,4148,2.0,984945809 +220,4161,4.0,984440289 +220,4166,4.0,988580995 +220,4223,4.0,985372994 +220,4225,4.0,990303865 +220,4239,4.0,987019354 +220,4246,4.0,988581764 +220,4306,4.0,1014305110 +220,4370,3.0,995035102 +220,4740,2.0,1029529137 +220,4973,5.0,1029528527 +220,5013,4.0,1029528527 +220,5316,4.0,1029528597 +221,16,3.0,1111551518 +221,112,3.0,1111551574 +221,163,2.5,1111551631 +221,172,2.5,1111551643 +221,173,2.5,1111551557 +221,315,1.0,1111551662 +221,432,2.0,1111551553 +221,466,2.0,1111551586 +221,832,3.0,1111551566 +221,1101,3.0,1111551533 +221,1258,3.0,1111551530 +221,1380,2.5,1111551634 +221,1485,4.0,1111551648 +221,1917,3.0,1111551492 +221,2012,3.5,1111551545 +221,2174,2.5,1111551498 +221,2406,3.0,1111551656 +221,2640,3.5,1111551611 +221,2797,3.0,1111551504 +221,3793,3.0,1111551535 +222,229,4.0,960919368 +222,899,5.0,960919866 +222,900,5.0,960919866 +222,901,5.0,960919866 +222,912,5.0,960920068 +222,923,4.0,960920068 +222,935,4.0,960919866 +222,938,5.0,960919866 +222,940,5.0,960919368 +222,943,5.0,960920116 +222,946,4.0,960920068 +222,953,3.0,960920116 +222,956,4.0,960920135 +222,1019,4.0,960919783 +222,1022,3.0,960919912 +222,1032,3.0,960919866 +222,1097,4.0,960919368 +222,1935,5.0,960920116 +222,1936,5.0,960920116 +222,1938,3.0,960920116 +222,1939,5.0,960920068 +222,1940,5.0,960920116 +222,1941,5.0,960920068 +222,1942,4.0,960920116 +222,2080,3.0,960919866 +222,2087,1.0,960919912 +222,2096,3.0,960919866 +222,2201,5.0,960920135 +222,2202,5.0,960920116 +222,2398,2.0,960920116 +222,2565,5.0,960919912 +222,2612,3.0,960920068 +222,2829,2.0,960919368 +222,2920,5.0,960920068 +222,2927,4.0,960920068 +222,2941,4.0,960919866 +222,3095,5.0,960920068 +222,3153,5.0,960919783 +222,3199,5.0,960919912 +222,3334,4.0,960919368 +222,3357,5.0,960919709 +222,3408,3.0,960919493 +222,3456,5.0,960919493 +222,3481,4.0,960919493 +222,3515,4.0,960919546 +222,3536,5.0,960919590 +222,3538,4.0,960919493 +222,3540,4.0,960919627 +222,3549,2.0,960919866 +222,3556,5.0,960919546 +222,3566,5.0,960919546 +222,3567,2.0,960919627 +222,3578,4.0,960919590 +222,3580,5.0,960919546 +222,3594,4.0,960919709 +222,3598,5.0,960919493 +222,3618,4.0,960919546 +222,3653,4.0,960920364 +222,3654,3.0,960920392 +222,3656,5.0,960920392 +222,3657,5.0,960920477 +222,3668,5.0,960920493 +222,3671,3.0,960920305 +222,3675,3.0,960919912 +222,3676,5.0,960920364 +222,3678,4.0,960920428 +222,3683,5.0,960920305 +222,3684,5.0,960920364 +222,3685,5.0,960920477 +222,3686,4.0,960920364 +222,3688,3.0,960920478 +222,3699,4.0,960920515 +222,3702,5.0,960920428 +222,3703,3.0,960920428 +222,3704,3.0,960920428 +222,3706,5.0,960920273 +222,3707,2.0,960920428 +222,3714,4.0,960920329 +222,3716,3.0,960920364 +222,3723,4.0,960920392 +222,3724,5.0,960920329 +222,3730,5.0,960920329 +222,3732,4.0,960920364 +222,3734,4.0,960920478 +222,3735,5.0,960920515 +222,3736,4.0,960920305 +222,3740,4.0,960920305 +222,3742,5.0,960920273 +223,5,4.0,856532203 +223,6,4.0,856532203 +223,7,3.0,856532203 +223,32,4.0,856532132 +223,36,4.0,856532203 +223,41,4.0,856532349 +223,62,4.0,856532133 +223,81,3.0,856532544 +223,86,5.0,856532509 +223,102,3.0,856532509 +223,113,2.0,856532642 +223,141,3.0,856532133 +223,260,5.0,856532244 +223,376,3.0,856532244 +223,494,5.0,856532203 +223,608,5.0,856532203 +223,613,5.0,856532598 +223,628,4.0,856532274 +223,640,3.0,856532399 +223,648,3.0,856532133 +223,653,2.0,856532244 +223,662,3.0,856532573 +223,731,3.0,856532691 +223,733,5.0,856532203 +223,736,3.0,856532133 +223,780,3.0,856532132 +223,786,5.0,856532203 +223,788,3.0,856532244 +223,802,4.0,856532308 +223,805,4.0,856532274 +223,832,5.0,856532308 +223,1073,4.0,856532203 +223,1183,5.0,856532598 +223,1356,5.0,856532274 +223,1359,2.0,856532626 +223,1393,5.0,856532572 +224,1,4.0,828213150 +224,2,4.0,828213150 +224,6,5.0,828213150 +224,10,3.0,830633216 +224,16,5.0,828213150 +224,17,5.0,828213150 +224,21,4.0,828213150 +224,25,4.0,828213150 +224,28,5.0,828213150 +224,29,4.0,839010002 +224,30,4.0,828786667 +224,32,5.0,828213150 +224,34,5.0,828214011 +224,35,4.0,828213150 +224,36,5.0,830633234 +224,43,4.0,828213150 +224,47,4.0,828214012 +224,50,4.0,828214012 +224,52,4.0,828213150 +224,55,4.0,839010002 +224,58,3.0,828213150 +224,82,4.0,845813990 +224,85,4.0,828213150 +224,94,4.0,830633251 +224,95,3.0,828213150 +224,100,4.0,828213150 +224,103,4.0,828213150 +224,110,5.0,828214011 +224,125,4.0,830633279 +224,149,5.0,828214011 +224,150,5.0,828214011 +224,151,4.0,828214012 +224,153,4.0,828214011 +224,154,4.0,828214011 +224,158,5.0,828214011 +224,162,5.0,828214011 +224,165,4.0,828214012 +224,173,4.0,828214012 +224,175,5.0,828214012 +224,193,4.0,828214012 +224,213,5.0,828214011 +224,223,5.0,828214011 +224,232,4.0,828214012 +224,233,5.0,828214012 +224,235,5.0,828214012 +224,242,4.0,828214012 +224,247,4.0,828214012 +224,249,4.0,828214012 +224,253,4.0,828214012 +224,260,4.0,828214012 +224,265,4.0,828214012 +224,272,4.0,828214012 +224,288,5.0,828214012 +224,296,5.0,828214012 +224,299,4.0,828214012 +224,302,4.0,828214012 +224,305,4.0,828214012 +224,306,4.0,828214012 +224,307,4.0,828214012 +224,308,4.0,828214012 +224,314,4.0,828214012 +224,329,4.0,828214012 +224,334,3.0,828214012 +224,335,4.0,828214012 +224,337,4.0,828214012 +224,339,4.0,828214012 +224,344,4.0,828214011 +224,347,5.0,828214011 +224,348,5.0,828214011 +224,380,4.0,828214012 +224,410,4.0,828214011 +224,427,3.0,828214011 +224,435,3.0,828214011 +224,452,4.0,828214012 +224,468,4.0,828214012 +224,494,4.0,828213150 +224,553,5.0,828214012 +224,555,4.0,828214012 +224,588,5.0,828214011 +224,608,5.0,828213150 +224,627,4.0,845813991 +224,628,4.0,845813971 +224,640,3.0,828213150 +224,671,4.0,844524239 +224,698,3.0,828214012 +224,736,4.0,844524239 +224,999,4.0,844524290 +224,1405,4.0,852123396 +225,47,5.0,845565857 +225,110,4.0,845565809 +225,150,4.0,845565685 +225,153,4.0,845565714 +225,185,3.0,845565809 +225,208,4.0,845565809 +225,231,3.0,845565739 +225,253,5.0,845565809 +225,296,3.0,845565686 +225,316,4.0,845565739 +225,329,4.0,845565783 +225,344,4.0,845565714 +225,356,5.0,845565783 +225,364,4.0,845565822 +225,367,5.0,845565857 +225,380,4.0,845565686 +225,410,3.0,845565857 +225,454,3.0,845565822 +225,457,5.0,845565739 +225,480,5.0,845565795 +225,588,5.0,845565714 +225,589,5.0,845565822 +225,590,5.0,845565685 +225,592,3.0,845565685 +225,593,4.0,845565739 +225,595,5.0,845565739 +225,661,3.0,845565888 +225,724,4.0,845565888 +226,318,4.0,1243762758 +226,531,1.5,1243762124 +226,673,1.5,1243762077 +226,2294,2.0,1243762068 +226,2340,4.0,1243762219 +226,2359,3.5,1243762134 +226,3301,2.5,1243762172 +226,3633,3.0,1243762382 +226,3999,3.0,1243762330 +226,4340,2.5,1243762582 +226,4844,2.0,1243762406 +226,4973,0.5,1243763244 +226,4994,3.5,1243762473 +226,4995,4.0,1243762720 +226,5064,4.0,1243763891 +226,5066,4.0,1243762882 +226,5151,3.0,1243762444 +226,6059,3.5,1243763886 +226,6942,4.5,1243762849 +226,7346,3.0,1243762511 +226,8533,4.0,1243762794 +226,8865,3.0,1243762368 +226,8972,4.0,1243763425 +226,37853,3.5,1243762823 +226,49278,4.0,1243763896 +226,50802,4.0,1243762742 +226,50804,1.5,1243763362 +226,51925,3.5,1243763430 +226,52604,3.0,1243763906 +226,56156,1.5,1243763401 +226,58103,3.5,1243763406 +226,58559,4.0,1243763261 +226,62081,2.0,1243763397 +226,63113,4.0,1243762564 +226,64716,4.5,1243762865 +226,65465,4.0,1243762781 +227,2231,5.0,913134477 +227,2236,1.0,913134321 +227,2273,4.0,913134321 +227,2279,5.0,913134514 +227,2296,2.0,913134567 +227,2306,4.0,913134539 +227,2315,5.0,913134606 +227,2316,4.0,913134567 +227,2321,1.0,913134235 +227,2328,5.0,913134321 +227,2333,4.0,913134539 +227,2334,5.0,913134477 +227,2335,5.0,913134432 +227,2336,3.0,913134321 +227,2338,5.0,913134477 +227,2339,3.0,913134606 +227,2340,4.0,913134321 +227,2353,5.0,913134235 +227,2354,1.0,913134567 +227,2355,3.0,913134235 +227,2384,1.0,913134321 +227,2385,2.0,913134432 +227,2386,5.0,913134606 +227,2387,5.0,913134567 +227,2389,5.0,913134321 +227,2392,4.0,913134321 +228,260,5.0,1449332254 +228,370,5.0,1449333925 +228,380,2.5,1449332391 +228,480,5.0,1449332387 +228,589,5.0,1449332363 +228,1036,4.0,1449332361 +228,1196,5.0,1449332248 +228,1197,5.0,1449332705 +228,1198,5.0,1449332258 +228,1200,5.0,1449332374 +228,1210,5.0,1449332347 +228,1220,5.0,1449334010 +228,1270,5.0,1449332622 +228,1291,5.0,1449332356 +228,1517,5.0,1449332778 +228,1527,5.0,1449332419 +228,1580,5.0,1449332499 +228,1682,3.5,1449332697 +228,2005,4.5,1449332941 +228,2011,5.0,1449333009 +228,2115,5.0,1449332742 +228,2134,4.0,1449332997 +228,2193,5.0,1449332950 +228,2413,5.0,1449334085 +228,2478,5.0,1449333053 +228,2571,5.0,1449332260 +228,2683,1.0,1449333035 +228,2716,5.0,1449332613 +228,2791,5.0,1449332943 +228,2792,5.0,1449333021 +228,2959,4.0,1449332395 +228,2987,4.0,1449332739 +228,3033,5.0,1449332729 +228,3868,5.0,1449333862 +228,3869,5.0,1449333892 +228,3948,2.0,1449332324 +228,4085,5.0,1449332406 +228,4993,4.0,1449332270 +228,5378,0.5,1449332320 +228,5445,5.0,1449332537 +228,5952,4.0,1449332353 +228,6365,1.0,1449332306 +228,7153,4.0,1449332265 +228,8961,4.0,1449332425 +228,33794,4.0,1449332376 +228,51255,5.0,1449332453 +228,54286,5.0,1449332366 +228,58559,4.0,1449332291 +228,68358,3.5,1449332380 +228,69524,3.5,1449332439 +228,77455,4.0,1449332444 +228,79132,3.0,1449332368 +228,89745,3.0,1449332382 +228,97913,3.0,1449332736 +228,103335,3.0,1449332725 +228,103341,4.0,1449334017 +228,108932,5.0,1449332634 +228,111362,4.0,1449332492 +228,112852,5.0,1449332358 +228,116797,4.0,1449332415 +229,372,3.0,1277402492 +229,468,3.5,1277402549 +229,858,4.0,1277403365 +229,904,4.0,1277403392 +229,920,4.5,1277403663 +229,953,4.5,1277403301 +229,1035,5.0,1277403675 +229,1042,3.5,1277402475 +229,1172,4.5,1277402495 +229,1193,4.5,1277403389 +229,1207,4.5,1277403376 +229,1221,4.5,1277403320 +229,1250,4.5,1277403287 +229,1262,4.5,1277403372 +229,1283,4.0,1277403324 +229,1287,5.0,1277402505 +229,1680,3.5,1277402911 +229,2427,3.5,1277402527 +229,2707,3.0,1277402875 +229,2949,3.0,1277402905 +229,2968,4.0,1277402487 +229,3006,4.0,1277402502 +229,3107,3.5,1277402536 +229,3108,4.0,1277402538 +229,3396,4.5,1277402891 +229,3435,4.0,1277403381 +229,3499,4.5,1277402514 +229,3510,4.0,1277402540 +229,4002,4.0,1277402894 +229,4406,4.0,1277403384 +229,8533,4.5,1277403699 +229,44204,4.0,1277403306 +229,63082,4.5,1277403641 +230,223,3.5,1424847209 +230,293,5.0,1424846921 +230,318,4.5,1424846788 +230,356,5.0,1424846892 +230,555,5.0,1424847059 +230,593,4.0,1424846876 +230,608,4.5,1424847191 +230,778,4.0,1424847123 +230,1089,5.0,1424847112 +230,1197,4.0,1424846895 +230,1206,3.0,1424847128 +230,1259,5.0,1424846902 +230,1265,4.0,1424847026 +230,1285,4.0,1424847283 +230,1673,5.0,1424847299 +230,1682,5.0,1424847259 +230,1704,4.0,1424846798 +230,1732,5.0,1424846972 +230,1784,5.0,1424846925 +230,1884,5.0,1424847168 +230,1961,5.0,1424847304 +230,2291,4.5,1424847281 +230,2318,5.0,1424847290 +230,2329,4.0,1424846877 +230,2395,5.0,1424847141 +230,2502,5.0,1424847126 +230,2542,4.5,1424847156 +230,2571,3.5,1424846794 +230,2692,5.0,1424846932 +230,2762,3.5,1424846800 +230,2858,5.0,1424846896 +230,2959,4.5,1424846881 +230,2997,5.0,1424847117 +230,3020,5.0,1424847343 +230,3160,5.0,1424847145 +230,3275,5.0,1424846967 +230,3362,4.5,1424847314 +230,3481,5.0,1424847137 +230,3535,4.0,1424847310 +230,3949,5.0,1424847122 +230,3967,4.5,1424847060 +230,4011,5.0,1424846912 +230,4027,5.0,1424847114 +230,4034,5.0,1424847366 +230,4226,5.0,1424847121 +230,4641,4.0,1424847172 +230,4848,4.0,1424847201 +230,4878,5.0,1424847194 +230,4979,5.0,1424847079 +230,5902,4.5,1424847151 +230,6016,5.0,1424846802 +230,6711,4.0,1424847119 +230,7361,5.0,1424847110 +230,8533,4.0,1424847049 +230,8873,3.5,1424847002 +230,8874,5.0,1424846990 +230,8949,3.5,1424847278 +230,27878,4.0,1424847011 +230,30810,5.0,1424847153 +230,33166,4.0,1424847029 +230,33171,4.0,1424847052 +230,36529,2.5,1424847296 +230,38061,5.0,1424849051 +230,38886,5.0,1424847320 +230,44195,5.0,1424847265 +230,44665,4.5,1424847206 +230,46578,4.5,1424846976 +230,46976,5.0,1424847038 +230,48560,4.5,1424847322 +230,48774,3.0,1424846995 +230,53956,5.0,1424847279 +230,55269,5.0,1424847268 +230,56715,5.0,1424847021 +230,61323,5.0,1424847263 +230,69122,2.5,1424846833 +230,69757,4.0,1424846836 +230,70286,4.0,1424846828 +230,72998,2.0,1424846823 +230,79132,5.0,1424846821 +230,80463,4.5,1424847317 +230,81591,3.5,1424849047 +230,89864,3.5,1424847035 +230,91658,4.0,1424847018 +230,94959,4.0,1424846943 +230,97921,5.0,1424847008 +230,97938,5.0,1424847358 +230,104841,4.5,1424847187 +230,106100,5.0,1424846998 +230,106782,4.5,1424847184 +230,106920,5.0,1424847108 +230,109374,5.0,1424846841 +230,111529,5.0,1424847056 +230,112183,4.0,1424846845 +230,112421,5.0,1424847095 +231,50,5.0,977005387 +231,111,4.0,977005465 +231,296,5.0,977005223 +231,357,4.0,977004911 +231,593,3.0,977005387 +231,608,5.0,977005223 +231,903,4.0,977005465 +231,904,5.0,977005465 +231,908,4.0,977005387 +231,912,3.0,977004911 +231,1089,4.0,977005429 +231,1193,4.0,977004875 +231,1200,3.0,977005465 +231,1213,5.0,977005223 +231,1221,4.0,977004941 +231,1240,5.0,977005465 +231,1252,3.0,977005387 +231,1267,5.0,977005429 +231,1617,3.0,977005387 +231,1625,3.0,977004941 +231,1834,4.0,977005540 +231,2183,3.0,977004875 +231,2762,5.0,977005495 +231,2858,5.0,977005223 +231,2952,4.0,977005495 +231,3481,4.0,977005286 +231,3515,4.0,977005286 +231,3546,3.0,977005540 +231,3751,4.0,977005286 +231,3897,5.0,977005012 +231,3911,5.0,977005012 +231,3948,3.0,977005057 +232,1,3.0,955088635 +232,11,4.0,955090745 +232,17,5.0,955092905 +232,25,1.0,955092749 +232,32,5.0,955093134 +232,50,5.0,955089337 +232,62,5.0,955093709 +232,95,4.0,955087429 +232,100,5.0,955094079 +232,102,2.0,955091997 +232,105,4.0,955093134 +232,110,5.0,955086825 +232,111,5.0,955092541 +232,126,3.0,955088485 +232,141,3.0,955091364 +232,150,4.0,955092811 +232,151,2.0,955085936 +232,153,4.0,955087749 +232,164,5.0,955086305 +232,208,4.0,955088485 +232,216,4.0,955091261 +232,224,5.0,955090687 +232,235,5.0,955090106 +232,252,4.0,955091068 +232,253,5.0,955094114 +232,260,5.0,955086726 +232,261,5.0,955093421 +232,265,5.0,955084805 +232,275,1.0,955091783 +232,282,4.0,955093785 +232,296,5.0,955089364 +232,314,5.0,955088162 +232,316,4.0,955087429 +232,317,1.0,955089040 +232,329,4.0,955087039 +232,345,5.0,955085082 +232,350,5.0,955086305 +232,356,3.0,955085994 +232,357,5.0,955090612 +232,367,5.0,955089484 +232,368,4.0,955086595 +232,370,4.0,955091737 +232,377,4.0,955086786 +232,379,4.0,955087496 +232,381,3.0,955093560 +232,383,4.0,955086621 +232,405,3.0,955087888 +232,412,5.0,955092697 +232,417,5.0,955090253 +232,420,2.0,955087810 +232,421,2.0,955088228 +232,428,4.0,955093560 +232,432,4.0,955086643 +232,440,4.0,955090442 +232,441,2.0,955090459 +232,444,4.0,955091578 +232,454,5.0,955093134 +232,458,4.0,955086621 +232,463,4.0,955089443 +232,466,3.0,955086058 +232,468,4.0,955091142 +232,473,1.0,955091760 +232,474,4.0,955086757 +232,475,5.0,955093253 +232,480,5.0,955086927 +232,500,4.0,955091142 +232,502,1.0,955087861 +232,505,3.0,955092085 +232,509,4.0,955093282 +232,514,5.0,955090580 +232,515,5.0,955093989 +232,517,4.0,955087200 +232,518,4.0,955091870 +232,520,4.0,955091901 +232,521,5.0,955089638 +232,527,4.0,955085423 +232,529,4.0,955092879 +232,531,5.0,955088998 +232,534,5.0,955092905 +232,537,5.0,955091503 +232,539,5.0,955091068 +232,551,4.0,955090720 +232,552,3.0,955087496 +232,580,4.0,955093756 +232,587,4.0,955090950 +232,588,5.0,955088673 +232,589,3.0,955084924 +232,590,5.0,955086595 +232,592,5.0,955086825 +232,593,5.0,955092379 +232,594,5.0,955088700 +232,595,4.0,955088897 +232,596,5.0,955088700 +232,597,2.0,955084992 +232,599,2.0,955086564 +232,608,5.0,955089337 +232,610,4.0,955086889 +232,647,3.0,955085994 +232,653,4.0,955087069 +232,674,3.0,955088437 +232,707,5.0,955089613 +232,715,4.0,955093684 +232,720,5.0,955088635 +232,733,4.0,955088228 +232,736,4.0,955087308 +232,750,4.0,955085423 +232,761,4.0,955088507 +232,778,5.0,955093134 +232,780,3.0,955086033 +232,788,3.0,955091302 +232,801,4.0,955088998 +232,838,5.0,955090637 +232,848,2.0,955093207 +232,858,5.0,955086697 +232,888,4.0,955088735 +232,898,5.0,955090333 +232,902,4.0,955093253 +232,903,3.0,955086164 +232,904,3.0,955086203 +232,905,5.0,955089938 +232,908,3.0,955092410 +232,909,1.0,955089938 +232,910,2.0,955089364 +232,911,4.0,955086203 +232,912,4.0,955084581 +232,913,4.0,955086164 +232,919,4.0,955088041 +232,920,4.0,955085465 +232,921,4.0,955089975 +232,923,5.0,955092359 +232,924,1.0,955086203 +232,926,4.0,955092436 +232,936,4.0,955090665 +232,940,5.0,955086697 +232,943,5.0,955093560 +232,944,4.0,955092811 +232,945,4.0,955089788 +232,946,3.0,955085965 +232,948,2.0,955093709 +232,949,2.0,955092697 +232,951,4.0,955089729 +232,952,3.0,955088123 +232,953,4.0,955092663 +232,954,5.0,955084884 +232,955,4.0,955090273 +232,961,5.0,955093825 +232,969,5.0,955085936 +232,970,5.0,955090665 +232,971,2.0,955092635 +232,973,4.0,955092599 +232,984,5.0,955091192 +232,1010,1.0,955091192 +232,1013,4.0,955089040 +232,1014,4.0,955089212 +232,1017,3.0,955088998 +232,1019,5.0,955088291 +232,1020,5.0,955091105 +232,1022,4.0,955088673 +232,1032,5.0,955088735 +232,1036,5.0,955086826 +232,1037,5.0,955087713 +232,1059,4.0,955092879 +232,1066,5.0,955089859 +232,1073,3.0,955088187 +232,1078,3.0,955085965 +232,1079,5.0,955089938 +232,1080,3.0,955090186 +232,1081,3.0,955084924 +232,1084,5.0,955089364 +232,1086,3.0,955086203 +232,1089,5.0,955089364 +232,1090,5.0,955093017 +232,1091,4.0,955091919 +232,1092,4.0,955086367 +232,1094,5.0,955085838 +232,1095,4.0,955093061 +232,1097,4.0,955088897 +232,1099,4.0,955092697 +232,1101,5.0,955087069 +232,1103,4.0,955093017 +232,1120,5.0,955093607 +232,1124,1.0,955093913 +232,1125,5.0,955090637 +232,1127,4.0,955085015 +232,1131,5.0,955093253 +232,1132,4.0,955092663 +232,1135,4.0,955091411 +232,1136,5.0,955084521 +232,1161,5.0,955093506 +232,1162,4.0,955090106 +232,1171,1.0,955090297 +232,1172,2.0,955090106 +232,1173,1.0,955094314 +232,1178,4.0,955092410 +232,1179,4.0,955089364 +232,1183,5.0,955085936 +232,1186,4.0,955093160 +232,1193,5.0,955092436 +232,1194,5.0,955090987 +232,1196,4.0,955085465 +232,1197,4.0,955086726 +232,1198,4.0,955084521 +232,1201,4.0,955086564 +232,1203,5.0,955092635 +232,1204,5.0,955085390 +232,1207,5.0,955092599 +232,1208,5.0,955085839 +232,1209,4.0,955086564 +232,1210,4.0,955085902 +232,1211,5.0,955090253 +232,1212,4.0,955086164 +232,1213,4.0,955092479 +232,1214,5.0,955086726 +232,1217,5.0,955085390 +232,1220,4.0,955087091 +232,1221,5.0,955086697 +232,1222,5.0,955085867 +232,1224,5.0,955085423 +232,1225,5.0,955092359 +232,1226,2.0,955090580 +232,1227,5.0,955089443 +232,1228,4.0,955092541 +232,1230,1.0,955089788 +232,1233,5.0,955085423 +232,1234,4.0,955089337 +232,1235,4.0,955090035 +232,1237,5.0,955092359 +232,1238,4.0,955090226 +232,1240,3.0,955084805 +232,1242,5.0,955085839 +232,1243,5.0,955084581 +232,1244,3.0,955090035 +232,1245,5.0,955092749 +232,1246,5.0,955092931 +232,1250,4.0,955085423 +232,1251,1.0,955092879 +232,1252,5.0,955086164 +232,1253,5.0,955092839 +232,1254,5.0,955088041 +232,1256,4.0,955085390 +232,1259,4.0,955088041 +232,1261,4.0,955088123 +232,1262,4.0,955085465 +232,1263,5.0,955085867 +232,1264,5.0,955086203 +232,1265,4.0,955089893 +232,1266,5.0,955086527 +232,1270,5.0,955089827 +232,1271,5.0,955093345 +232,1272,5.0,955085867 +232,1273,5.0,955090035 +232,1275,4.0,955087200 +232,1276,4.0,955089788 +232,1278,5.0,955089859 +232,1282,5.0,955088735 +232,1284,4.0,955084721 +232,1285,4.0,955090442 +232,1286,4.0,955093965 +232,1287,4.0,955086697 +232,1288,5.0,955092905 +232,1289,4.0,955085839 +232,1291,4.0,955088071 +232,1292,5.0,955089938 +232,1293,5.0,955092635 +232,1295,4.0,955092956 +232,1296,4.0,955093644 +232,1298,5.0,955086033 +232,1299,5.0,955085423 +232,1300,5.0,955092565 +232,1302,5.0,955092931 +232,1303,5.0,955088041 +232,1304,5.0,955086527 +232,1305,5.0,955093398 +232,1307,4.0,955089975 +232,1333,2.0,955084884 +232,1356,5.0,955088187 +232,1358,5.0,955092479 +232,1370,4.0,955087069 +232,1371,4.0,955088437 +232,1372,4.0,955087130 +232,1373,4.0,955087688 +232,1374,3.0,955086889 +232,1375,5.0,955088228 +232,1376,4.0,955086826 +232,1377,4.0,955087200 +232,1380,3.0,955090687 +232,1381,3.0,955084521 +232,1387,5.0,955086757 +232,1388,3.0,955087638 +232,1391,3.0,955086033 +232,1393,4.0,955092784 +232,1394,4.0,955089938 +232,1395,4.0,955090552 +232,1396,4.0,955089443 +232,1401,5.0,955093282 +232,1408,5.0,955085902 +232,1409,3.0,955091364 +232,1411,5.0,955092663 +232,1419,5.0,955092720 +232,1441,4.0,955091015 +232,1455,5.0,955090226 +232,1459,2.0,955086367 +232,1485,4.0,955091068 +232,1500,5.0,955089466 +232,1513,5.0,955091192 +232,1527,4.0,955087200 +232,1541,4.0,955091192 +232,1544,4.0,955087283 +232,1552,3.0,955088368 +232,1562,5.0,955087861 +232,1569,4.0,955090919 +232,1580,5.0,955086826 +232,1587,5.0,955087200 +232,1590,4.0,955086434 +232,1597,5.0,955086367 +232,1608,4.0,955087343 +232,1610,4.0,955086786 +232,1614,4.0,955091643 +232,1617,4.0,955086203 +232,1646,4.0,955091870 +232,1663,4.0,955090253 +232,1676,3.0,955087016 +232,1682,3.0,955092956 +232,1690,4.0,955087343 +232,1693,5.0,955093183 +232,1703,4.0,955091578 +232,1704,4.0,955092720 +232,1711,5.0,955086367 +232,1721,4.0,955093684 +232,1735,4.0,955084955 +232,1772,4.0,955087713 +232,1810,4.0,955093447 +232,1827,5.0,955092224 +232,1876,4.0,955087069 +232,1885,4.0,955090226 +232,1894,4.0,955091436 +232,1918,3.0,955089578 +232,1923,5.0,955090442 +232,1925,5.0,955086033 +232,1931,5.0,955088071 +232,1935,5.0,955084805 +232,1939,5.0,955085390 +232,1940,5.0,955092839 +232,1941,4.0,955093684 +232,1942,4.0,955092663 +232,1944,4.0,955085465 +232,1948,5.0,955089998 +232,1949,5.0,955092541 +232,1950,2.0,955086164 +232,1952,5.0,955093017 +232,1953,5.0,955092749 +232,1955,3.0,955093231 +232,1956,3.0,955092931 +232,1957,5.0,955093160 +232,1958,4.0,955091261 +232,1959,4.0,955093879 +232,1960,4.0,955085465 +232,1961,3.0,955092905 +232,1962,3.0,955092879 +232,1964,3.0,955086203 +232,1965,5.0,955090612 +232,1967,5.0,955088397 +232,1968,5.0,955090155 +232,2000,4.0,955086853 +232,2001,4.0,955089551 +232,2002,4.0,955087343 +232,2006,4.0,955087283 +232,2012,3.0,955086621 +232,2013,3.0,955087224 +232,2019,5.0,955086697 +232,2020,5.0,955092599 +232,2022,3.0,955093380 +232,2023,4.0,955087162 +232,2025,4.0,955093330 +232,2028,4.0,955086726 +232,2046,5.0,955088342 +232,2054,4.0,955088397 +232,2059,4.0,955089096 +232,2064,5.0,955089998 +232,2065,1.0,955093160 +232,2067,1.0,955085867 +232,2070,5.0,955093476 +232,2076,4.0,955086203 +232,2087,4.0,955088673 +232,2088,4.0,955088456 +232,2094,4.0,955087383 +232,2096,5.0,955088735 +232,2099,5.0,955088291 +232,2100,4.0,955090383 +232,2102,5.0,955088700 +232,2105,5.0,955088291 +232,2106,5.0,955086033 +232,2108,4.0,955090489 +232,2109,5.0,955090803 +232,2110,5.0,955089551 +232,2111,5.0,955091068 +232,2112,5.0,955089466 +232,2115,4.0,955087091 +232,2116,4.0,955088124 +232,2117,4.0,955094079 +232,2130,4.0,955089413 +232,2133,4.0,955085053 +232,2138,4.0,955088673 +232,2139,3.0,955088735 +232,2140,5.0,955089075 +232,2143,5.0,955088397 +232,2144,5.0,955090333 +232,2145,4.0,955090637 +232,2150,5.0,955090383 +232,2161,4.0,955088368 +232,2162,3.0,955088507 +232,2173,5.0,955088342 +232,2174,5.0,955090155 +232,2193,5.0,955087284 +232,2194,5.0,955086826 +232,2202,4.0,955085936 +232,2238,5.0,955089938 +232,2241,4.0,955091826 +232,2243,3.0,955090383 +232,2245,4.0,955090950 +232,2247,4.0,955090783 +232,2248,4.0,955089975 +232,2252,5.0,955094055 +232,2253,3.0,955087749 +232,2259,4.0,955091870 +232,2262,3.0,955093859 +232,2285,1.0,955093785 +232,2287,3.0,955085902 +232,2288,5.0,955087039 +232,2289,5.0,955089827 +232,2291,4.0,955093061 +232,2300,4.0,955089827 +232,2303,2.0,955092479 +232,2312,4.0,955093785 +232,2313,5.0,955093183 +232,2321,5.0,955090405 +232,2324,5.0,955089757 +232,2335,1.0,955091621 +232,2336,5.0,955092697 +232,2345,4.0,955093476 +232,2348,2.0,955092541 +232,2352,5.0,955093207 +232,2353,4.0,955086889 +232,2362,1.0,955085171 +232,2363,4.0,955087016 +232,2365,1.0,955087383 +232,2366,5.0,955086757 +232,2367,4.0,955087284 +232,2369,4.0,955091503 +232,2370,4.0,955087496 +232,2371,2.0,955090489 +232,2374,3.0,955091578 +232,2375,2.0,955091411 +232,2379,3.0,955091978 +232,2389,4.0,955089613 +232,2393,4.0,955087343 +232,2395,4.0,955084924 +232,2398,4.0,955093017 +232,2399,1.0,955088252 +232,2405,4.0,955087496 +232,2406,5.0,955086995 +232,2407,3.0,955090531 +232,2414,4.0,955086394 +232,2416,4.0,955084955 +232,2420,1.0,955093736 +232,2421,1.0,955087688 +232,2422,1.0,955087830 +232,2424,4.0,955090783 +232,2427,5.0,955085902 +232,2430,3.0,955088228 +232,2450,1.0,955088535 +232,2453,5.0,955094036 +232,2463,3.0,955090155 +232,2467,5.0,955086227 +232,2468,4.0,955087749 +232,2469,5.0,955091105 +232,2470,5.0,955090826 +232,2471,3.0,955088485 +232,2474,5.0,955085082 +232,2476,3.0,955085994 +232,2478,4.0,955086643 +232,2490,5.0,955086853 +232,2524,3.0,955087343 +232,2527,4.0,955086595 +232,2528,4.0,955087200 +232,2531,2.0,955087665 +232,2532,4.0,955087130 +232,2533,2.0,955087130 +232,2539,3.0,955091364 +232,2551,5.0,955093965 +232,2598,4.0,955091142 +232,2605,4.0,955085082 +232,2615,3.0,955088342 +232,2616,3.0,955087284 +232,2617,4.0,955087778 +232,2622,5.0,955091192 +232,2628,4.0,955087162 +232,2629,4.0,955091783 +232,2640,5.0,955086927 +232,2641,5.0,955088342 +232,2642,3.0,955087778 +232,2643,3.0,955087888 +232,2657,1.0,955091015 +232,2659,5.0,955090489 +232,2662,4.0,955085902 +232,2669,4.0,955086033 +232,2671,4.0,955090850 +232,2688,4.0,955093825 +232,2716,5.0,955089975 +232,2717,3.0,955091710 +232,2724,3.0,955085127 +232,2728,5.0,955092512 +232,2729,4.0,955093134 +232,2730,1.0,955093034 +232,2731,2.0,955092512 +232,2732,2.0,955092635 +232,2734,4.0,955094187 +232,2735,1.0,955087638 +232,2736,4.0,955091041 +232,2739,4.0,955093476 +232,2741,1.0,955087429 +232,2745,5.0,955092956 +232,2746,4.0,955090868 +232,2747,4.0,955091282 +232,2748,3.0,955087861 +232,2750,5.0,955090552 +232,2762,3.0,955084776 +232,2779,4.0,955091105 +232,2791,5.0,955089938 +232,2792,4.0,955091578 +232,2797,4.0,955089893 +232,2802,4.0,955087224 +232,2815,4.0,955087810 +232,2816,2.0,955086078 +232,2822,4.0,955088437 +232,2851,3.0,955088535 +232,2857,5.0,955088785 +232,2858,5.0,955089757 +232,2859,5.0,955092165 +232,2860,3.0,955091041 +232,2863,5.0,955090127 +232,2871,4.0,955088124 +232,2872,5.0,955086786 +232,2899,4.0,955088124 +232,2904,3.0,955093380 +232,2915,4.0,955090297 +232,2916,4.0,955088124 +232,2917,5.0,955089443 +232,2918,2.0,955089827 +232,2919,5.0,955092599 +232,2926,4.0,955090919 +232,2929,3.0,955093859 +232,2932,4.0,955092663 +232,2938,5.0,955092931 +232,2941,3.0,955086033 +232,2944,4.0,955085839 +232,2946,2.0,955090035 +232,2947,4.0,955086757 +232,2948,4.0,955086786 +232,2949,4.0,955086826 +232,2950,3.0,955088485 +232,2951,4.0,955086564 +232,2968,5.0,955088162 +232,2970,4.0,955088071 +232,2973,4.0,955089757 +232,2985,5.0,955087069 +232,2986,3.0,955087810 +232,2987,5.0,955088162 +232,2988,4.0,955093304 +232,3005,4.0,955085204 +232,3011,3.0,955093231 +232,3019,4.0,955089390 +232,3020,5.0,955094339 +232,3028,1.0,955090442 +232,3035,4.0,955085839 +232,3037,5.0,955086564 +232,3038,5.0,955092600 +232,3039,4.0,955090106 +232,3040,3.0,955090383 +232,3044,5.0,955086305 +232,3062,4.0,955085867 +232,3066,5.0,955085965 +232,3068,4.0,955092410 +232,3069,4.0,955093644 +232,3070,5.0,955088124 +232,3072,3.0,955090035 +232,3074,4.0,955086527 +232,3086,5.0,955091105 +232,3087,4.0,955090687 +232,3088,5.0,955090253 +232,3090,5.0,955092479 +232,3091,5.0,955085390 +232,3093,4.0,955086564 +232,3095,4.0,955092565 +232,3098,4.0,955092720 +232,3100,4.0,955093421 +232,3108,4.0,955093506 +232,3111,4.0,955092784 +232,3130,1.0,955091578 +232,3134,5.0,955085390 +232,3135,3.0,955093330 +232,3142,2.0,955092253 +232,3143,4.0,955085936 +232,3145,4.0,955084581 +232,3152,3.0,955093017 +232,3153,5.0,955086853 +232,3165,5.0,955087638 +232,3168,4.0,955088124 +232,3169,3.0,955093560 +232,3196,4.0,955085390 +232,3200,5.0,955090580 +232,3201,3.0,955092784 +232,3210,4.0,955090253 +232,3235,4.0,955085053 +232,3244,4.0,955085053 +232,3246,5.0,955084924 +232,3247,1.0,955089638 +232,3248,1.0,955085230 +232,3252,4.0,955093585 +232,3253,4.0,955090383 +232,3254,4.0,955091436 +232,3256,4.0,955086995 +232,3260,5.0,955093607 +232,3265,5.0,955086697 +232,3268,1.0,955087888 +232,3271,5.0,955093183 +232,3284,4.0,955084955 +232,3296,4.0,955085053 +232,3313,3.0,955091760 +232,3334,4.0,955084805 +232,3341,5.0,955090035 +232,3347,5.0,955084721 +232,3350,3.0,955093330 +232,3358,3.0,955090505 +232,3360,3.0,955084721 +232,3361,5.0,955089893 +232,3362,5.0,955089337 +232,3363,5.0,955090442 +232,3368,4.0,955086595 +232,3386,5.0,955086330 +232,3392,3.0,955091737 +232,3395,3.0,955091326 +232,3396,4.0,955088871 +232,3401,3.0,955088552 +232,3404,4.0,955087284 +232,3405,5.0,955092565 +232,3406,5.0,955085839 +232,3417,5.0,955088041 +232,3418,2.0,955086726 +232,3420,5.0,955093506 +232,3421,4.0,955089975 +232,3422,3.0,955090612 +232,3425,3.0,955094314 +232,3447,5.0,955093684 +232,3448,5.0,955090383 +232,3451,1.0,955090720 +232,3452,4.0,955087383 +232,3461,2.0,955084721 +232,3467,3.0,955086527 +232,3468,5.0,955092512 +232,3469,5.0,955092436 +232,3470,5.0,955088041 +232,3471,4.0,955092512 +232,3478,4.0,955093940 +232,3479,5.0,955088228 +232,3480,4.0,955093282 +232,3489,4.0,955085053 +232,3492,4.0,955084776 +232,3494,3.0,955084721 +232,3501,4.0,955090383 +232,3504,3.0,955089893 +232,3508,4.0,955086527 +232,3520,1.0,955091807 +232,3524,5.0,955090720 +232,3527,5.0,955086889 +232,3543,4.0,955084721 +232,3545,4.0,955085465 +232,3546,2.0,955093859 +232,3548,4.0,955090987 +232,3552,3.0,955084833 +232,5060,3.0,955085423 +232,6460,4.0,955092359 +233,3,3.0,854481667 +233,7,3.0,854481668 +233,14,3.0,854481720 +233,17,5.0,854481605 +233,58,3.0,854481720 +233,79,3.0,854481818 +233,86,3.0,854481964 +233,95,3.0,854481605 +233,100,3.0,854481871 +233,140,3.0,854481818 +233,141,4.0,854481605 +233,376,3.0,854481720 +233,494,3.0,854481668 +233,608,5.0,854481667 +233,612,3.0,854482094 +233,648,3.0,854481605 +233,707,3.0,854481904 +233,733,3.0,854481667 +233,736,3.0,854481605 +233,762,3.0,854481818 +233,780,4.0,854481605 +233,798,3.0,854482215 +233,802,3.0,854481871 +233,805,3.0,854481818 +233,832,3.0,854481871 +233,836,3.0,854482094 +233,839,3.0,854481931 +233,991,3.0,854482185 +233,1006,3.0,854482155 +233,1049,3.0,854482128 +233,1061,3.0,854482028 +233,1073,3.0,854481668 +233,1183,4.0,854482094 +233,1356,3.0,854481818 +233,1427,3.0,854482386 +233,1432,3.0,854483044 +234,260,4.5,1213808478 +234,344,2.5,1213808811 +234,356,4.0,1213808418 +234,367,2.5,1213812189 +234,480,3.5,1213808468 +234,500,4.0,1213808838 +234,541,4.0,1213850399 +234,595,3.5,1213808800 +234,661,3.5,1213807874 +234,720,3.5,1213807932 +234,745,4.0,1213850214 +234,953,4.0,1213850929 +234,1009,2.5,1213808119 +234,1073,4.5,1213808850 +234,1080,4.5,1213850599 +234,1097,4.0,1213808791 +234,1136,4.0,1213808935 +234,1148,4.0,1213850220 +234,1196,4.0,1213850207 +234,1197,4.0,1213808825 +234,1207,4.0,1213850391 +234,1210,4.5,1213808471 +234,1223,4.0,1213850249 +234,1235,5.0,1213851075 +234,1247,5.0,1213850812 +234,1253,5.0,1213807978 +234,1256,5.0,1213850734 +234,1258,4.5,1213849887 +234,1265,2.5,1213808817 +234,1278,4.0,1213850783 +234,1288,2.5,1213850711 +234,1517,4.0,1213809124 +234,1527,4.5,1213809053 +234,1580,4.0,1213808563 +234,1653,4.0,1213850048 +234,1704,5.0,1213808776 +234,1747,4.5,1213807884 +234,1961,5.0,1213808787 +234,1994,3.5,1213807909 +234,2009,3.5,1213808056 +234,2116,2.5,1213808014 +234,2135,2.5,1213808185 +234,2174,4.5,1213809131 +234,2355,3.5,1213809094 +234,2501,4.0,1213849910 +234,2571,5.0,1213808677 +234,2616,4.5,1213807987 +234,2628,5.0,1213809315 +234,2683,4.0,1213808734 +234,2706,3.0,1213808885 +234,2788,4.0,1213850255 +234,2857,4.5,1213808043 +234,2959,5.0,1213850281 +234,2987,3.5,1213809012 +234,2997,4.0,1213808624 +234,3088,4.5,1213850419 +234,3156,4.5,1213811295 +234,3451,3.0,1213808139 +234,3751,3.0,1213809032 +234,4015,0.5,1213812537 +234,4027,4.0,1213808757 +234,4247,2.0,1213812184 +234,4306,3.5,1213809332 +234,4878,5.0,1213850493 +234,4886,3.5,1213808943 +234,4963,4.0,1213808594 +234,4993,4.5,1213808402 +234,4995,5.0,1213808856 +234,5349,3.0,1213808437 +234,5378,4.5,1213808684 +234,5445,4.5,1213808409 +234,5446,4.5,1213850960 +234,5952,4.0,1213808556 +234,5989,5.0,1213808744 +234,6365,2.5,1213812196 +234,6377,3.0,1213808395 +234,6539,2.5,1213808525 +234,6773,3.0,1213851131 +234,6780,4.5,1213850480 +234,6807,4.0,1213850840 +234,6934,3.5,1213809047 +234,7075,5.0,1213850410 +234,7147,4.5,1213808994 +234,7153,4.0,1213808492 +234,7826,5.0,1213850449 +234,8360,2.5,1213808633 +234,8464,3.5,1213849993 +234,8961,3.0,1213850352 +234,33493,3.5,1213808659 +234,33794,4.0,1213808610 +234,37729,3.5,1213808156 +234,38038,2.0,1213850633 +234,44195,3.5,1213850557 +234,44788,4.0,1213850871 +234,45722,3.0,1213808730 +234,45928,4.0,1213850718 +234,45950,4.0,1213849987 +234,46578,4.0,1213808724 +234,46976,3.0,1213850458 +234,48385,3.5,1213808872 +234,48394,5.0,1213808784 +234,48516,4.5,1214019119 +234,48774,3.5,1213808901 +234,53894,3.5,1213851113 +234,54272,3.0,1213808921 +234,54503,3.0,1213808212 +234,54997,4.5,1213849828 +234,55820,5.0,1213808755 +234,56174,3.5,1213809072 +234,56367,4.0,1213808642 +234,56782,4.5,1213850703 +234,56885,3.0,1213849982 +234,59315,3.5,1213850200 +234,59900,1.5,1213808569 +234,60040,1.5,1213850463 +235,5,4.5,1113184535 +235,6,4.0,1111625738 +235,11,3.5,1111558168 +235,47,3.0,1111625682 +235,48,3.0,1111557883 +235,50,5.0,1111624791 +235,62,4.5,1112684858 +235,110,2.5,1111625366 +235,141,3.5,1112684837 +235,161,4.5,1111558307 +235,222,4.5,1113185196 +235,225,4.5,1113184522 +235,236,4.0,1113184650 +235,237,5.0,1112683901 +235,261,3.0,1113184861 +235,292,5.0,1112684815 +235,296,4.5,1112684715 +235,318,5.0,1111625666 +235,339,3.0,1111558147 +235,342,3.0,1111557878 +235,345,3.5,1113184836 +235,356,5.0,1111558324 +235,357,4.5,1112684826 +235,376,3.5,1113184553 +235,377,4.5,1112684769 +235,380,4.0,1112684736 +235,457,5.0,1111625394 +235,500,4.5,1112684805 +235,527,2.5,1112684757 +235,539,3.5,1112684824 +235,552,3.5,1111557887 +235,587,4.5,1112684820 +235,588,4.5,1112684754 +235,590,4.5,1112684729 +235,592,4.5,1112684726 +235,593,3.5,1112684720 +235,597,3.5,1112684800 +235,608,4.0,1112684762 +235,628,5.0,1111624825 +235,648,5.0,1112684775 +235,708,4.0,1113184332 +235,733,4.5,1111624806 +235,780,1.5,1112684742 +235,802,4.5,1113184569 +235,805,4.0,1111557865 +235,832,4.5,1111557824 +235,919,5.0,1113184252 +235,920,5.0,1113184517 +235,1028,5.0,1113184765 +235,1030,4.0,1112683857 +235,1035,5.0,1113184771 +235,1059,3.5,1111558201 +235,1073,4.5,1112684831 +235,1079,5.0,1113184284 +235,1183,2.5,1113184347 +235,1207,4.5,1113184787 +235,1246,4.5,1111625308 +235,1270,4.5,1111625478 +235,1271,5.0,1111625338 +235,1307,4.0,1111558142 +235,1380,4.0,1111557859 +235,1479,4.0,1113185192 +235,1513,3.5,1111558190 +235,1569,4.0,1113184939 +235,1610,4.5,1111625466 +235,1617,5.0,1112684850 +235,1625,5.0,1111557910 +235,1682,5.0,1111625561 +235,1721,5.0,1112684853 +235,1777,4.0,1111558040 +235,1923,5.0,1111625545 +235,1968,4.0,1111625400 +235,2001,3.5,1111557895 +235,2011,4.5,1113184557 +235,2012,4.0,1111557797 +235,2028,1.0,1111625611 +235,2058,4.5,1111624838 +235,2093,4.0,1112683986 +235,2137,5.0,1111625606 +235,2268,5.0,1111624821 +235,2398,4.5,1111625522 +235,2424,4.5,1113184953 +235,2470,4.0,1113184902 +235,2580,5.0,1111625707 +235,2605,3.5,1113185426 +235,2640,3.0,1111557849 +235,2671,4.5,1113184878 +235,2688,4.0,1111558171 +235,2706,5.0,1113184474 +235,2707,5.0,1111624909 +235,2762,5.0,1111625493 +235,2770,4.0,1111557951 +235,2858,5.0,1112684796 +235,2987,4.5,1113184343 +235,3105,4.5,1111558346 +235,3147,5.0,1111558315 +235,3176,4.5,1113184806 +235,3186,4.5,1111625256 +235,3248,4.0,1111558251 +235,3249,4.5,1111558180 +235,3271,4.5,1111625571 +235,3408,4.0,1113184664 +235,3418,4.0,1113184855 +235,3502,4.5,1111625539 +235,3510,5.0,1111624842 +235,3594,3.5,1112683878 +235,3623,3.5,1111557915 +235,3717,4.0,1113185462 +235,3897,4.0,1111557838 +235,3911,5.0,1113185127 +235,3916,4.5,1111624808 +235,3948,4.0,1113184895 +235,3977,3.5,1111557925 +235,4014,4.0,1111625270 +235,4034,4.0,1113184803 +235,4040,3.0,1112684562 +235,4225,4.5,1111625773 +235,4226,4.5,1113184683 +235,4239,4.0,1111625407 +235,4246,5.0,1113185136 +235,4306,4.5,1113184481 +235,4308,4.5,1113185418 +235,4326,3.5,1111625663 +235,4448,5.0,1111625302 +235,4464,4.0,1111558237 +235,4563,3.5,1112684567 +235,4867,4.0,1112683808 +235,4880,4.5,1111558319 +235,4963,4.5,1111558338 +235,4973,4.5,1113184957 +235,4975,3.5,1111625566 +235,4979,4.0,1113185409 +235,4995,5.0,1111625398 +235,5296,4.0,1112684000 +235,5349,4.5,1111625384 +235,5377,5.0,1111625591 +235,5418,4.5,1111625388 +235,5419,4.0,1112684539 +235,5445,5.0,1111557956 +235,5679,4.5,1111625786 +235,5989,4.0,1111625410 +235,6187,5.0,1111558545 +235,6503,3.0,1111558210 +235,6596,4.0,1112684315 +235,6708,5.0,1111625585 +235,6879,3.5,1111558305 +235,6942,4.5,1111558343 +235,8360,4.5,1111625506 +235,8368,4.5,1111625480 +235,8529,4.0,1111624869 +235,8636,4.5,1111625558 +235,8784,5.0,1111625700 +235,8970,4.5,1111625624 +235,8981,4.5,1111625696 +235,30825,4.0,1111625295 +236,6,3.0,1109968623 +236,7,3.5,1109968699 +236,10,3.0,1109969756 +236,30,4.5,1109969948 +236,32,4.0,1109968555 +236,47,2.5,1109968576 +236,111,4.5,1109968034 +236,260,3.0,1109968540 +236,273,2.0,1109968457 +236,296,3.0,1109968527 +236,364,3.0,1109968579 +236,431,4.0,1109966648 +236,480,3.0,1109968531 +236,500,2.5,1109968588 +236,527,3.5,1109968548 +236,541,4.5,1109968643 +236,588,3.5,1109969735 +236,590,3.0,1109968536 +236,593,4.0,1109968524 +236,599,4.5,1109968086 +236,750,5.0,1109971087 +236,780,2.0,1109969720 +236,841,4.0,1109967830 +236,898,3.0,1109968421 +236,899,4.5,1109966580 +236,903,5.0,1109966545 +236,904,5.0,1109966481 +236,908,4.5,1109967977 +236,909,4.5,1109969375 +236,910,5.0,1109968082 +236,912,4.0,1109968050 +236,913,4.0,1109967997 +236,915,3.5,1109970877 +236,922,4.5,1109968315 +236,923,4.5,1109967953 +236,924,5.0,1109970618 +236,926,4.5,1109968066 +236,928,4.0,1109967251 +236,930,5.0,1109967261 +236,931,3.5,1109970400 +236,933,4.0,1109970393 +236,936,5.0,1109969439 +236,942,4.5,1109970960 +236,943,4.5,1109970939 +236,945,4.0,1109970866 +236,946,5.0,1109969559 +236,951,4.5,1109967224 +236,954,4.0,1109969418 +236,955,5.0,1109967198 +236,969,4.0,1109970857 +236,1036,3.5,1109968647 +236,1086,3.5,1109969503 +236,1097,3.5,1109970487 +236,1136,4.0,1109968653 +236,1178,5.0,1109967629 +236,1196,3.5,1109968568 +236,1198,4.0,1109970484 +236,1199,5.0,1109969478 +236,1206,4.5,1109968692 +236,1208,5.0,1109968111 +236,1209,4.5,1109970597 +236,1210,3.0,1109968570 +236,1212,4.0,1109967947 +236,1214,4.0,1109968641 +236,1217,5.0,1109971090 +236,1219,4.5,1109968032 +236,1222,3.5,1109968727 +236,1230,5.0,1109970725 +236,1237,5.0,1109967103 +236,1244,5.0,1109966673 +236,1248,4.5,1109967666 +236,1250,3.5,1109966538 +236,1251,5.0,1109967728 +236,1252,4.5,1109966498 +236,1260,5.0,1109967631 +236,1281,5.0,1109967179 +236,1291,4.0,1109970489 +236,1293,3.0,1109968414 +236,1305,4.5,1109967832 +236,1333,4.5,1109970388 +236,1344,4.0,1109969595 +236,1345,4.0,1109967845 +236,1348,4.0,1109967681 +236,1354,2.5,1109968435 +236,1387,4.5,1109970492 +236,1617,2.5,1109968618 +236,1676,4.5,1109968758 +236,1693,3.0,1109970511 +236,1721,2.5,1109968614 +236,1809,4.5,1109969436 +236,1945,4.5,1109969660 +236,2000,0.5,1109968738 +236,2010,4.5,1109967675 +236,2019,5.0,1109966767 +236,2021,2.0,1109966683 +236,2028,3.0,1109968596 +236,2066,4.5,1109968058 +236,2115,3.5,1109970495 +236,2131,4.0,1109969831 +236,2176,3.5,1109970402 +236,2177,3.5,1109970434 +236,2178,3.5,1109970415 +236,2183,4.0,1109970408 +236,2186,4.0,1109967985 +236,2194,2.5,1109968451 +236,2200,4.0,1109970440 +236,2201,4.0,1109970426 +236,2294,3.5,1109966621 +236,2396,3.0,1109968637 +236,2539,2.0,1109968453 +236,2571,2.5,1109967118 +236,2575,2.5,1109968438 +236,2628,2.0,1109968633 +236,2712,4.5,1109968751 +236,2726,4.0,1109967658 +236,2729,4.0,1109969519 +236,2731,4.0,1109968380 +236,2732,4.0,1109969555 +236,2858,3.0,1109968584 +236,2940,4.0,1109967761 +236,3022,5.0,1109967974 +236,3089,4.0,1109968045 +236,3091,5.0,1109967456 +236,3095,5.0,1109969421 +236,3097,4.5,1109969445 +236,3134,5.0,1109967646 +236,3306,4.5,1109970368 +236,3307,5.0,1109967626 +236,3310,5.0,1109968106 +236,3334,3.5,1109969372 +236,3365,5.0,1109968980 +236,3435,4.0,1109967968 +236,3462,5.0,1109967189 +236,3470,5.0,1109967460 +236,3489,3.5,1109970507 +236,3559,4.5,1109969969 +236,3578,2.5,1109968673 +236,3632,5.0,1109970365 +236,3657,4.0,1109970036 +236,3730,4.5,1109967989 +236,3739,5.0,1109968072 +236,3741,5.0,1109969669 +236,3742,4.0,1109968381 +236,3872,4.0,1109970924 +236,3996,3.5,1109968127 +236,4034,3.0,1109969498 +236,4144,4.0,1109967746 +236,4190,4.0,1109969539 +236,4273,4.0,1109967813 +236,4308,2.5,1109968443 +236,4334,4.5,1109968118 +236,4406,4.5,1109969664 +236,4420,4.0,1109970928 +236,4422,4.5,1109967548 +236,4768,4.5,1109968355 +236,4848,4.5,1109967788 +236,4914,3.5,1109967701 +236,4993,2.5,1109967157 +236,5009,3.5,1109966931 +236,5017,4.0,1109968023 +236,5060,4.0,1109966503 +236,5114,5.0,1109969567 +236,5147,4.5,1109967637 +236,5177,4.0,1109967689 +236,5291,4.5,1109967445 +236,5333,4.0,1109969403 +236,5378,2.5,1109966680 +236,5440,4.5,1109968993 +236,5498,4.5,1109967921 +236,5613,3.0,1109968430 +236,5690,4.0,1109969080 +236,5878,3.5,1109967694 +236,5952,3.0,1109966553 +236,5989,4.5,1109970504 +236,5995,4.5,1109968307 +236,6001,4.5,1109969468 +236,6126,4.0,1109967739 +236,6273,5.0,1109968131 +236,6286,4.0,1109969551 +236,6331,3.5,1109969381 +236,6609,4.0,1109968495 +236,6643,5.0,1109968006 +236,6669,5.0,1109966788 +236,6711,4.5,1109967724 +236,6721,4.0,1109969602 +236,6783,4.5,1109967651 +236,6920,4.5,1109969547 +236,6993,4.5,1109969390 +236,7013,5.0,1109967936 +236,7064,3.0,1109968433 +236,7089,4.0,1109968140 +236,7090,3.5,1109968100 +236,7116,5.0,1109967943 +236,7135,4.0,1109967643 +236,7136,4.0,1109967715 +236,7153,2.5,1109968441 +236,7209,4.0,1109967756 +236,7210,4.0,1109968371 +236,7211,4.5,1109970922 +236,7215,4.0,1109969093 +236,7234,4.0,1109968003 +236,7327,4.5,1109968361 +236,7396,4.0,1109967575 +236,7577,4.0,1109967580 +236,7713,4.5,1109967836 +236,7766,4.5,1109967451 +236,7926,4.5,1109967475 +236,7943,4.5,1109969060 +236,8012,4.5,1109969578 +236,8125,5.0,1109967980 +236,8154,5.0,1109967678 +236,8157,4.0,1109970223 +236,8188,5.0,1109966867 +236,8199,5.0,1109966882 +236,8228,4.0,1109967850 +236,8370,4.5,1109970205 +236,8507,4.0,1109967707 +236,8584,4.5,1109970963 +236,8670,4.5,1109970303 +236,25952,4.5,1109970931 +236,27721,3.5,1109969335 +236,27801,0.5,1109966730 +236,30812,3.5,1109967877 +236,31437,4.0,1109970251 +237,1,3.0,1102009632 +237,32,2.0,1102009650 +237,110,1.5,1102009612 +237,153,2.5,1102009658 +237,198,4.0,1102009385 +237,260,4.0,1102009618 +237,272,4.5,1102009412 +237,292,3.5,1102009703 +237,296,4.5,1102009524 +237,316,2.0,1102009670 +237,318,4.5,1102009616 +237,329,2.5,1102009690 +237,344,2.5,1102009661 +237,345,4.0,1102009339 +237,364,3.5,1102009685 +237,380,2.5,1102009621 +237,588,3.5,1102009646 +237,589,2.5,1102009625 +237,590,1.0,1102009608 +237,592,3.0,1102009606 +237,593,4.0,1102009537 +237,595,3.5,1102009669 +237,608,5.0,1102009653 +237,780,2.0,1102009630 +237,1084,4.0,1102009369 +237,1196,4.5,1102009679 +237,1198,3.5,1102009688 +237,1210,3.5,1102009641 +237,1270,4.0,1102009692 +237,1285,4.0,1102009408 +237,1320,2.0,1102009364 +237,1372,3.5,1102009356 +237,1408,1.0,1102009348 +237,1673,4.0,1102009372 +237,1674,3.0,1102009392 +237,1777,3.0,1102009415 +237,2001,3.0,1102009379 +237,2353,2.5,1102009346 +237,2502,4.5,1102009382 +237,2657,3.0,1102009353 +237,2858,4.5,1102009697 +237,3052,3.5,1102009404 +237,4034,2.5,1102009388 +237,5952,5.0,1102009410 +238,231,3.0,1459368758 +238,318,3.5,1459365344 +238,356,4.5,1459365351 +238,480,3.5,1459368104 +238,527,3.0,1459365348 +238,593,3.5,1459365430 +238,1203,3.0,1459365520 +238,1246,4.0,1459365432 +238,1265,3.5,1459365485 +238,1307,4.5,1459365437 +238,1682,5.0,1459365433 +238,1721,4.5,1459365489 +238,2028,4.0,1459365358 +238,2424,3.0,1459365613 +238,2572,4.0,1459368780 +238,2706,3.0,1459368656 +238,3147,3.5,1459365410 +238,3949,1.5,1459365474 +238,4025,4.0,1459365549 +238,4246,2.0,1459365555 +238,4447,2.5,1459365553 +238,4700,4.0,1459365696 +238,4973,4.0,1459365441 +238,5445,5.0,1459368216 +238,5995,3.0,1459365450 +238,6155,2.5,1459365608 +238,6218,4.0,1459365619 +238,6942,2.5,1459365532 +238,7254,4.0,1459365492 +238,8464,2.0,1459368738 +238,8529,3.5,1459368499 +238,8533,5.0,1459365539 +238,27815,3.0,1459365779 +238,31685,4.5,1459365536 +238,33145,3.0,1459366339 +238,33679,3.5,1459368339 +238,34162,4.0,1459368514 +238,40629,4.0,1459365565 +238,43744,4.0,1459366702 +238,44191,3.5,1459368123 +238,45720,3.5,1459368498 +238,46578,3.5,1459365479 +238,47610,4.5,1459368367 +238,49286,2.5,1459365691 +238,50872,4.0,1459368144 +238,51084,2.0,1459365766 +238,55247,3.5,1459365444 +238,55269,3.0,1459365677 +238,56367,3.5,1459365480 +238,56949,2.5,1459365716 +238,57669,3.0,1459368375 +238,58998,4.0,1459368784 +238,60950,4.0,1459365681 +238,63082,4.0,1459365451 +238,64969,3.0,1459365578 +238,66203,3.0,1459365739 +238,67788,2.5,1459366302 +238,69757,4.0,1459368365 +238,72011,2.5,1459368747 +238,72998,2.5,1459368113 +238,74154,3.5,1459366320 +238,74458,5.0,1459368146 +238,74946,2.0,1459366291 +238,79132,2.0,1459365422 +238,80549,5.0,1459368731 +238,81845,3.0,1459365462 +238,84954,4.0,1459365592 +238,85414,3.5,1459368358 +238,86882,4.0,1459368512 +238,88163,2.5,1459445378 +238,88405,3.5,1459365680 +238,90576,3.5,1459366330 +238,91500,5.0,1459365468 +238,92259,3.5,1459365356 +238,94959,3.0,1459368371 +238,95088,5.0,1459365727 +238,95309,3.5,1459366117 +238,97921,4.5,1459368344 +238,99114,4.5,1459368103 +238,102903,4.0,1459368666 +238,104374,5.0,1459365542 +238,105246,4.0,1459366707 +238,105844,4.0,1459368527 +238,106782,4.5,1459365457 +238,108729,4.0,1459365771 +238,109483,3.0,1459366324 +238,112556,3.5,1459368134 +238,115569,4.5,1459368335 +238,116797,4.0,1459365418 +238,148626,3.0,1459365379 +238,148956,4.0,1459366931 +239,3,4.0,991861185 +239,4,3.0,991862027 +239,5,3.0,991862159 +239,11,4.0,991858087 +239,39,5.0,991858188 +239,65,2.0,991863117 +239,69,5.0,991858188 +239,88,2.0,991862480 +239,104,4.0,991858274 +239,135,4.0,991862216 +239,141,4.0,991858523 +239,153,3.0,991862983 +239,157,4.0,991862945 +239,180,4.0,991858310 +239,181,1.0,991857762 +239,203,4.0,991862715 +239,216,4.0,991860676 +239,223,4.0,991857956 +239,232,4.0,991858113 +239,248,4.0,991862882 +239,252,4.0,991862216 +239,276,3.0,991862789 +239,289,5.0,991860829 +239,317,3.0,991862159 +239,327,4.0,991857762 +239,339,4.0,991860848 +239,353,4.0,991857646 +239,356,5.0,991858310 +239,367,4.0,991860580 +239,368,5.0,991860952 +239,372,4.0,991860635 +239,378,4.0,991860635 +239,380,4.0,991860692 +239,387,4.0,991862830 +239,410,3.0,991861948 +239,413,4.0,991862649 +239,420,3.0,991863153 +239,429,5.0,991862309 +239,432,4.0,991863057 +239,433,4.0,991862789 +239,435,3.0,991862480 +239,440,4.0,991858227 +239,457,3.0,991855128 +239,476,4.0,991858087 +239,485,3.0,991863117 +239,486,3.0,991862715 +239,489,2.0,991863270 +239,497,5.0,991858341 +239,500,4.0,991860998 +239,514,4.0,991855174 +239,516,4.0,991861141 +239,520,4.0,991862913 +239,532,3.0,991859417 +239,539,3.0,991860657 +239,542,1.0,991862242 +239,543,5.0,991858523 +239,551,4.0,991855174 +239,587,4.0,991860611 +239,588,5.0,991858143 +239,656,3.0,991862945 +239,673,4.0,991862945 +239,688,2.0,991863270 +239,708,5.0,991859417 +239,719,3.0,991862620 +239,725,3.0,991862111 +239,733,4.0,991857646 +239,762,3.0,991863117 +239,785,4.0,991860873 +239,830,3.0,991862027 +239,837,5.0,991860611 +239,852,4.0,991862069 +239,892,4.0,991858523 +239,910,4.0,991858010 +239,915,5.0,991858469 +239,934,4.0,991859388 +239,1007,4.0,991862264 +239,1010,3.0,991855128 +239,1016,3.0,991862190 +239,1021,3.0,991862855 +239,1042,4.0,991858555 +239,1060,5.0,991857902 +239,1073,3.0,991858207 +239,1077,4.0,991858403 +239,1091,3.0,991862882 +239,1097,4.0,991855128 +239,1135,4.0,991861210 +239,1197,5.0,991857857 +239,1210,5.0,991855174 +239,1215,4.0,991859364 +239,1220,4.0,991858555 +239,1259,4.0,991857857 +239,1265,4.0,991858039 +239,1278,5.0,991857939 +239,1288,4.0,991857902 +239,1297,4.0,991858577 +239,1307,5.0,991857987 +239,1380,5.0,991860952 +239,1391,4.0,991862130 +239,1394,4.0,991857902 +239,1409,3.0,991862044 +239,1431,3.0,991862983 +239,1440,3.0,991862789 +239,1456,2.0,991859326 +239,1468,3.0,991862945 +239,1476,4.0,991858577 +239,1485,3.0,991860754 +239,1495,1.0,991857762 +239,1500,5.0,991857939 +239,1513,2.0,991861948 +239,1566,4.0,991860829 +239,1580,4.0,991859417 +239,1593,2.0,991862216 +239,1641,4.0,991858113 +239,1663,5.0,991858449 +239,1680,5.0,991855174 +239,1689,4.0,991862159 +239,1711,3.0,991860676 +239,1713,3.0,991860829 +239,1777,5.0,991858247 +239,1784,5.0,991858341 +239,1894,4.0,991862715 +239,1918,4.0,991862159 +239,1923,4.0,991858247 +239,1968,5.0,991857873 +239,2000,4.0,991858188 +239,2002,3.0,991862309 +239,2003,3.0,991860580 +239,2004,2.0,991862498 +239,2011,4.0,991860721 +239,2016,3.0,991862830 +239,2040,3.0,991862190 +239,2081,4.0,991858449 +239,2082,3.0,991862190 +239,2088,3.0,991862882 +239,2100,3.0,991859326 +239,2108,4.0,991858039 +239,2109,4.0,991860692 +239,2111,3.0,991855174 +239,2133,3.0,991860952 +239,2134,4.0,991860873 +239,2136,3.0,991860721 +239,2144,4.0,991858291 +239,2174,4.0,991858172 +239,2195,3.0,991862983 +239,2208,4.0,991858010 +239,2245,3.0,991860873 +239,2247,3.0,991861141 +239,2248,4.0,991857902 +239,2249,4.0,991862027 +239,2252,3.0,991862913 +239,2266,3.0,991862309 +239,2306,4.0,991862945 +239,2331,4.0,991862069 +239,2335,4.0,991862789 +239,2347,3.0,991857729 +239,2355,5.0,991858403 +239,2369,3.0,991862264 +239,2374,4.0,991862529 +239,2375,3.0,991861993 +239,2378,3.0,991862159 +239,2379,4.0,991863153 +239,2396,4.0,991857922 +239,2405,4.0,991862242 +239,2406,4.0,991859339 +239,2407,4.0,991860611 +239,2408,3.0,991862620 +239,2409,5.0,991857687 +239,2410,4.0,991857729 +239,2411,4.0,991857729 +239,2412,4.0,991857762 +239,2413,4.0,991861228 +239,2424,5.0,991861185 +239,2431,5.0,991862069 +239,2463,4.0,991858403 +239,2469,4.0,991860952 +239,2470,3.0,991860974 +239,2471,3.0,991863077 +239,2473,2.0,991862761 +239,2485,4.0,991859417 +239,2502,3.0,991858207 +239,2539,4.0,991860873 +239,2552,2.0,991862130 +239,2558,3.0,991862027 +239,2567,4.0,991860721 +239,2572,4.0,991858087 +239,2581,4.0,991860927 +239,2582,3.0,991862761 +239,2587,3.0,991861164 +239,2597,2.0,991862216 +239,2599,4.0,991858039 +239,2617,4.0,991857646 +239,2640,4.0,991857646 +239,2641,4.0,991857687 +239,2643,3.0,991857762 +239,2671,5.0,991858227 +239,2683,3.0,991861141 +239,2690,4.0,991857971 +239,2700,5.0,991858039 +239,2706,4.0,991858143 +239,2716,3.0,991857956 +239,2717,3.0,991862649 +239,2718,5.0,991860611 +239,2723,4.0,991860721 +239,2735,3.0,991862264 +239,2736,5.0,991858555 +239,2746,4.0,991860611 +239,2770,3.0,991861164 +239,2774,5.0,991857793 +239,2791,3.0,991858067 +239,2792,3.0,991862027 +239,2796,3.0,991861210 +239,2797,4.0,991858039 +239,2805,2.0,991862216 +239,2858,5.0,991857828 +239,2883,4.0,991858087 +239,2888,3.0,991862027 +239,2889,4.0,991860611 +239,2915,4.0,991858403 +239,2918,5.0,991857873 +239,2953,3.0,991863011 +239,3004,3.0,991862480 +239,3033,5.0,991860754 +239,3086,4.0,991858449 +239,3104,4.0,991858172 +239,3114,5.0,991857828 +239,3120,3.0,991862309 +239,3146,3.0,991863117 +239,3175,4.0,991858341 +239,3247,4.0,991861185 +239,3248,4.0,991863077 +239,3253,4.0,991858291 +239,3254,3.0,991861993 +239,3255,5.0,991859326 +239,3258,4.0,991862715 +239,3261,4.0,991858469 +239,3263,4.0,991860927 +239,3286,3.0,991862620 +239,3299,4.0,991862855 +239,3301,4.0,991859417 +239,3324,4.0,991862855 +239,3358,4.0,991858113 +239,3361,4.0,991858172 +239,3388,2.0,991862309 +239,3395,3.0,991862913 +239,3398,5.0,991858172 +239,3424,4.0,991858143 +239,3450,4.0,991860848 +239,3508,4.0,991855128 +239,3524,4.0,991861993 +239,3527,3.0,991857646 +239,3534,4.0,991861210 +239,3544,4.0,991860909 +239,3548,5.0,991857857 +239,3552,4.0,991859364 +239,3591,4.0,991858555 +239,3646,3.0,991863205 +239,3669,3.0,991863205 +239,3712,4.0,991862740 +239,3715,4.0,991862804 +239,3740,4.0,991857687 +239,3751,5.0,991857939 +239,3773,4.0,991863205 +239,3809,4.0,991859417 +239,3865,5.0,991858010 +239,3868,3.0,991858341 +239,3869,3.0,991862190 +239,3873,3.0,991858143 +239,3977,5.0,991857729 +239,4010,5.0,991861164 +239,4040,3.0,991861993 +239,4063,3.0,991860873 +239,4066,4.0,991860657 +239,4085,4.0,991860635 +239,4089,3.0,991863077 +239,4102,4.0,991861210 +239,4115,3.0,991862454 +239,4121,3.0,991860657 +239,4130,3.0,991862190 +239,4132,4.0,991863117 +239,4135,3.0,991861964 +239,4180,4.0,991857729 +239,4214,4.0,991860829 +239,4221,2.0,991862621 +239,4275,2.0,991857687 +239,4293,3.0,991862830 +239,4317,3.0,991863254 +239,4321,4.0,991858227 +239,4333,3.0,991862069 +239,4351,3.0,991857687 +239,4355,4.0,991857687 +239,5060,4.0,991857987 +240,1,4.5,1098943177 +240,16,3.5,1098940415 +240,17,4.0,1099263843 +240,21,3.0,1099264224 +240,32,4.5,1098943194 +240,34,4.5,1098943234 +240,36,4.0,1099264248 +240,39,4.5,1099264239 +240,47,4.0,1098943239 +240,50,2.5,1098943216 +240,58,4.0,1098940446 +240,111,5.0,1099264401 +240,141,3.5,1098943401 +240,150,4.0,1098943139 +240,165,3.5,1099264155 +240,236,4.5,1098940440 +240,261,4.0,1099263911 +240,282,3.0,1098940465 +240,296,3.5,1098943112 +240,318,4.0,1098943148 +240,348,4.0,1100891640 +240,356,2.5,1098943118 +240,357,4.0,1099264208 +240,367,3.0,1099264190 +240,377,3.0,1099264147 +240,380,1.5,1098943163 +240,410,4.0,1098943389 +240,440,3.5,1099264392 +240,457,3.5,1098943126 +240,480,3.0,1098943121 +240,500,4.0,1098943263 +240,508,4.0,1099264444 +240,527,4.5,1098943191 +240,588,4.0,1098943189 +240,592,3.0,1099264128 +240,593,4.0,1098943115 +240,595,3.5,1099264168 +240,597,3.0,1098943250 +240,608,5.0,1098943196 +240,648,3.5,1099264160 +240,708,4.0,1099264464 +240,736,2.5,1098943220 +240,785,4.0,1100891642 +240,898,4.5,1098943016 +240,904,3.5,1098940468 +240,905,4.5,1098942302 +240,908,4.0,1098940443 +240,913,4.5,1100891624 +240,919,5.0,1098942325 +240,923,4.0,1098940434 +240,924,4.5,1099264429 +240,927,3.5,1098942545 +240,936,4.0,1098942369 +240,947,4.0,1098942354 +240,950,4.0,1098942278 +240,951,4.5,1098943018 +240,954,3.0,1098942287 +240,955,4.0,1098942381 +240,965,4.0,1098942362 +240,1035,4.0,1100891607 +240,1036,4.0,1099264397 +240,1079,4.0,1098943357 +240,1086,4.0,1099263692 +240,1183,3.5,1098943365 +240,1193,4.5,1099264292 +240,1197,4.0,1099264243 +240,1200,4.0,1098943372 +240,1207,4.5,1100891613 +240,1230,4.5,1098940404 +240,1265,4.5,1098943368 +240,1269,3.5,1098943033 +240,1270,4.5,1098943245 +240,1278,4.0,1098940482 +240,1288,4.0,1098940479 +240,1300,4.5,1098944005 +240,1345,4.0,1098944013 +240,1358,3.5,1098940471 +240,1374,3.0,1098940424 +240,1391,4.0,1098944020 +240,1393,4.0,1099264433 +240,1500,4.0,1098940462 +240,1517,3.0,1098940408 +240,1580,4.0,1099264279 +240,1617,4.0,1099264252 +240,1643,4.5,1098943956 +240,1674,3.0,1100891593 +240,1680,4.5,1098943969 +240,1704,4.0,1099264460 +240,1719,4.0,1098943980 +240,1721,4.0,1099264266 +240,1885,4.5,1098943951 +240,1923,4.0,1100891588 +240,2100,4.0,1098943938 +240,2186,4.0,1098943923 +240,2187,4.0,1099263951 +240,2208,4.5,1098942320 +240,2321,4.0,1098943917 +240,2355,4.0,1098943350 +240,2396,4.0,1100891570 +240,2406,4.0,1100891552 +240,2580,4.5,1098944069 +240,2599,4.5,1098940438 +240,2700,4.0,1098940473 +240,2710,1.5,1100891560 +240,2716,4.5,1099264419 +240,2762,5.0,1099264284 +240,2797,3.5,1098940410 +240,2858,4.0,1098943257 +240,2935,3.5,1098943021 +240,2967,4.0,1099263884 +240,2987,3.0,1100891563 +240,2997,5.0,1098943346 +240,3081,3.5,1098943473 +240,3097,4.0,1098943036 +240,3114,4.0,1098940427 +240,3176,3.5,1100891566 +240,3408,3.5,1098941550 +240,3471,4.0,1098943449 +240,3481,4.5,1098940976 +240,3499,4.5,1098943441 +240,3624,2.5,1098943431 +240,3735,4.0,1100891675 +240,3751,5.0,1098941805 +240,3752,3.0,1098943444 +240,3783,4.0,1098941873 +240,3787,4.5,1098941980 +240,3793,3.5,1098940453 +240,3852,3.5,1098941320 +240,3897,3.5,1098942038 +240,3910,4.5,1098941614 +240,3911,4.5,1098940920 +240,3948,4.0,1098941264 +240,3967,5.0,1098941840 +240,3983,4.5,1098940857 +240,3994,3.5,1098941249 +240,3996,4.0,1098940892 +240,4011,4.0,1098941830 +240,4022,4.0,1098941349 +240,4027,4.5,1098940996 +240,4034,3.5,1098940885 +240,4226,4.5,1098942007 +240,4246,4.0,1098941559 +240,4306,3.5,1098940449 +240,4361,4.0,1100891663 +240,4380,4.5,1098941721 +240,4641,4.0,1098941927 +240,4642,4.5,1098941689 +240,4720,4.5,1098941779 +240,4734,3.0,1098941075 +240,4848,4.0,1098941594 +240,4878,4.5,1098940951 +240,4886,4.5,1098940840 +240,4896,3.5,1098941427 +240,4963,4.0,1098941457 +240,4973,4.5,1098940798 +240,4979,4.0,1098941819 +240,4995,3.5,1098941508 +240,5013,4.5,1098941683 +240,5135,4.5,1098941821 +240,5299,3.5,1098941294 +240,5349,3.5,1098941463 +240,5418,4.0,1098941460 +240,5421,3.5,1098941654 +240,5445,4.5,1098941802 +240,5505,3.5,1098941554 +240,5618,4.5,1098940845 +240,5679,4.0,1098941433 +240,5791,4.0,1098941702 +240,5812,4.0,1098941876 +240,5816,3.5,1098941479 +240,5902,4.0,1098940993 +240,5945,3.5,1098941627 +240,5952,4.0,1098940811 +240,5989,4.0,1098942043 +240,5991,4.5,1098941724 +240,5992,4.0,1098941622 +240,6003,4.0,1098941599 +240,6188,2.5,1098941172 +240,6218,4.5,1098941879 +240,6296,4.0,1098941756 +240,6333,3.5,1098941498 +240,6377,4.0,1098940801 +240,6378,4.0,1098941164 +240,6385,4.5,1098940878 +240,6412,4.5,1098942388 +240,6539,4.5,1098940971 +240,6565,4.5,1098941834 +240,6591,4.0,1098941896 +240,6593,4.0,1098941152 +240,6711,3.5,1098940999 +240,6773,4.5,1098940930 +240,6777,4.0,1099263679 +240,6867,4.0,1098940826 +240,6870,3.0,1098940906 +240,6874,3.0,1098941865 +240,6877,4.0,1098941221 +240,6881,4.0,1098941736 +240,6947,4.0,1098941911 +240,7061,4.5,1098942299 +240,7078,4.0,1098942385 +240,7090,5.0,1098940849 +240,7121,4.5,1098943008 +240,7139,4.0,1098940787 +240,7147,3.5,1098941010 +240,7153,4.0,1098941997 +240,7155,4.0,1098941383 +240,7160,4.5,1098940926 +240,7212,3.5,1098943048 +240,7361,3.5,1098940744 +240,7382,4.0,1098941308 +240,7437,3.0,1099264034 +240,7438,3.0,1098940863 +240,7451,3.5,1099263895 +240,7493,4.0,1099263684 +240,8228,4.5,1098942274 +240,8360,4.0,1098940835 +240,8368,4.5,1098940807 +240,8464,4.0,1098940766 +240,8507,3.5,1098942537 +240,8622,5.0,1099263824 +240,8636,4.5,1098940773 +240,8638,2.5,1098940761 +240,8644,3.0,1098941299 +240,8665,4.5,1098941014 +240,8784,4.0,1098940749 +240,8798,3.0,1098940934 +240,8833,4.0,1098941882 +240,8865,4.0,1098941471 +240,8879,4.5,1099263674 +240,8917,4.5,1098940658 +241,1,3.0,847339737 +241,2,3.0,847339662 +241,5,2.0,847340005 +241,34,4.0,847339564 +241,36,4.0,847339832 +241,47,3.0,847339539 +241,48,2.0,847339855 +241,50,4.0,847339589 +241,150,2.0,847339376 +241,153,3.0,847339409 +241,158,3.0,847339806 +241,160,2.0,847339639 +241,181,3.0,847340005 +241,194,5.0,847340261 +241,196,3.0,847339737 +241,223,3.0,847339930 +241,230,3.0,847340034 +241,231,3.0,847339439 +241,235,4.0,847339757 +241,247,3.0,847340345 +241,253,3.0,847339510 +241,261,3.0,847339806 +241,296,4.0,847339376 +241,316,3.0,847339439 +241,317,2.0,847339639 +241,318,4.0,847339462 +241,319,5.0,847340188 +241,342,3.0,847340005 +241,344,3.0,847339409 +241,353,2.0,847339832 +241,355,2.0,847339906 +241,356,2.0,847339439 +241,357,3.0,847339614 +241,362,3.0,847340064 +241,364,3.0,847339539 +241,367,3.0,847339538 +241,370,3.0,847339855 +241,377,3.0,847339539 +241,380,3.0,847339376 +241,410,3.0,847339564 +241,420,3.0,847339614 +241,457,3.0,847339409 +241,471,4.0,847340064 +241,474,3.0,847339686 +241,480,3.0,847339462 +241,500,3.0,847339539 +241,509,3.0,847339686 +241,535,5.0,847340320 +241,551,4.0,847339780 +241,555,4.0,847339884 +241,587,3.0,847339564 +241,589,4.0,847339510 +241,592,3.0,847339375 +241,595,3.0,847339439 +241,778,4.0,847340320 +241,780,3.0,847339780 +242,1,5.0,956682763 +242,6,4.0,956684268 +242,11,5.0,956682997 +242,16,5.0,956685888 +242,21,5.0,956683024 +242,22,4.0,956685619 +242,25,4.0,956683813 +242,31,4.0,956686556 +242,34,4.0,956682698 +242,36,5.0,956683601 +242,47,4.0,956685503 +242,50,5.0,956685336 +242,52,4.0,956682964 +242,95,4.0,956684660 +242,100,4.0,956686165 +242,110,5.0,956683581 +242,111,5.0,956688563 +242,141,3.0,956683116 +242,144,4.0,956683189 +242,150,5.0,956683697 +242,164,5.0,956685910 +242,165,4.0,956684962 +242,185,4.0,956686266 +242,198,4.0,956684523 +242,205,4.0,956682849 +242,208,5.0,956686438 +242,215,4.0,956683909 +242,248,3.0,956682826 +242,252,3.0,956683089 +242,257,4.0,956686146 +242,260,5.0,956684986 +242,280,4.0,956686092 +242,296,5.0,956685371 +242,300,4.0,956683725 +242,316,4.0,956684523 +242,318,5.0,956683421 +242,329,4.0,956684700 +242,337,5.0,956683697 +242,342,4.0,956683024 +242,348,5.0,956682849 +242,349,5.0,956685888 +242,350,4.0,956685998 +242,352,5.0,956682826 +242,356,5.0,956682894 +242,357,4.0,956682997 +242,361,5.0,956686736 +242,368,4.0,956684438 +242,371,4.0,956682911 +242,373,5.0,956685782 +242,377,5.0,956684268 +242,378,4.0,956682390 +242,380,5.0,956683116 +242,415,4.0,956686292 +242,422,5.0,956686226 +242,425,4.0,956683937 +242,432,4.0,956686838 +242,440,5.0,956682934 +242,448,4.0,956689050 +242,454,3.0,956685888 +242,457,5.0,956684185 +242,463,4.0,956685706 +242,471,5.0,956686752 +242,474,4.0,956684185 +242,480,5.0,956684268 +242,481,2.0,956686199 +242,507,5.0,956684403 +242,508,5.0,956684901 +242,527,5.0,956683421 +242,529,5.0,956683627 +242,534,4.0,956683581 +242,541,5.0,956688507 +242,554,3.0,956685834 +242,590,5.0,956688281 +242,592,5.0,956685475 +242,593,4.0,956683457 +242,597,5.0,956688220 +242,608,5.0,956683457 +242,628,4.0,956685782 +242,648,4.0,956684523 +242,691,3.0,956683189 +242,695,4.0,956682390 +242,733,5.0,956685910 +242,748,3.0,956684700 +242,750,5.0,956688480 +242,786,4.0,956686146 +242,800,5.0,956683697 +242,832,3.0,956685946 +242,838,3.0,956683881 +242,852,4.0,956686455 +242,858,5.0,956685336 +242,866,4.0,956683838 +242,898,5.0,956684901 +242,899,5.0,956688756 +242,900,5.0,956689131 +242,903,5.0,956688564 +242,904,5.0,956686633 +242,908,5.0,956688480 +242,912,5.0,956688410 +242,913,5.0,956688533 +242,919,5.0,956688378 +242,920,5.0,956686633 +242,923,5.0,956688410 +242,924,5.0,956688951 +242,926,5.0,956689000 +242,933,5.0,956689083 +242,949,5.0,956688825 +242,953,5.0,956689083 +242,969,5.0,956688849 +242,994,5.0,956683645 +242,1036,5.0,956684962 +242,1041,4.0,956683421 +242,1042,4.0,956683089 +242,1057,2.0,956683158 +242,1084,5.0,956685371 +242,1088,5.0,956687231 +242,1090,5.0,956687495 +242,1094,5.0,956683909 +242,1095,4.0,956683627 +242,1096,5.0,956687430 +242,1097,5.0,956682390 +242,1103,5.0,956688901 +242,1124,5.0,956687665 +242,1179,5.0,956685421 +242,1183,5.0,956683960 +242,1186,4.0,956687495 +242,1187,4.0,956689000 +242,1193,5.0,956688564 +242,1196,5.0,956685008 +242,1197,5.0,956687159 +242,1198,5.0,956685111 +242,1203,5.0,956688613 +242,1204,5.0,956688533 +242,1206,5.0,956689409 +242,1207,5.0,956688507 +242,1208,5.0,956685238 +242,1210,5.0,956685040 +242,1213,4.0,956683457 +242,1214,5.0,956688735 +242,1219,5.0,956688588 +242,1221,5.0,956685336 +242,1225,5.0,956687335 +242,1227,5.0,956685476 +242,1230,4.0,956688378 +242,1231,5.0,956687360 +242,1234,5.0,956685336 +242,1246,5.0,956687625 +242,1247,5.0,956688678 +242,1252,5.0,956688480 +242,1254,5.0,956688901 +242,1259,4.0,956687360 +242,1265,4.0,956682826 +242,1266,5.0,956688756 +242,1269,5.0,956689109 +242,1270,5.0,956689000 +242,1272,4.0,956689028 +242,1276,5.0,956688564 +242,1282,5.0,956688928 +242,1290,4.0,956687566 +242,1291,5.0,956685077 +242,1296,4.0,956687159 +242,1299,5.0,956687335 +242,1302,5.0,956687526 +242,1304,5.0,956688780 +242,1307,5.0,956687159 +242,1333,5.0,956689028 +242,1343,4.0,956685974 +242,1356,5.0,956684374 +242,1358,5.0,956683541 +242,1370,4.0,956684962 +242,1372,4.0,956684330 +242,1377,4.0,956684660 +242,1387,5.0,956688735 +242,1391,4.0,956684548 +242,1393,4.0,956683881 +242,1394,5.0,956688901 +242,1395,5.0,956687566 +242,1396,5.0,956685476 +242,1404,4.0,956683697 +242,1422,4.0,956686019 +242,1425,4.0,956683048 +242,1479,5.0,956686146 +242,1480,4.0,956684548 +242,1500,4.0,956682826 +242,1518,3.0,956684523 +242,1542,4.0,956683909 +242,1544,5.0,956686266 +242,1552,4.0,956684620 +242,1573,4.0,956684374 +242,1580,5.0,956684301 +242,1586,3.0,956684660 +242,1597,4.0,956684438 +242,1608,5.0,956684438 +242,1610,5.0,956684268 +242,1615,4.0,956685857 +242,1616,4.0,956686199 +242,1617,5.0,956685283 +242,1639,4.0,956683937 +242,1647,4.0,956686332 +242,1653,5.0,956685946 +242,1674,5.0,956687159 +242,1678,4.0,956688928 +242,1694,4.0,956682390 +242,1704,5.0,956683513 +242,1719,3.0,956683581 +242,1721,5.0,956683881 +242,1729,5.0,956685503 +242,1732,4.0,956682934 +242,1747,5.0,956682894 +242,1748,5.0,956685834 +242,1784,4.0,956682792 +242,1791,3.0,956685619 +242,1792,4.0,956686266 +242,1841,4.0,956686092 +242,1845,5.0,956683089 +242,1892,3.0,956685946 +242,1912,4.0,956683785 +242,1918,4.0,956684620 +242,1939,5.0,956688735 +242,1942,5.0,956689196 +242,1945,5.0,956685372 +242,1947,5.0,956689083 +242,1950,5.0,956688564 +242,1952,5.0,956688849 +242,1953,5.0,956685372 +242,1956,5.0,956687335 +242,1957,5.0,956687430 +242,1958,5.0,956687665 +242,1959,5.0,956687205 +242,1960,5.0,956687430 +242,1961,5.0,956686799 +242,1962,5.0,956687388 +242,1964,5.0,956688588 +242,1968,4.0,956687495 +242,2000,5.0,956684930 +242,2001,4.0,956684930 +242,2002,4.0,956684930 +242,2006,4.0,956684301 +242,2020,4.0,956686556 +242,2023,5.0,956684660 +242,2028,5.0,956684214 +242,2058,4.0,956684330 +242,2069,5.0,956687566 +242,2070,5.0,956687597 +242,2076,5.0,956687665 +242,2100,4.0,956687205 +242,2104,4.0,956687737 +242,2108,4.0,956683881 +242,2112,5.0,956685503 +242,2114,4.0,956687702 +242,2115,5.0,956685077 +242,2125,4.0,956683838 +242,2126,4.0,956685706 +242,2145,4.0,956687231 +242,2146,4.0,956687205 +242,2194,5.0,956687495 +242,2231,4.0,956685520 +242,2243,5.0,956687205 +242,2245,5.0,956687625 +242,2248,4.0,956687159 +242,2262,4.0,956687264 +242,2267,4.0,956685974 +242,2268,5.0,956685421 +242,2272,5.0,956689647 +242,2278,3.0,956684438 +242,2289,4.0,956682763 +242,2312,5.0,956688086 +242,2321,4.0,956682792 +242,2331,5.0,956683960 +242,2336,4.0,956683581 +242,2344,4.0,956687597 +242,2349,4.0,956689196 +242,2352,5.0,956687526 +242,2353,4.0,956684330 +242,2369,4.0,956687264 +242,2391,5.0,956685834 +242,2396,5.0,956683785 +242,2405,5.0,956687231 +242,2407,5.0,956685211 +242,2408,3.0,956685211 +242,2415,4.0,956687283 +242,2417,3.0,956687856 +242,2420,5.0,956687665 +242,2421,3.0,956687893 +242,2424,5.0,956683048 +242,2468,4.0,956687264 +242,2469,4.0,956687231 +242,2474,5.0,956686769 +242,2501,5.0,956683486 +242,2561,4.0,956686199 +242,2570,5.0,956686696 +242,2571,5.0,956684185 +242,2598,5.0,956689675 +242,2599,4.0,956682698 +242,2605,4.0,956685706 +242,2616,5.0,956684700 +242,2628,5.0,956684986 +242,2671,4.0,956682997 +242,2672,4.0,956688337 +242,2688,4.0,956686292 +242,2707,4.0,956686092 +242,2724,4.0,956688240 +242,2734,3.0,956687737 +242,2738,4.0,956687702 +242,2739,5.0,956687495 +242,2749,4.0,956687665 +242,2750,4.0,956687566 +242,2757,5.0,956687702 +242,2762,5.0,956684837 +242,2763,4.0,956684374 +242,2764,5.0,956685591 +242,2791,4.0,956689365 +242,2797,5.0,956689171 +242,2802,5.0,956686579 +242,2803,4.0,956685947 +242,2804,5.0,956688432 +242,2819,5.0,956689365 +242,2857,5.0,956689109 +242,2858,5.0,956682671 +242,2863,5.0,956688780 +242,2875,5.0,956689480 +242,2881,4.0,956686226 +242,2916,3.0,956684301 +242,2917,5.0,956685445 +242,2918,4.0,956689324 +242,2919,5.0,956686556 +242,2929,5.0,956687566 +242,2942,3.0,956687264 +242,2950,3.0,956687283 +242,2997,5.0,956682720 +242,3005,5.0,956686112 +242,3006,4.0,956684817 +242,3035,5.0,956688825 +242,3044,5.0,956683881 +242,3060,4.0,956682826 +242,3068,5.0,956687388 +242,3069,5.0,956686681 +242,3071,5.0,956687430 +242,3072,5.0,956686681 +242,3095,5.0,956689028 +242,3098,5.0,956687597 +242,3100,5.0,956689521 +242,3102,4.0,956682390 +242,3104,5.0,956685397 +242,3105,4.0,956683601 +242,3106,4.0,956689409 +242,3107,4.0,956684301 +242,3108,4.0,956683627 +242,3109,4.0,956687893 +242,3110,4.0,956687526 +242,3111,5.0,956687388 +242,3138,4.0,956687737 +242,3147,4.0,956684857 +242,3148,3.0,956684796 +242,3152,5.0,956688870 +242,3160,5.0,956684746 +242,3169,4.0,956687665 +242,3176,5.0,956685998 +242,3198,5.0,956689131 +242,3201,5.0,956688735 +242,3214,4.0,956687856 +242,3247,4.0,956685648 +242,3251,4.0,956687625 +242,3255,5.0,956686486 +242,3256,5.0,956684214 +242,3257,4.0,956686332 +242,3259,3.0,956683486 +242,3260,4.0,956683663 +242,3270,4.0,956688410 +242,3301,4.0,956682599 +242,3308,4.0,956687566 +242,3317,5.0,956682599 +242,3330,5.0,956688825 +242,3342,5.0,956686594 +242,3354,2.0,956684085 +242,3359,5.0,956688678 +242,3360,4.0,956687430 +242,3361,5.0,956689324 +242,3363,5.0,956689409 +242,3394,3.0,956687283 +242,3408,4.0,956684031 +242,3418,5.0,956688143 +242,3421,4.0,956689083 +242,3422,4.0,956687264 +242,3424,5.0,956687360 +242,3448,5.0,956687597 +242,3450,2.0,956683089 +242,3467,5.0,956688655 +242,3469,5.0,956686633 +242,3471,5.0,956688480 +242,3478,4.0,956687526 +242,3481,5.0,956682599 +242,3501,5.0,956687205 +242,3504,5.0,956688735 +242,3512,5.0,956684031 +242,3513,4.0,956684031 +242,3526,4.0,956687450 +242,3543,5.0,956687335 +242,3591,4.0,956687737 +242,5060,5.0,956689427 +243,10,3.5,1094223893 +243,19,3.0,1094224146 +243,34,3.5,1094223856 +243,44,1.5,1094220921 +243,47,4.0,1094220912 +243,48,2.5,1094220014 +243,93,2.0,1094222014 +243,110,4.0,1094223796 +243,150,2.5,1094223791 +243,151,3.0,1094224324 +243,153,2.0,1094223550 +243,158,2.0,1094220049 +243,168,3.0,1094224529 +243,172,2.0,1094224499 +243,173,2.5,1094224318 +243,177,3.0,1094227283 +243,186,3.0,1094224527 +243,208,2.5,1094223966 +243,231,4.0,1094220958 +243,253,4.0,1094222420 +243,260,5.0,1094223802 +243,261,4.0,1094224616 +243,273,3.0,1094224914 +243,296,4.5,1094223766 +243,316,3.0,1094223839 +243,344,3.0,1094222408 +243,353,3.5,1094224269 +243,356,4.0,1094223770 +243,364,3.5,1094223532 +243,367,3.0,1094223914 +243,368,3.5,1094224157 +243,370,2.5,1094224486 +243,380,3.0,1094223807 +243,382,3.0,1094227148 +243,434,2.5,1094223929 +243,442,3.0,1094224151 +243,480,2.5,1094220737 +243,485,3.0,1094224510 +243,500,3.5,1094223921 +243,520,3.0,1094222950 +243,527,3.5,1094223526 +243,541,3.5,1094224056 +243,551,4.5,1094224162 +243,552,3.5,1094224559 +243,586,3.5,1094224034 +243,588,4.0,1094223540 +243,589,4.0,1094222383 +243,592,4.0,1094220752 +243,593,5.0,1094222392 +243,648,3.0,1094220888 +243,653,3.0,1094224280 +243,733,4.0,1094223881 +243,750,4.0,1094224247 +243,780,1.5,1094223815 +243,784,3.0,1094224428 +243,832,3.0,1094220903 +243,903,4.0,1094224626 +243,904,4.0,1118865291 +243,910,4.5,1094220190 +243,914,4.0,1094232624 +243,919,4.0,1094224100 +243,920,4.0,1094220893 +243,924,2.5,1094224093 +243,1028,4.0,1094224521 +243,1035,5.0,1094220875 +243,1047,2.5,1094416712 +243,1080,4.0,1094224354 +243,1089,4.5,1094224236 +243,1097,4.0,1094222371 +243,1101,2.5,1094224368 +243,1136,4.0,1094224071 +243,1193,4.0,1094224025 +243,1196,5.0,1094220871 +243,1198,4.5,1094223871 +243,1206,4.0,1094220839 +243,1210,5.0,1094223504 +243,1213,4.0,1094224114 +243,1219,4.0,1094220849 +243,1222,4.0,1094224358 +243,1240,3.0,1094223995 +243,1246,4.0,1094220827 +243,1250,4.0,1094220104 +243,1255,3.5,1118865350 +243,1258,4.5,1094224339 +243,1261,3.5,1094225401 +243,1265,4.0,1094220852 +243,1270,3.5,1094220844 +243,1275,4.0,1094220183 +243,1281,5.0,1094221378 +243,1282,3.0,1094224730 +243,1291,4.5,1094224074 +243,1333,3.5,1094224871 +243,1339,4.5,1094226942 +243,1347,3.5,1094222923 +243,1350,4.0,1094226896 +243,1356,3.5,1094224064 +243,1374,3.5,1094224302 +243,1377,3.5,1094220094 +243,1387,4.0,1094224124 +243,1391,2.5,1094220823 +243,1393,3.5,1094220796 +243,1407,3.0,1094220765 +243,1485,3.0,1094224575 +243,1517,3.0,1094220770 +243,1527,4.0,1094220786 +243,1580,3.0,1094223987 +243,1584,3.5,1094224214 +243,1587,4.0,1094221355 +243,1590,3.5,1094221352 +243,1610,3.5,1094222365 +243,1623,3.5,1094227828 +243,1625,3.5,1094220138 +243,1645,3.0,1094220341 +243,1676,3.5,1094224472 +243,1682,4.0,1094224396 +243,1690,3.0,1094220364 +243,1717,3.0,1094227097 +243,1721,3.5,1094223975 +243,1722,2.0,1094220319 +243,1747,3.5,1094224807 +243,1748,3.5,1094220375 +243,1801,3.0,1094222898 +243,1917,2.0,1094224349 +243,1923,3.0,1094224223 +243,1931,4.0,1094225714 +243,1961,4.0,1094224120 +243,1994,3.5,1094226874 +243,1997,3.5,1094220179 +243,2000,3.5,1118865641 +243,2003,3.5,1094220382 +243,2004,3.0,1094222865 +243,2005,4.0,1094225739 +243,2006,3.0,1094220158 +243,2011,2.5,1094222857 +243,2012,3.0,1094224434 +243,2019,4.0,1118865297 +243,2021,4.0,1094226789 +243,2028,3.5,1094220777 +243,2033,4.0,1094221947 +243,2093,4.0,1094226223 +243,2107,3.0,1094227399 +243,2115,4.0,1094224446 +243,2116,3.0,1094225975 +243,2121,2.0,1094227198 +243,2122,2.0,1094227385 +243,2124,3.5,1094221286 +243,2143,2.5,1094221304 +243,2161,2.5,1094225796 +243,2163,3.0,1094227378 +243,2167,3.0,1094220368 +243,2174,3.5,1094261196 +243,2193,3.5,1094221319 +243,2232,4.0,1094229515 +243,2291,4.0,1094220791 +243,2328,3.0,1094227252 +243,2329,3.5,1094221265 +243,2394,4.0,1094232638 +243,2405,3.5,1094226129 +243,2421,2.0,1094416669 +243,2436,3.0,1094221909 +243,2456,2.0,1094227543 +243,2470,1.5,1094220334 +243,2513,4.0,1094227125 +243,2529,3.0,1094220731 +243,2571,3.5,1094223957 +243,2617,2.5,1094224514 +243,2628,5.0,1094224015 +243,2683,3.5,1094224187 +243,2700,5.0,1094224467 +243,2701,1.5,1094224922 +243,2706,3.5,1094224266 +243,2710,3.5,1094224287 +243,2712,4.0,1094224442 +243,2716,4.0,1094224078 +243,2717,2.5,1094227078 +243,2719,3.0,1094221127 +243,2722,2.5,1094221251 +243,2762,4.0,1094223998 +243,2790,3.0,1094223478 +243,2826,3.5,1094227051 +243,2840,2.5,1100510473 +243,2858,4.0,1094223904 +243,2890,3.5,1094224763 +243,2916,3.5,1094224193 +243,2944,4.0,1094226511 +243,2959,4.0,1094224263 +243,2985,3.0,1094224588 +243,2987,3.5,1094224232 +243,2997,4.0,1094224110 +243,3033,3.0,1094224926 +243,3052,3.0,1094224777 +243,3081,3.5,1094221237 +243,3087,3.5,1100510452 +243,3147,3.0,1094224690 +243,3159,3.0,1094221081 +243,3175,2.5,1094225061 +243,3176,2.5,1094224650 +243,3256,3.0,1094221073 +243,3273,3.0,1094227356 +243,3471,3.5,1094220516 +243,3489,4.5,1094225998 +243,3499,4.0,1094221046 +243,3527,3.5,1094224716 +243,3535,3.0,1094227031 +243,3578,4.5,1094224130 +243,3623,3.0,1094224709 +243,3693,1.5,1094221782 +243,3694,1.0,1094227611 +243,3698,2.5,1094225951 +243,3745,3.5,1094225981 +243,3751,3.5,1094224540 +243,3753,3.0,1094224721 +243,3755,2.0,1094220995 +243,3785,3.0,1094227117 +243,3793,3.5,1094224389 +243,3826,1.5,1094227370 +243,3977,3.5,1094224773 +243,3993,3.0,1094221759 +243,3994,4.0,1094220388 +243,3996,3.0,1094220712 +243,3997,0.5,1094221731 +243,4022,2.5,1094219990 +243,4036,3.0,1094226912 +243,4105,3.5,1094226865 +243,4128,3.0,1094226856 +243,4148,3.5,1094227040 +243,4226,3.5,1094224605 +243,4270,2.0,1094220987 +243,4275,1.5,1094226197 +243,4306,3.5,1094224405 +243,4308,5.0,1094232603 +243,4356,4.0,1100510591 +243,4446,3.5,1094222550 +243,4467,4.0,1094225695 +243,4526,3.5,1094223413 +243,4643,3.0,1094221003 +243,4682,4.0,1094227188 +243,4720,4.0,1094427227 +243,4857,4.0,1094221537 +243,4865,3.5,1094226951 +243,4886,3.5,1118865439 +243,4896,3.5,1094225381 +243,4963,3.5,1094224938 +243,4973,5.0,1094220991 +243,4993,5.0,1094224463 +243,5254,2.5,1094227328 +243,5299,3.0,1100510443 +243,5349,3.0,1094224846 +243,5378,5.0,1094225921 +243,5388,2.5,1100510434 +243,5418,3.0,1118866131 +243,5433,3.0,1094222221 +243,5445,3.0,1094224910 +243,5478,2.0,1094222146 +243,5618,4.0,1094221014 +243,5630,3.5,1094229471 +243,5669,4.0,1118865261 +243,5679,3.0,1094226885 +243,5785,3.5,1094221492 +243,5816,3.5,1094225372 +243,5944,2.0,1094221501 +243,5952,4.0,1094224835 +243,5971,4.0,1094226686 +243,6157,3.0,1094226179 +243,6242,4.0,1094226880 +243,6243,3.0,1094227090 +243,6286,4.0,1094226704 +243,6333,4.0,1094222484 +243,6350,4.0,1094226654 +243,6377,4.0,1094225314 +243,6502,3.0,1094220967 +243,6503,3.0,1100510571 +243,6534,2.0,1094226136 +243,6539,4.0,1094225340 +243,6615,2.0,1094227348 +243,6711,4.0,1118865282 +243,6754,3.0,1100510305 +243,6768,3.5,1100510285 +243,6808,4.0,1094225360 +243,6888,2.5,1094222096 +243,6947,4.0,1094225637 +243,7022,4.0,1094225394 +243,7046,4.0,1094226785 +243,7099,4.0,1094226682 +243,7143,3.5,1094225351 +243,7147,4.0,1094232680 +243,7153,5.0,1094220973 +243,7318,3.0,1094223295 +243,7438,5.0,1094226439 +243,7454,2.0,1094226213 +243,7458,3.0,1094225779 +243,7649,4.0,1100510920 +243,7809,3.5,1094226538 +243,7925,3.5,1094225670 +243,8253,4.0,1094225656 +243,8368,4.0,1094225332 +243,8371,4.0,1094223270 +243,8373,3.5,1094222441 +243,8464,3.0,1096915748 +243,8589,4.5,1094226371 +243,8596,4.0,1094223624 +243,8622,4.0,1094226630 +243,8636,3.5,1118865651 +243,8640,1.0,1094261336 +243,8783,3.5,1096915704 +243,8798,4.0,1118865455 +243,33493,5.0,1118865476 +244,110,3.5,1448175818 +244,260,5.0,1448175099 +244,318,5.0,1448175706 +244,356,5.0,1448175557 +244,457,0.5,1448175608 +244,527,5.0,1448175803 +244,589,4.0,1448175552 +244,1036,4.0,1448175204 +244,1080,4.0,1448175446 +244,1196,5.0,1448175098 +244,1198,5.0,1448175103 +244,1200,4.0,1448175223 +244,1210,5.0,1448175150 +244,1214,4.0,1448175248 +244,1240,3.5,1448175634 +244,1265,3.5,1448175667 +244,1270,5.0,1448175177 +244,1356,4.0,1448175259 +244,1374,4.0,1448175350 +244,1376,4.0,1448175304 +244,1387,2.0,1448175244 +244,1544,3.5,1448175420 +244,2005,4.0,1448175261 +244,2011,5.0,1448175319 +244,2028,5.0,1448175186 +244,2174,3.5,1448175257 +244,2420,4.0,1448175281 +244,2502,5.0,1448175443 +244,2571,2.5,1448175719 +244,2641,3.0,1448175411 +244,2717,4.0,1448175473 +244,2762,0.5,1448175563 +244,3114,3.5,1448175272 +244,3489,4.5,1448175353 +244,3578,3.0,1448175200 +244,4571,4.5,1448175298 +244,4886,4.0,1448175269 +244,4993,4.5,1448175723 +244,5459,4.5,1448175456 +244,5952,4.5,1448175508 +244,7153,4.5,1448175721 +244,7293,4.0,1448175930 +244,7360,4.5,1448176042 +244,7373,3.0,1448175966 +244,7458,2.5,1448175933 +244,7502,5.0,1448175201 +244,8361,3.0,1448175944 +244,8371,3.0,1448176065 +244,8783,2.0,1448175986 +244,8807,4.5,1448176058 +244,8917,2.0,1448176035 +244,30825,5.0,1448176020 +244,31685,2.0,1448175992 +244,31696,1.5,1448175996 +244,33004,5.0,1448175948 +244,34162,4.0,1448175903 +244,34319,3.5,1448176028 +244,35836,5.0,1448175130 +244,39183,0.5,1448175972 +244,41569,4.0,1448175961 +244,44555,0.5,1448175934 +244,45447,0.5,1448175968 +244,46530,3.5,1448176055 +244,51255,3.5,1448175895 +244,52722,3.5,1448175983 +244,53996,3.5,1448175957 +244,54001,5.0,1448175913 +244,54272,4.0,1448175964 +244,54503,4.5,1448175905 +244,56174,4.5,1448175902 +244,58559,5.0,1448175118 +244,79132,1.0,1448175166 +244,94466,0.5,1448175610 +244,134130,5.0,1448175735 +245,22,3.0,1011238620 +245,36,4.0,1012187265 +245,46,3.0,1011238743 +245,47,2.0,1011319164 +245,50,4.0,1011318662 +245,62,5.0,1011238743 +245,110,5.0,1011238790 +245,219,4.0,1011317486 +245,246,4.0,1011318757 +245,296,2.0,1011319008 +245,333,4.0,1011238517 +245,337,3.0,1011317502 +245,356,5.0,1011237948 +245,412,2.0,1011316949 +245,457,5.0,1011319080 +245,480,5.0,1011237937 +245,527,5.0,1011318686 +245,556,5.0,1011238790 +245,588,1.0,1011317535 +245,590,5.0,1011319038 +245,733,5.0,1012191706 +245,858,5.0,1011318713 +245,909,4.0,1011317711 +245,1008,4.0,1011318975 +245,1035,3.0,1011319038 +245,1059,2.0,1011238160 +245,1073,5.0,1011319291 +245,1089,2.0,1011317642 +245,1092,3.0,1011238606 +245,1094,3.0,1011318090 +245,1097,5.0,1011238160 +245,1104,3.0,1011317452 +245,1120,4.0,1012105157 +245,1193,5.0,1011317334 +245,1203,3.0,1011317261 +245,1207,4.0,1011317228 +245,1208,3.0,1011317261 +245,1221,5.0,1011238061 +245,1225,5.0,1012187240 +245,1228,5.0,1011318292 +245,1246,5.0,1011318492 +245,1252,5.0,1011319038 +245,1270,5.0,1011238218 +245,1302,3.0,1011317697 +245,1358,4.0,1012187337 +245,1393,5.0,1011318514 +245,1408,4.0,1011850123 +245,1608,4.0,1011318388 +245,1610,5.0,1011238014 +245,1625,5.0,1011318090 +245,1653,4.0,1011316854 +245,1682,5.0,1011238654 +245,1684,3.0,1011318446 +245,1704,5.0,1011317334 +245,1721,5.0,1011237984 +245,1732,4.0,1011849984 +245,1747,4.0,1011318330 +245,1954,5.0,1011238141 +245,2028,5.0,1011317228 +245,2053,1.0,1011319358 +245,2054,3.0,1011319358 +245,2058,5.0,1011847874 +245,2268,5.0,1011317387 +245,2324,5.0,1011317415 +245,2329,5.0,1011238631 +245,2340,4.0,1012187307 +245,2359,5.0,1011238558 +245,2396,5.0,1011317297 +245,2427,3.0,1011318002 +245,2447,3.0,1011318214 +245,2571,5.0,1011316822 +245,2672,4.0,1011848389 +245,2692,3.0,1011238866 +245,2712,5.0,1011319314 +245,2762,5.0,1011316822 +245,2858,5.0,1011317486 +245,2908,4.0,1011317854 +245,2918,3.0,1011317372 +245,2959,5.0,1011317774 +245,2997,5.0,1011317516 +245,3148,5.0,1011848362 +245,3156,5.0,1011847960 +245,3174,4.0,1011851839 +245,3176,3.0,1011318468 +245,3178,4.0,1011317885 +245,3183,4.0,1011847934 +245,3186,5.0,1011317828 +245,3255,4.0,1011319222 +245,3386,5.0,1011317749 +245,3408,4.0,1011317797 +245,3421,3.0,1011317372 +245,3450,4.0,1011850225 +245,3507,4.0,1011848836 +245,3556,1.0,1011318180 +245,3566,5.0,1012105157 +245,3578,5.0,1012191817 +245,3753,5.0,1012191817 +245,3755,1.0,1011411744 +245,3798,2.0,1011411608 +245,3897,5.0,1011319135 +245,3916,4.0,1011317727 +245,3949,1.0,1011318121 +245,3980,5.0,1011317903 +245,3996,2.0,1011317334 +245,4011,3.0,1011319405 +245,4019,3.0,1012192045 +245,4033,5.0,1011237937 +245,4034,3.0,1011317261 +245,4226,4.0,1011317261 +245,4239,4.0,1011319386 +245,4262,3.0,1011317441 +245,4306,5.0,1011238392 +245,4308,5.0,1011238408 +245,4371,1.0,1011317057 +245,4452,2.0,1011238408 +245,4857,2.0,1011317697 +245,4890,5.0,1011238328 +245,4901,5.0,1011238301 +245,4963,5.0,1011238285 +245,4975,5.0,1011238328 +245,4993,4.0,1011238285 +245,4995,4.0,1011238285 +245,5009,3.0,1011238301 +245,5103,4.0,1012105343 +245,6474,2.0,1011848070 +246,208,3.0,956565708 +246,329,3.0,956565501 +246,380,3.0,956565426 +246,421,3.0,956565501 +246,455,2.0,956565730 +246,480,4.0,956565426 +246,539,5.0,956565279 +246,552,3.0,956565688 +246,589,5.0,956565845 +246,590,4.0,956565501 +246,595,3.0,956565341 +246,673,4.0,956565688 +246,1544,4.0,956565620 +246,1552,4.0,956565620 +246,1566,4.0,956565501 +246,1580,5.0,956565591 +246,1881,4.0,956565554 +246,1907,3.0,956565253 +246,1917,3.0,956565688 +246,2006,4.0,956565554 +246,2028,4.0,956565845 +246,2429,4.0,956565620 +246,2617,3.0,956565591 +246,2762,4.0,956565341 +246,2916,4.0,956565591 +246,3015,2.0,956565279 +247,1,4.0,953361586 +247,7,3.0,953361791 +247,9,3.0,953272452 +247,10,4.0,953271993 +247,11,4.0,953361740 +247,12,3.0,953270877 +247,19,4.0,953362704 +247,39,3.0,953361663 +247,44,3.0,953272667 +247,45,3.0,953361856 +247,69,4.0,953189620 +247,70,3.0,953272226 +247,104,4.0,953361934 +247,110,5.0,953101834 +247,145,3.0,953271790 +247,153,3.0,953189022 +247,160,3.0,953272787 +247,163,4.0,953272077 +247,165,4.0,953102260 +247,185,3.0,953361244 +247,196,4.0,953361274 +247,198,3.0,953271790 +247,204,3.0,953272812 +247,208,4.0,953272667 +247,216,3.0,953362071 +247,231,4.0,953362342 +247,260,5.0,953101887 +247,288,2.0,953272416 +247,292,4.0,953272040 +247,293,4.0,953189620 +247,296,3.0,953189571 +247,316,4.0,953272304 +247,317,3.0,953361934 +247,327,2.0,953272304 +247,333,4.0,953362032 +247,344,4.0,953362312 +247,349,4.0,953101941 +247,353,4.0,953272896 +247,356,5.0,953100431 +247,357,3.0,953361934 +247,367,3.0,953361895 +247,368,3.0,953272112 +247,370,3.0,953362484 +247,376,3.0,953272186 +247,377,4.0,953272040 +247,379,4.0,953272416 +247,380,4.0,953272040 +247,405,3.0,953101790 +247,410,3.0,953362225 +247,413,3.0,953362510 +247,414,3.0,953362312 +247,434,4.0,953272304 +247,435,2.0,953361244 +247,441,4.0,953361740 +247,442,3.0,953272186 +247,454,4.0,953362911 +247,457,5.0,953271790 +247,466,2.0,953272304 +247,474,5.0,953271790 +247,480,4.0,953100279 +247,487,4.0,953361410 +247,500,3.0,953361972 +247,504,3.0,953361305 +247,517,3.0,953272226 +247,520,3.0,953362652 +247,527,5.0,953189299 +247,533,3.0,953272226 +247,542,3.0,953362510 +247,544,3.0,953272667 +247,546,2.0,953272853 +247,552,4.0,953272304 +247,553,5.0,953270759 +247,575,2.0,953362749 +247,586,4.0,953362377 +247,588,3.0,953361586 +247,589,4.0,953271790 +247,592,4.0,953189022 +247,593,5.0,953189523 +247,597,3.0,953362168 +247,648,5.0,953102465 +247,671,2.0,953361200 +247,673,3.0,953362342 +247,692,2.0,953272764 +247,733,4.0,953271934 +247,737,3.0,953272812 +247,748,3.0,953361154 +247,780,4.0,953272112 +247,784,3.0,953362606 +247,786,4.0,953272112 +247,833,3.0,953362750 +247,852,3.0,953362128 +247,915,2.0,953100371 +247,1005,1.0,953362793 +247,1020,3.0,953362091 +247,1028,3.0,953100431 +247,1036,5.0,953102260 +247,1049,4.0,953272040 +247,1091,3.0,953271548 +247,1101,4.0,953188957 +247,1197,4.0,953271023 +247,1215,5.0,953271934 +247,1220,4.0,953271054 +247,1265,4.0,953361633 +247,1270,4.0,953271023 +247,1275,4.0,953101790 +247,1288,4.0,953271197 +247,1291,5.0,953102080 +247,1320,3.0,953361274 +247,1339,4.0,953270877 +247,1356,4.0,953271934 +247,1370,4.0,953102260 +247,1372,4.0,953272077 +247,1376,4.0,953100431 +247,1377,3.0,953189022 +247,1378,4.0,953271517 +247,1379,4.0,953272521 +247,1382,3.0,953272416 +247,1385,4.0,953272304 +247,1387,4.0,953270832 +247,1388,3.0,953270832 +247,1389,2.0,953270832 +247,1391,4.0,953361200 +247,1396,4.0,953361060 +247,1405,3.0,953362052 +247,1409,3.0,953362377 +247,1431,4.0,953272764 +247,1432,4.0,953272226 +247,1453,2.0,953362793 +247,1476,4.0,953362010 +247,1479,4.0,953102642 +247,1499,2.0,953188893 +247,1517,5.0,953102554 +247,1527,4.0,953272112 +247,1544,3.0,953272112 +247,1556,3.0,953272853 +247,1562,3.0,953189022 +247,1573,4.0,953271993 +247,1580,4.0,953271823 +247,1584,4.0,953348274 +247,1599,2.0,953272667 +247,1608,4.0,953272077 +247,1610,5.0,953102419 +247,1617,5.0,953189593 +247,1663,5.0,953100431 +247,1676,4.0,953271993 +247,1687,4.0,953272304 +247,1690,2.0,953272362 +247,1722,3.0,953271993 +247,1744,2.0,953272707 +247,1746,3.0,953189571 +247,1747,4.0,953361663 +247,1769,3.0,953272304 +247,1792,3.0,953272186 +247,1862,3.0,953361333 +247,1866,4.0,953362484 +247,1876,4.0,953100371 +247,1894,3.0,953362225 +247,1912,4.0,953271790 +247,1917,3.0,953272336 +247,1918,4.0,953101988 +247,1920,3.0,953361517 +247,1923,4.0,953361633 +247,1968,4.0,953271054 +247,2000,4.0,953101988 +247,2001,4.0,953101988 +247,2002,4.0,953101988 +247,2003,3.0,953271281 +247,2004,3.0,953362342 +247,2005,4.0,953189114 +247,2006,4.0,953272040 +247,2011,4.0,953271405 +247,2012,4.0,953361200 +247,2028,5.0,953100215 +247,2042,2.0,953362704 +247,2046,4.0,953361103 +247,2050,2.0,953271472 +247,2054,3.0,953271517 +247,2058,4.0,953271935 +247,2060,2.0,953362823 +247,2082,2.0,953362377 +247,2088,3.0,953271610 +247,2094,3.0,953272141 +247,2100,3.0,953271368 +247,2115,4.0,953102080 +247,2124,4.0,953362192 +247,2133,3.0,953271405 +247,2134,3.0,953271368 +247,2141,4.0,953271442 +247,2167,4.0,953272040 +247,2174,4.0,953271281 +247,2193,4.0,953189256 +247,2253,3.0,953272521 +247,2273,4.0,953272077 +247,2278,4.0,953271993 +247,2302,4.0,953361740 +247,2334,3.0,953272186 +247,2335,4.0,953362626 +247,2353,4.0,953271790 +247,2371,4.0,953271232 +247,2372,4.0,953271517 +247,2378,4.0,953271442 +247,2379,3.0,953271610 +247,2380,3.0,953271664 +247,2381,3.0,953271690 +247,2382,3.0,953271690 +247,2383,2.0,953271690 +247,2393,4.0,953272186 +247,2405,3.0,953271610 +247,2406,4.0,953271323 +247,2423,4.0,953271323 +247,2458,4.0,953271664 +247,2463,5.0,953271368 +247,2468,4.0,953271638 +247,2469,2.0,953271442 +247,2470,4.0,953271368 +247,2471,4.0,953271610 +247,2478,4.0,953271548 +247,2490,5.0,953101442 +247,2540,3.0,953272521 +247,2541,3.0,953101212 +247,2571,4.0,953271732 +247,2599,3.0,953101288 +247,2616,3.0,953272304 +247,2617,3.0,953188922 +247,2628,4.0,953101887 +247,2640,4.0,953189081 +247,2641,3.0,953189081 +247,2642,3.0,953189081 +247,2643,2.0,953189081 +247,2683,5.0,953101146 +247,2688,4.0,953101341 +247,2694,4.0,953101179 +247,2699,3.0,953101146 +247,2700,4.0,953101518 +247,2706,5.0,953101146 +247,2714,2.0,953101595 +247,2716,5.0,953101341 +247,2717,3.0,953271517 +247,2719,2.0,953101341 +247,2720,2.0,953101375 +247,2724,3.0,953101482 +247,2735,4.0,953271610 +247,2746,3.0,953271323 +247,2762,5.0,953101518 +247,2763,4.0,953101548 +247,2791,3.0,953271023 +247,2794,4.0,953271472 +247,2797,4.0,953271197 +247,2798,3.0,953362842 +247,2817,2.0,953272764 +247,2867,3.0,953271323 +247,2881,3.0,953101252 +247,2915,4.0,953271232 +247,2916,4.0,953361103 +247,2918,5.0,953271023 +247,2953,3.0,953362678 +247,2959,5.0,953188857 +247,2986,2.0,953272764 +247,2987,3.0,953101595 +247,3033,4.0,953271405 +247,3081,4.0,953101518 +247,3082,4.0,953102179 +247,3087,4.0,953271323 +247,3107,5.0,953271993 +247,3173,4.0,953102208 +247,3243,3.0,953362550 +247,3253,4.0,953361687 +247,3255,4.0,953361769 +247,3256,4.0,953271823 +247,3258,3.0,953362550 +247,3263,3.0,953362010 +247,3264,2.0,953362150 +247,3268,2.0,953272853 +247,3270,3.0,953270924 +247,3388,3.0,953100674 +247,3396,3.0,953100755 +247,3398,3.0,953100755 +247,3421,4.0,953100543 +247,3438,4.0,953100836 +247,3439,3.0,953100836 +247,3440,2.0,953100836 +247,3444,4.0,953100587 +247,3448,5.0,953100636 +247,3450,3.0,953100674 +247,3479,4.0,953100707 +248,32,4.0,1031528116 +248,110,5.0,1031528748 +248,151,4.0,1031528925 +248,161,5.0,1031528829 +248,266,5.0,1031528925 +248,316,4.0,1031528337 +248,356,5.0,1031528582 +248,426,4.0,1031528234 +248,527,5.0,1031528526 +248,541,5.0,1031528009 +248,647,4.0,1031528925 +248,750,5.0,1031528009 +248,780,4.0,1031528948 +248,903,4.0,1031529065 +248,904,4.0,1031529065 +248,924,5.0,1031528042 +248,1090,4.0,1031528748 +248,1127,4.0,1031528151 +248,1129,5.0,1031528353 +248,1183,4.0,1031528856 +248,1193,5.0,1031527671 +248,1198,5.0,1031527555 +248,1200,5.0,1031528068 +248,1201,4.0,1031527644 +248,1204,4.0,1031528552 +248,1206,5.0,1031528042 +248,1208,5.0,1031528748 +248,1210,4.0,1031527624 +248,1214,5.0,1031528009 +248,1222,4.0,1031528856 +248,1233,5.0,1031528552 +248,1240,5.0,1031528068 +248,1250,5.0,1031528552 +248,1262,5.0,1031528552 +248,1263,5.0,1031528692 +248,1270,5.0,1031528042 +248,1272,5.0,1031528788 +248,1320,4.0,1031528372 +248,1580,3.0,1031528193 +248,1584,4.0,1031528098 +248,1690,4.0,1031528337 +248,1721,5.0,1031527506 +248,1876,4.0,1031528400 +248,1944,4.0,1031528526 +248,2011,4.0,1031528234 +248,2012,4.0,1031528295 +248,2054,3.0,1031527506 +248,2067,4.0,1031528692 +248,2076,5.0,1031529148 +248,2109,4.0,1031527720 +248,2311,4.0,1031529133 +248,2346,2.0,1031528400 +248,2427,3.0,1031528925 +248,2454,4.0,1031528295 +248,2467,5.0,1031529103 +248,2528,4.0,1031528257 +248,2529,5.0,1031528151 +248,2571,5.0,1031528009 +248,2640,3.0,1031528234 +248,2641,2.0,1031528400 +248,2669,3.0,1031528981 +248,2769,4.0,1031529133 +248,2944,5.0,1031528829 +248,3035,5.0,1031528692 +248,3062,5.0,1031528856 +248,3072,5.0,1031527590 +248,3101,5.0,1031527720 +248,3176,4.0,1031529133 +248,3196,5.0,1031528692 +248,3354,4.0,1031527590 +248,3448,3.0,1031528856 +248,3471,4.0,1031528009 +248,3527,5.0,1031528193 +248,3638,2.0,1031528337 +248,3654,5.0,1031528877 +248,3702,4.0,1031528098 +248,3704,4.0,1031528295 +248,3706,4.0,1031529133 +248,3724,4.0,1031528748 +248,3827,4.0,1031528312 +248,3836,4.0,1031528748 +248,3927,3.0,1031528209 +248,4103,5.0,1031528877 +248,4111,4.0,1031528981 +248,4338,5.0,1031528526 +248,4339,4.0,1031528925 +248,4353,4.0,1031528948 +248,4443,4.0,1031528193 +248,4473,4.0,1031528948 +248,4802,4.0,1031528582 +248,4842,4.0,1031528526 +248,4874,4.0,1031528372 +248,4923,4.0,1031528981 +248,4958,5.0,1031528981 +248,4990,4.0,1031527857 +248,4993,5.0,1031527808 +248,5010,5.0,1031527831 +248,5060,5.0,1031528582 +248,5107,5.0,1031528925 +249,10,4.0,839461544 +249,11,4.0,839462462 +249,153,2.0,839461338 +249,165,4.0,839461338 +249,231,3.0,839461386 +249,337,5.0,839463730 +249,339,3.0,839463358 +249,344,4.0,839461338 +249,356,5.0,839461615 +249,357,3.0,839462377 +249,367,3.0,839461701 +249,420,3.0,839461793 +249,480,3.0,839461615 +249,500,5.0,839461891 +249,508,4.0,839463782 +249,539,3.0,839462377 +249,589,4.0,839461701 +249,590,4.0,839461218 +249,593,3.0,839461386 +249,597,3.0,839461992 +250,111,4.0,1469700534 +250,165,4.5,1469700664 +250,318,5.0,1469697245 +250,356,5.0,1469700413 +250,527,5.0,1469697248 +250,593,5.0,1469697260 +250,858,5.0,1469697262 +250,1193,5.0,1469700415 +250,1221,5.0,1469807450 +250,1270,4.5,1469700556 +250,1517,4.0,1469807395 +250,1625,4.5,1469700623 +250,1645,4.5,1469807293 +250,1682,4.5,1469700651 +250,1704,4.5,1469697272 +250,1917,4.0,1469700456 +250,2028,4.5,1469697265 +250,2324,4.5,1469700531 +250,2329,4.0,1469700432 +250,2424,4.0,1469807405 +250,2542,4.5,1469807374 +250,2571,5.0,1469697267 +250,2716,4.0,1469807303 +250,2858,4.5,1469700626 +250,2916,4.0,1469807260 +250,2959,4.5,1469700423 +250,3147,5.0,1469700419 +250,3408,4.5,1469807287 +250,3578,4.5,1469700598 +250,3948,5.0,1469807352 +250,4011,4.5,1469697297 +250,4014,4.0,1469700702 +250,4034,4.0,1469807407 +250,4226,4.5,1469700561 +250,4306,5.0,1469700660 +250,4720,4.5,1469808221 +250,4886,4.5,1469700630 +250,4896,4.0,1469697301 +250,4973,5.0,1469700716 +250,4995,5.0,1469700610 +250,5010,4.5,1469807306 +250,5218,5.0,1469807335 +250,5989,5.0,1469697296 +250,5995,5.0,1469700414 +250,6016,4.0,1469700427 +250,6333,4.0,1469807358 +250,6539,4.0,1469700617 +250,7147,4.0,1469700552 +250,7254,5.0,1469700726 +250,7293,4.5,1469807350 +250,30707,4.5,1469807437 +250,30812,5.0,1469700609 +250,31685,4.5,1469808125 +250,31696,4.5,1469808128 +250,32031,4.0,1469808194 +250,33615,5.0,1469807586 +250,33660,4.0,1469807575 +250,33679,4.0,1469807465 +250,34048,4.0,1469807479 +250,34319,4.5,1469808114 +250,35836,4.0,1469808077 +250,36708,4.0,1469807946 +250,38061,4.0,1469808121 +250,41569,4.0,1469807545 +250,41571,4.5,1469807694 +250,42011,3.5,1469807937 +250,45081,4.0,1469807745 +250,45447,4.5,1469807539 +250,45672,4.0,1469807616 +250,46578,4.5,1469808075 +250,47099,4.5,1469700563 +250,47610,5.0,1469700574 +250,48043,4.0,1469807613 +250,48516,5.0,1469807456 +250,48780,5.0,1469700500 +250,48997,4.0,1469807715 +250,50872,4.0,1469700713 +250,51086,4.5,1469807735 +250,52975,4.0,1469807961 +250,53000,3.0,1469807592 +250,53121,4.5,1469807637 +250,53125,4.0,1469807522 +250,53953,4.0,1469807645 +250,53996,5.0,1469807517 +250,54995,4.0,1469807648 +250,55247,3.5,1469807528 +250,55820,4.5,1469700696 +250,56145,3.0,1469807690 +250,56174,4.0,1469808090 +250,56367,4.0,1469808081 +250,56587,5.0,1469807402 +250,56949,3.5,1469807659 +250,57640,3.0,1469807634 +250,57669,4.5,1469807533 +250,58025,3.0,1469807654 +250,58559,5.0,1469807440 +250,58803,4.0,1469807628 +250,59315,4.5,1469807278 +250,59725,3.5,1469807982 +250,59784,5.0,1469807361 +250,59900,3.5,1469807933 +250,60037,3.0,1469807989 +250,60069,5.0,1469807452 +250,60074,3.5,1469807577 +250,60126,4.0,1469807701 +250,60397,3.5,1469807913 +250,60950,3.5,1469807664 +250,61132,4.0,1469807589 +250,61323,4.5,1469808111 +250,62434,3.0,1469807672 +250,62999,4.5,1469807990 +250,64034,4.0,1469807741 +250,64957,4.0,1469700729 +250,64969,4.0,1469807619 +250,65130,3.0,1469808039 +250,65230,4.0,1469808033 +250,68157,5.0,1469700585 +250,68319,3.5,1470036916 +250,68358,4.0,1469807320 +250,72641,4.0,1469807444 +250,72998,5.0,1469807327 +250,73017,4.0,1469700628 +250,74458,4.5,1469700504 +250,74789,4.0,1470036919 +250,76093,4.5,1469700668 +250,76251,4.0,1469807333 +250,79132,5.0,1469697277 +250,81591,4.0,1469700596 +250,81845,5.0,1469700517 +250,84152,4.0,1469700605 +250,85414,4.0,1469700620 +250,88125,4.5,1469808257 +250,88140,4.0,1470036906 +250,88744,4.0,1470036911 +250,89745,4.0,1469808253 +250,91500,4.0,1469808240 +250,91529,5.0,1469808250 +250,91542,4.0,1469700614 +250,92259,5.0,1469808235 +250,99114,5.0,1469700601 +250,103335,4.0,1469807387 +250,106100,4.0,1469700568 +250,106782,4.5,1469700683 +250,109487,5.0,1469700645 +250,112556,4.0,1469808262 +250,112852,3.5,1469808247 +250,116797,4.0,1469808238 +250,122886,3.5,1469697324 +250,122904,3.0,1469697320 +250,122920,3.5,1470036946 +250,134130,3.5,1469697313 +250,139385,4.0,1469700469 +250,139644,4.0,1469807488 +250,150548,4.5,1470036938 +250,152081,5.0,1469700464 +251,110,4.0,1476478090 +251,260,4.5,1476478005 +251,296,4.0,1476478551 +251,356,5.0,1476478274 +251,367,4.0,1476550669 +251,551,5.0,1476551142 +251,589,4.0,1476478052 +251,1036,4.5,1476477994 +251,1196,4.5,1476478007 +251,1210,4.0,1476477989 +251,1240,4.0,1476478082 +251,1265,4.0,1476622980 +251,1270,5.0,1476550284 +251,1485,4.0,1476550459 +251,1580,5.0,1476550351 +251,1704,4.5,1476640644 +251,1907,4.5,1476478454 +251,1961,5.0,1476551305 +251,2011,4.0,1476550420 +251,2012,4.0,1476550612 +251,2167,4.0,1476478258 +251,2273,4.0,1476550386 +251,2291,5.0,1476551039 +251,2396,5.0,1476551191 +251,2571,5.0,1476478038 +251,2762,5.0,1476552557 +251,2959,5.0,1476478390 +251,3081,5.0,1476551370 +251,3578,5.0,1476478241 +251,4306,5.0,1476550143 +251,4701,4.0,1476550634 +251,4886,4.5,1476552471 +251,4973,4.0,1476551062 +251,4993,4.0,1476478045 +251,4995,5.0,1476551043 +251,5218,5.0,1476478230 +251,5459,4.5,1476550678 +251,5618,5.0,1476551037 +251,5872,2.0,1476478213 +251,5903,5.0,1476478461 +251,5952,4.0,1476478043 +251,5971,4.0,1476551238 +251,6377,4.5,1476623300 +251,6539,5.0,1476550161 +251,6564,2.5,1476550813 +251,7143,4.0,1476478226 +251,7147,5.0,1476551006 +251,7153,4.5,1476477999 +251,7254,5.0,1476623117 +251,7361,5.0,1476551057 +251,8360,4.5,1476478269 +251,8368,4.0,1476478204 +251,8371,5.0,1476550618 +251,8533,5.0,1476550963 +251,8644,5.0,1476478140 +251,8970,4.5,1476552477 +251,31658,5.0,1476550870 +251,31685,4.5,1476550408 +251,33004,4.0,1476564766 +251,34405,3.0,1476478574 +251,37729,5.0,1476550100 +251,40815,4.5,1476478223 +251,40819,4.0,1476555871 +251,42738,3.5,1476478157 +251,44191,3.0,1476623070 +251,45722,4.5,1476550347 +251,47099,4.5,1476550989 +251,51662,4.0,1476550263 +251,53125,4.0,1476550370 +251,53972,4.5,1476550361 +251,55232,3.5,1476550595 +251,56587,5.0,1476623131 +251,59315,5.0,1476478061 +251,59784,4.0,1476623034 +251,66097,2.0,1476555047 +251,68358,4.5,1476478069 +251,68954,4.5,1476550949 +251,72356,5.0,1476551350 +251,72641,5.0,1476550411 +251,72998,3.5,1476478509 +251,73321,5.0,1476478232 +251,76093,4.5,1476622829 +251,77561,5.0,1476478162 +251,78469,3.5,1476550279 +251,78637,3.5,1476478291 +251,81845,5.0,1476550886 +251,81847,4.5,1476623282 +251,86880,4.0,1476550556 +251,87232,5.0,1476478099 +251,89745,5.0,1476478130 +251,91485,4.0,1476550703 +251,91500,3.5,1476478205 +251,92259,5.0,1476622832 +251,94777,4.0,1476478303 +251,95167,4.0,1476550259 +251,95654,3.5,1476552210 +251,96610,4.5,1476478182 +251,97225,5.0,1476550466 +251,98491,5.0,1476478450 +251,102125,5.0,1476478200 +251,104243,4.5,1476550290 +251,104841,4.5,1476478193 +251,106002,5.0,1476478133 +251,106487,3.5,1476478295 +251,106491,3.0,1476550491 +251,106696,4.5,1476478261 +251,108190,2.5,1476478197 +251,109487,4.0,1476550252 +251,111362,4.5,1476478172 +251,111759,5.0,1476478092 +251,112175,4.5,1476550136 +251,112852,4.0,1476478074 +251,115617,5.0,1476478151 +251,115713,3.5,1476550322 +251,120799,4.0,1476478254 +251,122882,3.5,1476478294 +251,122886,3.0,1476478065 +251,122904,5.0,1476477990 +251,134853,5.0,1476623217 +252,1,3.0,869101312 +252,6,3.0,869101354 +252,7,4.0,869101615 +252,12,5.0,869101988 +252,25,5.0,869101312 +252,32,4.0,869101312 +252,79,2.0,869101734 +252,95,4.0,869101312 +252,104,3.0,869101615 +252,135,4.0,869101734 +252,260,4.0,869101354 +252,494,4.0,869101355 +252,647,4.0,869101988 +252,648,4.0,869101312 +252,653,4.0,869101615 +252,673,5.0,869101988 +252,719,3.0,869101781 +252,733,5.0,869101354 +252,736,5.0,869101312 +252,737,3.0,869101781 +252,743,3.0,869101781 +252,761,3.0,869102024 +252,762,3.0,869101734 +252,765,3.0,869102110 +252,780,3.0,869101312 +252,786,3.0,869101355 +252,788,3.0,869101615 +252,802,3.0,869101615 +252,830,3.0,869102024 +252,832,4.0,869101734 +252,849,4.0,869102110 +252,852,3.0,869101781 +252,858,4.0,869101781 +252,1061,3.0,869102110 +252,1073,3.0,869101354 +252,1210,4.0,869101734 +252,1356,4.0,869101615 +252,1391,3.0,869102110 +253,1,4.5,1215831130 +253,2,4.0,1215831526 +253,10,4.0,1215831215 +253,16,2.0,1215831682 +253,19,1.0,1215831546 +253,20,1.5,1215823643 +253,34,4.5,1215831195 +253,62,4.5,1215831457 +253,104,3.5,1215831650 +253,110,5.0,1215831113 +253,150,4.0,1215831121 +253,151,4.5,1215831823 +253,172,2.0,1215831868 +253,173,2.0,1215831772 +253,204,1.0,1215832175 +253,223,4.0,1215831499 +253,231,4.5,1215831199 +253,260,4.5,1215831109 +253,296,4.0,1215831098 +253,303,1.5,1215832398 +253,318,5.0,1215823680 +253,333,4.0,1215832057 +253,337,3.0,1215831664 +253,344,4.0,1215831149 +253,349,4.0,1215831182 +253,353,4.5,1215831720 +253,356,5.0,1215823900 +253,367,4.0,1215831211 +253,368,4.0,1215831647 +253,442,2.0,1215831608 +253,454,4.5,1215831241 +253,480,4.0,1215831104 +253,500,3.5,1215831197 +253,524,4.5,1215832370 +253,529,4.0,1215832012 +253,543,4.5,1215831903 +253,552,4.0,1215831899 +253,553,4.5,1215831747 +253,585,2.0,1215832111 +253,589,4.0,1215831127 +253,590,4.5,1215831124 +253,592,4.0,1215831118 +253,593,3.5,1215831101 +253,597,3.5,1215831193 +253,707,3.5,1215823599 +253,719,4.0,1215832276 +253,733,4.0,1215831190 +253,750,3.5,1215831575 +253,778,3.5,1215831578 +253,780,3.5,1215831132 +253,783,3.5,1215832019 +253,784,4.5,1215831789 +253,786,2.0,1215831636 +253,802,3.5,1215831863 +253,805,4.0,1215831931 +253,849,0.5,1215832322 +253,852,4.5,1215832005 +253,858,4.5,1215823875 +253,914,4.0,1215832168 +253,923,4.5,1215831711 +253,953,3.5,1215831872 +253,1025,3.0,1215823621 +253,1089,4.0,1215831506 +253,1090,4.0,1215832836 +253,1101,4.5,1215831587 +253,1136,4.5,1215831245 +253,1193,4.5,1215831247 +253,1196,4.0,1215832718 +253,1197,4.0,1215831221 +253,1198,4.0,1215831154 +253,1201,4.0,1215831961 +253,1207,4.5,1215831853 +253,1210,4.0,1215831136 +253,1215,4.5,1215831988 +253,1221,3.5,1215823884 +253,1225,4.5,1215831602 +253,1242,4.0,1215831981 +253,1246,4.5,1215831652 +253,1250,4.5,1215823815 +253,1259,4.5,1215831591 +253,1262,4.5,1215823829 +253,1265,4.5,1215831226 +253,1276,5.0,1215823745 +253,1288,4.0,1215823932 +253,1291,4.5,1215831254 +253,1302,4.0,1215831966 +253,1304,4.5,1215831742 +253,1320,1.5,1215831859 +253,1358,2.0,1215832853 +253,1387,4.0,1215831559 +253,1393,4.0,1215831509 +253,1396,4.0,1215831906 +253,1407,1.5,1215831698 +253,1449,4.5,1215823578 +253,1479,2.0,1215832314 +253,1485,3.0,1215831706 +253,1527,3.0,1215831467 +253,1552,3.5,1215831847 +253,1573,2.5,1215831671 +253,1580,3.5,1215831207 +253,1597,4.0,1215832089 +253,1617,4.0,1215831238 +253,1645,4.0,1215832049 +253,1653,3.0,1215831727 +253,1682,4.5,1215831599 +253,1693,4.5,1215823629 +253,1704,4.5,1215831462 +253,1717,1.0,1215832545 +253,1732,4.5,1215831753 +253,1747,4.5,1215832095 +253,1784,5.0,1215831520 +253,1882,2.5,1215832423 +253,1917,4.0,1215831554 +253,1923,3.5,1215831473 +253,1947,2.0,1215832318 +253,1957,4.5,1215832556 +253,1961,5.0,1215831454 +253,2005,4.5,1215832143 +253,2006,4.0,1215831890 +253,2012,3.5,1215831623 +253,2028,4.5,1215831185 +253,2046,3.5,1215823613 +253,2081,4.0,1215831834 +253,2115,2.5,1215831641 +253,2137,3.0,1215823607 +253,2193,3.0,1215832234 +253,2321,4.0,1215831838 +253,2324,5.0,1215831799 +253,2329,5.0,1215831780 +253,2423,3.5,1215823604 +253,2470,4.0,1215831992 +253,2502,4.5,1215831704 +253,2505,1.0,1215832649 +253,2528,4.0,1215823616 +253,2539,3.5,1215832246 +253,2617,4.5,1215831776 +253,2640,4.0,1215831740 +253,2671,1.0,1215831975 +253,2686,2.0,1215823590 +253,2688,1.5,1215832619 +253,2762,4.0,1215831187 +253,2763,4.0,1215832001 +253,2797,3.5,1215831619 +253,2803,4.0,1215823645 +253,2858,4.5,1215831157 +253,2890,2.0,1215831997 +253,2916,2.5,1215831606 +253,2918,4.5,1215831593 +253,2959,5.0,1215831251 +253,2987,3.5,1215831517 +253,3033,3.5,1215832065 +253,3098,4.5,1215823618 +253,3114,4.0,1215831551 +253,3147,4.0,1215831723 +253,3160,3.5,1215832039 +253,3174,4.0,1215832366 +253,3253,4.0,1215831947 +253,3255,4.5,1215832138 +253,3298,1.5,1215823637 +253,3450,4.5,1215823601 +253,3489,4.0,1215832348 +253,3527,4.0,1215831937 +253,3578,4.5,1215831270 +253,3745,2.0,1215823624 +253,3752,2.0,1215832404 +253,3753,4.5,1215831933 +253,3785,2.0,1215832333 +253,3809,5.0,1215823594 +253,3897,2.0,1215831685 +253,3996,4.0,1215831482 +253,4011,4.0,1215831971 +253,4027,5.0,1215831759 +253,4034,2.5,1215831730 +253,4226,3.5,1215831549 +253,4246,1.5,1215832054 +253,4306,4.0,1215831274 +253,4308,4.0,1215832120 +253,4310,4.0,1215832392 +253,4963,4.0,1215831717 +253,4973,4.0,1215832735 +253,4979,2.0,1215832115 +253,4993,5.0,1215831259 +253,4995,4.5,1215831757 +253,5103,4.5,1215823706 +253,5218,4.0,1215832227 +253,5299,3.0,1215832192 +253,5349,4.5,1215831678 +253,5445,3.0,1215831617 +253,5481,2.0,1215832531 +253,5952,4.5,1215832741 +253,5991,4.5,1215832343 +253,6333,4.0,1215831963 +253,6539,4.5,1215831691 +253,6711,1.0,1215832015 +253,6863,2.0,1215832409 +253,7153,4.5,1215831567 +253,7263,4.0,1215823702 +253,8636,4.0,1215832026 +253,8784,1.5,1215832533 +253,8961,4.0,1215831943 +253,37739,3.5,1215823718 +253,41566,4.5,1215823639 +253,43396,4.0,1215832841 +253,48394,2.0,1215832790 +253,56587,3.5,1215823854 +254,9,3.0,845159397 +254,19,3.0,845157322 +254,22,3.0,845157526 +254,23,2.0,845157762 +254,29,5.0,845158605 +254,31,3.0,845157538 +254,34,5.0,845157322 +254,39,2.0,845157349 +254,44,3.0,845157478 +254,47,3.0,845157307 +254,48,1.0,845157516 +254,50,5.0,845157367 +254,72,4.0,845159047 +254,82,5.0,845158605 +254,112,3.0,845157634 +254,122,3.0,845157670 +254,132,3.0,845157775 +254,145,3.0,845157552 +254,146,4.0,845158616 +254,147,3.0,845159135 +254,149,4.0,845158626 +254,150,3.0,845158754 +254,153,3.0,845157211 +254,154,5.0,845157988 +254,156,4.0,845158642 +254,160,4.0,845157382 +254,162,4.0,845157793 +254,163,4.0,845157563 +254,165,4.0,845157211 +254,172,2.0,845159616 +254,173,3.0,845157382 +254,175,3.0,845159212 +254,176,5.0,845158649 +254,178,5.0,845158021 +254,181,3.0,845157577 +254,184,4.0,845158097 +254,193,3.0,845157488 +254,194,4.0,845157685 +254,196,4.0,845157432 +254,198,4.0,845157712 +254,204,3.0,845157432 +254,206,3.0,845158616 +254,207,3.0,845157589 +254,208,3.0,845157280 +254,223,4.0,845157538 +254,227,3.0,845157577 +254,231,2.0,845157247 +254,232,5.0,845157670 +254,233,4.0,845157762 +254,234,3.0,845157610 +254,235,4.0,845157419 +254,236,3.0,845157407 +254,240,2.0,845159380 +254,253,3.0,845157293 +254,260,4.0,845157828 +254,265,5.0,845157442 +254,275,4.0,845158006 +254,287,4.0,845158056 +254,288,3.0,845157293 +254,291,1.0,845158596 +254,292,3.0,845157280 +254,296,3.0,845157190 +254,307,4.0,845157685 +254,316,3.0,845157265 +254,318,4.0,845157265 +254,322,3.0,845157913 +254,327,3.0,845157589 +254,330,3.0,845159226 +254,333,3.0,845157516 +254,337,4.0,845157407 +254,342,4.0,845157577 +254,344,3.0,845157211 +254,345,4.0,845158978 +254,349,4.0,845157211 +254,350,3.0,845159201 +254,353,3.0,845157463 +254,356,3.0,845157265 +254,357,3.0,845157367 +254,367,3.0,845157323 +254,368,3.0,845159476 +254,372,1.0,845157746 +254,373,3.0,845157988 +254,380,3.0,845157190 +254,381,4.0,845157634 +254,392,5.0,845158154 +254,413,2.0,845157649 +254,421,4.0,845157858 +254,427,3.0,845157712 +254,432,3.0,845157382 +254,444,4.0,845157874 +254,457,4.0,845157248 +254,466,3.0,845157552 +254,469,3.0,845158570 +254,481,4.0,845157858 +254,485,3.0,845159277 +254,489,3.0,845157847 +254,494,4.0,845157712 +254,497,3.0,845157499 +254,500,4.0,845157323 +254,520,4.0,845157552 +254,521,5.0,845157997 +254,534,3.0,845158818 +254,535,3.0,845157847 +254,537,3.0,845157762 +254,538,5.0,845157793 +254,539,3.0,845157367 +254,540,2.0,845159636 +254,542,2.0,845157762 +254,543,3.0,845157599 +254,551,4.0,845157478 +254,585,3.0,845157463 +254,587,3.0,845157338 +254,588,4.0,845157211 +254,589,3.0,845157293 +254,590,3.0,845157190 +254,592,3.0,845157190 +254,593,5.0,845157247 +254,595,4.0,845157247 +254,596,5.0,845157620 +254,597,3.0,845157338 +254,608,5.0,845157516 +254,609,4.0,845157925 +254,610,4.0,845157634 +254,616,4.0,845159016 +254,685,3.0,845158127 +254,750,5.0,845158116 +254,846,4.0,845159266 +254,861,3.0,845158867 +254,899,4.0,845158392 +254,901,4.0,845158460 +254,903,4.0,845158359 +254,904,4.0,845158326 +254,914,3.0,845158378 +254,919,4.0,845158313 +254,922,4.0,845158445 +254,923,4.0,845158326 +254,924,4.0,845158294 +254,953,3.0,845158334 +254,954,4.0,845158392 +254,1073,4.0,845159058 +254,1082,4.0,845158108 +255,18,2.5,1236980522 +255,19,1.5,1236981275 +255,105,4.0,1236980398 +255,158,2.0,1236984810 +255,231,2.5,1237062259 +255,256,1.5,1236980409 +255,344,1.5,1236981270 +255,356,3.5,1237062255 +255,364,3.0,1237062269 +255,648,3.0,1237062720 +255,680,4.0,1236981604 +255,714,4.5,1237062530 +255,910,4.0,1236980392 +255,922,4.5,1236980484 +255,923,4.5,1236985384 +255,953,4.0,1237063799 +255,1084,5.0,1236983576 +255,1103,5.0,1236980495 +255,1193,5.0,1237062241 +255,1206,5.0,1236985449 +255,1208,4.5,1236981960 +255,1230,4.0,1236981912 +255,1304,5.0,1236984288 +255,1732,5.0,1236982902 +255,1917,2.5,1236982027 +255,2076,4.5,1236983381 +255,2291,5.0,1237062315 +255,2321,3.0,1237063006 +255,2324,4.5,1237063003 +255,2351,3.5,1236980918 +255,2497,3.0,1237062670 +255,2572,3.0,1236981069 +255,2843,5.0,1236982967 +255,2858,4.5,1236981637 +255,2897,5.0,1236981851 +255,2997,5.0,1236982548 +255,3052,4.0,1237062299 +255,3257,1.5,1236983551 +255,3301,2.0,1236980466 +255,3545,4.0,1236984412 +255,3685,3.5,1236980695 +255,3742,5.0,1236982401 +255,3751,4.0,1236985268 +255,3863,3.0,1236984975 +255,3893,2.5,1236980528 +255,3968,1.5,1237062449 +255,3999,2.0,1236980644 +255,4014,2.5,1236985312 +255,4015,4.0,1237063452 +255,4022,3.0,1236984816 +255,4246,4.0,1236984156 +255,4370,3.5,1236981220 +255,4386,1.0,1236984953 +255,4388,2.0,1237063440 +255,4673,1.5,1236980770 +255,4973,5.0,1236981630 +255,4993,5.0,1237062208 +255,4995,3.5,1237062907 +255,5076,3.5,1236981400 +255,5092,2.0,1236982881 +255,5225,4.5,1236981848 +255,5269,4.0,1237062895 +255,5377,4.0,1236981248 +255,5613,3.5,1236981207 +255,5878,4.0,1237063367 +255,5902,5.0,1236981293 +255,5945,3.5,1236981244 +255,5952,5.0,1237062201 +255,5991,3.5,1236985258 +255,6016,4.5,1236985399 +255,6058,2.0,1237062596 +255,6252,1.5,1237062864 +255,6373,3.0,1236984229 +255,6539,4.5,1237062860 +255,6620,4.0,1236981804 +255,6711,4.5,1237062280 +255,6870,3.5,1237062845 +255,6953,4.0,1236981127 +255,6985,5.0,1237064195 +255,7147,5.0,1236982891 +255,7153,5.0,1237063870 +255,7162,3.0,1236985496 +255,7173,1.5,1236981593 +255,7234,4.0,1237064183 +255,7254,3.0,1236984299 +255,7265,5.0,1237062829 +255,7361,5.0,1237063720 +255,7444,2.5,1236981091 +255,7460,4.0,1236985489 +255,8254,5.0,1236982022 +255,8370,3.5,1237062580 +255,8376,5.0,1237062406 +255,8529,3.0,1237063307 +255,8783,3.0,1237063299 +255,8860,3.0,1236980890 +255,8873,5.0,1237062403 +255,8910,4.5,1237062397 +255,8948,3.0,1236981515 +255,8949,3.5,1237063289 +255,8969,2.0,1236984160 +255,8970,3.5,1237062388 +255,8973,4.5,1236980863 +255,8981,4.5,1236985460 +255,8985,1.0,1236983066 +255,25805,5.0,1236982094 +255,27266,4.0,1236981121 +255,27815,4.5,1236985322 +255,30816,3.0,1237062573 +255,31956,2.5,1236981189 +255,32587,5.0,1237062283 +255,33164,1.0,1237062799 +255,33660,3.0,1236985367 +255,33679,3.0,1237063256 +255,34437,4.5,1236984194 +255,36401,3.5,1236984214 +255,37729,4.5,1237062378 +255,38798,3.0,1237062792 +255,39183,4.5,1236984187 +255,40819,3.0,1237063227 +255,41566,3.0,1236985342 +255,41571,2.5,1236980837 +255,42015,3.0,1236984789 +255,44195,3.5,1237063223 +255,44555,5.0,1237063814 +255,45447,2.5,1237063231 +255,45722,4.5,1237063234 +255,46578,3.5,1237063218 +255,48696,4.0,1237062772 +255,49272,5.0,1236984799 +255,50954,3.5,1237061951 +255,54001,3.0,1237062372 +255,54503,4.0,1237062364 +255,54732,4.0,1236982276 +255,55052,4.0,1236982102 +255,55253,4.0,1237063180 +255,55274,4.5,1237063183 +255,58559,4.5,1237063931 +255,59725,3.0,1237062752 +255,59784,3.5,1237062553 +255,61323,5.0,1236984270 +255,63062,3.5,1236985199 +255,63853,2.5,1236981023 +255,64839,4.5,1237062172 +255,64957,4.0,1236981039 +255,66203,4.0,1236981047 +256,3,3.0,851862274 +256,5,3.0,851862273 +256,6,3.0,851862273 +256,7,3.0,851862274 +256,9,3.0,851862371 +256,14,4.0,851862320 +256,25,5.0,851862204 +256,32,1.0,851862204 +256,36,3.0,851862273 +256,52,4.0,851862320 +256,62,4.0,851862204 +256,79,3.0,851862370 +256,95,3.0,851862204 +256,100,3.0,851862443 +256,140,3.0,851862371 +256,141,4.0,851862204 +256,376,3.0,851862274 +256,494,3.0,851862274 +256,608,4.0,851862273 +256,628,4.0,851862371 +256,637,3.0,851862370 +256,648,1.0,851862204 +256,708,3.0,851862320 +256,736,3.0,851862204 +256,786,3.0,851862320 +256,832,4.0,851862505 +256,1073,3.0,851862320 +257,110,1.5,1348432136 +257,111,5.0,1338008367 +257,260,3.5,1449941754 +257,296,5.0,1338008518 +257,318,4.0,1338008463 +257,608,4.0,1449941791 +257,741,5.0,1348289399 +257,910,0.5,1449941745 +257,912,5.0,1338009430 +257,1136,4.0,1449941127 +257,1189,4.5,1449941418 +257,1196,5.0,1449941341 +257,1201,4.0,1449941794 +257,1206,0.5,1449941218 +257,1207,4.0,1449941803 +257,1212,4.5,1338007055 +257,1218,4.0,1382585982 +257,1222,4.5,1338009498 +257,1228,4.5,1338085401 +257,1230,0.5,1449941741 +257,1244,4.5,1338009606 +257,1248,4.0,1338008487 +257,1252,3.5,1348543172 +257,1258,4.5,1338009448 +257,1263,4.0,1338006929 +257,1270,3.5,1338009265 +257,1274,4.0,1348544094 +257,1278,5.0,1338009616 +257,1653,3.5,1348542901 +257,1732,2.5,1338008439 +257,1945,3.5,1338007081 +257,1968,0.5,1449941756 +257,2019,5.0,1338009444 +257,2105,1.0,1338006947 +257,2160,4.5,1338009319 +257,2300,4.0,1338009696 +257,2502,4.0,1348543068 +257,2555,0.5,1338007492 +257,2759,3.0,1348543309 +257,2810,0.5,1384658047 +257,2905,5.0,1338008251 +257,2918,5.0,1338009626 +257,2948,3.0,1338007027 +257,2949,4.0,1338007022 +257,2959,5.0,1338008479 +257,3000,5.0,1338008296 +257,3030,5.0,1338008230 +257,3091,2.5,1338008115 +257,3224,3.0,1348288095 +257,3365,3.0,1338009471 +257,3435,2.5,1338009363 +257,3751,5.0,1348288488 +257,3996,5.0,1348288119 +257,4855,4.5,1338008386 +257,4878,5.0,1348287669 +257,4886,2.5,1449941781 +257,4993,4.5,1348543050 +257,5146,0.5,1356517818 +257,5300,5.0,1364623792 +257,5498,5.0,1338009229 +257,5690,4.0,1361847376 +257,5971,4.5,1338008328 +257,6350,4.0,1348432335 +257,6539,3.5,1338711189 +257,6669,5.0,1338008065 +257,6713,3.5,1361847383 +257,6857,0.5,1384658040 +257,7022,4.0,1338009069 +257,7060,4.0,1338008110 +257,7099,5.0,1348289288 +257,7919,4.5,1338008315 +257,7925,2.5,1338009285 +257,8157,3.5,1357016590 +257,8253,4.5,1361847365 +257,8484,3.5,1338009082 +257,8961,2.5,1449941800 +257,25771,3.0,1338007898 +257,26082,5.0,1338008319 +257,26662,4.5,1338009202 +257,26776,3.5,1348289356 +257,26840,2.0,1379207594 +257,26903,3.0,1361847412 +257,27728,3.5,1338008106 +257,27731,3.0,1361847403 +257,30803,4.5,1381206612 +257,31658,4.0,1338009235 +257,32587,1.0,1449941116 +257,44761,4.0,1348543390 +257,49272,4.0,1348543094 +257,52885,4.0,1348289178 +257,57504,3.5,1348289194 +257,64614,3.5,1348543222 +257,64695,3.0,1361847748 +257,64993,3.5,1361847438 +257,65261,4.0,1348432341 +257,70286,3.5,1348542887 +257,70533,4.0,1379186740 +257,79132,2.5,1449941330 +257,81845,2.0,1338008119 +257,82459,3.5,1348543212 +257,84187,4.0,1379186744 +257,85179,2.5,1449941453 +257,101962,5.0,1380873296 +258,260,4.0,955313017 +258,1221,5.0,955313061 +258,1466,4.0,955313017 +258,1487,2.0,955313061 +258,1927,5.0,955313590 +258,2412,3.0,955313061 +258,2652,4.0,955313017 +258,2762,5.0,955313590 +258,3361,3.0,955313061 +258,3461,4.0,955313373 +258,3467,4.0,955313329 +258,3468,5.0,955313329 +258,3469,5.0,955313329 +258,3471,5.0,955313210 +258,3478,3.0,955313185 +258,3479,3.0,955313329 +258,3480,4.0,955313373 +258,3494,5.0,955313505 +258,3498,5.0,955313373 +258,3499,4.0,955313373 +258,3504,4.0,955313407 +258,3508,5.0,955313407 +258,3519,4.0,955313245 +258,3524,4.0,955313185 +258,3527,4.0,955313446 +258,3528,4.0,955313446 +258,3529,5.0,955313446 +258,3543,5.0,955313245 +258,3546,5.0,955313505 +258,3548,4.0,955313185 +258,3549,4.0,955313286 +258,3551,4.0,955313373 +259,34,3.0,949949146 +259,246,5.0,949949032 +259,260,2.0,949948803 +259,288,2.0,949949305 +259,356,4.0,949948831 +259,541,1.0,949948974 +259,608,4.0,949949132 +259,700,3.0,949948803 +259,785,3.0,949949103 +259,1005,4.0,949948831 +259,1097,3.0,949948831 +259,1189,4.0,949949044 +259,1210,2.0,949948789 +259,1231,5.0,949948963 +259,1246,5.0,949948995 +259,2109,5.0,949949358 +259,2194,3.0,949948963 +259,2268,5.0,949949333 +259,2396,3.0,949949183 +259,2599,4.0,949949172 +259,2736,4.0,949948908 +259,2750,3.0,949948984 +259,2792,3.0,949948937 +259,2804,3.0,949948921 +259,2858,4.0,949949162 +259,2959,3.0,949948743 +259,2997,5.0,949949132 +259,3007,4.0,949949260 +260,69,3.0,1207885633 +260,231,3.5,1207985639 +260,260,5.0,1207887858 +260,329,5.0,1207985668 +260,356,4.0,1207985437 +260,367,2.0,1207985628 +260,379,3.5,1207885410 +260,589,4.0,1207887816 +260,590,4.0,1207887734 +260,765,4.0,1207885529 +260,1194,3.5,1207886026 +260,1196,5.0,1207985383 +260,1210,5.0,1207887704 +260,1240,4.5,1207985596 +260,1265,5.0,1207985684 +260,1409,4.0,1207885371 +260,1620,3.5,1207885599 +260,1704,5.0,1207985573 +260,1961,3.5,1207985516 +260,1979,3.0,1207886252 +260,1981,3.0,1207886256 +260,2109,2.5,1207885307 +260,2269,2.5,1207885933 +260,2571,5.0,1207887760 +260,2628,5.0,1207985396 +260,2716,3.0,1207985242 +260,2959,2.5,1207985204 +260,3249,3.5,1207885953 +260,3578,5.0,1207985605 +260,4022,2.0,1207985538 +260,4084,3.0,1207885859 +260,4220,3.5,1207886304 +260,4224,3.0,1207886420 +260,4995,2.5,1207985091 +260,5378,5.0,1207985646 +260,6539,5.0,1207985166 +260,6711,2.0,1207985216 +260,33493,5.0,1207985266 +260,44191,5.0,1207985132 +260,45722,3.5,1207985291 +260,56174,3.0,1207886287 +261,1,1.5,1101665532 +261,19,5.0,1101666126 +261,32,4.0,1101665552 +261,50,5.0,1101665567 +261,110,5.0,1101665515 +261,112,0.5,1101665410 +261,150,3.5,1101665513 +261,231,4.5,1101665615 +261,235,0.5,1101665380 +261,260,4.0,1101665520 +261,315,3.5,1101665449 +261,316,4.5,1101665564 +261,318,5.0,1101665518 +261,344,5.0,1101665559 +261,356,5.0,1101665501 +261,377,4.0,1101665554 +261,380,3.5,1101665523 +261,480,3.0,1101665503 +261,589,4.0,1101665525 +261,590,4.5,1101665511 +261,592,4.0,1101665507 +261,593,4.5,1101665499 +261,648,3.5,1101665563 +261,653,1.0,1101665378 +261,780,4.5,1101665528 +261,832,3.0,1101665427 +261,1208,2.5,1101665372 +261,1220,0.5,1101665374 +261,1225,4.0,1101665367 +261,1240,4.0,1101666435 +261,1270,4.0,1101665609 +261,1517,2.0,1101665396 +261,1584,5.0,1101665665 +261,2174,1.0,1101665416 +261,2700,3.0,1101665448 +261,2858,5.0,1101665611 +261,2916,3.5,1101665668 +261,3114,0.5,1101665407 +261,3793,4.0,1101665431 +261,4016,5.0,1101666082 +261,4306,3.0,1101665429 +261,4993,3.5,1101665423 +261,5445,5.0,1101665658 +261,5903,5.0,1101665663 +261,6365,4.0,1101665675 +261,6537,3.0,1101665681 +261,7143,4.0,1101665980 +261,7254,4.5,1101665664 +261,7827,5.0,1101665661 +261,8644,4.5,1101665659 +262,1,2.5,1433898798 +262,2,2.0,1434331477 +262,19,2.5,1434025058 +262,29,3.0,1433899932 +262,34,2.0,1434332133 +262,39,2.5,1434024947 +262,47,5.0,1433899064 +262,70,2.0,1433945801 +262,97,3.0,1433899624 +262,110,3.0,1433900727 +262,111,3.5,1433899517 +262,154,2.0,1434332315 +262,175,5.0,1434026421 +262,231,2.5,1433900989 +262,247,4.0,1434028372 +262,253,3.0,1433899148 +262,288,4.0,1433899117 +262,293,4.0,1433899047 +262,296,4.0,1433898889 +262,306,3.0,1433899556 +262,307,3.0,1433899653 +262,318,3.0,1433898853 +262,319,2.5,1434028404 +262,344,2.5,1433900945 +262,347,2.0,1434028789 +262,356,3.0,1433898783 +262,357,2.5,1433945204 +262,364,2.0,1433900939 +262,367,2.0,1434332133 +262,377,2.5,1433900947 +262,380,2.0,1433900951 +262,480,3.0,1433898792 +262,495,2.5,1434026701 +262,500,3.5,1433900987 +262,527,3.0,1433898859 +262,551,3.0,1433944378 +262,586,4.0,1434024930 +262,587,1.5,1434024940 +262,588,2.0,1433900952 +262,593,5.0,1433898786 +262,595,3.5,1433900938 +262,596,2.0,1434028849 +262,597,2.0,1434024918 +262,714,3.0,1433939192 +262,736,2.0,1433900996 +262,778,3.5,1433900818 +262,780,1.5,1433900962 +262,799,3.0,1453400925 +262,841,3.5,1433899252 +262,858,3.5,1433898857 +262,899,3.0,1433900729 +262,903,2.5,1433902162 +262,910,3.0,1433900708 +262,912,2.5,1433898895 +262,919,2.0,1434025037 +262,923,2.0,1433900591 +262,924,3.0,1466554367 +262,928,2.5,1433900620 +262,968,4.0,1433899254 +262,1073,3.5,1433938198 +262,1080,2.0,1433937472 +262,1088,2.0,1433938031 +262,1089,3.0,1433937996 +262,1092,1.0,1434026704 +262,1128,2.5,1433901601 +262,1136,2.0,1433902148 +262,1172,3.0,1433898949 +262,1173,4.0,1434332273 +262,1185,2.5,1433939305 +262,1193,3.5,1433898864 +262,1199,2.5,1433900782 +262,1206,4.0,1433939078 +262,1208,3.5,1433900624 +262,1209,3.5,1433938208 +262,1219,4.0,1433899304 +262,1221,3.0,1433898860 +262,1222,2.5,1433900762 +262,1223,2.0,1433900798 +262,1230,3.0,1433900688 +262,1235,5.0,1433937500 +262,1237,3.0,1433900639 +262,1241,4.0,1433899346 +262,1244,3.0,1433900749 +262,1246,3.0,1434025076 +262,1247,4.0,1433900663 +262,1251,2.5,1433900724 +262,1255,3.0,1433899361 +262,1258,4.0,1433899272 +262,1259,4.0,1433937479 +262,1261,2.5,1433899278 +262,1270,3.0,1433898794 +262,1273,2.5,1433900772 +262,1285,3.5,1434333103 +262,1321,3.0,1433945803 +262,1333,3.0,1433899342 +262,1342,2.5,1434028370 +262,1343,2.0,1434028845 +262,1345,4.0,1433901086 +262,1347,3.5,1433901313 +262,1348,3.0,1433899308 +262,1350,3.0,1433902595 +262,1361,5.0,1449695793 +262,1380,2.0,1434333178 +262,1387,2.5,1433899249 +262,1393,0.5,1434025046 +262,1394,2.0,1433938936 +262,1407,4.0,1433945792 +262,1437,2.5,1434026695 +262,1441,3.0,1434333065 +262,1483,4.0,1434026711 +262,1517,3.0,1434025032 +262,1580,2.0,1433900994 +262,1644,1.5,1433945806 +262,1663,1.0,1434333193 +262,1680,1.0,1434333062 +262,1704,1.0,1433937452 +262,1717,2.0,1433945812 +262,1721,2.5,1433900992 +262,1732,3.0,1433899619 +262,1777,2.0,1433900105 +262,1884,3.5,1433900267 +262,1923,2.5,1434331441 +262,1952,2.5,1433899676 +262,1961,2.5,1433899841 +262,1968,4.5,1433899805 +262,1974,2.5,1466556509 +262,1982,3.0,1433902398 +262,1991,3.0,1433901519 +262,1993,2.0,1434332492 +262,1994,3.0,1433901091 +262,1997,2.5,1433899276 +262,2003,3.0,1453400917 +262,2005,4.0,1433900100 +262,2019,3.0,1433900531 +262,2076,3.0,1433939213 +262,2099,2.5,1434026452 +262,2115,3.0,1433900343 +262,2118,3.0,1433899452 +262,2134,3.0,1433899853 +262,2144,5.0,1433900113 +262,2145,5.0,1433900159 +262,2159,3.0,1434028259 +262,2160,3.5,1433899324 +262,2174,4.0,1433899850 +262,2291,4.0,1433944316 +262,2313,3.5,1433900016 +262,2361,3.0,1434026440 +262,2395,5.0,1433900218 +262,2428,3.0,1453400946 +262,2459,3.5,1433901162 +262,2488,3.5,1433899389 +262,2513,3.0,1433901307 +262,2517,3.0,1433901165 +262,2541,2.5,1434332587 +262,2542,2.5,1433899132 +262,2548,0.5,1434332424 +262,2557,2.5,1434028407 +262,2581,1.0,1434333116 +262,2617,2.0,1433945791 +262,2644,2.5,1433901259 +262,2657,3.5,1434028796 +262,2683,2.5,1434331443 +262,2700,2.5,1434026407 +262,2706,2.0,1434025013 +262,2710,2.0,1433945788 +262,2712,2.5,1434028823 +262,2713,1.0,1434332606 +262,2716,2.5,1434024934 +262,2719,2.0,1434332477 +262,2722,0.5,1433945810 +262,2731,2.5,1433900584 +262,2732,2.5,1433899738 +262,2762,4.0,1433900057 +262,2783,3.0,1466555126 +262,2787,2.0,1433901571 +262,2789,2.0,1434332483 +262,2790,1.0,1434332499 +262,2797,2.0,1434333201 +262,2853,3.0,1466556529 +262,2858,4.0,1433899129 +262,2862,2.5,1434026448 +262,2901,3.0,1433901228 +262,2908,3.0,1434028384 +262,2918,4.0,1433899630 +262,2925,2.5,1433900714 +262,2959,3.5,1433898887 +262,2964,4.0,1434024383 +262,2967,3.0,1433901256 +262,2987,3.0,1434025065 +262,2995,1.0,1434332556 +262,3018,2.5,1433899364 +262,3075,3.5,1433899246 +262,3089,3.0,1433899077 +262,3134,2.5,1433900571 +262,3147,3.5,1434025061 +262,3189,2.0,1433945088 +262,3205,3.0,1433901335 +262,3216,5.0,1466555307 +262,3223,3.0,1434028748 +262,3272,2.0,1434026669 +262,3273,1.5,1433944596 +262,3294,2.5,1466555388 +262,3296,2.0,1434333003 +262,3344,3.5,1434026377 +262,3408,2.0,1433944471 +262,3409,2.0,1433944656 +262,3448,2.0,1433899934 +262,3476,2.0,1433899428 +262,3481,3.0,1433900302 +262,3484,2.0,1433944981 +262,3499,3.0,1433902770 +262,3504,3.5,1433899608 +262,3535,3.0,1434028745 +262,3536,0.5,1433944735 +262,3552,1.5,1433900110 +262,3556,4.0,1433900316 +262,3569,2.0,1434024388 +262,3578,2.5,1433943824 +262,3617,2.5,1433944564 +262,3621,3.5,1433901224 +262,3658,2.0,1433901247 +262,3676,3.0,1466555143 +262,3727,2.0,1433901320 +262,3741,2.5,1433899627 +262,3742,2.0,1434026690 +262,3751,2.0,1433943845 +262,3752,1.0,1434333328 +262,3777,3.5,1434026355 +262,3785,2.5,1433944537 +262,3788,3.0,1433899900 +262,3798,2.0,1433944611 +262,3825,2.0,1433944730 +262,3826,1.5,1433944562 +262,3847,3.0,1466555416 +262,3863,2.0,1433944529 +262,3875,2.5,1466555129 +262,3882,2.5,1433944684 +262,3917,2.0,1466555004 +262,3932,2.0,1433901523 +262,3948,1.0,1433900094 +262,3949,4.0,1433900762 +262,3967,3.5,1433944552 +262,3968,1.0,1433944739 +262,3970,3.0,1433901325 +262,3977,2.5,1433944475 +262,3979,0.5,1433944826 +262,3988,2.0,1433944624 +262,3991,0.5,1433945135 +262,4011,4.0,1433899072 +262,4014,2.0,1434333307 +262,4015,2.0,1433944667 +262,4018,1.5,1433944524 +262,4020,2.0,1433944958 +262,4023,0.5,1433944675 +262,4025,2.0,1433944510 +262,4054,1.0,1433944812 +262,4056,2.0,1434332097 +262,4069,0.5,1433944756 +262,4105,4.0,1433899283 +262,4128,4.0,1433900174 +262,4148,0.5,1453400929 +262,4161,1.0,1433944701 +262,4210,2.5,1433901758 +262,4226,3.0,1433899135 +262,4235,2.5,1433899562 +262,4239,2.0,1433900312 +262,4246,3.5,1433944496 +262,4270,2.0,1433944553 +262,4299,0.5,1433944635 +262,4306,2.5,1433943823 +262,4308,2.0,1433944493 +262,4310,2.0,1434333331 +262,4367,1.0,1433944568 +262,4368,0.5,1433945094 +262,4369,1.0,1433944585 +262,4370,2.0,1433944502 +262,4372,2.5,1434332981 +262,4386,0.5,1433945003 +262,4388,2.0,1433944769 +262,4390,3.0,1434026462 +262,4403,3.0,1433901427 +262,4417,2.5,1434026374 +262,4437,4.0,1433899444 +262,4447,1.5,1433944535 +262,4552,4.0,1434332315 +262,4638,1.0,1434333355 +262,4641,5.0,1433900434 +262,4658,3.5,1433899486 +262,4697,2.0,1466555411 +262,4718,2.0,1434333330 +262,4720,3.0,1433899348 +262,4745,1.0,1434332535 +262,4752,3.5,1466555203 +262,4754,5.0,1433899430 +262,4816,2.5,1434333342 +262,4833,3.0,1433899412 +262,4865,2.0,1433944707 +262,4878,5.0,1433900808 +262,4886,2.5,1433943827 +262,4890,2.0,1433944679 +262,4893,3.0,1433901591 +262,4896,2.0,1433943841 +262,4902,3.0,1433899425 +262,4914,3.5,1433899722 +262,4951,1.0,1434332369 +262,4963,1.5,1433943836 +262,4973,3.5,1433899006 +262,4979,4.0,1433900131 +262,4993,3.0,1433899020 +262,4996,2.5,1433901437 +262,5014,3.0,1433944831 +262,5025,0.5,1433944988 +262,5026,2.0,1433944862 +262,5034,2.0,1434333145 +262,5105,3.0,1433899401 +262,5111,2.0,1434028863 +262,5147,3.0,1433900632 +262,5151,0.5,1433944904 +262,5153,3.0,1434028832 +262,5165,3.5,1433901549 +262,5218,2.0,1433944490 +262,5225,3.0,1433899976 +262,5269,3.0,1434028759 +262,5291,2.0,1433899044 +262,5294,1.0,1433944971 +262,5319,2.0,1433899996 +262,5349,1.5,1433943835 +262,5377,3.0,1433944518 +262,5433,2.5,1466555214 +262,5449,0.5,1433944830 +262,5481,1.5,1434333323 +262,5489,2.5,1433899422 +262,5502,3.0,1449545395 +262,5505,5.0,1433944985 +262,5569,4.0,1433901264 +262,5570,2.5,1433902476 +262,5577,2.5,1433944949 +262,5588,2.5,1433901380 +262,5600,2.5,1434333082 +262,5617,5.0,1433944724 +262,5630,2.5,1433901439 +262,5679,2.5,1433944520 +262,5715,2.5,1466555329 +262,5735,2.0,1434028883 +262,5778,2.5,1466555111 +262,5785,2.0,1433944847 +262,5810,1.5,1433944664 +262,5816,2.0,1434333289 +262,5853,2.5,1433901338 +262,5891,3.0,1434028395 +262,5909,3.0,1433901093 +262,5952,3.0,1433899030 +262,5957,0.5,1433944944 +262,5971,2.5,1433899027 +262,5980,3.5,1433901333 +262,5995,3.0,1433900705 +262,6000,3.0,1466555083 +262,6016,2.0,1433898866 +262,6063,4.0,1434028236 +262,6140,3.0,1433901090 +262,6188,0.5,1433944647 +262,6214,5.0,1434026410 +262,6218,2.5,1434333349 +262,6256,3.5,1433901670 +262,6257,1.5,1434026685 +262,6287,0.5,1433944728 +262,6290,2.0,1434026371 +262,6291,2.5,1434028390 +262,6301,3.5,1434026687 +262,6367,0.5,1433945120 +262,6373,1.5,1433944516 +262,6383,0.5,1433944776 +262,6395,3.0,1433901443 +262,6502,3.5,1433899319 +262,6503,1.5,1433944743 +262,6530,3.5,1466554000 +262,6535,0.5,1433945036 +262,6586,2.0,1433944968 +262,6609,2.5,1433902734 +262,6711,4.0,1433900226 +262,6748,3.0,1433899485 +262,6773,2.5,1433944805 +262,6863,2.0,1433944513 +262,6870,2.0,1449545417 +262,6874,3.5,1433899821 +262,6890,3.0,1433945125 +262,6909,3.0,1466556506 +262,6936,1.5,1433944709 +262,6940,4.0,1466555315 +262,6942,2.0,1434333093 +262,6975,2.5,1433899373 +262,6987,3.0,1433899340 +262,7008,3.0,1434026428 +262,7022,4.0,1434026395 +262,7024,3.0,1434026444 +262,7029,3.0,1433901703 +262,7065,2.5,1434026572 +262,7110,3.0,1433901573 +262,7115,3.0,1433899417 +262,7123,2.0,1434028360 +262,7153,3.0,1433899012 +262,7235,3.0,1433901695 +262,7265,4.0,1434026468 +262,7293,0.5,1433944618 +262,7318,2.0,1433944819 +262,7327,4.0,1433899568 +262,7360,2.0,1433899292 +262,7361,3.0,1433900258 +262,7387,3.0,1433899256 +262,7438,2.5,1433899964 +262,7444,0.5,1433944798 +262,7451,2.0,1433944711 +262,7492,3.0,1433901432 +262,7502,4.0,1433899008 +262,7650,3.0,1433901321 +262,7882,2.5,1433901869 +262,7920,3.0,1433901240 +262,7976,3.0,1434028829 +262,7982,2.0,1433901269 +262,8014,3.0,1433899657 +262,8128,2.5,1433902867 +262,8194,2.5,1434026549 +262,8195,2.5,1433899743 +262,8360,2.5,1433944469 +262,8368,1.5,1433944485 +262,8376,3.5,1433944602 +262,8464,2.0,1433944546 +262,8477,3.5,1433899705 +262,8507,4.0,1433899414 +262,8640,2.5,1433945032 +262,8783,2.5,1433944698 +262,8784,2.0,1433900381 +262,8848,2.0,1433937641 +262,8873,2.5,1433900022 +262,8874,5.0,1433899280 +262,8906,3.5,1433901809 +262,8947,2.5,1433945101 +262,8950,3.0,1433900876 +262,8969,1.0,1433945007 +262,8981,3.0,1433944786 +262,8983,2.0,1433944758 +262,25771,3.5,1433902894 +262,25774,3.0,1433901984 +262,25807,3.0,1466555413 +262,26003,3.5,1433900815 +262,26125,3.5,1433901254 +262,26171,3.0,1433937427 +262,26176,3.0,1434026546 +262,26231,3.0,1434028421 +262,26241,3.5,1433939016 +262,26303,2.0,1434028411 +262,26320,2.5,1433938622 +262,26326,3.0,1433900053 +262,26587,3.5,1433899681 +262,26631,3.0,1434028356 +262,26693,2.0,1434332537 +262,26974,5.0,1434024376 +262,27317,3.0,1433901311 +262,27329,4.0,1466553914 +262,27604,1.0,1466555095 +262,27648,1.5,1434027012 +262,27721,2.5,1433945072 +262,27772,3.0,1434332838 +262,27773,4.0,1433899039 +262,27784,2.0,1433943899 +262,27798,1.0,1466556425 +262,30745,2.5,1433901815 +262,30783,3.0,1433901578 +262,30793,1.0,1433944559 +262,30803,3.5,1433899708 +262,30810,4.0,1433900224 +262,31270,2.5,1434026382 +262,31502,2.5,1433901840 +262,31952,4.0,1434332260 +262,32211,3.5,1434026663 +262,32587,2.5,1433899863 +262,32686,3.0,1433901854 +262,32728,2.5,1433901772 +262,32898,3.0,1433939390 +262,33162,2.0,1433944952 +262,33171,5.0,1434026665 +262,33592,2.5,1433939259 +262,33683,3.0,1434028346 +262,33817,1.0,1434028784 +262,33880,3.0,1434024386 +262,33896,2.5,1433938989 +262,34323,2.0,1433902006 +262,34437,2.0,1433900240 +262,36276,2.0,1434332281 +262,38886,4.0,1433902777 +262,39381,2.0,1434332038 +262,40412,5.0,1434028381 +262,40833,2.5,1433901908 +262,42632,3.0,1434028375 +262,42723,3.0,1434026442 +262,44694,2.5,1433945024 +262,44761,2.0,1433945027 +262,44974,3.5,1433945145 +262,45662,1.0,1434332380 +262,46578,5.0,1433944494 +262,46723,2.5,1466553900 +262,48082,2.0,1433900251 +262,48231,3.5,1433901586 +262,48385,2.0,1433944556 +262,48394,2.5,1433899084 +262,48744,1.5,1434026418 +262,48774,2.5,1433899918 +262,48780,2.5,1449545380 +262,48872,2.5,1434332011 +262,48972,1.0,1466556478 +262,48997,3.0,1433945149 +262,51207,2.5,1433901784 +262,51255,3.0,1433899515 +262,51304,0.5,1434026561 +262,52666,2.5,1434028380 +262,53000,1.5,1433944779 +262,53435,2.0,1434026570 +262,53953,0.5,1433944965 +262,54503,2.0,1433944588 +262,54995,3.0,1433899458 +262,55269,5.0,1433900103 +262,55280,3.5,1434333174 +262,55652,3.0,1434028328 +262,55820,3.5,1434331241 +262,56145,1.5,1433945123 +262,56339,2.5,1433945133 +262,56367,3.0,1433939343 +262,57274,2.5,1433899344 +262,57669,2.5,1433899754 +262,57910,2.5,1434028842 +262,58964,3.0,1434028252 +262,59369,4.0,1434331314 +262,59727,2.5,1434028856 +262,59995,3.0,1434332061 +262,60069,2.0,1449545363 +262,60072,1.5,1433944927 +262,60293,2.5,1434333195 +262,60333,2.5,1433938484 +262,61024,2.0,1433944909 +262,61240,3.5,1433944834 +262,62203,3.5,1434028253 +262,63992,2.0,1433944982 +262,64034,2.5,1433939292 +262,64153,1.0,1433901282 +262,64969,0.5,1433945062 +262,65188,0.5,1433899651 +262,66310,2.0,1434028756 +262,68157,2.5,1433899093 +262,68237,2.5,1433899119 +262,68954,4.0,1433899070 +262,69134,2.5,1434028793 +262,69720,1.5,1433901294 +262,69757,1.5,1434331407 +262,71304,2.0,1433901079 +262,71518,3.0,1434333026 +262,71535,2.0,1433899302 +262,71579,1.0,1434333040 +262,71700,1.5,1466555047 +262,72226,4.0,1433899801 +262,72731,3.0,1434332559 +262,73321,2.5,1449619585 +262,74370,3.0,1466555224 +262,74458,3.0,1434331410 +262,76030,2.0,1434332563 +262,76093,3.0,1433899165 +262,76251,3.0,1433944669 +262,76303,3.0,1433901668 +262,77427,1.0,1434028872 +262,77800,3.0,1434026432 +262,79251,2.0,1434028821 +262,79702,5.0,1433944765 +262,80736,1.5,1434028878 +262,80844,1.0,1433902396 +262,80862,3.0,1434026438 +262,81138,2.5,1433901891 +262,81562,1.5,1433944901 +262,81847,2.5,1433900020 +262,82041,3.5,1434331904 +262,82667,3.5,1433899462 +262,85401,4.0,1434028802 +262,85788,2.5,1466555293 +262,85881,2.5,1434333047 +262,87205,1.5,1433902503 +262,87234,3.5,1434333071 +262,88163,2.0,1433945056 +262,88272,2.0,1434026558 +262,89118,3.0,1433899386 +262,89837,4.0,1434028776 +262,89864,2.5,1433939428 +262,90357,4.0,1466554024 +262,90374,2.0,1433901991 +262,90531,2.5,1433937509 +262,91488,2.5,1434026949 +262,92058,2.0,1434332534 +262,92206,2.0,1434028881 +262,92309,2.0,1466556500 +262,92494,5.0,1433939438 +262,92496,2.5,1433944354 +262,92498,2.5,1433939525 +262,93840,2.0,1433899391 +262,94466,3.0,1433899032 +262,94864,1.5,1433945013 +262,94959,3.5,1433899570 +262,96490,2.0,1434332489 +262,96563,3.0,1449566698 +262,96610,1.5,1433944843 +262,96634,1.0,1433901354 +262,96815,3.0,1466555193 +262,97188,3.0,1466555348 +262,97593,3.5,1433943968 +262,97921,2.5,1433939383 +262,97957,5.0,1466555263 +262,98083,2.0,1449545775 +262,98809,2.0,1433944816 +262,99296,2.0,1466553910 +262,99470,1.5,1466555310 +262,99669,2.5,1433902552 +262,99912,2.5,1466555060 +262,100159,3.0,1433901145 +262,100306,2.5,1434028827 +262,103249,1.5,1434332516 +262,103299,3.0,1466555235 +262,103341,2.5,1434026812 +262,103688,3.0,1433899245 +262,104457,3.5,1466555164 +262,104662,1.5,1433939422 +262,104879,3.0,1434332065 +262,105763,3.0,1433901730 +262,106870,3.0,1433902455 +262,106920,3.0,1433899735 +262,107057,3.0,1433901065 +262,107771,2.5,1433899455 +262,108192,4.0,1433976851 +262,108447,1.5,1433902533 +262,108506,2.5,1433937554 +262,108583,2.5,1433899163 +262,108729,2.0,1434332282 +262,109848,4.0,1434025386 +262,110591,2.0,1466555396 +262,110748,2.5,1466554983 +262,111486,2.0,1433956476 +262,112277,1.5,1449545530 +262,112515,4.0,1434028903 +262,112552,3.0,1433899042 +262,112556,2.5,1433899712 +262,112655,2.5,1433901200 +262,112689,2.5,1433902817 +262,113252,3.0,1466554981 +262,113565,3.0,1433901160 +262,113640,2.5,1433901830 +262,113780,3.0,1434024546 +262,114044,2.5,1433938594 +262,114766,2.0,1466555176 +262,115569,3.0,1434024301 +262,115881,1.0,1433902663 +262,116503,1.5,1433902447 +262,116797,2.5,1466554620 +262,117121,3.0,1466555350 +262,117434,1.5,1466555369 +262,118260,2.5,1433938584 +262,118334,2.0,1433901193 +262,118880,4.0,1466554354 +262,121113,1.0,1433901472 +262,121231,5.0,1434025406 +262,130448,0.5,1433900495 +262,131451,1.0,1466555002 +262,132146,3.0,1449545549 +262,133824,2.0,1433900503 +262,134130,3.0,1449619586 +262,134853,2.5,1453401256 +262,136602,2.0,1466556437 +262,137337,3.0,1453401252 +262,140523,2.5,1466554084 +262,141956,1.0,1466556517 +262,151639,2.5,1466555266 +262,152173,3.0,1466556504 +263,21,3.5,1117843298 +263,62,3.5,1117842427 +263,110,3.5,1117843310 +263,168,3.0,1117844263 +263,296,3.0,1117843220 +263,318,4.0,1117842318 +263,350,3.0,1117841935 +263,356,4.0,1117843241 +263,368,3.0,1117841982 +263,442,3.0,1117841950 +263,509,3.5,1117841872 +263,517,3.5,1117844232 +263,541,3.5,1117843228 +263,586,4.0,1117843224 +263,590,4.0,1117842357 +263,593,4.0,1117842379 +263,597,3.5,1117843252 +263,674,2.0,1117844192 +263,762,3.0,1117844218 +263,802,3.0,1117844202 +263,908,3.0,1117842422 +263,912,3.0,1117843156 +263,919,3.0,1117841916 +263,920,3.5,1117842472 +263,949,3.0,1117846575 +263,969,4.0,1117842490 +263,1037,4.0,1117842657 +263,1104,3.0,1117842629 +263,1127,4.0,1117843180 +263,1204,3.5,1117842412 +263,1222,3.0,1117843194 +263,1234,3.5,1117844158 +263,1246,3.0,1117842055 +263,1267,3.5,1117842604 +263,1270,3.5,1117842452 +263,1275,4.0,1117844169 +263,1304,4.5,1117842044 +263,1305,3.0,1117846583 +263,1307,3.5,1117841906 +263,1333,4.0,1117844098 +263,1370,3.5,1117844117 +263,1374,2.5,1117842084 +263,1408,4.5,1117842310 +263,1527,3.0,1117841855 +263,1580,4.0,1117843172 +263,1584,3.5,1117841943 +263,1610,4.5,1117841969 +263,1617,3.5,1117843147 +263,1732,2.0,1117844107 +263,1784,4.0,1117842336 +263,1923,2.5,1117841893 +263,1961,3.0,1117841881 +263,1962,3.5,1117842551 +263,2006,3.0,1117842349 +263,2019,3.0,1117843814 +263,2521,2.5,1117846457 +263,2529,2.0,1117842344 +263,2617,3.0,1117843755 +263,2716,3.5,1117843116 +263,2803,4.0,1117842504 +263,2804,3.5,1117842390 +263,2808,3.0,1117843727 +263,2826,4.0,1117843715 +263,2916,3.0,1117843087 +263,2947,3.5,1117843731 +263,2959,2.5,1117843052 +263,2987,2.5,1117842006 +263,3098,3.0,1117843691 +263,3207,3.0,1117844657 +263,3308,3.0,1117844668 +263,3430,3.5,1117844646 +263,3468,3.5,1117843643 +263,3503,1.0,1117842805 +263,3686,2.0,1117844621 +263,3697,3.5,1117843630 +263,3717,3.0,1117842536 +263,3734,2.5,1117843024 +263,3753,3.5,1117843596 +263,3873,4.0,1117844594 +263,4019,3.5,1117843548 +263,4025,4.0,1117843552 +263,4085,3.5,1117843564 +263,4220,3.5,1117844538 +263,4223,3.0,1117842519 +263,4317,3.5,1117844527 +263,4406,3.0,1117842764 +263,4535,3.5,1117842754 +263,4951,2.0,1117844494 +263,4963,3.5,1117843530 +263,4972,3.0,1117843483 +263,4995,3.0,1117843498 +263,5266,3.5,1117843509 +263,5313,3.0,1117842720 +263,5382,4.0,1117842969 +263,5464,3.5,1117843450 +263,5611,2.0,1117842989 +263,5620,3.0,1117842714 +263,5995,3.0,1117843442 +263,6428,3.5,1117842933 +263,6450,3.5,1117843408 +263,6539,4.0,1117842363 +263,6565,4.0,1117843418 +263,6662,4.0,1117844395 +263,6870,3.5,1117843366 +263,6874,1.5,1117843344 +263,6989,3.0,1117846772 +263,7143,3.5,1117843378 +263,7376,3.0,1117846745 +263,8337,3.5,1117846697 +263,8636,3.5,1117842463 +263,8784,1.0,1117844344 +263,8798,3.0,1117844323 +263,26394,3.0,1117846669 +263,33646,3.0,1118182718 +264,39,5.0,995664962 +264,342,3.0,995665043 +264,356,4.0,995664904 +264,357,5.0,995665057 +264,377,3.0,995664978 +264,440,5.0,995665009 +264,499,3.0,995664664 +264,527,5.0,995664707 +264,911,4.0,995664851 +264,914,5.0,995664826 +264,920,4.0,995664866 +264,1088,4.0,995665075 +264,1097,5.0,995664664 +264,1191,3.0,995664688 +264,1197,4.0,995664851 +264,1244,5.0,995664852 +264,1296,2.0,995664905 +264,1307,5.0,995664801 +264,1393,5.0,995665027 +264,1569,5.0,995665075 +264,1674,5.0,995664905 +264,1721,5.0,995664826 +264,2080,5.0,995664882 +264,2081,5.0,995664905 +264,2125,5.0,995665027 +264,2145,3.0,995665091 +264,2248,5.0,995664866 +264,2406,5.0,995664995 +264,2671,3.0,995664978 +264,3536,2.0,995664924 +264,4054,4.0,995664947 +264,4280,4.0,995664947 +264,4593,2.0,995664707 +265,21,4.0,960060664 +265,25,4.0,960056648 +265,36,4.0,960056698 +265,41,4.0,960056356 +265,50,5.0,960056648 +265,58,3.0,960061048 +265,111,4.0,960056180 +265,154,4.0,960060804 +265,281,5.0,960060848 +265,370,4.0,960055626 +265,373,5.0,960059696 +265,457,3.0,960060412 +265,527,4.0,960056581 +265,608,5.0,960056325 +265,650,2.0,960056774 +265,750,5.0,960055877 +265,858,4.0,960055822 +265,892,4.0,960056750 +265,898,5.0,960056356 +265,899,5.0,960056041 +265,900,5.0,960060601 +265,904,4.0,960056005 +265,913,5.0,960056005 +265,918,3.0,960060236 +265,919,5.0,960059500 +265,920,5.0,960055528 +265,921,4.0,960056990 +265,922,5.0,960055822 +265,923,5.0,960055877 +265,936,5.0,960060498 +265,942,4.0,960056420 +265,952,4.0,960060643 +265,953,3.0,960059929 +265,969,5.0,960059639 +265,1079,5.0,960059911 +265,1084,5.0,960056356 +265,1094,3.0,960056581 +265,1095,4.0,960060979 +265,1096,5.0,960057145 +265,1104,5.0,960056098 +265,1124,4.0,960060884 +265,1131,2.0,960056214 +265,1132,2.0,960056858 +265,1136,4.0,960059473 +265,1150,2.0,960056956 +265,1171,2.0,960061070 +265,1179,4.0,960056553 +265,1186,4.0,960056928 +265,1189,3.0,960056858 +265,1193,4.0,960056420 +265,1198,4.0,960056928 +265,1204,4.0,960056098 +265,1207,4.0,960055822 +265,1208,4.0,960060687 +265,1212,5.0,960055822 +265,1217,5.0,960056278 +265,1222,3.0,960060458 +265,1224,4.0,960056278 +265,1225,4.0,960056462 +265,1230,4.0,960059119 +265,1231,4.0,960056928 +265,1233,5.0,960056214 +265,1235,4.0,960059833 +265,1237,5.0,960056005 +265,1238,4.0,960060192 +265,1242,4.0,960057026 +265,1243,4.0,960060498 +265,1244,3.0,960059446 +265,1247,5.0,960056180 +265,1250,4.0,960059781 +265,1251,4.0,960056181 +265,1252,4.0,960055912 +265,1254,5.0,960056098 +265,1263,4.0,960060099 +265,1265,4.0,960056675 +265,1266,5.0,960060979 +265,1270,3.0,960056990 +265,1276,4.0,960056325 +265,1280,2.0,960056600 +265,1281,4.0,960059751 +265,1283,5.0,960059402 +265,1293,4.0,960056462 +265,1296,4.0,960055626 +265,1299,4.0,960059578 +265,1303,4.0,960059675 +265,1304,4.0,960056462 +265,1307,4.0,960057166 +265,1617,4.0,960055558 +265,1633,3.0,960060687 +265,1648,3.0,960060764 +265,1673,3.0,960060787 +265,1674,4.0,960057026 +265,1682,3.0,960060164 +265,1684,3.0,960060269 +265,1834,4.0,960060458 +265,1940,4.0,960060192 +265,1944,5.0,960056278 +265,1945,5.0,960059219 +265,1948,5.0,960060951 +265,1949,4.0,960060393 +265,1950,4.0,960059613 +265,1953,4.0,960056462 +265,1954,3.0,960060393 +265,1955,4.0,960060545 +265,1956,4.0,960057103 +265,1957,4.0,960057026 +265,1960,4.0,960057067 +265,1964,4.0,960059446 +265,1997,3.0,960060884 +265,2019,4.0,960059219 +265,2020,4.0,960059985 +265,2025,2.0,960060146 +265,2028,4.0,960055626 +265,2068,4.0,960056990 +265,2076,3.0,960057194 +265,2130,4.0,960056325 +265,2132,5.0,960056420 +265,2186,5.0,960056005 +265,2194,4.0,960061048 +265,2300,5.0,960055940 +265,2303,4.0,960059639 +265,2349,3.0,960057145 +265,2352,4.0,960057103 +265,2396,5.0,960056420 +265,2583,4.0,960060951 +265,2692,2.0,960056722 +265,2716,4.0,960060073 +265,2731,4.0,960060036 +265,2732,5.0,960056181 +265,2759,3.0,960060830 +265,2764,3.0,960060979 +265,2791,4.0,960056928 +265,2847,4.0,960056098 +265,2858,5.0,960056533 +265,2917,5.0,960056928 +265,2919,3.0,960057067 +265,2929,5.0,960060830 +265,2948,2.0,960059781 +265,2951,5.0,960059911 +265,2969,4.0,960060787 +265,2972,1.0,960057026 +265,2988,4.0,960061070 +265,3035,4.0,960059403 +265,3068,4.0,960057145 +265,3072,4.0,960055558 +265,3083,3.0,960056131 +265,3089,4.0,960059473 +265,3095,4.0,960056005 +265,3098,3.0,960060343 +265,3101,4.0,960060515 +265,3125,2.0,960061153 +265,3134,5.0,960059186 +265,3148,4.0,960056698 +265,3163,2.0,960055940 +265,3167,4.0,960060545 +265,3171,4.0,960059781 +265,3194,3.0,960059403 +265,3200,5.0,960060073 +265,3201,5.0,960059964 +265,3255,3.0,960061153 +265,3260,2.0,960060146 +265,3307,3.0,960055847 +265,3361,4.0,960056956 +265,3408,4.0,960057273 +265,3418,5.0,960060458 +265,3421,4.0,960061107 +265,3435,5.0,960055727 +265,3462,5.0,960055912 +265,3467,4.0,960059446 +265,3468,4.0,960059219 +265,3481,4.0,960057250 +265,3537,4.0,960057331 +265,3545,5.0,960056278 +265,3629,4.0,960055727 +265,3653,4.0,960059307 +265,3654,4.0,960061048 +265,3671,5.0,960060002 +265,3685,5.0,960057145 +265,3730,4.0,960055727 +265,3735,4.0,960059186 +265,3738,3.0,960060343 +265,3742,4.0,960056041 +265,5060,4.0,960056131 +266,14,4.0,840452329 +266,34,3.0,840452291 +266,36,5.0,840703429 +266,39,5.0,840703309 +266,50,4.0,840703309 +266,62,4.0,840452291 +266,105,3.0,840452329 +266,150,5.0,840452108 +266,185,3.0,840703238 +266,225,3.0,840703288 +266,282,4.0,840452329 +266,292,3.0,840703189 +266,296,3.0,840452108 +266,300,5.0,840703263 +266,306,3.0,840703428 +266,307,3.0,840703428 +266,308,3.0,840703428 +266,318,4.0,840452329 +266,339,3.0,840703213 +266,349,3.0,840452155 +266,356,4.0,840452291 +266,364,5.0,840703263 +266,367,4.0,840703289 +266,377,4.0,840703289 +266,380,3.0,840452109 +266,434,2.0,840703189 +266,454,3.0,840703263 +266,457,5.0,840703189 +266,480,4.0,840703238 +266,500,3.0,840703309 +266,527,5.0,840452291 +266,586,3.0,840703344 +266,587,4.0,840703344 +266,588,3.0,840452154 +266,590,5.0,840452108 +266,592,3.0,840452108 +266,593,4.0,840703153 +266,595,3.0,840703153 +266,838,5.0,840703429 +267,47,4.5,1175984548 +267,50,4.0,1175984023 +267,260,4.5,1175984069 +267,296,5.0,1175984399 +267,318,5.0,1175984030 +267,441,5.0,1175983608 +267,593,4.0,1175984033 +267,849,2.5,1175982871 +267,1089,4.5,1175984444 +267,1120,4.5,1175983570 +267,1193,4.5,1175984026 +267,1208,4.0,1175984533 +267,1213,4.5,1175984414 +267,1466,3.5,1175983356 +267,2076,2.5,1175982862 +267,2236,4.5,1175983843 +267,2329,5.0,1175983999 +267,2858,5.0,1175983998 +267,2890,3.5,1175983333 +267,2915,3.5,1175982879 +267,2959,5.0,1175984003 +267,3317,4.0,1175982909 +267,3361,4.0,1175982888 +267,3404,2.0,1175983888 +267,3484,3.5,1175983818 +267,3755,3.5,1175983578 +267,4226,4.5,1175984017 +267,4878,4.0,1175984430 +267,5283,3.5,1179208425 +267,6620,3.5,1175983766 +267,7361,4.5,1175983991 +267,8784,5.0,1175982932 +267,30749,4.0,1175984410 +267,37384,4.0,1179208426 +267,46578,4.5,1175984433 +267,46976,4.0,1175984740 +267,47610,4.5,1175984755 +267,48385,3.0,1175984763 +267,48516,4.5,1175983955 +267,49272,4.0,1175984748 +267,50794,4.0,1179208359 +268,1,5.0,1314894068 +268,2,3.5,1314894727 +268,6,2.5,1314894615 +268,10,3.0,1314894283 +268,11,3.5,1314894958 +268,17,3.0,1314894685 +268,19,2.0,1314890790 +268,21,2.5,1314894611 +268,32,3.0,1314888953 +268,34,4.5,1314894252 +268,39,3.5,1314894403 +268,47,4.0,1314894139 +268,48,2.5,1314910317 +268,50,3.5,1314894111 +268,104,3.5,1314894977 +268,110,4.5,1314894053 +268,111,3.0,1314894641 +268,150,4.5,1314894059 +268,153,2.0,1314894183 +268,163,3.0,1314896717 +268,165,3.5,1314894169 +268,173,2.5,1314895511 +268,193,2.0,1314888553 +268,223,3.0,1314894682 +268,231,3.5,1314894209 +268,235,4.5,1314895152 +268,253,3.0,1314894369 +268,260,5.0,1314894051 +268,288,3.0,1314894644 +268,293,4.0,1314894647 +268,296,5.0,1314894033 +268,317,3.5,1314895149 +268,318,3.5,1314894046 +268,339,3.5,1314894618 +268,344,3.0,1314890787 +268,349,2.5,1314894243 +268,353,3.0,1314895157 +268,356,5.0,1314894036 +268,357,2.0,1314894355 +268,364,5.0,1314894166 +268,367,2.0,1314894213 +268,368,3.5,1314895059 +268,370,3.0,1314896708 +268,377,4.5,1314894132 +268,380,4.0,1314894094 +268,410,3.5,1314891057 +268,420,1.5,1314895471 +268,434,3.0,1314894397 +268,442,3.0,1314894961 +268,454,3.5,1314894401 +268,457,4.0,1314894056 +268,466,5.0,1314896742 +268,474,2.5,1314894955 +268,480,4.5,1314894043 +268,500,3.0,1314894198 +268,508,3.5,1314894915 +268,527,5.0,1314894089 +268,539,5.0,1314894344 +268,541,2.0,1314894362 +268,551,4.5,1314894889 +268,553,3.0,1314895467 +268,555,1.5,1314896714 +268,586,5.0,1314894395 +268,587,3.0,1314894324 +268,588,4.5,1314894108 +268,589,5.0,1314894063 +268,592,4.0,1314894071 +268,593,5.0,1314894039 +268,594,5.0,1314895014 +268,595,4.5,1314894172 +268,597,2.5,1314894240 +268,608,3.5,1314894119 +268,648,3.5,1314894143 +268,733,3.0,1314894249 +268,736,3.0,1314894188 +268,750,4.5,1314894755 +268,780,3.0,1314894074 +268,784,2.0,1314895488 +268,786,3.0,1314895043 +268,788,2.0,1314894880 +268,832,3.0,1314895507 +268,858,4.5,1314894164 +268,904,4.0,1314895302 +268,905,5.0,1314911211 +268,906,4.0,1314911361 +268,908,3.0,1314895349 +268,912,5.0,1314894671 +268,919,5.0,1314894696 +268,923,5.0,1314895085 +268,924,4.5,1314889053 +268,936,3.5,1314911369 +268,942,3.5,1314911238 +268,953,5.0,1314911389 +268,954,5.0,1314911286 +268,955,1.5,1314911417 +268,969,4.5,1314911267 +268,1022,4.5,1314888496 +268,1029,4.0,1314888500 +268,1036,5.0,1314894352 +268,1073,4.0,1314894304 +268,1079,5.0,1314894918 +268,1080,2.5,1314894864 +268,1089,3.0,1314894604 +268,1090,3.5,1314895481 +268,1093,4.0,1314888556 +268,1097,3.5,1314894245 +268,1099,4.0,1314911703 +268,1101,4.0,1314894808 +268,1127,5.0,1314890730 +268,1136,4.5,1314894297 +268,1148,4.0,1314910276 +268,1193,3.5,1314894327 +268,1196,5.0,1314894116 +268,1197,5.0,1314894266 +268,1198,5.0,1314894124 +268,1200,4.5,1314894432 +268,1203,5.0,1314888946 +268,1206,3.0,1314894691 +268,1208,4.0,1314894731 +268,1210,4.0,1314894077 +268,1213,3.5,1314894624 +268,1214,5.0,1314894347 +268,1219,4.0,1314894994 +268,1220,3.0,1314894882 +268,1222,4.5,1314894838 +268,1225,4.5,1314894877 +268,1230,5.0,1314895345 +268,1234,4.5,1314896739 +268,1235,4.5,1314888564 +268,1240,4.5,1314894258 +268,1242,4.0,1314911365 +268,1246,4.0,1314894909 +268,1247,4.0,1314895297 +268,1252,3.5,1314895680 +268,1258,5.0,1314894746 +268,1259,4.5,1314894845 +268,1262,4.5,1314911202 +268,1265,4.5,1314894292 +268,1266,4.5,1314911320 +268,1270,5.0,1314894135 +268,1278,5.0,1314895675 +268,1288,4.5,1314895464 +268,1291,4.5,1314894339 +268,1304,5.0,1314895342 +268,1307,5.0,1314894758 +268,1367,2.5,1314888922 +268,1370,3.0,1314895501 +268,1374,4.0,1314895330 +268,1380,4.0,1314895169 +268,1387,5.0,1314894783 +268,1391,1.5,1314895083 +268,1393,4.5,1314894702 +268,1394,3.0,1314895650 +268,1407,5.0,1314895088 +268,1485,4.0,1314895052 +268,1500,3.0,1314896734 +268,1513,3.0,1314888527 +268,1517,3.5,1314894694 +268,1527,3.0,1314894423 +268,1544,3.0,1314896754 +268,1552,3.5,1314910292 +268,1573,4.5,1314895018 +268,1580,4.0,1314894199 +268,1608,3.0,1314896751 +268,1610,3.5,1314894795 +268,1617,3.0,1314894372 +268,1625,3.5,1314895658 +268,1639,3.5,1314896721 +268,1641,2.5,1314895327 +268,1663,1.5,1314888531 +268,1676,4.0,1314895646 +268,1682,4.0,1314894707 +268,1704,4.0,1314894409 +268,1721,2.5,1314894202 +268,1732,4.5,1314894990 +268,1784,4.5,1314894760 +268,1805,3.5,1314888566 +268,1917,2.0,1314894705 +268,1923,4.0,1314894608 +268,1934,3.5,1314911604 +268,1954,2.5,1314910302 +268,1961,3.5,1314894440 +268,1968,5.0,1314894780 +268,1994,4.0,1314888503 +268,2000,4.5,1314895120 +268,2011,3.0,1314894948 +268,2012,3.0,1314894833 +268,2028,5.0,1314894180 +268,2054,3.0,1314895074 +268,2072,1.5,1314888882 +268,2080,3.5,1314911800 +268,2081,2.5,1314910284 +268,2085,4.0,1314888925 +268,2115,4.0,1314894841 +268,2124,3.0,1314891170 +268,2140,2.0,1314888560 +268,2144,2.5,1314888535 +268,2174,3.5,1314894827 +268,2194,5.0,1314895496 +268,2248,2.0,1314888506 +268,2268,3.0,1314895653 +268,2291,4.5,1314894830 +268,2302,3.0,1314896705 +268,2313,3.5,1314911350 +268,2321,4.0,1314910308 +268,2329,2.5,1314894816 +268,2352,3.0,1314911815 +268,2353,2.5,1314895669 +268,2355,3.5,1314894811 +268,2396,4.0,1314894634 +268,2398,4.5,1314911770 +268,2406,3.5,1314896747 +268,2502,2.5,1314894939 +268,2542,2.5,1314910300 +268,2571,4.5,1314894105 +268,2572,3.5,1314888908 +268,2599,3.0,1314910285 +268,2617,3.5,1314895125 +268,2628,2.0,1314894275 +268,2640,4.0,1314895291 +268,2648,4.0,1314911381 +268,2654,4.0,1314911781 +268,2683,4.0,1314894443 +268,2692,3.5,1314895295 +268,2699,3.0,1314896710 +268,2700,3.5,1314895069 +268,2706,4.5,1314894679 +268,2710,3.0,1314894872 +268,2716,4.5,1314894358 +268,2723,3.0,1314888539 +268,2762,3.5,1314894174 +268,2791,5.0,1314895010 +268,2797,4.5,1314894885 +268,2858,3.0,1314894121 +268,2916,3.5,1314894868 +268,2918,5.0,1314894752 +268,2947,4.0,1314911713 +268,2959,4.5,1314894192 +268,2968,3.5,1314888515 +268,2987,4.5,1314894740 +268,2997,2.5,1314894412 +268,3052,3.0,1314895332 +268,3082,3.0,1314888544 +268,3114,4.0,1314894724 +268,3147,4.5,1314894951 +268,3256,3.0,1314888511 +268,3363,4.0,1314911610 +268,3408,3.5,1314895324 +268,3420,2.0,1314888898 +268,3471,4.5,1314911723 +268,3481,2.5,1314895492 +268,3504,4.5,1314911257 +268,3507,4.0,1314911397 +268,3578,5.0,1314894287 +268,3623,3.0,1314895144 +268,3707,1.0,1314890079 +268,3751,3.0,1314895289 +268,3793,3.5,1314894437 +268,3897,5.0,1314895007 +268,3928,4.0,1314890336 +268,3948,4.0,1314895504 +268,3977,4.0,1314895164 +268,3986,2.5,1314889882 +268,3991,1.0,1314888931 +268,3996,4.0,1314894637 +268,4011,4.0,1314895643 +268,4022,3.5,1314895063 +268,4027,2.0,1314895056 +268,4034,3.5,1314895140 +268,4184,3.5,1314911575 +268,4226,5.0,1314894415 +268,4306,4.5,1314894322 +268,4370,2.5,1314890193 +268,4767,3.0,1314890351 +268,4878,4.5,1314895475 +268,4886,4.5,1314894768 +268,4896,2.0,1314895633 +268,4963,4.0,1314894804 +268,4973,3.5,1314894849 +268,4993,5.0,1314894255 +268,4995,4.0,1314894893 +268,5049,3.0,1314889729 +268,5349,4.0,1314894799 +268,5377,2.0,1314890536 +268,5378,3.0,1314895478 +268,5418,4.5,1314895097 +268,5445,4.0,1314894710 +268,5712,4.0,1314911806 +268,5902,4.0,1314891050 +268,5945,2.0,1314890532 +268,5952,4.5,1314894301 +268,5989,3.5,1314895636 +268,6333,5.0,1314910294 +268,6365,3.5,1314895484 +268,6377,4.5,1314894819 +268,6383,2.0,1314889027 +268,6502,4.0,1314889445 +268,6539,5.0,1314894737 +268,6711,2.0,1314910314 +268,6874,4.0,1314895000 +268,6953,3.5,1314889066 +268,6979,2.5,1314911778 +268,7073,4.5,1314911414 +268,7121,3.5,1314891042 +268,7147,4.5,1314910707 +268,7153,4.5,1314894406 +268,7293,3.0,1314889863 +268,7361,4.5,1314895003 +268,7438,5.0,1314895350 +268,7444,3.5,1314888981 +268,7706,1.5,1314911324 +268,8167,3.5,1314911403 +268,8360,4.0,1314910540 +268,8368,3.0,1314910631 +268,8492,3.0,1314911340 +268,8636,4.5,1314910305 +268,8810,1.5,1314890198 +268,8961,4.5,1314895137 +268,25750,4.5,1314911099 +268,27373,3.0,1314889871 +268,31156,3.0,1314890343 +268,31193,5.0,1314911563 +268,33493,4.0,1314910526 +268,33794,4.0,1314895638 +268,35836,5.0,1314889698 +268,43936,3.0,1314889006 +268,44191,3.5,1314910641 +268,45722,2.0,1314910610 +268,46578,3.5,1314910597 +268,47518,3.0,1314890765 +268,48516,5.0,1314910593 +268,49272,5.0,1314910688 +268,51662,4.5,1314889575 +268,52435,5.0,1314911310 +268,53000,3.5,1314889451 +268,53953,3.5,1314888991 +268,54190,3.5,1314890976 +268,54286,4.5,1314910679 +268,54997,4.0,1314889688 +268,55282,2.0,1314889570 +268,55820,5.0,1314910663 +268,56367,4.5,1314910533 +268,56949,1.5,1314889281 +268,58559,5.0,1314911074 +268,58803,3.0,1314889062 +268,59315,4.5,1314911448 +268,60487,4.5,1314911392 +268,65135,3.5,1314911295 +268,68135,3.0,1314889008 +268,68157,4.5,1314910546 +268,68358,4.5,1314910669 +268,68954,2.0,1314910600 +268,69757,4.5,1314888886 +268,72378,2.0,1314889058 +268,72998,4.5,1314910590 +268,77846,3.5,1314888951 +268,78469,3.5,1314890189 +268,78499,4.5,1314910638 +268,79132,4.5,1314910627 +268,80463,4.5,1314910685 +268,80831,4.0,1314911615 +268,81562,5.0,1314888957 +268,81845,4.0,1314910713 +268,81847,4.0,1314911569 +268,82459,5.0,1314910459 +268,83374,1.5,1314910992 +268,83613,2.0,1314910750 +268,84152,3.5,1314910798 +268,84392,3.5,1314910792 +268,84601,3.0,1314910982 +268,84615,3.0,1314910997 +268,84772,3.0,1314910836 +268,84944,4.0,1314910796 +268,84954,3.5,1314891180 +268,85022,3.0,1314911006 +268,85131,1.5,1314911002 +268,85316,4.0,1314911442 +268,85367,2.0,1314910854 +268,85397,1.0,1314911018 +268,85414,5.0,1314910481 +268,85510,0.5,1314910976 +268,85788,4.0,1314911010 +268,85796,1.5,1314910850 +268,85881,3.5,1314910832 +268,86014,3.0,1314910847 +268,86293,2.5,1314910838 +268,86835,1.5,1314911014 +268,86852,3.0,1314910842 +268,87192,3.0,1314910747 +268,87232,4.5,1314911445 +268,87306,4.5,1314910453 +268,87430,2.0,1314910767 +268,87520,2.5,1314910772 +268,87529,0.5,1314911027 +268,87869,3.5,1314910742 +268,88125,5.0,1314910435 +268,88140,3.5,1314888760 +268,88267,4.5,1314910758 +268,88405,3.5,1314910762 +268,89300,3.5,1314910607 +269,1057,3.0,883223516 +269,1183,4.0,883223543 +269,1422,3.0,883223796 +269,1464,5.0,883223660 +269,1483,2.0,883223566 +269,1584,1.0,883223474 +269,1597,4.0,883223712 +269,1614,3.0,883223712 +269,1617,5.0,883223594 +269,1619,4.0,883223474 +269,1625,4.0,883223594 +269,1639,4.0,883223594 +269,1641,5.0,883223566 +269,1645,3.0,883223618 +269,1653,3.0,883223474 +269,1667,3.0,883223660 +269,1673,4.0,883223594 +269,1676,1.0,883223686 +269,1683,4.0,883223543 +269,1687,3.0,883223712 +269,1690,3.0,883223730 +269,1711,2.0,883223796 +269,1721,4.0,883223516 +269,1722,4.0,883223594 +269,1729,4.0,883223566 +270,47,4.0,1469278482 +270,50,4.0,1469256693 +270,223,4.0,1469278482 +270,260,4.0,1469282203 +270,296,4.5,1469278482 +270,1196,4.5,1469282207 +270,1199,4.0,1469278482 +270,1208,4.0,1469278481 +270,1210,4.0,1469282204 +270,1682,4.5,1469278482 +270,1704,4.0,1469278482 +270,1732,4.5,1469278482 +270,2291,4.0,1469278482 +270,2502,4.0,1469256721 +270,2571,5.0,1469278298 +270,2712,4.0,1469278482 +270,2959,5.0,1469256684 +270,2997,4.0,1469278481 +270,3535,4.0,1469278482 +270,3793,4.0,1469305978 +270,3897,3.5,1469306009 +270,3949,5.0,1469278342 +270,4011,4.5,1469278482 +270,4226,5.0,1469278482 +270,4308,3.0,1469278482 +270,4344,2.5,1469306270 +270,4734,4.0,1469278482 +270,4878,4.0,1469256718 +270,4887,3.0,1469306892 +270,4973,4.0,1469278327 +270,4979,4.0,1469278482 +270,4993,5.0,1469278482 +270,4995,4.5,1469305964 +270,5283,2.5,1469278482 +270,5378,3.0,1469305997 +270,5445,3.5,1469305980 +270,5507,3.5,1469306365 +270,5903,4.0,1469306181 +270,5952,5.0,1469278481 +270,5991,4.0,1469306120 +270,6283,4.5,1469306790 +270,6373,2.5,1469306094 +270,6377,4.0,1469278401 +270,6537,2.5,1469306137 +270,6773,4.0,1469306646 +270,6863,3.5,1469306071 +270,6874,5.0,1469278335 +270,7153,5.0,1469305954 +270,7254,2.5,1469306080 +270,7346,1.5,1469306868 +270,7361,4.5,1469305960 +270,7371,4.0,1469306704 +270,7373,3.5,1469306252 +270,7438,4.0,1469278359 +270,7445,4.0,1469306291 +270,8641,4.0,1469278482 +270,8807,3.5,1469306513 +270,8874,5.0,1469306032 +270,27660,4.0,1469306672 +270,27904,4.0,1469306633 +270,31696,3.5,1469306300 +270,32587,4.5,1469278365 +270,33493,3.5,1469306026 +270,33794,4.0,1469305968 +270,34405,5.0,1469306118 +270,36535,3.5,1469278482 +270,44191,4.5,1469278331 +270,45720,2.5,1469306353 +270,45728,4.5,1469278482 +270,46578,4.0,1469278482 +270,47200,3.5,1469306879 +270,47997,3.5,1469306887 +270,48385,3.0,1469306108 +270,48501,4.5,1469278481 +270,48516,4.0,1469278482 +270,48774,4.5,1469306060 +270,48780,5.0,1469278388 +270,51255,5.0,1469306101 +270,51662,4.5,1469306043 +270,52281,4.5,1469306499 +270,52328,3.5,1469306720 +270,52973,3.5,1469278482 +270,52975,4.0,1469278482 +270,53519,4.5,1469306703 +270,53996,2.5,1469306211 +270,54503,3.5,1469278482 +270,54995,4.5,1469306764 +270,55118,4.0,1469306600 +270,56367,4.0,1469306039 +270,56757,4.5,1469306438 +270,57368,3.5,1469306486 +270,57640,3.5,1469306744 +270,57669,4.0,1469306240 +270,58559,4.5,1469278297 +270,59315,4.0,1469278384 +270,59387,4.5,1469278482 +270,60069,4.0,1469278482 +270,60074,3.5,1469282281 +270,60684,4.5,1469306187 +270,61132,3.0,1469306453 +270,61323,4.0,1469306324 +270,63876,4.0,1469306728 +270,66509,3.5,1469278482 +270,66934,5.0,1469306559 +270,67734,3.5,1469278482 +270,67997,4.0,1469278482 +270,68157,4.5,1469278308 +270,68237,4.5,1469306234 +270,68319,2.0,1469306470 +270,68358,3.5,1469278482 +270,68659,3.5,1469278482 +270,69122,2.5,1469306084 +270,69526,2.0,1469306772 +270,69757,3.5,1469278482 +270,70286,5.0,1469306052 +270,71535,3.5,1469306160 +270,72011,2.5,1469306435 +270,72998,3.5,1469278482 +270,73266,3.0,1469278482 +270,73881,3.0,1469278481 +270,76093,3.0,1469306154 +270,76251,4.0,1469306219 +270,77561,3.5,1469306226 +270,79132,5.0,1469278290 +270,79695,1.5,1469278482 +270,80241,3.5,1469278482 +270,80549,3.5,1469278482 +270,81132,4.0,1469278482 +270,81229,3.0,1469306780 +270,81591,4.0,1469278482 +270,86332,3.0,1469306354 +270,86833,3.0,1469278482 +270,87232,4.0,1469278482 +270,88129,4.5,1469306373 +270,88140,4.0,1469306447 +270,88163,3.5,1469278482 +270,88405,3.0,1469278482 +270,89343,4.0,1469278481 +270,89745,3.5,1469278481 +270,89804,3.5,1469278482 +270,90405,3.0,1469306909 +270,91500,3.5,1469278482 +270,91529,4.0,1469278413 +270,91542,3.0,1469278409 +270,93510,3.0,1469278482 +270,93512,3.0,1469278482 +270,93840,4.0,1469278482 +270,94466,5.0,1469278482 +270,94677,2.5,1469278482 +270,94864,2.5,1469278482 +270,94959,4.0,1469278482 +270,95088,3.5,1469278482 +270,95167,3.5,1469306801 +270,95307,3.0,1469278482 +270,95510,3.5,1469278482 +270,97752,4.5,1469278482 +270,97913,4.0,1469278482 +270,97938,3.5,1469278482 +270,98809,3.5,1469306280 +270,99007,3.5,1469278482 +270,99114,4.0,1469306058 +270,101285,3.5,1469278482 +270,101864,3.5,1469278482 +270,102123,2.5,1469278481 +270,103228,3.5,1469306914 +270,103253,3.5,1469278482 +270,103341,4.0,1469278482 +270,104243,2.5,1469278482 +270,104841,4.5,1469278482 +270,106002,3.5,1469278482 +270,106487,3.5,1469306380 +270,106489,3.0,1469306523 +270,106918,2.5,1469278482 +270,106920,4.5,1469278482 +270,107406,4.0,1469278482 +270,108548,3.0,1469278482 +270,108932,4.0,1469278482 +270,109187,4.0,1469278482 +270,109374,4.0,1469278482 +270,109487,3.5,1469278320 +270,110102,4.0,1469278482 +270,110730,2.5,1469278481 +270,111113,3.0,1469278482 +270,111360,2.0,1469278482 +270,111362,3.5,1469306386 +270,111443,3.0,1469278482 +270,111759,3.5,1469278482 +270,112175,4.0,1469278482 +270,112183,4.5,1469278482 +270,112552,4.5,1469278482 +270,112852,4.0,1469278482 +270,113345,2.5,1469278481 +270,113741,3.5,1469278481 +270,114670,3.5,1469278481 +270,114707,3.5,1469278481 +270,115122,4.0,1469278482 +270,115149,3.5,1469278482 +270,115617,3.0,1469306314 +270,115680,3.5,1469278481 +270,115713,4.5,1469306326 +270,116823,3.5,1469306794 +270,117871,3.0,1469278482 +270,118696,3.0,1469306927 +270,119141,2.0,1469278481 +270,119145,4.0,1469306627 +270,120466,2.5,1469278481 +270,122882,4.0,1469278481 +270,122886,4.0,1469256835 +270,122892,4.0,1469306620 +270,122900,4.0,1469306989 +270,122904,3.5,1469306639 +270,122920,4.0,1469256942 +270,122924,3.0,1469257690 +270,128360,4.0,1469256935 +270,134130,4.5,1469256734 +270,135133,3.0,1469257043 +270,135532,2.5,1469278255 +270,136864,3.5,1469278247 +270,138036,4.0,1469256992 +270,139620,4.0,1469278481 +270,140174,4.5,1469256806 +270,142488,4.5,1469256805 +270,147006,3.0,1469278481 +270,147010,4.0,1469278482 +270,147426,3.5,1469278481 +270,148168,4.0,1469278481 +270,149354,3.5,1469278251 +270,149572,3.0,1469278481 +270,152077,4.5,1469256986 +271,16,3.5,1107784970 +271,32,4.0,1107785074 +271,50,3.5,1107785309 +271,104,2.0,1107784941 +271,110,4.0,1107785277 +271,260,5.0,1107785257 +271,296,4.5,1107785462 +271,318,3.5,1107785267 +271,337,3.0,1107784947 +271,457,4.0,1107785365 +271,588,3.5,1107785059 +271,589,4.5,1107785209 +271,593,5.0,1107785363 +271,653,2.5,1107784933 +271,1036,4.5,1107785316 +271,1090,5.0,1107785104 +271,1101,2.0,1107784976 +271,1196,4.5,1107785247 +271,1197,5.0,1107785322 +271,1198,4.5,1107785249 +271,1200,4.5,1107785223 +271,1207,4.5,1107785119 +271,1208,4.0,1107784928 +271,1210,4.5,1107785078 +271,1220,2.5,1107784931 +271,1225,3.5,1107784925 +271,1230,2.5,1107784952 +271,1240,5.0,1107785284 +271,1270,4.0,1107785373 +271,1291,3.0,1107785259 +271,1304,3.0,1107784968 +271,1374,3.0,1107785108 +271,1375,2.0,1107785121 +271,1377,2.0,1107785126 +271,1517,4.0,1107784961 +271,1544,2.5,1107785139 +271,1552,2.5,1107785112 +271,1584,2.5,1107785114 +271,1645,2.5,1107785135 +271,1653,4.5,1107785097 +271,1674,3.5,1107785099 +271,1721,4.0,1107785056 +271,1909,2.5,1107785070 +271,1917,1.0,1107784958 +271,1923,3.5,1107785051 +271,2028,4.0,1107785352 +271,2174,4.0,1107784963 +271,2194,4.0,1107785288 +271,2329,4.0,1107785344 +271,2571,5.0,1107785202 +271,2628,2.5,1107785081 +271,2657,4.0,1107785072 +271,2761,4.5,1107785156 +271,2762,4.5,1107785271 +271,2792,4.5,1107785150 +271,2797,3.0,1107784965 +271,2985,3.5,1107785085 +271,3114,4.0,1107785356 +271,3578,5.0,1107785369 +271,3623,3.0,1107785062 +271,3793,4.5,1107784978 +271,4306,4.0,1107784974 +271,4993,4.0,1107785205 +271,5060,2.5,1107785048 +271,5464,4.5,1107785228 +271,5782,4.5,1107785230 +271,5952,4.5,1107785192 +271,6333,4.5,1107785189 +271,7153,5.0,1107785199 +271,8360,4.5,1107785226 +271,8636,5.0,1107785252 +271,8961,4.5,1107785303 +272,1,4.0,1453587590 +272,260,4.0,1453587427 +272,480,3.5,1453587581 +272,592,4.0,1453587590 +272,1198,4.0,1453587430 +272,1291,3.5,1453587425 +272,2115,4.0,1453587725 +272,3793,4.0,1453587646 +272,4232,3.5,1453588341 +272,4367,4.0,1453588084 +272,4993,5.0,1453587484 +272,5218,3.0,1453588567 +272,5349,3.5,1453587657 +272,5504,3.5,1453588363 +272,6333,4.0,1453587595 +272,8636,3.5,1453587659 +272,8972,5.0,1453588033 +272,33794,4.0,1453587488 +272,72641,3.5,1453587626 +272,78637,3.5,1453588161 +272,81847,2.0,1453588596 +272,87232,4.0,1453587592 +272,88125,4.0,1453588432 +272,89745,4.0,1453587605 +272,94777,1.5,1453588079 +272,95510,5.0,1453587730 +272,96079,4.5,1453587601 +272,98243,4.0,1453588466 +272,99112,3.0,1453588317 +272,106489,5.0,1453587667 +272,110102,3.0,1453587500 +272,110553,4.0,1453588128 +272,111362,3.5,1453587636 +272,112852,4.0,1453587461 +272,115617,4.0,1453587598 +272,119145,0.5,1453587712 +272,122892,3.5,1453587581 +272,122900,5.0,1453588217 +272,134853,3.5,1453588608 +273,1,4.5,1466945564 +273,150,3.5,1466946012 +273,260,5.0,1466944219 +273,296,4.5,1466945278 +273,593,4.0,1466945260 +273,778,4.0,1466945135 +273,919,5.0,1466945800 +273,1136,4.5,1466945795 +273,1196,5.0,1466945401 +273,1197,4.5,1466945739 +273,1210,5.0,1466945449 +273,1240,3.5,1466945585 +273,1270,4.0,1466945568 +273,1291,4.5,1466945465 +273,1907,4.5,1466945943 +273,2571,5.0,1466945253 +273,2596,5.0,1466945158 +273,2657,5.0,1466944127 +273,2762,4.0,1466945778 +273,2918,4.0,1466945591 +273,2959,5.0,1466945043 +273,3114,4.5,1466945635 +273,3793,5.0,1466946283 +273,4246,3.0,1466946018 +273,4306,4.5,1466945557 +273,4878,5.0,1466945200 +273,4886,5.0,1466945825 +273,4896,4.5,1466946192 +273,4993,5.0,1466945414 +273,5349,4.0,1466946226 +273,5378,4.0,1466946309 +273,5816,4.5,1466946328 +273,5952,5.0,1466945451 +273,6333,4.5,1466946325 +273,6365,4.5,1466946298 +273,6377,4.0,1466945578 +273,6539,4.5,1466945638 +273,6874,4.0,1466945272 +273,6934,4.5,1466946353 +273,7153,5.0,1466945514 +273,8360,4.0,1466946337 +273,8368,5.0,1466945895 +273,8874,5.0,1466945832 +273,8961,4.5,1466945632 +273,31696,4.0,1466945997 +273,33493,4.0,1466946347 +273,33794,4.0,1466945815 +273,39183,4.0,1466944177 +273,40815,4.5,1466946217 +273,44191,5.0,1466945265 +273,51255,4.5,1466945743 +273,54259,5.0,1466944394 +273,58559,5.0,1466945256 +273,59315,4.0,1466946117 +273,61024,3.5,1466944347 +273,68157,4.0,1466945879 +273,68358,4.0,1466945835 +273,69844,4.5,1466945955 +273,72998,3.0,1466946101 +273,73017,4.0,1466946186 +273,74458,3.5,1466945436 +273,78499,4.5,1466945865 +273,79132,4.5,1466945458 +273,80463,4.0,1466946208 +273,81834,4.5,1466945936 +273,88125,4.5,1466946198 +273,89745,3.5,1466945274 +273,91500,5.0,1466946157 +273,91529,4.0,1466946111 +273,93510,4.0,1466944248 +273,96821,4.5,1466944067 +273,99149,5.0,1466944089 +273,102123,4.5,1466944296 +273,103228,4.0,1466944108 +273,104841,1.0,1466946176 +273,105593,4.0,1466945121 +273,107083,4.0,1466945061 +273,107516,3.5,1466945170 +273,109374,4.5,1466946145 +273,109487,3.5,1466945404 +273,110102,4.5,1466945287 +273,112852,4.0,1466945267 +273,114028,5.0,1466944538 +273,115617,4.0,1466945975 +273,115713,4.0,1466946122 +273,116660,4.0,1466944163 +273,119141,3.5,1466944327 +273,119145,4.5,1466945283 +273,122882,5.0,1466946086 +273,122886,5.0,1466945263 +273,122892,3.0,1466945289 +273,122904,5.0,1466944501 +274,22,2.5,1074104221 +274,198,3.5,1074104320 +274,293,4.0,1074104702 +274,296,4.0,1074104982 +274,319,4.0,1074104970 +274,342,3.5,1074104164 +274,345,2.5,1074104302 +274,471,5.0,1074104142 +274,543,2.5,1074104236 +274,555,3.5,1074104991 +274,608,5.0,1074105023 +274,778,4.0,1074105201 +274,866,3.5,1074105139 +274,1089,4.0,1074105193 +274,1199,4.0,1074104212 +274,1215,4.0,1074105147 +274,1241,4.0,1074105555 +274,1242,3.0,1074104223 +274,1449,4.0,1074105144 +274,1500,3.0,1074104718 +274,1653,4.0,1074104999 +274,1676,3.0,1074104182 +274,1682,3.0,1074104722 +274,1732,5.0,1074105318 +274,2012,3.5,1074104140 +274,2054,3.0,1074104312 +274,2268,2.0,1074104150 +274,2502,3.0,1074104860 +274,2617,2.5,1074104277 +274,2858,3.5,1074104867 +274,2890,4.5,1074104842 +274,2959,4.0,1074104698 +274,2997,3.5,1074105003 +274,3265,3.5,1074105196 +274,3471,2.0,1074104310 +274,3481,4.0,1074104265 +274,3897,3.5,1074104209 +274,4306,3.0,1074104286 +274,6242,3.5,1074104716 +275,1,5.0,1350254117 +275,3,4.0,1326919897 +275,16,4.5,1350771182 +275,39,4.5,1386885563 +275,50,3.5,1350771191 +275,101,4.5,1371674285 +275,110,5.0,1345335389 +275,231,5.0,1386885382 +275,293,5.0,1345335285 +275,333,4.5,1386885747 +275,344,4.5,1386885314 +275,356,5.0,1345335302 +275,364,5.0,1371674366 +275,367,5.0,1386885365 +275,377,4.0,1350771098 +275,441,5.0,1326920022 +275,457,4.5,1350168624 +275,480,5.0,1350254126 +275,500,5.0,1386885370 +275,585,3.5,1326919961 +275,589,5.0,1351543308 +275,608,4.0,1350771037 +275,648,4.5,1386885337 +275,745,4.5,1350254094 +275,785,3.5,1326919944 +275,858,4.5,1386885318 +275,1042,4.0,1326919987 +275,1059,3.5,1326919968 +275,1060,5.0,1345335454 +275,1198,5.0,1386885327 +275,1240,4.0,1350771042 +275,1252,4.5,1386885657 +275,1265,5.0,1345335901 +275,1270,5.0,1326920449 +275,1307,4.5,1350259146 +275,1377,3.0,1326919921 +275,1408,4.5,1326919926 +275,1580,4.0,1350770379 +275,1673,5.0,1386885633 +275,1682,4.5,1345335293 +275,1704,4.5,1350259082 +275,1721,4.5,1386885373 +275,1954,4.5,1350254104 +275,1968,4.5,1386885546 +275,2011,5.0,1326920455 +275,2012,4.0,1326920455 +275,2109,4.0,1326920482 +275,2248,4.0,1326919981 +275,2355,4.5,1350771277 +275,2395,5.0,1326919911 +275,2424,4.0,1326919937 +275,2502,5.0,1351543171 +275,2541,3.5,1326919998 +275,2542,5.0,1345335913 +275,2571,5.0,1386885296 +275,2580,5.0,1326920009 +275,2581,5.0,1386885596 +275,2599,4.5,1350254060 +275,2762,4.0,1350771254 +275,2797,5.0,1350259230 +275,2858,5.0,1386885308 +275,2959,4.0,1345335269 +275,3114,4.5,1350254079 +275,3275,2.0,1353286828 +275,3363,4.0,1326920054 +275,3424,4.5,1381961147 +275,3450,4.5,1386885584 +275,3481,4.5,1350771159 +275,3556,5.0,1386885010 +275,3578,5.0,1350771293 +275,3752,3.5,1326920049 +275,3755,4.0,1326919957 +275,3793,4.5,1351543174 +275,3809,5.0,1386885198 +275,3897,5.0,1386885542 +275,3911,5.0,1350259368 +275,4022,4.5,1351542534 +275,4226,3.0,1353286899 +275,4239,4.5,1326920778 +275,4896,4.5,1353286786 +275,4963,4.5,1353286821 +275,4979,5.0,1351543828 +275,4995,4.5,1327440923 +275,5620,5.0,1386885838 +275,5816,5.0,1353286775 +275,5989,4.5,1351543214 +275,6016,5.0,1345335280 +275,6378,4.0,1381961196 +275,6539,5.0,1353286782 +275,6711,5.0,1345335189 +275,6796,4.5,1359760280 +275,6953,1.5,1345335835 +275,7147,5.0,1350259110 +275,8368,4.5,1353277752 +275,8638,4.5,1351542479 +275,8784,5.0,1350259388 +275,8949,5.0,1345335817 +275,8958,4.5,1351543833 +275,8961,4.0,1386885513 +275,30810,5.0,1326920440 +275,32587,3.0,1350771075 +275,33660,4.5,1345335473 +275,33794,5.0,1345335262 +275,34437,4.5,1345335727 +275,38038,4.5,1351543840 +275,38886,4.0,1353277847 +275,40815,5.0,1353286758 +275,40819,5.0,1350259160 +275,41997,4.0,1358383872 +275,46578,4.0,1350771338 +275,47610,5.0,1351543154 +275,48082,3.0,1350771167 +275,48516,5.0,1353286811 +275,48774,3.5,1353286883 +275,49272,5.0,1353286876 +275,49530,4.5,1351543018 +275,50872,5.0,1351543226 +275,54001,5.0,1358383827 +275,54281,4.0,1326920688 +275,54881,5.0,1353286848 +275,55269,4.5,1350259291 +275,56367,4.0,1350259185 +275,56782,4.5,1350771082 +275,58559,5.0,1345335392 +275,58998,5.0,1386885768 +275,59141,3.5,1326920730 +275,59273,5.0,1381964451 +275,59315,4.0,1351543301 +275,60128,4.0,1326920751 +275,60293,4.5,1326920641 +275,60763,4.5,1326920666 +275,63082,4.5,1345335398 +275,64614,4.0,1353286835 +275,64620,4.0,1351543223 +275,64839,4.5,1350771284 +275,67255,0.5,1345335307 +275,68358,4.5,1351543305 +275,68954,5.0,1353277859 +275,69481,4.5,1345335318 +275,69640,4.0,1326920816 +275,69757,4.5,1350259215 +275,69844,5.0,1353286742 +275,71535,4.0,1345335907 +275,71579,5.0,1350771103 +275,72011,4.5,1351543250 +275,72226,5.0,1345335873 +275,72641,4.5,1371674413 +275,73023,4.0,1353286841 +275,73266,5.0,1371670866 +275,74152,5.0,1350259280 +275,74324,4.5,1327440927 +275,77455,4.0,1358383896 +275,77561,4.0,1386885761 +275,78499,5.0,1351543165 +275,79091,4.5,1381961103 +275,79132,4.0,1345335464 +275,79318,4.0,1351542501 +275,80463,5.0,1345335257 +275,80489,4.5,1351543209 +275,80906,5.0,1358383973 +275,81834,4.5,1358383856 +275,81845,4.5,1345335356 +275,81847,5.0,1351543373 +275,81932,4.5,1326920375 +275,82459,4.5,1345335343 +275,86000,4.5,1386885137 +275,86345,5.0,1345335812 +275,86347,5.0,1326921348 +275,86377,5.0,1326921353 +275,87232,4.5,1345335380 +275,88125,5.0,1351543326 +275,88163,5.0,1381961132 +275,88744,4.5,1326920562 +275,88810,5.0,1350771155 +275,89492,5.0,1326920514 +275,89745,4.5,1351810750 +275,89804,3.0,1345335251 +275,91500,4.0,1351810736 +275,92535,4.5,1350259287 +275,93324,5.0,1371674451 +275,93840,3.0,1351821321 +275,94959,5.0,1350259077 +275,95088,5.0,1351542680 +275,95135,3.5,1351810763 +275,96079,4.5,1358383747 +275,96821,4.0,1371674312 +275,96911,5.0,1386885104 +275,97057,5.0,1386885163 +275,97304,5.0,1352512305 +275,97921,5.0,1358383729 +275,97938,4.0,1386885446 +275,98154,4.0,1358383715 +275,98961,4.5,1358383700 +275,99114,4.5,1358383738 +275,100383,4.5,1381961186 +275,101525,4.0,1371671034 +275,102125,3.5,1371671053 +275,102194,5.0,1386885118 +275,102445,5.0,1371670853 +275,102993,3.0,1386885075 +275,104841,4.0,1386884994 +275,105504,5.0,1386885060 +276,70,3.0,1321811946 +276,153,1.5,1321812623 +276,168,1.5,1321811950 +276,186,3.0,1321811967 +276,592,4.0,1321812611 +276,673,2.0,1321812008 +276,762,0.5,1321811980 +276,785,4.0,1321811983 +276,1129,4.0,1321812019 +276,1215,3.0,1321811959 +276,1377,4.5,1321812626 +276,1408,3.5,1321811954 +276,1562,1.0,1321812024 +276,1690,3.0,1321811986 +276,1747,4.0,1321811989 +276,1909,2.0,1321811964 +276,2294,3.5,1321811998 +276,2804,3.0,1321811943 +276,3213,4.0,1321812631 +276,4085,3.0,1321812000 +276,33794,2.5,1321812615 +277,110,5.0,1463682624 +277,260,5.0,1463682031 +277,318,5.0,1463682021 +277,356,5.0,1463682667 +277,377,4.0,1463684165 +277,589,4.0,1463916676 +277,858,5.0,1463682028 +277,1036,5.0,1463682627 +277,1200,4.0,1463916672 +277,1210,5.0,1463682619 +277,1221,5.0,1469118324 +277,1527,5.0,1463683189 +277,1573,5.0,1463684159 +277,1954,5.0,1463684152 +277,2028,5.0,1463682596 +277,2571,5.0,1463916097 +277,3948,3.5,1463684243 +277,5618,5.0,1463916250 +277,5971,5.0,1463916362 +277,6365,5.0,1463684155 +277,8644,4.0,1463684224 +277,31658,4.5,1469118379 +277,50872,4.0,1463916549 +277,58559,3.0,1463682036 +277,77561,4.0,1463916139 +277,82461,2.0,1463916752 +277,91500,3.0,1463916154 +277,98809,3.5,1463916145 +277,104283,4.0,1463916473 +277,109487,5.0,1466953538 +277,115713,4.0,1469118331 +277,117529,3.0,1463682504 +277,120799,4.0,1463682540 +277,122882,5.0,1466583462 +277,122890,5.0,1466583410 +277,122900,4.0,1463682464 +277,122904,2.0,1463682408 +277,122920,2.5,1463682451 +277,132046,3.5,1463916811 +277,133195,3.0,1463682552 +277,134130,5.0,1463682007 +277,134393,3.0,1463682527 +277,134853,4.0,1463682434 +277,136016,4.0,1463682513 +277,136020,3.5,1463682498 +277,136598,2.0,1463682523 +277,136864,2.5,1463682554 +277,138036,4.0,1463682455 +277,139385,3.0,1466953550 +277,140110,4.0,1463682456 +277,140711,3.5,1463682537 +277,141688,2.5,1463682489 +277,146309,4.0,1463916694 +277,148626,3.5,1463682406 +277,149352,3.0,1463682545 +277,149406,4.0,1463682492 +277,150548,4.0,1463682440 +277,159093,3.0,1466684839 +278,80,5.0,984560692 +278,111,4.0,984560713 +278,260,2.0,984560555 +278,296,4.0,984560785 +278,401,4.0,984560555 +278,541,4.0,984561062 +278,549,3.0,984560525 +278,586,2.0,984560555 +278,615,3.0,984560713 +278,670,4.0,984560765 +278,750,4.0,984560849 +278,759,5.0,984560651 +278,899,3.0,984560882 +278,908,5.0,984560806 +278,909,4.0,984561010 +278,910,5.0,984560849 +278,912,4.0,984560868 +278,919,5.0,984560940 +278,920,3.0,984560976 +278,923,4.0,984560692 +278,936,4.0,984561010 +278,945,4.0,984560765 +278,971,4.0,984561079 +278,1084,5.0,984560806 +278,1104,3.0,984560976 +278,1225,4.0,984560806 +278,1228,5.0,984560940 +278,1244,2.0,984560923 +278,1247,5.0,984560785 +278,1252,3.0,984560744 +278,1303,2.0,984560960 +278,1304,2.0,984560849 +278,1617,3.0,984560868 +278,1734,2.0,984560992 +278,1900,4.0,984560923 +278,1960,4.0,984561062 +278,1961,4.0,984560525 +278,2064,4.0,984560555 +278,2313,3.0,984561079 +278,2396,3.0,984560849 +278,2732,3.0,984560849 +278,2804,4.0,984560940 +278,2908,3.0,984561118 +278,2973,3.0,984560923 +278,2997,2.0,984561027 +278,3362,4.0,984560621 +278,3405,4.0,984560868 +278,3469,5.0,984561062 +278,3504,3.0,984560923 +278,3735,4.0,984561062 +278,4117,5.0,984560744 +278,4174,3.0,984560692 +278,4178,3.0,984560668 +279,2,3.0,838231842 +279,10,3.0,838231354 +279,21,1.0,838231505 +279,34,3.0,838231458 +279,47,3.0,838231458 +279,50,5.0,838231549 +279,110,4.0,838231410 +279,150,4.0,838231079 +279,151,3.0,838231842 +279,153,2.0,838231182 +279,160,2.0,838231550 +279,161,3.0,838231315 +279,165,3.0,838231181 +279,173,2.0,838231656 +279,185,3.0,838231354 +279,196,3.0,838231842 +279,225,3.0,838231506 +279,231,3.0,838231264 +279,236,4.0,838231729 +279,252,2.0,838231842 +279,253,2.0,838231354 +279,266,3.0,838231597 +279,282,3.0,838231729 +279,292,5.0,838231315 +279,296,2.0,838231079 +279,316,3.0,838231264 +279,317,2.0,838231505 +279,318,5.0,838231264 +279,329,3.0,838231264 +279,339,3.0,838231354 +279,349,3.0,838231181 +279,350,3.0,838231779 +279,356,5.0,838231410 +279,364,3.0,838231458 +279,367,1.0,838231505 +279,377,4.0,838231597 +279,380,4.0,838231079 +279,420,2.0,838231550 +279,432,2.0,838231597 +279,434,3.0,838231315 +279,440,3.0,838231656 +279,454,3.0,838231458 +279,457,5.0,838231316 +279,480,5.0,838231458 +279,500,3.0,838231656 +279,527,5.0,838231656 +279,539,4.0,838231729 +279,553,3.0,838231779 +279,586,3.0,838231729 +279,587,5.0,838231729 +279,588,4.0,838231181 +279,589,4.0,838231550 +279,590,4.0,838231079 +279,592,2.0,838231079 +279,593,4.0,838231315 +279,595,2.0,838231264 +279,597,3.0,838231779 +280,11,3.0,905583247 +280,17,5.0,905583247 +280,28,5.0,905583453 +280,58,4.0,905583509 +280,260,5.0,905583279 +280,380,4.0,905583581 +280,838,5.0,905583581 +280,1094,5.0,905583550 +280,1172,5.0,905583610 +280,1183,5.0,905583305 +280,1196,5.0,905583305 +280,1393,5.0,905583509 +280,1408,4.0,905583509 +280,1479,4.0,905583247 +280,1639,4.0,905583305 +280,1721,5.0,905583279 +280,1907,4.0,905582830 +280,1911,3.0,905582885 +280,1917,4.0,905582830 +280,1920,3.0,905582906 +280,2006,4.0,905582728 +280,2059,4.0,905582885 +281,150,3.5,1113685111 +281,153,3.0,1113685151 +281,231,3.0,1113685242 +281,260,4.0,1113685117 +281,296,4.5,1113685080 +281,344,2.5,1113685165 +281,356,3.5,1113685087 +281,367,4.5,1113685237 +281,380,3.5,1113685189 +281,457,3.5,1113685097 +281,480,4.0,1113685093 +281,509,4.5,1113684414 +281,527,5.0,1113684695 +281,589,4.5,1113685184 +281,590,4.0,1113685105 +281,592,3.5,1113685101 +281,593,4.0,1113685084 +281,597,4.0,1113685246 +281,608,4.5,1113685168 +281,648,3.0,1113685156 +281,780,2.0,1113685177 +281,858,4.0,1113685250 +281,899,4.5,1113683955 +281,903,5.0,1113683845 +281,904,4.5,1113684621 +281,908,4.5,1113684731 +281,912,5.0,1113684673 +281,919,5.0,1113684783 +281,922,3.0,1113796492 +281,923,5.0,1113684869 +281,969,4.5,1113796473 +281,1084,4.0,1113683918 +281,1088,4.0,1113683947 +281,1193,4.5,1113684714 +281,1198,4.0,1113684625 +281,1204,5.0,1113683825 +281,1207,3.5,1113684629 +281,1219,5.0,1113684735 +281,1234,3.5,1113684852 +281,1250,5.0,1113683853 +281,1252,4.0,1113796602 +281,1262,4.5,1113684470 +281,1270,5.0,1113685226 +281,1272,4.5,1113684879 +281,1276,4.5,1113683902 +281,1282,4.5,1113683908 +281,1293,4.5,1113683971 +281,1304,3.5,1113684837 +281,1371,4.0,1113683934 +281,1375,3.0,1113683889 +281,2019,5.0,1113683978 +281,2028,4.0,1113685232 +281,2080,4.0,1113683987 +281,2167,3.5,1113683944 +281,2571,3.0,1113685228 +281,2858,4.5,1113685254 +281,3101,4.0,1113683878 +281,3468,3.0,1113684606 +281,3801,4.0,1113684648 +281,4178,4.0,1113684760 +281,4297,4.5,1113684252 +281,4327,3.0,1113684496 +281,4422,4.0,1113684035 +281,5291,3.0,1113684602 +281,5349,2.5,1113683884 +281,5899,4.0,1113684687 +281,5995,4.0,1113684793 +281,6777,4.0,1113684499 +281,6986,4.5,1113684563 +281,7062,4.0,1113684855 +281,7086,3.0,1113796611 +281,7087,5.0,1113684319 +281,7091,3.0,1113796482 +281,7156,4.0,1113796509 +281,7840,4.0,1113684677 +281,7941,4.0,1113684719 +281,7944,4.5,1113684269 +281,8228,4.0,1113684458 +281,8492,4.0,1113684639 +281,8961,3.5,1113684575 +281,8989,3.0,1113684531 +281,26131,3.5,1113684634 +282,1,4.0,1111493773 +282,10,3.0,1111493968 +282,22,3.0,1111492748 +282,32,3.5,1111493903 +282,110,4.5,1111493409 +282,150,4.5,1111493750 +282,165,4.0,1111493905 +282,260,4.5,1111493758 +282,296,3.5,1111494067 +282,318,5.0,1111493752 +282,349,4.0,1111493904 +282,356,4.5,1111493734 +282,377,3.5,1111493903 +282,380,3.0,1111493762 +282,457,4.0,1111493740 +282,474,3.5,1111611669 +282,480,3.0,1111493738 +282,500,3.5,1111493971 +282,508,4.0,1111612319 +282,524,5.0,1111494667 +282,527,5.0,1111494608 +282,553,3.5,1111611753 +282,589,2.0,1111493765 +282,590,3.0,1111493747 +282,592,2.5,1111493743 +282,593,4.0,1111493731 +282,597,1.5,1111494131 +282,648,4.0,1111493904 +282,736,3.5,1111493942 +282,780,2.0,1111493768 +282,1036,4.5,1111494376 +282,1084,2.0,1111493035 +282,1097,4.0,1111611848 +282,1136,4.5,1111612285 +282,1196,3.0,1111493905 +282,1197,4.0,1111494870 +282,1198,5.0,1111493949 +282,1210,4.0,1111494400 +282,1240,3.0,1111494532 +282,1242,4.0,1111611347 +282,1250,4.0,1111492923 +282,1259,5.0,1111494823 +282,1262,4.0,1111494714 +282,1270,3.5,1111493952 +282,1285,2.0,1111612891 +282,1291,4.5,1111494373 +282,1302,3.5,1111494581 +282,1375,1.5,1111492965 +282,1380,0.5,1111611984 +282,1381,0.5,1111611985 +282,1573,3.0,1111494009 +282,1580,2.0,1111612269 +282,1610,4.0,1111494390 +282,1625,2.5,1111492754 +282,1641,1.5,1111493398 +282,1673,3.0,1111492721 +282,1674,3.5,1111494119 +282,1704,4.5,1111494474 +282,1722,3.0,1111493065 +282,1729,2.5,1111612444 +282,1777,4.0,1111493068 +282,1784,3.0,1111494620 +282,1876,3.5,1111493045 +282,1917,3.5,1111493354 +282,1961,3.5,1111494722 +282,2000,4.5,1111494378 +282,2001,4.0,1111493374 +282,2012,3.5,1111493425 +282,2028,5.0,1111494392 +282,2194,3.5,1111494407 +282,2268,4.0,1111493389 +282,2617,3.0,1111493382 +282,2628,3.5,1111494028 +282,2671,4.0,1111494018 +282,2683,5.0,1111493358 +282,2706,4.5,1111612254 +282,2716,4.0,1111494573 +282,2762,5.0,1111494381 +282,2770,3.5,1111493040 +282,2797,4.5,1111494612 +282,2858,2.5,1111493384 +282,2916,3.5,1111612290 +282,2944,3.5,1111611630 +282,2959,0.5,1111493370 +282,2968,4.5,1111612412 +282,3039,4.5,1111494570 +282,3098,3.5,1111494746 +282,3105,3.5,1111611804 +282,3107,3.5,1111494022 +282,3114,4.0,1111494476 +282,3147,5.0,1111493377 +282,3256,4.5,1111494428 +282,3408,4.0,1111493390 +282,3418,1.5,1111494133 +282,3421,4.0,1111612386 +282,3578,4.0,1111494384 +282,3623,4.0,1111492930 +282,3753,4.0,1111612243 +282,3861,5.0,1111494658 +282,3916,5.0,1111494397 +282,3977,4.0,1111492948 +282,3996,4.0,1111612250 +282,4085,4.0,1111494520 +282,4095,4.0,1111611719 +282,4223,4.0,1111611759 +282,4306,5.0,1111494513 +282,4308,0.5,1111612378 +282,4326,3.5,1111611717 +282,4447,3.5,1111494001 +282,4474,0.5,1111611971 +282,4623,4.0,1111612345 +282,4776,2.0,1111612321 +282,4963,3.0,1111494724 +282,4993,5.0,1111493366 +282,4995,4.0,1111494541 +282,5418,4.5,1111494537 +282,5445,3.0,1111493061 +282,5952,5.0,1111494480 +282,5989,5.0,1111494440 +282,6378,3.5,1111494604 +282,6539,4.5,1111494432 +282,7143,4.0,1111494395 +282,7153,5.0,1111494436 +282,7386,2.5,1111494564 +282,8360,4.5,1111494517 +282,8493,4.0,1111494552 +282,8665,4.5,1111494566 +283,1,3.0,1114997963 +283,7,3.5,1114998425 +283,17,2.5,1131817444 +283,32,4.0,1114998004 +283,36,3.0,1130008541 +283,47,3.0,1114998051 +283,50,4.0,1114998027 +283,58,4.0,1114524529 +283,105,3.0,1114524648 +283,150,4.0,1114997929 +283,265,4.0,1114998488 +283,288,3.5,1114998218 +283,296,4.5,1114524964 +283,318,4.5,1130008264 +283,350,2.0,1114524422 +283,356,5.0,1114997505 +283,357,3.5,1114998133 +283,364,3.5,1114998057 +283,457,3.5,1114997517 +283,475,4.5,1114998800 +283,480,3.0,1114997513 +283,508,4.5,1114998309 +283,527,5.0,1114525108 +283,586,2.0,1114998225 +283,587,3.5,1114998124 +283,590,3.0,1114997529 +283,593,2.0,1114525187 +283,597,3.5,1114998087 +283,608,4.0,1155839448 +283,720,5.0,1114524946 +283,745,5.0,1131817049 +283,778,4.0,1114525176 +283,780,2.5,1114997972 +283,923,1.5,1114524519 +283,1087,4.5,1115175148 +283,1101,0.5,1114524497 +283,1132,3.0,1131817348 +283,1136,3.5,1125935559 +283,1148,4.5,1118808261 +283,1172,3.5,1114524745 +283,1183,4.5,1114998356 +283,1223,5.0,1125935537 +283,1245,4.0,1131817379 +283,1246,4.5,1114524474 +283,1267,3.0,1148749025 +283,1270,3.5,1114998075 +283,1271,3.5,1114998876 +283,1293,4.5,1165209763 +283,1569,2.5,1114998807 +283,1641,4.5,1114998457 +283,1645,3.0,1114998757 +283,1682,5.0,1114998468 +283,1704,3.5,1150010367 +283,1721,2.0,1114998195 +283,1729,4.0,1114998828 +283,1732,4.5,1114524575 +283,1734,2.5,1165210633 +283,1784,5.0,1114998330 +283,1961,3.5,1114998256 +283,2324,5.0,1114524918 +283,2355,3.0,1155839530 +283,2357,5.0,1115175301 +283,2396,3.5,1114998228 +283,2539,3.5,1114524787 +283,2571,2.5,1165210432 +283,2585,4.0,1115170361 +283,2671,3.0,1114998706 +283,2692,3.5,1150010277 +283,2706,1.5,1114998385 +283,2762,3.0,1114998166 +283,2858,5.0,1114524907 +283,2997,4.5,1114525034 +283,3083,4.0,1115170155 +283,3160,4.0,1114524700 +283,3246,4.0,1165209888 +283,3418,2.5,1114524662 +283,3677,5.0,1115174953 +283,3746,5.0,1115175139 +283,3751,4.5,1114998516 +283,3897,2.5,1114998502 +283,3911,4.0,1114524766 +283,3948,3.5,1114998734 +283,3967,3.5,1150010523 +283,3992,2.0,1131817540 +283,4034,4.0,1114524613 +283,4151,4.5,1115169902 +283,4226,4.5,1114525087 +283,4235,5.0,1114525005 +283,4246,2.5,1114998908 +283,4306,4.0,1114524455 +283,4384,4.5,1115174498 +283,4848,1.5,1118808096 +283,4886,4.5,1114998681 +283,4963,3.5,1114998717 +283,4973,5.0,1114524870 +283,4995,4.0,1114998778 +283,5135,3.0,1165210576 +283,5225,4.5,1125935588 +283,5319,4.5,1115175324 +283,5418,3.5,1115175068 +283,5446,4.0,1118808021 +283,5607,4.0,1171172693 +283,5618,4.0,1114524984 +283,5669,4.5,1114524929 +283,5791,3.5,1131817416 +283,5878,4.5,1115170181 +283,5902,4.0,1115169964 +283,5995,5.0,1155839364 +283,6016,5.0,1114524902 +283,6218,3.5,1165209913 +283,6296,3.0,1115170015 +283,6370,3.5,1131817405 +283,6377,4.0,1114524769 +283,6385,3.5,1114524934 +283,6538,2.0,1115169869 +283,6539,2.5,1165210550 +283,6711,4.0,1114525026 +283,6869,5.0,1115170214 +283,6870,3.0,1131817095 +283,6874,4.5,1125935614 +283,6953,2.0,1131817331 +283,6954,4.5,1114524916 +283,7090,4.0,1114525018 +283,7139,2.0,1114998976 +283,7153,2.5,1165210601 +283,7177,4.0,1165210668 +283,7254,1.0,1115174534 +283,7256,3.5,1125935442 +283,7323,4.0,1155839440 +283,7361,5.0,1114524938 +283,7438,4.5,1114524976 +283,7456,4.5,1115175359 +283,7459,5.0,1115170328 +283,8464,2.5,1114525141 +283,8622,4.0,1115170233 +283,8638,4.5,1114525169 +283,8645,4.5,1148748944 +283,8665,3.0,1115175071 +283,8784,3.5,1114524888 +283,8873,5.0,1114524891 +283,8907,2.0,1115169611 +283,8910,3.5,1115169940 +283,8949,4.5,1114525155 +283,8951,4.0,1172207440 +283,8961,4.5,1114525097 +283,8966,4.5,1125935620 +283,8970,3.0,1118808697 +283,8973,3.5,1115169781 +283,26131,4.0,1165210295 +283,27773,1.0,1125935408 +283,27783,4.0,1155839505 +283,27803,5.0,1130007962 +283,27808,3.0,1118808604 +283,27815,2.5,1130008022 +283,27846,4.5,1148748989 +283,27878,3.0,1165210398 +283,30749,5.0,1148748930 +283,30793,3.0,1130008053 +283,30825,3.5,1115170266 +283,31878,4.5,1117946090 +283,32031,3.5,1131817120 +283,32170,1.5,1165209969 +283,32587,3.5,1125935473 +283,33004,4.5,1117946157 +283,33166,4.5,1148749344 +283,33493,1.5,1117946183 +283,34048,3.0,1125935738 +283,34072,5.0,1131817076 +283,34198,3.0,1165209937 +283,36276,2.5,1165210244 +283,36517,4.0,1150010254 +283,37240,4.5,1155839349 +283,38038,5.0,1131817053 +283,39183,4.5,1150010196 +283,39292,5.0,1150010225 +283,40583,4.5,1148749202 +283,41285,2.5,1148749265 +283,41527,5.0,1148749052 +283,41571,3.0,1165210488 +283,41997,5.0,1148749076 +283,42004,4.0,1150010240 +283,44191,4.5,1148749274 +283,44195,4.0,1171172978 +283,45950,4.5,1171172704 +283,46530,1.5,1152591008 +283,46578,4.5,1171172715 +283,46723,4.5,1171172769 +283,48385,3.5,1165209831 +283,48394,3.0,1171172041 +284,1,3.0,853878868 +284,3,3.0,853878917 +284,5,4.0,853878917 +284,6,5.0,853878917 +284,7,1.0,853878917 +284,12,1.0,853879034 +284,14,3.0,853878955 +284,17,1.0,853878869 +284,25,3.0,853878869 +284,32,4.0,853878868 +284,36,4.0,853878917 +284,62,3.0,853878869 +284,76,3.0,853879090 +284,78,2.0,853879320 +284,79,5.0,853878994 +284,81,3.0,853879165 +284,86,4.0,853879130 +284,95,3.0,853878868 +284,100,5.0,853879034 +284,103,4.0,853879267 +284,107,2.0,853879034 +284,140,3.0,853878994 +284,376,3.0,853878917 +284,494,3.0,853878917 +284,608,4.0,853878917 +284,628,5.0,853878994 +284,640,4.0,853879064 +284,648,4.0,853878868 +284,653,3.0,853878955 +284,694,2.0,853879165 +284,719,3.0,853879034 +284,733,5.0,853878917 +284,742,2.0,853879320 +284,761,3.0,853879064 +284,762,3.0,853878994 +284,780,3.0,853878868 +284,782,3.0,853879340 +284,784,3.0,853878955 +284,786,4.0,853878955 +284,798,4.0,853879361 +284,802,4.0,853879034 +284,805,5.0,853879034 +284,832,3.0,853879064 +284,836,3.0,853879296 +284,852,3.0,853879064 +284,1006,3.0,853879320 +284,1047,4.0,853879237 +284,1049,4.0,853879296 +284,1073,3.0,853878955 +284,1356,5.0,853878994 +284,1359,1.0,853879296 +284,1393,5.0,853879267 +285,1,4.0,965091874 +285,2,3.0,965089266 +285,3,3.0,965092752 +285,10,4.0,965091528 +285,19,1.0,965093017 +285,32,5.0,965088482 +285,44,2.0,965542404 +285,47,5.0,965091247 +285,50,5.0,965090397 +285,60,4.0,965089266 +285,63,2.0,965093034 +285,69,4.0,965092287 +285,70,4.0,965089489 +285,93,2.0,965092943 +285,104,4.0,965092082 +285,110,5.0,965093169 +285,112,3.0,965542313 +285,153,2.0,965092826 +285,157,4.0,965092538 +285,160,1.0,965089184 +285,163,4.0,965090934 +285,168,2.0,965542455 +285,170,4.0,965091597 +285,173,3.0,965088745 +285,176,5.0,965091795 +285,177,5.0,965089612 +285,180,4.0,965092095 +285,181,1.0,965543296 +285,185,3.0,965091663 +285,188,5.0,965089436 +285,198,4.0,965088579 +285,223,5.0,965091971 +285,231,1.0,965092590 +285,234,3.0,965092826 +285,235,5.0,965091971 +285,252,3.0,965092270 +285,253,5.0,965089489 +285,255,2.0,965093058 +285,260,5.0,965088419 +285,288,5.0,965091512 +285,292,2.0,965091563 +285,293,5.0,965090957 +285,296,4.0,965542530 +285,316,3.0,965088682 +285,317,4.0,965089266 +285,329,4.0,965088661 +285,330,3.0,965089576 +285,344,1.0,965092654 +285,353,3.0,965091452 +285,355,1.0,965092790 +285,356,5.0,965092154 +285,364,3.0,965542813 +285,366,4.0,965089412 +285,368,4.0,965092305 +285,370,1.0,965092448 +285,372,3.0,965092538 +285,374,1.0,965092963 +285,377,3.0,965091478 +285,405,1.0,965089166 +285,407,4.0,965091466 +285,410,3.0,965092397 +285,413,2.0,965092726 +285,423,3.0,965543124 +285,429,2.0,965092752 +285,435,1.0,965092779 +285,440,3.0,965092130 +285,441,3.0,965091874 +285,442,4.0,965088641 +285,450,3.0,965088014 +285,457,4.0,965090443 +285,466,2.0,965092448 +285,471,5.0,965092130 +285,473,1.0,965093344 +285,479,3.0,965543176 +285,480,3.0,965088579 +285,481,4.0,965091528 +285,485,2.0,965092706 +285,500,4.0,965092448 +285,505,4.0,965092943 +285,516,3.0,965092522 +285,519,2.0,965089184 +285,520,3.0,965092573 +285,527,5.0,965093106 +285,542,1.0,965092855 +285,543,4.0,965091512 +285,546,1.0,965088796 +285,547,3.0,965542363 +285,551,4.0,965092042 +285,555,4.0,965542936 +285,558,4.0,965542864 +285,586,1.0,965088014 +285,588,4.0,965542795 +285,589,3.0,965542922 +285,590,4.0,965542224 +285,592,4.0,965542224 +285,593,4.0,965090397 +285,608,5.0,965090397 +285,610,3.0,965088661 +285,611,4.0,965089184 +285,637,3.0,965092840 +285,653,4.0,965089282 +285,661,5.0,965542813 +285,708,3.0,965092347 +285,733,3.0,965091440 +285,736,2.0,965091630 +285,762,3.0,965092752 +285,780,4.0,965088682 +285,784,1.0,965092590 +285,858,4.0,965542897 +285,861,3.0,965090957 +285,866,3.0,965542566 +285,919,3.0,965542185 +285,934,4.0,965091874 +285,968,5.0,965088605 +285,1018,3.0,965092867 +285,1025,5.0,965542813 +285,1031,4.0,965542351 +285,1032,4.0,965542783 +285,1037,3.0,965088745 +285,1042,3.0,965092169 +285,1073,4.0,965089222 +285,1079,4.0,965091814 +285,1080,5.0,965092032 +285,1089,5.0,965090443 +285,1090,3.0,965093131 +285,1091,1.0,965092826 +285,1097,4.0,965088482 +285,1101,4.0,965543077 +285,1126,1.0,965092706 +285,1135,2.0,965092683 +285,1136,4.0,965091761 +285,1148,4.0,965091773 +285,1194,3.0,965092476 +285,1196,5.0,965088419 +285,1197,4.0,965088072 +285,1198,4.0,965542151 +285,1199,5.0,965088445 +285,1200,2.0,965088467 +285,1206,4.0,965088445 +285,1208,5.0,965093118 +285,1210,5.0,965093169 +285,1213,5.0,965542530 +285,1214,2.0,965089335 +285,1215,3.0,965089396 +285,1220,4.0,965542948 +285,1222,5.0,965093156 +285,1223,4.0,965091952 +285,1240,3.0,965088467 +285,1242,5.0,965542910 +285,1243,5.0,965091845 +285,1257,4.0,965092032 +285,1258,3.0,965089353 +285,1265,4.0,965091845 +285,1270,4.0,965088482 +285,1274,3.0,965088503 +285,1275,3.0,965542277 +285,1278,4.0,965089353 +285,1282,4.0,965542736 +285,1285,3.0,965091910 +285,1291,3.0,965542185 +285,1298,3.0,965093301 +285,1327,1.0,965089612 +285,1339,3.0,965089489 +285,1345,2.0,965089436 +285,1347,2.0,965089453 +285,1356,3.0,965542224 +285,1371,3.0,965088708 +285,1372,3.0,965088549 +285,1373,3.0,965088760 +285,1374,3.0,965088503 +285,1375,3.0,965542293 +285,1376,3.0,965088549 +285,1377,3.0,965542313 +285,1378,4.0,965092432 +285,1379,3.0,965092672 +285,1380,1.0,965092318 +285,1381,1.0,965093072 +285,1387,4.0,965089353 +285,1388,3.0,965089638 +285,1391,4.0,965088682 +285,1394,4.0,965091829 +285,1405,2.0,965542855 +285,1407,5.0,965089436 +285,1440,3.0,965092507 +285,1441,4.0,965092141 +285,1445,3.0,965092919 +285,1447,4.0,965542654 +285,1461,1.0,965092963 +285,1476,4.0,965092257 +285,1479,4.0,965091618 +285,1485,3.0,965092477 +285,1499,1.0,965542434 +285,1500,5.0,965091874 +285,1513,3.0,965092507 +285,1517,4.0,965092095 +285,1527,4.0,965088549 +285,1552,3.0,965091546 +285,1562,1.0,965542434 +285,1573,4.0,965088579 +285,1580,4.0,965088528 +285,1581,2.0,965093072 +285,1586,3.0,965093234 +285,1587,4.0,965542313 +285,1589,3.0,965542609 +285,1591,4.0,965091689 +285,1597,4.0,965543024 +285,1608,4.0,965543090 +285,1610,3.0,965090957 +285,1625,4.0,965090443 +285,1626,1.0,965091651 +285,1641,3.0,965091829 +285,1644,3.0,965089679 +285,1645,3.0,965088072 +285,1647,3.0,965091689 +285,1653,3.0,965088503 +285,1663,3.0,965092008 +285,1665,3.0,965092894 +285,1676,3.0,965542313 +285,1681,1.0,965542466 +285,1689,2.0,965092507 +285,1711,5.0,965542654 +285,1717,3.0,965089556 +285,1722,3.0,965091415 +285,1729,3.0,965542553 +285,1732,5.0,965091291 +285,1748,2.0,965088503 +285,1753,3.0,965092008 +285,1754,4.0,965543059 +285,1760,3.0,965092880 +285,1777,4.0,965092257 +285,1801,3.0,965543162 +285,1805,4.0,965091499 +285,1831,3.0,965088783 +285,1885,3.0,965092032 +285,1894,3.0,965542332 +285,1909,4.0,965088626 +285,1911,2.0,965092654 +285,1917,4.0,965542332 +285,1921,4.0,965091291 +285,1923,1.0,965091889 +285,1924,5.0,965089166 +285,1954,2.0,965542959 +285,1967,3.0,965089247 +285,1968,3.0,965088034 +285,1969,2.0,965089657 +285,1974,2.0,965089597 +285,1975,1.0,965089638 +285,1976,1.0,965089880 +285,1982,3.0,965089396 +285,1991,1.0,965089576 +285,1992,1.0,965089880 +285,1997,1.0,965089436 +285,2000,4.0,965542583 +285,2003,3.0,965089454 +285,2005,4.0,965089247 +285,2011,4.0,965088579 +285,2012,3.0,965088661 +285,2018,3.0,965542783 +285,2027,2.0,965093034 +285,2028,5.0,965093156 +285,2034,3.0,965088746 +285,2038,3.0,965092415 +285,2046,3.0,965088626 +285,2054,2.0,965088661 +285,2058,4.0,965091428 +285,2072,4.0,965092752 +285,2080,3.0,965542783 +285,2088,2.0,965092672 +285,2092,2.0,965542855 +285,2105,3.0,965088605 +285,2108,3.0,965091971 +285,2109,2.0,965092154 +285,2115,4.0,965542252 +285,2116,3.0,965088626 +285,2119,2.0,965089913 +285,2120,4.0,965089520 +285,2121,2.0,965089520 +285,2124,3.0,965092305 +285,2134,3.0,965092397 +285,2138,3.0,965089222 +285,2139,3.0,965542784 +285,2140,3.0,965088528 +285,2143,4.0,965089282 +285,2155,4.0,965092117 +285,2161,4.0,965089247 +285,2167,4.0,965089396 +285,2174,4.0,965089222 +285,2194,4.0,965542583 +285,2249,4.0,965092612 +285,2253,3.0,965089310 +285,2279,4.0,965089880 +285,2282,4.0,965091982 +285,2294,4.0,965542813 +285,2301,5.0,965092347 +285,2321,4.0,965091889 +285,2325,3.0,965092894 +285,2328,4.0,965089679 +285,2353,4.0,965542973 +285,2355,4.0,965542757 +285,2371,4.0,965092182 +285,2372,3.0,965092590 +285,2375,3.0,965092672 +285,2378,1.0,965092522 +285,2379,1.0,965092963 +285,2380,1.0,965092991 +285,2385,3.0,965092654 +285,2387,1.0,965092539 +285,2395,4.0,965091773 +285,2402,3.0,965093361 +285,2404,2.0,965093361 +285,2407,2.0,965088682 +285,2413,3.0,965092287 +285,2416,1.0,965092448 +285,2421,2.0,965542418 +285,2422,2.0,965543254 +285,2423,3.0,965092305 +285,2424,3.0,965092333 +285,2427,2.0,965093206 +285,2450,2.0,965088760 +285,2459,4.0,965089657 +285,2460,5.0,965089370 +285,2468,3.0,965091608 +285,2470,2.0,965092270 +285,2471,2.0,965542418 +285,2478,4.0,965092305 +285,2496,3.0,965092461 +285,2502,4.0,965092082 +285,2539,4.0,965092333 +285,2571,5.0,965090397 +285,2580,4.0,965542553 +285,2596,4.0,965091899 +285,2598,2.0,965092372 +285,2615,3.0,965542390 +285,2616,1.0,965542669 +285,2617,3.0,965542351 +285,2628,5.0,965088641 +285,2640,3.0,965088605 +285,2641,2.0,965088605 +285,2642,2.0,965088783 +285,2643,1.0,965089184 +285,2657,4.0,965088579 +285,2683,2.0,965092257 +285,2701,3.0,965088783 +285,2706,4.0,965092358 +285,2710,5.0,965089501 +285,2717,3.0,965089520 +285,2718,4.0,965092204 +285,2720,2.0,965092906 +285,2723,4.0,965092228 +285,2735,2.0,965092672 +285,2746,3.0,965092170 +285,2761,5.0,965542736 +285,2774,4.0,965091971 +285,2791,2.0,965091926 +285,2792,1.0,965092522 +285,2794,2.0,965092415 +285,2796,3.0,965092627 +285,2797,4.0,965089222 +285,2804,5.0,965091814 +285,2815,2.0,965093344 +285,2816,2.0,965093361 +285,2826,4.0,965089597 +285,2840,4.0,965091675 +285,2858,5.0,965088140 +285,2860,3.0,965092706 +285,2863,4.0,965091795 +285,2867,4.0,965089520 +285,2872,2.0,965542973 +285,2901,2.0,965088513 +285,2916,4.0,965091261 +285,2918,4.0,965091889 +285,2947,3.0,965542936 +285,2985,4.0,965088549 +285,2986,3.0,965088746 +285,2987,3.0,965542200 +285,2997,5.0,965091761 +285,3020,5.0,965543008 +285,3033,4.0,965088605 +285,3034,4.0,965542784 +285,3052,5.0,965092008 +285,3063,3.0,965091576 +285,3070,4.0,965088579 +285,3087,3.0,965092204 +285,3108,3.0,965091814 +285,3168,4.0,965542200 +285,3175,3.0,965088183 +285,3208,1.0,965092432 +285,3213,4.0,965542757 +285,3254,2.0,965092573 +285,3258,2.0,965092432 +285,3263,2.0,965092055 +285,3387,3.0,965092590 +285,3388,2.0,965092672 +285,3401,1.0,965089166 +285,3438,3.0,965089247 +285,3439,2.0,965089297 +285,3441,3.0,965093217 +285,3442,2.0,965543305 +285,3448,4.0,965093206 +285,3450,4.0,965092228 +285,3463,1.0,965092855 +285,3471,3.0,965088445 +285,3476,5.0,965089370 +285,3477,4.0,965092573 +285,3489,2.0,965089282 +285,3499,4.0,965089370 +285,3527,2.0,965088549 +285,3564,1.0,965092943 +285,3608,3.0,965091952 +285,3671,3.0,965091993 +285,3676,1.0,965089436 +285,3688,2.0,965092573 +285,3689,1.0,965093046 +285,3693,3.0,965089466 +285,3694,3.0,965089335 +285,3695,2.0,965089335 +285,3698,3.0,965088641 +285,3699,3.0,965088549 +285,3725,1.0,965542855 +285,3758,3.0,965088796 +285,3793,4.0,965088467 +285,3809,3.0,965092170 +286,23,4.0,979179836 +286,150,5.0,979179600 +286,344,2.0,979179008 +286,433,3.0,979177745 +286,577,3.0,979179509 +286,588,3.0,979179233 +286,748,4.0,979179688 +286,1007,3.0,979179600 +286,1017,3.0,979177745 +286,1019,3.0,979178738 +286,1064,3.0,979179233 +286,1127,4.0,979179008 +286,1214,3.0,979179292 +286,1425,2.0,979177851 +286,1459,3.0,979179008 +286,1499,3.0,979179465 +286,1517,3.0,979179864 +286,1541,2.0,979179067 +286,1592,3.0,979179193 +286,1608,4.0,979179193 +286,1721,5.0,979177851 +286,1784,3.0,979179688 +286,1887,2.0,979179344 +286,1917,3.0,979179646 +286,2000,4.0,979177745 +286,2015,3.0,979179008 +286,2072,3.0,979178656 +286,2124,2.0,979179067 +286,2522,3.0,979179193 +286,2525,2.0,979179344 +286,2628,4.0,979177745 +286,2699,5.0,979179646 +286,2791,3.0,979179193 +286,2826,3.0,979178738 +286,2827,3.0,979179836 +286,2846,3.0,979179093 +286,3250,3.0,979179292 +286,3535,1.0,979179414 +286,3726,1.0,979179836 +286,3984,3.0,979178542 +286,4002,3.0,979178482 +286,4007,1.0,979178482 +286,4045,2.0,979178266 +287,1,5.0,1469161081 +287,2,5.0,1469162190 +287,13,4.5,1470167166 +287,260,4.0,1469160990 +287,316,5.0,1469161856 +287,329,4.5,1473445099 +287,364,4.5,1469163110 +287,480,5.0,1469161092 +287,484,3.5,1470168942 +287,494,4.0,1469161737 +287,588,5.0,1469163114 +287,589,5.0,1469161033 +287,595,5.0,1469162267 +287,616,4.5,1470167200 +287,648,5.0,1469161613 +287,653,5.0,1470166428 +287,733,4.5,1469162229 +287,780,5.0,1469162045 +287,911,5.0,1469222899 +287,919,4.5,1469163435 +287,924,0.5,1469162087 +287,955,5.0,1470166886 +287,1010,4.0,1470169012 +287,1011,4.0,1470169027 +287,1015,4.0,1470168974 +287,1018,4.5,1470168987 +287,1022,4.5,1469163185 +287,1097,4.5,1469162171 +287,1196,4.0,1469160994 +287,1197,5.0,1469161993 +287,1198,5.0,1469160996 +287,1203,4.5,1469750186 +287,1210,5.0,1469161004 +287,1228,4.5,1470166595 +287,1234,5.0,1470168859 +287,1240,5.0,1469161060 +287,1246,4.5,1469162099 +287,1252,4.5,1470166585 +287,1262,5.0,1470168877 +287,1265,4.5,1470166247 +287,1269,5.0,1470166895 +287,1283,5.0,1470168552 +287,1291,5.0,1469161018 +287,1356,5.0,1469222872 +287,1367,4.0,1470168991 +287,1580,5.0,1469162019 +287,1676,5.0,1469161803 +287,1682,5.0,1469162298 +287,1882,3.0,1469754164 +287,1907,5.0,1469163124 +287,1911,4.5,1469754178 +287,1917,4.0,1469162244 +287,1945,4.5,1470166613 +287,2003,4.5,1470166867 +287,2015,4.5,1470169003 +287,2050,4.0,1470169024 +287,2051,4.0,1470169021 +287,2058,4.5,1469161713 +287,2078,5.0,1469163150 +287,2080,4.5,1469163178 +287,2085,5.0,1469163184 +287,2105,4.0,1470169326 +287,2176,4.5,1470166829 +287,2355,5.0,1469162233 +287,2392,3.5,1470166986 +287,2394,3.0,1469754188 +287,2431,4.5,1469754195 +287,2501,5.0,1469754171 +287,2525,3.5,1470166928 +287,2549,4.0,1469161829 +287,2571,5.0,1469160999 +287,2628,4.0,1469162091 +287,2699,4.0,1470166863 +287,2713,3.5,1470166917 +287,2761,5.0,1469163419 +287,2846,4.0,1470168962 +287,3034,5.0,1469163197 +287,3114,5.0,1469162089 +287,3157,4.0,1469754224 +287,3256,4.0,1469754337 +287,3287,3.5,1470167205 +287,3494,4.5,1470168569 +287,3623,3.5,1469161630 +287,3672,3.5,1470168915 +287,3674,3.5,1470168935 +287,3751,5.0,1469162268 +287,3981,4.0,1469754268 +287,3988,4.0,1469754201 +287,3994,4.5,1469754115 +287,3996,5.0,1469163302 +287,4027,5.0,1469162103 +287,4306,3.5,1469161478 +287,4327,5.0,1470168577 +287,4638,4.0,1469162375 +287,4795,5.0,1470168816 +287,4802,5.0,1470168822 +287,4886,5.0,1469161131 +287,4993,5.0,1469161022 +287,5108,5.0,1470168622 +287,5349,5.0,1469161999 +287,5357,4.5,1470169255 +287,5378,4.0,1469162076 +287,5418,5.0,1469161057 +287,5445,5.0,1469423023 +287,5480,3.5,1470167215 +287,5952,5.0,1469161019 +287,6163,5.0,1470166489 +287,6377,4.0,1469161119 +287,6534,4.0,1469162398 +287,6537,5.0,1469162357 +287,6753,5.0,1470167916 +287,6793,4.0,1470168927 +287,6936,4.5,1469162401 +287,6947,4.5,1470166336 +287,7153,5.0,1469161002 +287,7324,4.5,1470168602 +287,7374,4.0,1470167218 +287,8361,4.5,1469161871 +287,8464,4.5,1470166308 +287,8636,4.5,1469161889 +287,8644,5.0,1469161190 +287,8665,5.0,1469161638 +287,8783,4.0,1470168285 +287,8914,3.5,1475258003 +287,8961,5.0,1469161136 +287,8965,3.5,1469163163 +287,8972,4.0,1469162184 +287,9001,4.0,1470168806 +287,25750,4.5,1470166517 +287,26528,4.5,1469750282 +287,32031,4.0,1469163172 +287,33493,4.5,1469163286 +287,33794,5.0,1469161038 +287,34048,4.5,1469161785 +287,38038,4.0,1469163158 +287,42191,4.5,1470888631 +287,45517,3.5,1469162231 +287,48780,5.0,1469598999 +287,50872,4.0,1469161140 +287,52722,5.0,1469162205 +287,54286,5.0,1469161632 +287,55768,3.0,1469163200 +287,58559,5.0,1469161020 +287,59315,5.0,1469161036 +287,59369,4.5,1469161661 +287,59392,5.0,1470167060 +287,59615,4.0,1469162213 +287,59784,5.0,1469162040 +287,60040,4.5,1469751462 +287,60069,4.0,1469161082 +287,60674,5.0,1470167054 +287,67295,4.5,1470888636 +287,68319,5.0,1469162186 +287,68358,4.5,1473445047 +287,68791,5.0,1469755976 +287,68954,4.0,1469161063 +287,71264,4.5,1469756012 +287,72356,4.5,1470888603 +287,72998,5.0,1469161086 +287,73017,5.0,1469161162 +287,74282,4.5,1469750312 +287,76093,5.0,1469161159 +287,77435,5.0,1470168799 +287,77561,4.5,1469162021 +287,78499,5.0,1469161154 +287,79091,5.0,1469162033 +287,79132,5.0,1469161041 +287,80463,4.5,1469161990 +287,81564,5.0,1469162290 +287,82173,2.5,1475258204 +287,82461,4.5,1469755975 +287,83803,4.5,1470888612 +287,84152,5.0,1469161254 +287,84601,5.0,1469756110 +287,85414,5.0,1469161260 +287,86332,5.0,1469162047 +287,87222,5.0,1469163144 +287,88140,5.0,1469162069 +287,88345,4.0,1470888620 +287,89745,5.0,1469161062 +287,90405,4.0,1469161175 +287,91500,5.0,1469161802 +287,91529,5.0,1469161088 +287,91535,4.5,1469161648 +287,91542,5.0,1469162057 +287,91978,4.5,1469161691 +287,93061,4.5,1470167340 +287,93265,4.5,1470167363 +287,95167,5.0,1469162203 +287,95313,5.0,1470888625 +287,95377,5.0,1470888609 +287,95510,5.0,1469162194 +287,95858,5.0,1469163176 +287,96079,5.0,1469161593 +287,98491,5.0,1469163128 +287,98809,5.0,1469162015 +287,101864,4.5,1469161237 +287,102125,4.5,1469162060 +287,102880,0.5,1469161813 +287,102903,5.0,1470598366 +287,103042,4.0,1469161838 +287,103141,4.5,1469163123 +287,103228,4.0,1469161840 +287,103249,4.5,1469163308 +287,103253,4.0,1469161185 +287,103772,5.0,1469751503 +287,104841,5.0,1469161155 +287,105468,4.0,1469163223 +287,106002,5.0,1469161775 +287,106011,4.5,1470888594 +287,106072,5.0,1469162221 +287,106487,5.0,1469161806 +287,106489,5.0,1469162065 +287,106642,5.0,1473445029 +287,106696,4.5,1469162097 +287,108190,4.5,1469161827 +287,108932,5.0,1469162147 +287,108945,5.0,1469223116 +287,109578,5.0,1469161697 +287,110102,5.0,1469162042 +287,110730,5.0,1469161193 +287,111364,3.5,1469161843 +287,111759,5.0,1469161056 +287,112175,5.0,1469162263 +287,112852,5.0,1469161054 +287,114180,5.0,1469161796 +287,115617,4.0,1469161141 +287,116823,5.0,1469162095 +287,117192,5.0,1473445036 +287,117529,4.0,1469162062 +287,117895,4.5,1469161571 +287,118696,5.0,1469162192 +287,122886,5.0,1469161052 +287,122892,5.0,1469162003 +287,122900,5.0,1469162053 +287,122902,3.0,1469161585 +287,122920,5.0,1469161536 +287,130490,4.5,1469161834 +287,130520,4.0,1469163190 +287,132046,4.0,1469161188 +287,134853,5.0,1469161078 +287,135133,4.5,1469161556 +287,135436,5.0,1469161436 +287,136016,5.0,1469161567 +287,136864,3.0,1469751513 +287,142997,4.5,1469163203 +287,145935,5.0,1469161574 +287,149406,5.0,1469161554 +287,152017,5.0,1469163551 +287,152081,5.0,1469161526 +287,157296,5.0,1469161542 +287,160438,4.5,1470166791 +287,160563,4.0,1469161444 +287,161944,5.0,1470167824 +288,2,4.0,845862466 +288,6,3.0,845862667 +288,10,3.0,845862233 +288,19,5.0,845862330 +288,25,4.0,845862619 +288,31,3.0,845862722 +288,39,3.0,845862359 +288,44,1.0,845862596 +288,47,5.0,845862270 +288,105,3.0,845862667 +288,110,5.0,845862252 +288,150,3.0,845862084 +288,153,2.0,845862154 +288,158,5.0,845862596 +288,160,2.0,845862398 +288,161,3.0,845862234 +288,163,4.0,845862799 +288,165,4.0,845862153 +288,173,3.0,845862433 +288,185,3.0,845862233 +288,186,5.0,845862567 +288,204,5.0,845862567 +288,208,4.0,845862233 +288,224,5.0,845862697 +288,227,5.0,845862833 +288,231,4.0,845862175 +288,256,4.0,845862647 +288,261,3.0,845862619 +288,276,4.0,845862799 +288,288,5.0,845862271 +288,292,3.0,845862233 +288,296,5.0,845862084 +288,315,3.0,845862466 +288,316,5.0,845862175 +288,337,4.0,845862539 +288,344,5.0,845862154 +288,350,3.0,845862433 +288,353,5.0,845862647 +288,355,3.0,845862723 +288,356,5.0,845862204 +288,357,5.0,845862398 +288,364,4.0,845862271 +288,367,5.0,845862270 +288,368,5.0,845862647 +288,370,5.0,845862697 +288,377,3.0,845862270 +288,420,3.0,845862359 +288,432,2.0,845862433 +288,434,1.0,845862204 +288,440,4.0,845862398 +288,442,5.0,845862516 +288,454,4.0,845862252 +288,466,5.0,845862754 +288,474,2.0,845862466 +288,480,4.0,845862204 +288,485,4.0,845862697 +288,497,3.0,845862722 +288,500,3.0,845862302 +288,508,5.0,845862539 +288,520,5.0,845862754 +288,527,5.0,845862359 +288,539,4.0,845862330 +288,552,5.0,845862773 +288,553,3.0,845862516 +288,555,3.0,845862667 +288,588,3.0,845862154 +288,589,4.0,845862252 +288,590,4.0,845862084 +288,592,2.0,845862083 +288,593,5.0,845862154 +288,594,2.0,845862722 +288,595,3.0,845862175 +288,597,3.0,845862302 +288,736,5.0,845862567 +288,780,5.0,845862619 +289,837,4.0,1328935478 +289,1033,4.5,1328935543 +289,1125,3.0,1328935470 +289,1296,3.5,1328935449 +289,1366,3.0,1328935666 +289,1367,4.0,1328935816 +289,1713,3.0,1328935634 +289,1717,0.5,1328935429 +289,2142,4.5,1328935649 +289,2471,3.5,1328935485 +289,2572,5.0,1328935801 +289,2687,4.0,1328935493 +289,3157,3.0,1328935506 +289,3507,4.5,1328935590 +289,3555,0.5,1328935420 +289,3916,5.0,1328935426 +289,6565,4.5,1328935517 +289,7444,4.5,1328935844 +289,68135,4.5,1328935859 +289,69757,4.5,1328935789 +290,10,4.5,1445337576 +290,47,5.0,1445337326 +290,50,4.5,1445337263 +290,111,4.0,1445337282 +290,145,4.5,1445337402 +290,150,4.0,1445337630 +290,165,4.5,1445337600 +290,260,4.0,1445337293 +290,293,5.0,1445337328 +290,316,5.0,1445337569 +290,329,5.0,1445337368 +290,380,3.5,1445337612 +290,455,3.0,1389785706 +290,457,4.5,1445337624 +290,616,5.0,1389785727 +290,858,5.0,1389785826 +290,1221,5.0,1389785830 +290,1339,4.5,1389785660 +290,1371,4.0,1389785665 +290,1372,5.0,1389785632 +290,1375,5.0,1389785643 +290,1544,5.0,1389785847 +290,1831,5.0,1389785853 +290,1909,5.0,1389785622 +290,2019,5.0,1445337508 +290,2058,4.0,1445337390 +290,2167,4.0,1445337605 +290,2278,5.0,1389785670 +290,2294,5.0,1389785676 +290,2605,4.5,1389785717 +290,2717,5.0,1389785733 +290,2722,5.0,1389785753 +290,3755,4.0,1389785682 +290,4148,5.0,1445337276 +290,4223,5.0,1445337585 +290,4306,2.5,1445337228 +290,4367,5.0,1389785840 +290,4638,1.0,1389785835 +290,4643,5.0,1389785737 +290,4886,3.0,1445337224 +290,4896,2.0,1445337234 +290,4973,4.0,1445337279 +290,5418,5.0,1445337214 +290,5445,4.0,1445337232 +290,5459,5.0,1389785856 +290,5481,4.0,1445337582 +290,5782,4.5,1445337436 +290,5872,4.5,1445337479 +290,5944,5.0,1445337376 +290,6539,2.0,1445337212 +290,6548,4.5,1445337343 +290,7254,5.0,1445337237 +290,8622,5.0,1389785757 +290,31410,4.5,1445337406 +290,44022,4.0,1445337339 +290,44199,4.5,1445337568 +290,45186,4.5,1445337429 +290,46972,4.0,1445337272 +290,48394,4.0,1445337364 +290,53972,4.5,1445337301 +290,60069,4.5,1445337352 +290,68157,4.5,1445337374 +290,79132,4.5,1445337295 +290,80906,5.0,1445337452 +290,81229,4.5,1445337464 +290,109374,4.0,1445337393 +290,109487,5.0,1445337331 +291,47,4.5,1111489466 +291,163,3.0,1111488408 +291,223,4.0,1111489245 +291,249,3.5,1111489426 +291,315,2.0,1111488366 +291,318,5.0,1111488814 +291,520,3.0,1111488674 +291,541,5.0,1111489688 +291,552,3.0,1111488681 +291,589,4.5,1111489126 +291,590,5.0,1111489284 +291,941,4.5,1111489384 +291,1032,5.0,1111489408 +291,1073,5.0,1111489377 +291,1090,4.5,1111488347 +291,1094,3.5,1111488314 +291,1127,4.5,1111489205 +291,1198,5.0,1111489547 +291,1210,4.5,1111489308 +291,1215,4.0,1111489225 +291,1240,5.0,1111489404 +291,1242,5.0,1111489471 +291,1259,5.0,1111489239 +291,1270,4.5,1111488954 +291,1275,4.5,1111489148 +291,1291,5.0,1111488990 +291,1321,4.5,1111489244 +291,1343,4.5,1111489489 +291,1358,4.0,1111488349 +291,1374,4.0,1111489330 +291,1380,4.0,1111488655 +291,1396,4.0,1111488678 +291,1485,2.5,1111488659 +291,1527,5.0,1111489141 +291,1610,4.0,1111489027 +291,1639,3.5,1111488649 +291,1732,3.0,1111488399 +291,1954,4.0,1111489251 +291,1994,4.5,1111489386 +291,2012,3.5,1111488301 +291,2028,4.5,1111489462 +291,2114,4.5,1111489103 +291,2140,5.0,1111489498 +291,2194,4.5,1111489202 +291,2302,2.5,1111488665 +291,2329,4.5,1111489486 +291,2406,4.0,1111488432 +291,2571,5.0,1111489419 +291,2617,4.0,1111488428 +291,2699,3.0,1111488646 +291,2716,4.5,1111488884 +291,2762,4.5,1111489325 +291,2797,3.5,1111488902 +291,2872,4.5,1111489299 +291,2890,4.0,1111489373 +291,2915,4.0,1111489157 +291,2918,5.0,1111489003 +291,2987,4.0,1111489019 +291,3098,4.0,1111489335 +291,3296,4.0,1111489186 +291,3448,4.0,1111488889 +291,3578,4.5,1111489274 +291,3668,4.5,1111489429 +291,3671,5.0,1111489095 +291,3994,4.5,1111489569 +291,4105,4.5,1111489517 +291,4128,4.0,1111488898 +291,4306,4.5,1111489076 +291,4878,5.0,1111489684 +291,5026,4.0,1111489173 +291,5060,4.5,1111488414 +291,5349,4.5,1111488999 +291,5464,5.0,1111489042 +291,6333,3.5,1111488907 +291,6796,4.5,1111489152 +291,6857,4.5,1111489368 +291,7027,3.0,1111488917 +291,7075,5.0,1111489561 +291,7386,5.0,1111488895 +291,7482,4.5,1111489049 +291,7649,5.0,1111489677 +291,7757,4.0,1111488949 +291,8158,3.5,1111488830 +291,8341,5.0,1111488865 +291,8360,2.5,1111489437 +291,8623,4.0,1111488931 +291,8636,5.0,1111488968 +292,1,4.0,1140049726 +292,2,3.5,1140051284 +292,5,4.0,1140153456 +292,10,4.0,1140051151 +292,11,4.5,1140050157 +292,16,4.5,1140049807 +292,32,4.5,1140051072 +292,39,4.5,1140051201 +292,47,4.5,1140050095 +292,50,5.0,1140050553 +292,62,4.0,1140051231 +292,70,3.5,1140050566 +292,95,3.5,1140051213 +292,110,4.0,1140051043 +292,141,4.0,1140051198 +292,150,4.0,1140050126 +292,153,3.5,1140051087 +292,158,4.0,1140153453 +292,173,3.0,1140049449 +292,180,4.5,1140049928 +292,185,3.0,1140051160 +292,208,3.5,1140051212 +292,223,4.0,1140049989 +292,231,3.0,1161557985 +292,236,3.0,1140049513 +292,260,4.5,1140051047 +292,261,4.0,1140816665 +292,262,4.5,1140149219 +292,277,4.0,1140816676 +292,292,4.5,1140051153 +292,296,5.0,1140051024 +292,318,5.0,1140051038 +292,337,4.5,1140049755 +292,339,3.5,1140051207 +292,353,3.5,1140050176 +292,356,5.0,1140051028 +292,364,4.0,1140049993 +292,367,3.5,1140051155 +292,370,2.5,1140049485 +292,376,4.0,1140816679 +292,377,4.0,1140051076 +292,380,4.5,1140051050 +292,410,4.0,1140050571 +292,432,2.5,1140049440 +292,434,3.0,1140051158 +292,441,4.5,1140049812 +292,442,3.0,1140051316 +292,454,4.0,1140051142 +292,457,4.0,1140050178 +292,466,2.5,1140049516 +292,471,3.5,1140049920 +292,480,3.5,1140051030 +292,500,3.5,1140051115 +292,508,3.5,1140816659 +292,527,5.0,1140051067 +292,529,4.0,1140049987 +292,539,3.5,1140051145 +292,575,4.0,1140050761 +292,586,3.5,1140051234 +292,587,4.0,1140051147 +292,588,4.0,1140049852 +292,589,4.0,1140050022 +292,590,3.0,1140051041 +292,592,3.5,1140051036 +292,593,4.5,1140051026 +292,595,4.0,1140049904 +292,597,4.5,1140051108 +292,608,4.5,1140051073 +292,628,3.5,1140049661 +292,648,4.0,1140050562 +292,736,4.5,1140051119 +292,780,4.5,1140051052 +292,784,0.5,1140049474 +292,786,3.0,1140051315 +292,805,4.0,1140050212 +292,832,4.0,1140049456 +292,838,4.0,1140149218 +292,858,4.5,1140051103 +292,902,4.0,1140149329 +292,915,4.0,1140149242 +292,919,5.0,1140051253 +292,934,4.5,1140050725 +292,1028,4.5,1140149099 +292,1032,3.5,1140050050 +292,1035,4.5,1140050558 +292,1042,4.0,1140050024 +292,1059,5.0,1140149266 +292,1061,4.0,1140050055 +292,1073,4.5,1140049797 +292,1091,3.5,1140050734 +292,1101,4.0,1140049846 +292,1196,4.5,1161558036 +292,1197,5.0,1140050515 +292,1207,5.0,1140149234 +292,1219,4.0,1140149373 +292,1265,3.5,1140050076 +292,1270,4.0,1140049879 +292,1271,5.0,1140050683 +292,1285,4.0,1140149271 +292,1291,4.0,1140050149 +292,1358,3.0,1140049524 +292,1380,4.0,1140049480 +292,1393,4.5,1140049712 +292,1407,3.0,1140816572 +292,1485,2.5,1140049452 +292,1500,4.0,1140049482 +292,1513,2.5,1140050713 +292,1527,4.0,1140051256 +292,1569,3.5,1140816594 +292,1580,3.5,1140049922 +292,1625,4.0,1140049909 +292,1639,3.5,1140050172 +292,1653,4.0,1140049445 +292,1672,4.0,1140050121 +292,1678,4.5,1140149137 +292,1680,4.5,1140049998 +292,1682,4.0,1140049779 +292,1704,4.5,1140051269 +292,1721,4.5,1140051202 +292,1722,4.0,1140050529 +292,1748,4.5,1140050198 +292,1777,4.0,1140050518 +292,1876,3.5,1140153421 +292,1917,4.0,1140154238 +292,1923,4.0,1140051279 +292,1947,5.0,1140149342 +292,1961,5.0,1140051242 +292,1968,5.0,1140049974 +292,2000,4.0,1140049863 +292,2001,3.5,1140816588 +292,2005,4.5,1140050058 +292,2028,3.5,1140050533 +292,2081,4.5,1140049949 +292,2100,4.0,1140153413 +292,2114,4.0,1140049910 +292,2115,4.5,1140816569 +292,2144,4.5,1140049748 +292,2161,3.5,1140049620 +292,2174,3.5,1140153391 +292,2231,4.5,1140050020 +292,2268,4.0,1140816566 +292,2291,5.0,1140050541 +292,2297,5.0,1140050653 +292,2302,4.5,1140049835 +292,2321,4.5,1140049696 +292,2336,4.0,1140149008 +292,2353,2.5,1140049774 +292,2355,4.0,1140049802 +292,2396,4.5,1140050535 +292,2406,4.0,1140049491 +292,2424,3.5,1140816597 +292,2443,3.5,1140049955 +292,2496,4.5,1140050659 +292,2501,4.5,1140153593 +292,2502,4.5,1140049489 +292,2563,4.5,1140049667 +292,2571,4.0,1140051100 +292,2580,3.0,1140149006 +292,2599,3.0,1140049478 +292,2628,3.5,1161557996 +292,2671,4.5,1140050320 +292,2683,3.5,1161558013 +292,2700,1.5,1140049466 +292,2706,3.0,1140816524 +292,2710,2.5,1140816520 +292,2762,4.5,1140051137 +292,2763,4.5,1140816550 +292,2804,5.0,1140148984 +292,2841,3.0,1140049876 +292,2858,5.0,1140051101 +292,2861,4.5,1140050657 +292,2915,4.0,1140149142 +292,2916,4.0,1140154219 +292,2918,4.5,1140049813 +292,2959,5.0,1140051244 +292,2987,4.0,1140051282 +292,3052,4.5,1140049916 +292,3053,3.0,1140050639 +292,3078,3.5,1140049829 +292,3147,3.5,1140816529 +292,3148,4.0,1140148978 +292,3176,3.5,1140816538 +292,3210,4.0,1140149107 +292,3255,4.0,1140049832 +292,3271,4.0,1140050082 +292,3358,4.5,1140050628 +292,3408,4.0,1140049941 +292,3418,3.0,1140816544 +292,3481,4.5,1140050085 +292,3499,2.5,1140049883 +292,3556,3.5,1140050624 +292,3578,4.0,1140051249 +292,3623,3.0,1161558015 +292,3753,3.5,1140816479 +292,3793,4.0,1140049849 +292,3825,4.0,1140153512 +292,3882,4.5,1140153505 +292,3897,5.0,1140049437 +292,3911,4.0,1140149274 +292,3916,4.0,1140050621 +292,3949,3.5,1140050590 +292,3993,3.0,1140049888 +292,4014,4.5,1140148958 +292,4027,3.5,1140816541 +292,4034,3.0,1140049526 +292,4041,4.5,1140153503 +292,4054,4.0,1140050603 +292,4069,4.0,1140050608 +292,4085,3.5,1140049753 +292,4148,4.0,1140153514 +292,4246,3.5,1140049837 +292,4306,4.5,1140051271 +292,4308,4.5,1140149154 +292,4489,4.0,1140049719 +292,4587,3.5,1140050812 +292,4616,4.0,1140049868 +292,4676,3.5,1140050820 +292,4787,4.0,1140049945 +292,4886,4.5,1140049518 +292,4896,3.5,1161558004 +292,4963,4.5,1140050181 +292,4993,4.0,1140816501 +292,4995,4.0,1161558010 +292,5066,4.0,1140050808 +292,5103,5.0,1140049747 +292,5294,4.5,1140049781 +292,5296,4.0,1140050817 +292,5299,4.0,1140050204 +292,5308,4.0,1140050605 +292,5377,4.0,1140049900 +292,5415,4.0,1140050789 +292,5418,3.0,1140050525 +292,5445,3.5,1140049995 +292,5630,4.0,1140050041 +292,5679,4.0,1140050093 +292,5693,4.0,1140050786 +292,5791,5.0,1140149340 +292,5816,2.0,1176920178 +292,5952,3.5,1161558028 +292,5954,3.5,1140149109 +292,5989,3.5,1140050584 +292,5991,4.5,1140050071 +292,6058,3.5,1140050793 +292,6218,4.5,1140050588 +292,6297,3.5,1140049663 +292,6333,4.0,1140049962 +292,6365,3.5,1140050598 +292,6377,4.5,1140816489 +292,6378,4.0,1140050051 +292,6502,4.5,1140149280 +292,6765,4.0,1140050779 +292,6863,3.5,1140049740 +292,6873,3.0,1140050781 +292,6874,4.5,1140149120 +292,6934,4.0,1161557998 +292,6944,4.5,1140050749 +292,7064,4.0,1140050907 +292,7147,4.5,1140148986 +292,7153,3.5,1140816485 +292,7158,3.5,1140149200 +292,7161,3.5,1140050754 +292,7438,4.5,1140149094 +292,7624,4.0,1140049655 +292,8366,4.0,1140049957 +292,8373,3.5,1140050763 +292,8528,4.0,1140153474 +292,8638,4.0,1140149321 +292,8784,4.5,1140050424 +292,8958,4.0,1140148968 +292,8961,4.5,1161558000 +292,30822,4.0,1140050009 +292,31433,4.5,1140050308 +292,32587,4.5,1140153443 +292,33166,3.5,1140148962 +292,33493,4.0,1161558022 +292,35836,3.5,1140050453 +292,40629,4.5,1140050264 +292,41566,4.5,1161558025 +293,1,4.0,1064615574 +293,76,3.5,1064615891 +293,110,3.5,1064616293 +293,147,4.0,1064616812 +293,247,2.0,1064617041 +293,260,2.5,1064617019 +293,345,3.5,1064616072 +293,356,3.5,1064615865 +293,435,3.0,1063997468 +293,442,2.0,1063997434 +293,497,4.0,1064615947 +293,541,3.5,1064616290 +293,589,3.5,1064616959 +293,594,0.5,1063997440 +293,653,3.5,1064616701 +293,741,4.5,1064616056 +293,750,4.0,1063997462 +293,924,4.0,1064615628 +293,1022,1.5,1064616090 +293,1073,0.5,1064617034 +293,1080,1.5,1063997529 +293,1097,2.0,1064617079 +293,1183,3.0,1063997448 +293,1197,5.0,1064615292 +293,1200,4.5,1064615365 +293,1240,3.5,1064616963 +293,1270,3.0,1064616322 +293,1274,4.0,1064616043 +293,1278,4.0,1064615344 +293,1320,3.0,1064615376 +293,1374,3.0,1063997497 +293,1376,4.0,1064616862 +293,1407,3.5,1063997539 +293,1641,4.0,1063997482 +293,1676,2.0,1064615649 +293,1690,2.0,1064615383 +293,1717,3.5,1064615907 +293,1805,2.5,1064615993 +293,1923,3.5,1064615950 +293,1960,4.5,1064616014 +293,1968,4.5,1063997426 +293,2096,4.0,1064615822 +293,2116,3.0,1064615534 +293,2174,1.5,1063997516 +293,2248,4.5,1064615940 +293,2291,5.0,1064615782 +293,2329,4.5,1064616242 +293,2355,4.5,1063997455 +293,2496,4.5,1064616017 +293,2572,4.5,1064615966 +293,2788,4.0,1064615930 +293,3114,3.0,1063997506 +293,3176,1.5,1064615457 +293,3189,4.5,1064616412 +293,3479,2.0,1064617048 +293,3701,3.5,1064615370 +293,3911,4.5,1064616386 +293,3996,4.5,1063997522 +293,4143,0.5,1064615273 +293,4210,3.0,1064616653 +293,4306,4.0,1064617001 +293,4367,3.5,1064616946 +293,4369,5.0,1064615320 +293,4427,5.0,1064615764 +293,4557,4.0,1064616196 +293,4584,5.0,1064616222 +293,4886,3.0,1064615588 +293,4896,4.0,1064615557 +293,4993,4.0,1064615526 +293,4995,4.0,1064616318 +293,5069,4.5,1064617089 +293,5218,4.0,1064615616 +293,5220,3.5,1064615476 +293,5463,4.0,1064616681 +293,5952,4.0,1064615536 +293,5991,3.5,1064616622 +293,6170,1.5,1064616314 +293,6539,5.0,1063997593 +293,6796,4.0,1064616302 +294,1,4.0,1047071649 +294,5,3.5,1062619499 +294,7,5.0,1047072215 +294,10,3.5,1054068559 +294,11,3.0,1048536701 +294,12,4.0,1062621382 +294,17,4.0,1048536399 +294,26,3.5,1082754003 +294,28,4.5,1102107967 +294,34,3.0,1047071968 +294,39,4.0,1048536677 +294,44,3.0,1054068756 +294,48,3.5,1106705556 +294,62,3.5,1106700701 +294,73,4.0,1047071337 +294,92,3.5,1119925079 +294,104,3.5,1062536923 +294,107,4.0,1047071430 +294,110,3.0,1054068398 +294,112,3.0,1054068512 +294,153,4.0,1047072927 +294,160,3.5,1054068730 +294,163,4.0,1106705532 +294,165,3.0,1159991791 +294,168,3.0,1048536964 +294,170,3.0,1054068789 +294,185,3.5,1082752914 +294,193,3.0,1082753356 +294,203,4.0,1062619585 +294,207,3.0,1048536782 +294,224,4.0,1047072151 +294,225,3.0,1090422910 +294,234,3.0,1082753980 +294,235,3.0,1082753766 +294,236,4.0,1047072383 +294,237,4.5,1055278808 +294,252,4.5,1055278835 +294,253,3.0,1082752922 +294,260,4.0,1159991628 +294,261,3.5,1090423171 +294,262,3.5,1090422648 +294,265,3.0,1048536429 +294,270,4.0,1119924471 +294,289,4.0,1105649274 +294,292,3.0,1054068450 +294,300,3.5,1082752935 +294,305,3.0,1112389812 +294,313,4.0,1048537624 +294,317,3.5,1062622280 +294,318,3.0,1082752877 +294,329,3.0,1054068733 +294,338,3.5,1119924761 +294,339,4.5,1106707903 +294,342,2.5,1114025751 +294,355,4.0,1047074215 +294,356,4.0,1047071834 +294,360,4.0,1047072606 +294,361,4.0,1048536639 +294,364,4.5,1055278918 +294,367,4.0,1047072405 +294,368,4.0,1106705329 +294,370,3.5,1062619662 +294,376,3.5,1106705422 +294,377,4.0,1048536550 +294,380,4.0,1106705129 +294,405,2.5,1054068746 +294,410,4.0,1062536836 +294,412,4.0,1082753976 +294,419,3.5,1062620135 +294,435,3.0,1047074309 +294,440,4.5,1055278745 +294,445,3.0,1082754306 +294,454,3.5,1082752908 +294,455,3.5,1062622406 +294,457,3.5,1159991613 +294,466,3.5,1054068767 +294,468,4.0,1047072283 +294,480,4.0,1159991607 +294,497,5.0,1047071673 +294,500,4.0,1047072163 +294,502,2.5,1054068962 +294,513,3.0,1048536718 +294,520,4.5,1055278577 +294,524,3.5,1071696039 +294,527,4.0,1082752888 +294,531,3.5,1062622249 +294,539,4.0,1047071994 +294,541,3.5,1082752967 +294,543,3.0,1048536701 +294,546,2.5,1054068761 +294,551,3.5,1106705333 +294,552,4.5,1106707960 +294,553,3.0,1082753026 +294,585,4.0,1047072843 +294,586,3.0,1047072383 +294,587,3.0,1048536701 +294,588,5.0,1047071788 +294,589,3.0,1054068393 +294,590,3.0,1071697243 +294,592,3.0,1159991647 +294,594,4.0,1047070378 +294,595,5.0,1047071310 +294,596,3.0,1048537506 +294,597,3.0,1048536589 +294,605,4.0,1048536796 +294,616,4.0,1048537566 +294,619,3.5,1061481899 +294,637,3.0,1082753338 +294,648,4.0,1159991786 +294,650,3.5,1119924948 +294,653,3.0,1106705389 +294,674,3.0,1071697304 +294,708,4.0,1047072262 +294,709,3.0,1048537584 +294,743,3.0,1047074233 +294,745,5.0,1048537484 +294,750,3.0,1093376509 +294,761,3.0,1090423342 +294,780,4.5,1106707945 +294,783,3.0,1047071414 +294,802,2.0,1048536574 +294,805,3.5,1082753064 +294,818,3.0,1047074163 +294,830,4.0,1047072724 +294,833,2.0,1047074195 +294,838,4.5,1055278523 +294,879,2.5,1124152074 +294,898,4.0,1106701536 +294,899,5.0,1047071274 +294,900,5.0,1047071310 +294,901,3.5,1055279057 +294,902,2.0,1047070345 +294,903,3.5,1105649201 +294,904,4.0,1077573479 +294,906,4.5,1077573454 +294,907,4.0,1048536602 +294,908,4.5,1106705453 +294,910,4.0,1062536640 +294,911,4.5,1055278517 +294,912,4.0,1048536399 +294,913,3.0,1047070673 +294,914,3.5,1082753273 +294,915,3.0,1048536450 +294,916,4.0,1048536464 +294,917,3.5,1119924534 +294,918,2.0,1047071310 +294,919,4.0,1106705274 +294,920,4.0,1048536589 +294,926,4.0,1119924230 +294,930,3.5,1064251668 +294,931,3.0,1054069501 +294,932,3.0,1048536701 +294,933,4.5,1106700638 +294,935,3.5,1055278619 +294,938,3.0,1047071361 +294,945,4.0,1047071290 +294,955,4.5,1055278799 +294,969,3.5,1077660182 +294,1014,3.5,1119924374 +294,1015,3.5,1071697154 +294,1017,4.0,1062622284 +294,1018,4.0,1047072485 +294,1019,3.0,1071697199 +294,1020,4.0,1047072445 +294,1022,5.0,1047071361 +294,1023,3.5,1124151130 +294,1024,3.0,1047071395 +294,1025,3.0,1048537584 +294,1027,4.0,1061481860 +294,1028,3.5,1082753109 +294,1029,3.0,1047071382 +294,1030,2.0,1047071485 +294,1031,3.0,1047071430 +294,1032,3.0,1047071414 +294,1033,3.0,1048537608 +294,1035,4.0,1047071274 +294,1036,3.5,1106705252 +294,1042,4.5,1055278852 +294,1064,3.0,1047072640 +294,1073,4.0,1047072227 +294,1079,3.5,1062536612 +294,1080,3.0,1047071834 +294,1081,2.0,1047071414 +294,1086,4.0,1077573458 +294,1088,3.5,1055278624 +294,1092,3.0,1077573585 +294,1097,3.0,1062622347 +294,1125,4.0,1062537000 +294,1136,4.5,1062536648 +294,1148,5.0,1047071604 +294,1167,3.0,1047070415 +294,1188,4.5,1106707675 +294,1196,4.0,1159991784 +294,1197,5.0,1047070314 +294,1198,4.5,1055278751 +294,1210,4.0,1047070394 +294,1215,3.0,1047072752 +294,1223,4.0,1048537484 +294,1234,4.0,1062536669 +294,1265,3.0,1048536409 +294,1269,5.0,1047071684 +294,1270,4.0,1161746877 +294,1271,3.0,1082753305 +294,1275,3.0,1054068709 +294,1278,4.5,1062536592 +294,1282,4.5,1106708015 +294,1285,3.0,1047072011 +294,1288,3.5,1091809058 +294,1291,4.5,1055278915 +294,1307,3.5,1106705289 +294,1339,3.0,1048536856 +294,1345,3.5,1120446774 +294,1353,2.0,1048536869 +294,1356,3.5,1054068556 +294,1363,4.0,1106700981 +294,1366,4.0,1090422659 +294,1370,2.5,1054068636 +294,1377,3.0,1047072589 +294,1380,4.5,1055278586 +294,1381,4.0,1047071532 +294,1387,3.0,1054068369 +294,1391,3.0,1047072959 +294,1396,4.0,1061481730 +294,1407,3.5,1082753046 +294,1416,4.5,1055278747 +294,1438,2.5,1054068413 +294,1441,3.0,1047072024 +294,1449,3.5,1082753500 +294,1453,4.0,1105649326 +294,1457,3.5,1055279054 +294,1485,4.0,1047072370 +294,1489,4.0,1047071430 +294,1513,4.0,1047070713 +294,1517,4.0,1106705413 +294,1527,4.5,1055278805 +294,1544,3.0,1054068726 +294,1552,4.0,1055278950 +294,1562,2.5,1054068722 +294,1566,3.0,1047071456 +294,1569,4.5,1055278740 +294,1580,4.5,1055278537 +294,1584,3.5,1082753008 +294,1593,3.0,1047072654 +294,1597,4.0,1048536833 +294,1608,3.5,1082753092 +294,1610,3.5,1071696185 +294,1645,3.0,1077573544 +294,1653,3.5,1106705476 +294,1672,4.0,1119925518 +294,1674,3.0,1048536525 +294,1678,4.0,1106700788 +294,1681,3.0,1054068993 +294,1682,4.0,1082753069 +294,1688,4.5,1055278794 +294,1704,3.0,1159049682 +294,1713,2.0,1047072575 +294,1717,3.5,1141056273 +294,1721,3.5,1106705225 +294,1722,3.0,1048536701 +294,1735,2.5,1071005556 +294,1747,4.0,1047072116 +294,1777,4.5,1055278818 +294,1779,4.0,1063633667 +294,1797,4.0,1082754248 +294,1801,4.0,1106708119 +294,1805,3.0,1077573547 +294,1858,2.5,1054068548 +294,1876,3.5,1119924418 +294,1881,4.0,1132097652 +294,1888,3.0,1047072416 +294,1894,4.0,1047072617 +294,1907,4.0,1134756496 +294,1934,3.0,1055278655 +294,1947,4.0,1048536464 +294,1949,4.0,1119924094 +294,1956,3.5,1119923835 +294,1967,3.5,1062622300 +294,1968,3.5,1062537061 +294,1994,3.0,1082753347 +294,2005,3.5,1062622304 +294,2006,4.5,1055278677 +294,2013,2.0,1054068456 +294,2017,3.0,1047071499 +294,2018,3.0,1048537506 +294,2031,3.5,1062619422 +294,2033,3.5,1076966006 +294,2038,3.0,1047070617 +294,2039,3.5,1062622431 +294,2040,4.0,1159992463 +294,2042,3.5,1062620067 +294,2045,3.0,1054069631 +294,2046,3.5,1119924856 +294,2048,4.5,1055278612 +294,2052,3.0,1047074181 +294,2053,4.0,1106700766 +294,2054,4.0,1047072959 +294,2057,3.5,1090423028 +294,2058,3.0,1071696303 +294,2059,4.0,1047070432 +294,2072,3.5,1119925385 +294,2078,3.0,1047072102 +294,2080,4.0,1047071290 +294,2081,5.0,1047071337 +294,2082,3.5,1062622376 +294,2083,4.0,1047071414 +294,2085,3.0,1048537523 +294,2087,4.0,1047071337 +294,2089,4.0,1048537566 +294,2090,3.0,1048537542 +294,2092,3.0,1047071532 +294,2093,3.0,1047070713 +294,2094,3.0,1054068462 +294,2096,5.0,1047071382 +294,2099,2.0,1048537566 +294,2100,2.5,1054069308 +294,2102,3.0,1048537542 +294,2105,3.5,1082753253 +294,2109,3.5,1062537110 +294,2115,4.5,1055278837 +294,2116,3.0,1048537566 +294,2123,2.0,1048537608 +294,2124,4.0,1047072556 +294,2125,4.5,1055278766 +294,2136,4.0,1119924404 +294,2137,3.0,1048537523 +294,2139,3.0,1048537566 +294,2140,4.0,1124154671 +294,2141,3.0,1048537584 +294,2142,3.0,1047073014 +294,2143,3.5,1055279041 +294,2144,3.5,1055279020 +294,2145,2.0,1047072236 +294,2146,3.5,1125284106 +294,2150,4.0,1062537026 +294,2151,4.5,1106707664 +294,2153,2.5,1054069036 +294,2160,3.5,1119923918 +294,2161,3.5,1062622312 +294,2162,3.5,1062622447 +294,2163,3.5,1106708140 +294,2167,3.5,1128957057 +294,2168,4.5,1106708143 +294,2193,3.5,1054068471 +294,2206,3.5,1119923882 +294,2253,3.0,1047074205 +294,2259,2.0,1048537346 +294,2273,3.5,1055279016 +294,2291,3.5,1126407814 +294,2301,3.0,1047072673 +294,2316,2.0,1048536856 +294,2321,4.0,1062537038 +294,2335,3.5,1124151100 +294,2336,3.5,1155576258 +294,2355,4.0,1047071021 +294,2366,3.5,1071697261 +294,2367,3.5,1102111700 +294,2375,4.5,1055278569 +294,2376,3.0,1054068630 +294,2384,3.5,1062619546 +294,2385,2.0,1048537015 +294,2393,3.0,1054068467 +294,2394,4.5,1055278637 +294,2396,4.0,1047070730 +294,2399,3.5,1082753602 +294,2405,4.0,1047072317 +294,2406,4.5,1055278580 +294,2413,4.5,1062619431 +294,2420,3.5,1119924774 +294,2424,4.0,1048536762 +294,2431,3.5,1062619311 +294,2457,2.0,1071696252 +294,2478,3.0,1047072826 +294,2485,4.0,1047070730 +294,2491,2.5,1055278425 +294,2496,4.0,1047072352 +294,2500,3.0,1062620123 +294,2501,4.0,1112390215 +294,2502,4.0,1106707785 +294,2528,2.5,1054068585 +294,2541,3.0,1047071031 +294,2565,4.0,1119925388 +294,2567,3.0,1047072370 +294,2571,4.5,1055278632 +294,2572,3.0,1047070596 +294,2581,4.0,1105649266 +294,2582,3.5,1062619933 +294,2599,3.5,1163346198 +294,2605,4.5,1055278912 +294,2616,3.0,1054068812 +294,2617,4.5,1106705502 +294,2622,4.5,1106708206 +294,2628,2.5,1124150876 +294,2640,3.0,1054068295 +294,2643,3.0,1071696431 +294,2644,4.0,1102111564 +294,2657,3.0,1047071456 +294,2664,3.5,1106700744 +294,2671,3.0,1047071980 +294,2672,3.5,1119924599 +294,2683,3.0,1047070596 +294,2687,3.0,1048537523 +294,2690,5.0,1047070662 +294,2691,3.5,1124151414 +294,2701,3.0,1047070749 +294,2709,3.5,1055278992 +294,2712,3.0,1092514336 +294,2716,4.0,1047071073 +294,2717,4.0,1062619349 +294,2723,4.0,1047070688 +294,2724,4.0,1047070730 +294,2745,3.5,1082754141 +294,2746,4.0,1047071430 +294,2747,2.0,1047072262 +294,2748,3.5,1106704855 +294,2759,4.0,1159991294 +294,2763,3.5,1106705601 +294,2791,4.0,1047071742 +294,2792,3.5,1062619522 +294,2797,3.5,1062536975 +294,2804,4.0,1055278704 +294,2805,4.0,1047071110 +294,2822,2.5,1054069991 +294,2826,3.0,1071696235 +294,2846,4.0,1062622389 +294,2866,3.0,1082753581 +294,2874,4.0,1143064157 +294,2876,3.0,1048537634 +294,2877,2.0,1124151977 +294,2886,3.0,1119924548 +294,2888,3.0,1047070638 +294,2915,2.0,1047072116 +294,2916,3.5,1106705343 +294,2918,3.5,1062536582 +294,2926,4.0,1047072272 +294,2940,3.5,1124151964 +294,2941,3.0,1047071382 +294,2942,3.0,1048536923 +294,2947,3.0,1054068321 +294,2948,3.0,1054068324 +294,2949,3.0,1047070365 +294,2950,2.0,1048537358 +294,2961,5.0,1047070730 +294,2987,3.5,1106705357 +294,2989,2.5,1054068555 +294,2990,2.5,1054068510 +294,2991,2.5,1054068603 +294,2993,2.5,1054068567 +294,2997,3.0,1047070994 +294,3000,3.0,1048537484 +294,3004,4.0,1047070605 +294,3005,4.0,1047071004 +294,3033,4.0,1047072454 +294,3034,4.5,1055278846 +294,3052,4.0,1120446587 +294,3054,4.5,1055278724 +294,3079,3.5,1090423525 +294,3081,4.0,1103227369 +294,3082,3.5,1054068538 +294,3097,4.0,1119922769 +294,3107,2.0,1054068543 +294,3114,4.0,1047071176 +294,3153,3.0,1054068489 +294,3156,3.0,1047072306 +294,3159,4.5,1055278663 +294,3166,4.0,1071697413 +294,3168,1.5,1071697253 +294,3174,2.0,1047071110 +294,3175,4.5,1106708271 +294,3210,3.0,1047072011 +294,3247,4.0,1062619308 +294,3248,3.0,1047074107 +294,3253,3.0,1047071918 +294,3254,2.0,1047072640 +294,3255,3.0,1047070331 +294,3257,3.0,1048536893 +294,3258,4.0,1047072968 +294,3259,3.0,1048536772 +294,3264,3.5,1062619536 +294,3270,4.5,1119924648 +294,3299,3.0,1090423005 +294,3301,4.0,1062536792 +294,3363,3.5,1062536606 +294,3388,3.0,1047072836 +294,3396,4.0,1055278595 +294,3397,4.5,1055278589 +294,3398,4.5,1055278572 +294,3399,3.0,1047072227 +294,3408,3.0,1047071049 +294,3429,3.0,1048537484 +294,3450,4.0,1062536801 +294,3452,3.0,1048536923 +294,3462,3.5,1061481741 +294,3471,3.5,1119923472 +294,3477,3.0,1119925016 +294,3481,3.0,1082753156 +294,3483,4.5,1093376429 +294,3489,3.0,1071697266 +294,3507,3.0,1047071720 +294,3512,5.0,1047071148 +294,3520,4.0,1047074337 +294,3536,4.5,1055278564 +294,3545,2.0,1047071290 +294,3546,3.5,1119923683 +294,3549,4.0,1047071274 +294,3552,3.5,1119923218 +294,3564,3.5,1119924823 +294,3578,4.0,1047071073 +294,3594,4.5,1106708279 +294,3599,4.0,1047071337 +294,3604,3.0,1047071382 +294,3606,4.0,1047070688 +294,3608,2.0,1047072299 +294,3611,3.0,1048537608 +294,3612,5.0,1047071337 +294,3616,3.5,1124150406 +294,3623,3.0,1047071124 +294,3624,3.0,1054068515 +294,3633,2.5,1054068504 +294,3635,2.5,1054068527 +294,3638,3.0,1048536893 +294,3639,2.5,1054068499 +294,3668,3.0,1048536525 +294,3669,3.0,1047074142 +294,3671,3.0,1062536588 +294,3673,4.0,1062622455 +294,3675,4.0,1047071310 +294,3688,2.5,1062619475 +294,3699,2.5,1054069686 +294,3705,3.0,1048536981 +294,3717,4.0,1055278533 +294,3751,4.0,1047071021 +294,3759,3.0,1054069169 +294,3771,3.0,1054068501 +294,3775,3.0,1047071382 +294,3791,4.5,1102110474 +294,3793,4.5,1055278820 +294,3807,3.0,1071696520 +294,3812,3.0,1047071934 +294,3825,4.0,1124153369 +294,3857,3.5,1151335173 +294,3863,3.5,1096664152 +294,3868,3.0,1047072215 +294,3869,3.5,1062619651 +294,3877,3.0,1054069056 +294,3882,4.0,1047072745 +294,3889,2.5,1054068980 +294,3901,3.0,1047072788 +294,3911,4.0,1047071752 +294,3921,3.0,1047074195 +294,3922,3.0,1047072911 +294,3924,3.0,1092325363 +294,3927,4.0,1106704637 +294,3928,3.5,1062536830 +294,3936,3.5,1119922968 +294,3948,3.5,1055279093 +294,3963,4.0,1106701153 +294,3964,3.0,1048537542 +294,3968,3.5,1055278880 +294,3977,4.5,1055278828 +294,3979,3.5,1106700882 +294,3984,2.5,1054068524 +294,3993,3.5,1064251656 +294,3996,4.0,1106705394 +294,3997,3.5,1071697297 +294,4014,4.0,1047071766 +294,4016,4.0,1047071958 +294,4018,3.5,1077660214 +294,4024,2.5,1092325535 +294,4025,4.5,1055278864 +294,4027,4.0,1062536612 +294,4029,3.0,1047072056 +294,4030,3.5,1090423414 +294,4036,3.0,1082754087 +294,4039,3.0,1047071430 +294,4054,3.0,1048536677 +294,4061,3.0,1048536483 +294,4062,2.0,1048536615 +294,4068,3.5,1095364089 +294,4069,4.0,1047072745 +294,4081,3.0,1047074337 +294,4090,3.0,1048537542 +294,4124,2.0,1047070432 +294,4130,3.5,1062620098 +294,4132,3.0,1047073014 +294,4133,2.0,1054068986 +294,4141,3.5,1055278396 +294,4142,2.5,1054068953 +294,4168,3.5,1062536781 +294,4169,4.5,1112389930 +294,4177,4.0,1077573485 +294,4188,3.0,1047071456 +294,4212,4.0,1077573492 +294,4219,4.0,1047072534 +294,4228,3.5,1062536768 +294,4231,3.5,1055798095 +294,4246,4.0,1048536535 +294,4248,4.0,1047072470 +294,4270,3.5,1055279107 +294,4291,4.0,1047072430 +294,4294,2.0,1047071456 +294,4299,3.0,1054068571 +294,4306,5.0,1048537506 +294,4308,5.0,1047071361 +294,4317,3.0,1048536952 +294,4344,4.0,1125284091 +294,4356,3.5,1149462617 +294,4357,3.5,1147138594 +294,4359,3.0,1047071662 +294,4366,4.0,1117751702 +294,4367,3.0,1054068821 +294,4387,3.0,1055798108 +294,4388,3.0,1092067676 +294,4394,3.0,1047071517 +294,4402,2.0,1047072776 +294,4420,3.0,1082754069 +294,4446,3.5,1124151034 +294,4447,4.5,1055278567 +294,4467,3.0,1071697239 +294,4489,4.0,1062536517 +294,4499,4.5,1055278520 +294,4508,3.0,1106700873 +294,4511,2.5,1054069326 +294,4519,3.0,1048537594 +294,4563,3.5,1062619489 +294,4571,3.0,1071697219 +294,4587,3.5,1062619480 +294,4621,3.5,1062619394 +294,4639,3.0,1047070973 +294,4663,4.0,1047072880 +294,4678,3.5,1062619569 +294,4699,4.0,1092690722 +294,4700,3.5,1055279010 +294,4701,4.0,1047072440 +294,4738,4.0,1047072430 +294,4743,4.5,1106707703 +294,4757,3.5,1112390434 +294,4767,4.0,1119925284 +294,4774,3.5,1062536945 +294,4800,3.5,1102111714 +294,4802,4.0,1047071807 +294,4816,4.0,1047072493 +294,4818,2.0,1054068878 +294,4823,4.5,1055278868 +294,4846,3.5,1054068316 +294,4857,3.0,1047071274 +294,4862,3.5,1106702026 +294,4865,3.5,1077573535 +294,4886,4.5,1055278643 +294,4887,2.5,1090530605 +294,4896,4.0,1062622258 +294,4912,4.0,1143064198 +294,4941,1.5,1054068885 +294,4963,4.0,1047071918 +294,4974,3.0,1090422453 +294,4992,3.5,1077573340 +294,4993,4.0,1071697132 +294,4995,3.0,1077660032 +294,5012,1.0,1047071470 +294,5013,3.0,1047071662 +294,5021,4.0,1164512355 +294,5038,4.0,1048537506 +294,5047,3.0,1077659882 +294,5048,3.5,1125875329 +294,5053,3.5,1159992570 +294,5064,4.0,1112390008 +294,5103,4.5,1055278546 +294,5109,3.5,1159992434 +294,5120,1.5,1062536600 +294,5128,4.0,1106701111 +294,5159,3.0,1048537624 +294,5168,4.5,1055278541 +294,5214,3.5,1062619399 +294,5218,2.5,1054069134 +294,5254,3.0,1128957059 +294,5279,3.0,1047072011 +294,5297,4.0,1103227364 +294,5299,4.5,1055278600 +294,5303,4.0,1047074254 +294,5305,3.5,1062621868 +294,5308,3.5,1062619317 +294,5309,3.0,1047072947 +294,5312,3.0,1060805119 +294,5313,3.0,1058904991 +294,5337,4.0,1047074130 +294,5349,4.0,1054068300 +294,5354,3.5,1062536736 +294,5357,3.5,1119925087 +294,5361,3.5,1071697164 +294,5372,4.0,1047071485 +294,5375,3.0,1047071337 +294,5378,3.0,1124150867 +294,5380,4.5,1062536548 +294,5401,3.5,1062536912 +294,5418,4.0,1102108184 +294,5419,4.0,1055798075 +294,5444,4.0,1055278962 +294,5449,4.0,1163634121 +294,5452,3.0,1048537412 +294,5459,4.0,1047072764 +294,5460,2.5,1054068889 +294,5481,4.0,1123973142 +294,5504,4.0,1114025763 +294,5507,3.5,1160767173 +294,5530,4.0,1112389683 +294,5538,3.0,1048537672 +294,5539,3.0,1048537672 +294,5540,4.0,1071697358 +294,5541,3.0,1047072788 +294,5609,3.5,1095364078 +294,5618,4.5,1054068267 +294,5620,4.5,1055278935 +294,5629,4.0,1062622264 +294,5650,3.0,1047072024 +294,5693,2.0,1047071310 +294,5705,3.0,1047071499 +294,5747,3.5,1119923947 +294,5809,3.5,1095363977 +294,5816,4.0,1062622261 +294,5841,3.0,1048537368 +294,5872,4.0,1102107942 +294,5882,4.0,1151597021 +294,5900,3.5,1055278691 +294,5943,4.0,1125765372 +294,5952,4.0,1082753292 +294,5955,4.0,1057170888 +294,5957,4.0,1077573362 +294,5989,4.5,1055278696 +294,5991,4.5,1106707690 +294,6060,3.5,1121694204 +294,6093,3.5,1159992725 +294,6124,3.0,1062537014 +294,6155,4.0,1062171626 +294,6156,4.0,1047070532 +294,6157,3.5,1077573307 +294,6170,3.5,1119923171 +294,6182,4.0,1130360138 +294,6183,4.5,1055278681 +294,6212,3.5,1093376475 +294,6218,4.5,1058905031 +294,6245,3.0,1047070463 +294,6252,4.0,1138983587 +294,6254,4.0,1143739341 +294,6260,3.5,1119924439 +294,6266,4.0,1159991425 +294,6294,4.0,1112389758 +294,6296,4.5,1055278675 +294,6316,3.5,1062620111 +294,6333,4.5,1055278940 +294,6345,3.5,1082754336 +294,6355,4.5,1112390505 +294,6357,3.5,1054069352 +294,6358,4.0,1054069739 +294,6365,4.0,1064431400 +294,6367,4.0,1071696006 +294,6373,4.0,1103227330 +294,6377,4.0,1073939865 +294,6378,4.5,1062536369 +294,6385,4.0,1061481943 +294,6387,4.0,1062536442 +294,6390,4.0,1112390478 +294,6414,3.5,1062622323 +294,6423,3.5,1062619979 +294,6454,3.5,1124152768 +294,6480,4.0,1061481793 +294,6493,4.5,1102107898 +294,6503,4.0,1058905010 +294,6533,3.5,1061481824 +294,6535,4.0,1105649306 +294,6536,4.5,1128957039 +294,6539,4.5,1060030674 +294,6541,4.0,1082753448 +294,6561,4.0,1157813545 +294,6564,3.5,1112389725 +294,6568,3.5,1151335089 +294,6593,4.0,1149957517 +294,6596,3.5,1102107909 +294,6618,3.5,1081803920 +294,6646,3.0,1082754019 +294,6659,4.0,1062537020 +294,6662,4.0,1112390280 +294,6663,3.5,1062536819 +294,6665,3.5,1102111535 +294,6703,3.5,1163268951 +294,6709,3.5,1106700618 +294,6723,3.5,1071696157 +294,6732,4.0,1062619901 +294,6744,3.5,1063633853 +294,6754,4.5,1164512381 +294,6755,3.0,1121694174 +294,6765,3.5,1071695972 +294,6785,3.5,1077660201 +294,6791,4.5,1119924149 +294,6863,3.5,1103227267 +294,6873,3.5,1065734047 +294,6874,3.0,1071695953 +294,6888,3.5,1132097689 +294,6889,3.0,1081803732 +294,6893,4.0,1082753661 +294,6942,4.0,1084474236 +294,6944,4.0,1082753654 +294,6959,3.5,1125765397 +294,6970,4.0,1090422539 +294,6974,4.0,1124151299 +294,6996,2.5,1071696909 +294,6999,3.5,1077660494 +294,7000,3.5,1151437977 +294,7001,3.5,1077573421 +294,7046,3.5,1119925331 +294,7060,3.5,1082753782 +294,7075,4.5,1071696964 +294,7078,3.5,1119923185 +294,7080,4.0,1119922954 +294,7082,4.0,1077660016 +294,7102,3.0,1082754322 +294,7122,3.5,1157813559 +294,7142,4.0,1091809044 +294,7147,3.5,1084301305 +294,7149,4.0,1105648008 +294,7151,4.0,1135700644 +294,7153,4.0,1073426072 +294,7155,4.0,1105649287 +294,7161,3.0,1081803748 +294,7165,4.0,1076966023 +294,7173,3.5,1156207826 +294,7186,3.5,1077573615 +294,7212,4.0,1119925112 +294,7228,2.5,1077573591 +294,7255,3.5,1138983548 +294,7293,4.0,1159049948 +294,7294,3.0,1090422702 +294,7303,4.0,1119922983 +294,7308,3.0,1081803849 +294,7320,4.0,1126407838 +294,7361,4.0,1149462575 +294,7362,4.0,1143064051 +294,7369,4.0,1102111490 +294,7373,4.0,1151550507 +294,7375,4.0,1119922752 +294,7380,4.5,1082752765 +294,7386,3.5,1082754548 +294,7438,3.5,1159049496 +294,7444,4.0,1119924688 +294,7451,4.0,1105649250 +294,7454,4.5,1102107922 +294,7570,4.0,1102111709 +294,7573,3.5,1093376503 +294,7579,4.5,1119925359 +294,7584,3.5,1119923303 +294,7614,4.0,1112390438 +294,7720,3.5,1102111621 +294,7757,4.0,1102111763 +294,7790,4.0,1106701831 +294,7822,3.5,1106704706 +294,7888,3.5,1115309520 +294,7916,3.5,1124153150 +294,8008,4.0,1112389867 +294,8015,3.5,1106704666 +294,8196,2.0,1112390524 +294,8228,3.5,1119924114 +294,8263,3.5,1112390511 +294,8360,4.5,1086722919 +294,8368,4.5,1106324915 +294,8373,4.0,1090422442 +294,8385,4.0,1117751363 +294,8460,4.0,1112390445 +294,8464,4.5,1112389674 +294,8482,3.5,1106701568 +294,8502,4.0,1112390418 +294,8525,3.5,1090422729 +294,8528,3.5,1143064072 +294,8529,3.5,1103227283 +294,8574,4.0,1112389893 +294,8580,4.5,1112389875 +294,8636,3.5,1119923345 +294,8665,4.0,1133892074 +294,8666,4.0,1143064040 +294,8712,4.5,1109298234 +294,8796,4.0,1090422483 +294,8808,4.0,1112389753 +294,8833,4.0,1116865097 +294,8865,4.5,1140395889 +294,8874,3.5,1119923794 +294,8879,4.0,1102110456 +294,8916,4.0,1155576725 +294,8948,3.0,1149469657 +294,8949,3.5,1149462473 +294,8961,4.5,1112389713 +294,8970,4.0,1123972974 +294,8972,4.5,1117751436 +294,8981,3.5,1149462457 +294,8983,4.0,1155781760 +294,8985,3.5,1149462544 +294,8986,4.0,1106702222 +294,8988,4.0,1123973581 +294,8989,4.0,1112390046 +294,8998,4.0,1106701561 +294,8999,4.0,1106701573 +294,9000,3.5,1119924840 +294,25937,4.0,1119922929 +294,25971,3.5,1113179438 +294,26084,4.5,1123973541 +294,26152,4.0,1159992373 +294,26386,4.0,1147138705 +294,26662,3.5,1159992408 +294,26680,3.5,1112390030 +294,27660,3.0,1159049832 +294,27706,4.0,1117751456 +294,30793,3.5,1133891970 +294,30812,3.5,1123972992 +294,30816,5.0,1105648036 +294,30822,3.5,1149462555 +294,31026,4.5,1105648049 +294,31221,4.0,1161746848 +294,31685,4.0,1141056102 +294,31694,4.5,1133893278 +294,31696,4.0,1121694276 +294,32296,4.0,1124723538 +294,32381,4.0,1117751532 +294,32587,4.0,1149462505 +294,33004,4.0,1115309461 +294,33493,4.0,1116865108 +294,33639,4.0,1138983092 +294,33679,4.0,1119067149 +294,33794,4.0,1132097669 +294,33836,4.5,1125284133 +294,34072,4.0,1124582761 +294,34150,4.0,1133891948 +294,34153,4.0,1151335077 +294,34332,4.5,1155576702 +294,35957,4.0,1163605934 +294,36401,4.0,1138983041 +294,36525,4.0,1149469833 +294,37729,3.5,1161746962 +294,38038,4.0,1133891996 +294,39435,4.0,1130637562 +294,40629,4.0,1143064137 +294,40815,4.5,1135700655 +294,40819,4.5,1143739211 +294,40851,4.0,1143064337 +294,41566,5.0,1134342205 +294,41571,4.0,1149957501 +294,42732,4.5,1151335103 +294,42738,4.0,1164512376 +294,44613,3.5,1159049478 +294,45028,4.0,1164512401 +294,45499,4.0,1161746784 +294,45517,4.0,1163268936 +295,6,4.5,1100132745 +295,10,4.5,1100132288 +295,39,4.0,1100132738 +295,47,4.5,1100132248 +295,50,4.5,1112545460 +295,95,4.0,1100132733 +295,110,4.0,1100132070 +295,112,3.0,1100129158 +295,150,4.5,1100132064 +295,153,3.0,1100132122 +295,163,4.5,1100129334 +295,165,4.0,1100131014 +295,185,3.5,1100132359 +295,186,3.5,1100129361 +295,208,3.5,1100132730 +295,231,4.0,1100132299 +295,260,5.0,1100129602 +295,292,3.0,1100132293 +295,293,4.5,1112543769 +295,296,4.0,1100132058 +295,315,3.5,1100129266 +295,316,4.5,1100132139 +295,318,4.5,1100129621 +295,339,3.5,1100132372 +295,344,4.5,1100131029 +295,356,4.5,1100132048 +295,357,3.5,1100132355 +295,364,4.0,1100132252 +295,367,3.5,1100132329 +295,370,4.0,1100129353 +295,374,2.5,1112544429 +295,377,4.0,1100131849 +295,380,4.0,1100131837 +295,434,4.0,1100132341 +295,457,4.5,1100132040 +295,466,4.0,1100129306 +295,475,4.0,1112547028 +295,480,4.5,1100132043 +295,500,4.5,1100132301 +295,527,4.5,1100131832 +295,539,4.0,1100132351 +295,541,3.5,1112547096 +295,588,4.5,1100129540 +295,589,5.0,1100131003 +295,590,4.0,1112545344 +295,592,4.5,1100132036 +295,593,4.5,1100132051 +295,595,4.0,1100132136 +295,597,4.5,1100132272 +295,608,4.0,1100131762 +295,628,4.0,1112544728 +295,648,4.5,1100132132 +295,733,4.0,1100132270 +295,736,3.5,1100132148 +295,778,3.0,1112547198 +295,780,4.0,1100132080 +295,832,4.5,1100129190 +295,858,5.0,1100132276 +295,912,4.0,1112547267 +295,919,4.0,1112546710 +295,924,4.0,1112547303 +295,1035,4.0,1100129408 +295,1036,4.5,1112544567 +295,1084,3.5,1112547242 +295,1089,2.0,1112546830 +295,1097,4.5,1100131041 +295,1101,5.0,1100129218 +295,1127,3.0,1112545142 +295,1183,4.5,1100130631 +295,1196,5.0,1100129611 +295,1198,4.0,1100132261 +295,1210,5.0,1100129561 +295,1214,4.5,1100131770 +295,1220,2.5,1112546005 +295,1233,4.0,1112547138 +295,1240,5.0,1112544776 +295,1246,4.0,1112545273 +295,1270,5.0,1100132267 +295,1278,3.5,1100129273 +295,1291,4.0,1112544553 +295,1324,1.0,1100130714 +295,1357,4.0,1112546953 +295,1387,4.0,1112545388 +295,1393,5.0,1112544704 +295,1396,2.5,1112545159 +295,1485,4.0,1100129387 +295,1517,4.0,1100129122 +295,1527,3.5,1112545834 +295,1580,4.5,1100132760 +295,1584,4.5,1112545392 +295,1617,3.0,1100131750 +295,1625,4.0,1112544830 +295,1672,4.0,1112545312 +295,1682,3.0,1112545412 +295,1704,4.0,1112544716 +295,1721,4.0,1100132753 +295,1784,3.5,1112545127 +295,1907,4.0,1112544898 +295,1923,4.5,1112544951 +295,1954,4.0,1112545132 +295,1961,4.5,1112545248 +295,1967,4.0,1112546746 +295,2011,4.0,1100131018 +295,2028,4.5,1100132347 +295,2058,4.0,1112544794 +295,2081,4.0,1112545252 +295,2096,4.0,1112546678 +295,2115,4.0,1100131008 +295,2161,4.0,1112546692 +295,2167,4.0,1112545732 +295,2193,4.0,1112545869 +295,2268,5.0,1112544563 +295,2294,3.0,1112546128 +295,2301,4.0,1100130123 +295,2302,5.0,1100129401 +295,2321,4.0,1112545885 +295,2324,4.0,1112546139 +295,2355,4.0,1112545193 +295,2381,2.5,1100131158 +295,2420,4.0,1112543748 +295,2421,3.5,1112544401 +295,2445,2.5,1100130407 +295,2502,4.0,1112545903 +295,2529,4.0,1112546729 +295,2571,5.0,1100132364 +295,2572,4.0,1100131000 +295,2628,3.5,1100131723 +295,2640,3.5,1112545352 +295,2699,3.5,1100129380 +295,2762,4.5,1100131730 +295,2763,3.0,1112545404 +295,2791,3.5,1112545995 +295,2797,4.5,1100129133 +295,2841,4.0,1112545606 +295,2858,4.0,1100132283 +295,2908,4.0,1112547261 +295,2918,4.0,1112544811 +295,2950,3.5,1112544396 +295,2959,4.0,1112546101 +295,3006,3.5,1112546653 +295,3147,5.0,1112544540 +295,3160,3.0,1112547216 +295,3175,3.0,1112545897 +295,3178,4.5,1112544682 +295,3252,4.5,1112544768 +295,3408,4.0,1112545291 +295,3448,4.5,1112545166 +295,3471,4.5,1112545613 +295,3479,3.5,1112545988 +295,3510,3.5,1112544629 +295,3527,4.5,1112544839 +295,3578,4.0,1100131714 +295,3654,4.5,1112545731 +295,3740,3.5,1112546663 +295,3751,4.0,1112546704 +295,3793,5.0,1100129207 +295,3994,3.0,1112545934 +295,3996,3.5,1112546625 +295,4008,4.0,1100131025 +295,4015,2.0,1100130944 +295,4025,3.0,1112544156 +295,4033,4.5,1112545215 +295,4085,4.0,1112544611 +295,4105,2.0,1112546899 +295,4223,4.5,1112544709 +295,4262,4.5,1112545634 +295,4306,4.5,1100129241 +295,4489,3.5,1112545135 +295,4563,4.0,1112544325 +295,4720,4.5,1112545616 +295,4776,2.5,1112545321 +295,4886,4.5,1112544801 +295,4896,4.5,1112544885 +295,4901,4.0,1112545283 +295,4963,4.5,1112544700 +295,4979,1.0,1100130662 +295,4993,5.0,1100129182 +295,4995,4.5,1112545204 +295,5010,4.0,1112545209 +295,5135,3.0,1112547207 +295,5218,4.0,1112545398 +295,5299,4.0,1112545363 +295,5349,5.0,1112544660 +295,5418,4.5,1112544844 +295,5419,2.0,1100130102 +295,5445,4.5,1112544758 +295,5464,4.0,1112544667 +295,5782,4.5,1100131086 +295,5816,4.0,1112544825 +295,5952,5.0,1112544890 +295,5989,5.0,1112544834 +295,6218,3.5,1112546556 +295,6323,5.0,1112545357 +295,6333,4.5,1112544579 +295,6377,5.0,1112544789 +295,6378,4.0,1112544646 +295,6539,4.5,1112544804 +295,6565,4.5,1112545146 +295,6708,5.0,1112545839 +295,6709,4.0,1100131075 +295,6764,3.5,1112545772 +295,6776,4.0,1112547044 +295,6874,4.0,1112545763 +295,6942,3.0,1112545232 +295,6979,4.0,1112545153 +295,7143,4.0,1112544573 +295,7147,4.0,1112545908 +295,7153,4.5,1112544942 +295,7160,2.0,1112543805 +295,7263,3.5,1112544559 +295,7318,4.0,1100129527 +295,7348,4.0,1112546120 +295,7367,2.5,1100129901 +295,7438,4.0,1112545912 +295,7445,3.5,1112544625 +295,7449,4.0,1100130206 +295,7458,4.0,1112544068 +295,7701,2.5,1112544443 +295,8360,4.0,1112544671 +295,8368,4.0,1112544848 +295,8529,3.0,1112544871 +295,8622,4.5,1100129672 +295,8633,4.0,1112545457 +295,8636,5.0,1112544678 +295,8644,3.5,1112544737 +295,8665,3.5,1112544876 +295,8798,4.5,1112544857 +295,8810,3.0,1112544384 +295,8884,4.0,1100129850 +295,8907,3.0,1112544159 +295,8908,3.0,1112544146 +295,8947,4.5,1112544259 +295,8957,4.0,1112543772 +295,8958,4.5,1112543763 +295,8961,4.5,1112543756 +295,32302,2.0,1112547513 +296,575,5.0,1298158849 +296,588,5.0,1298166310 +296,833,4.5,1298158960 +296,1223,5.0,1298158665 +296,1441,4.0,1298158704 +296,1772,4.5,1298158826 +296,2109,3.5,1298158675 +296,2423,5.0,1298158715 +296,3210,4.5,1298158651 +296,3396,3.5,1298158686 +296,3552,0.5,1298158632 +296,3565,4.0,1298158907 +296,4018,4.0,1298158655 +296,4214,3.0,1298158801 +296,4247,0.5,1298158913 +296,4306,5.0,1298166290 +296,4973,3.5,1298159035 +296,6539,4.5,1298166284 +296,56152,5.0,1298158941 +296,79132,5.0,1298159100 +297,65,0.5,1318703137 +297,104,2.0,1318706475 +297,111,3.5,1318704981 +297,223,5.0,1318706138 +297,260,4.0,1318703899 +297,296,4.5,1318704279 +297,355,1.0,1318702961 +297,356,4.0,1318705332 +297,515,5.0,1318702944 +297,593,3.5,1318705334 +297,608,2.0,1318706724 +297,750,4.5,1318703821 +297,858,5.0,1318703828 +297,910,4.0,1321727762 +297,1089,4.5,1318706689 +297,1103,2.0,1318706171 +297,1136,4.0,1318706561 +297,1193,5.0,1318703706 +297,1198,4.0,1318703871 +297,1199,3.5,1318704154 +297,1206,4.5,1318704288 +297,1208,4.5,1318706964 +297,1209,4.0,1319481093 +297,1217,4.5,1318703875 +297,1221,3.5,1318703831 +297,1227,4.5,1319481099 +297,1232,5.0,1321728389 +297,1237,5.0,1318704164 +297,1244,4.0,1318703015 +297,1247,5.0,1318704607 +297,1251,5.0,1318704132 +297,1265,4.5,1318705739 +297,1270,4.0,1318705318 +297,1274,4.0,1318703033 +297,1281,4.0,1318705205 +297,1339,4.5,1318702953 +297,1562,0.5,1318702978 +297,1663,4.0,1318702999 +297,1732,4.5,1318706784 +297,1747,5.0,1318702939 +297,1923,2.0,1318706153 +297,1927,4.5,1318706984 +297,1968,3.0,1318705960 +297,2019,5.0,1318703884 +297,2300,4.0,1318703085 +297,2329,3.5,1318703740 +297,2502,3.0,1318706099 +297,2571,2.0,1318703854 +297,2642,1.0,1318703132 +297,2700,4.5,1318706313 +297,2706,4.0,1318706074 +297,2712,4.0,1318704146 +297,2716,4.0,1318705329 +297,2761,3.5,1318703023 +297,2797,3.0,1318706769 +297,2826,3.0,1318703050 +297,2858,5.0,1318703663 +297,2918,2.0,1318705951 +297,2959,4.0,1318703733 +297,2997,2.0,1318704283 +297,3000,4.5,1318705532 +297,3022,4.5,1318704569 +297,3030,5.0,1318703908 +297,3033,3.0,1318702933 +297,3159,2.0,1318703192 +297,3421,3.0,1318705985 +297,3462,5.0,1318704503 +297,3503,5.0,1321739572 +297,3617,2.0,1318706378 +297,3629,3.5,1318704580 +297,3788,4.5,1319480958 +297,3793,2.0,1318705311 +297,3814,4.0,1318704629 +297,4027,3.5,1318706797 +297,4278,3.0,1318705182 +297,4973,4.5,1318704291 +297,5110,1.5,1318706095 +297,5147,4.5,1318704151 +297,5283,2.5,1318706237 +297,5291,5.0,1318703879 +297,5618,4.5,1318705570 +297,5954,5.0,1318704995 +297,6016,3.5,1318703814 +297,6188,3.5,1318705974 +297,6216,4.5,1318705270 +297,6350,3.5,1318705557 +297,6666,5.0,1318704018 +297,6711,4.5,1318703701 +297,7063,4.5,1318704141 +297,7317,3.0,1318706339 +297,7323,3.0,1318705245 +297,7325,2.0,1318706874 +297,7766,4.5,1318704424 +297,7843,3.5,1318706142 +297,7925,2.5,1318704417 +297,7941,4.5,1318705431 +297,8275,3.5,1318705465 +297,8376,3.0,1318706071 +297,8528,2.0,1318706438 +297,8641,4.0,1318706549 +297,8807,3.5,1318706086 +297,8949,4.0,1318703692 +297,8961,3.5,1318705321 +297,8970,4.0,1318703424 +297,25750,3.0,1318705408 +297,25769,3.0,1318704575 +297,25771,4.0,1318704031 +297,34162,2.0,1318706191 +297,35836,4.0,1318705921 +297,37384,3.5,1318706129 +297,44195,5.0,1318706016 +297,44555,4.0,1318703863 +297,45728,3.0,1318706090 +297,47518,2.0,1318706204 +297,47640,2.0,1318706513 +297,52885,5.0,1318705510 +297,52973,3.0,1318706459 +297,54503,4.5,1318705802 +297,55820,2.0,1318706700 +297,56367,2.5,1318705989 +297,58559,4.0,1318703818 +297,58998,2.5,1318705970 +297,60126,3.5,1318706849 +297,61024,4.0,1318706006 +297,62434,3.0,1318706149 +297,63131,3.5,1318705933 +297,68157,4.5,1318706917 +297,69122,3.5,1318706064 +297,72011,4.0,1318703710 +297,76077,2.0,1318706320 +297,76251,4.0,1318706266 +297,78209,2.0,1318706212 +297,78321,1.0,1318705798 +297,79008,3.5,1318706249 +297,79132,4.0,1318703836 +297,79274,4.0,1318703963 +297,86882,5.0,1318703369 +297,87869,3.0,1318706254 +298,2,5.0,1447369122 +298,6,3.5,1446576656 +298,19,4.0,1447369129 +298,260,4.0,1446576625 +298,318,5.0,1446576619 +298,608,5.0,1447366275 +298,741,5.0,1447366172 +298,778,5.0,1463600087 +298,1036,5.0,1447366267 +298,1198,4.0,1446576627 +298,1206,5.0,1447368467 +298,1222,5.0,1447365973 +298,1270,5.0,1447368925 +298,1274,5.0,1447366171 +298,1682,4.0,1446576649 +298,2000,5.0,1447365949 +298,2232,5.0,1447368485 +298,2329,3.5,1446576660 +298,2571,5.0,1446576616 +298,2580,5.0,1463600082 +298,3000,5.0,1447366779 +298,3581,5.0,1463600074 +298,3949,5.0,1463600037 +298,4886,5.0,1463600613 +298,4993,3.0,1446576635 +298,5618,5.0,1447366717 +298,5903,5.0,1447367910 +298,5971,5.0,1447366783 +298,6283,5.0,1447367732 +298,6539,5.0,1463600639 +298,7099,5.0,1447366174 +298,7153,3.0,1446576633 +298,7361,5.0,1447366668 +298,26776,5.0,1447365422 +298,27728,5.0,1447367698 +298,31658,5.0,1447366781 +298,31660,5.0,1447366180 +298,32460,5.0,1447366489 +298,32554,5.0,1447366241 +298,34405,5.0,1447368499 +298,55167,5.0,1447368037 +298,56251,5.0,1447368496 +298,58559,4.0,1446576629 +298,60069,5.0,1447369335 +298,62115,5.0,1463600566 +298,65261,5.0,1447366785 +298,66297,5.0,1447368446 +298,69481,5.0,1447366104 +298,73017,5.0,1447365955 +298,74458,5.0,1447368528 +298,74727,5.0,1447366535 +298,79132,5.0,1446576686 +298,81229,5.0,1447365922 +298,83132,5.0,1447369812 +298,84844,5.0,1447365900 +298,92259,5.0,1447366314 +298,96610,5.0,1447367727 +298,97752,5.0,1447367790 +298,98124,5.0,1447368554 +298,98491,5.0,1447369316 +298,98615,5.0,1447369554 +298,101864,4.0,1447368645 +298,102666,5.0,1447366330 +298,104283,5.0,1447366805 +298,106100,5.0,1447365430 +298,107412,5.0,1447366598 +298,109374,5.0,1447368619 +298,109487,5.0,1447368766 +298,111759,5.0,1447368454 +298,118468,5.0,1447366724 +298,121126,5.0,1463599987 +298,122882,4.0,1447365438 +298,127052,5.0,1447366507 +298,136449,5.0,1447369319 +298,158956,4.0,1463600602 +299,16,4.5,1344185928 +299,29,4.5,1344183896 +299,32,5.0,1344183785 +299,47,4.5,1344427470 +299,70,4.5,1344188827 +299,111,4.5,1344185877 +299,117,4.0,1344427521 +299,163,4.5,1344188818 +299,166,5.0,1344179650 +299,175,4.0,1344182997 +299,178,3.5,1344184508 +299,180,3.5,1344187571 +299,223,4.5,1344187548 +299,235,5.0,1344187128 +299,247,4.0,1344177302 +299,288,5.0,1344186086 +299,296,3.0,1344181156 +299,347,4.0,1344180418 +299,444,2.5,1344181807 +299,471,4.5,1344186741 +299,488,3.5,1344179382 +299,532,3.5,1344185251 +299,541,4.0,1344428537 +299,562,3.5,1344178870 +299,581,4.5,1344180055 +299,589,4.0,1344428533 +299,592,4.0,1344187164 +299,599,4.5,1344188994 +299,608,5.0,1344186832 +299,714,4.5,1344177550 +299,839,3.5,1344177458 +299,849,3.5,1344177232 +299,910,3.0,1344187441 +299,922,5.0,1344177371 +299,968,4.0,1344427549 +299,1089,4.5,1344181162 +299,1090,4.0,1344186059 +299,1093,4.5,1344186079 +299,1114,3.5,1344188347 +299,1129,4.5,1344428655 +299,1136,5.0,1344183758 +299,1137,4.0,1344178446 +299,1161,4.5,1344427268 +299,1173,4.5,1344178767 +299,1175,4.5,1344183907 +299,1199,3.0,1344183719 +299,1206,4.0,1344182416 +299,1208,5.0,1344427352 +299,1209,5.0,1344188947 +299,1211,5.0,1344177520 +299,1213,5.0,1344185914 +299,1222,5.0,1344182429 +299,1227,5.0,1344188940 +299,1243,5.0,1344428285 +299,1245,4.0,1344186826 +299,1252,5.0,1344180378 +299,1258,3.5,1344182422 +299,1273,5.0,1344181459 +299,1279,4.0,1344181477 +299,1305,4.5,1344188215 +299,1306,4.0,1344188245 +299,1321,3.5,1344177288 +299,1343,4.0,1344185903 +299,1354,3.5,1344180756 +299,1361,4.5,1344427132 +299,1377,4.0,1344187183 +299,1391,4.5,1344187191 +299,1394,4.0,1344186760 +299,1419,5.0,1344182671 +299,1464,4.5,1344180621 +299,1483,4.5,1344177600 +299,1529,4.5,1344179623 +299,1611,5.0,1344181763 +299,1627,2.5,1344186108 +299,1639,3.5,1344187553 +299,1652,3.5,1344181520 +299,1673,4.5,1344182315 +299,1690,3.5,1344183920 +299,1704,2.5,1344181751 +299,1729,4.0,1344181196 +299,1732,5.0,1344186837 +299,1748,4.0,1344428486 +299,1785,4.0,1344188330 +299,1884,4.0,1344183725 +299,1921,5.0,1344181924 +299,1924,4.0,1344177647 +299,1965,5.0,1344177340 +299,1982,4.0,1344177358 +299,2021,2.5,1344180612 +299,2022,4.5,1344185873 +299,2076,4.5,1344177262 +299,2159,4.5,1344178084 +299,2160,5.0,1344180390 +299,2174,4.5,1344187148 +299,2282,4.5,1344185232 +299,2291,4.0,1344187141 +299,2313,4.5,1344180597 +299,2318,4.0,1344178865 +299,2337,4.0,1344181064 +299,2348,5.0,1344181361 +299,2361,4.5,1344185246 +299,2428,3.5,1344188856 +299,2440,5.0,1344183016 +299,2455,5.0,1344178136 +299,2459,4.5,1344427259 +299,2551,5.0,1344179354 +299,2600,4.0,1344179390 +299,2712,5.0,1344182435 +299,2729,4.0,1344182407 +299,2862,3.5,1344427749 +299,2864,2.5,1344179640 +299,2892,4.0,1344188374 +299,2926,4.0,1344185241 +299,2952,3.5,1344182301 +299,2964,3.5,1344183120 +299,2968,4.0,1344177196 +299,2976,5.0,1344185954 +299,2985,4.0,1344428666 +299,2997,4.0,1344188084 +299,3018,5.0,1344177701 +299,3019,4.0,1344181703 +299,3052,4.5,1344187564 +299,3070,4.0,1344428234 +299,3081,3.5,1344187123 +299,3083,5.0,1344184571 +299,3108,4.0,1344183745 +299,3160,3.5,1344182296 +299,3218,5.0,1344181090 +299,3221,4.0,1344178743 +299,3253,4.5,1344187838 +299,3262,3.5,1344180629 +299,3267,4.0,1344188843 +299,3272,4.5,1344188340 +299,3328,4.0,1344181484 +299,3355,4.5,1344180440 +299,3386,5.0,1344186054 +299,3435,3.5,1344187434 +299,3459,4.0,1344178635 +299,3521,4.0,1344181464 +299,3535,2.5,1344427586 +299,3556,4.0,1344188148 +299,3569,4.5,1344180770 +299,3626,4.5,1344178788 +299,3676,2.5,1344177991 +299,3679,5.0,1344187827 +299,3683,4.5,1344186819 +299,3858,5.0,1344185257 +299,3910,3.0,1344180733 +299,3925,5.0,1344181470 +299,3949,4.5,1344181945 +299,4007,3.5,1344186047 +299,4008,3.5,1344186070 +299,4027,4.5,1344186843 +299,4282,4.0,1344427686 +299,4294,4.5,1344428139 +299,4407,4.5,1344186042 +299,4450,5.0,1344183002 +299,4467,4.5,1344183732 +299,4500,4.5,1344178738 +299,4506,2.5,1344180452 +299,4518,4.5,1344178630 +299,4552,5.0,1344177888 +299,4612,4.5,1344184453 +299,4642,5.0,1344180131 +299,4643,0.5,1344187209 +299,4658,4.5,1344179497 +299,4697,5.0,1344182841 +299,4734,3.0,1344187585 +299,4752,4.0,1344182917 +299,4848,5.0,1344180605 +299,4863,4.0,1344185218 +299,4878,2.5,1344428055 +299,4881,4.0,1344186769 +299,4973,3.0,1344183913 +299,5074,4.5,1344178881 +299,5275,4.0,1344185959 +299,5298,3.5,1344188013 +299,5385,4.0,1344185848 +299,5473,5.0,1344180850 +299,5508,4.5,1344187642 +299,5608,4.5,1344427176 +299,5673,3.5,1344182307 +299,5735,3.5,1344184687 +299,5780,4.5,1344185223 +299,5812,4.0,1344181019 +299,5853,4.0,1344179405 +299,5902,4.0,1344188089 +299,5909,3.5,1344178270 +299,5956,5.0,1344185923 +299,5995,5.0,1344180384 +299,6021,4.0,1344188232 +299,6114,3.5,1344181508 +299,6121,4.5,1344180894 +299,6132,3.5,1344427702 +299,6162,1.5,1344181781 +299,6184,5.0,1344182690 +299,6197,2.5,1344179376 +299,6290,4.5,1344189222 +299,6291,4.5,1344427225 +299,6440,4.0,1344186798 +299,6465,4.5,1344179924 +299,6602,4.5,1344182827 +299,6707,3.5,1344189153 +299,6709,4.0,1344188835 +299,6711,5.0,1344188144 +299,6730,3.5,1344189016 +299,6774,5.0,1344179366 +299,6807,4.0,1344183779 +299,6873,3.5,1344186865 +299,6874,4.0,1344181172 +299,6890,3.0,1344181853 +299,6975,4.0,1344427366 +299,6987,4.5,1344428360 +299,7022,4.0,1344428593 +299,7024,5.0,1344182163 +299,7044,4.5,1344180581 +299,7123,5.0,1344179346 +299,7147,3.5,1344187134 +299,7235,5.0,1344178230 +299,7361,4.5,1344188004 +299,7371,4.5,1344180747 +299,7387,4.5,1344427328 +299,7438,4.0,1344181183 +299,7460,4.5,1344181505 +299,7505,4.5,1344180738 +299,7764,3.0,1344188357 +299,7878,4.5,1344181376 +299,7889,4.5,1344189005 +299,7920,4.0,1344185212 +299,7976,4.5,1344183025 +299,8126,4.5,1344184838 +299,8189,4.0,1344184386 +299,8240,5.0,1344179634 +299,8499,4.0,1344184344 +299,8507,3.5,1344184780 +299,8800,4.5,1344187670 +299,8872,3.5,1344185263 +299,8892,4.0,1344182854 +299,8893,4.5,1344182848 +299,8906,4.0,1344182236 +299,8923,4.5,1344180412 +299,8938,5.0,1344180176 +299,8973,3.5,1344184582 +299,25744,4.5,1344182025 +299,25771,5.0,1344427916 +299,26164,4.0,1344179492 +299,26231,5.0,1344182678 +299,26241,4.5,1344178593 +299,26258,5.0,1344179486 +299,26326,5.0,1344179480 +299,26494,4.5,1344187844 +299,26524,5.0,1344180060 +299,26655,4.5,1344180065 +299,26680,4.0,1344185237 +299,26684,4.5,1344182832 +299,26749,5.0,1344178772 +299,26809,4.5,1344178762 +299,26810,4.5,1344184001 +299,26974,3.5,1344183104 +299,27322,3.5,1344180071 +299,27721,4.5,1344183892 +299,27792,5.0,1344187915 +299,30793,1.0,1344187158 +299,30812,4.0,1344185894 +299,31270,4.5,1344179360 +299,31410,4.5,1344427208 +299,31682,4.5,1344184043 +299,32515,5.0,1344181368 +299,32587,4.0,1344188848 +299,32735,4.0,1344182134 +299,32797,4.5,1344180884 +299,32840,5.0,1344187102 +299,32898,4.5,1344428080 +299,33021,3.5,1344184607 +299,33138,5.0,1344178876 +299,33171,5.0,1344179618 +299,34323,5.0,1344189204 +299,34326,5.0,1344181789 +299,34437,5.0,1344181490 +299,36401,4.0,1344183797 +299,37729,3.0,1344187116 +299,37733,3.5,1344179340 +299,39659,3.5,1344182143 +299,40226,5.0,1344185036 +299,42723,4.0,1344189149 +299,42900,5.0,1344180404 +299,45521,3.5,1344183011 +299,45728,2.5,1344187558 +299,45880,3.5,1344188154 +299,46544,4.5,1344179902 +299,46976,4.0,1344428372 +299,47274,4.0,1344184326 +299,47465,3.5,1344183767 +299,47997,3.5,1344428679 +299,48043,4.0,1344181934 +299,48394,4.0,1344427441 +299,48516,4.5,1344185937 +299,48744,4.5,1344180144 +299,49902,4.0,1344182156 +299,49932,3.5,1344180587 +299,50011,4.5,1344427962 +299,50912,4.0,1344181736 +299,51380,4.0,1344182149 +299,52831,4.0,1344182923 +299,53435,4.0,1344189159 +299,53447,4.5,1344181777 +299,53519,4.5,1344181292 +299,54785,4.0,1344189215 +299,54995,4.0,1344188807 +299,55118,3.5,1344179333 +299,55820,4.5,1344186747 +299,56003,4.0,1344428423 +299,56079,1.0,1344179644 +299,56286,4.0,1344181050 +299,56757,3.5,1344187109 +299,58520,4.5,1344181766 +299,59339,4.5,1344183108 +299,59387,3.5,1344427820 +299,60384,5.0,1344848380 +299,60684,4.5,1344428585 +299,61323,4.0,1344186812 +299,62434,3.5,1344187578 +299,62437,4.0,1344186091 +299,62511,4.5,1344188050 +299,62764,4.5,1344184358 +299,63276,4.0,1344178309 +299,63836,5.0,1344180943 +299,63876,5.0,1344181710 +299,64839,5.0,1344181940 +299,67957,4.5,1344181057 +299,68157,4.5,1344181211 +299,68237,4.0,1344428507 +299,69134,3.0,1344180774 +299,69516,4.5,1344181514 +299,69951,4.5,1344183750 +299,70994,3.5,1344189230 +299,71390,5.0,1344181266 +299,71494,4.0,1344189209 +299,71745,4.0,1344188094 +299,72109,4.0,1344185106 +299,72880,4.0,1344180241 +299,73531,4.0,1344179916 +299,74458,3.5,1344185842 +299,74789,1.5,1344187169 +299,75349,2.5,1344183033 +299,75823,4.5,1344177955 +299,76173,4.0,1344183903 +299,77291,5.0,1344178611 +299,77307,4.5,1344427389 +299,79203,4.5,1344178783 +299,79686,4.5,1344180201 +299,80217,4.5,1344178913 +299,80219,4.5,1344188812 +299,80553,5.0,1344180075 +299,81083,4.0,1344179628 +299,81591,5.0,1344181929 +299,82150,3.5,1344428000 +299,83829,4.5,1344180332 +299,83976,4.0,1344187660 +299,87884,3.5,1344178599 +299,88106,3.5,1344178574 +299,90374,3.5,1344427574 +299,90866,3.5,1344185859 +299,92424,4.0,1344181086 +299,95113,5.0,1344180325 +299,95115,4.5,1344180336 +299,95752,4.5,1344178532 +300,32,4.5,1108049525 +300,110,5.0,1108043921 +300,150,4.5,1108044940 +300,260,4.0,1108045871 +300,356,4.5,1108045520 +300,480,5.0,1108043917 +300,588,2.0,1108049512 +300,589,4.5,1108044948 +300,593,4.5,1108049532 +300,733,5.0,1108044952 +300,1042,3.5,1086012135 +300,1198,4.5,1108049217 +300,1210,4.5,1108049537 +300,1291,4.5,1108049221 +300,1339,3.0,1086012226 +300,1370,4.0,1108043994 +300,1391,4.0,1108043999 +300,1527,4.0,1108043979 +300,1562,3.5,1086012727 +300,1608,4.0,1108044003 +300,1625,4.0,1108044934 +300,1748,3.0,1086011939 +300,1917,5.0,1086011056 +300,1918,3.5,1086012498 +300,1997,3.0,1103031601 +300,2001,3.5,1108045847 +300,2006,3.5,1086011506 +300,2012,3.0,1108043992 +300,2167,3.5,1086012123 +300,2529,5.0,1108043911 +300,2617,4.0,1086011220 +300,2628,5.0,1108045864 +300,2683,3.5,1108045842 +300,2858,4.0,1108045856 +300,2985,3.0,1108049541 +300,3081,4.0,1086011786 +300,3147,4.5,1108045850 +300,3471,4.0,1086011449 +300,3578,4.5,1086010878 +300,3623,4.5,1108045250 +300,3753,4.5,1108045503 +300,3996,4.0,1086010960 +300,4022,4.5,1086011441 +300,5445,4.5,1108045839 +301,107,1.0,1245880619 +301,203,4.0,1245880647 +301,262,2.0,1245880713 +301,1429,0.5,1245880728 +301,1835,5.0,1245880679 +301,2088,3.0,1245880740 +301,2132,5.0,1245880811 +301,2136,3.5,1245880804 +301,2139,3.0,1245880700 +301,2471,0.5,1245880665 +301,2513,3.0,1245880777 +301,2857,4.0,1245880705 +301,2995,5.0,1245880807 +301,3148,3.0,1245880616 +301,3156,4.0,1245880767 +301,3545,5.0,1245880813 +301,3591,2.0,1245880791 +301,4214,2.0,1245880787 +301,5308,3.5,1245880802 +301,64957,4.5,1245881009 +301,66665,5.0,1245880881 +301,68554,5.0,1245880865 +301,68848,5.0,1245880891 +302,10,3.0,843720729 +302,158,3.0,843793194 +302,165,3.0,843720570 +302,168,3.0,843793216 +302,186,3.0,843793164 +302,225,3.0,843720824 +302,236,4.0,849241461 +302,256,3.0,843793279 +302,315,3.0,849241687 +302,316,3.0,843720636 +302,357,3.0,843720873 +302,362,3.0,849241476 +302,364,3.0,843720769 +302,370,3.0,843793370 +302,420,3.0,843720853 +302,435,2.0,849241829 +302,457,4.0,843720636 +302,466,3.0,843793337 +302,480,4.0,843720680 +302,485,3.0,843793370 +302,509,5.0,843793109 +302,539,4.0,843720853 +302,586,4.0,843720824 +302,587,3.0,843720824 +302,588,4.0,843720570 +302,589,3.0,843720769 +302,590,4.0,843720537 +302,592,3.0,843720537 +302,593,5.0,843720636 +302,594,3.0,843793337 +302,595,4.0,843720636 +302,596,4.0,849241587 +302,597,3.0,843720824 +302,616,3.0,849241508 +302,1084,3.0,849241587 +303,25,3.5,1299489759 +303,32,3.0,1299449785 +303,47,2.5,1299446741 +303,50,3.5,1299439935 +303,62,3.5,1299489556 +303,223,4.0,1299489695 +303,253,3.0,1299489313 +303,256,2.5,1299437815 +303,260,4.0,1299489397 +303,265,3.5,1299437768 +303,282,3.5,1299590828 +303,288,3.5,1299489595 +303,296,4.0,1299446725 +303,318,4.5,1299591103 +303,339,3.0,1299489574 +303,356,3.0,1299446785 +303,367,2.0,1299449773 +303,377,2.5,1307087571 +303,380,3.5,1299446828 +303,440,4.0,1299490094 +303,500,2.5,1299451294 +303,508,3.0,1299489840 +303,509,3.5,1299489857 +303,520,3.0,1299590811 +303,527,4.0,1299446802 +303,539,3.0,1299489885 +303,586,1.0,1299489612 +303,587,3.0,1299489382 +303,590,3.5,1299446704 +303,592,2.5,1299446728 +303,593,4.0,1299439952 +303,594,3.5,1299490035 +303,595,2.5,1299489296 +303,597,3.0,1299451311 +303,608,4.0,1299446710 +303,750,3.5,1299451419 +303,778,4.0,1299489683 +303,780,3.0,1299489370 +303,858,4.0,1299451392 +303,919,4.0,1299489663 +303,920,4.5,1299489940 +303,953,4.0,1299590586 +303,1022,3.0,1299437849 +303,1028,4.5,1299590621 +303,1029,3.5,1299437834 +303,1035,4.0,1299490126 +303,1036,3.0,1299489270 +303,1059,3.0,1299437821 +303,1073,3.5,1299489324 +303,1079,4.5,1299489918 +303,1080,4.0,1325226148 +303,1088,3.0,1299437783 +303,1089,5.0,1299451462 +303,1090,3.5,1299490029 +303,1092,3.0,1299590759 +303,1093,3.5,1299437888 +303,1094,3.0,1299590562 +303,1097,3.5,1299489330 +303,1101,3.0,1299489568 +303,1136,5.0,1299449754 +303,1193,4.5,1299451396 +303,1196,4.0,1299446858 +303,1197,5.0,1307087575 +303,1198,4.0,1299439946 +303,1200,3.5,1299489242 +303,1206,4.5,1299489454 +303,1213,4.5,1299451405 +303,1214,3.0,1299594152 +303,1220,4.0,1299489787 +303,1221,4.0,1299451400 +303,1222,4.5,1299451422 +303,1225,4.5,1299489646 +303,1240,3.5,1299489302 +303,1242,4.0,1299590879 +303,1246,5.0,1299489643 +303,1247,4.0,1299590535 +303,1258,3.5,1299489675 +303,1259,4.5,1299489733 +303,1263,4.0,1299437793 +303,1265,5.0,1299451304 +303,1270,4.5,1299446732 +303,1285,3.5,1299590854 +303,1288,4.0,1299490077 +303,1302,4.5,1299590619 +303,1307,4.0,1299489603 +303,1380,5.0,1299489938 +303,1394,4.0,1299490060 +303,1513,3.5,1299437870 +303,1517,2.0,1299489354 +303,1527,3.5,1299489225 +303,1580,3.5,1299489267 +303,1610,3.0,1299489442 +303,1639,3.0,1299489873 +303,1674,4.5,1299490119 +303,1682,4.0,1299489679 +303,1704,4.5,1299489341 +303,1721,3.0,1299449761 +303,1732,4.5,1299489589 +303,1954,3.5,1299489818 +303,1961,4.0,1299451320 +303,1962,3.5,1299437863 +303,1968,3.5,1299489583 +303,1994,3.0,1299590834 +303,1997,3.5,1299489928 +303,2000,2.0,1299489514 +303,2001,2.0,1299437738 +303,2005,4.0,1299590681 +303,2011,4.5,1299489466 +303,2012,4.5,1299489687 +303,2028,3.5,1299446777 +303,2054,3.0,1299489500 +303,2081,3.0,1299489749 +303,2100,3.0,1299437756 +303,2115,4.5,1299489725 +303,2174,4.5,1299489317 +303,2193,3.0,1299437843 +303,2194,4.0,1299489638 +303,2291,3.5,1299489403 +303,2300,4.0,1307087826 +303,2302,4.5,1299489670 +303,2329,3.5,1299439707 +303,2355,2.5,1299489619 +303,2396,3.5,1299489319 +303,2407,4.0,1299490111 +303,2455,3.5,1299590673 +303,2470,3.5,1299489925 +303,2539,3.5,1299590858 +303,2542,4.5,1299489989 +303,2571,4.5,1299489346 +303,2640,3.0,1299489667 +303,2657,4.5,1299489779 +303,2692,4.0,1299489900 +303,2706,2.5,1299451352 +303,2712,2.0,1299489765 +303,2716,4.0,1299489305 +303,2762,2.0,1299446799 +303,2791,3.5,1299489492 +303,2797,4.0,1299489366 +303,2858,4.0,1299439764 +303,2916,4.5,1299489549 +303,2918,4.5,1299451356 +303,2959,4.0,1299446714 +303,2987,3.0,1299451362 +303,2997,4.5,1299446817 +303,3033,3.0,1299490074 +303,3039,4.0,1299590704 +303,3052,4.5,1299489536 +303,3147,3.5,1299489428 +303,3210,3.5,1299437892 +303,3255,3.0,1299437799 +303,3386,3.0,1299590893 +303,3396,4.5,1325226566 +303,3418,3.5,1299489752 +303,3448,4.0,1299489998 +303,3499,3.5,1299590774 +303,3552,3.0,1299590687 +303,3949,4.0,1299489854 +303,4002,3.5,1299590751 +303,4011,5.0,1299489359 +303,4018,3.5,1299437898 +303,4022,3.5,1299451344 +303,4027,4.5,1299489503 +303,4085,2.5,1299437803 +303,4226,3.5,1299451317 +303,4246,3.0,1299489633 +303,4306,3.5,1299446826 +303,4321,3.5,1299590814 +303,4571,4.5,1299590610 +303,4878,3.5,1299489415 +303,4886,3.0,1299446755 +303,4896,4.0,1299489436 +303,4973,3.5,1299439754 +303,4975,3.5,1299590741 +303,4995,4.0,1299446835 +303,5266,2.5,1299590661 +303,5618,4.5,1299590626 +303,5669,4.0,1299489447 +303,5679,3.0,1299489805 +303,5816,4.0,1299489478 +303,5902,4.0,1299490032 +303,5989,3.5,1299489343 +303,5991,4.0,1299437884 +303,5995,3.5,1299439943 +303,6218,4.0,1299490130 +303,6711,3.0,1299449777 +303,6874,2.0,1299489246 +303,6942,3.0,1299590527 +303,8169,3.5,1299438027 +303,8368,4.0,1299489815 +303,8376,2.5,1299590552 +303,8464,4.0,1299489850 +303,8622,4.0,1299489701 +303,8949,3.0,1299489881 +303,30707,4.5,1299489720 +303,31284,3.5,1299489529 +303,33166,3.5,1445697535 +303,39183,4.5,1299590603 +303,40815,4.0,1299489564 +303,42351,4.0,1327155228 +303,54001,4.0,1299490039 +303,55247,4.5,1299590867 +303,56367,4.0,1299451339 +303,63082,4.0,1299489204 +303,64614,4.0,1445697465 +303,64957,3.5,1299590707 +303,65665,4.0,1299446717 +303,68954,4.0,1299489710 +303,69481,4.0,1299590579 +303,69757,3.5,1299489627 +303,69849,4.5,1299591121 +303,72011,3.0,1299489987 +303,72998,3.0,1299446847 +303,73344,5.0,1299449059 +303,77658,4.5,1445697527 +303,79132,4.0,1445697510 +303,81834,3.0,1445697482 +303,81845,4.0,1299451381 +303,84506,3.5,1299590789 +303,84844,2.0,1299489283 +303,88125,3.5,1445697471 +303,92259,3.5,1445697479 +303,109374,3.0,1445697539 +303,134853,4.0,1445697567 +304,14,4.0,1352656620 +304,25,5.0,1352656153 +304,47,5.0,1352655655 +304,50,4.5,1352654894 +304,150,4.0,1352654938 +304,175,4.5,1352654536 +304,185,3.5,1352655869 +304,223,5.0,1352656222 +304,235,5.0,1352656147 +304,260,3.0,1352655620 +304,296,5.0,1352655265 +304,300,4.5,1352655877 +304,318,5.0,1352654887 +304,344,1.5,1352655661 +304,356,4.5,1352655609 +304,364,2.0,1352655675 +304,413,3.0,1352654466 +304,419,3.0,1352654551 +304,527,0.5,1352656725 +304,595,1.5,1352655686 +304,608,5.0,1352655651 +304,610,3.5,1352654370 +304,778,5.0,1352656215 +304,904,5.0,1352654909 +304,912,4.0,1352654906 +304,914,4.0,1352655994 +304,923,4.5,1352655990 +304,924,5.0,1352655162 +304,1015,1.5,1352654672 +304,1077,4.5,1352655152 +304,1089,5.0,1352655295 +304,1091,1.5,1352654503 +304,1193,4.5,1352654919 +304,1196,3.5,1352655136 +304,1199,3.5,1352655159 +304,1206,5.0,1352655156 +304,1210,3.0,1352655115 +304,1225,4.0,1352655846 +304,1270,4.0,1352655141 +304,1282,3.0,1352656396 +304,1303,4.5,1352655524 +304,1381,2.0,1352654614 +304,1394,3.5,1352655972 +304,1499,0.5,1352654490 +304,1653,5.0,1352656513 +304,1693,3.5,1352654556 +304,1704,3.5,1352655836 +304,1732,5.0,1352656567 +304,1873,3.0,1352656119 +304,1884,5.0,1352655511 +304,1885,5.0,1352654591 +304,1921,4.5,1352655180 +304,1968,3.5,1352655833 +304,2019,4.5,1352654903 +304,2064,4.0,1352654970 +304,2109,3.5,1352655941 +304,2145,1.5,1352654367 +304,2294,3.5,1352655932 +304,2329,5.0,1352655828 +304,2528,4.0,1352656098 +304,2571,3.5,1352655129 +304,2628,2.0,1352656203 +304,2683,3.0,1352655784 +304,2700,4.5,1352656386 +304,2747,2.0,1352654757 +304,2858,4.5,1352655648 +304,2926,4.5,1352654688 +304,3077,4.0,1352654991 +304,3247,2.0,1352654436 +304,3253,3.5,1352655913 +304,3386,4.5,1352656605 +304,3462,4.0,1352656073 +304,3471,3.5,1352655119 +304,4239,5.0,1352656358 +304,4278,4.5,1352656774 +304,4306,0.5,1352656195 +304,4344,1.0,1352654499 +304,4878,5.0,1352655170 +304,4979,4.5,1352656170 +304,4993,2.5,1352656191 +304,5669,4.0,1352654973 +304,5995,1.5,1352656249 +304,6934,2.0,1352655901 +304,7090,5.0,1352655800 +304,7300,3.5,1352655321 +304,7323,4.5,1352655381 +304,8376,1.5,1352656237 +304,8582,4.5,1352655082 +304,27773,4.5,1352656045 +304,27846,5.0,1352655048 +304,30846,3.0,1352656628 +304,31410,5.0,1352655487 +304,33903,4.0,1352655403 +304,44555,4.5,1352654917 +304,44788,5.0,1352656298 +304,45172,4.5,1352655371 +304,45728,3.5,1352656033 +304,45950,4.0,1352656309 +304,50851,4.5,1352655046 +304,52281,5.0,1352656022 +304,53519,4.5,1352655253 +304,53883,5.0,1352655026 +304,54881,4.5,1352655339 +304,55442,5.0,1352656471 +304,55820,5.0,1352655883 +304,58303,4.5,1352655477 +304,59731,5.0,1352656546 +304,64620,4.5,1352656622 +304,67508,5.0,1352655422 +304,68237,5.0,1352655168 +304,70286,5.0,1352656502 +304,79132,4.0,1352655124 +304,93040,5.0,1352654981 +305,112,3.0,947402392 +305,153,3.0,947402442 +305,164,3.0,947401901 +305,296,3.0,947401656 +305,306,4.0,947401683 +305,307,4.0,947401721 +305,318,3.0,947401709 +305,347,4.0,947401811 +305,380,2.0,947402392 +305,434,3.0,947402392 +305,480,2.0,947401494 +305,541,4.0,947402031 +305,546,1.0,947402442 +305,590,3.0,947402392 +305,608,2.0,947401646 +305,711,1.0,947401564 +305,1097,1.0,947401538 +305,1125,1.0,947401564 +305,1252,3.0,947402109 +305,1267,4.0,947402109 +305,1499,1.0,947402442 +305,1544,2.0,947402442 +305,1580,3.0,947402392 +305,1617,3.0,947401901 +305,1783,3.0,947401901 +305,2716,2.0,947401513 +305,2917,5.0,947401793 +305,2938,5.0,947401767 +305,2943,1.0,947401669 +306,1,3.0,956083012 +306,2,4.0,939716745 +306,5,2.0,956082033 +306,7,2.0,939717948 +306,11,4.0,939718559 +306,14,3.0,939724401 +306,16,4.0,939722228 +306,17,4.0,939720907 +306,19,4.0,939720147 +306,21,4.0,939715755 +306,25,4.0,939721044 +306,34,4.0,939717358 +306,35,3.0,939724401 +306,37,3.0,941546415 +306,39,5.0,939718559 +306,45,4.0,939718559 +306,47,4.0,939716937 +306,50,4.0,939716937 +306,52,4.0,939718327 +306,57,2.0,939724436 +306,62,3.0,939724163 +306,74,2.0,956081702 +306,88,3.0,948837547 +306,105,2.0,956081775 +306,110,3.0,939715834 +306,132,3.0,939901886 +306,135,1.0,956081971 +306,140,3.0,956083044 +306,141,4.0,939719150 +306,144,3.0,939718243 +306,150,4.0,939721148 +306,160,1.0,939716309 +306,161,2.0,956081904 +306,165,4.0,939716043 +306,176,3.0,939717432 +306,179,3.0,941550841 +306,185,3.0,939901886 +306,186,3.0,939719284 +306,193,2.0,956082732 +306,195,2.0,939719310 +306,196,1.0,940348195 +306,206,2.0,956083044 +306,207,4.0,941549001 +306,218,3.0,939717495 +306,222,3.0,939739488 +306,223,3.0,956081880 +306,224,4.0,939718243 +306,225,3.0,941550990 +306,231,5.0,939720101 +306,236,2.0,956082081 +306,237,4.0,939719042 +306,252,3.0,941553669 +306,253,3.0,940348067 +306,256,3.0,965847834 +306,260,5.0,939901120 +306,265,4.0,939721044 +306,266,3.0,948836912 +306,270,2.0,956082396 +306,278,2.0,939719150 +306,280,3.0,939722809 +306,282,3.0,941548678 +306,288,3.0,939902368 +306,289,3.0,939718964 +306,292,3.0,939716078 +306,296,4.0,939716937 +306,299,4.0,939721148 +306,300,4.0,939720948 +306,305,1.0,939720067 +306,312,3.0,939720174 +306,316,3.0,939716104 +306,318,5.0,939720907 +306,319,4.0,939901498 +306,333,4.0,939720032 +306,337,3.0,956083068 +306,339,3.0,939718181 +306,342,3.0,939718181 +306,344,4.0,939720010 +306,345,4.0,939718181 +306,349,4.0,939716017 +306,350,3.0,939901712 +306,351,2.0,939724314 +306,356,5.0,939717358 +306,357,4.0,939717947 +306,360,2.0,939716406 +306,361,4.0,939739465 +306,364,4.0,948835929 +306,370,4.0,941545367 +306,371,3.0,941549152 +306,372,3.0,939719126 +306,373,4.0,939901440 +306,376,3.0,939716275 +306,377,4.0,939715755 +306,378,3.0,939719042 +306,380,5.0,939716694 +306,381,3.0,939722971 +306,410,3.0,939720010 +306,412,4.0,941549456 +306,414,3.0,939720010 +306,417,3.0,939718732 +306,420,4.0,939716406 +306,422,3.0,948912802 +306,423,3.0,939716254 +306,427,2.0,939902498 +306,428,3.0,939722616 +306,432,2.0,956081852 +306,436,3.0,939902428 +306,440,5.0,939719042 +306,450,3.0,941551523 +306,453,2.0,941554624 +306,454,4.0,939901677 +306,455,3.0,939716822 +306,457,4.0,939715834 +306,471,3.0,939718996 +306,474,3.0,939715755 +306,475,4.0,941548613 +306,477,3.0,948835891 +306,480,3.0,939715919 +306,490,3.0,939901763 +306,491,3.0,941550663 +306,492,4.0,939719126 +306,494,3.0,939715754 +306,498,2.0,941551603 +306,500,4.0,939719126 +306,508,4.0,939721148 +306,509,4.0,939726158 +306,515,4.0,939722615 +306,521,2.0,939901794 +306,524,4.0,939722867 +306,527,5.0,939720871 +306,534,3.0,965846757 +306,535,3.0,939720948 +306,538,4.0,941549971 +306,539,4.0,939718327 +306,540,3.0,939902428 +306,543,3.0,948837056 +306,574,3.0,956082861 +306,585,4.0,939718886 +306,586,3.0,939720032 +306,587,4.0,939718886 +306,589,4.0,939715795 +306,590,3.0,939716694 +306,593,4.0,939720907 +306,595,4.0,948919659 +306,597,4.0,939719073 +306,605,3.0,941549152 +306,608,4.0,939716937 +306,628,4.0,941549001 +306,648,3.0,939716104 +306,707,3.0,939901531 +306,708,3.0,939718760 +306,719,3.0,948837088 +306,733,4.0,939716017 +306,736,4.0,939716194 +306,762,1.0,939717209 +306,778,4.0,939722784 +306,780,4.0,939716078 +306,784,4.0,939720032 +306,785,2.0,965846948 +306,786,2.0,956081997 +306,802,2.0,939726025 +306,804,3.0,948836827 +306,805,2.0,939723938 +306,818,3.0,939719206 +306,830,4.0,939719178 +306,832,4.0,939901712 +306,851,3.0,941549068 +306,852,3.0,939717652 +306,858,4.0,939901187 +306,866,1.0,956081750 +306,882,3.0,939902223 +306,899,5.0,940246268 +306,900,3.0,940246648 +306,901,3.0,940246806 +306,902,4.0,940247120 +306,903,4.0,940246268 +306,904,5.0,940246604 +306,906,3.0,956082109 +306,908,4.0,940246184 +306,910,4.0,940246604 +306,911,4.0,940245832 +306,914,4.0,940001322 +306,915,4.0,940246268 +306,916,5.0,940246604 +306,918,3.0,940338329 +306,919,4.0,941544536 +306,924,4.0,940245832 +306,932,4.0,940246648 +306,933,4.0,941546173 +306,934,4.0,956083294 +306,938,3.0,940246648 +306,953,5.0,939999490 +306,994,4.0,939720974 +306,999,3.0,956081554 +306,1003,3.0,939901763 +306,1009,3.0,948834804 +306,1010,3.0,940247361 +306,1015,4.0,939716745 +306,1019,4.0,940246648 +306,1020,3.0,939719096 +306,1022,4.0,948834313 +306,1027,3.0,939723087 +306,1028,4.0,940001322 +306,1031,3.0,948834771 +306,1032,4.0,948834313 +306,1035,4.0,940001322 +306,1036,4.0,939815354 +306,1041,4.0,939722839 +306,1042,4.0,939719042 +306,1057,3.0,965847184 +306,1060,5.0,939717495 +306,1061,3.0,939717048 +306,1073,4.0,939901016 +306,1077,4.0,939900951 +306,1079,4.0,939760617 +306,1081,4.0,940001280 +306,1088,4.0,939760516 +306,1092,4.0,939901763 +306,1094,4.0,939722946 +306,1096,4.0,939814997 +306,1097,5.0,939814893 +306,1101,4.0,939760516 +306,1120,4.0,939722228 +306,1124,3.0,939814997 +306,1125,3.0,939901016 +306,1131,4.0,948834967 +306,1132,3.0,940347601 +306,1135,5.0,940347331 +306,1136,4.0,939900951 +306,1171,3.0,948836993 +306,1172,4.0,939760436 +306,1177,4.0,939722677 +306,1179,4.0,939717070 +306,1183,1.0,939722678 +306,1184,4.0,939718211 +306,1185,4.0,939815026 +306,1186,4.0,939815026 +306,1187,3.0,941550691 +306,1188,4.0,939718732 +306,1191,3.0,948836176 +306,1196,4.0,939760436 +306,1197,4.0,939760436 +306,1198,5.0,939815354 +306,1206,4.0,948834634 +306,1210,4.0,939715795 +306,1213,5.0,939716974 +306,1214,3.0,956081610 +306,1216,3.0,956081725 +306,1220,4.0,939760617 +306,1225,5.0,939814967 +306,1230,4.0,939901017 +306,1234,5.0,939900951 +306,1235,1.0,956082230 +306,1240,5.0,939903033 +306,1244,3.0,939901059 +306,1246,4.0,939814940 +306,1247,4.0,940247225 +306,1249,3.0,948835714 +306,1257,2.0,939760664 +306,1258,4.0,948834931 +306,1259,4.0,939760759 +306,1265,4.0,939717432 +306,1268,4.0,941549425 +306,1270,4.0,940341314 +306,1271,2.0,956082081 +306,1278,4.0,939901016 +306,1280,4.0,939720907 +306,1282,4.0,940338329 +306,1285,4.0,940341314 +306,1286,5.0,939760474 +306,1288,4.0,939760759 +306,1291,4.0,939900382 +306,1292,4.0,939901017 +306,1296,4.0,939760436 +306,1300,4.0,939815088 +306,1302,4.0,939814997 +306,1304,4.0,940247225 +306,1307,5.0,939760474 +306,1321,4.0,940347863 +306,1327,4.0,940349151 +306,1332,4.0,939901350 +306,1341,4.0,940349116 +306,1343,4.0,939901641 +306,1346,2.0,948835365 +306,1353,4.0,939719073 +306,1354,3.0,939722894 +306,1357,4.0,939721003 +306,1358,4.0,939721044 +306,1370,4.0,939715894 +306,1380,4.0,939901059 +306,1381,2.0,939760563 +306,1387,4.0,940349116 +306,1388,3.0,940349116 +306,1393,3.0,939720907 +306,1396,3.0,939902825 +306,1399,3.0,939722839 +306,1404,3.0,939717026 +306,1405,4.0,939718910 +306,1407,4.0,939901609 +306,1408,4.0,939726189 +306,1416,3.0,939724487 +306,1422,2.0,939901531 +306,1431,3.0,939716130 +306,1438,2.0,939902498 +306,1441,3.0,939719042 +306,1464,2.0,939903345 +306,1476,4.0,939719042 +306,1485,4.0,939718181 +306,1498,3.0,941549352 +306,1499,1.0,956081632 +306,1500,3.0,956082230 +306,1513,4.0,939719918 +306,1515,3.0,939902428 +306,1517,4.0,939717947 +306,1518,2.0,939715990 +306,1535,4.0,939723938 +306,1537,4.0,939718996 +306,1541,3.0,941553592 +306,1544,2.0,956082396 +306,1552,2.0,956081905 +306,1556,2.0,939716536 +306,1569,3.0,939718211 +306,1580,4.0,939715948 +306,1581,2.0,941555487 +306,1584,4.0,939720871 +306,1590,2.0,939716504 +306,1593,3.0,939726189 +306,1597,3.0,939716043 +306,1598,3.0,939717188 +306,1608,4.0,939715948 +306,1610,3.0,939715795 +306,1614,4.0,939718327 +306,1617,4.0,939716974 +306,1625,3.0,939901498 +306,1641,4.0,939718266 +306,1672,3.0,939722615 +306,1673,4.0,939722867 +306,1674,4.0,939760436 +306,1676,2.0,939716078 +306,1678,4.0,939722784 +306,1682,4.0,939722727 +306,1693,3.0,939720974 +306,1704,4.0,939721866 +306,1707,2.0,956083321 +306,1713,2.0,956082475 +306,1717,3.0,939901609 +306,1721,5.0,939722727 +306,1729,4.0,939716974 +306,1732,4.0,939717026 +306,1747,4.0,939718327 +306,1777,3.0,939718938 +306,1779,3.0,939716763 +306,1784,4.0,939717400 +306,1797,4.0,948835755 +306,1821,3.0,939719367 +306,1876,3.0,939715894 +306,1883,4.0,939717652 +306,1885,4.0,946499206 +306,1892,3.0,939901440 +306,1911,4.0,939719284 +306,1923,4.0,939717358 +306,1947,4.0,940001322 +306,1951,3.0,940001322 +306,1954,4.0,939901214 +306,1955,5.0,939901187 +306,1956,3.0,939815088 +306,1957,5.0,939814893 +306,1958,4.0,939815088 +306,1959,4.0,939760516 +306,1961,5.0,939814967 +306,1963,4.0,940247120 +306,1965,4.0,940339237 +306,1966,3.0,956082436 +306,1967,3.0,948835334 +306,1968,4.0,939760759 +306,1974,4.0,940347909 +306,1982,4.0,940349116 +306,1983,2.0,956082230 +306,1984,3.0,940347960 +306,1994,4.0,939903033 +306,1995,2.0,939903082 +306,1997,3.0,940349116 +306,2003,3.0,940347358 +306,2011,3.0,940347358 +306,2013,4.0,939901120 +306,2017,3.0,940001351 +306,2020,4.0,939760436 +306,2028,4.0,939715834 +306,2034,4.0,948834835 +306,2054,2.0,956082263 +306,2065,3.0,939760563 +306,2067,4.0,940247120 +306,2071,4.0,939724854 +306,2085,3.0,956081554 +306,2087,3.0,940246744 +306,2088,2.0,939900480 +306,2096,4.0,948834313 +306,2100,3.0,939760474 +306,2106,3.0,939724263 +306,2108,4.0,939717652 +306,2109,3.0,956082344 +306,2112,3.0,948836738 +306,2115,4.0,939900480 +306,2124,4.0,939718886 +306,2134,2.0,956083068 +306,2137,4.0,948834747 +306,2144,4.0,939760664 +306,2145,4.0,939760516 +306,2146,4.0,939760516 +306,2147,1.0,956081853 +306,2168,2.0,956081932 +306,2171,4.0,939718910 +306,2174,3.0,956081702 +306,2183,4.0,940246268 +306,2188,2.0,941550636 +306,2194,4.0,939814893 +306,2240,4.0,948835012 +306,2241,3.0,940347439 +306,2243,4.0,939760474 +306,2245,4.0,939815127 +306,2247,3.0,940347467 +306,2248,4.0,939760436 +306,2252,3.0,956082263 +306,2254,3.0,948835068 +306,2255,2.0,940347467 +306,2257,3.0,939760563 +306,2259,2.0,956081725 +306,2262,4.0,939760436 +306,2263,4.0,939903082 +306,2268,5.0,939716937 +306,2269,3.0,939723087 +306,2273,3.0,939715795 +306,2289,4.0,939718824 +306,2296,3.0,939720526 +306,2297,3.0,956083068 +306,2300,5.0,940001351 +306,2302,4.0,939717432 +306,2312,4.0,939814893 +306,2313,3.0,939814918 +306,2324,4.0,939717400 +306,2348,3.0,939815026 +306,2356,4.0,939720340 +306,2369,3.0,939760516 +306,2375,2.0,939760664 +306,2396,4.0,939717400 +306,2405,3.0,939760563 +306,2406,3.0,939760474 +306,2409,3.0,939901245 +306,2410,3.0,939815088 +306,2412,4.0,939715990 +306,2416,2.0,956081680 +306,2418,3.0,939760617 +306,2420,4.0,939814893 +306,2421,2.0,956082344 +306,2424,4.0,939718824 +306,2433,3.0,939721866 +306,2442,4.0,939724401 +306,2455,4.0,940347863 +306,2456,1.0,956082057 +306,2463,3.0,940347358 +306,2469,3.0,939760516 +306,2474,3.0,939814918 +306,2478,3.0,939760617 +306,2492,3.0,939720498 +306,2502,3.0,948836036 +306,2505,3.0,956081554 +306,2518,4.0,939760664 +306,2520,4.0,939901214 +306,2521,3.0,939901245 +306,2522,3.0,939901272 +306,2524,4.0,939901245 +306,2536,3.0,939901272 +306,2539,4.0,948836147 +306,2541,4.0,965847214 +306,2546,3.0,965847619 +306,2565,3.0,940246744 +306,2574,3.0,939720405 +306,2580,3.0,939717000 +306,2581,3.0,965846894 +306,2598,1.0,944478788 +306,2599,4.0,945788930 +306,2612,4.0,940338387 +306,2616,2.0,939716472 +306,2617,4.0,939715894 +306,2618,3.0,950904870 +306,2628,3.0,956082889 +306,2639,4.0,939814893 +306,2640,4.0,939901120 +306,2641,3.0,939900444 +306,2642,3.0,939900480 +306,2657,4.0,939900951 +306,2664,3.0,940246484 +306,2677,2.0,965846395 +306,2683,4.0,939718886 +306,2686,4.0,948834097 +306,2694,3.0,948836812 +306,2700,3.0,948836417 +306,2701,2.0,939716130 +306,2702,3.0,948834069 +306,2706,4.0,939718732 +306,2710,3.0,939715520 +306,2716,4.0,939760759 +306,2717,3.0,940347909 +306,2736,4.0,940347417 +306,2739,3.0,939814893 +306,2746,3.0,940001280 +306,2750,3.0,939815088 +306,2762,3.0,957555791 +306,2763,4.0,956082968 +306,2770,3.0,956081750 +306,2779,4.0,939901059 +306,2791,4.0,939760617 +306,2795,3.0,956083045 +306,2796,3.0,940347467 +306,2797,5.0,939760617 +306,2802,3.0,939760563 +306,2803,3.0,939901564 +306,2829,3.0,957555821 +306,2846,4.0,948835623 +306,2848,4.0,940246268 +306,2857,3.0,940001351 +306,2858,4.0,941544221 +306,2862,3.0,939815173 +306,2867,3.0,940341022 +306,2875,3.0,939722727 +306,2877,3.0,939901272 +306,2881,4.0,965847390 +306,2884,1.0,939715610 +306,2890,4.0,939715446 +306,2908,3.0,965846255 +306,2915,4.0,940347358 +306,2916,3.0,956083012 +306,2918,4.0,939760759 +306,2929,4.0,939815088 +306,2941,3.0,940246484 +306,2942,4.0,939760563 +306,2943,3.0,939726132 +306,2950,3.0,939760563 +306,2953,2.0,956083321 +306,2961,3.0,939715473 +306,2968,3.0,965848805 +306,2971,4.0,939999527 +306,2973,4.0,939760664 +306,2976,3.0,956081797 +306,2985,4.0,948835298 +306,2987,3.0,939900382 +306,2997,3.0,965845988 +306,3004,2.0,965847948 +306,3006,4.0,965846356 +306,3015,5.0,948834771 +306,3016,4.0,965849328 +306,3017,3.0,965849386 +306,3039,5.0,948835269 +306,3044,4.0,948835948 +306,3060,4.0,941548473 +306,3068,3.0,948834967 +306,3072,4.0,948834931 +306,3087,4.0,948835334 +306,3094,3.0,948835068 +306,3100,3.0,948836669 +306,3101,5.0,948834992 +306,3104,4.0,948834992 +306,3105,4.0,948919690 +306,3107,3.0,948836402 +306,3108,4.0,948836285 +306,3129,4.0,948834111 +306,3160,4.0,956081273 +306,3174,3.0,946499104 +306,3176,4.0,946499144 +306,3186,4.0,965846046 +306,3203,2.0,956081932 +306,3206,3.0,965849353 +306,3210,4.0,965848281 +306,3219,3.0,948836494 +306,3244,4.0,948834835 +306,3247,4.0,948836812 +306,3248,2.0,965847794 +306,3249,4.0,948836843 +306,3250,2.0,956081610 +306,3252,3.0,948837478 +306,3253,4.0,965846492 +306,3254,4.0,948836897 +306,3255,4.0,948836584 +306,3256,4.0,948836466 +306,3257,3.0,948837664 +306,3258,1.0,956081951 +306,3260,4.0,948835666 +306,3261,4.0,948837019 +306,3269,4.0,948836569 +306,3270,3.0,956081932 +306,3274,4.0,948837583 +306,3358,4.0,952113407 +306,3359,4.0,952113372 +306,3361,4.0,952113387 +306,3384,4.0,952113489 +306,3386,3.0,952113432 +306,3392,1.0,956082732 +306,3393,2.0,952636566 +306,3394,2.0,952113372 +306,3404,3.0,952636692 +306,3405,3.0,952113464 +306,3418,4.0,952636692 +306,3420,4.0,952636384 +306,3421,4.0,952636384 +306,3436,3.0,952636584 +306,3448,4.0,952636603 +306,3450,2.0,956082230 +306,3471,4.0,953674367 +306,3498,4.0,953674445 +306,3499,4.0,953674445 +306,3500,3.0,953674445 +306,3504,4.0,953674462 +306,3524,5.0,956081320 +306,3525,4.0,956081320 +306,3526,4.0,956081437 +306,3528,4.0,956081454 +306,3531,2.0,956081611 +306,3545,3.0,956081333 +306,3549,3.0,956081359 +306,3577,2.0,956083045 +306,3584,3.0,957555887 +306,3614,4.0,957555922 +306,3635,4.0,959197196 +306,3638,3.0,959197134 +306,3639,3.0,959197134 +306,3668,3.0,959197176 +306,3671,4.0,959197066 +306,3684,3.0,959197101 +306,3685,3.0,959197163 +306,3686,4.0,959197101 +306,3688,3.0,959197163 +306,3689,2.0,959197163 +306,3690,2.0,959197163 +306,3707,3.0,959197134 +306,3712,4.0,959197196 +306,3763,3.0,965848843 +306,3791,4.0,965845953 +306,3844,4.0,965845886 +306,3846,3.0,965845886 +306,4022,4.0,984612910 +306,4027,3.0,984612910 +306,4029,4.0,984612910 +306,4033,3.0,984612910 +306,4034,5.0,984612910 +306,4148,3.0,984612931 +306,4424,2.0,956082109 +307,47,4.0,1209126049 +307,50,5.0,1209039937 +307,293,3.5,1209040005 +307,296,5.0,1209040010 +307,318,5.0,1209040104 +307,527,4.5,1209126022 +307,728,3.0,1209039379 +307,778,5.0,1209040034 +307,858,4.5,1209125953 +307,1147,4.5,1209039420 +307,1186,2.0,1209039308 +307,1193,4.0,1209125973 +307,1213,5.0,1209125985 +307,1222,5.0,1209039965 +307,1617,4.5,1209040063 +307,1732,5.0,1209040136 +307,2060,3.5,1209039531 +307,2329,4.5,1209039868 +307,2485,3.0,1209039342 +307,2502,4.0,1209040002 +307,2858,5.0,1209039943 +307,2959,4.5,1209039891 +307,3173,3.5,1209039410 +307,3178,4.0,1209039386 +307,3949,4.0,1209040094 +307,4011,4.5,1209040116 +307,4226,5.0,1209039992 +307,4973,5.0,1209040127 +307,5110,4.0,1209039559 +307,5137,4.5,1209039935 +307,5528,3.5,1209039401 +307,5954,4.0,1209039949 +307,5995,5.0,1209126093 +307,6016,5.0,1209039881 +307,6322,3.5,1209039690 +307,7361,5.0,1209039887 +307,8784,4.5,1209040159 +307,8873,4.0,1209039902 +307,8949,4.0,1209040113 +307,8950,4.5,1209040085 +307,27831,4.0,1209040071 +307,30749,4.0,1209040167 +307,30820,4.0,1209039747 +307,31410,4.0,1209039955 +307,32587,4.5,1209040015 +307,33794,4.0,1209040039 +307,38061,4.0,1209039976 +307,40278,4.0,1209040178 +307,44195,5.0,1209040023 +307,44204,4.0,1209040120 +307,46578,3.5,1209039987 +307,46976,5.0,1209040020 +307,48394,4.0,1209039436 +307,48516,4.5,1209039853 +307,48696,4.0,1209039985 +307,48774,4.5,1209039877 +307,48780,4.0,1209039451 +307,49272,4.0,1209040049 +307,49530,4.0,1209040138 +307,50068,4.5,1209040074 +307,51255,4.0,1209040056 +307,52952,4.5,1209040027 +307,54286,4.0,1209040142 +307,54503,4.0,1209039594 +307,54997,4.5,1209039827 +307,55118,4.0,1209039836 +307,55247,5.0,1209039840 +307,55290,4.0,1209039858 +307,55765,4.0,1209040037 +307,55820,4.5,1209039831 +307,56367,5.0,1209039862 +307,56782,4.5,1209039733 +308,17,4.0,854376177 +308,39,4.0,854376623 +308,45,3.0,854377203 +308,47,3.0,854376560 +308,70,4.0,854376662 +308,93,3.0,854376305 +308,150,3.0,854376500 +308,160,2.0,854376743 +308,186,3.0,854377117 +308,203,5.0,854377117 +308,218,5.0,854377067 +308,231,3.0,854376623 +308,253,5.0,854376305 +308,261,4.0,854377048 +308,266,5.0,854376527 +308,267,5.0,854377232 +308,280,5.0,854376623 +308,288,3.0,854376501 +308,328,4.0,854376662 +308,339,4.0,854376500 +308,344,3.0,854376623 +308,350,3.0,854376527 +308,356,3.0,854376500 +308,366,3.0,854376689 +308,367,3.0,854376527 +308,368,4.0,854376623 +308,370,4.0,854376527 +308,376,4.0,854376201 +308,407,1.0,854376743 +308,410,3.0,854377161 +308,419,5.0,854377283 +308,454,5.0,854376501 +308,466,4.0,854376527 +308,477,5.0,854377047 +308,491,5.0,854377067 +308,500,2.0,854377117 +308,508,4.0,854376560 +308,520,5.0,854377283 +308,524,4.0,854377067 +308,542,4.0,854377184 +308,543,4.0,854377139 +308,590,3.0,854376587 +308,597,2.0,854376560 +308,611,2.0,854376689 +308,648,5.0,854376177 +308,653,2.0,854376220 +308,736,5.0,854376177 +308,743,4.0,854376248 +308,780,3.0,854376177 +308,802,5.0,854376248 +308,1037,2.0,854376721 +308,1073,2.0,854376220 +308,1079,1.0,854377184 +308,1127,1.0,854376721 +308,1259,3.0,854377232 +308,1330,5.0,854376843 +308,1339,1.0,854376721 +308,1342,4.0,854376807 +308,1346,3.0,854376807 +308,1347,3.0,854376764 +308,1387,3.0,854376764 +309,50,5.0,1114566499 +309,101,5.0,1114566949 +309,246,4.0,1114567333 +309,260,5.0,1114566939 +309,296,4.5,1114567095 +309,318,4.5,1114566580 +309,333,3.5,1127796751 +309,345,2.5,1114565521 +309,457,4.5,1114567220 +309,471,4.0,1114565458 +309,527,4.5,1122487474 +309,529,3.5,1114566911 +309,541,5.0,1114567191 +309,608,4.5,1114566988 +309,745,5.0,1122487426 +309,750,5.0,1114566840 +309,800,4.0,1114565630 +309,858,5.0,1114566599 +309,903,4.5,1114567307 +309,923,4.0,1114567051 +309,1060,4.5,1114566972 +309,1079,5.0,1114567176 +309,1080,5.0,1122487976 +309,1089,3.5,1114567188 +309,1101,3.5,1122487972 +309,1136,5.0,1114566884 +309,1148,4.5,1122487912 +309,1193,4.5,1122487437 +309,1196,5.0,1114567080 +309,1198,4.5,1114566712 +309,1203,4.5,1122487485 +309,1204,4.0,1114565538 +309,1208,4.5,1114567448 +309,1213,5.0,1114567116 +309,1221,5.0,1114566751 +309,1223,4.5,1122487892 +309,1225,4.0,1122487966 +309,1228,4.5,1114566039 +309,1234,4.5,1127796687 +309,1240,5.0,1114567320 +309,1250,4.0,1114565526 +309,1257,5.0,1114567173 +309,1258,5.0,1122487964 +309,1259,4.5,1114566993 +309,1262,5.0,1114566587 +309,1263,4.0,1127796692 +309,1272,4.5,1114567650 +309,1276,4.5,1114565584 +309,1278,5.0,1114566931 +309,1285,3.5,1114565580 +309,1288,5.0,1114567395 +309,1293,5.0,1114565826 +309,1358,4.0,1114567241 +309,1449,5.0,1114567475 +309,1704,4.5,1114567455 +309,1721,2.0,1122487990 +309,1909,2.5,1114565576 +309,1923,4.5,1122487994 +309,1960,4.0,1114567001 +309,2001,2.5,1114565468 +309,2019,4.5,1114565833 +309,2028,4.0,1114567245 +309,2100,3.5,1114565473 +309,2109,5.0,1127796672 +309,2321,3.0,1114565531 +309,2502,5.0,1114567339 +309,2762,4.0,1114567134 +309,2788,4.5,1114566845 +309,2791,5.0,1122487405 +309,2918,4.0,1114567092 +309,2959,4.5,1114566799 +309,3147,4.0,1114565494 +309,3246,4.0,1114566054 +309,3360,5.0,1114566027 +309,3396,5.0,1114567277 +309,3421,5.0,1114567445 +309,3481,5.0,1114567380 +309,3552,5.0,1122487408 +309,3578,4.0,1127796711 +309,3671,5.0,1114567315 +309,3871,4.0,1114566406 +309,3897,3.5,1114567291 +309,3911,4.5,1114567363 +309,4011,4.0,1114567138 +309,4027,4.0,1114567154 +309,4034,3.5,1114567158 +309,4226,4.5,1114566569 +309,4973,4.5,1114566731 +309,4993,5.0,1114566733 +309,5135,4.0,1114567074 +309,5292,4.5,1114567408 +309,5349,3.5,1114565559 +309,5377,5.0,1114567467 +309,5768,3.5,1114566200 +309,5782,4.0,1114566520 +309,5952,5.0,1114566705 +309,5989,3.5,1114567043 +309,6377,5.0,1114566702 +309,6385,3.0,1114566793 +309,6539,4.0,1114565842 +309,6662,4.0,1114567227 +309,6669,5.0,1114566366 +309,6796,4.5,1114567030 +309,6807,5.0,1114566869 +309,6874,4.5,1114567270 +309,7091,4.5,1114566687 +309,7147,4.0,1114567037 +309,7153,5.0,1114566590 +309,7361,4.5,1114566512 +309,7438,4.5,1114566854 +309,7482,4.5,1114566050 +309,7771,4.0,1114567662 +309,7934,4.0,1114567061 +309,8368,4.0,1114567020 +309,8464,4.5,1114567129 +309,8665,4.5,1114566898 +309,8784,3.5,1114566807 +309,8827,5.0,1114566562 +309,8874,4.0,1114566597 +309,8910,4.0,1114566087 +309,8961,4.0,1114565970 +309,26513,2.5,1114566229 +309,27899,4.0,1114566159 +309,30810,5.0,1114567206 +309,31221,2.0,1114566225 +309,31923,4.0,1122487466 +309,32587,4.0,1114566472 +309,33004,3.5,1127796641 +310,31,1.5,1414188058 +310,246,3.5,1414188068 +310,256,4.0,1414188064 +310,628,3.0,1414188046 +310,673,1.5,1414188061 +310,785,3.5,1414188044 +310,969,1.5,1414188065 +310,1275,2.5,1414188043 +310,1276,0.5,1414188033 +310,1285,4.5,1414188034 +310,1339,3.5,1414188062 +310,1371,1.0,1414188053 +310,1372,2.5,1414188036 +310,1375,2.0,1414188037 +310,2003,2.5,1414188038 +310,2278,5.0,1414188054 +310,2407,4.0,1414188040 +310,2455,2.5,1414188056 +310,3033,2.0,1414188042 +310,4085,2.5,1414188057 +311,1,3.0,898007830 +311,6,4.0,1080681367 +311,7,3.0,898007831 +311,10,3.0,898007870 +311,11,5.0,898526635 +311,14,3.0,898007870 +311,15,2.0,898008634 +311,16,2.0,898008634 +311,17,2.0,898008634 +311,20,1.5,1062015416 +311,21,4.0,898007647 +311,23,2.0,898007870 +311,24,1.5,1062015179 +311,27,2.0,898008658 +311,28,2.0,898008658 +311,31,3.0,898007906 +311,34,4.5,1062014388 +311,39,3.0,898007906 +311,40,3.0,898007947 +311,43,1.5,1062015566 +311,45,4.0,898007947 +311,47,0.5,1062015877 +311,48,3.0,898007947 +311,50,3.0,898007989 +311,57,2.0,898008658 +311,61,3.0,898007989 +311,62,2.5,1062015343 +311,71,1.5,1062015204 +311,74,3.0,898007989 +311,79,2.0,898008684 +311,83,3.0,898008016 +311,89,3.0,898008016 +311,95,3.0,898008040 +311,100,3.0,898008040 +311,102,0.5,1062015825 +311,105,4.0,898096102 +311,110,3.0,898008040 +311,122,2.5,1076968358 +311,135,3.0,898008136 +311,140,2.0,898008716 +311,150,5.0,898096050 +311,153,3.0,898008136 +311,155,4.5,1062016035 +311,158,2.0,898008684 +311,160,0.5,1062015864 +311,161,3.0,898008136 +311,163,2.5,1062014982 +311,164,2.0,898008716 +311,165,3.0,898008162 +311,168,2.0,898008716 +311,172,0.5,1062015822 +311,177,0.5,1062015871 +311,185,2.5,1062014523 +311,186,2.0,898008716 +311,195,3.0,898008163 +311,203,2.5,1062015681 +311,204,3.5,1062014925 +311,207,3.0,898007831 +311,208,2.0,898008741 +311,218,2.0,898008741 +311,222,3.0,898007831 +311,224,3.0,898007831 +311,225,3.0,898007831 +311,235,4.0,898096075 +311,236,3.0,898008040 +311,237,2.0,898008741 +311,246,3.0,898007906 +311,252,1.5,1062015609 +311,256,1.5,1062015257 +311,260,4.0,898096076 +311,261,3.0,898007906 +311,262,3.0,898008186 +311,266,2.0,898008741 +311,270,2.0,897491119 +311,276,2.0,898007906 +311,277,3.0,898007870 +311,280,3.0,898007870 +311,281,1.5,1062015214 +311,282,2.0,1077051518 +311,289,3.0,898007870 +311,292,0.5,1062015832 +311,293,2.0,898007870 +311,296,3.0,898007906 +311,300,3.5,1062015007 +311,303,3.0,898007906 +311,314,1.0,897489162 +311,315,3.0,898007947 +311,316,2.5,1062015672 +311,317,2.5,1062015578 +311,318,4.5,1062014353 +311,329,2.0,897490587 +311,338,0.5,1062015880 +311,339,3.5,1062015095 +311,342,2.0,897490696 +311,346,3.0,898007947 +311,349,3.0,898007947 +311,350,1.0,897489218 +311,351,3.0,898007947 +311,356,5.0,898096018 +311,357,5.0,898096018 +311,360,2.0,897491031 +311,361,3.0,898008217 +311,362,3.0,898007947 +311,364,3.0,898007989 +311,368,3.0,898008217 +311,371,3.0,898007989 +311,372,0.5,1062015836 +311,376,3.0,1093021967 +311,377,5.0,898096051 +311,378,3.0,898007989 +311,379,3.0,898007989 +311,380,3.5,1062015047 +311,384,2.0,897575171 +311,408,3.0,898007989 +311,412,3.0,898007989 +311,414,1.5,1062015500 +311,415,1.5,1062015394 +311,416,3.0,898008217 +311,420,0.5,1062015789 +311,421,3.0,898008016 +311,422,2.0,897490658 +311,424,1.5,1062015313 +311,434,3.0,898008016 +311,440,3.5,1062014781 +311,450,3.0,898008016 +311,453,2.0,897415324 +311,454,4.5,1062014125 +311,455,3.0,898008016 +311,457,4.5,1062014283 +311,463,3.0,898008246 +311,464,2.0,897489994 +311,471,0.5,1062015819 +311,474,3.0,898008040 +311,475,4.0,898007746 +311,477,2.0,897489188 +311,480,4.5,1062015991 +311,485,2.0,1076969516 +311,488,2.0,897414043 +311,489,2.5,1093022107 +311,491,1.0,897489994 +311,494,3.0,898008040 +311,500,2.5,1062015730 +311,502,1.5,1062015619 +311,506,2.0,897575365 +311,507,2.0,897414785 +311,508,2.0,897414687 +311,510,3.0,898008246 +311,514,3.5,1062014682 +311,515,3.0,898008040 +311,516,2.0,897490185 +311,517,2.0,897490185 +311,524,2.5,1062014532 +311,527,5.0,898526635 +311,529,5.0,898096051 +311,531,2.0,897489869 +311,532,1.5,1076969502 +311,534,3.0,898008040 +311,539,4.0,898007746 +311,541,2.0,897414167 +311,551,0.5,1062015830 +311,552,3.0,898008288 +311,553,3.0,1076968101 +311,569,3.0,898008136 +311,586,3.0,898008136 +311,587,3.0,898008136 +311,588,3.0,898008136 +311,589,4.5,1062014467 +311,590,5.0,898526635 +311,592,2.0,897489339 +311,593,2.0,897404011 +311,594,3.0,898008163 +311,595,3.0,898008288 +311,596,2.0,897490545 +311,597,5.0,898526635 +311,599,2.0,897415265 +311,603,3.0,898008162 +311,605,2.5,1062015067 +311,608,4.0,898007706 +311,613,2.0,897403696 +311,616,2.0,897490029 +311,628,3.0,1091465483 +311,635,3.0,898008136 +311,637,2.0,897491181 +311,647,4.0,898096076 +311,648,3.0,898008327 +311,650,3.0,898008162 +311,653,3.0,898008162 +311,674,1.0,1062015307 +311,691,2.5,1062015338 +311,694,2.5,1093022119 +311,707,2.5,1062014709 +311,708,0.5,1062015848 +311,720,3.5,1062014938 +311,733,2.5,1062014580 +311,736,4.5,1062014373 +311,750,3.0,898008186 +311,762,1.5,1062015446 +311,780,4.5,1062014238 +311,786,3.0,898008186 +311,788,2.0,897491119 +311,798,3.0,898008186 +311,800,4.5,1062016049 +311,802,1.5,1062015487 +311,805,3.0,898008186 +311,809,3.0,898008186 +311,828,2.5,1062015292 +311,830,1.5,1062015170 +311,832,3.0,898008493 +311,836,2.0,897403696 +311,838,3.0,898008288 +311,849,1.5,1062015555 +311,852,3.5,1062014313 +311,880,0.5,1080681098 +311,897,2.0,897490029 +311,898,2.0,897404615 +311,899,2.5,1062015440 +311,900,3.0,898008493 +311,901,2.0,897491316 +311,902,3.0,898008246 +311,903,2.0,897404208 +311,904,3.0,898008217 +311,905,3.0,898008217 +311,906,2.0,897575815 +311,907,2.0,897489523 +311,908,3.0,898008217 +311,909,2.0,898008217 +311,910,3.0,898008217 +311,911,2.5,1062015156 +311,912,3.0,898008516 +311,913,3.0,898008246 +311,914,4.5,1062016053 +311,915,3.0,1062015436 +311,916,4.5,1062014304 +311,917,3.0,898007831 +311,918,2.5,1062015238 +311,919,2.0,897404125 +311,920,5.0,898526635 +311,921,3.0,898008327 +311,922,2.0,897414235 +311,923,3.0,898007906 +311,924,3.0,1062015286 +311,926,2.0,897414080 +311,928,2.0,897414906 +311,930,2.5,1062015515 +311,932,3.0,898008516 +311,933,3.0,898008288 +311,934,2.0,897490545 +311,936,2.0,897414820 +311,937,3.0,898008516 +311,938,3.0,898008246 +311,942,2.0,898008634 +311,943,3.0,898008016 +311,944,2.0,898008634 +311,945,2.0,897489924 +311,947,2.0,898008658 +311,948,3.5,1062014789 +311,949,3.0,898008327 +311,950,2.5,1062015229 +311,951,2.0,897574052 +311,952,2.0,897923416 +311,953,3.0,898007831 +311,954,2.5,1062015561 +311,955,2.5,1062015461 +311,956,1.5,1062015764 +311,960,2.0,897490781 +311,962,2.0,897488789 +311,964,2.0,897489777 +311,969,3.0,898007870 +311,971,3.0,898008186 +311,972,2.5,1062015373 +311,973,3.0,898008551 +311,976,2.0,897491345 +311,982,3.0,898008327 +311,992,2.0,897403741 +311,1004,1.5,1062015398 +311,1006,1.5,1062015250 +311,1007,2.0,897491399 +311,1008,3.0,898008288 +311,1009,2.0,897489994 +311,1010,2.0,897491399 +311,1012,2.0,897414752 +311,1013,2.0,897489777 +311,1014,2.0,897575570 +311,1015,3.0,898008551 +311,1016,2.0,897575570 +311,1018,2.0,897491424 +311,1019,3.0,898008016 +311,1020,2.0,897490587 +311,1022,3.0,898008016 +311,1026,2.5,1062015632 +311,1027,2.5,1076969468 +311,1028,4.0,898007806 +311,1029,3.0,898008575 +311,1031,2.0,897415003 +311,1032,2.0,897490696 +311,1035,4.5,1062016065 +311,1036,4.5,1062016039 +311,1041,1.0,897403741 +311,1042,3.0,898008551 +311,1047,3.5,1062014248 +311,1049,3.5,1062014397 +311,1055,2.0,897403673 +311,1059,2.0,897488712 +311,1073,0.5,1062015784 +311,1079,3.0,898008040 +311,1081,3.0,898008516 +311,1082,2.0,897490224 +311,1083,2.0,897404530 +311,1084,2.0,897488839 +311,1085,2.0,897404682 +311,1086,2.5,1062015321 +311,1088,5.0,898526635 +311,1091,2.0,897491456 +311,1092,2.0,897490297 +311,1093,2.0,897491456 +311,1094,3.0,898008136 +311,1095,2.0,897490507 +311,1096,3.0,898008575 +311,1097,4.0,898096102 +311,1099,2.0,897414235 +311,1100,2.0,897923416 +311,1101,4.0,898096102 +311,1103,3.0,898008162 +311,1104,3.0,898008575 +311,1113,2.0,897490477 +311,1124,3.0,898008492 +311,1125,2.0,897490425 +311,1127,3.0,898008186 +311,1129,1.5,1062015707 +311,1135,3.0,898008186 +311,1148,3.5,1062014946 +311,1167,2.0,897576334 +311,1177,2.0,897404735 +311,1179,2.0,897490477 +311,1183,2.0,897403696 +311,1185,2.0,897404852 +311,1186,0.5,1062015787 +311,1187,1.5,1062015622 +311,1188,2.0,897404775 +311,1193,4.0,898096102 +311,1196,3.0,898008217 +311,1197,3.0,898008327 +311,1198,4.5,1062016005 +311,1201,1.0,897414558 +311,1203,3.0,898008246 +311,1204,3.0,898008246 +311,1207,3.5,1062014729 +311,1210,3.5,1062015086 +311,1212,2.5,1062015592 +311,1213,3.0,1076968733 +311,1214,2.0,1076968742 +311,1219,2.0,897413939 +311,1225,4.0,898007746 +311,1231,3.0,898008246 +311,1234,3.5,1062015101 +311,1240,4.5,1062015969 +311,1242,3.0,898008288 +311,1245,2.0,897414331 +311,1246,1.5,1062015361 +311,1247,3.5,1062014746 +311,1250,4.0,898096076 +311,1252,3.0,898008328 +311,1253,2.0,897404273 +311,1254,2.0,897414820 +311,1259,2.0,897404530 +311,1262,3.5,1062014815 +311,1265,3.5,1062014571 +311,1266,2.0,897414752 +311,1267,3.0,898008551 +311,1268,2.0,897488961 +311,1269,2.0,897413939 +311,1270,4.5,1062016011 +311,1271,3.0,898008493 +311,1275,2.0,898008516 +311,1276,2.0,897404273 +311,1282,3.0,898008516 +311,1283,3.0,898008516 +311,1284,2.0,897404208 +311,1285,0.5,1062015816 +311,1286,2.0,897414272 +311,1287,4.0,898096076 +311,1290,2.0,897489339 +311,1291,4.5,1062016082 +311,1292,2.0,897404243 +311,1293,5.0,898526635 +311,1296,2.0,897414592 +311,1297,1.5,1062015219 +311,1299,3.0,898008612 +311,1301,1.5,1062015507 +311,1302,4.5,1062016046 +311,1304,2.5,1062015246 +311,1307,4.0,898007778 +311,1334,2.0,898008741 +311,1343,2.0,898008741 +311,1344,3.0,898008516 +311,1353,2.5,1062014610 +311,1356,3.0,898008492 +311,1357,2.0,898008716 +311,1359,1.5,1062015368 +311,1363,2.5,1062015071 +311,1367,2.0,898008716 +311,1370,3.0,898008327 +311,1371,3.0,898008328 +311,1372,2.0,898008716 +311,1373,2.0,898008684 +311,1374,3.0,898008551 +311,1375,3.0,898008516 +311,1376,5.0,898526635 +311,1377,3.0,898008493 +311,1380,4.0,1062014407 +311,1385,4.0,898008493 +311,1387,3.0,898008551 +311,1390,2.0,898008684 +311,1391,2.0,898008551 +311,1393,5.0,898096018 +311,1394,3.0,898008551 +311,1395,2.0,898008684 +311,1396,4.0,898007611 +311,1397,2.0,898008684 +311,1398,3.0,898008612 +311,1401,3.0,1091465360 +311,1408,4.5,1062014288 +311,1409,1.5,1062015263 +311,1416,2.5,1062015328 +311,1417,2.0,898008658 +311,1422,2.0,898008658 +311,1438,2.0,898008634 +311,1445,2.0,898008634 +311,1453,0.5,1062015810 +311,1457,3.0,898008575 +311,1459,4.0,910364154 +311,1460,2.0,898008634 +311,1466,4.0,898096102 +311,1474,1.0,897403741 +311,1479,2.5,1062014836 +311,1488,3.0,898008575 +311,1500,3.0,898008575 +311,1513,3.0,1076968312 +311,1515,2.0,898008634 +311,1527,3.0,898008612 +311,1541,0.5,1062015807 +311,1544,3.5,1062014826 +311,1552,3.0,1094585392 +311,1556,1.5,1062015188 +311,1569,3.5,1062014298 +311,1580,3.0,898007947 +311,1584,3.0,898007906 +311,1586,4.0,898007778 +311,1587,1.0,897490477 +311,1588,4.0,898007778 +311,1589,3.0,898007870 +311,1590,0.5,1062015814 +311,1593,2.0,898008612 +311,1597,1.5,1062015703 +311,1600,0.5,1062015842 +311,1608,4.0,898007806 +311,1610,3.0,898007831 +311,1611,3.0,898007831 +311,1615,1.5,1076968331 +311,1616,5.0,1062016057 +311,1617,4.5,1062014342 +311,1645,2.5,1094585681 +311,1653,2.0,898008612 +311,1672,3.5,1062014881 +311,1674,4.5,1091465078 +311,1682,3.0,898007806 +311,1693,4.0,910884228 +311,1694,3.0,910884280 +311,1702,3.0,1094585694 +311,1704,5.0,898526635 +311,1711,3.0,898008612 +311,1721,4.0,898096051 +311,1722,3.0,898007806 +311,1727,3.0,898007806 +311,1729,3.0,1077052131 +311,1744,3.0,898007806 +311,1747,3.5,1062014323 +311,1752,3.0,1076968543 +311,1784,4.5,1062016031 +311,1792,2.5,1062014969 +311,1801,3.0,1077052111 +311,1810,5.0,910363849 +311,1835,1.5,1062015358 +311,1876,4.0,920298918 +311,1882,3.0,901548834 +311,1888,2.0,1076969408 +311,1892,3.5,1076969422 +311,1894,2.0,901548834 +311,1907,3.5,1076969429 +311,1912,5.0,901548737 +311,1917,3.5,1062014222 +311,1918,3.5,1062014245 +311,1936,3.5,1077051541 +311,1937,4.0,1091465197 +311,1944,3.5,1094585657 +311,1945,4.0,1076969390 +311,1947,5.0,1093022097 +311,1948,4.5,1076968528 +311,1949,4.0,1077052640 +311,1950,4.0,1062101970 +311,1953,3.5,1077052118 +311,1954,3.0,1076969439 +311,1957,4.5,1076969400 +311,1960,3.5,1076969417 +311,1961,4.0,1077051422 +311,1962,4.0,1091465302 +311,2000,4.0,1080681666 +311,2001,3.5,1093021982 +311,2002,3.0,1093022074 +311,2006,3.5,1062014251 +311,2011,2.0,1080681045 +311,2012,3.5,1077051823 +311,2018,4.5,1076969387 +311,2019,3.0,898008217 +311,2028,5.0,930668230 +311,2041,3.0,1076968507 +311,2054,3.5,1094585381 +311,2058,2.5,1062015001 +311,2067,3.5,1094585663 +311,2076,3.0,1076969375 +311,2077,3.0,1091465384 +311,2078,4.0,1080681779 +311,2079,3.5,1076969357 +311,2080,3.5,1091465446 +311,2085,3.0,1091465411 +311,2094,3.5,1094585650 +311,2096,3.0,1091465418 +311,2099,3.5,1115160706 +311,2112,3.0,1077052122 +311,2115,2.0,1076968114 +311,2118,3.0,1094585628 +311,2125,4.0,1062014119 +311,2132,3.0,1076968271 +311,2133,3.5,1077052092 +311,2137,3.5,1091465472 +311,2144,3.5,1093022082 +311,2145,3.5,1094585641 +311,2147,0.5,1080681175 +311,2150,3.5,1077052454 +311,2153,0.5,1062015794 +311,2166,3.0,910364507 +311,2194,3.0,1076969330 +311,2231,4.5,1062016018 +311,2243,3.5,1094585637 +311,2245,4.5,1077052084 +311,2248,3.5,1093022064 +311,2268,4.0,1093021950 +311,2273,3.0,908377846 +311,2278,3.0,1061927186 +311,2302,4.0,1093021945 +311,2312,3.5,1094585622 +311,2313,3.0,1076969310 +311,2321,3.0,1080681796 +311,2322,3.5,1062014210 +311,2334,2.0,1094585613 +311,2336,3.0,1076968300 +311,2340,3.0,1094585633 +311,2352,3.0,1094585601 +311,2353,4.0,930668055 +311,2355,3.5,1080681660 +311,2369,3.0,1077052052 +311,2375,3.0,1094585576 +311,2384,2.0,916843583 +311,2390,2.0,930668009 +311,2391,3.0,1094585579 +311,2393,3.5,1062014262 +311,2396,4.0,920298597 +311,2398,3.5,1077052076 +311,2403,3.0,1076969317 +311,2405,2.0,1077052096 +311,2406,4.0,1091465515 +311,2407,4.0,1091465460 +311,2420,4.0,1077052474 +311,2421,3.0,1094585582 +311,2424,4.0,916843552 +311,2431,3.0,1062014349 +311,2463,4.0,1093021997 +311,2469,3.0,1094585587 +311,2470,4.0,1076969290 +311,2485,2.0,1094585594 +311,2490,3.5,1062014257 +311,2496,4.0,920298567 +311,2497,2.5,1062014704 +311,2501,5.0,920298654 +311,2529,3.5,1062102007 +311,2539,4.5,1077052044 +311,2565,3.5,1091465292 +311,2567,3.0,1080681530 +311,2571,4.0,930667693 +311,2581,3.5,1076969299 +311,2605,3.0,1076969261 +311,2617,2.5,1076969269 +311,2628,2.5,1062014591 +311,2641,3.5,1076969275 +311,2642,2.0,1077052071 +311,2671,5.0,930667807 +311,2720,2.0,1080681801 +311,2724,3.0,1080681758 +311,2728,3.0,1076968257 +311,2735,2.0,1080681518 +311,2736,3.5,1077052354 +311,2739,4.0,1076969254 +311,2759,4.0,1080681542 +311,2762,4.0,1076968716 +311,2763,3.0,1094585360 +311,2779,3.0,1091465534 +311,2797,4.0,1080681645 +311,2802,2.5,1093022228 +311,2805,2.5,1080681739 +311,2819,4.5,1077052464 +311,2822,2.0,1077052438 +311,2852,3.5,1115160691 +311,2866,3.5,1077052350 +311,2870,3.5,1115160645 +311,2871,3.5,1076969199 +311,2875,2.0,1076968481 +311,2881,4.0,1093022048 +311,2890,4.0,1076969224 +311,2915,3.5,1077052458 +311,2916,3.0,1077051840 +311,2918,3.5,1077052514 +311,2919,3.5,1062102079 +311,2942,4.0,1094585546 +311,2944,3.5,1076969189 +311,2947,4.5,1076969242 +311,2948,3.5,1094585558 +311,2950,2.0,1080681735 +311,2987,3.5,1094585365 +311,2991,3.5,1076969205 +311,3000,2.0,1077052627 +311,3006,4.0,1077052000 +311,3020,3.0,1077051954 +311,3035,4.0,1091465526 +311,3039,3.5,1091465083 +311,3044,3.0,1076969236 +311,3052,0.5,1076969120 +311,3061,3.5,1091465380 +311,3062,3.5,1091465538 +311,3068,3.0,1077052420 +311,3072,2.0,1076969178 +311,3089,2.5,1077052430 +311,3098,4.5,1077052032 +311,3100,4.5,1094585517 +311,3101,3.0,1076969131 +311,3104,4.5,1077051965 +311,3105,2.5,1076969163 +311,3111,3.0,1091465464 +311,3114,3.0,1076969127 +311,3148,3.5,1077052028 +311,3175,3.0,1077051860 +311,3176,3.5,1094585371 +311,3185,3.5,1077052339 +311,3194,4.5,1115160627 +311,3196,4.5,1076968474 +311,3247,4.0,1076969136 +311,3248,2.0,1076968492 +311,3252,4.0,1062101961 +311,3255,4.0,1077052017 +311,3256,3.5,1080681728 +311,3257,4.0,1094585530 +311,3259,3.0,1077052316 +311,3268,1.5,1077051795 +311,3269,2.0,1080681752 +311,3296,4.0,1091465338 +311,3317,3.0,1076969170 +311,3354,1.5,1093022011 +311,3363,3.5,1076969071 +311,3365,4.0,1077052556 +311,3386,4.5,1080681688 +311,3408,4.0,1091465503 +311,3414,5.0,1076969087 +311,3418,2.5,1093021959 +311,3435,3.5,1076969109 +311,3436,2.5,1077051759 +311,3448,3.5,1094585535 +311,3450,3.0,1094585528 +311,3451,3.0,1091465364 +311,3466,3.0,1115160490 +311,3467,2.5,1077051556 +311,3468,3.5,1077052008 +311,3478,4.5,1076968446 +311,3479,3.5,1091465529 +311,3489,2.0,1080681548 +311,3494,3.5,1076968411 +311,3505,4.0,1091465375 +311,3507,3.0,1091465468 +311,3510,3.5,1091465262 +311,3512,4.0,1077051994 +311,3516,1.5,1091465229 +311,3555,3.5,1076969077 +311,3578,3.5,1076968128 +311,3591,3.0,1094585490 +311,3623,3.5,1094585376 +311,3624,3.5,1080681701 +311,3633,2.0,1076968440 +311,3634,3.5,1077052510 +311,3639,3.5,1094585495 +311,3649,3.5,1093022207 +311,3654,4.0,1091465440 +311,3675,4.0,1093022158 +311,3699,3.5,1094585506 +311,3735,3.5,1094585499 +311,3740,3.0,1077051958 +311,3745,3.5,1076969054 +311,3751,3.5,1076969042 +311,3753,3.0,1077051947 +311,3791,4.5,1076968462 +311,3801,4.0,1077052484 +311,3811,2.5,1077052647 +311,3827,3.0,1080681707 +311,3844,3.0,1093022172 +311,3893,4.0,1076969035 +311,3952,4.0,1094585477 +311,3977,2.5,1080681696 +311,3978,3.5,1077052274 +311,3980,3.5,1062101994 +311,3996,4.0,1077052573 +311,4002,3.0,1094585468 +311,4008,3.0,1080681055 +311,4012,1.5,1076968618 +311,4018,3.5,1093022027 +311,4019,3.5,1076969021 +311,4022,4.0,1076968144 +311,4025,3.0,1076968965 +311,4027,4.5,1080680977 +311,4033,3.5,1080681713 +311,4034,4.0,1077052589 +311,4041,4.0,1077052279 +311,4062,4.5,1077052307 +311,4080,3.0,1076968623 +311,4085,4.5,1076968975 +311,4111,3.5,1091465456 +311,4132,3.5,1076968457 +311,4161,3.0,1077051892 +311,4187,3.5,1091465243 +311,4203,3.5,1076968611 +311,4219,2.0,1080681283 +311,4225,4.5,1076968451 +311,4246,3.5,1094585464 +311,4263,3.5,1077051537 +311,4277,3.5,1093022321 +311,4291,3.0,1115160668 +311,4292,3.0,1076968380 +311,4310,3.0,1077051896 +311,4317,1.5,1076969710 +311,4327,3.5,1077052296 +311,4329,3.5,1076968652 +311,4333,3.5,1080681127 +311,4339,3.5,1115160571 +311,4351,3.5,1076969681 +311,4357,4.0,1080681323 +311,4359,4.0,1093022162 +311,4360,3.0,1076968985 +311,4361,3.5,1094585459 +311,4369,2.5,1077051904 +311,4370,3.0,1094585473 +311,4427,4.0,1077052540 +311,4432,3.0,1077052789 +311,4447,3.5,1076969766 +311,4462,3.0,1076969001 +311,4464,3.0,1077051531 +311,4465,3.5,1077052251 +311,4478,3.0,1077051582 +311,4480,3.0,1076968631 +311,4489,3.5,1076969694 +311,4503,3.0,1077051628 +311,4508,3.0,1091465216 +311,4526,3.0,1080681273 +311,4535,4.0,1080681328 +311,4537,4.0,1115160527 +311,4558,3.5,1076969687 +311,4585,3.5,1093022303 +311,4603,3.0,1076968658 +311,4623,3.5,1077052261 +311,4638,3.0,1076969010 +311,4639,3.0,1094585449 +311,4661,4.0,1062101983 +311,4700,4.0,1093022370 +311,4704,3.5,1115160511 +311,4757,3.5,1076968390 +311,4787,3.5,1093022182 +311,4795,3.0,1091465146 +311,4802,3.0,1115160474 +311,4848,3.0,1076968919 +311,4855,3.0,1076969662 +311,4912,3.5,1115160516 +311,4936,2.5,1091465496 +311,4963,5.0,1076968950 +311,4972,3.5,1080681455 +311,4995,4.0,1076968944 +311,5048,2.0,1076968581 +311,5049,3.5,1091465551 +311,5060,2.0,897488961 +311,5103,3.5,1077052236 +311,5218,4.5,1094585437 +311,5267,3.5,1076969645 +311,5299,4.5,1091465052 +311,5303,2.0,1077052216 +311,5349,4.0,1076968885 +311,5357,3.0,1076968836 +311,5377,3.0,1076968844 +311,5418,5.0,1062016121 +311,5420,3.0,1076969619 +311,5445,3.5,1091465089 +311,5459,2.5,1093021974 +311,5502,3.5,1076968864 +311,5601,3.0,1115160538 +311,5620,3.0,1147824724 +311,5644,3.5,1080681399 +311,5707,3.0,1091465191 +311,5718,3.0,1083950122 +311,5836,4.0,1076968807 +311,5938,2.5,1115160562 +311,5943,4.0,1076969614 +311,5957,3.0,1076969590 +311,5989,3.5,1115160416 +311,6059,3.0,1077052194 +311,6092,2.0,1080681619 +311,6156,3.0,1076969583 +311,6157,3.0,1076968396 +311,6225,3.0,1061928092 +311,6227,2.5,1061928136 +311,6231,3.5,1062619396 +311,6232,3.0,1061928109 +311,6233,2.5,1061928123 +311,6235,3.5,1061928099 +311,6237,3.5,1061928115 +311,6238,3.0,1061928127 +311,6239,3.0,1062619349 +311,6240,3.0,1062619358 +311,6245,3.5,1061928073 +311,6260,3.0,1061928047 +311,6276,3.0,1062619289 +311,6281,4.0,1062014487 +311,6303,3.0,1091465368 +311,6308,2.5,1061927986 +311,6314,2.5,1061927974 +311,6315,1.5,1062015641 +311,6318,2.0,1061927950 +311,6355,3.0,1062619167 +311,6356,3.5,1061927912 +311,6357,3.5,1061927904 +311,6378,4.5,1062016087 +311,6386,3.5,1062619069 +311,6390,3.5,1062619052 +311,6412,3.0,1062618993 +311,6413,3.0,1062619004 +311,6422,3.0,1062618985 +311,6423,4.0,1061927827 +311,6424,1.5,1062015269 +311,6428,3.0,1062618965 +311,6429,3.5,1062618944 +311,6431,3.0,1061927803 +311,6432,3.5,1061927797 +311,6436,1.5,1062015636 +311,6446,3.5,1061927768 +311,6448,3.0,1080681432 +311,6450,4.5,1061927746 +311,6452,3.5,1061927755 +311,6458,3.0,1062100796 +311,6466,3.0,1061927689 +311,6468,2.5,1061927727 +311,6470,3.0,1065211205 +311,6473,3.5,1062100767 +311,6477,3.5,1061927654 +311,6480,3.5,1061927665 +311,6484,3.5,1061927673 +311,6498,2.0,1065211177 +311,6516,3.5,1062100663 +311,6521,2.5,1062100682 +311,6522,3.0,1062100711 +311,6525,2.5,1061927589 +311,6527,3.5,1065211101 +311,6533,3.5,1061927573 +311,6535,0.5,1061927531 +311,6537,3.0,1061927515 +311,6539,4.0,1061927507 +311,6561,3.0,1062100594 +311,6562,3.5,1062100605 +311,6565,4.5,1062016061 +311,6585,2.0,1065211043 +311,6613,2.5,1062538169 +311,6630,4.0,1061927392 +311,6636,4.0,1061927375 +311,6638,2.0,1062538128 +311,6646,3.0,1061927339 +311,6658,3.5,1062100485 +311,6659,3.0,1062538071 +311,6662,3.5,1062100474 +311,6663,3.5,1062100469 +311,6678,2.0,1065210914 +311,6686,4.0,1062538040 +311,6718,3.5,1062537975 +311,6724,3.0,1062537955 +311,6732,3.0,1062537944 +311,6735,3.5,1062537918 +311,6743,4.0,1062537899 +311,6753,3.5,1091465129 +311,6777,4.0,1064962264 +311,6785,3.5,1064962255 +311,6787,4.0,1064962270 +311,6788,2.0,1064962282 +311,6791,2.0,1077052653 +311,6797,3.5,1064962226 +311,6810,3.0,1064962190 +311,6813,3.0,1065210708 +311,6822,3.0,1065210676 +311,6829,4.0,1064962149 +311,6832,3.0,1065210649 +311,6850,3.0,1065210591 +311,6852,3.0,1065210540 +311,6856,3.0,1065210602 +311,6873,4.0,1083950011 +311,6979,4.0,1091465352 +311,6986,4.5,1091465119 +311,7018,3.5,1091465273 +311,7036,3.0,1076968784 +311,7059,3.5,1102466339 +311,7085,3.5,1091465105 +311,7107,3.0,1076969557 +311,7121,3.0,1102466390 +311,7178,3.5,1077051632 +311,7198,3.0,1077051743 +311,7207,3.0,1077051697 +311,7212,3.5,1077051608 +311,7247,3.5,1077051601 +311,7250,2.0,1077051525 +311,7255,4.0,1083950217 +311,7263,3.0,1115160499 +311,7283,3.0,1077051665 +311,7305,2.5,1077051499 +311,7311,3.0,1077051468 +311,7357,4.0,1083950040 +311,7367,3.0,1080680848 +311,7386,4.0,1083949937 +311,7394,3.0,1083950055 +311,7493,3.5,1091465100 +311,7560,3.5,1091465124 +311,7584,3.5,1102466377 +311,7614,4.0,1115160581 +311,7649,3.5,1091465583 +311,7702,3.5,1115160658 +311,7782,3.0,1102465854 +311,7787,4.5,1083950236 +311,7791,2.5,1102465831 +311,7822,3.5,1102465797 +311,7916,3.5,1102465733 +311,7944,3.5,1102465704 +311,7980,3.5,1091465043 +311,8008,3.0,1091465096 +311,8009,3.5,1102465650 +311,8039,3.0,1102465621 +311,8057,3.0,1102465594 +311,8094,3.5,1102465581 +311,8169,3.5,1102465517 +311,8183,3.5,1102465510 +311,8187,3.5,1102465502 +311,8190,4.0,1091465028 +311,8263,3.5,1102465442 +311,8268,3.0,1102465430 +311,8337,4.0,1091465164 +311,8385,3.0,1091465391 +311,8451,3.5,1102465325 +311,8460,3.5,1102465309 +311,8463,2.5,1102465292 +311,8482,2.5,1102465281 +311,8487,3.0,1102465270 +311,8493,2.5,1091465136 +311,8502,3.5,1102465253 +311,8524,3.5,1102465238 +311,8529,4.0,1091464957 +311,8533,4.0,1091464935 +311,8535,4.0,1094585721 +311,8584,3.0,1102465190 +311,8611,3.0,1102465150 +311,8612,3.0,1102465146 +311,8614,3.5,1102465133 +311,8616,3.5,1102465127 +311,8617,3.5,1102466414 +311,8618,3.0,1102465119 +311,8622,4.0,1091464948 +311,8623,3.5,1102465111 +311,8633,3.5,1102465092 +311,8636,4.5,1091464941 +311,8644,4.0,1091464927 +311,8657,3.5,1102465063 +311,8661,3.5,1102465047 +311,8665,5.0,1091465780 +311,8672,3.5,1102465032 +311,8695,3.0,1102464998 +311,8718,2.5,1102464968 +311,8745,3.5,1102464920 +311,8772,3.5,1102464877 +311,8808,3.5,1093022376 +311,8819,2.5,1102464804 +311,8820,2.5,1102464797 +311,8821,2.5,1102464788 +311,8850,2.5,1102464732 +311,8880,3.0,1102464677 +311,8916,4.0,1102464625 +311,8920,3.5,1102464613 +311,8921,2.5,1102464606 +311,8929,4.0,1102464592 +311,8972,3.5,1102464521 +311,8983,3.5,1147824793 +311,8984,4.0,1102984824 +311,9004,3.5,1102464468 +311,9005,2.5,1102466430 +311,26242,3.5,1147824502 +311,27821,4.0,1115160846 +311,32139,4.0,1115160635 +311,32296,2.0,1115160812 +311,32598,4.0,1115160769 +311,39292,4.5,1147824660 +311,40819,4.5,1147824602 +311,41566,3.5,1147824527 +311,42011,2.5,1147824463 +311,45186,4.5,1147824177 +311,45208,0.5,1147824192 +312,1,5.0,959933200 +312,2,2.0,959935514 +312,6,5.0,959931608 +312,7,1.0,959934156 +312,10,1.0,959931688 +312,11,3.0,959933834 +312,17,3.0,959934746 +312,21,2.0,959931319 +312,25,4.0,959934644 +312,28,5.0,959934644 +312,32,2.0,959939065 +312,34,2.0,959993015 +312,36,4.0,959933117 +312,39,5.0,959933924 +312,45,5.0,959933896 +312,50,5.0,959937256 +312,52,3.0,959933805 +312,57,3.0,959993223 +312,85,4.0,959934721 +312,95,2.0,959931670 +312,99,5.0,959938819 +312,105,5.0,959934810 +312,111,5.0,959931004 +312,112,2.0,959931646 +312,125,5.0,959933805 +312,141,2.0,959934241 +312,162,4.0,959938850 +312,171,4.0,959933777 +312,176,3.0,959933200 +312,187,3.0,959930966 +312,190,5.0,959993274 +312,198,1.0,959931319 +312,203,4.0,959934359 +312,206,5.0,959938850 +312,208,1.0,959931843 +312,218,3.0,959934287 +312,224,2.0,959933834 +312,231,4.0,959934288 +312,235,3.0,959933556 +312,246,4.0,959938797 +312,247,4.0,959934767 +312,249,2.0,959934871 +312,260,2.0,959931255 +312,265,4.0,959934663 +312,288,1.0,959931843 +312,290,3.0,959993155 +312,292,3.0,959931772 +312,296,5.0,959932443 +312,306,4.0,959932464 +312,316,2.0,959931772 +312,318,4.0,959932508 +312,321,2.0,959993015 +312,322,3.0,959933985 +312,339,2.0,959934123 +312,344,1.0,959934241 +312,348,4.0,959933465 +312,349,4.0,959931593 +312,352,3.0,959933985 +312,353,1.0,959931670 +312,356,2.0,959934721 +312,357,4.0,959934006 +312,363,5.0,959938850 +312,367,2.0,959933947 +312,368,1.0,959933985 +312,372,4.0,959934096 +312,377,5.0,959931593 +312,380,5.0,959931628 +312,410,3.0,959934177 +312,440,3.0,959933777 +312,441,5.0,959934026 +312,457,4.0,959931572 +312,464,3.0,959931861 +312,474,3.0,959931375 +312,480,1.0,959931572 +312,485,2.0,959931861 +312,492,3.0,959933924 +312,500,1.0,959934071 +312,509,5.0,959934704 +312,527,5.0,959933086 +312,529,3.0,959993203 +312,532,4.0,959934177 +312,539,3.0,959934045 +312,541,5.0,959935398 +312,551,3.0,959934006 +312,556,4.0,959938819 +312,562,4.0,959933872 +312,581,5.0,959938850 +312,585,5.0,959934331 +312,586,1.0,959934331 +312,587,3.0,959933924 +312,588,3.0,959933777 +312,589,5.0,959931296 +312,592,3.0,959931362 +312,593,5.0,959992994 +312,597,5.0,959933896 +312,605,3.0,959934906 +312,608,5.0,959932532 +312,639,3.0,959934288 +312,648,4.0,959931709 +312,663,5.0,959934344 +312,708,3.0,959933834 +312,733,3.0,959931418 +312,736,4.0,959931731 +312,780,1.0,959931670 +312,786,2.0,959931731 +312,788,3.0,959935514 +312,818,4.0,959934489 +312,858,4.0,959932443 +312,866,5.0,959934746 +312,896,3.0,959932415 +312,919,3.0,959933086 +312,922,3.0,959935417 +312,923,3.0,959932486 +312,926,5.0,959932557 +312,1046,5.0,959932508 +312,1047,5.0,959931402 +312,1057,5.0,959934177 +312,1059,4.0,959934836 +312,1060,4.0,959933465 +312,1073,3.0,959935483 +312,1089,5.0,959937256 +312,1094,4.0,959934682 +312,1095,3.0,959993155 +312,1097,3.0,959935483 +312,1111,4.0,959938977 +312,1123,3.0,959938850 +312,1127,3.0,959931362 +312,1176,4.0,959933086 +312,1179,4.0,959935417 +312,1183,2.0,959934704 +312,1188,3.0,959933834 +312,1191,5.0,959939016 +312,1192,5.0,959938977 +312,1193,4.0,959930966 +312,1196,4.0,959931231 +312,1198,2.0,959931209 +312,1199,3.0,959939235 +312,1200,4.0,959931277 +312,1208,4.0,959932532 +312,1213,5.0,959933006 +312,1214,5.0,959931231 +312,1217,3.0,959933028 +312,1218,4.0,959931231 +312,1221,4.0,959932486 +312,1222,4.0,959931255 +312,1228,4.0,959932557 +312,1231,4.0,959933028 +312,1240,5.0,959931255 +312,1244,4.0,959939330 +312,1264,5.0,959931209 +312,1267,4.0,959935398 +312,1291,2.0,959931340 +312,1299,5.0,959935577 +312,1320,1.0,959931793 +312,1339,4.0,959934871 +312,1344,4.0,959935435 +312,1370,4.0,959931628 +312,1385,4.0,959931646 +312,1391,3.0,959931822 +312,1392,4.0,959933584 +312,1393,2.0,959934682 +312,1396,3.0,959939065 +312,1405,3.0,959934205 +312,1438,1.0,959931731 +312,1466,3.0,959937286 +312,1500,3.0,959933556 +312,1513,4.0,959934156 +312,1517,2.0,959933834 +312,1527,1.0,959931593 +312,1544,3.0,959931861 +312,1566,2.0,959934006 +312,1569,4.0,959934045 +312,1573,3.0,959939091 +312,1580,2.0,959931438 +312,1584,4.0,959939091 +312,1610,4.0,959931402 +312,1612,2.0,959933510 +312,1614,3.0,959934123 +312,1616,3.0,959931843 +312,1617,4.0,959935398 +312,1641,1.0,959933924 +312,1653,4.0,959939065 +312,1673,5.0,959993155 +312,1674,4.0,959935620 +312,1676,1.0,959931670 +312,1683,3.0,959934767 +312,1687,2.0,959931793 +312,1701,3.0,959934123 +312,1719,5.0,959932557 +312,1721,2.0,959934823 +312,1729,2.0,959937286 +312,1734,5.0,959933985 +312,1747,3.0,959934026 +312,1777,2.0,959933985 +312,1784,5.0,959933853 +312,1797,2.0,959938977 +312,1821,4.0,959934906 +312,1831,1.0,959931886 +312,1875,3.0,959933584 +312,1876,2.0,959939109 +312,1882,1.0,959932376 +312,1883,2.0,959933896 +312,1885,3.0,959933200 +312,1897,4.0,959934663 +312,1912,3.0,959931296 +312,1916,2.0,959931593 +312,1917,1.0,959931709 +312,1918,2.0,959931709 +312,1923,2.0,959933584 +312,1956,4.0,959935620 +312,2002,3.0,959931754 +312,2020,4.0,959935620 +312,2022,3.0,959935650 +312,2071,3.0,959930966 +312,2105,4.0,959935514 +312,2124,4.0,959933947 +312,2167,2.0,959931418 +312,2174,3.0,959935483 +312,2247,3.0,959931004 +312,2252,2.0,959934096 +312,2289,5.0,959933465 +312,2291,4.0,959934746 +312,2302,3.0,959933853 +312,2303,5.0,959932508 +312,2331,4.0,959933537 +312,2333,3.0,959993057 +312,2353,2.0,959931438 +312,2384,2.0,959933537 +312,2391,4.0,959937256 +312,2395,5.0,959933805 +312,2396,3.0,959933171 +312,2424,1.0,959934138 +312,2427,2.0,959931402 +312,2436,3.0,959934026 +312,2499,4.0,959933200 +312,2539,3.0,959934138 +312,2571,4.0,959931277 +312,2580,4.0,959937286 +312,2599,4.0,959933171 +312,2628,1.0,959931130 +312,2671,4.0,959934071 +312,2683,2.0,959934096 +312,2692,5.0,959931255 +312,2700,4.0,959933584 +312,2723,2.0,959931772 +312,2759,2.0,959933465 +312,2762,2.0,959931078 +312,2770,3.0,959933872 +312,2797,3.0,959935483 +312,2808,1.0,959931911 +312,2858,5.0,959931078 +312,2890,3.0,959993057 +312,2908,5.0,959931078 +312,2916,2.0,959931572 +312,2919,4.0,959935650 +312,2943,2.0,959934644 +312,2959,5.0,959931099 +312,2968,3.0,959935483 +312,2985,3.0,959931362 +312,2997,4.0,959931078 +312,3006,3.0,959931078 +312,3019,5.0,959935595 +312,3044,3.0,959934704 +312,3046,4.0,959933805 +312,3067,5.0,959935620 +312,3107,3.0,959931670 +312,3113,2.0,959931160 +312,3114,3.0,959933153 +312,3160,3.0,959933006 +312,3253,2.0,959933947 +312,3256,5.0,959931438 +312,3267,2.0,959931319 +312,3274,2.0,959931754 +312,3358,3.0,959933584 +312,3404,2.0,959931296 +312,3418,5.0,959931545 +312,3424,4.0,959935620 +312,3471,4.0,959933100 +312,3498,4.0,959939349 +312,3527,1.0,959931340 +312,3528,2.0,959934945 +312,3578,5.0,959931362 +312,3623,1.0,959931507 +312,3702,5.0,959931277 +313,1,4.0,1105354580 +313,2,3.0,1101033291 +313,5,3.5,1105355064 +313,10,3.5,1105354679 +313,19,2.5,1105354923 +313,25,3.0,1105354786 +313,32,3.0,1101033175 +313,34,4.0,1105354644 +313,47,4.0,1105354631 +313,110,5.0,1105354565 +313,135,4.0,1101033638 +313,150,3.5,1105354563 +313,165,3.5,1105354615 +313,186,3.0,1101033008 +313,198,3.5,1101033081 +313,208,2.0,1105354773 +313,215,3.5,1101034071 +313,253,4.0,1105354740 +313,266,3.5,1101033905 +313,288,2.5,1105354821 +313,318,5.0,1105354569 +313,339,3.5,1105354752 +313,344,2.5,1105354598 +313,345,3.5,1101033059 +313,355,3.0,1101033625 +313,356,4.5,1101033896 +313,357,3.5,1105354716 +313,364,5.0,1101033255 +313,367,3.5,1105354687 +313,376,4.0,1105355097 +313,377,3.5,1105354585 +313,380,4.0,1101033909 +313,381,3.5,1168879130 +313,457,4.5,1105354540 +313,480,4.0,1105354520 +313,500,3.5,1101033270 +313,520,3.5,1101033046 +313,527,5.0,1101033181 +313,539,4.5,1101033922 +313,552,3.5,1168878813 +313,586,3.0,1105354830 +313,587,3.0,1168878664 +313,588,4.5,1101033165 +313,589,3.5,1105353824 +313,590,4.0,1105354559 +313,595,4.0,1105354621 +313,597,3.0,1101033915 +313,648,4.0,1105354605 +313,733,4.5,1105354664 +313,736,3.0,1101033262 +313,778,4.0,1105355003 +313,784,2.0,1101033238 +313,788,3.5,1101034175 +313,832,4.0,1105355172 +313,904,4.0,1105355246 +313,910,4.0,1101033595 +313,1059,3.5,1101033569 +313,1079,4.0,1105354918 +313,1088,4.0,1131563301 +313,1090,4.0,1101033011 +313,1097,4.0,1105354695 +313,1127,3.5,1105355033 +313,1183,2.0,1105354935 +313,1198,4.0,1105354657 +313,1201,2.0,1168878094 +313,1219,3.5,1105355084 +313,1240,3.5,1105353833 +313,1246,3.5,1105355156 +313,1258,3.5,1105355137 +313,1270,4.0,1105354661 +313,1287,5.0,1101033548 +313,1345,3.0,1124136576 +313,1350,3.0,1169979961 +313,1387,4.0,1105354907 +313,1393,3.0,1101033911 +313,1407,3.0,1105355144 +313,1485,4.0,1101033026 +313,1518,4.0,1105353876 +313,1544,3.5,1105355253 +313,1573,3.5,1105355059 +313,1580,4.0,1105354801 +313,1594,3.0,1168879066 +313,1597,5.0,1101033113 +313,1608,3.0,1105355232 +313,1615,4.0,1168879374 +313,1625,4.5,1101033077 +313,1641,3.5,1105355109 +313,1682,3.5,1101033220 +313,1721,5.0,1101033204 +313,1732,3.0,1101033021 +313,1784,4.0,1105354978 +313,1801,3.5,1101034030 +313,1835,3.0,1101033513 +313,1894,3.5,1101033506 +313,1917,4.0,1105355121 +313,1923,4.0,1101033160 +313,1954,4.0,1171729496 +313,1961,4.0,1105354883 +313,2006,4.0,1101033916 +313,2011,3.0,1105355165 +313,2012,3.0,1105355211 +313,2028,4.0,1105354707 +313,2080,4.0,1124136253 +313,2081,4.0,1124136803 +313,2194,4.5,1126291311 +313,2353,4.5,1101033061 +313,2384,4.5,1101033476 +313,2394,5.0,1124136790 +313,2396,3.0,1101033932 +313,2409,4.0,1171729500 +313,2410,3.5,1171729506 +313,2420,3.5,1133022976 +313,2421,3.5,1133022979 +313,2422,3.5,1133022980 +313,2424,3.0,1101033980 +313,2490,3.0,1124137127 +313,2571,4.0,1105354721 +313,2605,3.5,1124136533 +313,2617,4.0,1105355257 +313,2671,4.5,1101033899 +313,2687,4.0,1124136502 +313,2700,4.0,1105355205 +313,2706,2.5,1105355031 +313,2710,3.5,1105355069 +313,2712,2.5,1101033187 +313,2724,2.5,1168878763 +313,2762,3.5,1101033184 +313,2770,3.5,1101033090 +313,2858,3.5,1105354669 +313,2959,2.5,1105355020 +313,2978,3.5,1101033858 +313,2997,2.0,1105354870 +313,3052,1.5,1101033102 +313,3101,4.0,1101033073 +313,3114,4.0,1105355075 +313,3147,4.5,1124136217 +313,3176,3.0,1101033050 +313,3252,4.0,1101033399 +313,3301,3.5,1101033422 +313,3386,2.0,1101033405 +313,3408,4.0,1105353999 +313,3578,4.5,1105353992 +313,3617,3.0,1105354360 +313,3623,4.0,1101033169 +313,3744,4.0,1133022745 +313,3753,3.5,1105353918 +313,3755,4.0,1101034532 +313,3798,3.5,1101034508 +313,3827,4.0,1133022592 +313,3897,4.5,1101032998 +313,3948,4.0,1124137118 +313,3969,3.5,1101033367 +313,3977,4.0,1124137103 +313,3999,3.0,1101033351 +313,4014,4.0,1101034221 +313,4015,2.0,1101033364 +313,4018,3.5,1101034317 +313,4020,4.0,1101034544 +313,4022,4.0,1105353968 +313,4025,3.5,1133022549 +313,4069,4.0,1101034414 +313,4161,2.5,1133022718 +313,4226,3.5,1101033190 +313,4246,4.5,1101033347 +313,4270,4.0,1105354412 +313,4299,3.5,1101033303 +313,4306,4.0,1105354099 +313,4308,5.0,1105354160 +313,4310,5.0,1101034321 +313,4344,2.0,1133022515 +313,4369,2.5,1105354465 +313,4370,0.5,1101033327 +313,4643,2.5,1133022724 +313,4718,2.5,1101033331 +313,4720,3.0,1101034472 +313,4776,3.5,1105354087 +313,4814,3.0,1101033748 +313,4816,4.0,1168878919 +313,4821,3.5,1133022185 +313,4823,4.0,1101034312 +313,4848,1.0,1101033300 +313,4865,3.0,1105354398 +313,4886,4.5,1168878351 +313,4901,3.0,1105353961 +313,4963,4.0,1105353952 +313,4973,3.5,1143233338 +313,4979,0.5,1101033325 +313,4992,3.0,1101033754 +313,4993,4.5,1101033172 +313,4994,4.0,1101034397 +313,4995,4.5,1126291220 +313,5014,4.5,1105353937 +313,5026,3.0,1105354195 +313,5151,2.0,1101033720 +313,5152,4.0,1133022392 +313,5218,5.0,1101033314 +313,5266,3.5,1124136465 +313,5299,3.0,1101034215 +313,5349,4.5,1105353986 +313,5389,3.5,1133021953 +313,5400,3.0,1101034513 +313,5418,4.5,1105354014 +313,5445,3.5,1105354027 +313,5459,3.5,1133022729 +313,5481,2.5,1124136441 +313,5502,3.5,1101034445 +313,5528,2.0,1101033701 +313,5574,4.0,1133022618 +313,5620,3.5,1101034325 +313,5669,4.5,1101033334 +313,5673,0.5,1101033320 +313,5679,5.0,1105354376 +313,5785,2.5,1168879256 +313,5810,3.5,1124136473 +313,5872,2.5,1133022505 +313,5903,3.0,1168878898 +313,5952,4.5,1101033310 +313,5989,4.5,1105354105 +313,5991,3.0,1101033282 +313,5995,5.0,1130952560 +313,6155,3.5,1101033693 +313,6156,3.5,1101033709 +313,6157,3.0,1133022253 +313,6213,3.0,1105354477 +313,6281,4.0,1101034547 +313,6287,3.0,1101033697 +313,6323,4.0,1101034453 +313,6373,4.0,1101033660 +313,6377,4.5,1105354172 +313,6378,4.0,1126291247 +313,6503,4.0,1101033667 +313,6534,3.5,1105354366 +313,6537,3.5,1105353814 +313,6539,4.5,1101034468 +313,6550,3.0,1168879237 +313,6565,5.0,1124136240 +313,6617,4.0,1168879226 +313,6711,4.0,1101034242 +313,6873,3.0,1101034424 +313,6874,3.5,1133022542 +313,6927,3.0,1101034358 +313,6944,3.5,1168879207 +313,6947,2.5,1126291348 +313,6986,4.0,1124136264 +313,7090,2.0,1133022447 +313,7143,5.0,1124136223 +313,7147,3.5,1105354168 +313,7153,5.0,1124137048 +313,7154,4.0,1101034394 +313,7158,2.5,1145779228 +313,7162,4.0,1105354141 +313,7163,3.0,1101034505 +313,7173,3.0,1101034417 +313,7320,4.0,1131563303 +313,7324,3.5,1133022122 +313,7325,2.0,1168879187 +313,7361,2.5,1124136290 +313,7438,3.5,1133022434 +313,7439,4.0,1105353856 +313,7458,4.0,1133022400 +313,8093,2.0,1133022603 +313,8360,4.5,1124136782 +313,8361,3.0,1133022137 +313,8369,3.0,1133022765 +313,8529,3.0,1101034225 +313,8576,3.5,1105354074 +313,8622,4.5,1105355378 +313,8636,3.5,1101034464 +313,8644,4.0,1105353912 +313,8665,4.0,1124137027 +313,8783,2.5,1106766487 +313,8798,4.0,1124136425 +313,8830,2.5,1133022366 +313,8831,2.5,1131563276 +313,8860,3.0,1133022565 +313,8874,3.5,1133022459 +313,8907,3.5,1168879506 +313,8908,5.0,1130952611 +313,8917,2.0,1133022173 +313,8949,3.0,1126981159 +313,8957,3.5,1133021876 +313,8961,4.5,1133021798 +313,8963,0.5,1143233256 +313,8970,3.0,1130952543 +313,8984,3.5,1105353776 +313,27788,2.5,1126981177 +313,30707,4.0,1168878424 +313,30822,4.0,1133021854 +313,31878,3.0,1133021823 +313,32029,3.5,1133022496 +313,33166,3.5,1168878442 +313,33437,4.0,1145779209 +313,33615,4.0,1130952655 +313,33794,3.0,1133021776 +313,35836,3.5,1168878865 +313,36525,3.0,1145779190 +313,37727,3.0,1168879464 +313,37733,3.0,1145779249 +313,44022,4.0,1168879445 +313,45210,3.0,1168878327 +313,45501,2.5,1168878134 +313,46578,3.5,1168878527 +314,1,2.0,1437338091 +314,260,5.0,1437338205 +314,318,5.0,1437338217 +314,356,4.5,1437338070 +314,480,4.5,1437338076 +314,593,4.5,1437338080 +314,1036,4.0,1437338223 +314,1196,5.0,1437338208 +314,1198,5.0,1437338214 +314,1270,3.5,1437338099 +314,1291,5.0,1437338212 +314,1676,4.5,1437338268 +314,2542,4.0,1437338271 +314,2571,4.5,1437338095 +314,50872,2.5,1437338186 +314,58559,5.0,1437338637 +314,79132,4.5,1437338648 +314,92259,5.0,1437338632 +314,109487,5.0,1437338296 +314,112183,3.5,1437338369 +314,112552,4.5,1437338173 +314,112556,5.0,1437338287 +314,112852,4.5,1437338356 +314,114935,4.0,1437338388 +314,115210,5.0,1437338391 +314,115569,4.0,1437338353 +314,115617,4.0,1437338347 +314,115713,4.0,1437338345 +314,116797,4.0,1437338305 +314,117176,4.0,1437338373 +314,119145,4.0,1437338381 +314,122882,5.0,1437338283 +314,122892,4.0,1437338367 +314,127098,4.0,1437338299 +315,39,1.0,1046663491 +315,260,1.0,1046663515 +315,497,4.0,1046663943 +315,922,4.0,1046663870 +315,953,4.0,1046663466 +315,1253,1.0,1046663943 +315,1270,5.0,1046663990 +315,1278,5.0,1046663943 +315,1573,5.0,1046663466 +315,1726,1.0,1046663515 +315,1944,3.0,1046663888 +315,2028,5.0,1046663491 +315,2109,3.0,1046663515 +315,2300,5.0,1046663870 +315,2546,1.0,1046663435 +315,2762,3.0,1046663491 +315,2947,3.0,1046663466 +315,3099,1.0,1046663990 +315,3671,5.0,1046663466 +315,3735,5.0,1046663870 +315,4587,2.0,1046663435 +315,5015,1.0,1046663870 +315,5377,3.0,1046663888 +315,5464,1.0,1046663913 +315,5788,1.0,1046663913 +315,5879,3.0,1046663751 +315,5880,1.0,1046663682 +315,5881,1.0,1046663682 +315,5882,1.0,1046663723 +315,5902,5.0,1046663657 +315,5941,2.0,1046663682 +315,5943,1.0,1046663723 +315,5944,1.0,1046663723 +315,5945,4.0,1046663682 +315,5952,3.0,1046663627 +315,5954,5.0,1046663657 +315,5957,1.0,1046663703 +315,5958,2.0,1046663703 +315,5959,1.0,1046663627 +315,5991,3.0,1046663627 +315,6001,2.0,1046663913 +315,6003,2.0,1046663627 +315,6006,1.0,1046663682 +315,6012,1.0,1046663723 +315,6013,1.0,1046663751 +315,6014,1.0,1046663751 +315,6057,1.0,1046663775 +315,6058,3.0,1046663703 +315,6060,1.0,1046663751 +315,6154,1.0,1046663775 +315,6155,2.0,1046663703 +315,6156,2.0,1046663627 +315,6157,3.0,1046663703 +315,6183,2.0,1046663870 +315,6188,5.0,1046663627 +316,260,4.0,1460822646 +316,541,3.0,1460822805 +316,589,3.5,1460822688 +316,593,2.0,1460822698 +316,1036,3.5,1460822680 +316,1136,4.5,1460822801 +316,1148,4.0,1460823163 +316,1196,4.0,1460822650 +316,1198,4.0,1460822652 +316,1210,4.0,1460822659 +316,1240,4.0,1460822695 +316,1291,4.0,1460822661 +316,2571,3.5,1460822655 +316,3300,3.0,1460823050 +316,3481,4.0,1460823298 +316,3578,4.0,1460822964 +316,3623,4.0,1460822984 +316,3717,3.0,1460822896 +316,3751,3.5,1460822994 +316,3755,2.5,1460822903 +316,3793,4.0,1460822968 +316,3827,3.0,1460823090 +316,3967,3.5,1460823036 +316,3996,3.0,1460823275 +316,4011,3.5,1460822862 +316,4025,3.0,1460822943 +316,4246,3.0,1460823007 +316,4306,3.5,1460822966 +316,4310,3.0,1460822953 +316,4344,3.5,1460823444 +316,4367,3.5,1460823040 +316,4638,2.5,1460823401 +316,4643,3.0,1460822924 +316,4718,3.0,1460822930 +316,4734,4.0,1460823069 +316,4816,3.5,1460823034 +316,4886,3.5,1460822734 +316,4896,4.0,1460822990 +316,4963,4.0,1460822976 +316,4993,4.0,1460822671 +316,4995,3.0,1460822807 +316,5010,1.5,1460822810 +316,5349,3.5,1460823280 +316,5377,3.5,1460823346 +316,5378,4.0,1460822986 +316,5418,5.0,1460822728 +316,5445,3.5,1460822977 +316,5459,3.0,1460822885 +316,5481,3.5,1460822927 +316,5816,4.0,1460823300 +316,5872,3.0,1460823080 +316,5952,4.0,1460822670 +316,5956,3.0,1460823044 +316,6157,3.5,1460823093 +316,6218,3.5,1460823047 +316,6365,3.5,1460822988 +316,6373,3.5,1460822893 +316,6377,3.0,1460822971 +316,6378,3.0,1460822717 +316,6539,4.0,1460822969 +316,6541,3.5,1460823108 +316,6863,3.5,1460822911 +316,6874,4.0,1460822974 +316,6934,4.0,1460823311 +316,6942,3.5,1460822916 +316,7153,4.0,1460822658 +316,7438,4.0,1460823282 +316,8368,4.0,1460822719 +316,8528,4.0,1460823452 +316,8665,4.0,1460822794 +316,8874,5.0,1460823148 +316,8961,4.0,1460822732 +316,8972,3.5,1460823455 +316,8984,4.0,1460823411 +316,26614,4.0,1460823154 +316,27611,2.0,1460823142 +316,30793,3.0,1460823361 +316,33493,4.0,1460823308 +316,33679,3.5,1460823374 +316,33794,3.5,1460823184 +316,34048,2.5,1460823392 +316,34162,3.5,1460823380 +316,34405,4.0,1460822804 +316,39183,2.0,1460823439 +316,40815,4.0,1460823326 +316,44191,4.0,1460823177 +316,45499,4.0,1460823397 +316,45722,4.0,1460823332 +316,48385,3.0,1460823355 +316,49272,4.0,1460823553 +316,50872,3.0,1460823324 +316,51255,4.0,1460823200 +316,51662,4.0,1460823318 +316,54001,4.0,1460823157 +316,54272,3.5,1460823432 +316,54286,4.5,1460822704 +316,56174,3.0,1460823377 +316,58559,3.0,1460822673 +316,59315,4.0,1460822689 +316,59369,2.0,1460822778 +316,59784,3.5,1460823425 +316,60069,3.0,1460822722 +316,63082,3.5,1460823516 +316,68157,4.0,1460823315 +316,68358,4.0,1460822692 +316,68954,4.0,1460822691 +316,69844,4.0,1460822793 +316,73017,4.0,1460822741 +316,76251,3.5,1460822715 +316,77561,4.0,1460823430 +316,78034,3.5,1460823489 +316,78499,3.5,1460823370 +316,79132,3.5,1460822686 +316,81834,4.0,1460822796 +316,81845,3.0,1460822856 +316,84772,4.5,1460823212 +316,87232,3.5,1460822724 +316,88125,4.5,1460822775 +316,88140,4.5,1460822737 +316,89745,4.5,1460822708 +316,91500,3.5,1460823175 +316,91542,4.0,1460823557 +316,91630,4.0,1460822813 +316,94070,4.0,1460823477 +316,96079,4.5,1460822739 +316,97913,3.0,1460822791 +316,98809,4.0,1460823169 +316,102445,4.0,1460823201 +316,102903,4.0,1460823173 +316,103341,4.0,1460823214 +316,108190,3.0,1460823167 +316,109374,4.5,1460823457 +316,110102,4.0,1460822789 +316,111362,4.0,1460823562 +316,111759,3.0,1460822868 +316,112852,4.0,1460822701 +316,122886,4.0,1460822676 +316,122900,3.5,1460823145 +316,129428,3.5,1460823483 +316,134130,4.0,1460822873 +317,150,4.0,847633374 +317,153,2.0,847633434 +317,165,4.0,847633433 +317,185,4.0,847633596 +317,208,4.0,847633596 +317,231,3.0,847633469 +317,292,3.0,847633521 +317,296,1.0,847633375 +317,316,5.0,847633469 +317,318,4.0,847633521 +317,329,5.0,847633521 +317,344,2.0,847633433 +317,349,3.0,847633469 +317,356,4.0,847633469 +317,380,4.0,847633375 +317,454,4.0,847633631 +317,457,5.0,847633433 +317,480,4.0,847633520 +317,588,3.0,847633433 +317,590,3.0,847633374 +317,592,3.0,847633374 +317,595,3.0,847633469 +318,1,1.0,862902604 +318,5,3.0,862902663 +318,6,3.0,862902663 +318,9,4.0,862902803 +318,36,3.0,862902663 +318,41,3.0,862902858 +318,95,4.0,862902604 +318,260,1.0,862902663 +318,376,3.0,862902714 +318,494,3.0,862902663 +318,605,3.0,862903225 +318,608,3.0,862902663 +318,648,4.0,862902604 +318,653,3.0,862902714 +318,673,4.0,862902909 +318,704,5.0,862903068 +318,711,2.0,862902909 +318,731,3.0,862903293 +318,733,3.0,862902663 +318,736,3.0,862902604 +318,737,4.0,862902803 +318,743,3.0,862902803 +318,760,2.0,862903604 +318,761,1.0,862902909 +318,778,4.0,862902803 +318,780,5.0,862902604 +318,782,3.0,862903129 +318,783,3.0,862902803 +318,784,4.0,862902714 +318,786,4.0,862902663 +318,788,3.0,862902714 +318,798,4.0,862903194 +318,799,3.0,862903009 +318,805,4.0,862902751 +318,830,3.0,862902980 +318,832,4.0,862902803 +318,849,3.0,862902980 +318,852,4.0,862902803 +318,991,3.0,862903194 +318,996,3.0,862903224 +318,1004,4.0,862903225 +318,1041,3.0,862903129 +318,1047,4.0,862903009 +318,1057,4.0,862903358 +318,1059,3.0,862902980 +318,1061,3.0,862902980 +318,1133,3.0,862903604 +318,1210,1.0,862902803 +318,1356,4.0,862902751 +318,1363,3.0,862903194 +318,1367,2.0,862902909 +318,1391,1.0,862902980 +318,1393,4.0,862902858 +318,1416,2.0,862903099 +318,1429,5.0,862903267 +318,1432,4.0,862903428 +318,1438,4.0,862903267 +318,1479,4.0,862903479 +318,1499,5.0,862903528 +319,11,4.0,834759704 +319,17,3.0,834759756 +319,39,3.0,834759561 +319,95,3.0,834759756 +319,110,4.0,834759497 +319,141,5.0,834759756 +319,153,4.0,834759426 +319,196,4.0,834759704 +319,253,3.0,834759479 +319,316,4.0,834759445 +319,344,3.0,834759426 +319,349,3.0,834759426 +319,356,3.0,834759671 +319,380,3.0,834759389 +319,435,2.0,834759633 +319,480,4.0,834759730 +319,553,3.0,834759671 +319,589,3.0,834759802 +319,592,3.0,834759389 +319,593,4.0,834759479 +320,296,4.5,1424366551 +320,318,4.0,1424366411 +320,356,4.0,1424366509 +320,527,4.0,1424366416 +320,541,5.0,1424366884 +320,904,4.5,1424366807 +320,908,4.0,1424366936 +320,912,5.0,1424366786 +320,924,3.5,1424366900 +320,1172,5.0,1424366533 +320,1206,4.5,1424366734 +320,1704,4.0,1424366430 +320,2010,4.0,1424366898 +320,2324,3.5,1424366498 +320,2571,4.5,1424366427 +320,2762,3.5,1424366433 +320,2858,3.0,1424366512 +320,3147,3.5,1424366522 +320,3578,3.5,1460751890 +320,4226,4.0,1424366793 +320,4306,3.5,1460751884 +320,4343,2.0,1460752160 +320,4643,3.5,1460752010 +320,4874,3.5,1460752076 +320,4886,3.5,1460751896 +320,4973,3.5,1424366500 +320,5445,4.0,1460751904 +320,5881,3.0,1460752293 +320,5945,3.5,1460752129 +320,5995,4.0,1424366515 +320,6874,4.0,1460751900 +320,6942,4.0,1460751996 +320,7438,4.0,1460751910 +320,8622,3.5,1460752032 +320,27831,3.5,1460752281 +320,30707,4.0,1460751966 +320,30749,4.0,1424366798 +320,30793,3.5,1460752024 +320,39183,2.0,1460752092 +320,41285,3.5,1460752219 +320,44191,4.0,1460751923 +320,44555,4.5,1460751369 +320,56367,3.5,1424366603 +320,60069,2.5,1460751930 +320,60397,3.0,1460752409 +320,63082,4.0,1424366972 +320,64614,4.0,1460752036 +320,68237,4.0,1460752074 +320,68358,4.0,1460751978 +320,68954,3.5,1460751940 +320,81845,4.0,1424366940 +320,85414,4.0,1460752139 +320,96610,3.5,1460752164 +320,104841,4.0,1460752132 +320,109487,4.0,1460751969 +320,115713,4.0,1432825064 +320,116797,4.5,1424366789 +320,134130,4.0,1460751392 +321,1,3.0,939420838 +321,21,5.0,939420702 +321,50,4.0,939420971 +321,164,4.0,939399601 +321,232,5.0,939400966 +321,293,4.0,939421228 +321,296,5.0,939400862 +321,319,5.0,939421228 +321,348,4.0,939401242 +321,350,3.0,939399601 +321,551,5.0,939420207 +321,562,3.0,939401033 +321,568,4.0,939420702 +321,593,3.0,939420971 +321,608,4.0,939420971 +321,707,4.0,939400777 +321,800,4.0,939399420 +321,837,4.0,939401165 +321,913,5.0,939398171 +321,930,4.0,939398171 +321,942,3.0,939398171 +321,1131,4.0,939398445 +321,1132,3.0,939398445 +321,1148,4.0,939401033 +321,1150,5.0,939398768 +321,1171,4.0,939420777 +321,1172,5.0,939398768 +321,1179,3.0,939400777 +321,1188,4.0,939420838 +321,1196,1.0,939398278 +321,1217,5.0,939398446 +321,1224,4.0,939398532 +321,1228,5.0,939398278 +321,1246,2.0,939398768 +321,1249,4.0,939421228 +321,1264,5.0,939398446 +321,1265,4.0,939420777 +321,1284,5.0,939398171 +321,1464,5.0,939399601 +321,1500,4.0,939420838 +321,1580,3.0,939420702 +321,1617,4.0,939400777 +321,1625,4.0,939400625 +321,1645,4.0,939399601 +321,1683,4.0,939420971 +321,1689,3.0,939400625 +321,1711,3.0,939400625 +321,1713,4.0,939400966 +321,1732,5.0,939399420 +321,1760,3.0,939420702 +321,1883,5.0,939401099 +321,1892,2.0,939399420 +321,1909,2.0,939399420 +321,1918,1.0,939420207 +321,1923,2.0,939401033 +321,1961,2.0,939398445 +321,2020,3.0,939398532 +321,2065,4.0,939398446 +321,2066,5.0,939398171 +321,2068,4.0,939398278 +321,2069,3.0,939398278 +321,2076,5.0,939398446 +321,2194,2.0,939398445 +321,2243,3.0,939398532 +321,2278,2.0,939421164 +321,2289,4.0,939401165 +321,2302,3.0,939420777 +321,2312,2.0,939398532 +321,2352,3.0,939398768 +321,2384,4.0,939401165 +321,2395,4.0,939420207 +321,2396,5.0,939400966 +321,2605,1.0,939421164 +321,2919,4.0,939398768 +321,2940,5.0,939398171 +322,164,3.0,974698800 +322,451,4.0,974698993 +322,903,5.0,974698657 +322,906,5.0,974698657 +322,910,3.0,974697728 +322,912,4.0,974697780 +322,924,5.0,974698657 +322,931,5.0,974698657 +322,942,4.0,974698657 +322,1086,5.0,974698728 +322,1092,4.0,974698993 +322,1212,5.0,974698574 +322,1459,2.0,974698993 +322,1589,3.0,974698993 +322,1608,2.0,974697780 +322,1617,5.0,974698574 +322,1625,2.0,974698870 +322,1627,4.0,974698993 +322,1721,3.0,974697728 +322,1732,4.0,974698870 +322,1913,5.0,974698574 +322,1964,4.0,974698657 +322,1968,2.0,974697680 +322,2024,4.0,974698800 +322,2076,2.0,974698728 +322,2206,3.0,974698728 +322,2467,5.0,974698800 +322,2686,3.0,974698800 +322,3072,4.0,974697637 +322,3176,3.0,974698993 +322,3251,3.0,974698993 +322,3386,2.0,974698800 +322,3445,4.0,974698870 +322,3706,5.0,974698870 +322,3730,4.0,974698574 +322,3788,3.0,974698800 +322,3897,5.0,974698401 +322,3925,4.0,974698322 +322,3950,4.0,974698172 +322,3952,5.0,974698172 +322,3959,3.0,974698096 +322,3963,5.0,974698096 +322,3981,3.0,974697953 +323,186,3.5,1150487585 +323,225,3.0,1150487447 +323,236,4.0,1150487529 +323,315,3.5,1150487590 +323,318,4.5,1150487770 +323,494,3.0,1150487437 +323,527,4.5,1150487711 +323,784,4.0,1150487480 +323,832,4.0,1150487464 +323,858,4.5,1150487750 +323,912,5.0,1150487777 +323,920,5.0,1150487430 +323,1250,4.5,1150487631 +323,1639,2.5,1150487558 +323,2006,2.0,1150487640 +323,2054,3.5,1150487454 +323,2081,3.5,1150487566 +323,3176,3.5,1150487607 +323,4034,3.0,1150487515 +323,4973,5.0,1150487785 +323,4995,4.5,1150487633 +323,5445,3.0,1150487473 +323,6539,4.5,1150487651 +324,1,4.0,1451524648 +324,2,4.0,1451524483 +324,19,3.0,1451524520 +324,32,3.5,1451524254 +324,34,5.0,1451524308 +324,62,3.5,1451524516 +324,73,4.5,1451527890 +324,110,4.0,1451524229 +324,111,3.5,1451524657 +324,141,4.0,1451524426 +324,150,4.0,1451525052 +324,185,3.0,1451524398 +324,208,1.0,1451524326 +324,260,3.5,1451526226 +324,318,4.0,1451519630 +324,356,4.0,1451519729 +324,364,3.5,1451526209 +324,367,4.0,1451524284 +324,500,4.0,1451524282 +324,527,3.0,1451519636 +324,551,4.0,1451524538 +324,588,4.0,1451524258 +324,590,3.5,1451524249 +324,592,4.0,1451524244 +324,593,4.0,1451524234 +324,1197,4.5,1451524278 +324,1200,3.0,1451524345 +324,1225,4.0,1451524529 +324,1246,4.0,1451524524 +324,1265,4.0,1451524299 +324,1517,3.5,1451524477 +324,1682,4.0,1451524353 +324,1704,3.5,1451519722 +324,1917,3.0,1451524480 +324,1961,4.0,1451524385 +324,2028,4.0,1451519698 +324,2174,4.0,1451524542 +324,2502,4.0,1451524509 +324,2571,4.0,1451519692 +324,2762,3.5,1451519709 +324,2791,3.5,1451524555 +324,2918,4.0,1451524471 +324,3114,4.0,1451524422 +324,3578,3.5,1451528111 +324,3752,3.0,1451528398 +324,3753,2.5,1451528232 +324,3755,3.5,1451528284 +324,3793,3.5,1451528129 +324,3911,3.5,1451528303 +324,3988,4.5,1451528572 +324,4022,4.0,1451528211 +324,4025,2.5,1451528317 +324,4148,3.0,1451528476 +324,4226,3.5,1451528123 +324,4306,4.0,1451528118 +324,4638,4.0,1451523605 +324,4643,3.0,1451528363 +324,4874,3.0,1451528539 +324,4886,3.5,1451524384 +324,4896,4.0,1451524561 +324,4973,3.5,1451524338 +324,4993,2.5,1451528100 +324,4995,3.5,1451524416 +324,5010,2.5,1451523472 +324,5218,3.0,1451528251 +324,5266,3.5,1451528503 +324,5349,3.5,1451524420 +324,5459,3.5,1451523462 +324,5481,3.5,1451523557 +324,5502,2.5,1451523485 +324,5816,3.5,1451523310 +324,5945,3.0,1451524087 +324,5952,3.0,1451528105 +324,5989,3.5,1451528171 +324,6287,1.5,1451528764 +324,6333,3.5,1451523301 +324,6377,3.5,1451528139 +324,6539,4.0,1451528132 +324,6541,4.0,1451528664 +324,6753,4.0,1451528023 +324,6787,3.5,1451526358 +324,6807,4.0,1451526872 +324,6863,4.0,1451528318 +324,6870,3.5,1451528377 +324,6934,3.5,1451528265 +324,6957,3.5,1451524184 +324,7147,3.5,1451523380 +324,7254,3.0,1451528307 +324,7361,4.0,1451524410 +324,7419,4.0,1451525526 +324,7438,1.5,1451526815 +324,7458,4.0,1451523922 +324,7502,3.0,1451519656 +324,8368,3.5,1451523411 +324,8376,4.0,1451523618 +324,8464,2.5,1451528410 +324,8528,3.5,1451524015 +324,8529,3.0,1451524083 +324,8641,3.0,1451524034 +324,8644,3.5,1451523476 +324,8810,3.5,1451528828 +324,8865,3.0,1451528960 +324,8961,4.0,1451528146 +324,8970,3.0,1451523911 +324,8972,3.5,1451528618 +324,26649,3.5,1451525514 +324,27002,3.5,1451525090 +324,30707,3.5,1451523451 +324,30812,3.0,1451528552 +324,30825,3.0,1451528714 +324,34048,2.5,1451528506 +324,34150,3.5,1451528780 +324,35836,2.5,1451528294 +324,38038,3.5,1451527954 +324,38499,4.0,1451525745 +324,40629,3.5,1451525471 +324,41569,3.0,1451528563 +324,45722,4.0,1451528287 +324,46972,3.5,1451528945 +324,52435,4.5,1451527821 +324,53996,2.5,1451528535 +324,54001,3.5,1451528490 +324,55908,3.0,1451526529 +324,56367,3.5,1451525750 +324,58559,3.5,1451524328 +324,59387,5.0,1451525028 +324,59615,4.0,1451528644 +324,64614,3.5,1451524895 +324,66934,3.5,1451526253 +324,68099,4.5,1451525719 +324,68319,3.0,1451528858 +324,70286,3.5,1451525464 +324,72998,3.5,1451528247 +324,77561,3.5,1451528601 +324,77846,4.0,1451526684 +324,79132,3.5,1451524512 +324,86332,3.5,1451528822 +324,86345,3.5,1451524852 +324,88744,3.5,1451528900 +324,91500,3.5,1451528599 +324,91529,3.5,1451526364 +324,92259,2.5,1451519647 +324,98124,3.5,1451525560 +324,98809,3.0,1451528732 +324,99114,3.5,1451528426 +324,106100,3.5,1451525111 +324,106487,3.0,1451528907 +324,109487,3.5,1451528367 +324,116797,4.0,1451526328 +324,117176,3.5,1451526024 +324,149532,3.0,1451519751 +325,31,4.5,1356316520 +325,105,2.0,1356316532 +325,277,1.5,1356316525 +325,585,4.0,1356316527 +325,724,1.5,1356316545 +325,914,1.5,1356316525 +325,1022,1.5,1356316544 +325,1061,3.5,1356316549 +325,1129,3.0,1356316550 +325,1172,2.0,1356316546 +325,1339,2.5,1356316514 +325,1371,3.5,1356316515 +325,1562,1.0,1356316539 +325,1569,4.0,1356316516 +325,2193,1.0,1356316540 +325,2694,2.0,1356316541 +325,3039,3.0,1356316542 +325,3072,2.0,1356316547 +325,3911,2.0,1356316512 +325,4085,4.5,1356316518 +326,60,4.0,966009905 +326,314,5.0,966009951 +326,337,2.0,966009788 +326,590,3.0,966009930 +326,653,1.0,966009905 +326,919,4.0,966009930 +326,933,4.0,966009788 +326,969,5.0,966009982 +326,986,3.0,966009951 +326,1073,5.0,966010015 +326,1127,4.0,966010015 +326,1193,2.0,966009788 +326,1196,4.0,966009930 +326,1197,5.0,966009930 +326,1210,4.0,966009982 +326,1254,4.0,966009905 +326,1259,2.0,966009930 +326,1287,3.0,966009930 +326,1291,4.0,966009982 +326,1374,3.0,966009788 +326,1396,5.0,966009788 +326,1580,2.0,966009982 +326,1931,4.0,966009951 +326,2450,1.0,966009905 +326,2987,4.0,966010015 +326,3308,3.0,966009788 +326,3412,4.0,966009930 +327,32,4.0,1225363971 +327,47,3.5,1225363967 +327,223,5.0,1225363960 +327,231,4.5,1225363953 +327,260,4.5,1225363950 +327,288,3.0,1225363946 +327,296,5.0,1225363942 +327,364,4.0,1225363931 +327,500,3.5,1225363929 +327,539,3.0,1225363926 +327,592,3.0,1225363917 +327,608,5.0,1225363913 +327,1196,4.0,1225363909 +327,1200,5.0,1225363905 +327,1220,5.0,1225364145 +327,1259,4.0,1225364121 +327,1265,3.0,1225363902 +327,1274,5.0,1225364111 +327,1347,4.0,1225363658 +327,1375,4.5,1225364095 +327,1376,4.0,1225364098 +327,1479,4.0,1225364084 +327,1589,4.0,1225363733 +327,1704,4.5,1225363895 +327,1722,4.0,1225364079 +327,1805,4.5,1225364075 +327,1923,3.5,1225363893 +327,1954,5.0,1225364072 +327,2001,4.0,1225364064 +327,2268,4.0,1225364058 +327,2371,4.0,1225363692 +327,2394,3.5,1225363701 +327,2572,4.0,1225364053 +327,2600,2.0,1225363744 +327,2628,4.0,1225363890 +327,2640,5.0,1225364050 +327,2688,4.0,1225363695 +327,2763,4.0,1225364048 +327,2826,4.0,1225363643 +327,2840,4.0,1225363774 +327,2916,4.0,1225364045 +327,3033,5.0,1225364032 +327,3087,4.0,1225363756 +327,3247,3.0,1225363679 +327,3257,3.0,1225363711 +327,3273,4.0,1225363724 +327,3285,4.5,1225363764 +327,3499,3.5,1225364022 +327,3623,4.5,1225364021 +327,4018,3.5,1225364015 +327,4027,5.0,1225364013 +327,4310,4.5,1225364010 +327,4369,4.5,1225363718 +327,4643,3.0,1225364008 +327,4878,5.0,1225364005 +327,6373,2.5,1225363671 +327,6502,5.0,1225363999 +327,6537,3.5,1225363993 +327,6863,2.5,1225363996 +327,6874,5.0,1225363989 +327,6934,4.5,1225363987 +327,7143,4.5,1225363977 +327,8360,4.0,1225363975 +328,1,4.0,1147996106 +328,25,3.0,1148006147 +328,34,4.0,1147996835 +328,110,4.0,1148005847 +328,141,3.5,1148006136 +328,150,4.0,1148005838 +328,151,3.5,1147995739 +328,163,3.5,1147995765 +328,246,3.0,1147997185 +328,260,4.0,1147996590 +328,300,3.0,1148006198 +328,316,3.5,1148006049 +328,318,4.5,1147996930 +328,356,3.0,1148005830 +328,364,3.5,1148000620 +328,380,3.5,1148005854 +328,432,2.5,1147995652 +328,457,3.0,1147997263 +328,480,3.5,1148005827 +328,588,3.5,1148000624 +328,593,3.0,1148005820 +328,595,3.5,1148000617 +328,608,3.0,1147996612 +328,648,2.5,1148006024 +328,720,4.5,1147996017 +328,736,3.5,1148006053 +328,745,4.5,1147995987 +328,780,3.5,1148005860 +328,899,4.0,1147996989 +328,904,4.0,1147995769 +328,908,4.0,1147995684 +328,910,4.0,1147996672 +328,919,4.0,1147996597 +328,938,2.5,1147998775 +328,1022,4.0,1147997723 +328,1032,3.0,1147997752 +328,1073,4.0,1148006097 +328,1079,3.0,1147996615 +328,1085,3.0,1147999926 +328,1103,3.0,1147997579 +328,1136,3.0,1147996355 +328,1148,4.5,1147996112 +328,1196,4.5,1147996535 +328,1197,3.5,1147996423 +328,1198,3.5,1147996198 +328,1200,3.5,1147996649 +328,1203,4.0,1147996505 +328,1207,4.5,1147996884 +328,1213,3.0,1147996791 +328,1214,3.5,1147996682 +328,1223,4.5,1147996260 +328,1231,3.0,1147996833 +328,1259,3.5,1147997023 +328,1265,3.5,1147996670 +328,1266,3.5,1147996632 +328,1270,3.5,1148006062 +328,1278,3.5,1147995774 +328,1283,3.5,1147997384 +328,1288,4.0,1147995753 +328,1291,3.5,1147996953 +328,1387,3.0,1147996269 +328,1394,3.0,1147996801 +328,1449,3.0,1147996910 +328,1485,1.5,1147995674 +328,1527,3.5,1148006222 +328,1580,4.0,1148006122 +328,1617,3.5,1147996642 +328,1721,2.5,1148006128 +328,1943,3.5,1147999966 +328,2043,4.0,1147999958 +328,2054,3.5,1147995711 +328,2080,3.5,1147997689 +328,2081,3.5,1148000539 +328,2087,3.5,1147997762 +328,2096,4.0,1147997726 +328,2105,3.0,1148006461 +328,2137,3.0,1148006401 +328,2139,3.0,1148000532 +328,2141,3.5,1148000546 +328,2142,3.0,1148000669 +328,2194,3.0,1147997029 +328,2294,3.0,1148000644 +328,2355,3.5,1147997180 +328,2406,3.5,1147995744 +328,2599,4.0,1147995727 +328,2628,1.0,1148006150 +328,2640,3.0,1147995693 +328,2700,1.0,1147995686 +328,2716,3.5,1148006179 +328,2761,3.0,1147995994 +328,2762,3.5,1147996957 +328,2804,3.0,1147996183 +328,2858,4.0,1148006067 +328,2918,3.5,1147996743 +328,2941,3.5,1147998831 +328,2947,3.5,1147996459 +328,2948,3.5,1147996786 +328,2987,4.0,1148000529 +328,3034,3.0,1147997301 +328,3037,1.5,1147997191 +328,3114,4.0,1147995909 +328,3359,3.5,1147996654 +328,3363,3.0,1147996752 +328,3396,3.5,1147996202 +328,3471,3.5,1147996942 +328,3507,4.0,1147996544 +328,3508,3.5,1147996351 +328,3516,2.5,1147997797 +328,3615,2.5,1148000940 +328,3675,3.0,1147997757 +328,3681,3.0,1147996516 +328,3751,3.5,1148000748 +328,3897,3.5,1147996961 +328,3911,3.0,1147996693 +328,3996,3.0,1147996698 +328,4016,3.0,1148000775 +328,4027,4.0,1147997209 +328,4306,4.0,1148000733 +328,4322,3.0,1147996096 +328,4329,3.0,1147996796 +328,4357,4.5,1147997782 +328,4366,3.0,1148000917 +328,4406,3.5,1147996247 +328,4446,3.0,1148000928 +328,4802,3.5,1147997623 +328,4886,4.0,1148000721 +328,4990,3.0,1148000923 +328,5085,3.0,1147998815 +328,5159,3.0,1148000672 +328,5168,3.5,1147998764 +328,5218,3.5,1148000780 +328,5444,3.5,1148000768 +328,5618,4.5,1148000725 +328,5690,4.0,1148000505 +328,5782,3.5,1147997294 +328,5882,3.0,1148000810 +328,6231,3.5,1147999904 +328,6237,3.5,1147997803 +328,6239,3.0,1147998690 +328,6358,4.0,1147997873 +328,6377,3.5,1147996238 +328,6773,5.0,1148000736 +328,6785,4.0,1147998778 +328,6889,1.5,1148000944 +328,6947,3.5,1147997243 +328,6970,4.5,1147997433 +328,6979,3.0,1147997222 +328,7099,2.0,1148000500 +328,7395,3.5,1147998796 +328,7614,3.5,1147998698 +328,7697,3.5,1147999990 +328,7826,3.0,1147996404 +328,8360,4.0,1148000744 +328,8368,4.0,1147996828 +328,8372,3.0,1148000991 +328,8464,3.5,1147997327 +328,8502,3.0,1148000105 +328,8623,4.0,1147996340 +328,8798,3.5,1147997012 +328,8874,2.0,1147996483 +328,8907,3.5,1148000953 +328,8961,3.5,1147996149 +328,8965,1.5,1148000847 +328,26662,4.0,1148000491 +328,32031,3.5,1148000823 +328,33615,2.5,1148000827 +328,33660,2.0,1147997308 +328,34405,4.5,1147996210 +328,38038,4.5,1147996101 +328,40815,4.0,1147996915 +329,1,5.0,867072004 +329,3,3.0,867072039 +329,5,3.0,867072039 +329,6,5.0,867072039 +329,7,4.0,867072073 +329,25,5.0,867072005 +329,32,3.0,867072004 +329,95,3.0,867072005 +329,104,3.0,867072073 +329,260,5.0,867072039 +329,494,3.0,867072039 +329,648,4.0,867072004 +329,653,3.0,867072073 +329,708,4.0,867072073 +329,733,4.0,867072039 +329,736,4.0,867072004 +329,780,4.0,867072004 +329,786,3.0,867072039 +329,802,5.0,867072073 +329,1073,3.0,867072039 +329,1210,4.0,867072117 +329,1356,5.0,867072073 +330,16,3.0,948574059 +330,22,3.0,948576623 +330,25,3.0,948577275 +330,32,4.0,948578017 +330,41,5.0,948577200 +330,50,4.0,948731488 +330,58,4.0,948577603 +330,80,5.0,948577126 +330,110,4.0,948575949 +330,132,1.0,948576723 +330,150,2.0,948577776 +330,164,3.0,948576623 +330,165,2.0,948576723 +330,207,4.0,948576143 +330,213,5.0,948577039 +330,231,2.0,948731347 +330,232,4.0,948577631 +330,246,5.0,948577543 +330,265,5.0,948577232 +330,293,5.0,948576522 +330,300,3.0,948578017 +330,301,5.0,948574126 +330,318,4.0,948577379 +330,337,3.0,948577507 +330,342,4.0,948575236 +330,349,3.0,948576522 +330,350,4.0,948574412 +330,373,5.0,948576522 +330,389,4.0,948577776 +330,457,4.0,948575949 +330,480,3.0,948575888 +330,483,4.0,948577275 +330,497,4.0,948575236 +330,508,3.0,948577847 +330,527,5.0,948577164 +330,589,3.0,948576522 +330,593,1.0,948577340 +330,595,4.0,948576914 +330,628,3.0,948576522 +330,707,2.0,948576723 +330,899,4.0,948576871 +330,924,1.0,948574466 +330,994,4.0,948577507 +330,1028,1.0,948576871 +330,1032,3.0,948576914 +330,1035,5.0,948574126 +330,1081,3.0,948575358 +330,1094,5.0,948577200 +330,1172,5.0,948575236 +330,1176,2.0,948577701 +330,1179,3.0,948577543 +330,1188,3.0,948577442 +330,1198,2.0,948574126 +330,1249,5.0,948576522 +330,1252,3.0,948574467 +330,1285,4.0,948575236 +330,1401,4.0,948577847 +330,1407,1.0,948576674 +330,1428,5.0,948731410 +330,1459,3.0,948574412 +330,1466,3.0,948577408 +330,1575,5.0,948577442 +330,1580,4.0,948575845 +330,1608,3.0,948576763 +330,1610,3.0,948576763 +330,1617,2.0,948574520 +330,1639,1.0,948577897 +330,1683,5.0,948578017 +330,1694,4.0,948577728 +330,1704,4.0,948577603 +330,1777,1.0,948731214 +330,1892,4.0,948731380 +330,1904,3.0,948575027 +330,1913,4.0,948574412 +330,1914,4.0,948577701 +330,1950,4.0,948574412 +330,1966,2.0,948577898 +330,2028,4.0,948575752 +330,2102,3.0,948576871 +330,2278,3.0,948575752 +330,2336,5.0,948577275 +330,2353,3.0,948576417 +330,2467,4.0,948574412 +330,2565,3.0,948576871 +330,2570,3.0,948731457 +330,2622,4.0,948575129 +330,2690,4.0,948731262 +330,2916,3.0,948576522 +330,3067,4.0,948575236 +330,3095,3.0,948574126 +330,3100,4.0,948577933 +330,3246,4.0,948577543 +330,3256,3.0,948576674 +330,3258,2.0,948575129 +330,3260,4.0,948577232 +331,24,4.0,1323373212 +331,175,3.0,1323373331 +331,196,3.0,1323373122 +331,256,2.0,1323373191 +331,527,4.5,1323373563 +331,762,1.5,1323373159 +331,2005,5.0,1323373177 +331,2137,5.0,1323373292 +331,2470,3.0,1323373139 +331,2657,4.0,1323373114 +331,2717,1.0,1323373227 +331,2803,4.0,1323373324 +331,3107,3.5,1323373240 +331,3254,3.0,1323373311 +331,3911,1.5,1323373185 +331,4571,3.0,1323373234 +331,4954,2.0,1323373810 +331,4963,4.5,1323373813 +331,5618,4.0,1323373762 +331,5991,5.0,1323373752 +331,52975,5.0,1323373738 +331,58803,4.0,1323373792 +331,69122,4.0,1323373826 +331,80463,5.0,1323373780 +331,89864,5.0,1323373641 +332,70,5.0,1147971495 +332,145,4.5,1147971536 +332,158,0.5,1147971452 +332,163,3.5,1147971849 +332,315,3.5,1147971462 +332,552,0.5,1147971470 +332,1089,5.0,1147971955 +332,1241,4.0,1147971996 +332,1320,4.0,1147971480 +332,1372,0.5,1147971528 +332,1375,0.5,1147971554 +332,1376,0.5,1147971467 +332,1690,4.5,1147971626 +332,2167,4.5,1147971623 +332,3535,3.0,1147972071 +332,5378,0.5,1147971635 +332,5418,1.5,1147971644 +332,5918,3.0,1147971878 +332,6333,1.5,1147971652 +332,6377,1.5,1147971541 +332,6874,5.0,1147971963 +332,7022,5.0,1147971979 +332,7153,0.5,1147971430 +332,7438,5.0,1147971965 +332,8225,4.0,1147972073 +332,8957,4.0,1147972090 +332,27022,5.0,1147971745 +332,27788,2.0,1147971872 +332,32587,5.0,1147971939 +332,33834,3.5,1147971898 +332,39446,4.5,1147971860 +332,40732,4.5,1147972108 +333,1,4.0,1441197471 +333,318,5.0,1441197184 +333,356,4.5,1441197368 +333,527,5.0,1441197187 +333,588,3.5,1441198986 +333,589,4.0,1441197456 +333,858,4.5,1441197210 +333,912,4.0,1441199161 +333,953,4.0,1441198237 +333,1265,2.5,1441197491 +333,1527,4.5,1441199303 +333,1954,5.0,1441199800 +333,2028,4.0,1441197268 +333,2324,5.0,1441199041 +333,2409,4.5,1441199814 +333,2410,4.5,1441199818 +333,2411,4.5,1441199821 +333,2412,4.0,1441199823 +333,2431,4.5,1441198038 +333,2501,4.0,1441197894 +333,2571,5.0,1441197235 +333,2918,4.0,1441199130 +333,3114,4.0,1441198911 +333,3751,4.0,1441198963 +333,3916,4.0,1441198156 +333,3996,4.0,1441199152 +333,4014,4.5,1441199174 +333,4022,4.0,1441198060 +333,4306,4.5,1441198864 +333,4823,4.0,1441199218 +333,4886,4.5,1441198883 +333,4995,5.0,1441197739 +333,5218,5.0,1441198921 +333,5418,4.5,1441197743 +333,5985,3.0,1441199472 +333,5989,4.5,1441198286 +333,6377,4.0,1441198886 +333,6539,4.5,1441197751 +333,6776,5.0,1441199422 +333,7293,4.5,1441199194 +333,8360,4.0,1441198895 +333,8529,5.0,1441199051 +333,8581,4.0,1441198384 +333,8665,4.5,1441199351 +333,8970,4.5,1441198013 +333,30707,4.5,1441198744 +333,31685,5.0,1441199189 +333,33615,4.5,1441198936 +333,33660,3.5,1441197876 +333,43396,3.5,1441197867 +333,45517,4.0,1441199005 +333,47099,5.0,1441197835 +333,47610,4.5,1441197786 +333,49651,4.5,1441198082 +333,50703,5.0,1441199769 +333,54001,4.0,1441197796 +333,54272,2.5,1441199101 +333,54286,4.5,1441197387 +333,56174,4.0,1441197780 +333,63082,4.0,1441198728 +333,68954,3.5,1441197346 +333,69644,4.0,1441199063 +333,72641,4.5,1441198164 +333,72998,4.5,1441199310 +333,73881,5.0,1441199444 +333,74787,3.0,1441198229 +333,74789,4.0,1441199709 +333,78499,4.0,1441197363 +333,79132,5.0,1441197262 +333,80463,3.0,1441198325 +333,81562,4.0,1441198586 +333,81845,4.0,1441198356 +333,89045,4.5,1441199805 +333,89492,4.0,1441198303 +333,103335,4.5,1441198988 +333,104913,4.5,1441198315 +333,105844,3.5,1441198673 +333,109487,4.5,1441197391 +333,116797,5.0,1441197436 +333,117176,4.0,1441197950 +333,141668,5.0,1441198482 +334,1,5.0,1447031887 +334,260,4.0,1447031417 +334,296,5.0,1447031705 +334,318,4.0,1447031384 +334,356,5.0,1447031758 +334,778,3.0,1447031800 +334,858,5.0,1447031501 +334,1917,3.0,1447031435 +334,2028,5.0,1447031703 +334,2355,3.0,1447031445 +334,2571,4.0,1447031390 +334,2959,4.0,1447031401 +334,3147,4.0,1447031430 +334,3462,5.0,1447031719 +334,6016,5.0,1447031512 +334,6874,3.5,1447031894 +334,8873,3.0,1447033619 +334,44191,3.5,1447031863 +334,46578,3.0,1447031873 +334,48394,3.0,1447031803 +334,55721,4.5,1447031834 +334,60069,4.0,1447031733 +334,68954,3.5,1447031737 +334,79132,4.0,1447031394 +334,81834,2.0,1447033624 +334,85342,4.0,1447031855 +334,99114,5.0,1447031702 +334,106100,4.5,1447031881 +334,112552,4.5,1447031752 +334,115713,3.0,1447031473 +334,116797,4.0,1447031460 +334,117444,4.0,1447031477 +334,122882,4.5,1447031896 +334,134853,4.0,1447031453 +335,169,2.5,1232147376 +335,858,5.0,1232148481 +335,922,3.5,1232147137 +335,969,4.0,1232164692 +335,1096,4.0,1232149814 +335,1212,4.0,1232149335 +335,1281,4.0,1232147413 +335,1287,3.0,1232147020 +335,1293,4.5,1232148492 +335,1381,2.0,1232147308 +335,2379,2.0,1232147403 +335,2533,2.5,1232147383 +335,2739,4.0,1232147174 +335,2949,2.5,1232147083 +335,2993,2.5,1232147268 +335,3147,4.0,1232149182 +335,3155,3.0,1232147349 +335,3479,3.5,1232147293 +335,3984,2.5,1232147260 +335,4223,4.0,1232149624 +335,6818,4.5,1232149449 +335,55417,3.0,1232149132 +335,63082,4.0,1232148894 +336,1,2.0,995826976 +336,260,5.0,995827310 +336,356,5.0,995826491 +336,527,5.0,995826976 +336,904,5.0,995826913 +336,908,4.0,995827082 +336,912,3.0,995826913 +336,919,5.0,995827082 +336,922,4.0,995827025 +336,923,1.0,995827178 +336,926,5.0,995827082 +336,933,3.0,995827178 +336,953,5.0,995826976 +336,954,3.0,995827025 +336,1019,3.0,995826491 +336,1084,1.0,995826491 +336,1204,1.0,995827082 +336,1207,5.0,995827263 +336,1250,5.0,995827082 +336,1269,1.0,995827310 +336,1372,2.0,995826491 +336,1387,1.0,995826976 +336,1939,5.0,995826976 +336,3196,5.0,995827082 +336,3501,5.0,995826491 +336,3634,3.0,995826976 +336,4191,1.0,995826851 +336,4406,5.0,995826790 +336,4427,4.0,995826851 +336,4486,1.0,995826737 +336,4539,3.0,995826491 +337,260,4.0,1447176378 +337,329,5.0,1447176408 +337,541,4.0,1447176441 +337,589,5.0,1447176450 +337,891,1.0,1447176249 +337,1196,5.0,1447176393 +337,1199,5.0,1447176456 +337,1200,4.0,1447176462 +337,1206,4.0,1447176472 +337,1321,1.0,1447176367 +337,1328,1.0,1447176357 +337,1339,1.0,1447176313 +337,1342,2.0,1447176325 +337,1345,2.0,1447176340 +337,1356,5.0,1447176421 +337,1376,4.0,1447176430 +337,1969,2.0,1447176300 +337,1974,2.0,1447176257 +337,2160,1.0,1447176196 +337,2167,1.0,1447176222 +338,2,3.0,841656624 +338,17,4.0,841656668 +338,25,4.0,841656889 +338,31,3.0,841656923 +338,34,4.0,841656380 +338,36,4.0,841656923 +338,39,3.0,841656489 +338,47,4.0,841656328 +338,62,4.0,841656782 +338,105,3.0,841656923 +338,110,3.0,841656284 +338,141,3.0,841656696 +338,150,4.0,841656066 +338,153,3.0,841656121 +338,158,3.0,841656725 +338,161,3.0,841656206 +338,168,3.0,841656756 +338,185,3.0,841656284 +338,193,2.0,841656889 +338,208,3.0,841656247 +338,224,4.0,841656889 +338,225,3.0,841656380 +338,235,4.0,841656696 +338,236,3.0,841656590 +338,265,3.0,841656756 +338,282,3.0,841656590 +338,292,3.0,841656206 +338,296,3.0,841656067 +338,300,3.0,841656328 +338,318,4.0,841656206 +338,337,5.0,841656624 +338,344,3.0,841656121 +338,350,3.0,841656557 +338,355,4.0,841657033 +338,356,4.0,841656247 +338,357,4.0,841656557 +338,364,4.0,841656328 +338,367,4.0,841656381 +338,377,3.0,841656379 +338,410,4.0,841656328 +338,454,3.0,841656284 +338,457,3.0,841656157 +338,480,3.0,841656284 +338,500,3.0,841656415 +338,508,4.0,841656725 +338,509,4.0,841656624 +338,515,3.0,841657033 +338,527,5.0,841656524 +338,539,3.0,841656524 +338,588,3.0,841656121 +338,589,5.0,841656328 +338,590,3.0,841656065 +338,592,3.0,841656064 +338,593,5.0,841656157 +338,595,4.0,841656157 +338,597,3.0,841656489 +338,648,4.0,841656923 +339,47,4.5,1446664412 +339,110,4.5,1446663189 +339,145,3.5,1446664152 +339,165,3.0,1446663793 +339,260,3.0,1446663107 +339,266,4.0,1446663797 +339,293,5.0,1446663271 +339,318,5.0,1446663091 +339,356,5.0,1446663193 +339,377,4.0,1446663808 +339,474,3.0,1446663591 +339,527,5.0,1446663097 +339,541,3.0,1446663233 +339,786,3.0,1446664201 +339,858,3.0,1446663199 +339,861,4.5,1446663924 +339,1036,4.0,1446663178 +339,1196,3.0,1446663109 +339,1198,2.5,1446663113 +339,1210,4.0,1446663370 +339,1232,3.5,1446663351 +339,1249,5.0,1446663500 +339,1270,4.0,1446663206 +339,1370,3.5,1446663933 +339,1527,4.0,1446663600 +339,1573,4.5,1446664021 +339,1608,2.5,1446664047 +339,2012,4.5,1446664145 +339,2028,4.5,1446663181 +339,2268,4.5,1446663538 +339,2273,4.0,1446663949 +339,2278,4.5,1446663744 +339,2571,5.0,1446663100 +339,2692,4.5,1446663301 +339,3006,4.5,1446663449 +339,3147,4.5,1446664432 +339,3578,5.0,1446663396 +339,3681,4.0,1446663383 +339,3949,3.5,1446663291 +339,4018,4.5,1446664222 +339,4489,4.5,1446663810 +339,5418,3.5,1446663437 +339,5507,3.5,1446664353 +339,5574,3.5,1446664043 +339,5809,3.5,1446664218 +339,5888,4.5,1446663701 +339,5952,4.0,1446663212 +339,5995,5.0,1446663273 +339,6365,3.5,1446664062 +339,6378,4.5,1446663738 +339,6539,4.0,1446663503 +339,6874,2.0,1446663455 +339,7143,3.5,1446663630 +339,7153,4.0,1446663187 +339,7438,2.0,1446664496 +339,8644,4.5,1446663881 +339,30707,5.0,1446663484 +339,30816,3.5,1446663724 +339,33679,3.5,1446664157 +339,34319,3.5,1446663944 +339,36519,3.5,1446664208 +339,53125,4.0,1446663969 +339,53972,4.0,1446663752 +339,54286,3.5,1446663377 +339,57528,3.5,1446664035 +339,64620,4.5,1446663550 +339,64716,4.5,1446663580 +339,65514,3.5,1446663393 +339,67255,4.5,1446664471 +339,68159,4.5,1446664080 +339,68554,4.0,1446664142 +339,70286,4.0,1446663490 +339,71530,4.5,1446664136 +339,73017,4.0,1446663556 +339,74458,5.0,1446663425 +339,74510,4.5,1446663568 +339,74727,5.0,1446664477 +339,79132,5.0,1446663224 +339,81229,4.5,1446663676 +339,84844,4.5,1446663663 +339,89087,2.5,1446664173 +339,91500,2.0,1446663648 +339,91542,3.5,1446663131 +339,91630,4.0,1446663670 +339,91658,4.5,1446663509 +339,92259,5.0,1446663231 +339,96610,2.5,1446663607 +339,96737,3.0,1446663766 +339,97752,2.0,1446663698 +339,99112,3.5,1446663859 +339,99114,2.5,1446663299 +339,101362,3.0,1446664180 +339,103042,2.5,1446664026 +339,104441,3.5,1446664211 +339,104590,4.0,1446663814 +339,108190,1.5,1446663973 +339,109487,4.0,1446663139 +339,111360,3.0,1446664254 +339,111781,3.5,1446663658 +339,113862,4.0,1446663905 +339,115210,4.0,1446663621 +339,116823,3.0,1446663772 +339,121618,3.0,1446663727 +339,130490,2.0,1446664132 +339,132796,3.5,1446664308 +340,6,4.0,1410374053 +340,47,5.0,1410374238 +340,293,4.0,1410374113 +340,296,3.5,1410374199 +340,318,5.0,1410252785 +340,356,5.0,1410373987 +340,364,5.0,1410374454 +340,858,5.0,1410252787 +340,1036,3.5,1410373938 +340,1221,5.0,1410252801 +340,1222,3.0,1410373990 +340,1291,4.0,1410374067 +340,1665,3.0,1410252318 +340,1704,5.0,1410374025 +340,1954,3.5,1410374221 +340,2085,2.5,1410252048 +340,2412,3.0,1410252300 +340,2542,5.0,1410374096 +340,2571,3.5,1410374122 +340,2805,4.0,1410252220 +340,2808,2.5,1410252265 +340,2951,4.0,1410373968 +340,3578,4.0,1410374015 +340,3617,2.5,1410252068 +340,3681,4.0,1410373981 +340,3704,2.5,1410252194 +340,3972,4.0,1410252342 +340,4262,4.5,1410374229 +340,4993,5.0,1410374092 +340,5283,2.0,1410252547 +340,5463,3.0,1410252382 +340,5952,5.0,1410374099 +340,5989,5.0,1410373917 +340,7360,3.0,1410252286 +340,7502,4.0,1410252794 +340,46965,4.0,1410252587 +340,77561,3.0,1410252306 +340,102125,3.0,1410252666 +340,106489,5.0,1410252751 +341,14,4.0,1240055572 +341,31,4.5,1240055463 +341,1172,4.0,1240055494 +341,1267,3.5,1240055479 +341,1272,3.5,1240055522 +341,1343,4.0,1240055469 +341,1748,0.5,1240053898 +341,1892,4.5,1240833566 +341,1947,3.0,1240055515 +341,1959,4.0,1240055726 +341,1960,3.5,1240055565 +341,2336,4.0,1240055448 +341,2396,4.0,1240833487 +341,2686,3.5,1240055690 +341,2707,4.0,1240055560 +341,2890,5.0,1240055418 +341,2947,0.5,1240053901 +341,3181,5.0,1240833141 +341,4404,1.0,1240833108 +341,5527,4.0,1240833509 +341,6883,4.5,1240833608 +341,36527,5.0,1240833496 +342,14,3.0,945125271 +342,25,4.0,945124900 +342,36,4.0,945123774 +342,50,5.0,945123389 +342,58,5.0,945123389 +342,150,5.0,945124003 +342,162,3.0,945123204 +342,246,5.0,945123774 +342,260,4.0,945123389 +342,296,3.0,945123204 +342,300,4.0,945125169 +342,306,5.0,945124454 +342,308,5.0,945125603 +342,318,5.0,945123774 +342,321,4.0,945126412 +342,337,4.0,945124963 +342,367,4.0,945125894 +342,373,5.0,945123519 +342,440,4.0,945123680 +342,448,4.0,945125095 +342,474,5.0,945124647 +342,508,3.0,945125730 +342,509,4.0,945126150 +342,527,5.0,945123389 +342,529,5.0,945123519 +342,593,5.0,945123680 +342,608,5.0,945123204 +342,647,3.0,945122168 +342,733,4.0,945126412 +342,800,5.0,945123519 +342,858,5.0,945123009 +342,866,5.0,945126061 +342,898,5.0,945124052 +342,899,4.0,945123389 +342,902,4.0,945123774 +342,903,4.0,945123774 +342,904,5.0,945123204 +342,906,4.0,945125730 +342,908,5.0,945123604 +342,911,5.0,945124455 +342,912,5.0,945123083 +342,916,5.0,945124578 +342,919,4.0,945123680 +342,920,5.0,945124802 +342,923,5.0,945123204 +342,924,5.0,945123519 +342,934,5.0,945124647 +342,948,4.0,945125095 +342,953,5.0,945123680 +342,954,5.0,945124578 +342,971,5.0,945123680 +342,1073,4.0,945126565 +342,1082,4.0,945125169 +342,1086,4.0,945124346 +342,1090,4.0,945126061 +342,1093,3.0,945122610 +342,1094,3.0,945123774 +342,1097,4.0,945124963 +342,1103,4.0,945123519 +342,1120,4.0,945126061 +342,1147,5.0,945123519 +342,1179,4.0,945123774 +342,1185,4.0,945123519 +342,1193,5.0,945122123 +342,1194,4.0,945126317 +342,1196,3.0,945122231 +342,1198,4.0,945123389 +342,1203,5.0,945123389 +342,1204,5.0,945123204 +342,1208,4.0,945123204 +342,1213,5.0,945123204 +342,1214,4.0,945124900 +342,1219,4.0,945123947 +342,1220,4.0,945125894 +342,1221,5.0,945123009 +342,1222,5.0,945125271 +342,1225,4.0,945123947 +342,1228,5.0,945123084 +342,1230,5.0,945123009 +342,1231,5.0,945123604 +342,1234,5.0,945123604 +342,1247,5.0,945123519 +342,1250,4.0,945123204 +342,1252,5.0,945123009 +342,1259,5.0,945124647 +342,1265,5.0,945123604 +342,1266,4.0,945123947 +342,1267,4.0,945124003 +342,1271,5.0,945126061 +342,1272,5.0,945123680 +342,1276,5.0,945123947 +342,1278,5.0,945123390 +342,1286,4.0,945126150 +342,1295,4.0,945125271 +342,1304,5.0,945123204 +342,1307,5.0,945124648 +342,1343,4.0,945126317 +342,1344,5.0,945124802 +342,1358,4.0,945124648 +342,1387,4.0,945123390 +342,1396,4.0,945126150 +342,1401,4.0,945126061 +342,1537,5.0,945123519 +342,1573,2.0,945126240 +342,1580,4.0,945124578 +342,1610,3.0,945125271 +342,1617,4.0,945123084 +342,1633,4.0,945123390 +342,1639,4.0,945124346 +342,1678,4.0,945124802 +342,1680,5.0,945124963 +342,1682,3.0,945126061 +342,1704,5.0,945124578 +342,1713,2.0,945122285 +342,1944,4.0,945123084 +342,1947,4.0,945124963 +342,1950,5.0,945124003 +342,1952,4.0,945123390 +342,1953,4.0,945123084 +342,1954,5.0,945125169 +342,1955,4.0,945122285 +342,1958,5.0,945125816 +342,1959,4.0,945125272 +342,1961,5.0,945125730 +342,1962,5.0,945124578 +342,1965,3.0,945124802 +342,1966,4.0,945123204 +342,1968,3.0,945125603 +342,1997,4.0,945123519 +342,2022,2.0,945125272 +342,2028,5.0,945123390 +342,2100,4.0,945125816 +342,2132,5.0,945123390 +342,2137,4.0,945126240 +342,2176,5.0,945126150 +342,2202,5.0,945126061 +342,2243,3.0,945123774 +342,2248,4.0,945126061 +342,2268,5.0,945126240 +342,2289,4.0,945123604 +342,2291,4.0,945125347 +342,2302,5.0,945125347 +342,2313,4.0,945123519 +342,2340,3.0,945124455 +342,2395,3.0,945122874 +342,2396,4.0,945122874 +342,2406,3.0,945125730 +342,2427,5.0,945124455 +342,2453,4.0,945126317 +342,2501,4.0,945125272 +342,2529,4.0,945126061 +342,2539,4.0,945126150 +342,2565,4.0,945126150 +342,2657,3.0,945125603 +342,2671,3.0,945127151 +342,2694,3.0,945122474 +342,2712,4.0,945122610 +342,2716,3.0,945122610 +342,2720,2.0,945127024 +342,2739,4.0,945126317 +342,2779,4.0,945126061 +342,2791,5.0,945124003 +342,2795,4.0,945125730 +342,2804,5.0,945123084 +342,2819,4.0,945123774 +342,2866,4.0,945124578 +342,2871,4.0,945123519 +342,2906,4.0,945127024 +342,2918,4.0,945125347 +342,2942,3.0,945122285 +342,2961,4.0,945122874 +342,2971,4.0,945124802 +342,2973,4.0,945123390 +342,2985,2.0,945125169 +342,2987,3.0,945122874 +342,2988,4.0,945123680 +342,3020,1.0,945126061 +342,3068,4.0,945125169 +342,3071,4.0,945125169 +342,3104,5.0,945124346 +342,3111,4.0,945124900 +342,3114,4.0,945122874 +342,3135,4.0,945124648 +342,3141,4.0,945123519 +342,3152,5.0,945124900 +342,3169,2.0,945123009 +342,5060,4.0,945123888 +343,1,5.0,881166397 +343,6,5.0,881166915 +343,25,5.0,881166495 +343,32,4.0,881166832 +343,36,4.0,881166665 +343,41,2.0,881166832 +343,52,1.0,881166707 +343,62,2.0,881166685 +343,81,4.0,881166884 +343,94,3.0,881167085 +343,260,5.0,881166665 +343,605,4.0,881167197 +343,608,3.0,881166350 +343,633,3.0,881167085 +343,635,3.0,881167220 +343,648,4.0,881166971 +343,661,4.0,881167220 +343,733,5.0,881166350 +343,745,5.0,881166495 +343,778,5.0,881166832 +343,780,4.0,881167177 +343,785,3.0,881167159 +343,802,1.0,881166915 +343,832,2.0,881166397 +343,852,4.0,881167220 +343,858,5.0,881166452 +343,866,4.0,881167085 +343,994,5.0,881166495 +343,1006,3.0,881166350 +343,1042,5.0,881167197 +343,1060,5.0,881166452 +343,1073,5.0,881167085 +343,1112,4.0,881166733 +343,1210,5.0,881166495 +343,1356,4.0,881166971 +343,1393,3.0,881166733 +343,1407,4.0,881166015 +343,1422,3.0,881166070 +343,1459,4.0,881166884 +343,1485,4.0,881166015 +343,1552,4.0,881167085 +343,1672,4.0,881165990 +344,1,4.0,853736711 +344,5,2.0,850723898 +344,23,3.0,850728598 +344,29,3.0,850725820 +344,34,1.0,850727257 +344,39,3.0,853736623 +344,46,3.0,850727867 +344,47,5.0,850725078 +344,50,5.0,850727506 +344,52,4.0,853734890 +344,53,5.0,850726154 +344,82,4.0,850725819 +344,110,4.0,850725246 +344,122,3.0,850726963 +344,144,3.0,850726013 +344,153,1.0,850725506 +344,156,4.0,850724257 +344,161,4.0,850728472 +344,165,3.0,850725682 +344,168,2.0,850725682 +344,185,3.0,850725460 +344,194,5.0,850727633 +344,208,2.0,850725506 +344,224,5.0,850726737 +344,225,4.0,850728269 +344,231,3.0,850727014 +344,232,5.0,850724829 +344,253,5.0,850728825 +344,260,5.0,850725078 +344,266,5.0,850727384 +344,268,5.0,850727827 +344,288,3.0,850725078 +344,290,5.0,850724685 +344,292,3.0,850727842 +344,293,4.0,850728432 +344,296,4.0,850725078 +344,299,5.0,850724751 +344,316,3.0,850725624 +344,318,5.0,850727506 +344,329,3.0,850728412 +344,333,3.0,850727124 +344,337,5.0,850727506 +344,339,3.0,850726631 +344,349,4.0,850725567 +344,350,4.0,850728064 +344,353,4.0,850725278 +344,356,5.0,850727633 +344,357,5.0,850726013 +344,358,3.0,850727968 +344,364,4.0,850726361 +344,367,3.0,850727180 +344,368,4.0,850726758 +344,377,3.0,850725317 +344,380,3.0,850725682 +344,413,4.0,850727124 +344,423,2.0,850725409 +344,431,5.0,850727574 +344,434,3.0,850725624 +344,440,4.0,850726689 +344,442,3.0,850725567 +344,454,4.0,850728064 +344,457,4.0,850725179 +344,474,4.0,850725246 +344,480,2.0,850725317 +344,481,4.0,850727603 +344,485,2.0,850725624 +344,489,3.0,850727090 +344,490,4.0,850728494 +344,493,3.0,850727726 +344,497,5.0,850726472 +344,500,4.0,850726940 +344,504,3.0,850725409 +344,507,4.0,850725179 +344,508,4.0,850727574 +344,509,3.0,850725819 +344,515,5.0,850726094 +344,516,3.0,850726908 +344,517,4.0,850725369 +344,519,1.0,850725719 +344,522,3.0,850725369 +344,527,4.0,850727507 +344,529,4.0,850727633 +344,539,3.0,850726824 +344,541,5.0,850725078 +344,543,4.0,850726798 +344,544,2.0,850725506 +344,553,3.0,850727894 +344,586,2.0,850727257 +344,587,3.0,850727384 +344,588,5.0,850726335 +344,589,4.0,850725317 +344,590,3.0,850727313 +344,592,2.0,850725460 +344,593,5.0,850728432 +344,595,3.0,850726333 +344,597,2.0,850727335 +344,632,5.0,850724724 +344,733,3.0,850723898 +344,778,5.0,850724146 +344,780,3.0,853736577 +344,836,2.0,853736722 +344,850,5.0,850726201 +344,924,3.0,850727726 +344,981,1.0,850728732 +344,1027,5.0,850726361 +344,1036,3.0,850725278 +344,1079,5.0,850726579 +344,1080,4.0,850726490 +344,1088,3.0,850727384 +344,1090,5.0,850727603 +344,1091,3.0,850726963 +344,1092,3.0,850728494 +344,1094,3.0,850727574 +344,1097,3.0,850727801 +344,1100,3.0,850725425 +344,1101,3.0,850725317 +344,1124,4.0,850727827 +344,1125,3.0,850726689 +344,1127,4.0,850728494 +344,1136,4.0,850726472 +344,1186,4.0,850727827 +344,1193,5.0,850727506 +344,1196,5.0,850725105 +344,1198,5.0,850725105 +344,1200,4.0,850725179 +344,1201,5.0,850725179 +344,1203,4.0,850727633 +344,1204,4.0,850725105 +344,1208,4.0,850727574 +344,1210,5.0,850725246 +344,1213,4.0,850727542 +344,1214,3.0,850725105 +344,1216,4.0,850725246 +344,1219,3.0,850728472 +344,1220,4.0,850726512 +344,1222,4.0,850724865 +344,1225,5.0,850727542 +344,1231,4.0,850727663 +344,1233,4.0,850725953 +344,1240,4.0,850725179 +344,1241,3.0,850726614 +344,1246,5.0,850727507 +344,1247,5.0,850727313 +344,1249,4.0,850726013 +344,1250,4.0,850727603 +344,1258,3.0,850728825 +344,1259,4.0,850726473 +344,1263,5.0,850727663 +344,1265,4.0,850726511 +344,1266,4.0,850728472 +344,1270,4.0,850726579 +344,1272,4.0,850727663 +344,1274,4.0,850726117 +344,1275,3.0,850725179 +344,1277,4.0,850726036 +344,1282,3.0,850726361 +344,1291,5.0,850725278 +344,1300,4.0,850726036 +344,1302,3.0,850727726 +344,1307,3.0,850726473 +344,1320,3.0,850725369 +344,1343,3.0,850728550 +344,1344,3.0,850727992 +344,1347,2.0,850728879 +344,1350,3.0,850728856 +344,1354,5.0,850724455 +344,1370,3.0,850725369 +344,1372,4.0,850725317 +344,1373,4.0,850725506 +344,1376,3.0,850728513 +344,1377,2.0,850725317 +344,1378,3.0,850725317 +344,1380,4.0,850726737 +344,1381,1.0,850727154 +344,1385,4.0,850725369 +344,1387,3.0,850728513 +344,1388,1.0,850728732 +345,1,4.5,1106949170 +345,5,2.0,1109278713 +345,6,2.5,1106949297 +345,25,4.0,1106949274 +345,32,5.0,1106948903 +345,34,4.0,1106949220 +345,36,2.5,1106949280 +345,45,3.5,1106864318 +345,47,4.5,1106949213 +345,50,4.5,1106948900 +345,62,3.5,1106949300 +345,110,4.5,1106949154 +345,111,5.0,1106948533 +345,141,3.5,1106949270 +345,153,2.0,1106948886 +345,196,2.0,1107044186 +345,223,5.0,1107044169 +345,235,4.0,1107044163 +345,253,2.0,1106949259 +345,260,4.0,1106949162 +345,293,3.0,1107044182 +345,296,5.0,1106949130 +345,318,5.0,1106949157 +345,329,2.0,1106949223 +345,344,0.5,1106949199 +345,345,3.0,1107044176 +345,353,4.0,1107044148 +345,356,3.5,1106949140 +345,364,4.5,1106948864 +345,370,1.5,1107044139 +345,377,2.0,1106949188 +345,480,2.0,1106949143 +345,527,4.5,1106949181 +345,529,4.0,1109278687 +345,539,2.5,1106949253 +345,585,3.5,1106864381 +345,587,2.0,1106949243 +345,588,4.0,1106949184 +345,592,3.5,1106864572 +345,593,4.5,1106949134 +345,608,5.0,1106948873 +345,648,2.0,1106948869 +345,780,1.5,1106949169 +345,858,5.0,1106948879 +345,903,4.5,1106864321 +345,904,4.0,1106948645 +345,910,4.0,1107044114 +345,924,3.5,1107044119 +345,1073,4.5,1106864773 +345,1080,4.0,1107044103 +345,1084,3.5,1106864371 +345,1094,4.5,1107044058 +345,1193,5.0,1109289703 +345,1196,4.5,1106864752 +345,1197,2.5,1106864698 +345,1198,4.5,1106949226 +345,1200,1.5,1106864770 +345,1206,5.0,1106864731 +345,1208,5.0,1107044076 +345,1210,4.0,1106948856 +345,1213,5.0,1109289708 +345,1214,4.0,1109289749 +345,1215,3.5,1107044090 +345,1219,5.0,1106864720 +345,1220,5.0,1106864708 +345,1222,4.0,1109289737 +345,1225,4.5,1107044062 +345,1227,5.0,1109278745 +345,1228,2.5,1106948662 +345,1250,5.0,1106864285 +345,1252,4.5,1107044060 +345,1259,5.0,1106948511 +345,1270,3.5,1106949228 +345,1276,4.5,1106864342 +345,1285,4.5,1106864388 +345,1291,4.0,1107044084 +345,1292,3.5,1106948655 +345,1297,4.0,1106948652 +345,1302,2.5,1106864760 +345,1304,4.0,1107044073 +345,1356,3.0,1106864714 +345,1358,4.5,1106948640 +345,1372,2.0,1106864312 +345,1374,3.5,1107044079 +345,1375,3.5,1106864356 +345,1376,3.0,1109278675 +345,1377,3.5,1107044035 +345,1380,4.5,1106864655 +345,1394,3.5,1106864673 +345,1517,4.0,1106864660 +345,1580,3.0,1106949290 +345,1584,4.5,1107044032 +345,1617,4.0,1106949283 +345,1639,4.5,1106948637 +345,1641,4.0,1106864687 +345,1673,3.0,1106864339 +345,1682,4.5,1107044043 +345,1721,2.0,1106949288 +345,1747,4.5,1109278678 +345,1921,1.0,1106948624 +345,1968,4.5,1106864647 +345,2028,4.0,1106864664 +345,2072,4.5,1106948754 +345,2076,3.5,1106948610 +345,2174,1.5,1106948605 +345,2236,1.5,1106948750 +345,2291,1.0,1107043986 +345,2302,4.0,1106864576 +345,2324,2.5,1107043979 +345,2329,5.0,1109289598 +345,2380,0.5,1109278809 +345,2381,0.5,1109278805 +345,2382,1.0,1106948746 +345,2383,0.5,1109278798 +345,2396,5.0,1106864601 +345,2502,4.0,1106864291 +345,2571,4.5,1106948524 +345,2580,4.5,1106948629 +345,2628,3.5,1106948516 +345,2641,2.5,1106948618 +345,2657,1.5,1106864308 +345,2692,5.0,1109289680 +345,2700,5.0,1109278673 +345,2710,2.5,1106864583 +345,2712,2.5,1107043989 +345,2723,4.0,1106948590 +345,2762,4.5,1106949302 +345,2770,4.0,1106864373 +345,2791,4.5,1107043961 +345,2804,4.5,1109289746 +345,2858,5.0,1106864597 +345,2871,4.0,1106948573 +345,2890,4.5,1106948585 +345,2918,5.0,1106864605 +345,2959,5.0,1109289668 +345,3052,3.5,1106864386 +345,3101,1.5,1106864349 +345,3114,4.5,1106948494 +345,3176,2.0,1106864594 +345,3189,3.0,1109278787 +345,3262,4.5,1109278782 +345,3298,4.0,1106948570 +345,3317,5.0,1106948592 +345,3471,4.5,1107043976 +345,3543,5.0,1106949066 +345,3578,2.0,1107043973 +345,3751,4.0,1106948581 +345,3793,4.0,1106949030 +345,3882,1.0,1106948713 +345,3897,5.0,1109289731 +345,3949,4.5,1106949037 +345,3977,2.0,1107043957 +345,3994,4.5,1106948559 +345,4002,4.5,1106949012 +345,4022,4.0,1107043991 +345,4034,3.0,1106949021 +345,4056,3.0,1106948707 +345,4226,4.5,1106949054 +345,4306,4.0,1106949027 +345,4327,4.0,1109289711 +345,4361,3.0,1106948991 +345,4370,3.0,1106948998 +345,4571,3.5,1106949005 +345,4641,5.0,1106948537 +345,4720,4.0,1106948552 +345,4873,2.5,1106948687 +345,4878,5.0,1109289630 +345,4886,4.5,1109289673 +345,4967,4.5,1109289719 +345,4975,4.0,1106948547 +345,4979,4.5,1106948978 +345,4993,4.0,1106948505 +345,5060,5.0,1106948956 +345,5291,4.5,1109289751 +345,5299,3.5,1106948970 +345,5349,4.5,1109278684 +345,5378,3.5,1106948963 +345,5618,5.0,1109289670 +345,5690,4.5,1109289603 +345,5952,4.5,1106864401 +345,5989,3.5,1106948947 +345,5991,3.5,1106948938 +345,6016,4.5,1109289640 +345,6203,1.0,1106948924 +345,6331,3.5,1109289700 +345,6350,5.0,1109289650 +345,6377,4.5,1109289626 +345,6385,4.5,1106948691 +345,6620,4.5,1109289705 +345,6711,5.0,1106948916 +345,6721,3.0,1106948802 +345,6870,4.0,1109289723 +345,6874,5.0,1109289741 +345,7034,4.5,1109289694 +345,7099,4.5,1106948776 +345,7137,4.0,1106948780 +345,7139,4.5,1109289609 +345,7153,4.5,1109289582 +345,7361,5.0,1109289590 +345,7366,1.5,1106948784 +345,7438,4.5,1109289632 +345,8207,4.5,1109289663 +345,8337,4.5,1109289643 +345,8464,4.0,1109289629 +345,8784,4.0,1109289615 +345,8949,4.5,1109289594 +345,8961,5.0,1106864465 +345,8966,4.0,1106864486 +345,8970,3.0,1106864455 +345,8981,4.0,1106864501 +345,8983,3.5,1106864491 +345,30707,4.5,1109289577 +345,30749,4.5,1106864446 +345,30810,4.5,1106864478 +346,2,2.0,1044652107 +346,29,2.0,1159125941 +346,32,3.0,1044650722 +346,47,2.5,1159128814 +346,110,2.0,1044651821 +346,112,4.0,1159125081 +346,185,4.0,1044651233 +346,196,3.0,1044651203 +346,260,5.0,1044648612 +346,316,3.0,1044651135 +346,318,1.0,1159124456 +346,319,2.0,1044649300 +346,344,3.5,1159128840 +346,353,4.0,1044648813 +346,367,3.0,1044652069 +346,368,4.0,1159125471 +346,379,4.0,1044651203 +346,442,4.0,1044649194 +346,480,1.0,1044648660 +346,485,5.0,1044649210 +346,504,4.0,1044651233 +346,520,4.0,1159125870 +346,527,1.0,1159128828 +346,541,5.0,1044650699 +346,555,4.0,1159125836 +346,558,1.0,1044650181 +346,589,5.0,1044651576 +346,590,1.0,1044648639 +346,593,2.0,1159128831 +346,608,1.0,1159128938 +346,648,4.0,1159128857 +346,653,2.0,1044652201 +346,663,2.0,1044649542 +346,671,5.0,1044650809 +346,674,3.0,1044651203 +346,735,5.0,1159125969 +346,741,5.0,1044650519 +346,750,2.0,1044650699 +346,780,3.0,1044651233 +346,788,1.0,1044652162 +346,861,4.5,1159124321 +346,876,5.0,1044651484 +346,924,1.0,1044650857 +346,1009,3.0,1044652162 +346,1036,3.5,1159125390 +346,1059,2.0,1044649687 +346,1073,4.0,1044651937 +346,1097,2.0,1044650881 +346,1126,2.0,1044652232 +346,1127,1.0,1044650979 +346,1129,4.0,1159124816 +346,1136,5.0,1044651321 +346,1148,3.0,1044650501 +346,1196,5.0,1044650663 +346,1197,5.0,1044648688 +346,1198,5.0,1044649399 +346,1199,5.0,1044650597 +346,1200,4.0,1044650752 +346,1201,3.0,1044651484 +346,1210,5.0,1044650809 +346,1214,3.5,1159734271 +346,1215,5.0,1044650047 +346,1222,3.0,1044651602 +346,1240,5.0,1044650752 +346,1241,0.5,1159124840 +346,1243,5.0,1044649704 +346,1255,0.5,1159125209 +346,1261,5.0,1044651802 +346,1268,2.0,1159125417 +346,1270,4.0,1044648718 +346,1274,2.0,1044650722 +346,1275,4.0,1044651714 +346,1277,4.0,1044651576 +346,1287,2.0,1044651676 +346,1301,3.0,1044650881 +346,1320,2.0,1044651233 +346,1371,3.0,1044651043 +346,1374,4.0,1044651633 +346,1376,3.0,1044650979 +346,1387,1.0,1044651602 +346,1391,2.0,1044651104 +346,1396,2.5,1159125385 +346,1429,4.5,1159125235 +346,1517,3.0,1159125669 +346,1527,2.0,1044650857 +346,1573,2.0,1044650947 +346,1580,3.5,1159125413 +346,1587,4.5,1159124808 +346,1623,1.0,1044650197 +346,1645,4.0,1044649922 +346,1653,4.0,1044650857 +346,1663,3.5,1159125281 +346,1676,4.0,1044651160 +346,1721,1.0,1044648746 +346,1748,3.0,1044650722 +346,1754,5.0,1044651714 +346,1755,2.0,1159125436 +346,1799,2.5,1159124855 +346,1848,1.0,1044652026 +346,1884,0.5,1159125460 +346,1921,4.0,1044651135 +346,1924,4.0,1044648718 +346,1965,3.0,1044650809 +346,1967,4.0,1044651990 +346,2000,5.0,1044651802 +346,2003,4.0,1159124869 +346,2005,4.0,1044652107 +346,2006,4.0,1044651714 +346,2009,4.0,1159124865 +346,2010,1.0,1044650857 +346,2011,4.5,1159734795 +346,2012,4.0,1044651160 +346,2019,2.0,1044650633 +346,2021,2.0,1044651203 +346,2034,4.0,1044651203 +346,2041,5.0,1044649978 +346,2046,4.0,1044650881 +346,2054,3.0,1044652201 +346,2087,1.0,1044652026 +346,2100,1.0,1044652069 +346,2105,5.0,1044651104 +346,2115,4.5,1159125138 +346,2116,3.0,1044649757 +346,2134,5.0,1159124977 +346,2140,4.0,1044650778 +346,2143,3.0,1044652201 +346,2161,3.0,1044652162 +346,2162,2.0,1044652201 +346,2167,3.0,1159124961 +346,2174,3.0,1044648688 +346,2193,4.0,1044651990 +346,2232,5.0,1044650809 +346,2273,4.0,1044650295 +346,2275,1.0,1159125179 +346,2363,3.5,1159124390 +346,2406,4.0,1044649653 +346,2407,1.0,1044651043 +346,2455,1.0,1044650857 +346,2527,2.0,1044650809 +346,2528,5.0,1044651104 +346,2533,3.0,1044648660 +346,2560,1.0,1044649323 +346,2571,5.0,1044650752 +346,2600,2.0,1044651135 +346,2625,4.0,1044651633 +346,2628,1.0,1044648746 +346,2641,5.0,1044651104 +346,2657,2.0,1044651008 +346,2662,4.0,1044650979 +346,2668,3.0,1044651160 +346,2716,4.5,1159124990 +346,2762,1.0,1044649873 +346,2763,5.0,1044648813 +346,2780,5.0,1044649323 +346,2791,3.5,1159125784 +346,2797,5.0,1044651990 +346,2879,3.0,1044649978 +346,2880,5.0,1044649978 +346,2916,5.0,1159124955 +346,2918,1.5,1159125956 +346,2924,5.0,1044650181 +346,2949,3.0,1044651714 +346,2968,5.0,1044651937 +346,2985,5.0,1044650947 +346,2997,5.0,1044650123 +346,3032,5.0,1044650947 +346,3033,3.0,1044651008 +346,3039,4.0,1159125498 +346,3052,4.5,1159125484 +346,3070,5.0,1044650699 +346,3081,4.5,1159125061 +346,3087,3.5,1159125232 +346,3114,3.5,1159128941 +346,3153,5.0,1044651714 +346,3159,1.0,1044652322 +346,3175,5.0,1044650778 +346,3213,4.5,1159124316 +346,3265,4.0,1159125655 +346,3275,4.0,1159125014 +346,3300,2.0,1044650899 +346,3397,1.5,1159125450 +346,3438,3.0,1044649465 +346,3452,5.0,1044649687 +346,3479,4.0,1044651990 +346,3489,3.0,1044652162 +346,3527,3.0,1044651043 +346,3624,5.0,1044650325 +346,3627,5.0,1044650519 +346,3638,3.0,1044651104 +346,3699,2.0,1044650778 +346,3702,4.0,1044650778 +346,3703,4.0,1044650722 +346,3740,5.0,1044651740 +346,3745,5.0,1044651135 +346,3755,1.0,1044649571 +346,3763,3.0,1044651821 +346,3771,5.0,1044651633 +346,3793,5.0,1044650881 +346,3807,4.0,1159124767 +346,3868,4.0,1159125176 +346,3905,4.5,1159124742 +346,3959,4.0,1044650918 +346,3972,4.0,1044650181 +346,3977,5.0,1044649105 +346,3993,1.0,1159125711 +346,3996,4.0,1044651517 +346,3997,1.0,1044649271 +346,4085,4.0,1159125224 +346,4105,3.5,1159124748 +346,4121,5.0,1044651043 +346,4128,4.5,1159124735 +346,4133,5.0,1044650181 +346,4166,5.0,1159124704 +346,4232,5.0,1044651740 +346,4275,3.0,1044652162 +346,4306,4.0,1044651937 +346,4344,3.0,1044650340 +346,4440,3.0,1159124727 +346,4441,3.0,1159124785 +346,4442,5.0,1044651840 +346,4446,2.0,1044650857 +346,4467,5.0,1044651990 +346,4492,3.0,1044651104 +346,4545,4.0,1159125496 +346,4565,5.0,1044649448 +346,4566,5.0,1044649448 +346,4567,5.0,1044649448 +346,4571,5.0,1044648999 +346,4587,2.0,1044650881 +346,4624,0.5,1159124336 +346,4687,1.0,1044648999 +346,4696,5.0,1044650422 +346,4701,4.0,1044650295 +346,4717,5.0,1044651484 +346,4846,5.0,1044648718 +346,4874,2.0,1044652069 +346,4878,3.0,1044650454 +346,4887,4.0,1044651160 +346,4890,4.0,1044649300 +346,4896,5.0,1044649653 +346,4941,5.0,1044650857 +346,4952,3.0,1044651062 +346,4963,4.0,1044650270 +346,4980,5.0,1044648999 +346,4993,4.0,1044649757 +346,4995,1.5,1159128944 +346,5021,4.0,1044651289 +346,5026,1.0,1159124947 +346,5040,4.0,1044652201 +346,5055,1.0,1044651740 +346,5069,3.0,1044652107 +346,5110,2.0,1159125695 +346,5146,4.0,1044651937 +346,5219,5.0,1044650979 +346,5243,4.0,1044650197 +346,5247,3.5,1159125171 +346,5349,5.0,1044650857 +346,5378,1.0,1044650010 +346,5444,4.5,1159125259 +346,5445,1.0,1044649374 +346,5459,1.0,1044651043 +346,5460,5.0,1044651366 +346,5463,3.0,1044650358 +346,5522,3.5,1159124332 +346,5540,4.0,1044652107 +346,5541,4.0,1044650454 +346,5621,4.0,1044649073 +346,5782,5.0,1044651517 +346,5816,4.5,1159125644 +346,5833,1.5,1159125465 +346,5902,2.0,1044649059 +346,5903,4.5,1159124711 +346,5952,1.0,1044649757 +346,6095,3.0,1044649757 +346,6104,4.0,1044651399 +346,6242,0.5,1159124789 +346,6333,4.5,1159125121 +346,6350,4.0,1159125406 +346,6539,4.0,1159125269 +346,6582,4.5,1159125275 +346,6618,5.0,1159124967 +346,6659,3.5,1159124804 +346,6721,4.0,1159124756 +346,6722,3.5,1159124299 +346,6755,1.0,1159124832 +346,6790,3.0,1159125647 +346,6808,1.5,1159125479 +346,6857,4.0,1159124715 +346,6979,5.0,1159125018 +346,7022,5.0,1159125194 +346,7045,3.5,1159125159 +346,7090,4.5,1159125772 +346,7153,1.0,1159128934 +346,7360,4.0,1159125132 +346,7361,4.0,1159128852 +346,7373,2.5,1159125447 +346,7482,3.5,1159124729 +346,7757,4.5,1159125162 +346,7844,5.0,1159125892 +346,7899,3.5,1159124519 +346,8368,4.0,1159128848 +346,8623,4.0,1159125763 +346,8633,5.0,1159124744 +346,8636,4.5,1159124412 +346,8795,2.5,1159734171 +346,8807,5.0,1159125289 +346,8874,5.0,1159125127 +346,8917,4.0,1159125230 +346,8961,4.0,1159128818 +346,26152,5.0,1159125118 +346,26554,4.5,1159125777 +346,26585,3.5,1159124937 +346,26865,4.5,1161039726 +346,27801,4.5,1159125165 +346,31804,3.5,1159125651 +346,31878,5.0,1159124825 +346,33004,1.0,1159125671 +346,33493,1.5,1159128833 +346,33679,2.5,1159125895 +346,33794,1.0,1159128925 +346,33834,4.5,1159124328 +346,34332,4.5,1159125808 +346,34405,3.0,1159734728 +346,36708,3.0,1159129160 +346,40815,4.0,1159128916 +346,42718,4.0,1159124630 +346,44191,4.0,1159125394 +346,45183,4.5,1159124988 +346,45722,4.5,1159125824 +347,74,1.5,1463337048 +347,260,4.5,1462999757 +347,527,4.5,1463337285 +347,778,3.5,1463337278 +347,786,4.0,1463337100 +347,858,4.0,1463337247 +347,1196,4.5,1462999885 +347,1198,4.0,1462999907 +347,1210,4.5,1462999910 +347,1214,4.0,1463337339 +347,1721,4.0,1462999830 +347,2571,3.0,1462999924 +347,4085,4.0,1463337015 +347,4993,5.0,1462999606 +347,5952,4.5,1462999871 +347,6539,3.0,1462999928 +347,7153,4.5,1462999872 +347,33493,4.5,1462999930 +347,98809,3.0,1462999877 +347,106489,3.0,1462999878 +347,118696,3.0,1462999892 +347,122886,4.5,1462999906 +348,24,2.0,960838511 +348,32,5.0,960838861 +348,73,4.0,960838695 +348,111,5.0,960838178 +348,175,5.0,960838545 +348,235,5.0,960838629 +348,293,4.0,960838511 +348,296,3.0,960838418 +348,299,5.0,960837928 +348,334,1.0,960838484 +348,337,5.0,960838418 +348,356,5.0,960838052 +348,509,1.0,960838418 +348,523,5.0,960838484 +348,562,5.0,960838658 +348,574,5.0,960838990 +348,593,4.0,960838362 +348,678,5.0,960838438 +348,778,1.0,960838695 +348,982,1.0,960838890 +348,1050,1.0,960838847 +348,1179,5.0,960839056 +348,1193,4.0,960837928 +348,1207,1.0,960838362 +348,1213,1.0,960838832 +348,1221,1.0,960838418 +348,1233,4.0,960838418 +348,1247,5.0,960838695 +348,1251,1.0,960838891 +348,1345,5.0,960839485 +348,1348,1.0,960839437 +348,1358,5.0,960838891 +348,1673,5.0,960838303 +348,1682,5.0,960839375 +348,1719,5.0,960838461 +348,1952,5.0,960838303 +348,2002,1.0,960838511 +348,2020,1.0,960838629 +348,2026,4.0,960839472 +348,2076,5.0,960838418 +348,2160,5.0,960839449 +348,2289,5.0,960838960 +348,2324,1.0,960838362 +348,2438,4.0,960838075 +348,2858,5.0,960838511 +348,2966,5.0,960838461 +348,3067,5.0,960838960 +348,3089,5.0,960838461 +348,3223,5.0,960838484 +348,3476,5.0,960838202 +348,3504,5.0,960838557 +348,3678,1.0,960839056 +348,4424,1.0,960838338 +349,480,4.0,1019266191 +349,593,4.0,1019266057 +349,880,3.0,1019266057 +349,1097,3.0,1019266083 +349,1210,3.0,1019266108 +349,1222,5.0,1019266191 +349,1285,4.0,1019266135 +349,1792,3.0,1019266191 +349,1961,3.0,1019266019 +349,2106,5.0,1019266191 +349,2542,5.0,1019266191 +349,3316,4.0,1019266438 +349,3744,2.0,1019266438 +349,3793,3.0,1019266345 +349,3949,3.0,1019266019 +349,3977,2.0,1019266345 +349,3996,4.0,1019266345 +349,4161,4.0,1019266398 +349,4299,5.0,1019266378 +349,4344,4.0,1019266378 +349,4367,3.0,1019266478 +349,4369,2.0,1019266438 +349,4638,3.0,1019266438 +350,1,4.0,1005938887 +350,36,5.0,1011046129 +350,50,4.0,1006983651 +350,69,5.0,1011715100 +350,104,5.0,1003179103 +350,260,4.0,1006983681 +350,318,5.0,1006983667 +350,356,4.0,1003179997 +350,432,3.0,1011046684 +350,454,4.0,1011046161 +350,471,3.0,1011714986 +350,590,5.0,1007496143 +350,805,5.0,1011046144 +350,858,3.0,1009819887 +350,904,2.0,1009819954 +350,1017,4.0,1026761540 +350,1073,2.0,1003179997 +350,1089,5.0,1030653368 +350,1127,4.0,1003179360 +350,1196,5.0,1003179148 +350,1197,5.0,1003179965 +350,1198,5.0,1003179008 +350,1200,4.0,1011046768 +350,1210,5.0,1011046768 +350,1220,2.0,1009819790 +350,1221,4.0,1009812752 +350,1240,4.0,1003179997 +350,1257,5.0,1026761343 +350,1270,4.0,1005938947 +350,1271,5.0,1009820311 +350,1291,5.0,1008865251 +350,1298,5.0,1011046852 +350,1380,3.0,1003179050 +350,1444,4.0,1005939045 +350,1580,4.0,1026761387 +350,1586,2.0,1011046852 +350,1674,5.0,1005844032 +350,1676,2.0,1011046878 +350,1732,4.0,1011714963 +350,1911,2.0,1004548586 +350,1959,4.0,1009820147 +350,1968,4.0,1005938921 +350,2005,5.0,1009819905 +350,2012,4.0,1011046668 +350,2115,5.0,1008865251 +350,2150,4.0,1004548442 +350,2302,4.0,1006983454 +350,2324,5.0,1004548387 +350,2371,5.0,1009819833 +350,2372,4.0,1009819833 +350,2395,4.0,1009820194 +350,2402,4.0,1026761580 +350,2404,4.0,1026761689 +350,2433,4.0,1003179449 +350,2502,5.0,1003179668 +350,2505,1.0,1009819762 +350,2571,4.0,1006983789 +350,2594,4.0,1009812692 +350,2598,3.0,1003179701 +350,2599,4.0,1005939061 +350,2605,4.0,1003179496 +350,2628,3.0,1003178947 +350,2683,4.0,1003179386 +350,2688,3.0,1009820233 +350,2699,1.0,1009819762 +350,2706,5.0,1003179386 +350,2716,4.0,1003179535 +350,2770,2.0,1003179421 +350,2794,3.0,1003179103 +350,2803,4.0,1011046173 +350,2804,4.0,1005938988 +350,2858,5.0,1003179360 +350,2890,4.0,1011046817 +350,2916,3.0,1003180011 +350,2944,4.0,1011046792 +350,2959,5.0,1031253809 +350,3053,3.0,1003179598 +350,3083,3.0,1009812670 +350,3147,4.0,1009819969 +350,3175,2.0,1004548587 +350,3177,4.0,1009820680 +350,3298,4.0,1003179421 +350,3328,5.0,1027357068 +350,3355,4.0,1004548234 +350,3397,3.0,1005938947 +350,3408,5.0,1011714784 +350,3409,4.0,1003178986 +350,3424,4.0,1005939045 +350,3448,4.0,1011046838 +350,3481,5.0,1009820705 +350,3484,4.0,1027357845 +350,3513,4.0,1027357433 +350,3556,4.0,1010430829 +350,3617,5.0,1003179720 +350,3623,4.0,1003179610 +350,3624,4.0,1003179031 +350,3717,4.0,1003179535 +350,3752,1.0,1003179585 +350,3755,3.0,1009820645 +350,3760,4.0,1009820311 +350,3844,4.0,1009820291 +350,3852,4.0,1004548282 +350,3861,4.0,1027357149 +350,3869,4.0,1003179148 +350,3897,4.0,1005939082 +350,3916,4.0,1027356842 +350,3946,3.0,1027358284 +350,3948,4.0,1010430829 +350,3972,3.0,1027357274 +350,3988,4.0,1003179557 +350,3994,5.0,1011046520 +350,3996,3.0,1027356492 +350,3999,2.0,1027358188 +350,4008,4.0,1011046800 +350,4010,3.0,1011715032 +350,4011,5.0,1011046551 +350,4018,3.0,1027357649 +350,4019,3.0,1027356550 +350,4022,3.0,1003179449 +350,4027,5.0,1027356738 +350,4031,3.0,1011046605 +350,4034,4.0,1004906355 +350,4095,5.0,1007496163 +350,4219,4.0,1005938848 +350,4226,5.0,1003179950 +350,4235,5.0,1004547984 +350,4239,4.0,1003180058 +350,4246,4.0,1027357018 +350,4247,3.0,1027357977 +350,4265,1.0,1011046551 +350,4306,4.0,1005843942 +350,4308,1.0,1008800783 +350,4321,4.0,1011046655 +350,4367,3.0,1009820660 +350,4369,4.0,1009820757 +350,4372,4.0,1004548442 +350,4378,5.0,1009820771 +350,4489,4.0,1006983170 +350,4534,3.0,1011046700 +350,4535,4.0,1011046645 +350,4621,2.0,1003179081 +350,4641,5.0,1005938420 +350,4643,2.0,1009820645 +350,4728,5.0,1027357094 +350,4776,4.0,1006983468 +350,4816,4.0,1010430774 +350,4844,4.0,1027356825 +350,4874,5.0,1027357068 +350,4886,4.0,1005844006 +350,4958,5.0,1007412290 +350,4963,5.0,1026761298 +350,4967,5.0,1026761849 +350,4973,4.0,1027017461 +350,4975,3.0,1008800801 +350,4979,5.0,1026761298 +350,4989,2.0,1027356424 +350,4993,5.0,1009820645 +350,5010,4.0,1026761298 +350,5015,2.0,1026761329 +350,5065,2.0,1027017885 +350,5107,3.0,1026761485 +350,5299,5.0,1026761041 +350,5325,3.0,1026761071 +350,5378,4.0,1027357222 +350,5401,4.0,1026761041 +350,5438,3.0,1026761485 +350,5449,3.0,1026761002 +350,5502,4.0,1030653473 +351,94,4.0,975637114 +351,277,4.0,975636830 +351,524,5.0,975636796 +351,589,3.0,975636584 +351,858,5.0,975637170 +351,908,5.0,975636664 +351,912,5.0,975637211 +351,950,5.0,975637211 +351,951,4.0,975636664 +351,1035,5.0,975636734 +351,1129,3.0,975636902 +351,1171,4.0,975636963 +351,1193,4.0,975636402 +351,1207,5.0,975637170 +351,1249,3.0,975636664 +351,1250,4.0,975636664 +351,1259,5.0,975636584 +351,1269,5.0,975636734 +351,1286,5.0,975636664 +351,1288,2.0,975636402 +351,1580,5.0,975636902 +351,1673,4.0,975636863 +351,1968,5.0,975636435 +351,2291,4.0,975636664 +351,2668,5.0,975636402 +351,2791,5.0,975636796 +351,2792,3.0,975636584 +351,2948,5.0,975636796 +351,2956,4.0,975636483 +351,3481,3.0,975636664 +351,3512,4.0,975636734 +351,3624,4.0,975636830 +351,3793,5.0,975636988 +351,3957,4.0,975636902 +351,3959,4.0,975636796 +351,3963,5.0,975636963 +351,3984,4.0,975636830 +351,4003,3.0,975636963 +351,4007,3.0,975636963 +351,4008,3.0,975636734 +352,32,3.5,1420521602 +352,47,4.0,1420521236 +352,260,5.0,1420521218 +352,296,4.0,1420521220 +352,316,3.0,1420521390 +352,318,5.0,1420521083 +352,480,4.5,1420521355 +352,551,4.0,1420521964 +352,593,4.0,1420521113 +352,741,4.0,1420521686 +352,1080,4.0,1420521573 +352,1097,2.5,1420521315 +352,1193,3.5,1420521110 +352,1196,5.0,1420521199 +352,1197,4.5,1420521229 +352,1198,4.5,1420521187 +352,1213,2.5,1420521115 +352,1220,4.0,1420521325 +352,1259,4.0,1420521806 +352,1278,4.0,1420521605 +352,1356,4.5,1420521336 +352,1732,4.0,1420521628 +352,1907,4.0,1420521990 +352,2115,3.5,1420521328 +352,2329,3.0,1420521234 +352,2716,4.0,1420521311 +352,2918,3.5,1420521416 +352,2959,4.5,1420521184 +352,3000,4.5,1420521838 +352,3114,4.0,1420521403 +352,3671,4.0,1420521398 +352,3793,3.5,1420521518 +352,4016,4.0,1420522005 +352,4306,4.0,1420521869 +352,4886,3.5,1420521969 +352,5146,3.0,1420522012 +352,5618,5.0,1420521840 +352,5690,4.0,1420521855 +352,5971,4.5,1420521376 +352,6283,4.0,1420522122 +352,6350,4.0,1420521847 +352,6377,4.0,1420521966 +352,6857,3.0,1420521956 +352,7099,4.5,1420521839 +352,26662,3.5,1420521856 +352,26776,4.0,1420521853 +352,26903,4.5,1420521862 +352,27904,2.5,1420522045 +352,31658,4.0,1420521419 +352,32456,3.0,1420521962 +352,32587,3.0,1420521438 +352,34405,4.0,1420521690 +352,52885,3.5,1420521917 +352,58559,4.5,1420521128 +352,59315,4.0,1420521127 +352,60069,3.0,1420521135 +352,61240,3.5,1420521536 +352,62336,4.0,1420521690 +352,64614,4.0,1420521528 +352,65261,4.0,1420521850 +352,66934,4.0,1420521412 +352,67255,4.0,1420521748 +352,68157,4.0,1420521137 +352,71535,3.5,1420521612 +352,72998,3.5,1420521140 +352,79132,4.0,1420521131 +352,79274,4.0,1420521978 +352,83132,3.5,1420521926 +352,85780,3.0,1420522115 +352,91529,4.0,1420521425 +352,97913,4.0,1420521882 +352,98604,4.0,1420521986 +352,103659,3.5,1420522024 +352,104283,4.0,1420521984 +352,104419,4.5,1420522118 +352,106100,4.0,1420521818 +352,106920,2.5,1420521762 +352,108932,4.0,1420521558 +352,109374,3.0,1420521152 +352,111362,3.5,1420521161 +352,111759,3.5,1420521157 +352,112175,3.5,1420521872 +352,112852,4.5,1420521153 +352,115927,4.0,1420522234 +353,1,3.5,1112268707 +353,2,2.0,1114172641 +353,10,3.0,1112269534 +353,19,2.5,1114172667 +353,21,3.0,1114172187 +353,32,2.5,1112268781 +353,34,0.5,1112269498 +353,47,3.5,1137410807 +353,62,3.5,1114172352 +353,72,2.5,1136869961 +353,93,1.5,1143548997 +353,95,2.5,1112269639 +353,104,3.5,1137410803 +353,110,3.5,1112268696 +353,112,2.0,1111488891 +353,150,2.0,1112268690 +353,151,2.5,1111488897 +353,153,1.5,1112268795 +353,161,3.0,1112269579 +353,163,3.5,1137410796 +353,165,3.5,1137410799 +353,170,2.0,1121586797 +353,180,2.5,1162168524 +353,204,1.5,1142771606 +353,208,0.5,1112269592 +353,231,2.5,1157498718 +353,253,3.0,1111665498 +353,260,3.0,1137410813 +353,292,1.0,1112269562 +353,293,3.5,1140388874 +353,296,3.5,1137410781 +353,315,2.0,1111488937 +353,316,3.0,1112268804 +353,317,1.5,1114172679 +353,318,4.0,1112268693 +353,344,3.0,1112268790 +353,349,3.0,1157498632 +353,356,3.5,1112268672 +353,364,2.0,1112269493 +353,367,2.5,1112269536 +353,370,2.0,1111488924 +353,377,1.5,1112268785 +353,380,2.0,1112268700 +353,410,1.5,1162168908 +353,432,1.0,1111488865 +353,434,1.5,1137112928 +353,440,3.0,1140388959 +353,442,1.0,1114172673 +353,454,1.0,1112269583 +353,457,3.0,1112268684 +353,474,3.0,1114172422 +353,480,3.0,1112268680 +353,485,2.0,1115640584 +353,500,1.0,1162168825 +353,502,0.5,1111490504 +353,586,2.5,1157499041 +353,588,3.0,1112268776 +353,589,3.5,1137410787 +353,590,3.0,1157420797 +353,592,2.5,1127823463 +353,593,3.5,1140388882 +353,597,1.5,1112269514 +353,637,1.0,1218607737 +353,648,1.5,1112268792 +353,708,2.0,1114172662 +353,733,2.0,1112269508 +353,736,1.5,1112269483 +353,743,1.5,1121586846 +353,745,2.5,1137410881 +353,750,3.0,1113055194 +353,780,1.5,1112268704 +353,784,1.0,1111488859 +353,786,1.0,1114172646 +353,818,1.5,1143549055 +353,832,2.0,1111488884 +353,849,1.0,1112270191 +353,858,3.5,1208220638 +353,908,3.5,1137410851 +353,924,3.0,1113054752 +353,1036,4.0,1157420800 +353,1073,2.0,1112269586 +353,1079,2.5,1162168953 +353,1089,3.0,1136938728 +353,1090,3.5,1137410857 +353,1097,3.0,1112269570 +353,1101,2.0,1162168960 +353,1129,2.0,1112270195 +353,1136,3.5,1157498732 +353,1196,3.0,1137410877 +353,1197,3.5,1140388869 +353,1198,3.5,1111490656 +353,1200,3.5,1112270151 +353,1201,3.5,1111491858 +353,1208,2.5,1157420775 +353,1210,3.5,1137410870 +353,1214,3.0,1157420817 +353,1220,3.0,1157420794 +353,1222,3.0,1137410834 +353,1240,3.0,1162168846 +353,1250,3.0,1147819223 +353,1259,3.0,1140388886 +353,1261,3.0,1218607671 +353,1262,3.5,1113055180 +353,1263,1.5,1218607758 +353,1265,3.0,1114172289 +353,1270,3.0,1157420782 +353,1288,0.5,1218607772 +353,1291,3.0,1157420805 +353,1293,2.0,1147819209 +353,1298,3.5,1111489982 +353,1320,3.0,1112270157 +353,1367,1.5,1113054702 +353,1370,2.0,1112268858 +353,1377,2.0,1112268885 +353,1387,3.5,1113052996 +353,1388,1.5,1113053001 +353,1389,1.0,1113053002 +353,1391,2.0,1111666098 +353,1393,2.5,1157499049 +353,1408,3.5,1113055154 +353,1517,3.5,1113053607 +353,1527,3.5,1111490028 +353,1562,1.0,1112268878 +353,1580,1.0,1112269622 +353,1587,3.5,1113055007 +353,1610,3.5,1218607482 +353,1653,3.5,1157499173 +353,1676,2.5,1111667692 +353,1682,3.0,1157498754 +353,1690,2.0,1112270149 +353,1704,3.5,1137410838 +353,1721,1.5,1112268246 +353,1917,3.0,1157498692 +353,1918,2.0,1112269106 +353,1974,2.0,1113053072 +353,1975,1.5,1113053073 +353,1976,1.0,1113053076 +353,2000,3.5,1112269096 +353,2001,2.5,1112269101 +353,2002,2.5,1112269104 +353,2005,2.5,1142686776 +353,2011,3.0,1157499059 +353,2012,3.0,1157420785 +353,2018,1.0,1111490108 +353,2028,3.0,1140388876 +353,2054,1.0,1157499123 +353,2081,2.0,1113474473 +353,2115,3.0,1113395536 +353,2174,2.0,1162171547 +353,2194,4.0,1209425068 +353,2268,3.5,1112270985 +353,2278,3.5,1208220558 +353,2353,3.5,1157499186 +353,2355,3.0,1114172711 +353,2376,1.5,1143549311 +353,2401,3.0,1208220502 +353,2403,3.5,1112270308 +353,2404,1.5,1218607732 +353,2406,3.0,1157499169 +353,2460,1.0,1113474577 +353,2516,0.5,1127824651 +353,2533,2.0,1112270197 +353,2542,3.5,1137410770 +353,2571,3.5,1218608058 +353,2572,2.0,1111490641 +353,2618,3.0,1137410829 +353,2628,2.0,1111491401 +353,2662,2.0,1113055256 +353,2683,2.5,1113053609 +353,2699,3.5,1157499116 +353,2710,0.5,1111488828 +353,2716,3.0,1113473936 +353,2761,3.0,1137410842 +353,2762,3.5,1137410927 +353,2795,2.5,1142769576 +353,2797,3.0,1157498643 +353,2815,2.0,1127824843 +353,2826,3.0,1113054732 +353,2858,4.0,1208220752 +353,2916,2.0,1114172706 +353,2918,2.0,1162171550 +353,2944,3.0,1157420802 +353,2950,2.0,1111490244 +353,2959,4.0,1112270059 +353,2986,0.5,1218607725 +353,2987,3.0,1114172684 +353,3005,2.5,1112269270 +353,3020,3.5,1137410901 +353,3033,3.5,1113053125 +353,3039,3.5,1113473956 +353,3052,3.0,1208220563 +353,3081,2.0,1208220573 +353,3114,3.0,1113053769 +353,3147,3.0,1113052808 +353,3175,1.0,1157500855 +353,3178,3.5,1142686800 +353,3213,2.0,1127823461 +353,3253,3.0,1137410935 +353,3257,2.0,1111490254 +353,3264,3.0,1115641728 +353,3271,2.5,1137410914 +353,3275,3.5,1113054636 +353,3298,3.0,1208220635 +353,3300,2.5,1142770246 +353,3404,2.5,1112268243 +353,3448,3.0,1113055140 +353,3471,3.0,1157499085 +353,3510,3.0,1113395111 +353,3527,3.0,1137410921 +353,3535,4.0,1210658011 +353,3552,2.5,1113395539 +353,3555,1.5,1142770499 +353,3578,2.5,1147819172 +353,3624,2.5,1142770233 +353,3633,3.0,1113474467 +353,3682,3.0,1112268566 +353,3697,2.5,1111667324 +353,3701,1.0,1112270144 +353,3717,2.5,1142770540 +353,3745,3.0,1112268203 +353,3753,2.5,1142770391 +353,3785,2.0,1111667506 +353,3793,3.5,1111488845 +353,3836,2.5,1157420811 +353,3868,3.0,1121586807 +353,3869,2.5,1121586828 +353,3948,3.0,1157498658 +353,3977,1.0,1142770548 +353,3979,1.0,1218607744 +353,3991,1.0,1113054700 +353,3994,3.5,1157499078 +353,3996,3.5,1114172730 +353,4011,4.0,1142944347 +353,4019,3.5,1142688648 +353,4027,3.5,1157498637 +353,4034,1.5,1157499030 +353,4085,3.5,1112270064 +353,4105,3.0,1115640493 +353,4124,0.5,1113053004 +353,4143,1.5,1143548842 +353,4148,2.5,1113052924 +353,4159,2.0,1113054784 +353,4166,3.0,1137410924 +353,4223,4.0,1137410760 +353,4224,1.5,1143292388 +353,4238,3.0,1142770523 +353,4239,3.5,1113472746 +353,4262,3.5,1136938679 +353,4270,0.5,1142770557 +353,4306,3.5,1111488843 +353,4310,1.5,1112270009 +353,4344,2.5,1142770532 +353,4369,3.5,1137410903 +353,4370,1.5,1113054830 +353,4387,2.5,1142770632 +353,4388,2.0,1111667509 +353,4446,2.0,1144113312 +353,4489,2.5,1113054646 +353,4526,1.0,1112270160 +353,4563,1.0,1111489965 +353,4616,3.5,1125833054 +353,4623,3.5,1113054223 +353,4638,1.0,1142771658 +353,4701,1.5,1142770526 +353,4721,2.5,1140389006 +353,4735,1.5,1111666157 +353,4776,3.5,1113055024 +353,4816,3.5,1140388889 +353,4826,3.0,1137410897 +353,4855,3.5,1112268585 +353,4866,2.5,1142770408 +353,4878,4.0,1115642189 +353,4886,3.0,1157498680 +353,4895,2.5,1113054276 +353,4901,3.0,1142770167 +353,4958,2.0,1142770502 +353,4963,3.5,1137410910 +353,4973,3.0,1157498626 +353,4974,2.5,1114171563 +353,4993,2.0,1111488838 +353,5010,3.5,1113055129 +353,5040,2.5,1113055009 +353,5047,1.0,1113053356 +353,5049,3.0,1113395550 +353,5055,3.0,1113054467 +353,5064,3.5,1113052800 +353,5093,1.5,1115641675 +353,5103,3.5,1112270320 +353,5110,3.5,1137410929 +353,5152,3.0,1137410938 +353,5218,3.0,1137410907 +353,5219,2.5,1112526489 +353,5254,2.0,1142770414 +353,5255,1.5,1142688699 +353,5312,2.0,1121599105 +353,5316,3.5,1140388864 +353,5323,1.0,1113053042 +353,5349,3.5,1112270265 +353,5377,3.0,1157496139 +353,5378,2.5,1111491403 +353,5400,2.0,1142770530 +353,5418,3.5,1140388856 +353,5420,1.0,1112268305 +353,5445,2.0,1142770249 +353,5463,2.0,1142770632 +353,5500,3.0,1111666267 +353,5502,2.5,1157498727 +353,5507,2.5,1208220686 +353,5558,2.5,1142944360 +353,5564,1.0,1113054913 +353,5572,3.0,1113054325 +353,5574,2.5,1142770598 +353,5630,3.0,1113052909 +353,5669,3.5,1140388859 +353,5672,0.5,1115642258 +353,5678,2.0,1142770463 +353,5810,3.0,1113054840 +353,5815,1.0,1143292235 +353,5819,3.5,1111665493 +353,5833,3.0,1142770340 +353,5872,2.0,1113053542 +353,5874,2.5,1113053066 +353,5903,3.5,1137217265 +353,5938,0.5,1111489409 +353,5945,2.0,1113054879 +353,5952,3.0,1111490758 +353,5989,3.5,1157498700 +353,6040,2.0,1112526471 +353,6156,1.0,1142770555 +353,6188,3.0,1140388928 +353,6213,2.0,1142770595 +353,6283,2.5,1142770255 +353,6287,2.0,1113053387 +353,6323,3.0,1113473944 +353,6333,3.0,1112268983 +353,6365,2.0,1111667391 +353,6377,3.0,1115641196 +353,6378,3.0,1113052762 +353,6383,3.0,1111667006 +353,6502,3.5,1113054769 +353,6537,3.0,1140388945 +353,6539,3.5,1140388931 +353,6548,2.0,1142770542 +353,6593,1.5,1113053099 +353,6595,1.5,1142770601 +353,6615,2.0,1113053030 +353,6709,2.0,1142770566 +353,6754,3.0,1142770427 +353,6755,3.0,1127049084 +353,6806,3.0,1142770332 +353,6808,3.5,1113055147 +353,6863,3.5,1112270073 +353,6870,2.0,1157288550 +353,6874,3.5,1140388914 +353,6879,3.0,1233617660 +353,6880,1.5,1113474573 +353,6888,2.5,1111667510 +353,6893,3.5,1135034113 +353,6934,2.5,1111667390 +353,6936,3.5,1140388909 +353,6957,3.0,1115430991 +353,6979,3.5,1113055143 +353,6995,1.0,1111489222 +353,7000,2.5,1111489212 +353,7004,2.0,1111489205 +353,7005,0.5,1111489202 +353,7007,3.5,1111489197 +353,7090,2.5,1115640571 +353,7108,1.5,1111666015 +353,7143,3.5,1112270282 +353,7153,3.0,1111490658 +353,7163,2.0,1142770536 +353,7164,3.0,1142770447 +353,7254,3.0,1142686782 +353,7257,2.5,1142767066 +353,7293,3.0,1113054808 +353,7317,2.0,1113052586 +353,7325,3.5,1113053440 +353,7360,3.0,1142686775 +353,7373,2.5,1142770430 +353,7376,3.0,1140389472 +353,7438,3.5,1112268544 +353,7439,3.5,1140388933 +353,7445,4.0,1137410774 +353,7789,2.0,1113054722 +353,7842,1.0,1208220547 +353,7894,3.5,1113395803 +353,8010,3.0,1209425088 +353,8340,3.5,1125833503 +353,8360,3.0,1113053885 +353,8363,2.5,1113132670 +353,8371,2.0,1142770411 +353,8376,2.5,1157288501 +353,8387,0.5,1111666565 +353,8464,3.5,1140388939 +353,8493,3.0,1140388922 +353,8622,3.0,1208221719 +353,8636,2.5,1142770239 +353,8641,3.0,1157496146 +353,8644,2.5,1113053459 +353,8665,3.5,1113397165 +353,8666,1.0,1111490393 +353,8798,3.0,1140388906 +353,8810,1.5,1142770634 +353,8860,0.5,1111490032 +353,8861,2.5,1112526491 +353,8865,1.5,1142770441 +353,8874,3.5,1142770178 +353,8917,2.5,1140388941 +353,8957,2.5,1127824488 +353,8961,3.0,1113132650 +353,8972,2.0,1142770395 +353,8983,2.5,1142770344 +353,26555,1.0,1111489345 +353,26614,4.0,1233617459 +353,27611,3.5,1233617467 +353,27660,3.0,1157419761 +353,27831,2.5,1162168395 +353,27839,2.5,1127825002 +353,30707,3.5,1147819193 +353,30793,3.0,1140388901 +353,31162,2.0,1140388774 +353,31221,1.5,1140389542 +353,31420,2.0,1142770436 +353,31878,3.0,1137217397 +353,32019,3.5,1127049249 +353,32029,3.5,1127049290 +353,32587,3.5,1140388936 +353,32596,1.0,1142770545 +353,33004,3.0,1140388911 +353,33162,3.5,1142770262 +353,33437,3.5,1140388947 +353,33493,2.5,1121586428 +353,33495,1.5,1135034014 +353,33615,2.5,1157287565 +353,33679,3.5,1136938913 +353,33794,3.5,1127823464 +353,33834,2.5,1133262087 +353,34048,2.0,1121586417 +353,34162,3.5,1125833510 +353,34271,2.0,1145524603 +353,34319,2.5,1142770171 +353,34332,3.0,1137217413 +353,34334,2.0,1127824245 +353,34405,4.0,1142770161 +353,34523,1.0,1233617794 +353,34534,3.0,1142770403 +353,35957,3.0,1142770399 +353,36397,1.5,1136869909 +353,36519,1.5,1144119164 +353,36529,3.5,1162168454 +353,36708,3.5,1158099473 +353,37380,2.5,1143549554 +353,37386,1.0,1145524623 +353,37477,2.5,1143549546 +353,37731,3.5,1209425018 +353,38061,3.5,1137410764 +353,40278,3.0,1148731749 +353,40339,2.0,1162168411 +353,40723,2.0,1157288428 +353,40815,3.0,1135033726 +353,41566,3.0,1136756111 +353,42002,1.0,1147825749 +353,42011,1.5,1148731798 +353,42723,1.0,1157288528 +353,42738,2.5,1148731770 +353,43396,3.5,1162168544 +353,43904,2.5,1157288446 +353,43919,2.0,1157496085 +353,44004,2.5,1145524725 +353,44191,4.0,1157495888 +353,44195,3.5,1157287619 +353,44199,3.0,1162168424 +353,44665,3.5,1208220483 +353,44761,4.5,1208220694 +353,45081,2.5,1157496063 +353,45431,2.0,1157287533 +353,45499,3.5,1157496133 +353,45517,3.0,1157287487 +353,45722,3.0,1157420464 +353,45726,2.5,1157420523 +353,45732,0.5,1218607909 +353,46335,2.5,1157420517 +353,46530,3.5,1157420460 +353,46965,3.0,1208221659 +353,46970,4.0,1209425040 +353,47044,3.5,1157420469 +353,47099,2.5,1208220495 +353,47200,3.5,1162168380 +353,47640,2.0,1218607765 +353,47997,3.0,1218607933 +353,48304,3.0,1208220534 +353,48385,1.0,1218607978 +353,48516,4.0,1162168293 +353,49272,4.0,1208220491 +353,49530,4.0,1208220486 +353,50923,3.0,1210658026 +353,51255,3.5,1209425024 +353,51662,4.5,1208220521 +353,53129,3.0,1233617806 +353,53550,3.5,1210658246 +353,53894,2.5,1208221743 +353,53956,3.5,1218607464 +353,53972,3.5,1233617651 +353,54286,4.0,1208220476 +353,54503,3.5,1208220517 +353,54736,3.0,1209424939 +353,54995,3.0,1233617646 +353,54997,3.5,1218607444 +353,55765,3.0,1233617479 +353,56003,1.5,1210658040 +353,56174,2.5,1210631397 +353,56251,2.5,1218607426 +353,56336,1.0,1233617525 +353,58559,4.0,1218607414 +353,58998,3.5,1233617640 +353,59315,4.5,1210631370 +353,59369,4.0,1233617371 +353,59784,3.5,1233617801 +353,60753,3.5,1233617716 +353,62849,3.5,1233617765 +354,1,5.0,846062607 +354,11,5.0,846062456 +354,44,4.0,846062533 +354,112,5.0,846062521 +354,151,5.0,846062587 +354,153,3.0,846062277 +354,165,2.0,846062521 +354,173,4.0,846062733 +354,232,5.0,846062587 +354,235,5.0,846062378 +354,253,3.0,846062378 +354,265,5.0,846062521 +354,288,3.0,846062342 +354,316,3.0,846062294 +354,318,5.0,846062317 +354,329,3.0,846062317 +354,344,2.0,846062709 +354,348,5.0,846062722 +354,349,4.0,846062587 +354,353,5.0,846062403 +354,356,1.0,846062317 +354,357,4.0,846062627 +354,364,3.0,846062342 +354,370,3.0,846062598 +354,377,4.0,846062342 +354,380,4.0,846062255 +354,410,5.0,846062353 +354,440,5.0,846062450 +354,442,4.0,846062490 +354,457,4.0,846062294 +354,466,4.0,846062542 +354,471,5.0,846062674 +354,475,5.0,846062433 +354,477,5.0,846062554 +354,480,3.0,846062317 +354,497,5.0,846062533 +354,515,4.0,846062521 +354,520,3.0,846062637 +354,527,5.0,846062403 +354,551,4.0,846062476 +354,552,3.0,846062674 +354,587,1.0,846062433 +354,588,2.0,846062277 +354,589,5.0,846062331 +354,590,3.0,846062255 +354,592,4.0,846062255 +354,593,5.0,846062277 +354,594,3.0,846062554 +354,595,4.0,846062294 +354,596,4.0,846062627 +354,597,3.0,846062570 +354,1073,5.0,846062490 +355,1,3.0,1130104529 +355,2,3.0,1130105802 +355,6,4.0,1130105736 +355,10,3.5,1130105680 +355,19,3.0,1130104070 +355,32,4.0,1130104575 +355,47,5.0,1130104016 +355,50,3.5,1130104665 +355,70,3.0,1130107009 +355,95,3.0,1130106030 +355,110,4.0,1130103927 +355,150,3.0,1130104834 +355,153,3.0,1130105632 +355,165,3.0,1130105625 +355,168,3.0,1130106026 +355,173,1.5,1130103496 +355,185,2.5,1130105708 +355,208,3.0,1130105711 +355,231,3.5,1130105668 +355,253,4.5,1130106831 +355,260,5.0,1130104442 +355,292,3.5,1130105685 +355,293,4.5,1130105217 +355,296,4.5,1130104805 +355,316,4.0,1130105639 +355,318,5.0,1130104447 +355,344,3.0,1130105620 +355,356,5.0,1130104000 +355,364,4.0,1130103962 +355,367,3.0,1130105665 +355,377,4.0,1130103635 +355,380,3.5,1130105599 +355,434,3.5,1130105691 +355,442,4.0,1130105830 +355,454,4.0,1130105694 +355,457,3.0,1130104827 +355,480,3.5,1130104814 +355,500,2.0,1130105672 +355,508,4.0,1130105808 +355,527,4.0,1130104539 +355,541,4.5,1130105246 +355,551,4.0,1130105966 +355,588,3.0,1130105608 +355,589,4.0,1130104451 +355,590,4.0,1130104821 +355,592,3.5,1130103875 +355,593,4.5,1130104596 +355,597,2.5,1130105660 +355,648,3.5,1130105617 +355,733,3.5,1130105654 +355,736,2.5,1209553969 +355,750,3.5,1130105160 +355,778,4.5,1130105837 +355,780,3.0,1130104075 +355,858,5.0,1130104975 +355,902,3.5,1130104136 +355,904,4.5,1207514270 +355,919,4.5,1130105780 +355,924,5.0,1130105168 +355,968,4.5,1130106843 +355,1020,3.0,1130105096 +355,1036,4.0,1130103902 +355,1073,3.5,1130105701 +355,1079,4.0,1130105812 +355,1080,4.0,1130103444 +355,1089,4.5,1130105821 +355,1090,4.0,1130104400 +355,1092,4.0,1130105868 +355,1097,4.0,1130106682 +355,1101,2.0,1130103452 +355,1127,4.0,1130103925 +355,1136,5.0,1130104631 +355,1193,4.5,1130105742 +355,1196,5.0,1130104964 +355,1198,5.0,1130104436 +355,1200,5.0,1130103782 +355,1206,5.0,1130105166 +355,1208,3.5,1130105303 +355,1210,4.5,1130104607 +355,1214,5.0,1130103639 +355,1215,3.0,1130106796 +355,1220,4.0,1130105573 +355,1221,5.0,1130105233 +355,1222,5.0,1130105164 +355,1240,4.0,1130104485 +355,1253,4.5,1130106676 +355,1258,5.0,1130105151 +355,1259,4.0,1130104639 +355,1261,3.0,1130106805 +355,1265,4.0,1130106735 +355,1270,4.0,1130103886 +355,1274,4.0,1130103670 +355,1275,4.0,1130106021 +355,1291,5.0,1130103891 +355,1320,3.5,1130105046 +355,1333,4.5,1130106794 +355,1342,3.5,1130107164 +355,1347,4.0,1130106862 +355,1356,3.5,1130105765 +355,1380,2.5,1130103515 +355,1387,4.0,1130105282 +355,1393,3.0,1130105772 +355,1438,3.0,1130106177 +355,1517,4.0,1130105844 +355,1527,4.5,1130105784 +355,1580,4.0,1130105719 +355,1584,4.5,1130105824 +355,1625,4.5,1130103958 +355,1645,4.0,1130106915 +355,1676,4.0,1130105864 +355,1721,2.0,1130105724 +355,1732,4.0,1130106000 +355,1892,3.5,1130106181 +355,1909,3.0,1130104080 +355,1917,1.5,1130103428 +355,1921,4.0,1130106692 +355,1961,4.0,1130105769 +355,1994,3.0,1130106808 +355,1997,4.0,1130106770 +355,2012,3.5,1130103461 +355,2028,4.5,1130104473 +355,2115,4.5,1130103475 +355,2138,3.0,1130103839 +355,2167,4.0,1130103631 +355,2174,3.5,1130103431 +355,2232,4.0,1130103853 +355,2288,4.0,1130106672 +355,2329,4.0,1130104445 +355,2353,2.5,1130104744 +355,2376,4.0,1130106159 +355,2428,2.0,1130106139 +355,2455,4.5,1130106868 +355,2459,4.0,1130107057 +355,2467,4.5,1209553879 +355,2496,3.5,1130105002 +355,2529,4.0,1130103828 +355,2550,4.5,1130106874 +355,2571,5.0,1130104439 +355,2628,4.0,1130105731 +355,2683,4.0,1130105797 +355,2692,4.5,1130106536 +355,2699,2.0,1130103540 +355,2700,4.0,1130103503 +355,2706,3.5,1130105977 +355,2710,4.5,1130103438 +355,2712,4.0,1130105175 +355,2716,4.0,1130105750 +355,2735,2.5,1130106144 +355,2746,3.5,1130107045 +355,2762,4.5,1130104453 +355,2808,2.0,1130106149 +355,2858,5.0,1130105648 +355,2916,4.5,1130105846 +355,2944,3.0,1130106479 +355,2948,3.5,1130105569 +355,2959,5.0,1130104483 +355,2997,4.0,1130105760 +355,3020,3.5,1130106117 +355,3052,3.5,1130104681 +355,3062,3.5,1209553890 +355,3081,4.0,1130106815 +355,3114,3.0,1138732097 +355,3147,5.0,1130103946 +355,3264,1.0,1130107167 +355,3300,4.0,1138731882 +355,3355,3.0,1130105066 +355,3386,3.5,1130103773 +355,3409,3.5,1130106109 +355,3448,3.5,1130103934 +355,3461,4.0,1130106850 +355,3471,4.0,1130105293 +355,3499,4.0,1130106781 +355,3527,4.0,1130103909 +355,3535,4.0,1130106943 +355,3578,4.0,1130103980 +355,3593,1.5,1130106083 +355,3686,3.5,1130106079 +355,3697,3.0,1130106073 +355,3745,2.5,1130106089 +355,3793,3.0,1130103629 +355,3869,4.0,1130105090 +355,3897,3.0,1130103492 +355,3917,4.0,1130106950 +355,3949,4.5,1130106600 +355,3959,4.0,1130106094 +355,3994,3.0,1138731854 +355,3996,2.0,1130106729 +355,4011,5.0,1231028613 +355,4022,3.0,1209553994 +355,4027,3.5,1130105314 +355,4085,2.5,1130104740 +355,4102,4.0,1130103951 +355,4105,3.5,1130106773 +355,4148,3.5,1130107074 +355,4223,3.5,1130105297 +355,4226,4.0,1130104968 +355,4262,4.0,1130106493 +355,4306,4.0,1130104635 +355,4571,4.0,1130104148 +355,4641,2.0,1130104210 +355,4643,2.5,1138731934 +355,4720,2.0,1130103817 +355,4878,4.0,1130104567 +355,4886,4.0,1130104502 +355,4896,2.5,1130107283 +355,4963,3.5,1130104516 +355,4973,4.5,1130105240 +355,4993,4.5,1130103790 +355,4995,3.5,1130105997 +355,5065,3.5,1130105079 +355,5127,3.0,1130105012 +355,5219,3.5,1130107108 +355,5254,3.5,1130107020 +355,5349,3.5,1130103954 +355,5378,4.0,1138731888 +355,5418,4.0,1130104513 +355,5445,3.5,1130104049 +355,5459,2.0,1138731938 +355,5463,2.5,1138731928 +355,5502,3.5,1130103642 +355,5618,4.5,1130106507 +355,5630,3.0,1130104726 +355,5663,3.0,1130107006 +355,5669,4.0,1209554045 +355,5679,3.0,1130103777 +355,5816,3.0,1130107278 +355,5833,3.0,1130106947 +355,5952,5.0,1130103479 +355,5989,4.0,1130106495 +355,6016,1.0,1207512737 +355,6242,4.0,1130106778 +355,6250,2.5,1138731965 +355,6323,2.0,1138731989 +355,6333,4.0,1130103973 +355,6365,3.0,1138731925 +355,6377,4.0,1130104489 +355,6502,3.5,1130104697 +355,6537,3.0,1138731891 +355,6539,4.0,1130104470 +355,6541,1.5,1138731945 +355,6707,2.0,1130105019 +355,6711,4.5,1209554006 +355,6731,3.5,1130106882 +355,6754,3.0,1130107034 +355,6874,2.0,1130104536 +355,6934,3.0,1138731907 +355,6947,3.5,1130103651 +355,7000,3.0,1130105028 +355,7022,3.5,1130106792 +355,7045,3.5,1138732117 +355,7046,3.5,1130106970 +355,7147,4.0,1130104569 +355,7153,5.0,1130103822 +355,7347,3.5,1130107121 +355,7360,3.5,1130104621 +355,7361,4.5,1130106490 +355,7373,1.5,1130103702 +355,7387,4.5,1130103690 +355,7438,1.0,1130104522 +355,7454,2.0,1130105024 +355,7482,3.0,1130104547 +355,7586,4.0,1130105859 +355,7980,3.0,1209553867 +355,8132,4.0,1209553898 +355,8225,4.0,1130106996 +355,8360,4.5,1130104561 +355,8361,1.0,1138731916 +355,8368,3.0,1130107295 +355,8369,3.0,1130107125 +355,8371,1.0,1138731899 +355,8464,3.5,1130106587 +355,8493,3.0,1130103930 +355,8636,3.0,1130104735 +355,8665,3.5,1209553981 +355,8783,2.5,1130107001 +355,8810,3.0,1138731954 +355,8874,4.0,1130106035 +355,8961,4.5,1130104467 +355,8985,3.0,1130107118 +355,31658,4.0,1209553772 +355,31696,3.0,1130106932 +355,32587,4.5,1130104601 +355,32743,3.5,1209553987 +355,33004,3.0,1138731859 +355,33493,4.0,1130103937 +355,33794,3.5,1130104430 +355,33834,3.0,1138732002 +355,34048,4.0,1138731878 +355,34319,3.0,1138731875 +355,34405,3.0,1138731794 +355,36529,4.0,1136478292 +355,37380,2.0,1138731973 +355,40815,3.5,1138732086 +355,44191,3.5,1209553902 +355,44195,4.0,1209553841 +355,45722,2.5,1154637855 +355,46578,4.5,1207513028 +355,48516,5.0,1231028583 +355,49272,4.0,1209553870 +355,51662,3.5,1207512963 +355,54272,4.0,1209554008 +355,54286,4.0,1209553784 +355,55290,4.0,1207512922 +355,55820,4.0,1207512760 +355,56782,4.0,1207512773 +355,58559,5.0,1231028576 +355,59315,4.5,1231028602 +355,60069,4.0,1231028598 +356,144,3.0,1168393789 +356,207,3.0,1168393740 +356,338,2.0,1168393796 +356,361,4.5,1168393759 +356,382,2.5,1168393776 +356,799,3.5,1168393731 +356,994,3.5,1168393727 +356,1222,2.0,1204729534 +356,2145,4.0,1168393706 +356,2231,5.0,1168393767 +356,2360,0.5,1204729502 +356,2501,5.0,1168393694 +356,2581,3.5,1168393688 +356,2688,2.5,1168393754 +356,2707,3.0,1168393665 +356,2722,3.5,1168393671 +356,3354,5.0,1168393763 +356,8133,1.5,1204729566 +356,31410,1.5,1204729529 +356,44555,0.5,1204729492 +356,55444,0.5,1204729507 +357,1,5.0,832768614 +357,19,4.0,832768689 +357,32,5.0,832768675 +357,48,4.0,832768792 +357,58,5.0,832768932 +357,141,3.0,832768749 +357,158,3.0,832768749 +357,161,4.0,832768614 +357,203,4.0,832768899 +357,223,4.0,832768792 +357,231,4.0,832768596 +357,249,5.0,832769004 +357,253,5.0,832768626 +357,265,5.0,832768729 +357,272,4.0,832768808 +357,277,3.0,832768831 +357,329,3.0,832768597 +357,342,5.0,832768914 +357,344,4.0,832768573 +357,364,5.0,832768831 +357,410,3.0,832768651 +357,432,3.0,832768700 +357,454,4.0,832768870 +357,551,5.0,832769003 +357,581,5.0,832769126 +357,588,5.0,832768573 +357,592,4.0,832768402 +357,595,5.0,832768597 +357,720,5.0,832769127 +357,745,5.0,832769127 +358,1,5.0,957480017 +358,3,1.0,957479796 +358,5,2.0,957795334 +358,6,3.0,957481884 +358,7,4.0,957479451 +358,11,3.0,957479332 +358,12,1.0,957795321 +358,17,5.0,957479132 +358,19,1.0,957795512 +358,21,4.0,957480201 +358,32,3.0,957535632 +358,34,5.0,957535406 +358,39,5.0,957479350 +358,46,1.0,957479762 +358,47,3.0,957534524 +358,48,3.0,957479812 +358,50,5.0,957534412 +358,52,4.0,957480336 +358,58,5.0,957479201 +358,64,1.0,957479883 +358,65,1.0,957795547 +358,70,1.0,957534713 +358,81,1.0,957534758 +358,102,1.0,957795493 +358,104,1.0,957480355 +358,110,1.0,957481791 +358,111,5.0,957535373 +358,116,5.0,957481511 +358,140,3.0,957479575 +358,141,3.0,957794739 +358,144,4.0,957480683 +358,153,2.0,957534758 +358,157,1.0,957795183 +358,215,5.0,957479332 +358,223,5.0,957480418 +358,224,4.0,957479624 +358,231,1.0,957795134 +358,236,4.0,957479451 +358,237,3.0,957479703 +358,246,5.0,957481491 +358,252,3.0,957479743 +358,260,5.0,957534387 +358,276,2.0,957479837 +358,289,3.0,957479556 +358,296,5.0,957534455 +358,317,2.0,957794949 +358,318,5.0,957535132 +358,337,3.0,957535632 +358,339,3.0,957479382 +358,344,1.0,957795265 +358,348,5.0,957794540 +358,355,2.0,957795423 +358,356,5.0,957794665 +358,357,5.0,957479306 +358,360,2.0,957795531 +358,361,3.0,957479518 +358,362,3.0,957479518 +358,364,4.0,957534968 +358,367,3.0,957478845 +358,368,2.0,957794852 +358,370,1.0,957795295 +358,371,4.0,957480788 +358,372,4.0,957481045 +358,374,1.0,957795493 +358,377,3.0,957479382 +358,378,2.0,957479653 +358,380,2.0,957479575 +358,413,2.0,957795210 +358,414,2.0,957481180 +358,419,1.0,957795512 +358,420,2.0,957795351 +358,429,1.0,957795408 +358,432,1.0,957795321 +358,434,2.0,957534758 +358,435,2.0,957481136 +358,440,4.0,957480471 +358,441,4.0,957480147 +358,450,3.0,957480718 +358,457,2.0,957481809 +358,466,1.0,957481180 +358,470,1.0,957795464 +358,471,5.0,957479605 +358,474,5.0,957481884 +358,485,2.0,957795073 +358,492,4.0,957480666 +358,493,4.0,957481745 +358,500,4.0,957794812 +358,505,1.0,957795464 +358,509,4.0,957479332 +358,514,4.0,957480252 +358,516,2.0,957481098 +358,518,1.0,957481256 +358,520,2.0,957795408 +358,527,5.0,957535243 +358,529,5.0,957535632 +358,539,3.0,957481136 +358,543,2.0,957794883 +358,551,2.0,957480788 +358,552,1.0,957795073 +358,556,4.0,957481511 +358,569,2.0,957480621 +358,585,4.0,957481136 +358,586,3.0,957481235 +358,587,4.0,957479393 +358,588,5.0,957480336 +358,589,5.0,957481835 +358,592,4.0,957534524 +358,593,5.0,957535293 +358,594,4.0,957534930 +358,595,5.0,957481358 +358,596,3.0,957534907 +358,597,4.0,957479451 +358,605,2.0,957479488 +358,608,5.0,957534412 +358,663,1.0,957794774 +358,673,2.0,957535032 +358,707,2.0,957534692 +358,708,3.0,957479418 +358,710,1.0,957795351 +358,719,1.0,957795210 +358,725,1.0,957795164 +358,762,1.0,957534713 +358,765,1.0,957795373 +358,778,4.0,957535880 +358,783,3.0,957481379 +358,784,1.0,957795164 +358,785,3.0,957480734 +358,788,4.0,957481199 +358,802,4.0,957479469 +358,804,2.0,957479796 +358,829,1.0,957481419 +358,838,2.0,957480490 +358,852,1.0,957480718 +358,858,5.0,957481665 +358,869,3.0,957534648 +358,898,5.0,957479102 +358,899,5.0,957481300 +358,900,5.0,957479179 +358,902,5.0,957479230 +358,905,5.0,957479957 +358,907,4.0,957479605 +358,908,5.0,957535132 +358,909,4.0,957480107 +358,910,5.0,957479938 +358,911,4.0,957480336 +358,912,5.0,957535155 +358,913,5.0,957481581 +358,914,3.0,957481300 +358,915,3.0,957479306 +358,919,5.0,957481300 +358,920,3.0,957479132 +358,921,5.0,957480121 +358,922,5.0,957481564 +358,923,5.0,957535115 +358,926,5.0,957535334 +358,928,4.0,957479102 +358,933,4.0,957479230 +358,934,4.0,957480147 +358,942,4.0,957534455 +358,945,4.0,957794487 +358,946,4.0,957480017 +358,951,5.0,957479973 +358,952,4.0,957794565 +358,953,5.0,957535347 +358,954,5.0,957535593 +358,969,4.0,957479080 +358,1007,3.0,957795017 +358,1010,3.0,957481235 +358,1016,3.0,957794929 +358,1022,4.0,957481334 +358,1023,5.0,957534930 +358,1028,4.0,957480496 +358,1030,3.0,957535018 +358,1031,3.0,957481379 +358,1035,4.0,957481334 +358,1042,4.0,957480621 +358,1057,4.0,957479469 +358,1059,1.0,957479488 +358,1060,5.0,957480182 +358,1064,4.0,957795094 +358,1073,4.0,957480312 +358,1077,5.0,957480047 +358,1078,4.0,957480336 +358,1079,4.0,957480201 +358,1081,4.0,957480589 +358,1082,4.0,957535456 +358,1084,4.0,957534455 +358,1088,3.0,957481379 +358,1089,3.0,957534455 +358,1091,1.0,957795242 +358,1093,1.0,957481400 +358,1094,5.0,957479132 +358,1100,1.0,957479868 +358,1104,5.0,957535293 +358,1125,3.0,957478808 +358,1129,3.0,957481855 +358,1135,3.0,957480666 +358,1136,4.0,957480017 +358,1147,5.0,957481524 +358,1167,1.0,957795493 +358,1171,3.0,957480381 +358,1172,5.0,957480107 +358,1179,4.0,957481598 +358,1187,3.0,957535632 +358,1189,4.0,957481495 +358,1193,5.0,957478845 +358,1196,5.0,957481722 +358,1197,5.0,957479160 +358,1198,5.0,957481665 +358,1201,3.0,957481809 +358,1203,5.0,957535347 +358,1207,5.0,957535191 +358,1210,5.0,957481884 +358,1212,5.0,957795691 +358,1213,5.0,957534432 +358,1220,5.0,957480240 +358,1221,5.0,957481665 +358,1224,5.0,957535429 +358,1225,5.0,957535155 +358,1227,3.0,957534524 +358,1228,5.0,957535406 +358,1230,5.0,957479103 +358,1234,5.0,957480030 +358,1242,5.0,957481769 +358,1244,5.0,957479201 +358,1247,5.0,957479080 +358,1250,5.0,957535293 +358,1256,4.0,957794456 +358,1257,2.0,957480541 +358,1259,4.0,957480090 +358,1265,5.0,957479179 +358,1266,5.0,957481628 +358,1267,5.0,957481564 +358,1269,4.0,957794456 +358,1270,4.0,957480090 +358,1272,5.0,957535373 +358,1276,5.0,957479957 +358,1278,5.0,957480017 +358,1279,4.0,957480418 +358,1281,5.0,957480090 +358,1282,4.0,957481317 +358,1285,3.0,957480066 +358,1286,2.0,957479703 +358,1287,4.0,957481884 +358,1288,5.0,957480047 +358,1291,3.0,957481769 +358,1297,2.0,957480355 +358,1304,5.0,957481722 +358,1307,5.0,957479281 +358,1339,1.0,957479680 +358,1344,3.0,957481598 +358,1352,2.0,957534583 +358,1353,1.0,957479762 +358,1357,4.0,957479382 +358,1358,5.0,957535301 +358,1359,2.0,957795210 +358,1376,3.0,957481769 +358,1377,2.0,957481213 +358,1378,1.0,957794929 +358,1379,1.0,957795017 +358,1380,5.0,957479624 +358,1381,3.0,957479896 +358,1387,3.0,957481745 +358,1391,1.0,957481098 +358,1393,4.0,957479281 +358,1395,4.0,957480240 +358,1396,3.0,957534487 +358,1409,3.0,957480804 +358,1414,5.0,957481045 +358,1416,3.0,957481419 +358,1441,3.0,957479605 +358,1449,4.0,957794594 +358,1453,1.0,957795464 +358,1457,2.0,957479653 +358,1461,1.0,957795321 +358,1466,4.0,957534455 +358,1479,1.0,957479703 +358,1485,4.0,957480666 +358,1487,4.0,957481419 +358,1500,4.0,957480223 +358,1513,4.0,957481180 +358,1517,4.0,957480381 +358,1526,1.0,957795321 +358,1541,2.0,957479704 +358,1556,1.0,957479896 +358,1562,1.0,957534859 +358,1566,4.0,957481379 +358,1569,4.0,957479518 +358,1580,3.0,957481809 +358,1581,1.0,957795242 +358,1589,3.0,957534502 +358,1597,3.0,957479534 +358,1602,1.0,957795512 +358,1610,3.0,957481855 +358,1614,4.0,957480770 +358,1617,4.0,957481564 +358,1620,3.0,957534583 +358,1627,1.0,957534758 +358,1629,1.0,957479728 +358,1641,4.0,957480490 +358,1642,2.0,957795408 +358,1645,4.0,957534583 +358,1646,1.0,957481045 +358,1647,1.0,957534859 +358,1663,4.0,957480418 +358,1674,4.0,957479160 +358,1688,4.0,957481358 +358,1689,1.0,957481045 +358,1694,5.0,957535880 +358,1701,4.0,957480287 +358,1707,1.0,957795531 +358,1721,2.0,957479332 +358,1729,4.0,957534487 +358,1732,4.0,957534487 +358,1747,4.0,957480223 +358,1772,1.0,957795493 +358,1777,5.0,957479451 +358,1784,4.0,957478845 +358,1801,1.0,957479556 +358,1821,2.0,957479653 +358,1835,2.0,957479680 +358,1837,1.0,957795321 +358,1839,1.0,957795593 +358,1855,1.0,957795134 +358,1863,1.0,957795493 +358,1883,4.0,957794689 +358,1888,2.0,957481235 +358,1894,3.0,957479728 +358,1911,4.0,957481180 +358,1912,4.0,957481791 +358,1918,2.0,957534692 +358,1934,5.0,957480398 +358,1938,5.0,957535373 +358,1939,5.0,957535456 +358,1940,5.0,957535586 +358,1942,5.0,957535406 +358,1944,5.0,957479080 +358,1945,5.0,957534432 +358,1946,4.0,957479179 +358,1947,4.0,957479306 +358,1950,5.0,957535293 +358,1952,5.0,957535429 +358,1953,3.0,957481745 +358,1954,5.0,957481835 +358,1958,4.0,957794665 +358,1959,2.0,957479253 +358,1963,5.0,957794594 +358,1966,3.0,957794540 +358,1968,4.0,957478808 +358,2000,4.0,957481809 +358,2001,3.0,957480683 +358,2002,2.0,957534692 +358,2003,2.0,957480734 +358,2004,1.0,957794990 +358,2011,3.0,957480572 +358,2012,2.0,957794883 +358,2014,3.0,957481098 +358,2015,3.0,957794739 +358,2018,4.0,957534930 +358,2020,4.0,957479160 +358,2023,1.0,957534648 +358,2027,1.0,957534758 +358,2028,4.0,957481722 +358,2044,2.0,957795210 +358,2053,1.0,957795210 +358,2054,3.0,957481256 +358,2060,1.0,957478845 +358,2064,5.0,957480090 +358,2065,5.0,957479230 +358,2078,3.0,957534907 +358,2080,4.0,957479332 +358,2081,5.0,957480165 +358,2082,1.0,957795164 +358,2085,3.0,957534968 +358,2092,3.0,957481450 +358,2095,3.0,957794949 +358,2096,4.0,957534930 +358,2098,1.0,957795094 +358,2099,4.0,957481317 +358,2100,4.0,957479361 +358,2108,3.0,957480270 +358,2109,3.0,957480449 +358,2110,3.0,957534558 +358,2111,2.0,957480704 +358,2112,2.0,957534487 +358,2124,2.0,957480666 +358,2125,4.0,957479230 +358,2126,3.0,957534842 +358,2130,5.0,957479160 +358,2133,1.0,957480561 +358,2134,2.0,957794837 +358,2135,4.0,957481400 +358,2136,3.0,957480704 +358,2137,4.0,957534907 +358,2141,3.0,957535018 +358,2144,4.0,957480165 +358,2145,3.0,957480770 +358,2146,2.0,957479743 +358,2150,3.0,957794620 +358,2174,1.0,957480182 +358,2194,4.0,957481835 +358,2231,4.0,957534502 +358,2241,2.0,957795034 +358,2243,5.0,957480121 +358,2245,2.0,957480621 +358,2247,4.0,957480639 +358,2248,5.0,957479132 +358,2249,3.0,957794852 +358,2252,4.0,957480804 +358,2253,1.0,957795276 +358,2255,1.0,957794949 +358,2259,2.0,957479864 +358,2261,2.0,957794812 +358,2262,2.0,957479488 +358,2265,2.0,957795593 +358,2266,2.0,957479762 +358,2268,3.0,957534524 +358,2278,1.0,957534648 +358,2286,1.0,957795034 +358,2289,5.0,957479996 +358,2290,3.0,957480589 +358,2291,3.0,957479201 +358,2297,1.0,957479556 +358,2300,5.0,957481300 +358,2301,3.0,957480381 +358,2302,4.0,957480270 +358,2306,2.0,957478845 +358,2316,1.0,957479762 +358,2321,5.0,957480433 +358,2324,5.0,957480090 +358,2335,2.0,957795295 +358,2352,2.0,957480270 +358,2355,4.0,957480471 +358,2356,4.0,957481045 +358,2359,5.0,957794507 +358,2369,3.0,957481045 +358,2371,4.0,957794701 +358,2372,1.0,957795242 +358,2374,3.0,957795258 +358,2375,1.0,957481180 +358,2378,1.0,957794910 +358,2379,1.0,957795442 +358,2380,1.0,957795563 +358,2381,1.0,957795531 +358,2382,1.0,957795593 +358,2383,1.0,957795577 +358,2384,4.0,957480336 +358,2385,2.0,957480770 +358,2389,1.0,957534842 +358,2392,1.0,957795464 +358,2394,4.0,957481400 +358,2395,5.0,957794540 +358,2396,5.0,957479268 +358,2398,4.0,957535880 +358,2405,4.0,957479575 +358,2406,4.0,957480490 +358,2407,4.0,957480639 +358,2413,2.0,957795073 +358,2416,3.0,957481098 +358,2418,4.0,957795073 +358,2423,3.0,957794722 +358,2424,3.0,957480683 +358,2431,1.0,957795034 +358,2447,1.0,957480589 +358,2463,4.0,957480471 +358,2468,1.0,957479728 +358,2469,1.0,957479430 +358,2470,4.0,957480666 +358,2471,2.0,957795423 +358,2472,3.0,957480513 +358,2473,1.0,957795356 +358,2478,1.0,957795134 +358,2497,1.0,957479812 +358,2498,1.0,957795210 +358,2506,1.0,957479575 +358,2518,4.0,957480398 +358,2529,4.0,957481855 +358,2539,4.0,957481136 +358,2555,1.0,957795563 +358,2558,2.0,957479796 +358,2561,3.0,957534758 +358,2567,3.0,957794837 +358,2571,5.0,957481769 +358,2581,3.0,957480704 +358,2605,2.0,957534842 +358,2607,3.0,957535632 +358,2616,3.0,957534713 +358,2628,3.0,957478953 +358,2657,1.0,957480182 +358,2671,5.0,957479350 +358,2683,5.0,957480621 +358,2690,4.0,957794565 +358,2699,1.0,957794970 +358,2716,3.0,957794487 +358,2717,1.0,957795223 +358,2724,2.0,957479006 +358,2728,4.0,957478845 +358,2735,2.0,957795408 +358,2736,4.0,957481136 +358,2738,2.0,957480704 +358,2746,3.0,957480639 +358,2747,2.0,957480312 +358,2750,5.0,957480287 +358,2762,5.0,957478931 +358,2770,4.0,957794636 +358,2779,5.0,957480381 +358,2791,4.0,957794487 +358,2792,1.0,957795094 +358,2794,1.0,957795183 +358,2795,2.0,957480147 +358,2796,1.0,957481256 +358,2797,5.0,957480107 +358,2804,4.0,957535191 +358,2805,2.0,957479704 +358,2822,2.0,957479704 +358,2829,5.0,957478988 +358,2858,4.0,957479938 +358,2861,2.0,957478971 +358,2863,2.0,957794507 +358,2872,2.0,957481855 +358,2875,3.0,957479653 +358,2915,3.0,957480165 +358,2918,4.0,957480165 +358,2941,2.0,957479418 +358,2942,3.0,957479837 +358,2944,4.0,957481745 +358,2947,5.0,957481745 +358,2949,4.0,957481769 +358,2950,1.0,957479837 +358,2961,1.0,957479006 +358,2971,3.0,957481300 +358,2973,5.0,957480017 +358,2987,4.0,957481598 +358,2991,3.0,957481835 +358,3006,5.0,957478931 +358,3019,4.0,957534432 +358,3033,2.0,957795164 +358,3035,4.0,957480066 +358,3039,5.0,957480287 +358,3040,3.0,957480561 +358,3042,1.0,957795547 +358,3043,1.0,957794990 +358,3060,2.0,957480312 +358,3062,3.0,957535632 +358,3072,4.0,957480066 +358,3087,3.0,957794789 +358,3104,4.0,957480312 +358,3108,3.0,957535429 +358,3113,1.0,957478808 +358,3114,5.0,957479996 +358,3142,3.0,957481400 +358,3146,1.0,957795351 +358,3147,3.0,957535429 +358,3148,4.0,957535373 +358,3159,4.0,957534930 +358,3174,4.0,957480449 +358,3178,2.0,957534859 +358,3206,1.0,957479837 +358,3210,4.0,957794565 +358,3235,1.0,957481199 +358,3244,4.0,957479418 +358,3247,3.0,957534713 +358,3248,2.0,957795493 +358,3253,3.0,957480147 +358,3254,2.0,957795134 +358,3255,5.0,957480381 +358,3257,2.0,957479796 +358,3258,2.0,957480770 +358,3259,3.0,957479518 +358,3263,4.0,957481235 +358,3269,1.0,957479624 +358,3272,2.0,957534558 +358,3301,1.0,957534758 +358,3307,5.0,957479080 +358,3308,4.0,957480530 +358,3334,4.0,957534432 +358,3358,5.0,957479080 +358,3359,5.0,957535334 +358,3361,5.0,957480047 +358,3362,5.0,957479973 +358,3363,4.0,957480067 +358,3387,3.0,957480770 +358,3396,4.0,957480147 +358,3414,2.0,957479680 +358,3418,3.0,957481791 +358,3421,4.0,957480147 +358,3424,5.0,957535632 +358,3435,5.0,957481565 +358,3436,2.0,957479864 +358,3448,4.0,957480561 +358,3450,3.0,957481045 +358,3451,4.0,957794620 +358,3462,5.0,957479938 +358,3468,5.0,957535155 +358,3469,5.0,957535334 +358,3481,4.0,957794636 +358,3497,2.0,957481199 +358,3500,4.0,957794970 +358,3501,4.0,957479332 +358,3504,5.0,957479996 +358,3507,5.0,957480513 +358,3524,5.0,957479605 +358,3525,3.0,957481199 +358,3526,4.0,957480067 +358,3527,3.0,957481884 +358,3528,2.0,957479743 +358,3529,2.0,957534648 +358,3536,3.0,957479253 +358,3543,5.0,957479973 +358,3549,2.0,957481358 +358,3552,4.0,957794665 +358,3591,4.0,957480530 +358,3600,3.0,957481438 +358,3608,2.0,957480223 +358,3614,3.0,957480147 +358,3622,4.0,957794990 +358,5060,3.0,957480090 +359,58,4.5,1339234594 +359,215,4.0,1339226955 +359,290,3.5,1339234496 +359,306,4.5,1339226806 +359,307,4.5,1339234785 +359,318,4.0,1339227774 +359,364,4.5,1339234054 +359,527,4.0,1339227806 +359,590,3.0,1339234028 +359,858,3.5,1339227801 +359,912,3.0,1339227824 +359,922,3.5,1339227831 +359,1015,2.0,1339227101 +359,1193,4.0,1339227854 +359,1198,3.5,1339227884 +359,1295,4.5,1339227138 +359,1446,4.0,1339234412 +359,1635,3.0,1339226888 +359,1779,3.0,1339226841 +359,1959,4.5,1339226916 +359,2053,1.0,1339226986 +359,2324,3.0,1339227944 +359,2336,4.5,1339234043 +359,2384,4.0,1339226902 +359,2405,3.0,1339226849 +359,2840,3.0,1339226939 +359,2858,4.0,1339227965 +359,2959,3.5,1339227894 +359,3100,4.0,1339226877 +359,3159,4.5,1339227028 +359,3258,3.5,1339227144 +359,4069,0.5,1339227065 +359,4973,3.5,1339227876 +359,5791,4.5,1339234086 +359,6235,4.0,1339234563 +359,6385,4.5,1339227125 +359,7327,4.0,1339234180 +359,7396,4.0,1339234208 +359,8014,4.0,1339234361 +359,8656,4.5,1339234319 +359,26587,5.0,1339234126 +359,27611,4.5,1339234266 +359,30707,3.0,1339234586 +359,44555,2.5,1339227849 +359,81845,4.5,1339234217 +359,89759,3.0,1339234765 +360,47,4.0,967345012 +360,50,5.0,967345139 +360,111,5.0,967345139 +360,161,5.0,967345307 +360,457,5.0,967345161 +360,474,4.0,967345184 +360,593,5.0,967345139 +360,608,4.0,967345097 +360,628,4.0,967345256 +360,904,4.0,967345115 +360,924,4.0,967345139 +360,1036,4.0,967345184 +360,1089,4.0,967345231 +360,1097,3.0,967344975 +360,1200,4.0,967345184 +360,1219,4.0,967345115 +360,1240,4.0,967345184 +360,1358,4.0,967345208 +360,1562,2.0,967345012 +360,1617,4.0,967345097 +360,1674,4.0,967345208 +360,1732,4.0,967345307 +360,1953,3.0,967345161 +360,2058,3.0,967345307 +360,2160,4.0,967345184 +360,2278,3.0,967345307 +360,2313,2.0,967344975 +360,2391,3.0,967345208 +360,2571,4.0,967345208 +360,2616,2.0,967344975 +360,2764,4.0,967345256 +360,2871,4.0,967345231 +360,2916,3.0,967345256 +360,3101,5.0,967345256 +360,3147,5.0,967345256 +360,3168,3.0,967345012 +360,3501,2.0,967344975 +360,3763,3.0,967345231 +361,1,3.0,864050973 +361,3,4.0,864051071 +361,7,3.0,864051197 +361,9,3.0,864051357 +361,12,3.0,864051423 +361,14,4.0,864051274 +361,17,5.0,864050973 +361,25,4.0,864050974 +361,32,3.0,864050973 +361,41,4.0,864051423 +361,52,4.0,864051274 +361,58,3.0,864051274 +361,65,3.0,864051423 +361,66,4.0,864051423 +361,74,4.0,864051423 +361,76,4.0,864051563 +361,79,3.0,864051274 +361,86,3.0,864051563 +361,88,4.0,864051563 +361,100,3.0,864051423 +361,107,4.0,864051423 +361,135,3.0,864051274 +361,140,3.0,864051357 +361,260,5.0,864051071 +361,376,3.0,864051197 +361,494,3.0,864051071 +361,608,3.0,864051071 +361,609,3.0,864051495 +361,628,3.0,864051274 +361,631,4.0,864051563 +361,637,4.0,864051274 +361,640,3.0,864051494 +361,647,4.0,864051494 +361,648,3.0,864050973 +361,653,5.0,864051197 +361,661,4.0,864051357 +361,671,4.0,864051563 +361,673,4.0,864051494 +361,707,3.0,864051494 +361,711,4.0,864051494 +361,719,3.0,864051357 +361,724,3.0,864051423 +361,733,1.0,864051071 +361,736,5.0,864050973 +361,737,4.0,864051357 +361,743,3.0,864051357 +361,748,3.0,864051563 +361,761,4.0,864051494 +361,762,3.0,864051197 +361,765,2.0,864051563 +361,778,3.0,864051356 +361,780,5.0,864050973 +361,783,4.0,864051357 +361,785,3.0,864051494 +361,786,3.0,864051071 +361,788,4.0,864051197 +361,802,3.0,864051274 +361,805,4.0,864051274 +361,830,3.0,864051563 +361,832,4.0,864051357 +361,839,5.0,864051563 +361,852,3.0,864051357 +361,858,4.0,864051423 +361,1073,4.0,864051071 +361,1183,5.0,864051495 +361,1210,5.0,864051274 +361,1356,5.0,864051197 +361,1367,5.0,864051494 +361,1393,3.0,864051423 +361,1405,3.0,864051563 +362,50,5.0,1217952715 +362,70,3.5,1218567120 +362,235,3.0,1218567124 +362,288,4.0,1224963415 +362,293,5.0,1218724314 +362,296,4.5,1217952678 +362,318,5.0,1217952389 +362,356,4.0,1218723685 +362,541,4.5,1218566916 +362,551,5.0,1217952361 +362,592,4.0,1218723629 +362,593,5.0,1218723634 +362,616,3.5,1218567128 +362,750,4.0,1218566999 +362,858,4.0,1217952550 +362,903,3.5,1218567042 +362,924,3.0,1218567744 +362,996,2.0,1218567324 +362,1080,4.0,1218566888 +362,1125,3.5,1218566950 +362,1136,3.5,1218567070 +362,1193,4.0,1218566971 +362,1197,4.5,1218723739 +362,1198,4.0,1218566955 +362,1206,4.5,1218566907 +362,1208,3.5,1218567130 +362,1213,4.0,1218566990 +362,1219,4.0,1217952929 +362,1220,4.0,1226330599 +362,1222,3.5,1218566993 +362,1258,3.5,1218566947 +362,1265,3.5,1218724035 +362,1270,5.0,1218723692 +362,1289,4.0,1218566977 +362,1291,4.5,1218566898 +362,1339,4.5,1221861886 +362,1617,5.0,1217952539 +362,1674,3.5,1218567037 +362,1732,4.5,1217952624 +362,1747,3.5,1218567039 +362,1884,2.5,1218567246 +362,1961,3.5,1221032485 +362,2028,2.5,1218723616 +362,2115,3.5,1218567115 +362,2194,3.5,1218724093 +362,2324,4.5,1225615319 +362,2329,4.5,1217952771 +362,2470,2.5,1218567250 +362,2497,2.0,1217951780 +362,2571,4.5,1217952562 +362,2683,2.5,1218723725 +362,2716,4.0,1221032516 +362,2729,3.5,1218567086 +362,2730,3.5,1218567010 +362,2762,4.0,1218724085 +362,2770,2.0,1218567265 +362,2858,5.0,1217952858 +362,2959,2.5,1218567262 +362,3020,4.0,1218566996 +362,3404,2.5,1217951793 +362,3481,4.5,1221032430 +362,3949,3.5,1218567044 +362,4011,4.0,1218846296 +362,4027,4.5,1218724322 +362,4144,3.5,1218566982 +362,4226,3.5,1218567081 +362,4246,3.5,1228895445 +362,4296,3.5,1218567084 +362,4306,4.0,1218724042 +362,4370,2.0,1218567748 +362,4878,4.0,1218566902 +362,4963,4.0,1218723591 +362,4973,5.0,1217952751 +362,4993,3.0,1221032460 +362,5025,2.5,1218567156 +362,5377,4.0,1218724121 +362,5618,3.5,1218566932 +362,5643,2.5,1218567149 +362,5669,4.5,1221861778 +362,5684,2.0,1218567159 +362,5945,3.5,1218566867 +362,6365,2.5,1218567259 +362,6377,4.5,1218723688 +362,6539,4.5,1218723611 +362,6662,4.5,1217952591 +362,6711,5.0,1218723698 +362,6807,3.5,1218567060 +362,6874,4.0,1217952971 +362,6942,4.5,1221861907 +362,7022,3.0,1218567253 +362,7073,3.5,1218566941 +362,7147,4.5,1218566920 +362,7438,3.5,1218723603 +362,8327,4.5,1218566905 +362,8376,3.0,1218566845 +362,8947,3.0,1218567246 +362,8961,4.5,1218724089 +362,8970,4.0,1218724108 +362,27523,5.0,1217952196 +362,27772,4.0,1218566892 +362,27773,2.5,1217952728 +362,27821,3.5,1218566855 +362,30793,4.0,1221032687 +362,30803,3.5,1218567144 +362,33166,4.5,1217952087 +362,33794,4.0,1221032362 +362,37729,4.0,1218567005 +362,37733,5.0,1217952497 +362,40414,4.0,1218566973 +362,40629,2.0,1221861669 +362,40819,3.0,1225615282 +362,44555,5.0,1218724166 +362,45722,4.0,1221032593 +362,46578,3.5,1266941394 +362,50068,3.0,1221861714 +362,56251,4.5,1217952337 +362,56757,4.0,1218566930 +362,58559,5.0,1221032341 +362,71464,4.5,1266941356 +363,1,5.0,942344684 +363,29,4.0,942345584 +363,32,4.0,942345584 +363,34,5.0,938890526 +363,47,5.0,938890950 +363,48,4.0,942344923 +363,50,4.0,938890887 +363,110,1.0,938890781 +363,198,4.0,942345753 +363,256,2.0,942345996 +363,260,5.0,942345584 +363,316,2.0,942346590 +363,322,2.0,938890637 +363,327,2.0,942345331 +363,346,3.0,942345239 +363,364,4.0,942344685 +363,379,2.0,942346624 +363,480,4.0,942345895 +363,527,5.0,938890433 +363,541,5.0,942345710 +363,551,4.0,942345138 +363,588,4.0,942344755 +363,589,5.0,938890637 +363,594,5.0,942344755 +363,595,5.0,942344755 +363,596,5.0,942344755 +363,608,5.0,938890526 +363,616,4.0,942344923 +363,661,3.0,942344963 +363,709,2.0,942344812 +363,720,5.0,938890781 +363,745,5.0,942344684 +363,750,4.0,942345710 +363,780,2.0,942345958 +363,783,4.0,942344873 +363,899,5.0,942345138 +363,900,4.0,942345172 +363,901,4.0,942345172 +363,908,4.0,942345426 +363,914,5.0,942345138 +363,919,5.0,942345138 +363,926,5.0,942345426 +363,948,4.0,942345464 +363,949,4.0,942345464 +363,1022,4.0,942344873 +363,1023,4.0,942344685 +363,1024,3.0,942344812 +363,1025,3.0,942344962 +363,1028,5.0,942345138 +363,1029,4.0,942344923 +363,1031,3.0,942345287 +363,1032,4.0,942344873 +363,1035,5.0,942345138 +363,1037,1.0,942347119 +363,1057,5.0,942345239 +363,1064,2.0,942344962 +363,1081,5.0,942345239 +363,1088,2.0,942345287 +363,1093,3.0,942345287 +363,1097,4.0,942345710 +363,1103,5.0,942345493 +363,1104,5.0,942345464 +363,1127,4.0,942345895 +363,1148,5.0,942344685 +363,1175,5.0,942345710 +363,1196,5.0,942345584 +363,1199,4.0,942345710 +363,1200,5.0,942345648 +363,1210,5.0,942345648 +363,1214,5.0,942345709 +363,1223,4.0,942344755 +363,1240,5.0,942345710 +363,1270,3.0,942345648 +363,1274,4.0,942344755 +363,1282,5.0,942344812 +363,1287,5.0,942345493 +363,1288,4.0,942345138 +363,1320,3.0,942347003 +363,1356,3.0,942345710 +363,1371,2.0,942346774 +363,1372,2.0,942345958 +363,1374,4.0,942345753 +363,1375,3.0,942346708 +363,1376,4.0,942345802 +363,1380,5.0,942345203 +363,1381,2.0,942345364 +363,1391,4.0,942346708 +363,1416,5.0,942345172 +363,1527,4.0,942345996 +363,1544,2.0,942346708 +363,1566,4.0,942344923 +363,1573,4.0,942345753 +363,1584,5.0,942345647 +363,1617,4.0,938890950 +363,1648,4.0,938890887 +363,1653,4.0,942345802 +363,1676,1.0,942346708 +363,1680,3.0,938890887 +363,1682,5.0,938890950 +363,1688,4.0,942345014 +363,1690,4.0,942346590 +363,1701,2.0,938890950 +363,1760,2.0,942345331 +363,1856,4.0,942345364 +363,1907,3.0,942344755 +363,1917,1.0,942346624 +363,1921,4.0,942345895 +363,1947,5.0,942345172 +363,1951,5.0,942345138 +363,1965,4.0,942345842 +363,2010,5.0,942345584 +363,2011,3.0,942345895 +363,2012,2.0,942345753 +363,2018,4.0,942344812 +363,2021,2.0,942345996 +363,2028,1.0,938890526 +363,2033,3.0,942345066 +363,2048,4.0,942344923 +363,2054,3.0,942347119 +363,2078,5.0,942344684 +363,2080,4.0,942344812 +363,2081,5.0,942344812 +363,2083,3.0,942345331 +363,2084,2.0,942345287 +363,2085,4.0,942344873 +363,2087,4.0,942344755 +363,2090,4.0,942344923 +363,2092,1.0,942345066 +363,2094,4.0,942346590 +363,2096,5.0,942344684 +363,2105,3.0,942346590 +363,2112,5.0,938890887 +363,2135,4.0,942345172 +363,2137,3.0,942344812 +363,2139,4.0,942344685 +363,2140,5.0,942345842 +363,2289,5.0,938890637 +363,2294,4.0,942344873 +363,2355,4.0,942344812 +363,2357,4.0,938890950 +363,2394,4.0,942345014 +363,2407,3.0,942345895 +363,2436,4.0,942344303 +363,2446,1.0,942344159 +363,2450,2.0,942346708 +363,2455,3.0,942346708 +363,2486,3.0,942343676 +363,2504,4.0,942344496 +363,2506,2.0,942343613 +363,2525,2.0,942345802 +363,2528,4.0,942345647 +363,2545,4.0,942343899 +363,2546,3.0,942343613 +363,2558,4.0,942344159 +363,2565,4.0,942345331 +363,2571,3.0,942343576 +363,2575,4.0,942343576 +363,2580,4.0,942343768 +363,2581,3.0,942344464 +363,2583,4.0,942344234 +363,2599,5.0,942343839 +363,2607,3.0,942344063 +363,2622,3.0,942344063 +363,2626,5.0,942344006 +363,2628,3.0,938890782 +363,2640,4.0,942345842 +363,2641,4.0,942346590 +363,2642,1.0,942345802 +363,2657,4.0,942345842 +363,2664,4.0,942345802 +363,2671,4.0,942343768 +363,2690,4.0,942344337 +363,2692,5.0,938890950 +363,2699,2.0,938890887 +363,2700,4.0,938726161 +363,2701,1.0,938726398 +363,2702,4.0,938890202 +363,2704,4.0,938726203 +363,2710,5.0,938726243 +363,2712,2.0,938726398 +363,2731,4.0,942345426 +363,2746,5.0,942345287 +363,2762,4.0,938726161 +363,2775,3.0,938890302 +363,2808,3.0,942346774 +363,2858,4.0,938726161 +363,2876,3.0,942345066 +363,2883,3.0,938890146 +363,2894,3.0,938726849 +363,2908,4.0,942343440 +363,2916,3.0,942345996 +363,2939,3.0,942345518 +363,2959,3.0,942344200 +363,2961,4.0,942344270 +363,2971,4.0,942345287 +363,2985,3.0,942345842 +363,2987,5.0,942344685 +363,2997,5.0,942343440 +363,3000,4.0,942344812 +363,3034,3.0,942344923 +363,3070,4.0,942346708 +364,47,0.5,1444534953 +364,293,0.5,1444534861 +364,306,0.5,1444531218 +364,318,4.5,1444529786 +364,541,1.5,1444530591 +364,1210,0.5,1444529859 +364,1240,0.5,1444530549 +364,1265,5.0,1444530183 +364,1732,4.5,1444535154 +364,2424,5.0,1444530507 +364,3948,0.5,1444529207 +364,4018,4.0,1444529719 +364,6350,4.5,1444531634 +364,7161,3.5,1444535319 +364,8464,4.5,1444531774 +364,26662,2.0,1444530767 +364,26776,1.0,1444531520 +364,27611,0.5,1444534753 +364,31658,2.0,1444530605 +364,34321,5.0,1444531397 +364,45722,4.5,1444528740 +364,46578,4.5,1444529344 +364,56367,4.0,1444535229 +364,64957,4.5,1444531032 +364,66934,4.0,1444530678 +364,68358,0.5,1444530023 +364,72998,0.5,1444529424 +364,78499,0.5,1444535027 +364,93040,5.0,1444530856 +364,97938,4.0,1444531065 +364,106696,4.5,1444530256 +364,109249,5.0,1444529595 +364,109374,5.0,1444530662 +364,115617,4.5,1444530384 +364,118997,4.5,1444530087 +364,134853,5.0,1444530607 +365,150,5.0,1359307169 +365,355,1.0,1359306693 +365,362,3.5,1359306735 +365,364,4.0,1359308357 +365,480,4.5,1359307164 +365,852,4.0,1359306676 +365,909,5.0,1359306830 +365,914,5.0,1359308393 +365,1021,5.0,1359306914 +365,1035,4.5,1359308442 +365,1103,5.0,1359306795 +365,1206,3.5,1359307117 +365,1345,3.0,1359306715 +365,1380,4.5,1359308401 +365,1517,4.0,1359307121 +365,1580,4.5,1359307127 +365,1772,3.5,1359308554 +365,1784,4.5,1359307138 +365,1947,5.0,1359306722 +365,1961,5.0,1359307133 +365,2012,5.0,1359307109 +365,2081,5.0,1359308525 +365,2352,3.0,1359306774 +365,2642,4.5,1359306821 +365,2863,5.0,1359308362 +365,3101,3.0,1359306662 +365,3263,4.5,1359306802 +365,3398,4.0,1359308467 +365,3635,4.0,1359306870 +365,3753,4.0,1359308719 +365,3967,4.5,1359308906 +365,4816,3.0,1359307212 +365,4936,4.0,1359308371 +365,4993,5.0,1359307092 +365,4994,5.0,1359308797 +365,4995,5.0,1359308698 +365,5418,5.0,1359308896 +365,5459,4.0,1359307207 +365,5481,4.0,1359306753 +365,5991,5.0,1359307478 +365,6333,5.0,1359308625 +365,6378,4.0,1359307200 +365,6503,4.5,1359306898 +365,6711,3.5,1359308883 +365,7153,4.5,1359308613 +365,8644,4.0,1359307471 +365,8665,5.0,1359307195 +365,8796,3.5,1359308507 +365,8833,4.0,1359308878 +365,8949,3.0,1359307468 +365,8961,4.5,1359308868 +365,8984,4.0,1359307510 +365,33794,3.5,1359307188 +365,40819,4.5,1359308738 +365,44195,4.0,1359308859 +365,45447,4.0,1359308734 +365,46578,4.0,1359308847 +365,48780,5.0,1359307464 +365,50872,4.0,1359307460 +365,53322,4.0,1359307496 +365,58154,3.5,1359308837 +365,58559,3.0,1359308833 +365,63082,3.5,1359308695 +365,68554,3.0,1359308770 +365,70286,2.0,1359308818 +365,72998,5.0,1359307175 +365,80463,4.0,1359307485 +365,80489,3.5,1359308764 +365,89745,3.0,1359307481 +365,97304,5.0,1359307046 +366,24,4.0,1306282555 +366,44,3.5,1306282507 +366,419,3.0,1306282686 +366,724,2.5,1306282543 +366,2134,3.0,1306282642 +366,2139,1.5,1306282697 +366,2398,1.0,1306282680 +366,2642,2.5,1306282660 +366,2723,4.5,1306282549 +366,2739,1.0,1306282635 +366,2761,3.5,1306282570 +366,2881,3.5,1306282577 +366,3100,1.5,1306282638 +366,3624,4.0,1306282587 +366,4011,4.0,1306283238 +366,4246,4.5,1306283841 +366,4886,4.0,1306283219 +366,4973,5.0,1306282976 +366,6377,4.0,1306282998 +366,7317,4.0,1306284255 +366,8874,4.0,1306283227 +366,8961,5.0,1306283200 +366,27251,4.0,1306283826 +366,33615,4.0,1306284272 +366,45431,4.5,1306284301 +366,46578,4.0,1306283212 +366,47518,4.5,1306282924 +366,50872,3.0,1306283234 +366,52287,4.0,1306284288 +366,55732,2.0,1306284276 +366,56152,3.0,1306284252 +366,60126,4.0,1306283373 +366,61348,0.5,1306282929 +366,68358,5.0,1306282704 +367,6,2.0,1128631216 +367,21,3.0,1128633376 +367,95,4.0,1128631025 +367,160,2.5,1128632887 +367,172,2.0,1128632878 +367,173,0.5,1128632898 +367,208,0.5,1128632919 +367,223,3.5,1128633407 +367,260,5.0,1128632755 +367,357,4.0,1128634060 +367,380,4.5,1128633206 +367,440,4.0,1128633308 +367,457,4.5,1128631222 +367,490,4.0,967059919 +367,539,3.0,1128633424 +367,541,5.0,1128632807 +367,555,3.5,1128631203 +367,589,4.5,1128631229 +367,608,4.5,1128633112 +367,750,4.0,1128633142 +367,911,3.5,1128633117 +367,969,5.0,1128632828 +367,1005,3.0,967059919 +367,1036,4.5,1128632716 +367,1089,4.0,1128632823 +367,1127,3.0,997908852 +367,1196,5.0,1128632771 +367,1197,2.0,1128632782 +367,1198,5.0,1128632801 +367,1200,5.0,1128632705 +367,1214,4.5,1128632793 +367,1220,5.0,1128631185 +367,1222,5.0,1128632812 +367,1230,2.0,967059919 +367,1234,3.0,1128633099 +367,1240,3.5,1128632762 +367,1264,4.0,1128632835 +367,1269,4.5,1128633094 +367,1270,4.0,1128633978 +367,1275,3.0,967059919 +367,1291,2.0,1128631207 +367,1297,4.5,1128633328 +367,1378,3.5,1128631063 +367,1385,4.5,1128631056 +367,1387,4.0,1128632738 +367,1518,3.5,1128631080 +367,1542,4.0,1128634023 +367,1556,1.5,1128632914 +367,1564,4.0,1128634008 +367,1580,3.0,1128633228 +367,1610,5.0,1128631147 +367,1641,4.0,1128634043 +367,1663,3.0,1128633027 +367,1747,4.0,1128633443 +367,1845,2.0,1128633400 +367,1917,3.5,1128632906 +367,1968,4.0,1128633973 +367,2000,4.5,1128633015 +367,2001,3.5,1128633213 +367,2005,2.0,967059919 +367,2028,4.0,1128632693 +367,2109,0.5,1128634100 +367,2288,4.5,1128631195 +367,2302,3.5,1128633314 +367,2321,3.0,1128633457 +367,2396,5.0,1128634095 +367,2406,5.0,1128633270 +367,2571,5.0,1128631234 +367,2692,3.5,1128632819 +367,2699,4.0,997908871 +367,2707,4.0,967059919 +367,2710,4.0,997908906 +367,2716,2.5,1128633056 +367,2804,5.0,1128633066 +367,2826,1.0,997908852 +367,2858,3.5,1128633087 +367,2915,4.5,1128633369 +367,2918,2.5,1128633994 +367,2935,4.0,1128633163 +367,2987,3.5,1128633446 +367,2997,5.0,997908889 +367,3005,1.0,997908906 +367,3104,4.5,1128632700 +367,3107,3.5,1128631068 +367,3108,3.0,1128634076 +367,3175,4.0,1128633265 +367,3253,2.5,1128633335 +367,3316,3.5,1128632895 +367,3358,4.5,1128634083 +367,3421,1.0,1128633957 +367,3526,3.5,1128634049 +367,3552,3.0,1128633047 +367,3578,4.5,1128631132 +367,3623,5.0,967059959 +367,3624,1.0,967059959 +367,3717,3.0,1128632872 +367,3740,3.5,1128633179 +367,3751,4.0,967059959 +367,3753,3.0,967059959 +367,3793,2.0,967059959 +367,3819,4.5,1128633134 +367,3826,3.0,967059919 +367,3952,3.0,977953460 +367,3975,3.0,977953515 +367,3977,1.0,977953490 +367,3981,4.0,977953490 +367,3986,4.0,977953515 +367,3994,2.0,977953588 +367,3996,5.0,1128632742 +367,3998,3.0,977953438 +367,3999,4.0,977953588 +367,4002,3.5,1128633418 +367,4011,4.5,1128631177 +367,4027,4.0,1128634104 +367,4052,3.0,997908871 +367,4128,5.0,1128633199 +367,4270,3.0,995902971 +367,4305,2.0,995902946 +367,4343,2.0,997908739 +367,4344,3.0,997908739 +367,4351,3.5,1128631065 +367,4367,3.0,995902992 +367,4370,1.0,995902971 +367,4387,4.0,995902946 +367,4444,4.0,1128631164 +367,4448,3.0,997908799 +367,4499,0.5,1128633478 +367,4570,4.5,1128633299 +367,4618,2.0,995902911 +367,4621,3.0,995902911 +367,4623,4.0,995902911 +367,4625,1.0,995902911 +367,4626,5.0,995902911 +367,4627,4.0,995902911 +367,4629,2.0,995902879 +367,4632,5.0,995902879 +367,4638,3.0,995902860 +367,4643,4.0,997908810 +367,4654,3.0,995902841 +367,4661,4.0,995902828 +367,4664,3.0,995902828 +367,4680,2.0,995902795 +367,4681,4.0,995902795 +367,4682,3.0,995902795 +367,4699,2.0,997908712 +367,4705,4.0,995902761 +367,4706,4.0,995902761 +367,4713,2.0,995902743 +367,4720,5.0,999892199 +367,4723,4.0,999892168 +367,4734,2.0,999892168 +367,4735,2.0,999892199 +367,4814,4.0,1008350748 +367,4887,2.0,1008350767 +367,4954,3.0,1128633191 +367,4963,3.0,1008350684 +367,5021,2.0,1128634031 +367,5049,3.0,1128633033 +367,5095,4.0,1128633254 +367,5299,3.5,1128633470 +367,5400,3.5,1128631031 +367,5459,4.0,1128632864 +367,5872,2.5,1128631041 +367,6003,4.0,1128633435 +367,6539,4.0,1128631199 +367,6541,2.0,1128632909 +367,6564,2.5,1128632884 +367,6636,3.5,1128634057 +367,6659,4.5,1128632989 +367,6764,3.5,1128633176 +367,6863,2.5,1128633464 +367,6874,3.0,1128632720 +367,6974,5.0,1128633037 +367,7027,3.0,1128631141 +367,7093,0.5,1128634002 +367,7107,4.0,1128633969 +367,7361,4.5,1128633105 +367,7438,2.0,1128632710 +367,7482,4.5,1128631249 +367,8228,4.0,1128632846 +367,8366,3.5,1128633986 +367,8623,4.0,1128633487 +367,8665,4.0,1128631122 +367,8689,4.0,1128633043 +367,8810,3.5,1128632868 +367,8874,3.5,1128632726 +367,8910,4.0,1128634019 +367,8968,2.5,1128631044 +367,32029,3.0,1128631087 +367,33493,3.5,1128631108 +367,33679,3.5,1124484227 +367,33794,3.5,1124484188 +367,34048,3.5,1124484237 +367,34143,3.5,1124484218 +367,34319,3.5,1124484247 +367,34334,3.0,1124484192 +367,34405,2.5,1128630931 +367,34532,3.5,1124484244 +367,35957,3.0,1128630983 +367,36401,2.5,1128630995 +367,36509,2.5,1128630980 +367,36517,3.5,1128630964 +367,36519,2.5,1128630968 +367,36529,3.0,1128630951 +367,37386,3.5,1138381509 +367,37720,3.0,1128630937 +367,37727,2.5,1128630977 +367,40583,4.0,1138381483 +367,40614,3.5,1138381501 +367,40826,0.5,1139605739 +367,40959,3.0,1138381471 +367,41285,2.0,1139605732 +367,41716,2.5,1138381438 +367,41997,3.0,1138381452 +367,42007,2.0,1138381491 +367,42011,2.0,1139605759 +367,42738,3.0,1138381468 +368,260,4.0,962592057 +368,265,4.0,984866989 +368,541,5.0,962592009 +368,593,4.0,962591544 +368,920,3.0,962591583 +368,1073,4.0,984866989 +368,1077,4.0,962592082 +368,1200,4.0,962592057 +368,1377,2.0,962591615 +368,1387,3.0,962591615 +368,2581,3.0,971563675 +368,2628,4.0,962591805 +368,2664,4.0,971563764 +368,2724,3.0,971563644 +368,2739,4.0,962591583 +368,2858,5.0,962591733 +368,3101,3.0,962591615 +368,3175,3.0,962591805 +368,3176,5.0,962591733 +368,3429,5.0,962591544 +368,3948,5.0,971639968 +369,2,3.0,847465664 +369,10,3.0,847465494 +369,21,3.0,847465592 +369,32,4.0,847465620 +369,39,3.0,847465620 +369,47,4.0,847465541 +369,50,3.0,847465592 +369,110,5.0,847465494 +369,150,4.0,847465333 +369,153,3.0,847465393 +369,165,3.0,847465392 +369,185,3.0,847465494 +369,208,3.0,847465494 +369,253,4.0,847465518 +369,282,4.0,847465696 +369,288,3.0,847465517 +369,292,3.0,847465462 +369,296,4.0,847465334 +369,316,3.0,847465421 +369,317,3.0,847465641 +369,318,5.0,847465462 +369,329,3.0,847465462 +369,339,4.0,847465517 +369,344,3.0,847465393 +369,349,3.0,847465422 +369,350,4.0,847465641 +369,356,5.0,847465421 +369,364,4.0,847465541 +369,367,3.0,847465541 +369,377,4.0,847465541 +369,380,2.0,847465334 +369,410,3.0,847465565 +369,432,3.0,847465664 +369,434,3.0,847465462 +369,440,4.0,847465641 +369,442,3.0,847465696 +369,454,4.0,847465517 +369,457,4.0,847465393 +369,474,4.0,847465696 +369,480,4.0,847465462 +369,500,4.0,847465541 +369,509,4.0,847465696 +369,527,5.0,847465592 +369,539,4.0,847465592 +369,587,5.0,847465565 +369,588,4.0,847465393 +369,589,4.0,847465517 +369,590,5.0,847465333 +369,592,4.0,847465333 +369,595,4.0,847465421 +369,597,4.0,847465565 +370,32,4.5,1096511821 +370,44,4.0,1096512154 +370,110,4.0,1096510780 +370,151,4.0,1096511390 +370,168,3.0,1096512066 +370,188,4.0,1096510929 +370,235,4.0,1096511967 +370,260,4.5,1096511412 +370,288,4.0,1096511878 +370,318,5.0,1096511027 +370,329,3.0,1096511840 +370,367,3.5,1096511851 +370,466,3.0,1096495851 +370,509,4.0,1096511934 +370,527,4.0,1096511813 +370,541,3.5,1096510762 +370,585,4.0,1096512160 +370,589,4.0,1096511796 +370,780,3.0,1096511799 +370,912,4.0,1096511921 +370,924,4.5,1096511929 +370,953,4.5,1096496354 +370,1088,3.0,1096511298 +370,1092,3.0,1096510750 +370,1196,4.0,1096511418 +370,1197,4.5,1096511245 +370,1201,4.0,1096496934 +370,1206,4.5,1096510599 +370,1207,5.0,1096495898 +370,1208,5.0,1096510658 +370,1210,4.0,1096511421 +370,1215,5.0,1096496378 +370,1261,5.0,1096510854 +370,1263,4.0,1096512218 +370,1265,4.5,1096511898 +370,1275,3.0,1096496943 +370,1285,4.0,1099962785 +370,1356,3.0,1096510820 +370,1371,3.5,1096512181 +370,1372,3.0,1096512105 +370,1374,4.0,1096512005 +370,1375,4.5,1096496921 +370,1464,5.0,1096510884 +370,1517,4.5,1096512019 +370,1580,3.5,1096511883 +370,1584,5.0,1096510809 +370,1625,5.0,1096496911 +370,1645,4.5,1096512170 +370,1673,3.5,1096512122 +370,1748,4.5,1096512198 +370,1756,3.5,1096510933 +370,2153,2.0,1096510685 +370,2167,3.5,1096496963 +370,2470,3.0,1096496951 +370,2502,3.5,1096511360 +370,2549,0.5,1096511040 +370,2571,4.5,1096511861 +370,2617,4.0,1096512052 +370,2628,2.5,1096511436 +370,2640,4.0,1096495870 +370,2700,4.0,1096495867 +370,2762,5.0,1096511467 +370,2770,4.0,1096496929 +370,2840,4.5,1096510977 +370,2959,4.5,1096511972 +370,3033,4.0,1096496974 +370,3052,4.5,1096512163 +370,3147,5.0,1096512119 +370,3578,4.5,1096511945 +370,3994,4.0,1096512193 +370,3996,4.0,1096512001 +370,4022,4.5,1096495888 +370,4105,5.0,1096510858 +370,4226,4.0,1096512091 +370,4349,4.0,1096510796 +370,4735,4.0,1096510873 +370,4975,3.5,1096511489 +370,4993,5.0,1096510955 +370,5349,4.5,1096512187 +370,5378,3.0,1096511438 +370,5952,5.0,1096510959 +370,6615,3.5,1096511097 +370,6754,4.0,1096511332 +370,7153,5.0,1096510958 +370,7318,2.0,1099365665 +370,7366,3.0,1099365673 +370,7379,4.0,1099365698 +370,7438,5.0,1099365622 +370,7439,3.0,1099365732 +370,7445,4.0,1099365627 +370,7649,5.0,1096510704 +370,7810,4.5,1096510713 +370,7811,3.5,1096510720 +370,7812,3.5,1096510726 +370,7991,4.0,1096510840 +370,8810,3.0,1096511085 +370,8861,3.5,1096510669 +370,8874,4.5,1096511117 +370,8928,3.5,1099365691 +370,8947,5.0,1099962827 +371,17,4.5,1462744286 +371,47,4.5,1462737831 +371,110,4.5,1462745271 +371,293,4.0,1462734440 +371,296,4.5,1462743973 +371,318,5.0,1462734560 +371,356,5.0,1462733874 +371,587,4.0,1462741796 +371,589,4.0,1462742520 +371,593,4.5,1462743140 +371,1089,4.5,1462744064 +371,1193,4.5,1462741757 +371,1270,3.0,1462741750 +371,1625,5.0,1462736680 +371,1645,4.5,1462747133 +371,1653,2.5,1462741737 +371,1721,5.0,1462734532 +371,1835,3.5,1462744885 +371,2000,4.0,1462745283 +371,2001,4.0,1462745300 +371,2028,4.0,1462745382 +371,2058,4.0,1462869075 +371,2324,3.5,1462733902 +371,2542,4.5,1462743990 +371,2571,5.0,1462734412 +371,2762,3.5,1462745838 +371,2858,4.0,1462742673 +371,2959,4.0,1462735589 +371,3147,4.5,1462869292 +371,3285,3.5,1462743093 +371,3717,3.5,1462744841 +371,3753,4.0,1462745275 +371,3785,3.5,1462746555 +371,3863,3.5,1462746589 +371,3948,4.0,1462746403 +371,3969,4.0,1462746792 +371,3999,3.5,1462747003 +371,4011,4.5,1462742591 +371,4018,4.0,1462746547 +371,4299,4.5,1462741644 +371,4306,4.0,1462746350 +371,4308,4.0,1462746477 +371,4370,0.5,1462868494 +371,4681,4.0,1462744685 +371,4699,4.0,1462885691 +371,4718,2.0,1462746572 +371,4963,4.0,1462745249 +371,4973,4.5,1462743220 +371,4993,1.5,1462869155 +371,4995,4.5,1462746372 +371,5218,4.0,1462746448 +371,5872,4.5,1462741770 +371,5952,2.0,1462746345 +371,5956,3.0,1462742811 +371,5989,5.0,1462735578 +371,5995,3.5,1462746460 +371,6187,4.5,1462741549 +371,6373,3.5,1462746519 +371,6874,0.5,1462869165 +371,7153,2.0,1462746347 +371,7254,4.0,1462744617 +371,7438,0.5,1462868939 +371,7669,4.5,1462744304 +371,8360,4.0,1462746417 +371,8529,4.0,1462745411 +371,8644,3.5,1462742448 +371,8665,3.0,1462742017 +371,8972,3.5,1462744864 +371,8981,4.5,1462743461 +371,8984,3.0,1462745242 +371,30707,4.5,1462746497 +371,30812,3.5,1462742783 +371,30825,3.5,1462746861 +371,32029,5.0,1462736542 +371,33679,3.0,1462744726 +371,37733,5.0,1462736852 +371,40629,4.5,1462744259 +371,44199,4.5,1462741792 +371,44761,1.0,1462825058 +371,45447,3.0,1462745416 +371,45517,4.0,1462746814 +371,45720,4.5,1462868435 +371,45722,4.0,1462746481 +371,47610,4.5,1462745791 +371,48043,2.0,1462747037 +371,48304,5.0,1462734159 +371,48516,5.0,1462734228 +371,49530,4.0,1462742802 +371,51662,4.0,1462741983 +371,53125,4.0,1462745575 +371,53322,3.5,1462745144 +371,53972,4.5,1462869053 +371,53996,2.0,1462746656 +371,54259,4.5,1462738341 +371,54286,3.0,1462742021 +371,55498,3.5,1462745573 +371,55765,5.0,1462742125 +371,56174,3.5,1462746600 +371,56633,4.5,1462869022 +371,56782,4.0,1462746746 +371,58154,4.5,1462744222 +371,58803,4.5,1462742605 +371,59369,3.5,1462746712 +371,59421,4.0,1462744634 +371,59784,4.0,1462746729 +371,60069,4.0,1462746392 +371,60072,2.5,1462744758 +371,60950,4.0,1462745710 +371,62374,4.5,1462742880 +371,63082,4.5,1462746064 +371,64957,4.5,1462741577 +371,68554,3.0,1462745405 +371,69640,5.0,1462742240 +371,71838,5.0,1462736650 +371,72998,3.0,1462746433 +371,73017,4.0,1462746582 +371,74458,4.0,1462736892 +371,79132,4.0,1462742795 +371,81591,3.5,1462743386 +371,81788,5.0,1462734657 +371,81834,2.0,1462746659 +371,81845,4.5,1462742573 +371,84392,5.0,1462736159 +371,86880,4.0,1462742301 +371,89118,2.0,1462885476 +371,90439,4.5,1462869245 +371,90600,5.0,1462735974 +371,91690,5.0,1472326024 +371,92259,5.0,1462747119 +371,94780,1.0,1462869777 +371,96079,3.0,1462746836 +371,97938,4.5,1462746090 +371,98809,2.0,1462746810 +371,103235,4.5,1462745883 +371,104303,4.5,1462744649 +371,105585,2.0,1462868905 +371,105844,4.0,1462745113 +371,109374,4.5,1462743193 +371,109487,2.5,1462741740 +371,110352,4.5,1462743821 +371,111443,3.0,1462745692 +371,112556,4.5,1462741921 +371,113829,3.5,1462868922 +371,115170,4.0,1462868738 +371,115210,4.0,1462745107 +371,116797,5.0,1462737571 +371,117176,5.0,1462737932 +371,118696,2.0,1462738278 +371,122882,0.5,1462868934 +371,122886,1.0,1462734459 +371,122888,5.0,1473624419 +371,122904,1.0,1462885196 +371,134130,4.5,1462741940 +371,134853,4.5,1462741931 +371,137857,4.0,1462745935 +371,138208,4.5,1462741804 +371,139385,4.0,1462734470 +371,140110,4.5,1472325135 +371,142448,4.0,1462745546 +371,143385,4.5,1462745370 +371,148626,4.0,1462747151 +372,242,3.0,958004753 +372,265,3.0,958004317 +372,357,4.0,958004626 +372,539,4.0,958004432 +372,597,5.0,958004492 +372,902,4.0,958003634 +372,907,4.0,958003969 +372,912,4.0,958004270 +372,916,4.0,958004212 +372,945,4.0,958003970 +372,955,4.0,958004094 +372,969,4.0,958004294 +372,1066,4.0,958004094 +372,1067,4.0,958004094 +372,1079,3.0,958004154 +372,1088,4.0,958004568 +372,1172,3.0,958004346 +372,1188,3.0,958004154 +372,1220,4.0,958004879 +372,1230,3.0,958004018 +372,1278,2.0,958003656 +372,1307,4.0,958004409 +372,1537,4.0,958004047 +372,1569,4.0,958003833 +372,1641,4.0,958003782 +372,2390,3.0,958004180 +372,2424,4.0,958004841 +372,2529,2.0,958003602 +372,2671,5.0,958004544 +372,2724,5.0,958004520 +372,2791,2.0,958004018 +372,2935,4.0,958003970 +372,2942,4.0,958004588 +373,16,4.0,938979342 +373,25,4.0,938980304 +373,34,4.0,938979750 +373,36,4.0,938979530 +373,39,5.0,938979601 +373,45,4.0,938980460 +373,50,4.0,938980398 +373,111,4.0,938980398 +373,162,5.0,938980350 +373,246,5.0,938980029 +373,260,4.0,939234909 +373,265,4.0,938980350 +373,296,5.0,938979896 +373,318,5.0,938979601 +373,348,4.0,938979530 +373,356,3.0,938979970 +373,457,4.0,938979750 +373,515,4.0,938979102 +373,527,4.0,938979159 +373,538,4.0,938979970 +373,555,4.0,938980129 +373,589,4.0,938979224 +373,608,5.0,938980029 +373,778,5.0,938980029 +373,800,4.0,938979970 +373,858,5.0,939234909 +373,921,4.0,939035640 +373,994,5.0,938980350 +373,1073,4.0,939235114 +373,1077,4.0,939235206 +373,1078,4.0,939235075 +373,1079,4.0,939035899 +373,1080,4.0,939235075 +373,1090,4.0,939038160 +373,1091,1.0,939036840 +373,1096,5.0,939038160 +373,1097,3.0,939038451 +373,1124,4.0,939038451 +373,1131,4.0,939037615 +373,1132,4.0,939037615 +373,1135,4.0,939036707 +373,1136,4.0,939234909 +373,1147,5.0,938979816 +373,1172,5.0,939035640 +373,1183,5.0,938980460 +373,1193,5.0,939234909 +373,1196,4.0,939037794 +373,1197,5.0,939035640 +373,1202,4.0,939035899 +373,1206,4.0,939235113 +373,1208,4.0,939234947 +373,1211,4.0,939035899 +373,1214,3.0,939234947 +373,1220,3.0,939035899 +373,1221,5.0,939234909 +373,1225,4.0,939038160 +373,1228,5.0,939038160 +373,1230,5.0,939234948 +373,1238,4.0,939035899 +373,1242,4.0,939038160 +373,1243,4.0,938980460 +373,1244,4.0,939235075 +373,1245,5.0,938979816 +373,1246,4.0,939038451 +373,1252,5.0,939235114 +373,1259,4.0,939036360 +373,1261,5.0,939036360 +373,1263,5.0,939235075 +373,1270,2.0,939036360 +373,1273,4.0,939035692 +373,1278,3.0,939234947 +373,1285,4.0,939036360 +373,1288,5.0,939035640 +373,1292,4.0,939235038 +373,1297,2.0,939036707 +373,1299,5.0,939038451 +373,1300,5.0,939038160 +373,1307,4.0,939036623 +373,1381,2.0,939037390 +373,1387,4.0,939235173 +373,1394,5.0,939035692 +373,1395,4.0,939036840 +373,1446,3.0,938979224 +373,1537,4.0,938980029 +373,1594,4.0,938980398 +373,1617,4.0,938979689 +373,1639,3.0,938980398 +373,1663,4.0,939036707 +373,1674,4.0,939037794 +373,1678,4.0,938979102 +373,1682,3.0,938980029 +373,1704,4.0,938979648 +373,1721,3.0,938979816 +373,1784,4.0,938980460 +373,1885,4.0,938980460 +373,1913,4.0,939234948 +373,1921,2.0,938980129 +373,1922,4.0,938979970 +373,1923,4.0,938979750 +373,1954,4.0,939235173 +373,1958,3.0,939036623 +373,1961,4.0,939037615 +373,1962,3.0,939037615 +373,1965,4.0,939035692 +373,1968,3.0,939036757 +373,1982,4.0,939235114 +373,2003,3.0,939036757 +373,2011,2.0,939036757 +373,2013,3.0,939235206 +373,2020,4.0,939037615 +373,2022,4.0,939038451 +373,2028,3.0,938979530 +373,2054,3.0,939036920 +373,2064,4.0,939036623 +373,2065,4.0,939035692 +373,2073,3.0,939036793 +373,2081,2.0,939036623 +373,2088,2.0,939037390 +373,2100,3.0,939036873 +373,2108,4.0,938979601 +373,2109,4.0,939235173 +373,2112,3.0,938980398 +373,2114,3.0,939037615 +373,2134,2.0,939036757 +373,2137,4.0,939235173 +373,2144,3.0,939036707 +373,2145,2.0,939036757 +373,2150,3.0,939035692 +373,2174,4.0,939035692 +373,2194,4.0,939037794 +373,2241,3.0,939036840 +373,2243,4.0,939036360 +373,2245,3.0,939036840 +373,2246,2.0,939037390 +373,2247,4.0,939036920 +373,2248,4.0,939035692 +373,2255,3.0,939035899 +373,2262,3.0,939037390 +373,2290,4.0,939037341 +373,2291,4.0,938979896 +373,2294,3.0,938979750 +373,2301,3.0,939035899 +373,2302,3.0,938980304 +373,2303,4.0,939235173 +373,2312,4.0,939037794 +373,2313,4.0,939037615 +373,2318,5.0,938980460 +373,2324,5.0,938979896 +373,2333,4.0,938979970 +373,2349,3.0,939035692 +373,2352,4.0,939036840 +373,2356,4.0,938978788 +373,2369,3.0,939037341 +373,2371,1.0,939036360 +373,2372,1.0,939036873 +373,2375,1.0,939035640 +373,2378,1.0,939036757 +373,2379,1.0,939037341 +373,2380,1.0,939037390 +373,2381,1.0,939037390 +373,2382,1.0,939037341 +373,2383,1.0,939037341 +373,2389,3.0,938978849 +373,2390,4.0,938979816 +373,2391,5.0,938979530 +373,2395,5.0,938978380 +373,2396,4.0,938978659 +373,2406,3.0,939035640 +373,2407,1.0,939035640 +373,2413,1.0,939036757 +373,2416,3.0,939035692 +373,2417,3.0,939036920 +373,2442,3.0,938978788 +373,2443,3.0,938979970 +373,2457,3.0,939036793 +373,2463,3.0,939035899 +373,2469,3.0,939036920 +373,2473,1.0,939037390 +373,2492,3.0,938978849 +373,2504,2.0,938978849 +373,2518,3.0,939035692 +373,2520,4.0,939235113 +373,2528,3.0,939235206 +373,2539,3.0,938978702 +373,2542,4.0,938978788 +373,2567,3.0,938978849 +373,2580,4.0,938978788 +373,2583,4.0,938978702 +373,2589,4.0,938978887 +373,2598,3.0,938978887 +373,2599,5.0,938980350 +373,2617,3.0,938978887 +373,2628,1.0,938980129 +373,2657,3.0,939234909 +373,2710,4.0,938977877 +373,2712,3.0,938977943 +373,2716,2.0,939035640 +373,2717,2.0,939037390 +373,2730,4.0,939235206 +373,2733,1.0,939037390 +373,2750,4.0,939036793 +373,2770,3.0,938977795 +373,2779,3.0,939235206 +373,2791,4.0,939035640 +373,2792,2.0,939037341 +373,2794,1.0,939037341 +373,2795,3.0,939036793 +373,2797,2.0,939035640 +373,2819,4.0,939234947 +373,2844,4.0,938978001 +373,2858,5.0,938977762 +373,2890,4.0,938977834 +373,2915,4.0,939036757 +373,2918,3.0,939036707 +373,2924,4.0,939235075 +373,2926,4.0,939036840 +373,2971,4.0,939234909 +373,2973,5.0,939037420 +373,5060,4.0,939235038 +374,1025,3.0,1038954848 +374,1197,1.0,1038954785 +374,1210,4.0,1038954906 +374,1961,4.0,1038954808 +374,2028,4.0,1038954848 +374,3252,4.0,1038954883 +374,3392,3.0,1038954906 +374,3614,2.0,1038954848 +374,4010,3.0,1038954848 +374,4284,3.0,1038954865 +374,4886,3.0,1038955053 +374,5092,3.0,1038955184 +374,5151,4.0,1038955202 +374,5225,5.0,1038955006 +374,5254,5.0,1038955155 +374,5293,4.0,1038955053 +374,5312,5.0,1038955202 +374,5313,3.0,1038955184 +374,5323,1.0,1038955309 +374,5324,4.0,1038955249 +374,5329,5.0,1038955053 +374,5349,3.0,1038955053 +374,5378,4.0,1038955053 +374,5387,5.0,1038955309 +374,5388,4.0,1038955155 +374,5400,4.0,1038955184 +374,5414,4.0,1038955310 +374,5415,5.0,1038955310 +374,5419,3.0,1038955249 +374,5449,3.0,1038955249 +374,5481,2.0,1038954785 +374,5841,1.0,1038955532 +374,5927,1.0,1038955397 +375,10,4.0,845491929 +375,110,3.0,845491999 +375,150,5.0,845491809 +375,165,3.0,845491845 +375,231,1.0,845491869 +375,253,5.0,845491999 +375,288,4.0,845491999 +375,296,4.0,845491809 +375,316,3.0,845491869 +375,329,4.0,845491901 +375,344,2.0,845491845 +375,349,5.0,845491845 +375,356,4.0,845491901 +375,377,5.0,845492059 +375,380,4.0,845491809 +375,434,3.0,845491901 +375,454,5.0,845491999 +375,457,4.0,845491870 +375,480,4.0,845491901 +375,588,1.0,845491845 +375,589,3.0,845492059 +375,590,3.0,845491809 +375,592,4.0,845491809 +375,593,5.0,845491869 +375,595,1.0,845491869 +376,318,4.0,974427397 +376,527,5.0,974427310 +376,593,5.0,974427228 +376,852,2.0,1005529265 +376,858,4.0,974427270 +376,904,4.0,1005529990 +376,908,3.0,1005529964 +376,910,5.0,1005530013 +376,912,4.0,1005529913 +376,920,5.0,974427329 +376,922,5.0,1005529937 +376,926,4.0,1005530030 +376,942,3.0,1005529990 +376,1183,5.0,974426796 +376,1193,5.0,974426796 +376,1207,5.0,1005529913 +376,1212,3.0,1005529266 +376,1219,5.0,1005530013 +376,1221,4.0,974427228 +376,1230,4.0,974427375 +376,1233,4.0,1005530069 +376,1247,5.0,1005530069 +376,1254,5.0,1005529964 +376,1267,4.0,1005529990 +376,1299,5.0,1005529823 +376,1938,4.0,974427354 +376,1945,5.0,1005529889 +376,1952,4.0,1005529964 +376,1956,5.0,974427228 +376,1957,3.0,1005530135 +376,1961,5.0,974426827 +376,2132,5.0,1005530135 +376,2396,5.0,1005529937 +376,2944,2.0,974426827 +376,2969,4.0,1005529823 +376,3095,4.0,1005530088 +376,3201,4.0,974427354 +376,3330,4.0,974427251 +376,3350,4.0,1005530069 +376,3467,3.0,1005530069 +376,3468,3.0,1005529163 +376,3549,4.0,1005529841 +376,3678,4.0,974427290 +376,3685,3.0,974426663 +376,3916,3.0,1005529235 +376,3948,2.0,1005529235 +376,3978,2.0,1005529163 +376,3980,3.0,1005529235 +376,4223,4.0,1005529410 +376,4226,2.0,1005529410 +376,4234,3.0,1005529442 +376,4238,5.0,1005529442 +376,4239,2.0,1005529410 +376,4263,5.0,1005530088 +376,4270,1.0,1005529472 +376,4306,3.0,1005529410 +376,4361,5.0,1005530013 +376,4427,5.0,1005529858 +376,4432,4.0,1005530069 +377,262,4.0,1187053471 +377,542,3.5,1187053497 +377,595,4.5,1187053714 +377,724,5.0,1187053874 +377,934,3.0,1187053490 +377,1344,3.0,1187053434 +377,1848,4.0,1187053762 +377,2124,3.5,1187053642 +377,2174,2.5,1187053722 +377,2622,2.5,1187053517 +377,3754,2.0,1187053650 +377,4899,4.5,1187053751 +377,4980,4.0,1187053744 +377,7444,3.0,1187053630 +377,8666,3.5,1187053812 +377,30793,5.0,1187053818 +377,41566,4.0,1187053846 +377,44225,2.5,1187053684 +377,49647,3.5,1187053826 +377,52975,3.0,1187054114 +377,53125,2.5,1187054108 +377,53974,2.0,1187054127 +377,53993,3.0,1187053620 +377,54004,2.5,1187054120 +377,54272,3.5,1187054100 +378,50,3.0,1443291723 +378,293,4.0,1443291942 +378,296,4.5,1443291864 +378,318,4.0,1443291712 +378,372,3.5,1443293335 +378,527,4.0,1443291728 +378,551,4.0,1443292516 +378,750,4.0,1443291924 +378,778,4.5,1443293328 +378,902,3.5,1443294654 +378,903,4.0,1443292011 +378,1073,3.0,1443292606 +378,1089,4.0,1443291960 +378,1120,3.5,1443294063 +378,1193,4.5,1443291735 +378,1199,4.5,1443292128 +378,1206,4.0,1443292022 +378,1235,4.5,1443292141 +378,1244,3.5,1443292031 +378,1258,4.0,1443294005 +378,1265,3.0,1443292295 +378,1271,3.5,1443294585 +378,1285,3.5,1443292515 +378,1333,3.5,1443292505 +378,1653,3.5,1443292470 +378,1884,3.5,1443292527 +378,1968,3.5,1443292399 +378,2174,3.5,1443295158 +378,2291,4.0,1443295133 +378,2500,2.5,1443293348 +378,2502,3.0,1443292117 +378,2542,4.5,1443293280 +378,2692,3.0,1443294427 +378,2729,4.0,1443294014 +378,2858,3.5,1443291877 +378,2918,3.5,1443292168 +378,2959,4.5,1443291865 +378,3147,3.0,1443292722 +378,3408,3.0,1443291752 +378,3462,4.0,1443291967 +378,3535,4.5,1443625623 +378,3793,0.5,1443625488 +378,3844,3.5,1443294608 +378,3897,3.5,1443294963 +378,3949,4.0,1443293368 +378,3967,4.0,1443292439 +378,3992,4.0,1443292729 +378,4011,4.0,1443293263 +378,4022,3.0,1443294370 +378,4226,4.5,1443293243 +378,4246,2.5,1443625530 +378,4306,0.5,1443625487 +378,4447,0.5,1443625603 +378,4848,4.5,1443625554 +378,4878,4.5,1443292188 +378,4886,0.5,1443625482 +378,4963,0.5,1443625478 +378,4979,4.0,1443292460 +378,5218,0.5,1443625534 +378,5349,0.5,1443625454 +378,5418,0.5,1443625499 +378,5989,4.5,1443625470 +378,5991,3.0,1443625615 +378,5995,4.0,1443291969 +378,6367,3.0,1443294906 +378,6377,0.5,1443625494 +378,6539,0.5,1443625489 +378,6710,3.0,1443294175 +378,6870,4.0,1443292341 +378,6874,4.0,1443293193 +378,6942,3.5,1443293068 +378,6953,3.5,1443625875 +378,7254,2.5,1443625610 +378,7323,4.5,1443292228 +378,7438,4.0,1443293200 +378,7451,2.0,1443625817 +378,8360,0.5,1443625509 +378,8376,3.5,1443625666 +378,8665,0.5,1443625513 +378,8957,0.5,1443625747 +378,8961,0.5,1443625460 +378,8984,0.5,1443625865 +378,30749,3.5,1443293210 +378,30793,4.0,1443295152 +378,30812,3.0,1443292716 +378,32898,4.0,1443292552 +378,33679,0.5,1443625653 +378,33794,0.5,1443625500 +378,37729,4.0,1443295136 +378,46578,4.5,1443292223 +378,47610,3.5,1443294439 +378,48738,4.0,1443293001 +378,50912,3.5,1443294446 +378,52722,0.5,1443625829 +378,53318,3.5,1443294238 +378,54190,4.0,1443295025 +378,54286,0.5,1443625536 +378,55052,4.5,1443293010 +378,55247,3.0,1443293517 +378,56367,3.5,1443293153 +378,56715,4.0,1443295224 +378,58559,0.5,1443625495 +378,60069,0.5,1443625516 +378,61240,3.0,1443293448 +378,62849,4.0,1443293284 +378,63082,4.0,1443292201 +378,64034,3.5,1443292389 +378,64957,3.0,1443625801 +378,68073,4.5,1443294941 +378,68157,4.5,1443293373 +378,71899,3.0,1443293511 +378,72226,3.5,1443293802 +378,74458,3.5,1443292219 +378,76251,3.0,1443625781 +378,79132,4.0,1443293185 +378,80463,3.0,1443293670 +378,81591,3.5,1443292339 +378,82931,3.5,1443292894 +378,86504,4.0,1443293260 +378,86882,4.0,1443294242 +378,88810,4.5,1443292213 +378,90376,4.0,1443292569 +378,91500,1.0,1443625827 +378,95873,3.5,1443294223 +378,96373,4.0,1443292675 +378,96821,4.0,1443625938 +378,97921,4.0,1443292410 +378,99114,4.5,1443292054 +378,101741,4.5,1443293035 +378,104374,4.0,1443294481 +378,104863,3.5,1443294539 +378,105593,4.0,1443293029 +378,106100,3.5,1443293425 +378,106438,3.5,1443292420 +378,109374,4.5,1443293315 +378,110645,4.5,1443292853 +378,111622,2.5,1443293065 +378,112556,2.5,1443292203 +378,112804,4.0,1443294103 +378,114265,3.5,1443293076 +378,115569,3.0,1443293683 +378,116797,4.5,1443291760 +378,116897,4.5,1443293566 +378,117176,3.5,1443292443 +378,129653,3.0,1443292970 +378,130580,3.5,1443293021 +378,134569,3.5,1443293964 +379,1,3.5,1378180411 +379,32,4.0,1378180038 +379,47,4.5,1378180195 +379,110,4.0,1378180018 +379,296,4.5,1378180188 +379,318,5.0,1378179951 +379,356,4.5,1378180177 +379,457,3.5,1378180023 +379,527,4.5,1378179962 +379,589,4.0,1378180198 +379,593,4.0,1378180173 +379,778,4.5,1378180065 +379,1080,4.0,1378180057 +379,1136,4.0,1378180225 +379,1206,4.0,1378180102 +379,1225,3.0,1378180129 +379,1240,4.0,1378180034 +379,1586,1.0,1378179748 +379,1682,3.5,1378180260 +379,1704,3.5,1378180184 +379,1717,2.0,1378179751 +379,1732,4.5,1378180302 +379,1831,4.0,1378179739 +379,1955,4.0,1378179847 +379,1961,4.0,1378180237 +379,2002,3.0,1378179689 +379,2028,4.5,1378180217 +379,2194,4.0,1378180068 +379,2278,3.0,1378179675 +379,2324,4.0,1378180111 +379,2329,4.0,1378180267 +379,2571,4.0,1378180271 +379,2720,3.5,1378179904 +379,2762,3.5,1378180030 +379,2808,1.5,1378179891 +379,2858,4.5,1378180208 +379,2959,4.0,1378180317 +379,2986,3.5,1378179824 +379,2997,4.0,1378180076 +379,3005,4.5,1378179771 +379,3113,4.0,1378179814 +379,3147,4.5,1378180191 +379,3273,2.0,1378179779 +379,3578,4.0,1378180278 +379,3717,3.0,1378179695 +379,3949,4.5,1378180296 +379,4306,3.5,1378180015 +379,4878,4.5,1378180308 +379,4963,3.5,1378180326 +379,4973,3.5,1378180265 +379,4993,4.0,1378180312 +379,5418,3.5,1378180358 +379,5952,4.0,1378180322 +379,5989,3.5,1378180304 +379,5995,4.5,1378180291 +379,6377,4.0,1378180276 +379,6503,2.0,1378179914 +379,6539,2.5,1378180355 +379,6874,3.0,1378180336 +379,6947,3.0,1378179788 +379,7153,4.0,1378180341 +379,7361,4.0,1378180315 +379,7438,3.0,1378180338 +379,8665,3.5,1378180376 +379,30707,3.5,1378180055 +379,44555,4.5,1378179982 +379,46578,1.5,1378180350 +379,48394,4.0,1378180373 +379,48516,4.0,1378180365 +379,58559,4.0,1378179986 +379,63082,3.0,1378180369 +380,1,4.0,1048092869 +380,6,4.0,952358438 +380,11,2.0,949367730 +380,16,4.0,1204995996 +380,19,4.0,949367918 +380,21,4.0,949367561 +380,22,3.0,1151120862 +380,24,3.0,949384487 +380,25,4.0,949374401 +380,32,5.0,1038621928 +380,34,4.0,949367479 +380,39,3.0,949367778 +380,45,3.0,949367602 +380,47,5.0,1038621751 +380,50,5.0,1022553465 +380,81,2.5,1151120724 +380,104,4.0,994729376 +380,110,5.0,949368612 +380,145,3.0,949368908 +380,150,4.0,1115007153 +380,161,4.0,1115007216 +380,180,3.0,949367730 +380,185,0.5,1053104159 +380,196,2.0,950073791 +380,209,3.0,949384839 +380,223,5.0,949367653 +380,235,2.0,949367561 +380,246,4.0,949373968 +380,253,4.0,1078365598 +380,260,4.0,1151120183 +380,293,4.0,1048092878 +380,296,5.0,949369345 +380,300,4.0,949374246 +380,316,4.0,950073716 +380,318,4.0,1151120177 +380,322,4.0,1055871639 +380,327,1.0,949368459 +380,333,4.0,949367975 +380,337,2.0,949374184 +380,339,2.0,949367975 +380,344,4.0,949367918 +380,353,4.0,949368805 +380,356,5.0,949367498 +380,367,3.0,949367730 +380,379,4.0,950073716 +380,380,3.0,949367516 +380,410,3.0,949367750 +380,438,3.0,994729891 +380,463,3.0,968949106 +380,471,4.0,949367667 +380,474,4.0,1246055968 +380,480,4.0,949368305 +380,508,4.0,949374266 +380,514,3.0,949367627 +380,539,1.5,1115007209 +380,541,4.0,950073539 +380,542,3.0,994729706 +380,543,4.0,949367778 +380,587,2.0,949367653 +380,588,4.0,994729345 +380,589,4.0,949368612 +380,590,4.0,949370820 +380,592,4.5,1053103704 +380,593,5.0,949371458 +380,597,3.0,1151120242 +380,608,4.0,1069525211 +380,628,4.0,949374493 +380,647,4.0,949374342 +380,653,3.0,1151120362 +380,708,3.0,949367730 +380,733,4.0,1151120237 +380,737,1.0,950073791 +380,750,4.5,1153282831 +380,780,4.0,949368348 +380,785,2.0,949367778 +380,788,3.0,950073791 +380,802,4.0,949384786 +380,810,0.5,1053104130 +380,829,1.0,994729981 +380,832,4.0,949367256 +380,849,2.0,950073791 +380,852,2.0,949367580 +380,858,4.5,1074218298 +380,880,2.0,949368459 +380,924,5.0,950073539 +380,968,4.0,1153284618 +380,999,4.0,949369503 +380,1036,4.0,1115007251 +380,1037,4.0,950073716 +380,1042,2.0,994728530 +380,1047,4.0,949369753 +380,1060,4.0,949367778 +380,1061,4.0,949369503 +380,1073,4.0,994729345 +380,1089,4.0,949371584 +380,1090,5.0,994728493 +380,1120,4.0,1155144266 +380,1129,4.0,950073667 +380,1136,4.0,1100625853 +380,1193,3.0,949367256 +380,1196,4.0,949368575 +380,1197,5.0,949368044 +380,1200,4.0,1115007263 +380,1208,3.0,1050185494 +380,1210,4.0,1199154622 +380,1214,4.0,1048092868 +380,1215,5.0,1044822050 +380,1220,4.0,949368720 +380,1221,4.0,1074218307 +380,1222,3.5,1152117709 +380,1225,5.0,1133970781 +380,1228,4.0,1153282854 +380,1240,5.0,949368088 +380,1242,4.0,949368575 +380,1246,3.5,1171815872 +380,1257,4.0,1155347240 +380,1263,4.0,1151120719 +380,1265,4.0,949367498 +380,1267,4.0,990807007 +380,1270,3.0,949367239 +380,1272,4.5,1155144385 +380,1275,4.0,1155347237 +380,1285,4.0,1048092872 +380,1302,4.0,949369098 +380,1339,3.5,1151120799 +380,1358,4.0,1151120148 +380,1374,4.0,950073603 +380,1387,4.0,949368575 +380,1391,1.0,949368459 +380,1393,4.0,1153282390 +380,1394,4.0,1115007312 +380,1405,3.0,949367869 +380,1409,3.0,949367918 +380,1441,3.0,949367535 +380,1474,2.0,951715390 +380,1476,4.0,949367818 +380,1500,4.0,949367653 +380,1513,3.0,949367975 +380,1515,1.0,951715614 +380,1517,5.0,949367602 +380,1518,1.0,949368909 +380,1527,4.0,950073603 +380,1544,3.0,949368459 +380,1573,3.0,949368348 +380,1580,3.0,949367627 +380,1584,4.0,950073603 +380,1586,1.0,949367256 +380,1591,4.0,949368498 +380,1603,2.0,949368459 +380,1604,3.0,949371159 +380,1608,2.0,949368924 +380,1610,4.0,949368700 +380,1625,4.0,1152398273 +380,1639,4.0,949374109 +380,1645,3.5,1151120586 +380,1646,3.0,994729949 +380,1648,4.0,1220050526 +380,1653,4.0,949368305 +380,1667,2.0,949368909 +380,1672,4.0,949374401 +380,1676,3.0,950073667 +380,1682,4.0,949374401 +380,1704,4.0,949374184 +380,1713,0.5,1053104127 +380,1721,3.0,949367125 +380,1729,3.0,949369395 +380,1747,2.0,949367653 +380,1748,4.0,1197778932 +380,1769,3.0,949368781 +380,1772,1.0,1242341788 +380,1777,3.0,1151120513 +380,1779,2.0,949370325 +380,1784,4.0,949367479 +380,1805,3.0,949374423 +380,1810,3.0,949374301 +380,1831,2.0,949368410 +380,1833,2.0,949370997 +380,1876,3.0,949368348 +380,1882,2.0,950073823 +380,1883,3.0,949367889 +380,1894,2.0,1048092873 +380,1909,3.0,949368348 +380,1911,3.0,949369220 +380,1917,4.0,949368379 +380,1923,5.0,949371402 +380,1961,4.0,1078365659 +380,1968,4.0,1155347244 +380,2000,4.0,994729345 +380,2009,4.0,950073667 +380,2028,5.0,949368545 +380,2034,2.0,950073716 +380,2058,2.0,1048092875 +380,2060,3.0,994729706 +380,2064,4.0,949373968 +380,2105,4.0,950073603 +380,2108,3.0,949367682 +380,2109,4.0,949368155 +380,2124,4.0,949367223 +380,2138,4.0,1199154787 +380,2167,4.0,949368827 +380,2174,3.5,1151120809 +380,2195,3.0,949370464 +380,2231,3.5,1076467613 +380,2268,4.0,949374367 +380,2273,3.0,949368909 +380,2288,3.0,950073539 +380,2291,4.0,949374342 +380,2302,3.0,949367516 +380,2324,4.0,949371535 +380,2329,4.0,1053104268 +380,2334,4.0,949370917 +380,2340,2.0,1048092867 +380,2353,3.5,1115007320 +380,2355,4.0,949367479 +380,2359,4.0,949369890 +380,2387,3.0,989251546 +380,2392,1.0,994729891 +380,2395,4.0,949384532 +380,2396,3.0,949367479 +380,2424,1.0,949367869 +380,2427,3.0,949372111 +380,2428,1.0,949368459 +380,2433,4.0,949384407 +380,2455,4.0,950073603 +380,2456,3.0,950073791 +380,2468,2.0,994729734 +380,2478,2.0,949372204 +380,2485,3.0,949384532 +380,2490,5.0,949373828 +380,2501,4.0,949374184 +380,2502,4.0,997744381 +380,2539,4.0,949367750 +380,2541,3.5,1053103977 +380,2542,4.0,1156983208 +380,2549,2.0,950073716 +380,2558,2.0,949367479 +380,2571,5.0,949368060 +380,2572,3.5,1053103879 +380,2574,0.5,1053104102 +380,2580,4.0,949369377 +380,2587,3.0,949367841 +380,2597,2.0,964459351 +380,2598,3.0,967766964 +380,2599,3.0,949367432 +380,2605,3.0,949384450 +380,2613,3.0,950073667 +380,2616,2.0,979503268 +380,2628,3.0,950073667 +380,2671,4.0,950074721 +380,2672,3.0,949384532 +380,2681,3.0,981849626 +380,2683,5.0,956018176 +380,2687,4.0,949371249 +380,2688,3.0,952965036 +380,2694,3.0,949371991 +380,2700,5.0,949367561 +380,2701,2.0,994728875 +380,2702,2.0,952015158 +380,2706,4.0,949371991 +380,2707,4.0,1153283007 +380,2710,2.0,1038622299 +380,2719,2.0,949372244 +380,2722,2.0,994728918 +380,2723,2.0,994729037 +380,2724,2.0,953139668 +380,2759,2.0,979503268 +380,2761,3.0,1225671627 +380,2762,5.0,949370886 +380,2770,2.0,952358473 +380,2771,2.0,969466047 +380,2779,4.0,1153284033 +380,2791,4.0,1204995992 +380,2804,4.5,1053103779 +380,2805,3.0,951715000 +380,2809,1.0,981849644 +380,2841,3.0,953788712 +380,2858,5.0,1006212693 +380,2860,2.0,953571161 +380,2866,4.0,1153284395 +380,2872,4.0,949368700 +380,2882,2.0,970549299 +380,2883,4.0,965239787 +380,2890,4.5,1053103721 +380,2906,1.0,968176527 +380,2916,4.0,949368739 +380,2918,5.0,994729207 +380,2959,5.0,956954136 +380,2968,4.0,949369949 +380,2976,2.0,1001111262 +380,2987,4.0,949384532 +380,2996,2.0,965665129 +380,2997,4.0,959705699 +380,3020,4.0,1220050520 +380,3033,5.0,950073667 +380,3052,4.0,993057415 +380,3053,3.0,955343269 +380,3054,1.0,949367373 +380,3082,3.0,979575715 +380,3088,4.0,1268687863 +380,3098,4.0,1153283553 +380,3114,5.0,949367296 +380,3135,4.0,950074494 +380,3138,3.0,949372204 +380,3146,2.0,961968982 +380,3147,3.0,961606813 +380,3148,3.5,1151120635 +380,3156,2.0,984417990 +380,3157,3.0,959705699 +380,3173,4.0,949367359 +380,3174,3.0,1038622400 +380,3175,3.0,979019170 +380,3176,3.0,963252658 +380,3178,3.0,990807007 +380,3186,3.0,992365496 +380,3189,3.0,965665061 +380,3210,4.0,950074494 +380,3219,4.0,949372137 +380,3247,2.0,949369580 +380,3248,2.0,949372204 +380,3252,4.0,1153282407 +380,3253,3.0,949367535 +380,3254,3.0,949367653 +380,3255,3.0,949367730 +380,3263,4.5,1053103805 +380,3287,3.0,951714891 +380,3298,3.0,965065592 +380,3300,2.5,1086972554 +380,3301,3.0,951882253 +380,3354,2.0,984417939 +380,3361,4.0,1022553465 +380,3362,5.0,994729178 +380,3408,3.0,971651444 +380,3421,5.0,994729178 +380,3471,4.5,1153284501 +380,3480,4.0,1151120802 +380,3481,3.5,1153284384 +380,3494,3.5,1354053692 +380,3499,3.5,1153283616 +380,3510,3.0,992365439 +380,3534,2.0,988050629 +380,3536,3.0,990807119 +380,3552,4.0,1197778962 +380,3555,4.0,991199217 +380,3578,5.0,1038621571 +380,3593,1.0,994873570 +380,3615,3.0,962915584 +380,3617,3.0,982004037 +380,3624,4.0,960827657 +380,3646,2.0,989251570 +380,3671,4.0,1199154721 +380,3717,2.0,993529575 +380,3744,3.0,988821724 +380,3751,3.0,975348298 +380,3752,3.0,1048092874 +380,3753,3.0,994729037 +380,3755,3.0,978244558 +380,3786,3.0,1038622299 +380,3793,4.0,965065617 +380,3798,3.0,998410567 +380,3809,4.0,1153283303 +380,3827,2.0,1001111219 +380,3861,2.5,1151120614 +380,3896,4.0,1012852143 +380,3897,4.0,971651424 +380,3901,2.0,1009990947 +380,3916,4.0,1008344514 +380,3948,3.0,984244305 +380,3949,4.0,1153282715 +380,3950,4.0,1171814768 +380,3952,4.0,1003769204 +380,3968,2.5,1053104054 +380,3977,4.0,989943421 +380,3979,1.0,1007181649 +380,3988,3.0,1038622363 +380,3994,5.0,1038621928 +380,3996,4.0,1003169272 +380,4002,5.0,995904491 +380,4007,4.5,1153283940 +380,4011,4.0,994637811 +380,4015,3.0,994637831 +380,4022,3.0,994091053 +380,4023,3.0,1029429105 +380,4025,2.0,1004982771 +380,4027,5.0,1038621697 +380,4033,4.0,1038622062 +380,4069,1.0,1115007342 +380,4102,4.5,1153282411 +380,4105,2.5,1155061803 +380,4161,3.0,1003769107 +380,4220,4.0,1199154794 +380,4223,4.0,1153282297 +380,4226,5.0,991669535 +380,4239,4.0,1048092877 +380,4246,3.0,991157991 +380,4247,3.0,1004982717 +380,4280,4.0,1153283978 +380,4306,5.0,991158013 +380,4310,3.5,1053103860 +380,4322,4.0,1199154633 +380,4340,2.0,1006212576 +380,4343,2.0,1038622575 +380,4344,3.0,1007502145 +380,4367,4.0,1008046507 +380,4369,2.0,1078365724 +380,4370,3.0,994637876 +380,4406,4.0,1184514649 +380,4448,4.0,1009441827 +380,4452,3.0,1009047007 +380,4465,4.0,1215786625 +380,4489,2.0,994729305 +380,4557,4.0,1153283265 +380,4571,4.0,994729376 +380,4623,4.0,994729178 +380,4638,2.0,1038621952 +380,4643,3.5,1053103757 +380,4718,3.0,1018399636 +380,4720,3.0,1022553338 +380,4732,4.0,1033057720 +380,4734,4.0,1015897410 +380,4757,1.5,1151120437 +380,4776,3.0,1003508362 +380,4814,3.0,1019061388 +380,4816,2.0,1016300050 +380,4823,2.5,1053103964 +380,4844,3.0,1018399550 +380,4867,3.0,1022553383 +380,4874,4.0,1021304631 +380,4878,4.0,1170867504 +380,4886,4.0,1048092870 +380,4887,3.0,1038621698 +380,4889,3.0,1008006336 +380,4890,4.0,1006212524 +380,4896,3.0,1038622632 +380,4901,4.0,1020494331 +380,4963,4.0,1009991008 +380,4973,4.5,1153282787 +380,4974,4.0,1045103540 +380,4975,4.0,1023827848 +380,4979,2.5,1053104082 +380,4993,4.5,1153282692 +380,4994,3.0,1025496071 +380,4995,4.0,1025388876 +380,5010,5.0,1017676921 +380,5013,2.0,1028754810 +380,5025,4.0,1024880901 +380,5048,2.0,1023827988 +380,5055,4.5,1151120353 +380,5110,3.5,1058381430 +380,5152,4.0,1153757517 +380,5218,3.0,1204995713 +380,5219,3.5,1053103931 +380,5254,4.0,1031532128 +380,5266,2.5,1152398921 +380,5293,3.0,1032798486 +380,5294,4.5,1153597554 +380,5312,4.0,1034014255 +380,5349,4.0,1024641174 +380,5378,2.5,1117220231 +380,5388,4.0,1023127593 +380,5418,3.0,1024274794 +380,5445,4.0,1042475027 +380,5464,3.5,1066321825 +380,5481,4.5,1053103604 +380,5502,3.5,1092439838 +380,5505,3.5,1151120422 +380,5507,2.5,1058381465 +380,5523,2.0,1069525336 +380,5528,3.0,1033324686 +380,5530,1.0,1058829635 +380,5572,2.5,1084989370 +380,5574,2.5,1069525481 +380,5577,4.0,1153283628 +380,5617,3.5,1153284587 +380,5666,2.5,1104376275 +380,5669,4.0,1153284609 +380,5673,3.5,1069525365 +380,5782,4.5,1153282710 +380,5803,2.5,1069525416 +380,5810,4.0,1038785257 +380,5816,3.0,1069525444 +380,5872,3.0,1038621079 +380,5900,2.0,1071899862 +380,5903,4.0,1197778967 +380,5927,1.0,1038622131 +380,5945,2.5,1070843893 +380,5952,4.0,1042474998 +380,5954,3.5,1074399322 +380,5989,3.5,1080662949 +380,5991,3.0,1078365333 +380,5995,4.0,1156983259 +380,6003,4.0,1151120520 +380,6013,2.5,1076945856 +380,6060,2.5,1087696504 +380,6157,3.5,1076467637 +380,6188,3.5,1152398938 +380,6212,3.0,1076945804 +380,6263,2.0,1081652787 +380,6281,2.5,1152398928 +380,6287,3.0,1055872079 +380,6323,4.0,1153282177 +380,6333,4.0,1072749244 +380,6365,4.0,1068327371 +380,6373,3.0,1055872066 +380,6377,2.5,1153284242 +380,6378,3.5,1156303206 +380,6502,3.5,1072749195 +380,6503,1.5,1151120546 +380,6537,3.0,1057943091 +380,6539,3.5,1058381284 +380,6548,2.5,1310743035 +380,6565,4.0,1155490845 +380,6586,4.0,1062638292 +380,6587,1.5,1151120682 +380,6615,2.5,1065025743 +380,6708,4.0,1153282677 +380,6710,4.0,1153680860 +380,6753,4.0,1155491055 +380,6754,3.0,1065025711 +380,6763,1.5,1151120496 +380,6787,4.5,1153282822 +380,6863,3.0,1155308516 +380,6874,4.0,1066321806 +380,6879,3.5,1333409889 +380,6887,2.5,1101525385 +380,6890,3.0,1129613463 +380,6932,3.5,1102394150 +380,6934,4.0,1068327357 +380,6936,4.0,1070401647 +380,6947,3.0,1069525141 +380,6953,4.0,1101525306 +380,6957,5.0,1073452487 +380,6979,4.0,1197779005 +380,7090,3.5,1119206739 +380,7143,4.0,1105211195 +380,7147,4.0,1119205366 +380,7150,2.0,1115007088 +380,7153,3.5,1073452510 +380,7156,5.0,1152398817 +380,7160,4.0,1225671861 +380,7162,3.0,1105211172 +380,7173,1.0,1151120441 +380,7235,3.0,1153282088 +380,7254,4.0,1113713008 +380,7263,4.0,1153282437 +380,7285,3.5,1153283966 +380,7293,3.0,1151120524 +380,7294,2.0,1084989345 +380,7317,3.5,1086806729 +380,7325,2.0,1151120488 +380,7346,3.0,1118604351 +380,7348,3.0,1112471909 +380,7361,4.5,1199155046 +380,7362,2.5,1111949891 +380,7366,3.0,1111949937 +380,7373,3.5,1104376292 +380,7438,4.0,1084989308 +380,7445,3.0,1153282166 +380,7451,3.5,1155096587 +380,7458,3.0,1153680780 +380,7481,4.5,1153283298 +380,7502,5.0,1304471638 +380,8130,3.0,1152398931 +380,8360,4.0,1087020820 +380,8361,1.0,1086107212 +380,8366,3.5,1153680417 +380,8369,1.5,1144256781 +380,8371,3.5,1116123441 +380,8376,4.0,1153283396 +380,8464,4.0,1153284402 +380,8528,3.0,1151120477 +380,8529,2.5,1153680774 +380,8622,3.5,1088543398 +380,8636,4.0,1089389819 +380,8644,3.0,1153680768 +380,8645,3.5,1153680754 +380,8665,4.0,1097088548 +380,8781,3.5,1153025788 +380,8783,3.0,1151120851 +380,8784,4.0,1153284261 +380,8796,2.5,1153284377 +380,8798,3.5,1118604367 +380,8807,4.5,1129522924 +380,8810,3.0,1129523104 +380,8860,3.0,1151120326 +380,8861,3.0,1153680829 +380,8871,3.5,1144125098 +380,8874,3.0,1251755126 +380,8910,4.0,1133970715 +380,8917,4.5,1097970305 +380,8931,3.5,1155491176 +380,8937,4.0,1153282640 +380,8946,2.5,1119207041 +380,8949,3.5,1113940524 +380,8961,5.0,1102276295 +380,8970,4.0,1129523640 +380,8972,2.0,1153680784 +380,8983,4.0,1199154734 +380,8984,2.0,1151511075 +380,8985,3.0,1151120315 +380,26614,4.0,1229224633 +380,26812,4.0,1246055424 +380,27002,4.0,1246055217 +380,27611,4.5,1246055433 +380,27706,3.5,1155489590 +380,27788,3.5,1152117692 +380,27821,3.0,1153680815 +380,27831,4.0,1161572315 +380,27846,4.0,1199154944 +380,27899,3.0,1116190852 +380,27904,3.0,1305558898 +380,27912,4.0,1170867664 +380,30707,4.0,1153326390 +380,30793,4.0,1155142978 +380,30810,3.0,1105381228 +380,30812,4.0,1133675627 +380,30822,3.0,1153680404 +380,30825,2.0,1151120485 +380,31162,3.0,1153282973 +380,31221,3.0,1151120033 +380,31685,2.5,1153680800 +380,31696,3.0,1112471722 +380,31878,4.5,1153283821 +380,32587,4.5,1159573403 +380,32598,2.5,1151120529 +380,33004,3.5,1142815839 +380,33154,3.5,1173473257 +380,33162,3.5,1156526639 +380,33166,4.5,1156430563 +380,33493,4.5,1153282385 +380,33615,2.5,1150651050 +380,33660,4.0,1151511003 +380,33679,3.5,1142815935 +380,33794,3.5,1148239951 +380,33826,4.0,1285369134 +380,34048,2.5,1153680802 +380,34129,2.0,1153025742 +380,34143,2.0,1153025760 +380,34150,2.5,1159573386 +380,34162,4.0,1154806067 +380,34319,2.5,1310743041 +380,34332,3.0,1153680610 +380,34334,2.0,1148314797 +380,34338,4.0,1155491411 +380,34405,4.5,1157857147 +380,34523,3.5,1164517078 +380,34530,1.0,1151120096 +380,34536,4.0,1153283179 +380,35836,4.0,1153282662 +380,36401,2.0,1151511026 +380,36517,3.5,1155741035 +380,36529,4.0,1154322415 +380,36708,4.0,1171815526 +380,37380,3.0,1157258500 +380,37384,3.5,1167183334 +380,37727,1.5,1154806042 +380,37853,3.0,1170867632 +380,38798,3.0,1156701450 +380,38992,3.0,1156039257 +380,39398,3.0,1184952665 +380,40278,4.0,1148078041 +380,40583,3.5,1157348935 +380,40614,3.0,1148077881 +380,40819,3.5,1220050412 +380,40851,2.0,1156526623 +380,40946,4.0,1304471407 +380,41566,2.5,1158767654 +380,41569,3.5,1155489556 +380,41716,4.0,1159767674 +380,41997,4.0,1285369110 +380,42011,2.0,1162226503 +380,42725,4.0,1185810894 +380,42738,3.0,1262394454 +380,43396,3.5,1199154505 +380,43928,3.0,1155830948 +380,43936,2.0,1176911757 +380,44191,4.5,1157840394 +380,44195,4.5,1167183311 +380,44199,4.0,1185810699 +380,44665,4.0,1198282619 +380,44761,4.5,1172374512 +380,44788,4.0,1176911727 +380,44974,4.0,1193154257 +380,45028,2.5,1185810768 +380,45186,3.5,1170867570 +380,45447,3.5,1171174904 +380,45499,3.5,1151119951 +380,45517,3.0,1170867529 +380,45666,2.0,1204995728 +380,45672,3.0,1258735037 +380,45728,3.5,1170696076 +380,45732,3.0,1170696097 +380,45928,3.0,1185498588 +380,46322,4.0,1304471173 +380,46335,2.0,1370885737 +380,46530,4.0,1151974496 +380,46578,4.0,1198282972 +380,46723,3.5,1205101988 +380,46970,3.5,1173473238 +380,46976,4.0,1176911740 +380,47610,4.0,1172463034 +380,48304,4.5,1225671914 +380,48319,2.0,1208233354 +380,48385,3.5,1198283066 +380,48394,4.0,1193154423 +380,48516,4.0,1174961015 +380,48774,4.0,1170695971 +380,48780,4.5,1284522858 +380,48783,3.5,1198282958 +380,49272,4.0,1218317452 +380,49278,4.0,1312343953 +380,49284,3.5,1266698023 +380,49396,4.0,1204995724 +380,49530,4.0,1197778816 +380,49649,2.0,1203829080 +380,49822,4.0,1220050542 +380,50685,3.5,1234671662 +380,50794,3.5,1201755624 +380,51080,4.0,1220050394 +380,51088,4.0,1199154037 +380,51091,4.0,1220050534 +380,51255,3.0,1203829032 +380,51540,3.5,1246055795 +380,51662,4.5,1224441640 +380,52245,3.0,1357606490 +380,52281,3.0,1225671759 +380,52287,3.5,1304471450 +380,52435,4.0,1243140082 +380,52973,3.0,1220049955 +380,53000,3.0,1209272897 +380,53129,4.5,1246055906 +380,53318,3.0,1280193799 +380,53550,2.5,1243140212 +380,53894,2.5,1246055523 +380,53972,4.0,1225671892 +380,53996,3.0,1203829213 +380,54004,2.5,1219772043 +380,54259,3.5,1243140221 +380,54272,3.0,1199153758 +380,54281,3.5,1308936492 +380,54286,4.0,1243140093 +380,54331,3.5,1304471391 +380,54503,4.5,1220049950 +380,54736,3.5,1345582758 +380,54997,4.0,1231019954 +380,54999,4.0,1224441454 +380,55031,4.5,1284522937 +380,55116,4.0,1241965812 +380,55232,3.0,1199154055 +380,55267,2.5,1234671646 +380,55276,4.0,1304471179 +380,55280,4.0,1215786373 +380,55765,4.0,1255197436 +380,55820,4.0,1225672044 +380,55908,4.0,1259093551 +380,56003,3.0,1234671736 +380,56174,4.0,1200348950 +380,56367,5.0,1203274195 +380,56587,3.0,1218316887 +380,56715,3.0,1276272672 +380,56757,2.0,1227897767 +380,56782,4.5,1255197634 +380,56788,4.0,1243140203 +380,56885,3.0,1218316933 +380,56921,4.0,1229224617 +380,57368,3.0,1209790105 +380,57640,4.0,1304471487 +380,57669,4.0,1243139986 +380,58025,2.5,1219555100 +380,58154,3.0,1256498720 +380,58156,2.0,1357606451 +380,58295,4.0,1255197540 +380,58297,2.5,1262394482 +380,58559,5.0,1229224319 +380,58803,2.5,1262394420 +380,58839,2.5,1229224486 +380,58972,2.5,1215786604 +380,58998,4.0,1243140234 +380,59022,3.5,1215786528 +380,59037,2.0,1423240471 +380,59126,4.0,1238885997 +380,59315,4.0,1224441504 +380,59369,3.5,1237742818 +380,59594,3.0,1258734941 +380,59784,4.0,1243140462 +380,59810,4.5,1225671633 +380,60040,3.0,1229224418 +380,60069,4.0,1229224381 +380,60072,3.5,1229224471 +380,60074,3.5,1229224519 +380,60684,4.5,1278108067 +380,60756,4.0,1229224438 +380,61024,3.5,1304471496 +380,61132,4.0,1229224414 +380,61350,2.0,1265136805 +380,61352,3.5,1284175708 +380,61729,4.0,1246056054 +380,62155,3.5,1304471470 +380,62434,3.5,1304471463 +380,62437,3.5,1238885983 +380,62733,1.5,1280631804 +380,63072,4.0,1278107479 +380,63082,4.0,1231019895 +380,63113,3.5,1367968793 +380,63131,4.0,1265136712 +380,63859,4.0,1259093535 +380,64497,2.5,1237742861 +380,64614,4.0,1280193744 +380,64839,3.5,1341073231 +380,64957,4.0,1273036263 +380,65230,2.5,1325192031 +380,65642,3.0,1246081891 +380,65682,3.0,1262394463 +380,66934,4.0,1271694116 +380,67087,4.0,1265136692 +380,67267,3.5,1304471417 +380,67408,3.5,1304471448 +380,67734,4.0,1304471228 +380,67923,2.0,1370885731 +380,67997,3.5,1274651943 +380,68073,2.5,1304471413 +380,68159,3.5,1278729428 +380,68205,3.5,1272693158 +380,68237,4.0,1268067296 +380,68358,4.0,1253942898 +380,68791,4.0,1243784347 +380,68848,4.0,1285369269 +380,68952,3.5,1267468396 +380,68954,4.5,1245594146 +380,69122,4.5,1248563695 +380,69278,2.0,1357606461 +380,69436,1.5,1325192167 +380,69526,1.0,1310742995 +380,69606,1.5,1325191824 +380,69757,5.0,1284220402 +380,69951,3.0,1330910373 +380,70286,3.5,1250898312 +380,70336,2.5,1325191801 +380,70565,2.0,1325191835 +380,70597,2.5,1265136637 +380,70599,3.0,1284326108 +380,71057,3.5,1269482633 +380,71156,5.0,1269833118 +380,71205,3.5,1284217254 +380,71254,2.0,1325191809 +380,71264,4.0,1330910357 +380,71464,2.5,1283791912 +380,71466,3.5,1337908785 +380,71520,2.5,1325191862 +380,71530,3.0,1304471915 +380,71535,4.5,1290712046 +380,71668,2.0,1325191765 +380,71732,4.0,1282928423 +380,71745,2.0,1284522674 +380,72011,4.0,1268766965 +380,72308,4.0,1325191647 +380,72378,1.5,1325192174 +380,72489,4.0,1271482199 +380,72641,3.5,1304471147 +380,72731,2.0,1289705829 +380,72998,4.0,1261333933 +380,73015,2.5,1289761995 +380,73017,4.0,1262394512 +380,73023,3.0,1330910161 +380,73266,4.0,1278729262 +380,73268,3.0,1266685912 +380,73321,3.5,1279210727 +380,74275,4.0,1304470982 +380,74324,4.0,1284522963 +380,74458,4.0,1299351250 +380,74668,3.0,1278107490 +380,74685,4.0,1278729132 +380,74789,3.5,1268067320 +380,74795,3.5,1304471397 +380,75440,4.5,1357606444 +380,75985,3.0,1283791799 +380,76077,3.5,1282533639 +380,76093,3.5,1305558840 +380,76210,4.0,1272823168 +380,76251,4.5,1299351237 +380,76293,2.0,1325192043 +380,77364,3.5,1325191891 +380,77561,3.5,1289427383 +380,78209,4.5,1277136471 +380,78467,3.0,1325192107 +380,78469,2.5,1325192026 +380,78499,4.0,1304471106 +380,78703,3.5,1304471163 +380,79057,3.5,1292461398 +380,79091,3.5,1298682638 +380,79132,5.0,1280631729 +380,79185,2.0,1307719534 +380,79293,3.5,1325192053 +380,79299,2.5,1330910272 +380,79428,2.0,1325191779 +380,79702,5.0,1320206110 +380,80126,4.0,1325191687 +380,80166,2.5,1345582769 +380,80219,3.5,1299351013 +380,80363,3.5,1325191937 +380,80463,4.0,1357606195 +380,80489,4.0,1314630989 +380,80549,4.0,1289705853 +380,80693,3.5,1302052252 +380,80727,4.0,1304470960 +380,80831,3.5,1342972145 +380,80906,4.0,1302052203 +380,80917,3.0,1299351034 +380,81229,4.0,1298682646 +380,81516,4.0,1325191727 +380,81537,3.0,1304471007 +380,81564,4.0,1302052263 +380,81591,4.0,1330910129 +380,81782,3.5,1325191656 +380,81784,1.5,1325191613 +380,81847,4.0,1302650383 +380,82095,2.0,1304471048 +380,82202,2.5,1306518302 +380,82459,5.0,1354053689 +380,82461,3.5,1294449337 +380,82534,3.0,1345582482 +380,82852,1.5,1325192114 +380,83134,3.5,1348099816 +380,83613,2.5,1325191249 +380,83910,2.0,1325192084 +380,84152,4.5,1331684327 +380,84154,4.0,1432326972 +380,84160,3.5,1321405878 +380,84374,2.5,1352137991 +380,84392,4.0,1342972130 +380,84615,3.5,1312343884 +380,84772,3.0,1313442377 +380,84944,3.5,1330910332 +380,84954,2.5,1312343906 +380,85022,2.5,1313442428 +380,85131,2.5,1305558712 +380,85213,4.0,1330806443 +380,85397,2.0,1325192141 +380,85412,3.0,1314631004 +380,85510,4.0,1312343802 +380,86190,3.5,1335673595 +380,86293,2.0,1365440656 +380,86320,3.0,1330910443 +380,86332,3.0,1333408638 +380,86644,1.0,1370885715 +380,86833,4.0,1309904415 +380,86911,3.0,1339735415 +380,87232,4.0,1337908744 +380,87298,3.5,1325868326 +380,87306,2.5,1339735378 +380,87430,3.0,1333408750 +380,87485,2.5,1325191696 +380,87660,4.5,1341073417 +380,87869,3.0,1321405906 +380,88163,2.0,1341073290 +380,88405,3.5,1352137932 +380,88672,3.5,1325868275 +380,88744,3.0,1324429219 +380,88785,2.5,1345582728 +380,88812,3.0,1344876409 +380,89039,4.0,1345582450 +380,89047,3.5,1359520936 +380,89072,3.5,1325868216 +380,89470,4.0,1344290433 +380,89492,4.0,1357606214 +380,89745,4.0,1370732992 +380,89804,4.0,1370733128 +380,90405,4.0,1357606232 +380,90439,4.0,1341073397 +380,90719,3.5,1363372968 +380,90866,3.5,1352138013 +380,91077,3.5,1377901221 +380,91094,4.5,1325192254 +380,91483,2.5,1398564593 +380,91500,3.0,1392506403 +380,91529,4.0,1377901054 +380,91542,3.5,1365725107 +380,91622,2.5,1346648120 +380,91658,4.0,1370885530 +380,91842,3.0,1363548629 +380,91974,3.0,1358278456 +380,92234,2.5,1354053596 +380,92420,3.0,1344290120 +380,92694,3.5,1382395889 +380,93498,4.0,1334105106 +380,93510,3.5,1367424512 +380,93512,3.5,1346648156 +380,93840,3.5,1353864014 +380,94466,5.0,1441399089 +380,94478,2.5,1372691948 +380,94799,4.0,1377547507 +380,94864,3.5,1365440613 +380,94953,2.0,1389026524 +380,94959,3.5,1359996248 +380,95088,3.5,1367424496 +380,95307,2.5,1365440641 +380,95441,4.0,1341630259 +380,95510,2.5,1405036374 +380,95720,3.0,1372691922 +380,95875,3.5,1363548593 +380,96079,4.0,1386614981 +380,96110,3.0,1357606431 +380,96588,4.0,1383351746 +380,96610,4.0,1383351703 +380,96655,4.0,1392506399 +380,96728,3.0,1374511071 +380,96737,3.5,1357606293 +380,97304,4.0,1383603101 +380,97306,4.0,1361462409 +380,97752,2.0,1423240458 +380,97913,4.0,1405036192 +380,97938,4.0,1391314474 +380,98369,3.0,1369842629 +380,98961,4.0,1392506365 +380,99007,3.5,1370730038 +380,99117,2.5,1389026490 +380,99437,3.5,1358019304 +380,100383,4.0,1361816465 +380,100450,3.5,1363548526 +380,101285,3.0,1386614778 +380,101362,2.0,1386614831 +380,101525,4.0,1405036386 +380,101612,1.5,1389026412 +380,101741,3.5,1423240615 +380,101864,3.5,1390928637 +380,102123,4.0,1389026457 +380,102125,3.5,1405036355 +380,102407,3.5,1405036519 +380,102445,4.0,1405036200 +380,102819,3.5,1369842853 +380,102903,2.5,1378240198 +380,103042,3.5,1405036451 +380,103228,3.5,1405036345 +380,103249,4.0,1372432799 +380,103253,2.5,1390928719 +380,104841,3.5,1398564633 +380,104879,4.0,1405036195 +380,106002,3.5,1392933714 +380,106920,4.0,1432326917 +380,108932,4.0,1423240541 +380,109487,4.0,1417229264 +380,110730,2.0,1432326926 +380,111743,3.5,1402336295 +380,112623,2.5,1420491929 +380,115713,4.5,1432326899 +380,120799,2.0,1465156759 +380,122882,4.0,1460162750 +380,122886,4.0,1451584145 +380,122900,4.0,1465156677 +380,122902,1.5,1465156786 +380,122904,5.0,1460162747 +380,127152,4.0,1465156465 +380,131724,5.0,1465156469 +380,132796,1.0,1460162844 +380,133419,3.5,1434470933 +380,134130,4.0,1444664409 +380,134393,3.5,1465156737 +380,135518,2.5,1465156713 +380,135861,4.0,1441399394 +380,136598,3.0,1465156743 +380,138036,4.0,1465156659 +380,139385,4.0,1457979024 +380,140711,3.5,1465156767 +380,140928,2.0,1457978987 +381,5,4.0,1018646002 +381,25,5.0,1018682762 +381,36,5.0,1018682625 +381,47,1.0,1018646183 +381,186,3.0,1018645833 +381,207,4.0,1018682054 +381,217,3.0,1018682775 +381,218,2.0,1018682944 +381,252,3.0,1018646618 +381,270,3.0,1018682880 +381,289,5.0,1018682568 +381,339,4.0,1018646510 +381,356,3.0,1018645727 +381,360,3.0,1018646257 +381,361,3.0,1018681850 +381,368,3.0,1018681695 +381,380,2.0,1018683370 +381,412,4.0,1018682453 +381,442,1.0,1018646389 +381,480,3.0,1018645895 +381,539,4.0,1018682215 +381,588,5.0,1018683706 +381,593,2.0,1018683479 +381,595,5.0,1018682666 +381,597,3.0,1018646015 +381,608,1.0,1018682799 +381,697,4.0,1018682762 +381,708,5.0,1018681765 +381,720,5.0,1018646609 +381,780,2.0,1018646665 +381,786,4.0,1018646778 +381,830,4.0,1018646063 +381,832,4.0,1018683212 +381,848,3.0,1018646710 +381,858,5.0,1018645753 +381,914,4.0,1018646199 +381,1035,5.0,1018682431 +381,1036,3.0,1018683305 +381,1186,4.0,1018682994 +381,1200,2.0,1018645865 +381,1225,5.0,1018646404 +381,1270,4.0,1018645799 +381,1367,3.0,1018646479 +381,1485,3.0,1018646488 +381,1488,3.0,1018682926 +381,1499,1.0,1018682282 +381,1580,4.0,1018646120 +381,1584,2.0,1018682542 +381,1603,1.0,1018646240 +381,1608,1.0,1018681624 +381,1678,5.0,1018646434 +381,1721,5.0,1018683720 +381,1801,3.0,1018682074 +381,1917,2.0,1018646733 +381,1918,1.0,1018682007 +381,1961,5.0,1018645812 +381,2001,1.0,1018683212 +381,2058,4.0,1018682074 +381,2085,3.0,1018682179 +381,2167,2.0,1018681585 +381,2197,3.0,1018646166 +381,2294,5.0,1018683609 +381,2324,5.0,1018682215 +381,2364,2.0,1018682687 +381,2448,1.0,1018682714 +381,2469,3.0,1018683038 +381,2505,1.0,1018683545 +381,2581,3.0,1018646643 +381,2671,2.0,1018681730 +381,2683,4.0,1018682418 +381,2687,3.0,1018682926 +381,2712,2.0,1018683282 +381,2762,5.0,1018681926 +381,2856,4.0,1018646257 +381,2916,2.0,1018682298 +381,2953,2.0,1018646789 +381,3054,5.0,1018683107 +381,3100,3.0,1018681624 +381,3114,5.0,1018682469 +381,3157,3.0,1018646002 +381,3173,1.0,1018683493 +381,3186,4.0,1018682817 +381,3189,4.0,1018646609 +381,3256,2.0,1018683370 +381,3299,2.0,1018646166 +381,3452,1.0,1018682131 +381,3462,5.0,1018682378 +381,3535,1.0,1018683160 +381,3578,3.0,1018645883 +381,3614,3.0,1018681850 +381,3615,5.0,1018682726 +381,3751,4.0,1018645911 +381,3753,2.0,1018682158 +381,3785,3.0,1018645784 +381,3826,2.0,1018681711 +381,3910,5.0,1018683751 +381,3978,4.0,1018646778 +381,3994,3.0,1018646724 +381,3998,1.0,1018682190 +381,4014,3.0,1018683267 +381,4022,3.0,1018682269 +381,4069,3.0,1018646434 +381,4161,4.0,1018682522 +381,4270,2.0,1018683195 +381,4306,5.0,1018646350 +381,4447,5.0,1018682944 +381,4474,5.0,1018646778 +381,4569,1.0,1018683305 +381,4814,5.0,1018683560 +381,5218,5.0,1018683388 +382,1,3.5,1371772711 +382,2,3.0,1371780062 +382,5,3.0,1371829454 +382,7,5.0,1371778225 +382,11,5.0,1371773175 +382,17,4.0,1371773255 +382,34,4.0,1371772733 +382,39,2.0,1371780980 +382,48,3.5,1371777858 +382,62,3.5,1386364784 +382,104,1.0,1371829029 +382,150,3.0,1371773058 +382,158,2.5,1371780162 +382,216,2.0,1371828398 +382,231,1.0,1371780933 +382,260,3.5,1371780922 +382,261,5.0,1371773230 +382,262,3.0,1371825895 +382,265,2.0,1371781558 +382,317,3.0,1371773206 +382,318,3.0,1371773051 +382,339,2.0,1371827705 +382,356,3.0,1371829114 +382,364,3.0,1371772704 +382,500,3.0,1371829161 +382,529,4.0,1371829957 +382,539,3.0,1371780537 +382,586,3.0,1371780057 +382,588,3.0,1371777878 +382,595,4.0,1371777868 +382,605,4.0,1371827852 +382,783,3.0,1371778034 +382,838,3.0,1371780720 +382,852,3.0,1371780154 +382,899,5.0,1371781208 +382,900,3.0,1371783550 +382,916,4.0,1371781646 +382,953,4.0,1371782216 +382,988,2.5,1371781821 +382,1020,4.0,1371828977 +382,1021,3.0,1371829749 +382,1022,3.0,1371772409 +382,1028,4.0,1371781135 +382,1035,5.0,1371780423 +382,1042,2.5,1371781814 +382,1073,3.0,1371780951 +382,1197,4.0,1371772622 +382,1225,2.5,1371773160 +382,1230,2.5,1371773217 +382,1246,2.0,1371825836 +382,1247,2.0,1371829459 +382,1282,2.0,1371827581 +382,1288,2.0,1371781087 +382,1299,1.0,1371825793 +382,1302,4.0,1371783330 +382,1367,3.0,1371780138 +382,1380,3.5,1386364821 +382,1387,2.0,1371773146 +382,1393,3.0,1371828916 +382,1416,3.0,1371772431 +382,1449,2.0,1371826001 +382,1517,1.0,1371783509 +382,1569,2.5,1371827200 +382,1580,3.0,1371780052 +382,1584,2.0,1371773152 +382,1682,2.0,1371772934 +382,1688,3.5,1371777853 +382,1704,3.0,1371829191 +382,1721,2.0,1371825485 +382,1784,3.0,1371829243 +382,1835,2.0,1371780271 +382,1917,2.0,1371781019 +382,1957,4.0,1371778126 +382,2018,3.0,1371777895 +382,2036,2.0,1371829742 +382,2042,4.0,1371829755 +382,2059,5.0,1371773239 +382,2080,4.0,1371777804 +382,2081,3.0,1371777811 +382,2082,4.0,1371828998 +382,2084,4.0,1371781792 +382,2085,3.5,1371777786 +382,2087,4.0,1371777907 +382,2125,3.0,1371781603 +382,2324,3.0,1371781052 +382,2394,4.0,1371780108 +382,2396,3.0,1371780994 +382,2424,3.5,1386364728 +382,2432,4.0,1371766321 +382,2485,2.0,1371828438 +382,2501,3.5,1386364772 +382,2502,1.0,1371772883 +382,2571,3.0,1371773070 +382,2572,3.0,1371786902 +382,2581,3.0,1371781299 +382,2628,3.0,1371780047 +382,2671,3.0,1371827177 +382,2724,2.0,1371827168 +382,2918,2.0,1371787490 +382,2997,1.0,1371829200 +382,3051,2.0,1371786281 +382,3098,3.0,1371783365 +382,3114,3.0,1371773012 +382,3148,2.0,1371786418 +382,3160,2.0,1371780095 +382,3189,3.0,1371786374 +382,3270,5.0,1371766376 +382,3360,3.0,1371783440 +382,3408,3.0,1371781076 +382,3489,4.0,1371777957 +382,3549,3.0,1371786795 +382,3571,1.0,1371786188 +382,3594,5.0,1371781275 +382,3753,2.0,1371786912 +382,3825,2.5,1371781267 +382,3882,3.0,1371787509 +382,3897,2.0,1371772931 +382,3911,3.0,1371780090 +382,3916,4.0,1371786739 +382,3948,2.0,1371829076 +382,3967,3.0,1371828500 +382,3996,2.0,1371829213 +382,4014,4.0,1371781592 +382,4022,3.0,1371773184 +382,4025,3.0,1371827890 +382,4027,2.5,1371772911 +382,4039,3.0,1371781783 +382,4054,3.0,1371828683 +382,4090,2.0,1371780812 +382,4226,1.0,1371779758 +382,4246,3.0,1371780712 +382,4299,2.0,1371786885 +382,4306,4.0,1371772679 +382,4372,2.0,1371772545 +382,4700,4.0,1371780214 +382,4745,0.5,1371828765 +382,4816,1.0,1371780078 +382,4823,3.0,1371780211 +382,4880,2.0,1371786405 +382,4886,5.0,1371772669 +382,4896,4.0,1371773002 +382,4963,3.0,1371826049 +382,4973,5.0,1371772584 +382,4993,4.0,1375389423 +382,4995,3.0,1371772937 +382,5064,2.5,1371825566 +382,5066,2.0,1371828384 +382,5102,4.0,1371829008 +382,5267,3.0,1371783347 +382,5299,2.0,1371829432 +382,5349,3.0,1371773282 +382,5377,2.5,1371780706 +382,5415,3.0,1371772537 +382,5444,4.0,1371780202 +382,5502,2.0,1371772958 +382,5620,2.0,1371829449 +382,5816,4.0,1371781160 +382,5943,2.0,1371781897 +382,5952,4.0,1371780940 +382,5957,3.0,1371778344 +382,5989,2.0,1371825525 +382,5995,3.0,1371772923 +382,6155,2.5,1371778265 +382,6218,3.0,1371828380 +382,6296,2.0,1371825984 +382,6331,3.0,1371830059 +382,6367,1.0,1371827418 +382,6370,3.0,1371786949 +382,6377,4.5,1371772666 +382,6385,3.0,1371772895 +382,6539,2.5,1371787372 +382,6565,4.0,1371827036 +382,6593,3.0,1371781357 +382,6706,2.0,1371786995 +382,6711,2.0,1371781116 +382,6785,2.0,1371786855 +382,6863,4.0,1371828359 +382,6936,5.0,1371773316 +382,6942,3.5,1371772779 +382,6944,3.0,1371829402 +382,7153,4.0,1371780959 +382,7154,4.0,1371827126 +382,7162,2.0,1371766264 +382,7164,4.0,1371777949 +382,7254,0.5,1371772641 +382,7263,5.0,1371766338 +382,7316,1.0,1371827250 +382,7320,3.0,1371828707 +382,7361,1.0,1371826970 +382,7375,4.0,1371828734 +382,7451,3.0,1371781325 +382,7836,3.0,1371828188 +382,8360,3.0,1371772849 +382,8368,4.0,1371772717 +382,8376,1.0,1371780597 +382,8575,2.0,1371786976 +382,8641,1.0,1371829062 +382,8643,3.5,1371781290 +382,8784,3.0,1371772900 +382,8808,3.0,1371781965 +382,8866,3.5,1386364730 +382,8873,3.0,1371827688 +382,8911,2.5,1371827732 +382,8916,3.0,1371781877 +382,8961,5.0,1371772672 +382,8965,3.0,1371777985 +382,8970,3.5,1371772773 +382,8972,3.0,1371780181 +382,25937,2.0,1371786839 +382,26133,4.0,1371782235 +382,27706,2.0,1371780186 +382,27808,2.0,1371786268 +382,27815,3.0,1371825857 +382,27821,3.0,1371766351 +382,30825,3.0,1371829098 +382,32289,5.0,1371772831 +382,32598,4.0,1371783314 +382,33639,3.0,1371772692 +382,33679,2.5,1371826101 +382,34332,3.0,1371828408 +382,34336,3.0,1371780362 +382,36401,1.0,1371826888 +382,38038,3.0,1371782177 +382,39183,2.0,1371782283 +382,39292,2.0,1371782704 +382,39307,4.0,1371826998 +382,40629,5.0,1371779818 +382,40815,4.0,1371779941 +382,40826,2.5,1371781750 +382,41285,1.0,1371787188 +382,41566,5.0,1371779936 +382,41573,5.0,1371773087 +382,42015,2.0,1371786905 +382,42958,3.5,1387522452 +382,43917,3.0,1371786361 +382,45221,2.0,1371781381 +382,45447,2.0,1371828692 +382,45517,3.0,1371780775 +382,46062,4.0,1371780445 +382,46578,5.0,1371786297 +382,46919,4.0,1371786328 +382,46967,2.0,1371787257 +382,46972,3.5,1386364776 +382,47382,4.0,1371781283 +382,48385,1.0,1371780070 +382,48791,5.0,1371780622 +382,49286,3.0,1371778367 +382,49647,3.5,1371777996 +382,50872,5.0,1371772686 +382,51084,2.0,1371781438 +382,51705,2.0,1371786962 +382,51884,2.0,1371827436 +382,52287,3.0,1371777772 +382,52975,3.5,1386364814 +382,53123,4.0,1371781947 +382,54001,4.0,1371779950 +382,54276,4.0,1371780339 +382,55267,4.0,1371786260 +382,55280,3.0,1371766357 +382,56171,2.0,1371782082 +382,56367,2.5,1371780666 +382,56949,3.0,1371778248 +382,58347,4.0,1371781609 +382,58889,3.0,1371771812 +382,59258,3.5,1371781340 +382,59501,4.0,1371780402 +382,60069,3.0,1371772663 +382,60397,5.0,1371781771 +382,61071,4.0,1371766640 +382,61123,3.0,1371780451 +382,62155,2.0,1371787466 +382,62912,4.0,1371780448 +382,65230,3.0,1371786252 +382,66203,2.0,1371781913 +382,68135,4.0,1371781308 +382,68269,5.0,1389036408 +382,68838,4.0,1371781241 +382,68954,4.0,1371772674 +382,69406,2.0,1371827879 +382,69757,3.0,1371779797 +382,69844,4.0,1371779945 +382,70293,4.0,1371781582 +382,72641,5.0,1371773095 +382,72737,3.0,1371766473 +382,73290,3.0,1371786353 +382,76093,5.0,1371772682 +382,78101,2.0,1371828102 +382,78316,4.0,1371781621 +382,78499,4.0,1371772677 +382,79091,4.0,1374545113 +382,79824,5.0,1371767056 +382,80549,3.0,1371781368 +382,80551,1.0,1371827224 +382,80839,5.0,1371772760 +382,81834,4.0,1371772783 +382,81845,5.0,1371772860 +382,81847,5.0,1371772695 +382,82169,4.5,1371780409 +382,84954,2.0,1371786578 +382,86882,3.0,1371773102 +382,88125,4.0,1371772940 +382,88810,5.0,1371772970 +382,89194,3.0,1371825592 +382,89492,3.5,1386364790 +382,91535,2.5,1371772808 +382,91653,4.0,1371786389 +382,91886,4.0,1371780647 +382,94959,4.0,1371781505 +382,95167,4.0,1371780762 +382,96821,2.0,1371780679 +382,99149,3.5,1389940607 +382,101112,3.0,1386364764 +382,101612,3.0,1372825009 +382,106696,5.0,1386364528 +383,1,5.0,852806429 +383,6,3.0,852809757 +383,9,2.0,852809531 +383,14,3.0,852806963 +383,21,3.0,789652009 +383,25,2.0,852806430 +383,29,3.0,852806794 +383,32,5.0,852806429 +383,34,5.0,852810527 +383,36,3.0,852806794 +383,47,5.0,789652009 +383,52,4.0,852809131 +383,62,4.0,852806430 +383,68,3.0,852809018 +383,83,3.0,852809207 +383,95,3.0,852806429 +383,100,3.0,852809531 +383,110,3.0,852810325 +383,141,3.0,852806429 +383,150,4.0,852810325 +383,198,3.0,852810482 +383,260,5.0,852810326 +383,288,3.0,852810482 +383,296,5.0,852810326 +383,356,4.0,852810325 +383,376,3.0,852809443 +383,380,2.0,852810326 +383,457,5.0,852810325 +383,494,4.0,852808842 +383,562,4.0,852806600 +383,608,5.0,852808600 +383,628,4.0,852809018 +383,637,3.0,852806963 +383,640,3.0,852809687 +383,648,4.0,852806429 +383,671,3.0,852806794 +383,704,3.0,852809832 +383,707,2.0,852810015 +383,733,3.0,852806896 +383,736,3.0,852806429 +383,748,3.0,852806896 +383,766,5.0,852808661 +383,780,4.0,852806429 +383,784,2.0,852808600 +383,786,3.0,852808492 +383,798,3.0,852809443 +383,802,3.0,852806896 +383,805,3.0,852806600 +383,832,4.0,852806896 +383,836,2.0,852809531 +383,1046,3.0,852809207 +383,1049,4.0,852808842 +383,1073,3.0,852806963 +383,1079,3.0,789652009 +383,1080,4.0,852810326 +383,1111,2.0,852809319 +383,1183,3.0,852808600 +383,1198,4.0,852810527 +383,1356,4.0,852806794 +383,1357,5.0,852808661 +383,1419,3.0,852810136 +383,4424,3.0,852809355 +384,10,3.5,1168644826 +384,19,3.0,1153417956 +384,23,3.0,1153762438 +384,34,3.0,1153498169 +384,47,4.0,1153740744 +384,70,4.0,1153759985 +384,95,2.0,1156526026 +384,110,4.5,1153421550 +384,145,3.5,1153158050 +384,153,3.0,1153157953 +384,160,1.0,1153149583 +384,165,3.5,1194003698 +384,168,3.0,1153937344 +384,172,2.0,1153936899 +384,173,4.0,1153149608 +384,193,2.5,1206313648 +384,223,3.0,1153740407 +384,231,4.0,1153158196 +384,260,4.5,1153325319 +384,288,4.5,1166395798 +384,296,4.5,1153156842 +384,303,3.0,1153949948 +384,315,2.5,1153762505 +384,344,3.5,1153417952 +384,353,3.5,1181585615 +384,356,3.0,1154365030 +384,361,2.5,1153740561 +384,364,3.0,1154367800 +384,367,3.5,1153417975 +384,372,3.0,1153763392 +384,377,4.0,1153501701 +384,379,3.5,1154110049 +384,380,4.5,1153157787 +384,393,2.5,1154110171 +384,420,3.0,1153149573 +384,434,4.0,1153762441 +384,442,4.0,1153157856 +384,454,3.0,1153740666 +384,457,3.0,1153762128 +384,466,4.0,1153149654 +384,480,3.5,1153502713 +384,481,3.0,1153740760 +384,485,4.0,1153157806 +384,500,3.0,1156525410 +384,507,3.0,1153986071 +384,519,3.0,1153502631 +384,520,3.0,1154110666 +384,527,3.0,1153501193 +384,541,4.0,1153158107 +384,589,5.0,1153155386 +384,592,4.0,1153157930 +384,648,4.0,1153498208 +384,653,1.5,1153149587 +384,673,3.0,1153573943 +384,733,5.0,1153158234 +384,778,3.0,1160340256 +384,780,3.0,1153763290 +384,784,1.5,1153762614 +384,786,3.0,1153503065 +384,798,2.0,1153762456 +384,836,2.0,1153937213 +384,880,1.5,1153866059 +384,990,2.5,1154110089 +384,996,3.5,1154549975 +384,1027,3.5,1154110669 +384,1047,3.5,1154366658 +384,1059,4.0,1153949927 +384,1092,3.0,1153502611 +384,1196,5.0,1153325345 +384,1198,4.0,1153763613 +384,1210,4.5,1153325343 +384,1214,3.5,1153937474 +384,1240,4.0,1153155394 +384,1258,4.0,1154109973 +384,1270,4.0,1153325387 +384,1275,3.5,1153501709 +384,1278,3.0,1153149669 +384,1291,4.5,1153501104 +384,1377,3.5,1153157957 +384,1405,3.0,1153753832 +384,1407,4.0,1153498632 +384,1408,3.0,1164578817 +384,1466,3.0,1154108634 +384,1479,3.0,1153866039 +384,1485,3.0,1153762629 +384,1488,3.0,1153740737 +384,1497,3.5,1154110168 +384,1499,1.0,1154110582 +384,1527,3.0,1153501715 +384,1544,3.0,1153502723 +384,1552,4.0,1153158246 +384,1562,3.0,1153157939 +384,1569,3.0,1153740927 +384,1573,4.5,1153158219 +384,1580,4.0,1153501518 +384,1587,3.5,1153503062 +384,1589,2.5,1153762453 +384,1608,3.0,1153417461 +384,1616,3.5,1153741082 +384,1644,3.0,1153949665 +384,1653,2.0,1153149600 +384,1658,3.0,1153740856 +384,1676,3.5,1153149689 +384,1682,3.0,1153418019 +384,1717,3.0,1153498638 +384,1721,4.0,1153325720 +384,1732,3.5,1203852511 +384,1801,2.5,1153417988 +384,1805,3.0,1153949610 +384,1835,2.5,1153740552 +384,1909,4.0,1206735657 +384,1911,2.5,1154108177 +384,1912,2.5,1153759995 +384,1917,2.5,1153149535 +384,1918,3.5,1153937428 +384,1923,4.5,1153158170 +384,2000,4.0,1153501032 +384,2001,4.0,1153937409 +384,2002,3.5,1153937430 +384,2006,3.5,1153417991 +384,2011,4.5,1153325390 +384,2012,3.5,1153325393 +384,2028,3.0,1153763616 +384,2054,2.5,1153149604 +384,2115,4.0,1153501478 +384,2153,2.0,1154107797 +384,2167,3.5,1153158093 +384,2181,3.0,1153937300 +384,2193,2.5,1153501613 +384,2279,3.0,1153949693 +384,2291,3.5,1154108753 +384,2329,4.0,1153421583 +384,2353,2.5,1153149680 +384,2387,3.5,1153740921 +384,2403,4.0,1153762465 +384,2404,3.0,1153762485 +384,2424,2.0,1154365167 +384,2428,3.0,1199317347 +384,2541,3.5,1153417924 +384,2542,4.5,1153155161 +384,2571,4.0,1153325636 +384,2605,2.5,1153937327 +384,2628,4.0,1153325356 +384,2640,3.5,1153149623 +384,2671,4.0,1154109146 +384,2701,3.0,1153763301 +384,2706,4.0,1153155656 +384,2710,1.5,1153149552 +384,2712,3.0,1153740657 +384,2716,3.5,1181585846 +384,2717,3.0,1153985946 +384,2762,3.0,1153498614 +384,2808,3.0,1154110051 +384,2856,3.0,1153157501 +384,2858,4.0,1153158278 +384,2916,3.0,1153503049 +384,2947,4.0,1153937297 +384,2948,4.0,1153937294 +384,2949,3.5,1153937288 +384,2959,4.0,1153157641 +384,2985,4.0,1153502626 +384,2986,3.0,1153502629 +384,2987,4.0,1154365034 +384,2997,4.0,1153740915 +384,3081,4.0,1154108617 +384,3113,3.0,1153503091 +384,3173,3.5,1171807687 +384,3268,2.5,1153762508 +384,3273,3.0,1153498640 +384,3300,3.0,1153408836 +384,3409,2.5,1153949715 +384,3484,3.0,1153417609 +384,3489,3.0,1153763535 +384,3527,3.5,1153157827 +384,3535,2.5,1168208412 +384,3578,4.0,1153501025 +384,3617,3.5,1154252767 +384,3623,4.0,1153149659 +384,3635,3.5,1153501095 +384,3717,3.0,1153740549 +384,3752,4.0,1153243424 +384,3785,4.0,1153157449 +384,3793,3.0,1153501317 +384,3798,3.5,1154365096 +384,3821,2.5,1154108170 +384,3948,4.0,1153326259 +384,3977,3.0,1153740911 +384,3984,2.5,1153937274 +384,3986,3.0,1153503093 +384,3997,2.0,1154367295 +384,4011,4.0,1153155218 +384,4018,3.0,1153937445 +384,4023,2.5,1156525368 +384,4085,3.5,1153501039 +384,4200,3.5,1154110067 +384,4226,4.0,1154110499 +384,4228,3.0,1153985951 +384,4246,4.0,1153418432 +384,4262,4.0,1153950106 +384,4306,3.0,1153740907 +384,4308,5.0,1153155342 +384,4310,2.5,1153418229 +384,4344,3.0,1154550292 +384,4351,3.5,1153936739 +384,4369,2.5,1153762036 +384,4388,3.5,1153157453 +384,4447,3.0,1156525443 +384,4558,3.0,1153503067 +384,4638,2.5,1153502726 +384,4660,3.5,1162724125 +384,4673,3.0,1153762511 +384,4718,3.5,1153155660 +384,4720,2.5,1153741074 +384,4776,3.5,1156525246 +384,4816,5.0,1153155359 +384,4848,4.0,1153865889 +384,4878,2.0,1153325809 +384,4890,3.0,1194779997 +384,4896,3.0,1153501693 +384,4901,2.5,1153740728 +384,4963,4.0,1153158943 +384,4974,3.0,1153861554 +384,4993,4.0,1153325557 +384,5010,4.0,1153501093 +384,5040,3.5,1153503095 +384,5093,2.5,1153503106 +384,5134,3.5,1153155787 +384,5218,3.5,1153158426 +384,5219,2.0,1153157989 +384,5254,2.5,1153158099 +384,5266,3.0,1154364909 +384,5293,1.5,1153950287 +384,5296,3.0,1153740900 +384,5299,2.5,1154252791 +384,5349,5.0,1153157895 +384,5377,2.5,1153470890 +384,5378,4.0,1153325361 +384,5388,1.5,1153950184 +384,5414,4.0,1153420196 +384,5418,3.0,1153501036 +384,5445,4.5,1153149615 +384,5507,4.5,1153157668 +384,5574,3.0,1162724059 +384,5609,3.0,1177679707 +384,5628,3.0,1153865834 +384,5784,2.5,1153159289 +384,5809,3.5,1156525892 +384,5816,3.0,1153501620 +384,5903,4.0,1153501361 +384,5915,3.5,1153762527 +384,5952,4.5,1153325564 +384,5954,4.0,1157896594 +384,5956,4.0,1153498596 +384,5957,0.5,1154367045 +384,5989,2.5,1153763523 +384,6003,4.5,1153759992 +384,6157,2.5,1153157972 +384,6188,3.0,1153501330 +384,6249,2.5,1199317158 +384,6263,2.5,1156526004 +384,6290,2.5,1154252571 +384,6333,4.0,1153501021 +384,6345,1.5,1154366898 +384,6365,4.0,1153325650 +384,6367,4.0,1153418409 +384,6377,3.0,1154367782 +384,6378,2.5,1153501230 +384,6379,2.0,1153159265 +384,6482,2.0,1153158186 +384,6502,2.0,1154253026 +384,6503,2.5,1153740892 +384,6537,3.5,1153155389 +384,6539,4.5,1153155499 +384,6541,2.0,1153937340 +384,6548,4.0,1153158052 +384,6595,2.5,1153949815 +384,6618,2.5,1153950191 +384,6664,4.0,1153503073 +384,6707,2.0,1163369681 +384,6708,3.5,1156525349 +384,6709,2.0,1154550243 +384,6754,2.5,1153243719 +384,6763,2.0,1153763365 +384,6793,3.0,1154367418 +384,6800,3.0,1153762450 +384,6835,4.0,1153937479 +384,6868,4.0,1153866020 +384,6873,4.0,1203852520 +384,6874,4.5,1153157065 +384,6880,3.0,1182095090 +384,6888,3.0,1153157455 +384,6934,4.0,1153325647 +384,6953,3.0,1154367113 +384,6957,3.5,1153865847 +384,7004,3.0,1153503077 +384,7007,3.0,1153936617 +384,7143,4.0,1153501013 +384,7147,4.0,1153155637 +384,7150,1.0,1154109596 +384,7153,4.5,1153149657 +384,7163,2.5,1153326546 +384,7173,2.5,1153763359 +384,7254,3.5,1177279299 +384,7265,3.0,1154518405 +384,7285,4.0,1153421531 +384,7317,4.0,1153154536 +384,7325,3.0,1153763413 +384,7346,3.0,1153865868 +384,7360,4.0,1153243574 +384,7361,4.5,1169420653 +384,7373,4.0,1153500098 +384,7438,4.0,1153157067 +384,7439,2.5,1153243753 +384,7444,1.5,1154366864 +384,7445,3.0,1153501291 +384,7448,0.5,1194687088 +384,7451,4.0,1154252816 +384,7454,2.5,1153243699 +384,7458,2.5,1153740721 +384,7569,3.0,1153937281 +384,7767,4.0,1188251910 +384,8132,3.5,1153950095 +384,8360,4.5,1153740888 +384,8371,4.0,1153157705 +384,8373,2.5,1153741065 +384,8528,4.0,1153763361 +384,8636,4.5,1153157898 +384,8640,2.5,1153418142 +384,8644,2.5,1153763286 +384,8665,2.5,1153761996 +384,8666,2.0,1153158078 +384,8798,2.5,1153740642 +384,8799,2.5,1164038275 +384,8810,2.0,1153157831 +384,8861,4.0,1153157991 +384,8870,2.5,1153757143 +384,8949,3.5,1153818870 +384,8957,4.0,1153157491 +384,8972,4.0,1199658240 +384,8981,5.0,1153155323 +384,8984,2.0,1153158950 +384,8985,2.0,1153158104 +384,27706,4.0,1153418116 +384,27831,3.5,1156369678 +384,27851,3.5,1154367666 +384,30707,4.0,1153158845 +384,30793,3.0,1154108626 +384,30812,3.5,1153949864 +384,30825,3.5,1153326239 +384,30848,2.5,1156525990 +384,31221,2.5,1153762066 +384,31420,3.5,1156718492 +384,31685,3.0,1188251867 +384,31696,2.0,1153937224 +384,32017,3.5,1167690416 +384,32031,3.0,1154367822 +384,32587,5.0,1153158148 +384,33164,3.5,1154295229 +384,33166,4.0,1153158876 +384,33493,4.5,1153325364 +384,33615,4.0,1153158415 +384,33679,2.5,1153693204 +384,33688,1.0,1153693437 +384,33794,4.0,1153157942 +384,34048,2.5,1153740637 +384,34150,2.5,1192397801 +384,34162,3.5,1153501350 +384,34319,3.5,1153326513 +384,34321,3.0,1186230443 +384,34520,3.0,1171233229 +384,36519,3.5,1159735211 +384,36529,3.0,1153158314 +384,36533,2.5,1176670883 +384,37382,4.0,1173045085 +384,37386,2.5,1156031897 +384,37733,3.0,1153157620 +384,37830,1.5,1153408760 +384,39292,2.0,1153759981 +384,39444,3.0,1156603856 +384,39446,3.5,1153573696 +384,39715,3.5,1168208495 +384,40339,3.0,1153827645 +384,41285,5.0,1153158519 +384,41566,3.0,1153827666 +384,41716,3.0,1210537804 +384,42002,3.5,1153950330 +384,42718,3.5,1171062863 +384,42723,3.5,1154549818 +384,42738,2.5,1157153417 +384,43919,2.0,1162763543 +384,43928,2.0,1174425297 +384,43932,2.0,1179698549 +384,44022,3.5,1153158429 +384,44191,3.0,1160947088 +384,44199,4.0,1153753763 +384,44665,4.5,1159134846 +384,44694,3.5,1162724092 +384,44972,2.5,1157277533 +384,45081,3.0,1165186176 +384,45186,3.5,1165622850 +384,45499,3.5,1164578889 +384,45501,2.5,1188944974 +384,45517,3.5,1156599554 +384,45720,3.0,1186308173 +384,45722,4.0,1156031925 +384,45732,3.0,1165622881 +384,45880,3.0,1164578843 +384,46578,4.0,1173015121 +384,46965,3.0,1171807617 +384,46967,3.5,1162120704 +384,46972,2.5,1194687057 +384,47044,3.0,1169420529 +384,47200,3.0,1190582038 +384,47610,2.5,1175991358 +384,47997,3.0,1207517095 +384,48082,4.0,1169420645 +384,48142,3.0,1160947058 +384,48385,1.0,1173015152 +384,48394,3.0,1183325591 +384,48516,4.0,1177279355 +384,48518,3.5,1183930540 +384,48596,3.0,1193607661 +384,48774,2.0,1170626730 +384,48780,4.5,1168208380 +384,48877,2.5,1174857826 +384,49272,4.0,1170280926 +384,49278,3.5,1178127751 +384,49286,4.0,1171807726 +384,49314,3.5,1193954319 +384,49528,2.0,1193000723 +384,49530,3.0,1199317467 +384,49649,2.0,1169248121 +384,50147,2.0,1200260337 +384,50189,2.5,1168644769 +384,50442,2.0,1182722181 +384,50794,4.0,1194266581 +384,50798,2.0,1196027197 +384,50872,4.0,1193607625 +384,51077,2.5,1189373186 +384,51255,4.5,1200867248 +384,51662,3.5,1175421862 +384,51935,3.5,1189978923 +384,52281,3.5,1181584930 +384,52458,3.5,1191496169 +384,52460,2.0,1206913086 +384,52644,3.0,1196982448 +384,52717,3.5,1210527385 +384,52722,4.5,1178127807 +384,52973,3.5,1206313623 +384,53121,2.5,1188944919 +384,53125,3.5,1180458284 +384,53322,3.0,1195503389 +384,53435,3.5,1196027153 +384,53464,3.0,1192397753 +384,53972,3.5,1194266561 +384,53996,4.5,1185700446 +384,53999,2.5,1197222113 +384,54001,3.0,1184453166 +384,54272,4.0,1189849074 +384,54286,3.5,1205625536 +384,54787,4.0,1210537775 +384,54995,3.5,1202078278 +384,54997,4.0,1206832549 +384,55232,3.0,1203852160 +384,55261,3.5,1194779891 +384,55272,3.5,1215982271 +384,55280,3.5,1211145076 +384,55282,4.0,1214773174 +384,55363,3.5,1203852097 +384,55765,3.5,1212441967 +384,55820,4.0,1205625591 +384,56156,3.5,1197838881 +384,56174,3.5,1212960869 +384,56286,2.0,1197222082 +384,56367,4.0,1210527364 +384,56757,3.5,1205625556 +384,56775,3.5,1199658251 +384,56949,3.0,1223841597 +384,57368,3.5,1211145054 +384,58559,4.0,1217196019 +384,59014,2.5,1223841566 +384,59315,4.0,1210527349 +384,59615,3.5,1212441921 +384,60040,3.0,1214773155 +384,61323,3.0,1223841553 +385,6,5.0,836679569 +385,10,3.0,836679100 +385,11,4.0,836679319 +385,16,5.0,836679592 +385,17,3.0,836679381 +385,19,3.0,836679159 +385,21,4.0,836679159 +385,22,3.0,836679569 +385,25,3.0,836679499 +385,36,4.0,836679544 +385,39,4.0,836679182 +385,45,4.0,836679709 +385,47,5.0,836679129 +385,50,5.0,836679182 +385,95,2.0,836679405 +385,105,3.0,836679499 +385,110,3.0,836679129 +385,111,5.0,836679223 +385,145,4.0,836679646 +385,150,4.0,836678950 +385,151,4.0,836679344 +385,160,2.0,836679223 +385,161,4.0,836679046 +385,163,1.0,836679592 +385,165,4.0,836678991 +385,173,3.0,836679288 +385,185,3.0,836679099 +385,196,3.0,836679319 +385,204,1.0,836679381 +385,207,3.0,836679708 +385,208,3.0,836679094 +385,218,3.0,836679671 +385,222,3.0,836679670 +385,223,3.0,836679521 +385,227,3.0,836679569 +385,230,5.0,836679621 +385,231,4.0,836679015 +385,235,5.0,836679344 +385,236,3.0,836679288 +385,237,3.0,836679544 +385,246,2.0,836679544 +385,253,3.0,836679096 +385,256,3.0,836679427 +385,261,4.0,836679381 +385,265,4.0,836679427 +385,266,3.0,836679223 +385,272,3.0,836679521 +385,273,3.0,836679569 +385,277,2.0,836679521 +385,282,4.0,836679288 +385,288,4.0,836679129 +385,292,3.0,836679046 +385,293,4.0,836679381 +385,296,5.0,836678951 +385,300,4.0,836679129 +385,315,4.0,836679256 +385,316,3.0,836679015 +385,317,3.0,836679159 +385,318,5.0,836679015 +385,337,5.0,836679319 +385,339,3.0,836679046 +385,342,3.0,836679671 +385,344,2.0,836678991 +385,348,3.0,836679592 +385,349,5.0,836678991 +385,350,4.0,836679381 +385,353,3.0,836679544 +385,356,5.0,836679223 +385,357,4.0,836679458 +385,367,1.0,836679256 +385,377,4.0,836679344 +385,380,3.0,836678953 +385,410,3.0,836679129 +385,420,3.0,836679182 +385,432,2.0,836679256 +385,434,3.0,836679046 +385,435,3.0,836679256 +385,440,4.0,836679319 +385,442,3.0,836679458 +385,454,3.0,836679182 +385,457,4.0,836679100 +385,468,4.0,836679592 +385,474,4.0,836679569 +385,480,4.0,836679256 +385,500,4.0,836679405 +385,508,3.0,836679621 +385,509,4.0,836679459 +385,515,4.0,836679621 +385,527,4.0,836679427 +385,539,3.0,836679458 +385,553,3.0,836679288 +385,555,5.0,836679458 +385,586,3.0,836679499 +385,587,3.0,836679480 +385,589,4.0,836679288 +385,590,3.0,836678949 +385,593,5.0,836679046 +385,597,3.0,836679480 +385,608,5.0,836679621 +386,16,4.0,1047028416 +386,25,4.0,1047028123 +386,31,2.0,1047028867 +386,32,4.0,1047028456 +386,50,4.0,1047029040 +386,92,4.0,1047027832 +386,111,4.0,1047027613 +386,230,3.0,1047028583 +386,299,4.0,1047112992 +386,306,4.0,1047113156 +386,307,3.0,1047113185 +386,308,4.0,1047028416 +386,342,3.0,1047028529 +386,380,2.0,1047028703 +386,431,3.0,1047028980 +386,435,1.0,1047028177 +386,450,3.0,1047027908 +386,508,4.0,1047027648 +386,527,5.0,1047027530 +386,543,3.0,1047028262 +386,552,2.0,1047028666 +386,743,1.0,1047028109 +386,920,4.0,1047027585 +386,1093,3.0,1047112809 +386,1097,3.0,1047027623 +386,1100,2.0,1047028703 +386,1120,3.0,1047027794 +386,1210,3.0,1047027544 +386,1246,4.0,1047028933 +386,1270,3.0,1047113169 +386,1376,2.0,1047028399 +386,1619,3.0,1047027908 +386,1644,2.0,1047028039 +386,1676,3.0,1047028837 +386,1682,3.0,1047027921 +386,1707,1.0,1047028010 +386,1805,3.0,1047027690 +386,1917,1.0,1047028399 +386,1923,3.0,1047028371 +386,1967,3.0,1047113250 +386,2011,3.0,1047113274 +386,2318,5.0,1047112890 +386,2336,3.0,1047112825 +386,2369,3.0,1047112809 +386,2394,3.0,1047113007 +386,2396,4.0,1047113044 +386,2428,2.0,1047112848 +386,2485,2.0,1047113044 +386,2541,3.0,1047112764 +386,2580,3.0,1047112870 +386,2600,3.0,1047113121 +386,2622,3.0,1047112967 +386,2671,3.0,1047028360 +386,2683,3.0,1047112686 +386,2686,4.0,1047028742 +386,2692,4.0,1047113024 +386,2706,3.0,1047028468 +386,2710,2.0,1047112723 +386,2712,3.0,1047028887 +386,2722,2.0,1047112764 +386,2761,3.0,1047112931 +386,2762,4.0,1047027690 +386,2769,2.0,1047028966 +386,2805,2.0,1047112967 +386,2806,2.0,1047113065 +386,2827,1.0,1047112686 +386,2858,4.0,1047112667 +386,2863,4.0,1047028482 +386,2908,4.0,1047112723 +386,2959,5.0,1047112848 +386,2987,2.0,1047028529 +386,2995,1.0,1047112890 +386,2997,4.0,1047112704 +386,3053,4.0,1047112948 +386,3081,3.0,1047113044 +386,3114,3.0,1047113105 +386,3120,2.0,1047028278 +386,3130,2.0,1047028611 +386,3160,4.0,1047112948 +386,3176,3.0,1047113065 +386,3203,4.0,1047028262 +386,3248,2.0,1047027690 +386,3257,2.0,1047028763 +386,3268,1.0,1047027988 +386,3273,2.0,1047113024 +386,3285,2.0,1047028627 +386,3300,3.0,1047112992 +386,3408,3.0,1047112825 +386,3409,2.0,1047112848 +386,3418,3.0,1047113237 +386,3535,3.0,1047028177 +386,3578,3.0,1047112870 +386,3593,1.0,1047112704 +386,3623,3.0,1047112967 +386,3751,3.0,1047112744 +386,3793,3.0,1047113121 +386,3798,2.0,1047113105 +386,3809,1.0,1047028922 +386,3826,1.0,1047112890 +386,3893,3.0,1047028666 +386,3967,4.0,1047028156 +386,3977,2.0,1047112744 +386,3986,2.0,1047112667 +386,3996,4.0,1047028611 +386,4022,3.0,1047112744 +386,4148,2.0,1047028109 +386,4226,4.0,1047029040 +386,4235,4.0,1047028177 +386,4372,3.0,1047027585 +386,4489,4.0,1047027961 +386,4501,2.0,1047028441 +386,4571,2.0,1047028551 +386,4876,1.0,1047028109 +386,4878,4.0,1047028070 +386,5064,3.0,1047028511 +386,5219,3.0,1047028145 +386,5313,1.0,1047028718 +386,5445,3.0,1047113200 +386,5541,2.0,1047028039 +386,5679,3.0,1047113237 +386,6242,4.0,1047113218 +387,11,4.0,975142478 +387,21,4.0,974675065 +387,36,3.0,974791396 +387,52,4.0,974675154 +387,104,3.0,974675189 +387,111,5.0,974791195 +387,141,4.0,974674711 +387,235,4.0,974674932 +387,300,4.0,975105163 +387,318,5.0,974791223 +387,322,5.0,974674960 +387,344,2.0,975142275 +387,348,5.0,975143557 +387,357,3.0,974674711 +387,428,5.0,975143535 +387,450,4.0,974674877 +387,515,5.0,974791526 +387,527,3.0,974669772 +387,585,4.0,975143412 +387,593,4.0,974791289 +387,596,5.0,974683041 +387,608,5.0,974791258 +387,635,5.0,974675154 +387,750,5.0,974709301 +387,858,5.0,974709301 +387,897,4.0,974683179 +387,898,5.0,974682847 +387,899,5.0,974790616 +387,900,4.0,974790672 +387,901,5.0,974670228 +387,902,4.0,974681984 +387,905,5.0,974682415 +387,907,5.0,974682622 +387,908,5.0,974670360 +387,909,5.0,974681984 +387,910,4.0,974670100 +387,911,5.0,975143765 +387,912,5.0,974682790 +387,913,4.0,974682790 +387,914,5.0,974790616 +387,915,5.0,974670100 +387,916,4.0,974670100 +387,918,5.0,974683041 +387,919,5.0,974682415 +387,920,4.0,974682461 +387,923,5.0,974682790 +387,924,4.0,974681838 +387,926,5.0,974670360 +387,929,4.0,974682847 +387,930,5.0,974682905 +387,931,4.0,974683115 +387,933,4.0,974670100 +387,934,4.0,974670188 +387,935,5.0,974670100 +387,936,4.0,974682461 +387,937,5.0,974670188 +387,938,4.0,974790771 +387,939,4.0,974670228 +387,940,4.0,974682512 +387,942,5.0,974682847 +387,945,5.0,974790616 +387,946,5.0,974682905 +387,948,4.0,974670578 +387,949,5.0,974670478 +387,950,5.0,974682461 +387,951,5.0,974682905 +387,952,3.0,974670188 +387,953,5.0,974683115 +387,954,5.0,974682415 +387,962,4.0,974682578 +387,969,5.0,975142348 +387,970,3.0,974670228 +387,973,5.0,974683219 +387,1019,4.0,975105356 +387,1028,3.0,974790672 +387,1029,5.0,974683041 +387,1035,5.0,974790819 +387,1057,4.0,974791016 +387,1066,5.0,974682578 +387,1081,5.0,974790887 +387,1082,5.0,975143617 +387,1083,3.0,974790887 +387,1084,5.0,974791169 +387,1088,4.0,974790964 +387,1096,4.0,974671165 +387,1103,4.0,974670428 +387,1104,4.0,974670428 +387,1113,3.0,975142730 +387,1124,4.0,974671109 +387,1172,5.0,974671010 +387,1193,5.0,974791559 +387,1196,4.0,974670914 +387,1203,5.0,974670428 +387,1208,5.0,975142636 +387,1213,5.0,974791444 +387,1221,5.0,974791195 +387,1225,3.0,974670914 +387,1228,5.0,974670962 +387,1230,5.0,975142585 +387,1231,4.0,974670962 +387,1242,4.0,974791526 +387,1247,5.0,974681905 +387,1250,5.0,974791526 +387,1253,3.0,974670428 +387,1254,5.0,974682847 +387,1256,5.0,974682415 +387,1259,4.0,974671067 +387,1269,4.0,974682976 +387,1276,5.0,974681905 +387,1281,4.0,974682905 +387,1284,4.0,974682847 +387,1287,3.0,974670529 +387,1288,5.0,974790672 +387,1292,5.0,975142977 +387,1293,3.0,974671067 +387,1302,5.0,974671165 +387,1304,5.0,975143592 +387,1380,1.0,974791016 +387,1394,4.0,975105163 +387,1395,4.0,974671165 +387,1396,3.0,974669842 +387,1409,3.0,974675154 +387,1416,4.0,974790964 +387,1641,4.0,974674644 +387,1673,4.0,975143303 +387,1674,4.0,974671010 +387,1694,3.0,975142636 +387,1704,5.0,974791314 +387,1732,4.0,974675154 +387,1747,3.0,974674907 +387,1784,5.0,975142730 +387,1883,4.0,974675037 +387,1923,5.0,974674907 +387,1926,2.0,974790964 +387,1932,4.0,974682622 +387,1933,5.0,974682578 +387,1934,5.0,974682622 +387,1938,5.0,974683179 +387,1939,5.0,974682847 +387,1940,3.0,974683179 +387,1942,5.0,974682976 +387,1943,4.0,974670529 +387,1944,4.0,974670428 +387,1945,5.0,974670478 +387,1946,5.0,974670478 +387,1947,4.0,974790672 +387,1950,4.0,974681984 +387,1952,5.0,974681838 +387,1953,5.0,974791588 +387,1957,4.0,974670915 +387,1962,4.0,974671202 +387,2020,3.0,974671010 +387,2028,5.0,974669842 +387,2069,3.0,974671202 +387,2078,4.0,974790887 +387,2080,4.0,974670188 +387,2081,5.0,974790771 +387,2108,4.0,974674851 +387,2130,4.0,974670962 +387,2132,4.0,974681905 +387,2150,5.0,975105051 +387,2176,4.0,974683219 +387,2178,3.0,975105012 +387,2182,4.0,974670578 +387,2202,4.0,974683041 +387,2203,5.0,974682790 +387,2204,4.0,974683041 +387,2206,4.0,974683115 +387,2212,4.0,974669842 +387,2243,4.0,974671010 +387,2248,4.0,974670962 +387,2266,2.0,975143592 +387,2289,3.0,974674675 +387,2300,4.0,974790616 +387,2302,5.0,974675037 +387,2303,5.0,974790672 +387,2321,4.0,974674851 +387,2352,4.0,974671067 +387,2356,4.0,975143724 +387,2366,4.0,974682512 +387,2381,1.0,975105163 +387,2395,4.0,974674807 +387,2396,4.0,974674619 +387,2539,4.0,974675086 +387,2728,3.0,974681905 +387,2736,4.0,975143467 +387,2770,3.0,975143365 +387,2791,4.0,975142382 +387,2792,4.0,975142382 +387,2804,5.0,974670874 +387,2847,4.0,974682578 +387,2858,5.0,974674619 +387,2870,4.0,975142887 +387,2874,5.0,974670188 +387,2917,4.0,975143261 +387,2929,4.0,974671165 +387,2935,5.0,974682790 +387,2936,5.0,974682976 +387,2940,4.0,974682976 +387,2941,3.0,974790887 +387,2971,5.0,974790771 +387,2981,5.0,975143535 +387,2988,4.0,974671067 +387,2997,5.0,974674749 +387,3006,4.0,974791444 +387,3011,5.0,974681905 +387,3035,5.0,974670100 +387,3038,5.0,974670360 +387,3061,4.0,974683219 +387,3068,5.0,974671109 +387,3086,3.0,974682651 +387,3088,4.0,974670100 +387,3093,3.0,974791223 +387,3095,5.0,974682847 +387,3096,4.0,974670188 +387,3097,5.0,974682790 +387,3105,4.0,975142789 +387,3146,3.0,974674907 +387,3152,4.0,974791396 +387,3167,5.0,975143642 +387,3174,4.0,974674749 +387,3196,5.0,974670360 +387,3199,4.0,974670188 +387,3201,5.0,974791588 +387,3217,4.0,974682512 +387,3253,1.0,974675189 +387,3298,4.0,975143303 +387,3307,5.0,974682415 +387,3308,4.0,974671165 +387,3330,3.0,974669772 +387,3334,4.0,974682976 +387,3341,4.0,974670100 +387,3358,5.0,974674749 +387,3359,5.0,974791258 +387,3360,4.0,974671109 +387,3363,5.0,974791223 +387,3364,5.0,975142730 +387,3368,4.0,975143075 +387,3379,3.0,974670529 +387,3420,5.0,975105356 +387,3421,4.0,975142585 +387,3423,4.0,975105220 +387,3435,5.0,974682790 +387,3446,3.0,974675005 +387,3451,4.0,974682021 +387,3462,4.0,974682461 +387,3467,4.0,974791258 +387,3468,5.0,974681905 +387,3469,4.0,974791314 +387,3475,5.0,974670529 +387,3496,3.0,975105084 +387,3504,5.0,974791338 +387,3522,2.0,975105220 +387,3543,4.0,974670874 +387,3545,5.0,974790616 +387,3548,4.0,974670100 +387,3549,2.0,974790771 +387,3559,3.0,974670529 +387,3566,4.0,975143105 +387,3599,3.0,974790819 +387,3600,3.0,974669842 +387,3604,5.0,974791016 +387,3606,4.0,974682977 +387,3671,3.0,975104951 +387,3675,4.0,974790925 +387,3678,4.0,974670478 +387,3685,4.0,974671067 +387,3730,5.0,974791289 +387,3735,4.0,974791338 +387,3736,5.0,974670360 +387,3737,5.0,974681905 +387,3792,4.0,974683219 +387,3801,4.0,974670478 +387,3871,4.0,974670360 +387,3873,4.0,974681779 +387,3911,4.0,975143028 +387,3929,5.0,974682905 +387,4008,4.0,975143365 +387,5866,5.0,1036457635 +388,6,5.0,946520615 +388,10,2.0,946521781 +388,14,4.0,946527775 +388,16,3.0,946534269 +388,20,1.0,946521220 +388,22,4.0,946522830 +388,23,2.0,946534576 +388,25,4.0,946532317 +388,29,3.0,965182022 +388,32,4.0,946527074 +388,36,4.0,946527132 +388,39,3.0,946533260 +388,41,2.0,946525631 +388,42,2.0,946520999 +388,45,2.0,946523444 +388,47,5.0,946522753 +388,49,3.0,946528236 +388,50,5.0,946522650 +388,62,3.0,946528837 +388,70,3.0,946520908 +388,72,5.0,946523596 +388,82,2.0,965182946 +388,88,3.0,946524155 +388,100,2.0,973840218 +388,101,4.0,946523209 +388,104,2.0,946523617 +388,105,2.0,946508346 +388,110,5.0,946509960 +388,111,5.0,946525718 +388,122,3.0,965183831 +388,125,4.0,946523325 +388,144,3.0,946523545 +388,145,3.0,946520884 +388,150,4.5,1097625220 +388,159,4.5,1053316150 +388,163,4.0,946520908 +388,165,3.0,965183098 +388,180,2.0,946524117 +388,186,2.5,1097625718 +388,188,2.0,946530945 +388,193,1.0,946529503 +388,198,3.0,946520824 +388,204,2.0,946520947 +388,216,2.0,946524155 +388,223,4.0,946509004 +388,231,5.0,946524061 +388,235,4.0,946523209 +388,246,5.0,946524879 +388,247,3.0,946526524 +388,253,3.0,946531003 +388,260,4.5,1097625248 +388,266,2.0,965183151 +388,272,4.0,946527535 +388,288,1.0,946521034 +388,292,1.0,946520968 +388,293,2.0,946522771 +388,296,5.0,946522591 +388,300,4.0,946527109 +388,318,5.0,946525738 +388,322,4.0,946528365 +388,330,3.0,965183436 +388,333,4.0,946523932 +388,337,4.0,965182221 +388,338,2.0,946534150 +388,340,2.0,946521654 +388,344,2.0,946523932 +388,349,5.0,946520805 +388,356,4.0,973840479 +388,357,3.0,946523348 +388,358,2.0,946529274 +388,363,4.0,946524933 +388,364,3.0,946522073 +388,370,2.5,1167703757 +388,377,4.0,946520673 +388,423,3.0,946534602 +388,428,3.0,965182366 +388,431,4.0,946522753 +388,432,2.5,1167703743 +388,434,4.0,946521750 +388,440,4.0,946523367 +388,441,4.0,999578153 +388,442,2.0,946521266 +388,454,3.0,946528888 +388,456,3.0,946527622 +388,457,5.0,946534256 +388,465,3.0,946510162 +388,466,3.0,1167703791 +388,467,2.0,946523463 +388,474,4.0,946534304 +388,475,4.0,946527109 +388,479,4.0,946521311 +388,480,4.0,946520805 +388,482,4.0,946534321 +388,493,4.0,946522753 +388,507,4.0,946520742 +388,508,5.0,965182563 +388,517,3.0,946520999 +388,518,3.0,946524201 +388,524,4.0,946528365 +388,527,5.0,946509889 +388,529,4.0,1097625704 +388,534,4.0,946533368 +388,535,4.0,946526258 +388,538,4.0,946527159 +388,541,5.0,946530195 +388,543,3.0,946523932 +388,544,1.0,965184179 +388,553,2.0,946509773 +388,586,3.0,946522351 +388,587,4.0,946523761 +388,589,4.0,946520567 +388,590,5.0,946509773 +388,592,3.0,946520784 +388,593,4.0,946525758 +388,597,3.0,1097625332 +388,608,5.0,946522591 +388,648,4.0,946520968 +388,663,4.0,946524019 +388,671,4.0,946523566 +388,725,3.0,946524019 +388,733,4.0,946520884 +388,750,4.0,946509889 +388,759,5.0,946524906 +388,778,5.0,946527213 +388,780,1.0,946510110 +388,784,4.0,973840164 +388,785,3.0,946509305 +388,787,5.0,946524879 +388,788,4.0,946523617 +388,832,4.0,946534351 +388,850,5.0,946529237 +388,852,4.0,946523696 +388,858,5.0,973840591 +388,861,3.0,946520742 +388,866,4.0,965182039 +388,912,4.0,1187550146 +388,919,4.0,946522187 +388,920,4.0,946509960 +388,923,4.0,946525453 +388,924,5.0,946526494 +388,953,4.0,946526462 +388,991,4.0,946510139 +388,1012,3.0,946522206 +388,1025,5.0,946522125 +388,1027,4.0,946529384 +388,1034,2.0,946522753 +388,1036,5.0,946520592 +388,1060,5.0,946523166 +388,1073,5.0,1097625360 +388,1085,4.0,946521633 +388,1089,4.0,946522650 +388,1090,5.0,946509990 +388,1092,2.0,946531679 +388,1093,2.0,946509140 +388,1095,5.0,946526474 +388,1097,4.0,946522206 +388,1101,3.0,946520947 +388,1127,4.0,946521654 +388,1148,5.0,946522032 +388,1150,5.0,946526274 +388,1171,4.0,946523262 +388,1178,5.0,997425285 +388,1179,5.0,946522669 +388,1183,4.0,973840441 +388,1185,5.0,946508541 +388,1193,5.0,946887028 +388,1196,4.0,946508346 +388,1197,5.0,946521488 +388,1198,5.0,946520553 +388,1199,4.0,946533764 +388,1200,5.0,946509924 +388,1203,5.0,946525738 +388,1204,5.0,946509924 +388,1207,3.0,946525738 +388,1208,5.0,946509924 +388,1210,5.0,946508541 +388,1213,5.0,946522591 +388,1214,5.0,966437837 +388,1215,3.0,946520615 +388,1217,4.0,973839483 +388,1218,2.0,992330812 +388,1219,4.0,1097625554 +388,1220,4.0,946523395 +388,1221,5.0,946520553 +388,1222,5.0,946510070 +388,1225,5.0,946525718 +388,1226,3.0,946523912 +388,1228,5.0,946525718 +388,1230,4.0,946874995 +388,1233,5.0,951159769 +388,1235,4.0,946523209 +388,1240,4.0,946520592 +388,1242,5.0,946510028 +388,1245,5.0,946527600 +388,1246,5.0,946527850 +388,1247,5.0,978158997 +388,1248,4.0,1118649115 +388,1250,5.0,946509960 +388,1252,5.0,965185411 +388,1254,4.0,947227144 +388,1258,5.0,946530891 +388,1259,5.0,946521510 +388,1262,5.0,946509889 +388,1265,4.0,946523140 +388,1266,5.0,946509726 +388,1267,4.5,1119458331 +388,1270,4.0,946508425 +388,1271,3.0,946528818 +388,1275,2.5,1167704086 +388,1279,4.0,946523788 +388,1280,4.0,946527520 +388,1287,5.0,946520615 +388,1291,5.0,946520702 +388,1293,4.5,1097626045 +388,1299,5.0,946509990 +388,1302,4.0,946527808 +388,1304,5.0,946509726 +388,1320,5.0,946521131 +388,1339,3.0,946530977 +388,1342,4.0,946531055 +388,1343,2.0,965182451 +388,1345,4.0,946530891 +388,1358,4.0,946527159 +388,1366,4.0,946529193 +388,1370,4.0,946520884 +388,1376,4.0,946520784 +388,1378,4.0,946509801 +388,1379,4.0,946509828 +388,1387,4.5,1097625455 +388,1388,3.0,946521338 +388,1393,4.0,946527634 +388,1394,3.0,946523099 +388,1396,4.0,946522771 +388,1404,2.0,946529025 +388,1405,3.0,946522110 +388,1408,5.0,946510070 +388,1449,4.0,977163638 +388,1459,2.0,946531706 +388,1464,1.0,1008747739 +388,1466,5.0,946522725 +388,1468,2.0,946532266 +388,1476,4.0,946523727 +388,1485,4.0,946523678 +388,1500,3.0,946522753 +388,1517,4.0,946523294 +388,1518,4.0,946534447 +388,1526,2.0,946524079 +388,1552,2.0,973840256 +388,1562,1.0,946521435 +388,1573,4.0,946520702 +388,1580,3.0,946520702 +388,1584,4.0,946528794 +388,1587,4.0,946520947 +388,1590,3.0,946521413 +388,1594,2.0,973840730 +388,1597,3.0,946521065 +388,1601,2.0,946522857 +388,1610,5.0,946520673 +388,1614,3.0,946523662 +388,1615,4.0,946521654 +388,1617,4.5,1097625389 +388,1620,3.0,946522857 +388,1625,5.0,946531653 +388,1635,4.0,946621687 +388,1639,3.0,946527520 +388,1641,4.0,965182136 +388,1645,4.0,946522753 +388,1653,4.0,946528794 +388,1663,4.0,946523444 +388,1670,4.0,946509960 +388,1673,5.0,946525758 +388,1682,3.5,1097625620 +388,1687,1.0,946521179 +388,1690,3.0,946521179 +388,1693,5.0,973839943 +388,1699,3.0,965182433 +388,1704,4.0,946527193 +388,1711,3.0,946522882 +388,1717,2.0,946530990 +388,1719,4.0,946527026 +388,1721,4.0,946528912 +388,1729,3.0,946522725 +388,1732,5.0,946522725 +388,1747,3.0,946523426 +388,1748,4.0,946530195 +388,1753,4.0,946523943 +388,1777,3.0,946523885 +388,1779,2.0,946521833 +388,1784,4.0,946523617 +388,1792,3.0,946521220 +388,1805,4.0,946522830 +388,1810,4.0,946527775 +388,1816,4.0,946523998 +388,1834,4.0,997169403 +388,1836,4.0,965183315 +388,1840,3.0,946528850 +388,1845,4.0,946523262 +388,1856,3.0,946524978 +388,1862,1.0,946531490 +388,1876,1.0,946521065 +388,1883,4.0,946523545 +388,1885,1.0,946523367 +388,1887,2.0,946521893 +388,1897,3.0,946532317 +388,1909,3.0,946531693 +388,1912,4.0,946520567 +388,1917,1.0,973839944 +388,1918,2.0,946521311 +388,1921,4.0,946533914 +388,1922,3.0,1007197549 +388,1923,5.0,946523232 +388,1927,5.0,946509889 +388,1946,5.0,946509661 +388,1958,4.0,946523445 +388,1960,5.0,946510070 +388,1961,5.0,965184908 +388,1962,4.0,946527535 +388,1966,4.0,965182512 +388,1968,4.0,946523325 +388,1970,2.0,946531085 +388,1996,3.0,946531516 +388,2000,4.0,946520742 +388,2001,3.0,946520999 +388,2002,3.0,946521266 +388,2005,5.0,946521820 +388,2006,4.0,946521584 +388,2009,3.0,973839782 +388,2011,3.0,946523740 +388,2012,3.0,946509801 +388,2013,4.0,946509381 +388,2020,4.0,946526462 +388,2022,4.5,1053316123 +388,2023,4.0,946528959 +388,2028,5.0,946510258 +388,2067,4.0,946510028 +388,2072,3.0,946524285 +388,2076,4.0,993142382 +388,2090,4.0,946522144 +388,2108,4.0,946523412 +388,2109,4.0,946523662 +388,2112,4.0,946522793 +388,2114,4.0,946528850 +388,2115,5.0,946520784 +388,2133,2.0,973839856 +388,2134,3.0,946523982 +388,2140,3.0,946522316 +388,2146,2.0,946529214 +388,2162,1.0,946530111 +388,2166,4.0,946528875 +388,2169,1.0,973840335 +388,2174,5.0,946523412 +388,2188,1.0,946508880 +388,2194,5.0,946520673 +388,2245,4.0,946523727 +388,2248,5.0,946523232 +388,2249,4.0,946523809 +388,2250,3.0,946529090 +388,2253,2.0,946524230 +388,2263,3.0,946534556 +388,2265,1.0,946521934 +388,2268,5.0,946522771 +388,2271,2.0,996044240 +388,2273,4.0,946534486 +388,2278,4.0,946522793 +388,2280,3.0,946522810 +388,2282,3.0,946528837 +388,2289,4.0,946523121 +388,2302,5.0,965182784 +388,2314,3.0,965182545 +388,2321,4.0,946523348 +388,2334,3.0,946521149 +388,2335,3.0,946524155 +388,2336,4.0,966437864 +388,2353,3.0,946520742 +388,2359,4.0,965182335 +388,2369,2.0,946523809 +388,2370,4.0,946521266 +388,2372,3.0,946523912 +388,2373,3.0,965185228 +388,2374,3.0,946524131 +388,2375,3.0,946524285 +388,2376,2.0,946521291 +388,2378,3.0,946524079 +388,2379,2.0,946524344 +388,2380,1.0,965185330 +388,2381,1.0,965185310 +388,2382,3.0,946524459 +388,2389,1.0,946522906 +388,2391,4.0,946522669 +388,2395,4.0,946509425 +388,2402,2.0,965185249 +388,2404,3.0,946521365 +388,2411,3.0,946521338 +388,2413,3.0,946532221 +388,2416,2.0,946523982 +388,2420,4.0,946529149 +388,2423,4.0,946523982 +388,2425,4.0,965182119 +388,2427,5.0,946510419 +388,2428,1.0,946509253 +388,2435,3.0,946529104 +388,2458,3.0,946524270 +388,2470,3.0,946521654 +388,2472,3.0,946523998 +388,2476,3.0,946521065 +388,2478,4.0,946524155 +388,2490,3.0,946509381 +388,2494,4.0,947227203 +388,2502,4.0,946509342 +388,2513,4.0,946531530 +388,2529,5.0,946520646 +388,2530,4.0,946521034 +388,2541,3.0,946509140 +388,2560,2.0,965182512 +388,2571,5.0,946520615 +388,2574,2.0,946509342 +388,2579,3.0,1008268025 +388,2580,5.0,946509253 +388,2599,5.0,946509199 +388,2610,4.0,946526437 +388,2628,2.0,1030322959 +388,2639,3.0,946528997 +388,2640,4.0,946533914 +388,2683,4.0,946508880 +388,2692,3.0,946508541 +388,2706,4.0,946508880 +388,2707,4.0,1047201148 +388,2710,3.0,946509004 +388,2712,3.0,946509199 +388,2716,5.0,966437990 +388,2717,3.0,946531099 +388,2728,5.0,946527026 +388,2730,5.0,946527834 +388,2734,4.0,946529214 +388,2735,3.0,946521413 +388,2745,5.0,946509535 +388,2750,4.0,946523325 +388,2761,4.0,965182201 +388,2762,4.0,1097625407 +388,2770,3.0,954582475 +388,2782,4.0,946531033 +388,2791,5.0,946523166 +388,2792,3.0,965185072 +388,2794,4.0,946524188 +388,2795,4.0,965184821 +388,2796,2.0,965185149 +388,2797,4.0,946523280 +388,2802,2.0,946533457 +388,2804,2.0,973840204 +388,2815,3.0,946521380 +388,2826,2.0,954582556 +388,2840,2.0,946534511 +388,2858,4.0,973839944 +388,2885,4.0,954582475 +388,2890,5.0,965182119 +388,2912,3.0,965182366 +388,2915,3.0,946523325 +388,2916,4.0,946520784 +388,2918,5.0,946523184 +388,2919,4.0,965184768 +388,2930,4.5,1114896909 +388,2943,3.0,946528837 +388,2944,5.0,946509960 +388,2952,5.0,973840647 +388,2953,1.0,946524403 +388,2959,3.0,965182285 +388,2966,5.0,965181752 +388,2976,3.0,965181792 +388,2979,2.0,965183056 +388,2985,5.0,946522793 +388,2986,3.0,946521200 +388,2990,2.0,946521104 +388,2997,5.0,946509004 +388,3006,5.0,986260550 +388,3019,4.0,994453108 +388,3033,4.0,946523982 +388,3034,4.0,946522056 +388,3036,5.0,946521606 +388,3046,2.0,946523483 +388,3052,3.0,973840377 +388,3060,4.0,946523248 +388,3071,5.0,946527850 +388,3072,3.0,946523232 +388,3077,4.0,1012456278 +388,3081,4.0,946509464 +388,3090,5.0,946527144 +388,3095,5.0,946526437 +388,3098,4.0,946527193 +388,3100,4.0,946527797 +388,3101,4.0,946534321 +388,3104,3.0,946520592 +388,3105,4.0,946527504 +388,3117,4.0,965181806 +388,3145,1.0,965181775 +388,3150,5.0,966927397 +388,3160,4.0,965182022 +388,3174,2.0,965181775 +388,3197,2.0,965185092 +388,3198,3.0,965185439 +388,3203,5.0,965184781 +388,3210,2.0,994030777 +388,3241,3.0,984300733 +388,3246,4.5,1053316197 +388,3250,3.0,965182705 +388,3252,4.0,965182842 +388,3254,3.0,965183296 +388,3255,4.0,965182720 +388,3256,4.0,965182738 +388,3259,4.0,965183182 +388,3263,4.0,965182466 +388,3271,4.0,965182303 +388,3298,4.0,966437899 +388,3317,4.0,986260308 +388,3342,5.0,951159820 +388,3355,4.0,973839295 +388,3360,4.0,1114897015 +388,3386,5.0,965182089 +388,3421,5.0,1066722919 +388,3424,4.0,965184794 +388,3426,3.0,965182652 +388,3441,4.0,965185054 +388,3448,5.0,973840591 +388,3452,3.0,965181589 +388,3481,4.5,1167703847 +388,3499,5.0,965182303 +388,3500,2.0,965183581 +388,3504,4.5,1114897240 +388,3509,3.0,973839240 +388,3510,4.0,977245217 +388,3526,4.0,965184844 +388,3527,5.0,965184821 +388,3528,2.0,965183199 +388,3535,3.0,965181626 +388,3539,4.0,993487326 +388,3556,4.0,978159019 +388,3557,3.0,965182928 +388,3571,3.0,977245242 +388,3578,4.0,997649625 +388,3614,4.0,965182889 +388,3617,3.0,978371023 +388,3624,3.0,973839080 +388,3683,5.0,994480772 +388,3686,4.0,965183215 +388,3697,4.0,965183131 +388,3698,4.0,965185029 +388,3704,4.0,965185371 +388,3720,3.0,991606971 +388,3724,4.5,1199226031 +388,3747,5.0,1005420389 +388,3752,3.0,979464307 +388,3753,2.0,965181612 +388,3755,3.0,977163722 +388,3783,5.0,986260262 +388,3852,4.0,986260664 +388,3896,1.0,973839141 +388,3897,5.0,973838986 +388,3902,4.5,1053316068 +388,3911,4.0,993142409 +388,3948,4.0,1097625977 +388,3949,2.0,991411716 +388,3950,3.0,993404351 +388,3952,3.0,986260217 +388,3983,4.0,1000015915 +388,3993,3.0,991606947 +388,3994,3.0,1005420434 +388,3996,4.0,984300679 +388,3998,3.0,977163679 +388,4007,4.5,1114896977 +388,4011,2.0,995388888 +388,4017,4.0,998591415 +388,4022,4.0,978371003 +388,4027,4.0,978416251 +388,4029,3.0,994030740 +388,4033,4.0,995868971 +388,4034,5.0,986260513 +388,4035,4.0,993665885 +388,4037,5.0,978158931 +388,4047,4.0,978158978 +388,4055,3.0,999248439 +388,4085,4.0,1114897216 +388,4103,5.0,1114898483 +388,4117,4.0,998591471 +388,4211,5.0,1114897195 +388,4223,3.0,998591438 +388,4226,5.0,991606993 +388,4235,4.0,1020828830 +388,4239,3.0,991974199 +388,4297,4.0,994558471 +388,4312,3.0,1017378806 +388,4326,4.5,1114896932 +388,4351,4.0,991975567 +388,4370,5.0,1024472308 +388,4378,4.0,1017378827 +388,4389,3.0,1008835743 +388,4391,4.0,1000015889 +388,4446,2.0,1006152888 +388,4448,3.0,1008630332 +388,4489,4.0,1072682254 +388,4537,4.5,1114897038 +388,4564,3.5,1053316581 +388,4616,3.5,1114898523 +388,4641,5.0,997051243 +388,4643,1.0,997649338 +388,4688,5.0,1114897763 +388,4718,3.0,1012027203 +388,4720,4.0,1022307058 +388,4723,4.0,1027558997 +388,4737,2.0,1014098545 +388,4776,4.0,1024796772 +388,4783,4.0,1066722747 +388,4816,3.0,1016259811 +388,4846,3.0,1020326560 +388,4848,4.0,1003004222 +388,4855,4.5,1114896996 +388,4865,4.0,1021749111 +388,4873,3.0,1021749091 +388,4881,4.0,1005420349 +388,4888,4.0,1020326510 +388,4896,3.0,1167703989 +388,4963,4.0,1008630374 +388,4965,4.0,1008487964 +388,4967,3.0,1019353060 +388,4975,1.0,1027349246 +388,4977,4.0,1012093742 +388,4979,4.0,1028642163 +388,4993,5.0,1044494397 +388,4995,3.0,1025899891 +388,5010,5.0,1011683096 +388,5013,5.0,1027090728 +388,5015,4.0,1035442041 +388,5026,2.0,1012027245 +388,5028,4.0,1014616812 +388,5060,5.0,946509924 +388,5064,4.0,1032327288 +388,5074,3.0,1013845763 +388,5103,3.5,1114898655 +388,5107,3.0,1027558972 +388,5225,5.0,1018236835 +388,5266,4.0,1018734971 +388,5297,4.0,1030340576 +388,5315,2.0,1030947625 +388,5349,4.0,1089481350 +388,5378,3.0,1030323030 +388,5388,3.0,1022376655 +388,5417,4.0,1027349290 +388,5418,4.0,1024788813 +388,5425,2.0,1023561710 +388,5445,4.0,1024941805 +388,5464,3.0,1027211134 +388,5505,3.0,1046479013 +388,5508,4.0,1030999212 +388,5527,3.0,1042126048 +388,5666,2.0,1040192834 +388,5669,4.0,1061482686 +388,5670,4.5,1056995673 +388,5673,4.0,1037056127 +388,5680,4.0,1050973941 +388,5686,3.0,1050973972 +388,5791,2.0,1039073196 +388,5808,2.0,1046902164 +388,5876,3.5,1066722617 +388,5902,4.5,1053316058 +388,5945,3.5,1056496972 +388,5952,4.5,1072682165 +388,5956,3.0,1047201078 +388,5989,4.5,1056497014 +388,5995,5.0,1042505680 +388,6016,4.0,1076803231 +388,6101,4.5,1114898046 +388,6159,1.5,1084581534 +388,6215,4.0,1056842759 +388,6223,1.0,1059711593 +388,6281,3.5,1058584319 +388,6287,2.0,1050973920 +388,6296,3.5,1065414842 +388,6333,4.0,1051941002 +388,6337,3.5,1067204445 +388,6365,4.0,1055662214 +388,6373,2.5,1062885084 +388,6378,3.5,1055662276 +388,6384,3.5,1071910951 +388,6440,5.0,1056496966 +388,6539,4.0,1058655673 +388,6552,4.5,1061792831 +388,6565,3.5,1077406095 +388,6612,4.0,1066722724 +388,6620,4.5,1062884732 +388,6638,4.0,1066722855 +388,6708,4.0,1097479392 +388,6711,4.5,1065414859 +388,6754,2.5,1104298768 +388,6760,4.0,1091210537 +388,6773,4.5,1085989847 +388,6796,4.0,1066722730 +388,6811,2.0,1066722877 +388,6832,3.0,1066722847 +388,6863,4.0,1114898800 +388,6867,4.0,1088270089 +388,6870,4.0,1077406010 +388,6874,4.0,1066532691 +388,6881,4.0,1079933683 +388,6932,4.5,1069317196 +388,6934,4.0,1071347441 +388,6947,4.5,1070755624 +388,6953,4.0,1072826845 +388,6957,4.0,1072826833 +388,6974,4.0,1096957574 +388,6979,4.5,1114896953 +388,7025,4.5,1114898388 +388,7090,4.0,1105855252 +388,7139,4.0,1072583014 +388,7143,2.5,1072682126 +388,7151,4.0,1087361738 +388,7153,4.0,1072583077 +388,7158,3.5,1084581512 +388,7162,4.0,1088799357 +388,7177,4.0,1092410892 +388,7325,3.5,1079933638 +388,7348,4.0,1112169908 +388,7361,4.0,1082848176 +388,7367,3.0,1104298828 +388,7438,2.0,1090183657 +388,8207,5.0,1114896939 +388,8337,4.0,1114897132 +388,8361,3.5,1099770701 +388,8451,4.0,1114898649 +388,8464,4.0,1087093182 +388,8527,3.0,1112169888 +388,8528,4.0,1088270131 +388,8622,4.0,1090106529 +388,8636,4.5,1090183696 +388,8640,3.0,1090106549 +388,8645,3.5,1114898633 +388,8665,4.0,1091312747 +388,8783,3.5,1091999799 +388,8784,3.0,1160404392 +388,8798,4.0,1104298841 +388,8800,3.5,1114896846 +388,8807,3.5,1124050419 +388,8873,3.5,1101593171 +388,8949,5.0,1100381747 +388,8983,4.0,1106005465 +388,26729,4.5,1177872304 +388,27721,4.5,1104821581 +388,27846,3.5,1154063228 +388,27850,2.5,1114897006 +388,27904,3.5,1154063211 +388,30707,4.0,1114896886 +388,30749,4.0,1114896822 +388,30812,3.5,1104298719 +388,30822,4.0,1112169847 +388,30825,3.5,1104298752 +388,32298,3.5,1112169929 +388,33162,3.0,1116109493 +388,33493,4.0,1118527843 +388,33794,4.5,1119458306 +388,33817,3.5,1120088786 +388,34162,4.5,1122278619 +388,35836,4.5,1154228523 +388,37240,4.0,1143429998 +388,37382,2.5,1143760255 +388,37741,4.5,1141434683 +388,38061,3.0,1154063247 +388,38886,4.5,1134863972 +388,39292,3.5,1143429907 +388,39414,4.0,1131422901 +388,40583,4.0,1134863929 +388,41566,3.0,1167703396 +388,41997,4.5,1135725076 +388,42418,4.5,1137969678 +388,44397,3.5,1143429984 +388,44555,4.5,1229027041 +388,45447,3.5,1167703367 +388,45722,4.0,1156377909 +388,45950,4.0,1154228443 +388,46578,4.0,1156377921 +388,47629,3.0,1187550128 +388,48082,4.0,1160958135 +388,48696,4.0,1182628058 +388,49822,3.5,1167799651 +388,49824,2.5,1229026839 +388,49961,3.5,1198964351 +388,50872,4.5,1198964476 +388,51884,3.5,1177872275 +388,53125,3.5,1182628095 +388,53894,4.5,1187550165 +388,54272,4.0,1187550052 +388,54286,3.5,1187550082 +388,55820,4.0,1198964331 +388,55830,3.5,1229026867 +388,58559,4.0,1229026930 +388,60756,4.0,1229027003 +389,2,4.0,829491840 +389,5,4.0,829491839 +389,10,4.0,829491840 +389,19,1.0,829492315 +389,22,3.0,829495183 +389,23,2.0,829492315 +389,54,4.0,829492315 +389,62,4.0,829491840 +389,74,4.0,829491839 +389,95,5.0,829491839 +389,110,5.0,829492315 +389,135,4.0,829491839 +389,150,4.0,829492315 +389,151,4.0,829492316 +389,153,3.0,829492315 +389,160,3.0,829492316 +389,161,4.0,829492316 +389,163,1.0,829492316 +389,168,4.0,829492316 +389,172,3.0,829492316 +389,173,2.0,829492316 +389,185,4.0,829495183 +389,204,3.0,829492316 +389,207,4.0,829492316 +389,208,4.0,829492316 +389,225,2.0,829492316 +389,231,1.0,829492316 +389,236,3.0,829492316 +389,237,3.0,829492316 +389,238,3.0,829492316 +389,248,4.0,829492316 +389,252,4.0,829492316 +389,253,2.0,829492316 +389,256,3.0,829492316 +389,266,4.0,829495183 +389,274,3.0,829492316 +389,276,3.0,829492316 +389,292,4.0,829492316 +389,316,4.0,829492316 +389,318,5.0,829492316 +389,333,5.0,829492316 +389,339,3.0,829492316 +389,344,2.0,829492315 +389,349,4.0,829492315 +389,380,5.0,829492316 +389,381,2.0,829492316 +389,432,3.0,829492315 +389,434,5.0,829492315 +389,588,4.0,829492315 +389,590,5.0,829492316 +389,595,4.0,829492315 +390,1,4.0,867073566 +390,3,5.0,867072842 +390,7,3.0,867072884 +390,9,3.0,867076328 +390,10,3.0,867076126 +390,11,5.0,867075845 +390,14,2.0,867072919 +390,15,3.0,867076269 +390,17,4.0,867072803 +390,21,5.0,867076176 +390,32,1.0,867072802 +390,43,3.0,867074211 +390,44,3.0,867076269 +390,52,3.0,867072918 +390,62,3.0,867072803 +390,65,2.0,867072979 +390,92,2.0,867073966 +390,95,3.0,867072802 +390,102,3.0,867073883 +390,104,1.0,867072884 +390,110,3.0,867076005 +390,112,4.0,867072884 +390,135,2.0,867072919 +390,141,5.0,867072802 +390,153,3.0,867076269 +390,165,4.0,867076176 +390,168,3.0,867076243 +390,173,3.0,867076294 +390,185,3.0,867076243 +390,204,3.0,867076243 +390,208,3.0,867076127 +390,227,3.0,867076294 +390,260,5.0,867072842 +390,296,5.0,867075838 +390,303,3.0,867076328 +390,315,3.0,867076328 +390,316,4.0,867076176 +390,339,5.0,867075841 +390,349,3.0,867076269 +390,357,3.0,867075839 +390,377,5.0,867076005 +390,379,3.0,867076243 +390,380,5.0,867076008 +390,423,3.0,867076327 +390,434,3.0,867076010 +390,438,3.0,867076351 +390,440,3.0,867075844 +390,457,3.0,867076126 +390,480,5.0,867076002 +390,494,4.0,867072842 +390,507,3.0,867076294 +390,517,4.0,867076269 +390,539,5.0,867075842 +390,541,3.0,867076243 +390,548,3.0,867076328 +390,589,3.0,867076003 +390,592,3.0,867076211 +390,608,4.0,867072842 +390,609,3.0,867073074 +390,613,3.0,867074211 +390,628,2.0,867072919 +390,637,2.0,867072919 +390,640,3.0,867073029 +390,647,2.0,867072979 +390,648,2.0,867072802 +390,653,4.0,867073609 +390,656,3.0,867074252 +390,667,2.0,867073883 +390,673,1.0,867072979 +390,694,1.0,867073940 +390,708,4.0,867073609 +390,710,2.0,867074211 +390,719,2.0,867072949 +390,733,4.0,867072841 +390,736,4.0,867072802 +390,742,1.0,867074367 +390,778,2.0,867072949 +390,780,5.0,867072802 +390,785,3.0,867073029 +390,786,4.0,867072842 +390,788,3.0,867072884 +390,798,3.0,867074292 +390,801,3.0,867074367 +390,802,4.0,867073609 +390,809,3.0,867074344 +390,810,2.0,867073939 +390,813,3.0,867074680 +390,818,2.0,867073940 +390,830,4.0,867073074 +390,832,3.0,867072949 +390,837,3.0,867073966 +390,838,4.0,867073939 +390,849,3.0,867073883 +390,852,3.0,867072949 +390,858,5.0,867072949 +390,861,4.0,867076294 +390,870,1.0,867074763 +390,880,1.0,867073883 +390,891,1.0,867073940 +390,991,2.0,867074292 +390,1036,5.0,867076007 +390,1042,4.0,867073940 +390,1047,3.0,867073883 +390,1049,4.0,867074211 +390,1101,3.0,867076127 +390,1113,3.0,867074383 +390,1120,4.0,867074211 +390,1129,3.0,867076243 +390,1183,3.0,867073029 +390,1196,5.0,867076002 +390,1197,4.0,867075844 +390,1198,5.0,867076002 +390,1200,3.0,867076126 +390,1201,3.0,867076211 +390,1204,3.0,867076176 +390,1210,5.0,867072919 +390,1214,3.0,867076127 +390,1221,5.0,867076211 +390,1240,3.0,867076126 +390,1242,2.0,867076211 +390,1270,5.0,867075841 +390,1275,3.0,867076176 +390,1287,3.0,867076126 +390,1291,3.0,867075844 +390,1304,5.0,867076176 +390,1320,3.0,867076294 +390,1356,5.0,867073609 +390,1363,3.0,867074252 +390,1370,3.0,867076211 +390,1371,3.0,867076211 +390,1372,3.0,867076176 +390,1373,3.0,867076243 +390,1374,5.0,867076126 +390,1375,3.0,867076176 +390,1376,5.0,867076007 +390,1377,3.0,867076243 +390,1385,3.0,867076211 +390,1393,5.0,867072979 +390,1405,1.0,867075909 +390,1409,4.0,867073723 +390,1410,2.0,867074518 +390,1429,4.0,867074292 +390,1431,1.0,867074344 +390,1459,3.0,867074406 +390,1461,3.0,867074518 +390,1463,4.0,867074777 +390,1499,2.0,867074631 +390,1513,3.0,867074680 +390,1515,5.0,867074649 +390,1527,3.0,867074406 +390,1544,5.0,867074406 +390,1562,3.0,867074905 +390,2019,3.0,867076127 +391,4,2.0,891534197 +391,17,4.0,891533092 +391,35,5.0,891533260 +391,45,3.0,891533920 +391,46,4.0,891534104 +391,47,3.0,891533670 +391,50,5.0,891533526 +391,58,5.0,891532936 +391,96,1.0,891532936 +391,110,4.0,891533562 +391,111,3.0,891534239 +391,144,5.0,891533787 +391,150,2.0,891533670 +391,151,2.0,891533961 +391,162,5.0,891533562 +391,222,4.0,891534008 +391,233,4.0,891534162 +391,272,5.0,891533260 +391,277,1.0,891533848 +391,280,4.0,891533670 +391,299,3.0,891532936 +391,300,4.0,891533884 +391,302,4.0,891533396 +391,318,5.0,891533562 +391,319,3.0,891532808 +391,331,3.0,891533594 +391,342,2.0,891533233 +391,347,4.0,891534104 +391,356,3.0,891533883 +391,357,4.0,891533148 +391,381,1.0,891533743 +391,382,1.0,891534197 +391,412,3.0,891534008 +391,475,4.0,891533526 +391,481,4.0,891534008 +391,493,3.0,891533743 +391,497,4.0,891533092 +391,501,4.0,891532848 +391,506,3.0,891533291 +391,508,2.0,891534008 +391,509,5.0,891534357 +391,515,5.0,891533055 +391,521,4.0,891533848 +391,522,5.0,891534357 +391,527,5.0,891533562 +391,531,4.0,891533260 +391,534,5.0,891533260 +391,535,5.0,891533624 +391,537,3.0,891533920 +391,555,4.0,891533920 +391,587,1.0,891534197 +391,590,3.0,891533670 +391,592,3.0,891534069 +391,728,5.0,891532936 +391,778,5.0,891534357 +391,838,4.0,891533291 +391,892,5.0,891533210 +391,924,3.0,891533670 +391,1097,1.0,891533787 +391,1131,4.0,891532976 +391,1132,5.0,891533006 +391,1171,3.0,891533743 +391,1172,5.0,891534357 +391,1175,5.0,891532881 +391,1180,5.0,891533210 +391,1183,5.0,891533414 +391,1185,5.0,891533092 +391,1190,1.0,891533210 +391,1193,5.0,891534357 +391,1199,2.0,891533562 +391,1202,5.0,891534357 +391,1204,3.0,891533526 +391,1206,3.0,891533210 +391,1207,5.0,891534357 +391,1208,5.0,891534357 +391,1212,5.0,891534357 +391,1224,4.0,891532936 +391,1225,5.0,891533594 +391,1237,5.0,891533961 +391,1243,4.0,891533055 +391,1245,3.0,891533961 +391,1246,3.0,891533920 +391,1249,4.0,891533396 +391,1254,5.0,891533526 +391,1262,3.0,891533701 +391,1263,5.0,891533701 +391,1268,4.0,891534070 +391,1271,4.0,891533884 +391,1273,5.0,891533624 +391,1276,5.0,891533624 +391,1277,4.0,891532976 +391,1279,3.0,891533884 +391,1283,4.0,891533594 +391,1287,4.0,891533920 +391,1290,4.0,891533701 +391,1293,4.0,891533526 +391,1296,5.0,891533112 +391,1298,1.0,891533787 +391,1301,5.0,891533594 +391,1302,3.0,891533884 +391,1306,1.0,891534162 +391,1344,2.0,891533624 +391,1357,4.0,891532848 +391,1419,3.0,891533055 +391,1596,3.0,891534410 +391,1611,5.0,891534069 +391,1617,5.0,891532748 +391,1641,4.0,891532748 +391,1643,5.0,891534455 +391,1673,3.0,891534410 +391,1721,1.0,891532748 +391,1722,3.0,891534410 +391,2019,5.0,891534357 +392,169,1.5,1226176992 +392,605,4.0,1226176964 +392,1104,3.0,1226176844 +392,1203,3.0,1226177143 +392,1566,2.0,1226176907 +392,2137,3.5,1226176873 +392,2329,4.5,1226177160 +392,2567,2.0,1226176936 +392,2747,2.0,1226177019 +392,2858,4.0,1226177156 +392,2926,4.0,1226176984 +392,2959,4.0,1226177270 +392,3034,2.0,1226176943 +392,3157,3.0,1226176916 +392,3273,1.0,1226176860 +392,3791,1.5,1226177002 +392,4973,4.0,1226177152 +392,6296,3.5,1226177035 +392,7361,4.0,1226177336 +392,8784,4.0,1226176813 +392,46976,3.0,1226177023 +392,47382,4.0,1226177308 +392,56949,3.0,1226177294 +392,58107,1.0,1226177310 +392,58559,4.5,1226177264 +393,16,2.5,1058471878 +393,187,3.5,1058472448 +393,235,4.5,1058471666 +393,432,1.5,1058471886 +393,435,2.0,1058471824 +393,497,4.0,1058471850 +393,585,2.0,1058473252 +393,589,1.0,1058472166 +393,594,2.5,1058471705 +393,728,3.5,1058472358 +393,753,3.5,1058472578 +393,801,3.0,1058473278 +393,920,3.5,1058471838 +393,934,2.0,1058472418 +393,1010,1.5,1058472676 +393,1027,1.5,1058473262 +393,1079,3.0,1058471682 +393,1120,4.0,1058472195 +393,1206,3.5,1058471814 +393,1208,4.0,1058471871 +393,1230,4.5,1058471722 +393,1247,4.0,1058471889 +393,1387,4.0,1058471697 +393,1394,4.5,1058471897 +393,1527,3.5,1058471831 +393,1580,1.5,1058472377 +393,1584,3.5,1058471819 +393,1923,3.5,1058472201 +393,1968,4.0,1058471657 +393,2453,1.5,1058472672 +393,2683,2.5,1058471811 +393,2706,3.5,1058471863 +393,2747,2.0,1058472608 +393,3104,3.5,1058472141 +393,3977,2.5,1058472591 +393,4936,3.0,1058472487 +393,5065,1.5,1058473293 +393,5673,4.0,1058472148 +393,5820,4.5,1058472096 +393,5917,1.5,1058472568 +393,5954,3.5,1058472106 +393,5992,4.0,1058472154 +393,5995,4.5,1058472089 +393,6333,2.5,1058472005 +393,6367,4.5,1058472021 +393,6380,5.0,1058471996 +393,6428,3.0,1058472420 +393,6436,4.0,1058472218 +393,6466,4.0,1058472363 +393,6477,3.0,1058472384 +393,6503,2.5,1058472040 +394,31,2.0,1297524887 +394,32,4.0,1298378877 +394,39,3.0,1298379688 +394,47,4.0,1298379179 +394,50,4.5,1297525294 +394,95,3.0,1298379707 +394,110,2.5,1298378793 +394,165,4.0,1298378968 +394,185,3.5,1298379917 +394,208,1.5,1298379803 +394,246,2.5,1297524856 +394,256,3.5,1297524871 +394,260,3.0,1298378889 +394,277,2.5,1297524876 +394,288,3.5,1298379893 +394,296,4.5,1298378819 +394,316,3.0,1298379015 +394,318,3.0,1297525296 +394,333,3.5,1297524836 +394,344,1.5,1298378785 +394,355,0.5,1297524890 +394,357,3.5,1298379617 +394,364,3.0,1298378951 +394,367,0.5,1298379281 +394,377,3.0,1298378869 +394,380,3.0,1298379000 +394,454,3.0,1298379824 +394,500,3.5,1298379427 +394,515,3.0,1297524852 +394,527,0.5,1297525234 +394,529,3.0,1297524846 +394,585,2.0,1297524893 +394,589,3.0,1298379101 +394,590,2.0,1298378901 +394,592,3.5,1298378754 +394,597,3.5,1298379340 +394,608,5.0,1298379775 +394,648,4.5,1298379363 +394,733,4.0,1298379043 +394,745,2.0,1297525155 +394,750,3.5,1297525141 +394,780,3.0,1298378956 +394,838,4.5,1297525192 +394,858,3.0,1298379411 +394,899,3.5,1297524879 +394,912,3.5,1297525265 +394,914,3.5,1297524899 +394,926,3.0,1297525299 +394,1060,2.0,1297524913 +394,1089,3.0,1298379567 +394,1092,3.0,1297524813 +394,1136,4.5,1297525144 +394,1148,2.0,1297525158 +394,1196,4.0,1298378936 +394,1197,5.0,1298379277 +394,1198,4.0,1297525136 +394,1203,3.0,1297525243 +394,1207,2.0,1297525262 +394,1210,3.5,1298379530 +394,1213,3.5,1298379513 +394,1221,3.0,1297525268 +394,1240,3.0,1298379161 +394,1258,3.5,1298379922 +394,1263,0.5,1297524895 +394,1265,4.0,1298379026 +394,1270,4.0,1298378747 +394,1285,5.0,1297524817 +394,1291,4.5,1298379228 +394,1293,1.5,1297524907 +394,1333,4.0,1297524822 +394,1375,3.5,1297524840 +394,1449,4.0,1297604284 +394,1517,3.5,1298379588 +394,1527,4.0,1298379396 +394,1580,4.0,1298379093 +394,1721,2.0,1298378961 +394,1747,2.0,1297524830 +394,1784,3.5,1298379293 +394,1968,4.5,1298379683 +394,2000,4.0,1298379945 +394,2028,1.0,1298378829 +394,2115,4.0,1298379419 +394,2174,3.0,1298379864 +394,2291,3.0,1298379598 +394,2396,4.0,1298379784 +394,2571,5.0,1298378974 +394,2628,4.0,1298378860 +394,2683,3.5,1298379193 +394,2716,3.5,1298379167 +394,2762,4.5,1298379110 +394,2791,4.0,1298379649 +394,2916,4.5,1298379366 +394,2997,4.0,1298379033 +394,3022,1.5,1297525167 +394,3052,4.5,1298379931 +394,3307,1.5,1297525164 +394,3481,4.5,1298379798 +394,3507,4.0,1297603435 +394,3623,3.5,1298379536 +394,3793,4.0,1298378941 +394,3948,3.5,1298379874 +394,3996,2.5,1298378898 +394,4027,3.5,1298379870 +394,4306,5.0,1298378932 +394,4350,1.0,1297603765 +394,4795,2.0,1297525178 +394,4886,3.0,1298378769 +394,4896,4.5,1298379235 +394,4963,5.0,1298379351 +394,4993,2.0,1298379006 +394,5008,2.0,1297525240 +394,5378,4.0,1298379097 +394,5418,4.0,1298379053 +394,5445,4.5,1298379058 +394,5637,1.5,1297603666 +394,5752,3.0,1297603671 +394,5816,4.5,1298379584 +394,5850,0.5,1297549437 +394,5989,3.5,1298379183 +394,6077,4.5,1297604697 +394,6125,4.5,1297604675 +394,6365,4.5,1298379213 +394,6600,1.0,1297549404 +394,6644,0.5,1297604043 +394,6711,3.0,1298379010 +394,6808,0.5,1297604002 +394,6874,4.0,1298379035 +394,7058,3.0,1297603770 +394,7147,2.0,1298379667 +394,7361,4.5,1298378823 +394,7419,4.0,1297604034 +394,7438,3.5,1298378778 +394,7502,1.5,1297525251 +394,7505,0.5,1297603192 +394,7762,3.0,1297603004 +394,7833,4.5,1297604385 +394,7934,3.0,1297604014 +394,8167,1.0,1297603355 +394,8275,0.5,1297603360 +394,8360,4.0,1298379560 +394,8368,4.5,1298379526 +394,8491,2.0,1297602848 +394,8507,0.5,1297603458 +394,8574,0.5,1297525187 +394,8636,3.0,1298379124 +394,8665,4.0,1298379416 +394,8711,4.5,1297604671 +394,8777,0.5,1297549397 +394,8961,3.0,1298378905 +394,8964,1.5,1297549400 +394,25737,0.5,1297603418 +394,25826,0.5,1297603203 +394,25874,0.5,1297549419 +394,25901,0.5,1297603755 +394,26009,0.5,1297603352 +394,26025,0.5,1297603480 +394,26188,0.5,1297603422 +394,26268,4.0,1297604566 +394,26342,3.5,1297603413 +394,26366,0.5,1297549441 +394,26425,3.5,1297604053 +394,26528,1.0,1297603010 +394,27351,1.0,1297549387 +394,27857,0.5,1297603451 +394,27879,0.5,1297603761 +394,31364,0.5,1297603425 +394,31921,4.0,1297602997 +394,32280,0.5,1297603742 +394,32464,3.0,1297603275 +394,32844,0.5,1297603998 +394,33760,3.5,1297549423 +394,42783,1.5,1297525259 +394,44555,1.5,1297525281 +394,46578,5.0,1298379407 +394,47997,1.5,1298378365 +394,48516,4.0,1298378883 +394,48780,4.0,1298379509 +394,49272,3.0,1298379107 +394,53038,0.5,1297603483 +394,53737,0.5,1297603987 +394,54286,4.5,1298379246 +394,54910,0.5,1297549393 +394,55167,0.5,1297603820 +394,55820,2.0,1298379564 +394,57453,2.5,1297602837 +394,58559,3.0,1298378736 +394,60137,0.5,1297603448 +394,60990,0.5,1297603454 +394,61323,3.5,1298301250 +394,66019,1.0,1297525273 +394,68884,0.5,1297549415 +394,69974,0.5,1297549439 +394,70846,0.5,1297603785 +394,74228,1.0,1297549413 +394,74327,0.5,1297549434 +394,76293,4.5,1298203833 +394,77658,3.0,1297603199 +394,78122,0.5,1297603990 +394,79132,5.0,1298129686 +394,79242,3.0,1297525184 +394,79274,0.5,1297603745 +394,79428,5.0,1298203985 +394,79702,4.5,1297604462 +394,81229,5.0,1298203785 +394,84312,1.0,1298378762 +395,110,3.0,953006694 +395,260,5.0,953007037 +395,415,2.0,953006775 +395,671,5.0,953007109 +395,1097,4.0,953007109 +395,1200,3.0,953006948 +395,1206,3.0,953006948 +395,1210,5.0,953007149 +395,1374,4.0,953007207 +395,1375,4.0,953007282 +395,1376,4.0,953007242 +395,1527,1.0,953007282 +395,2010,4.0,953007109 +395,2023,1.0,953006694 +395,2240,2.0,953006775 +395,2406,2.0,953006694 +395,2455,2.0,953007207 +395,2571,3.0,953007037 +395,2628,5.0,953007282 +395,2640,2.0,953007207 +395,2916,3.0,953007109 +395,2985,3.0,953007207 +395,3471,4.0,953007207 +396,1,5.0,834998311 +396,2,3.0,834998422 +396,10,3.0,834998293 +396,11,3.0,839253775 +396,12,4.0,838629846 +396,15,4.0,834998937 +396,17,4.0,839252545 +396,24,3.0,834998979 +396,29,4.0,839256240 +396,32,3.0,838629761 +396,44,3.0,834998502 +396,47,3.0,838629684 +396,50,4.0,834998349 +396,57,3.0,834999016 +396,65,2.0,841835432 +396,66,2.0,839252578 +396,76,3.0,838629626 +396,92,3.0,841742711 +396,93,4.0,834998961 +396,110,3.0,834998326 +396,150,5.0,834998231 +396,151,5.0,834998402 +396,153,3.0,834998259 +396,158,3.0,834998490 +396,160,3.0,834998361 +396,161,4.0,834998293 +396,168,2.0,834998490 +396,170,3.0,834998819 +396,172,3.0,834998490 +396,173,3.0,834998379 +396,177,3.0,834998937 +396,185,3.0,834998311 +396,188,3.0,839255200 +396,196,3.0,834998402 +396,198,4.0,834998859 +396,208,3.0,834998311 +396,234,3.0,834998766 +396,236,4.0,839253755 +396,237,3.0,834998588 +396,241,3.0,835000928 +396,249,3.0,838629725 +396,252,4.0,834998402 +396,253,4.0,834998311 +396,257,4.0,842867740 +396,272,3.0,834998552 +396,273,3.0,834998588 +396,274,3.0,839255123 +396,275,3.0,834999034 +396,276,3.0,834998566 +396,279,2.0,834999180 +396,289,3.0,839254108 +396,292,4.0,834998293 +396,295,3.0,835000969 +396,302,4.0,834999154 +396,303,3.0,834998787 +396,316,4.0,834998277 +396,317,3.0,834998336 +396,327,3.0,834998807 +396,328,3.0,834998914 +396,329,2.0,834998277 +396,338,3.0,834998807 +396,339,4.0,834998293 +396,340,3.0,839255220 +396,342,3.0,834998748 +396,344,2.0,834998259 +396,351,3.0,834998889 +396,353,3.0,834998730 +396,355,3.0,834998756 +396,356,3.0,834998388 +396,357,3.0,834998566 +396,362,3.0,834998901 +396,364,4.0,834998379 +396,367,4.0,834998379 +396,368,4.0,834998827 +396,370,1.0,834998874 +396,372,2.0,834998993 +396,380,3.0,834998231 +396,382,3.0,835000761 +396,405,2.0,834999136 +396,410,3.0,834998326 +396,412,2.0,841743006 +396,420,4.0,834998349 +396,432,2.0,834998361 +396,434,3.0,834998293 +396,435,2.0,834998379 +396,440,3.0,834998422 +396,442,3.0,834998519 +396,455,3.0,834998968 +396,457,3.0,834998326 +396,466,2.0,834998889 +396,468,4.0,838804862 +396,475,4.0,834998952 +396,480,5.0,834998402 +396,485,3.0,834998859 +396,489,1.0,834999107 +396,494,4.0,842867755 +396,497,5.0,839252831 +396,500,3.0,834998552 +396,505,3.0,835000900 +396,508,3.0,834998775 +396,514,3.0,835000182 +396,515,4.0,835000106 +396,519,2.0,834999054 +396,520,3.0,834998914 +396,533,3.0,834999054 +396,539,3.0,834998588 +396,542,3.0,835000808 +396,543,2.0,834998993 +396,546,3.0,834999054 +396,551,3.0,834998566 +396,552,3.0,834998787 +396,553,4.0,843048926 +396,575,3.0,835000803 +396,586,3.0,834998730 +396,587,3.0,834998616 +396,588,2.0,843049252 +396,589,4.0,834998502 +396,590,5.0,834998231 +396,592,4.0,834998231 +396,593,5.0,834998311 +396,594,3.0,834998901 +396,595,4.0,834998277 +396,596,3.0,834999002 +396,597,3.0,834998616 +396,610,3.0,834998787 +396,637,3.0,843048878 +396,648,5.0,834998842 +396,653,4.0,835172821 +396,724,4.0,847371184 +396,780,4.0,838804157 +396,786,3.0,838804170 +396,799,4.0,841743307 +396,880,4.0,841743368 +396,1015,4.0,841743081 +396,1020,3.0,841743135 +396,1022,3.0,843049253 +396,1027,3.0,841743199 +396,1028,4.0,841835490 +396,1035,5.0,843049223 +396,1036,3.0,841743572 +396,1079,4.0,843049094 +397,413,2.0,1268904250 +397,519,3.5,1268904290 +397,637,2.5,1268904234 +397,1385,2.5,1268904255 +397,1591,2.5,1268904278 +397,2761,3.5,1268905102 +397,2989,4.0,1268904333 +397,2990,4.0,1268904335 +397,3157,3.0,1268904301 +397,3263,3.5,1268904262 +397,3267,4.0,1268904322 +397,3688,2.5,1268904440 +397,3704,3.0,1268904281 +397,3972,4.0,1268904399 +397,3998,3.5,1268904446 +397,5218,4.0,1268905096 +397,5500,4.5,1268904436 +397,5618,4.5,1268904994 +397,5971,4.5,1268904987 +397,6283,4.0,1268905068 +397,6377,4.0,1268905080 +397,8132,4.5,1268904452 +397,8961,4.0,1268905099 +397,26776,4.5,1268904991 +397,31658,4.0,1268904980 +397,33615,3.0,1268905115 +397,45431,3.5,1268905033 +397,48982,3.5,1268905084 +397,50872,3.5,1268905149 +397,56251,3.0,1268905093 +397,58299,4.0,1268905025 +397,59784,3.5,1268905107 +397,60069,4.5,1268904269 +397,63859,3.5,1268905054 +397,65261,4.5,1268904754 +397,67252,3.0,1268904798 +397,68073,4.0,1268904890 +397,68358,4.0,1268904901 +397,68954,4.0,1268904996 +397,69275,3.0,1268904791 +397,69481,4.5,1268904704 +397,70286,4.0,1268904715 +397,70344,3.5,1268904739 +397,70862,3.0,1268904750 +397,71211,3.5,1268904748 +397,71248,2.5,1268904789 +397,71252,1.5,1268904807 +397,71254,3.5,1268904779 +397,71264,4.0,1268904736 +397,71518,3.5,1268904767 +397,71520,3.0,1268904772 +397,71530,3.0,1268904774 +397,71535,3.5,1268904768 +397,71838,3.0,1268904726 +397,72011,3.5,1268904764 +397,72171,4.0,1268904731 +397,72378,3.0,1268904776 +397,72489,2.5,1268904709 +397,72701,3.0,1268904793 +398,173,5.0,978407734 +398,593,3.0,978406191 +398,648,4.0,978406428 +398,1011,4.0,978407020 +398,1073,3.0,978406997 +398,1136,4.0,978406961 +398,1196,4.0,978407079 +398,1197,5.0,978407257 +398,1198,4.0,978406100 +398,1222,3.0,978407107 +398,1240,4.0,978407304 +398,1275,4.0,978407320 +398,1374,3.0,978407285 +398,1376,3.0,978406191 +398,1380,5.0,978406997 +398,1923,5.0,978406100 +398,1967,4.0,978407244 +398,2000,4.0,978407164 +398,2001,4.0,978407164 +398,2072,4.0,978407129 +398,2111,4.0,978407337 +398,2115,4.0,978407107 +398,2134,4.0,978407360 +398,2140,4.0,978407208 +398,2174,3.0,978407285 +398,2194,4.0,978407337 +398,2301,5.0,978407285 +398,2375,4.0,978407164 +398,2414,4.0,978407285 +398,2716,4.0,978407208 +398,2746,4.0,978407129 +398,2916,5.0,978407711 +398,3087,4.0,978407107 +398,3104,4.0,978407164 +398,3287,3.0,978406609 +398,3361,5.0,978407187 +398,3396,4.0,978406924 +398,3480,4.0,978407244 +398,3555,4.0,978406387 +398,3578,4.0,978406328 +398,3617,3.0,978406428 +398,3671,5.0,978406997 +398,3717,4.0,978406428 +398,3745,5.0,978406387 +398,3751,2.0,978406609 +398,3753,3.0,978406328 +398,3755,4.0,978406328 +398,3785,5.0,978406328 +398,3793,5.0,978406328 +398,3799,4.0,978406609 +398,3821,4.0,978406463 +398,3997,5.0,978406785 +398,4002,3.0,978407079 +399,10,3.0,841562243 +399,25,4.0,841562580 +399,47,2.0,841562530 +399,50,4.0,841562332 +399,193,2.0,841562580 +399,194,4.0,841562690 +399,296,5.0,841562655 +399,300,4.0,841562299 +399,318,4.0,841562212 +399,357,4.0,841562392 +399,434,2.0,841562212 +399,457,3.0,841562177 +399,471,5.0,841562601 +399,480,3.0,841562269 +399,481,1.0,841562644 +399,509,4.0,841562431 +399,586,1.0,841562354 +399,588,3.0,841562156 +399,593,4.0,841562177 +399,597,3.0,841562354 +400,10,3.0,840205137 +400,21,4.0,840205221 +400,32,4.0,840205237 +400,34,4.0,840205170 +400,39,4.0,840205237 +400,47,4.0,840205170 +400,50,5.0,840205221 +400,110,5.0,840205154 +400,150,4.0,840205051 +400,153,3.0,840205085 +400,160,2.0,840205237 +400,161,3.0,840205118 +400,165,4.0,840205085 +400,185,1.0,840205137 +400,208,3.0,840205137 +400,225,3.0,840205203 +400,231,3.0,840205101 +400,253,3.0,840205137 +400,266,3.0,840205253 +400,288,3.0,840205154 +400,292,3.0,840205118 +400,296,5.0,840205051 +400,300,3.0,840205170 +400,316,3.0,840205101 +400,317,3.0,840205221 +400,318,5.0,840205118 +400,329,4.0,840205118 +400,344,3.0,840205085 +400,348,4.0,840205404 +400,349,3.0,840205085 +400,356,4.0,840205154 +400,364,4.0,840205170 +400,367,4.0,840205203 +400,377,4.0,840205203 +400,380,4.0,840205051 +400,410,3.0,840205170 +400,420,2.0,840205221 +400,434,3.0,840205118 +400,435,3.0,840205253 +400,454,3.0,840205154 +400,457,4.0,840205101 +400,480,5.0,840205154 +400,500,3.0,840205221 +400,515,4.0,840205382 +400,527,4.0,840205253 +400,539,3.0,840205253 +400,586,4.0,840205237 +400,587,3.0,840205237 +400,588,4.0,840205085 +400,589,3.0,840205203 +400,590,4.0,840205051 +400,592,4.0,840205051 +400,593,5.0,840205101 +400,594,5.0,840205381 +400,595,4.0,840205101 +400,596,4.0,840205381 +400,597,3.0,840205253 +400,608,4.0,840205381 +401,1,5.0,977459322 +401,260,5.0,977457965 +401,329,5.0,977459200 +401,356,5.0,977458147 +401,382,4.0,977458579 +401,466,4.0,977457791 +401,541,5.0,977458791 +401,594,5.0,977459322 +401,610,5.0,977459078 +401,611,5.0,977458740 +401,671,5.0,977459005 +401,674,5.0,977459200 +401,742,3.0,977458632 +401,879,3.0,977458608 +401,924,5.0,977458816 +401,1077,5.0,977459005 +401,1091,2.0,977457791 +401,1097,4.0,977458892 +401,1127,3.0,977457864 +401,1196,5.0,977458791 +401,1198,5.0,977457764 +401,1210,5.0,977458912 +401,1214,5.0,977458791 +401,1215,5.0,977458248 +401,1221,5.0,977457895 +401,1253,5.0,977458848 +401,1265,5.0,977458075 +401,1270,4.0,977458848 +401,1301,5.0,977458892 +401,1320,5.0,977458551 +401,1356,5.0,977459049 +401,1372,4.0,977459200 +401,1374,5.0,977458934 +401,1375,5.0,977459103 +401,1376,5.0,977458980 +401,1580,5.0,977458980 +401,1584,5.0,977459049 +401,1676,4.0,977459163 +401,2004,2.0,977458551 +401,2005,1.0,977457895 +401,2105,4.0,977459163 +401,2111,4.0,977457895 +401,2327,4.0,977458579 +401,2346,4.0,977459049 +401,2355,4.0,977458126 +401,2363,5.0,977458980 +401,2365,5.0,977459049 +401,2455,5.0,977458980 +401,2527,3.0,977459049 +401,2528,4.0,977459200 +401,2529,5.0,977458892 +401,2571,5.0,977458816 +401,2628,3.0,977457965 +401,2640,3.0,977459103 +401,2657,5.0,977458740 +401,2719,4.0,977458632 +401,2901,5.0,977459078 +401,2916,4.0,977458892 +401,2985,4.0,977458934 +401,3033,5.0,977459163 +401,3175,5.0,977458934 +401,3253,5.0,977458171 +401,3471,5.0,977458791 +401,3499,5.0,977458248 +401,3527,4.0,977458912 +401,3699,4.0,977459005 +401,3702,5.0,977458848 +401,3703,5.0,977458791 +401,3704,5.0,977459103 +401,3751,4.0,977459322 +401,3919,4.0,977458608 +401,3934,4.0,977459200 +402,1,2.0,1443393600 +402,11,4.5,1462947988 +402,13,4.5,1462948266 +402,150,4.5,1443394942 +402,216,4.0,1462953653 +402,239,4.5,1462947510 +402,258,3.5,1462948536 +402,260,4.0,1443395107 +402,356,5.0,1462946740 +402,364,4.0,1462948530 +402,539,4.5,1462948006 +402,587,4.0,1462946890 +402,588,4.0,1462947059 +402,595,4.0,1462948572 +402,596,3.0,1462948585 +402,750,3.0,1443393981 +402,780,4.0,1443394940 +402,858,2.5,1443395222 +402,908,3.5,1443393990 +402,1028,4.5,1468919522 +402,1035,4.0,1462947339 +402,1196,4.5,1443393714 +402,1198,4.0,1443393720 +402,1210,4.5,1443394156 +402,1225,4.5,1443394124 +402,1240,2.5,1462948056 +402,1246,3.5,1443406737 +402,1265,4.5,1443395130 +402,1270,5.0,1443393596 +402,1288,3.5,1443394150 +402,1302,3.5,1443406742 +402,1356,4.0,1462948490 +402,1376,3.0,1462945810 +402,1377,3.5,1462947708 +402,1393,3.0,1443406758 +402,1527,3.5,1469261724 +402,1566,3.0,1462947356 +402,1580,3.5,1469261722 +402,1584,4.5,1462947954 +402,1608,3.5,1462947597 +402,1682,4.0,1443395139 +402,1721,3.0,1462947256 +402,1777,3.0,1462946586 +402,1835,4.0,1462946838 +402,1876,4.0,1462947231 +402,1918,3.0,1462948509 +402,1968,4.0,1462946461 +402,2011,5.0,1443395099 +402,2012,4.0,1443395100 +402,2123,3.0,1462948541 +402,2335,4.5,1462953671 +402,2420,3.5,1462948473 +402,2421,3.0,1462946904 +402,2424,4.0,1462946573 +402,2447,4.0,1462946530 +402,2496,4.5,1462947516 +402,2571,4.5,1443393603 +402,2706,3.0,1462946468 +402,2716,3.5,1443395102 +402,2762,3.0,1443424299 +402,2791,3.5,1462946881 +402,2861,4.5,1466152851 +402,2916,3.0,1462947931 +402,2918,3.5,1443424373 +402,3000,4.5,1443424293 +402,3617,3.0,1443394535 +402,3624,3.5,1462948570 +402,3793,3.0,1443394377 +402,3825,3.5,1443394714 +402,3916,4.0,1443394534 +402,3948,3.0,1443394417 +402,4018,4.5,1443394507 +402,4023,4.5,1443394662 +402,4299,3.5,1443394599 +402,4306,2.5,1443394373 +402,4343,3.0,1443394673 +402,4369,3.0,1443394554 +402,4446,3.0,1443394573 +402,4447,3.5,1443394504 +402,4571,3.5,1443395111 +402,4700,3.0,1462946770 +402,4701,3.5,1443394624 +402,4718,3.0,1443394526 +402,4823,3.5,1443394796 +402,4963,4.0,1443394383 +402,4974,2.5,1462953628 +402,4992,4.0,1443394841 +402,4993,4.0,1443393993 +402,4995,3.0,1443406751 +402,5066,4.0,1462946513 +402,5151,3.0,1462947289 +402,5218,1.5,1462946428 +402,5283,4.0,1462946479 +402,5349,3.0,1443394381 +402,5378,2.0,1443394407 +402,5449,3.5,1443394818 +402,5459,3.5,1443394488 +402,5481,3.5,1443394520 +402,5618,3.0,1443393972 +402,5816,4.0,1443394426 +402,5872,3.5,1443394628 +402,5944,3.0,1443394808 +402,5952,4.0,1443394001 +402,5971,4.0,1443424289 +402,6155,3.5,1443393842 +402,6156,4.0,1443393881 +402,6157,4.5,1443393799 +402,6188,2.0,1462953631 +402,6283,4.0,1443394890 +402,6350,3.5,1443424317 +402,6365,2.5,1462945086 +402,6377,3.5,1443394386 +402,6537,3.0,1443394517 +402,6539,3.0,1462945079 +402,6565,3.5,1443393800 +402,6934,2.5,1443394446 +402,7099,3.0,1443424312 +402,7143,3.0,1443394476 +402,7153,4.0,1443394372 +402,7263,4.0,1443393921 +402,7317,3.0,1462953624 +402,7318,3.5,1443394813 +402,7346,3.5,1443393908 +402,7451,3.0,1443394667 +402,8361,3.5,1443393771 +402,8368,4.0,1443394430 +402,8376,3.0,1443393763 +402,8529,3.5,1443393791 +402,8533,5.0,1443393820 +402,8636,3.5,1443394412 +402,8641,3.0,1443393789 +402,8644,3.0,1443394485 +402,8807,3.5,1462953661 +402,8808,3.5,1462947259 +402,8866,3.5,1462947446 +402,8961,3.5,1443394396 +402,8972,4.0,1443393795 +402,8984,3.5,1443393775 +402,26662,3.5,1443424365 +402,27266,3.0,1462947537 +402,27611,4.5,1462947691 +402,27660,3.5,1443393866 +402,27808,3.5,1443393910 +402,27821,3.5,1443393933 +402,30793,3.0,1443393737 +402,30825,3.0,1443394697 +402,31658,4.0,1443393777 +402,31696,3.5,1443394691 +402,32587,3.5,1443394409 +402,32598,3.0,1462947560 +402,33794,3.5,1443394393 +402,33830,3.0,1462947312 +402,33836,3.0,1462947294 +402,34048,3.0,1443393761 +402,34162,4.5,1443393741 +402,34405,4.5,1443394159 +402,35836,3.0,1443394490 +402,36525,4.5,1462946729 +402,39292,4.5,1443393839 +402,39435,3.0,1462948236 +402,40581,4.0,1462946898 +402,40815,4.0,1443394479 +402,44004,4.0,1462946712 +402,45447,3.0,1443394614 +402,45672,4.0,1443393901 +402,45722,3.5,1443394492 +402,45728,3.0,1443393876 +402,45950,4.0,1443393878 +402,46578,4.0,1443394449 +402,46970,3.0,1443393899 +402,46972,3.5,1443393863 +402,46976,4.0,1443393767 +402,47099,4.5,1443393832 +402,47518,4.0,1462953178 +402,48520,4.0,1462946929 +402,49526,3.5,1462946544 +402,50872,4.0,1443394481 +402,51084,4.0,1462946753 +402,51662,3.5,1443394465 +402,52287,4.0,1462948051 +402,52973,3.5,1443394632 +402,53322,3.0,1462948512 +402,53996,3.5,1443394585 +402,54001,4.0,1443394565 +402,54276,4.0,1466250173 +402,55245,3.5,1462946897 +402,56152,4.0,1462948014 +402,57640,3.5,1462946113 +402,58047,5.0,1462946227 +402,58315,3.5,1462947314 +402,58347,4.0,1462947452 +402,58559,3.5,1443393723 +402,58998,3.0,1443394202 +402,59022,3.0,1462946255 +402,59126,3.0,1462946291 +402,59315,4.5,1443394438 +402,59333,4.0,1462948220 +402,59501,3.5,1462946165 +402,59615,3.0,1443394683 +402,59900,3.5,1462946215 +402,60069,4.5,1443394120 +402,60074,3.5,1443394783 +402,60126,3.5,1462946152 +402,63859,3.5,1462946142 +402,64614,4.0,1443424342 +402,64969,4.0,1462948032 +402,65261,3.0,1462946156 +402,67197,2.0,1462946224 +402,67923,4.5,1462946266 +402,68135,4.5,1462946174 +402,68358,4.0,1443394511 +402,68554,3.0,1462946125 +402,68793,4.0,1462946270 +402,68954,3.0,1443424308 +402,69069,4.0,1462948514 +402,69122,3.0,1443394522 +402,69406,4.0,1462946148 +402,69526,3.0,1462946120 +402,69606,4.0,1462946918 +402,69757,4.5,1443394558 +402,69844,4.0,1443394635 +402,70663,3.5,1462947227 +402,71535,3.5,1443394582 +402,72011,4.0,1443394750 +402,72209,3.5,1462948496 +402,72378,3.0,1443394856 +402,72641,3.5,1443394887 +402,72998,3.0,1443394468 +402,73017,4.0,1443394560 +402,74946,4.5,1462947912 +402,76077,3.5,1462946193 +402,76093,4.5,1443394164 +402,77561,3.5,1443394658 +402,77658,5.0,1462945966 +402,78105,4.0,1462947240 +402,78499,2.5,1443424333 +402,79132,4.0,1443393986 +402,79139,4.0,1462946305 +402,79185,3.0,1462948251 +402,79224,2.5,1467617551 +402,79695,3.5,1462946145 +402,79702,4.0,1443394197 +402,80549,3.5,1462945806 +402,80586,4.0,1462945799 +402,81591,2.0,1462947698 +402,81784,4.0,1467617507 +402,81834,4.5,1443394654 +402,81847,4.5,1443394829 +402,82461,3.0,1462946116 +402,85131,2.5,1462946311 +402,86332,3.5,1462946784 +402,87232,4.0,1443394688 +402,87430,3.5,1462946239 +402,87520,3.0,1462946218 +402,88125,4.5,1443394645 +402,88140,4.0,1443394836 +402,89745,4.5,1443394568 +402,90746,4.0,1462946211 +402,91529,4.0,1443394571 +402,91542,4.0,1443394825 +402,92509,4.0,1462947418 +402,94325,4.0,1462948002 +402,96079,1.0,1462947992 +402,96588,5.0,1462946842 +402,97913,4.0,1467617607 +402,98243,4.0,1462947916 +402,98491,5.0,1462947937 +402,99007,4.5,1462946747 +402,99813,3.5,1462948062 +402,100527,4.0,1467617541 +402,102125,3.0,1443394900 +402,102445,4.0,1443394884 +402,102720,3.5,1462948036 +402,103042,3.0,1462946331 +402,103249,2.0,1462946329 +402,104374,5.0,1443395151 +402,104863,4.5,1462947946 +402,104913,4.0,1462948481 +402,106487,3.0,1443394875 +402,106918,4.0,1443395154 +402,106920,4.5,1462947321 +402,108979,4.5,1443394118 +402,110102,4.0,1467617656 +402,111362,3.5,1443394894 +402,111759,4.0,1443394809 +402,111921,4.0,1462946592 +402,112006,2.0,1462947884 +402,112175,4.5,1462947981 +402,112767,4.0,1462945108 +402,112852,4.0,1443394743 +402,112897,3.5,1462948546 +402,115147,4.0,1462948242 +402,115617,4.0,1443394224 +402,115664,4.5,1443394238 +402,116797,4.0,1443394208 +402,117192,4.5,1462945915 +402,119155,4.0,1443394270 +402,122882,3.0,1443394223 +402,122886,4.0,1462946343 +402,122892,4.5,1443394229 +402,122900,4.0,1443394232 +402,122902,4.5,1462946407 +402,122904,4.5,1462946100 +402,122920,4.0,1467617533 +402,128512,4.0,1462946380 +402,130087,3.5,1462948605 +402,132046,4.5,1443394250 +402,132796,4.0,1443394279 +402,133419,4.5,1443394246 +402,134130,5.0,1462945064 +402,134853,3.5,1462946341 +402,135137,2.5,1462948011 +402,135567,4.5,1469261732 +402,136562,3.5,1462946375 +402,136864,2.5,1462946395 +402,140110,5.0,1462945804 +402,144620,4.0,1462946388 +402,148652,2.5,1462946405 +402,152081,4.5,1462946339 +403,1,4.0,850779492 +403,25,3.0,850779492 +403,32,3.0,850779492 +403,141,3.0,850779492 +403,188,4.0,850779543 +403,247,5.0,850779543 +403,253,3.0,850779519 +403,296,3.0,850779518 +403,593,3.0,850779519 +403,1215,4.0,850779566 +403,1219,4.0,850779543 +403,1255,5.0,850779609 +403,1258,5.0,850779566 +403,1261,4.0,850779588 +403,1321,4.0,850779588 +403,1333,4.0,850779566 +403,1339,5.0,850779566 +403,1340,4.0,850779609 +403,1341,3.0,850779624 +403,1343,4.0,850779566 +403,1348,5.0,850779608 +403,1349,5.0,850779636 +403,1350,3.0,850779589 +403,1387,5.0,850779589 +404,6,4.0,1026927798 +404,216,4.0,1026927917 +404,593,5.0,1026927875 +404,780,3.0,1026928965 +404,858,5.0,1026927820 +404,1081,5.0,1026928208 +404,1287,5.0,1026928965 +404,1393,3.0,1026928189 +404,1446,4.0,1026928189 +404,1457,3.0,1026927875 +404,1580,4.0,1026928245 +404,2023,4.0,1026927893 +404,2137,5.0,1026929016 +404,2269,3.0,1026928411 +404,2403,2.0,1026928965 +404,2628,4.0,1026927849 +404,2976,3.0,1026927798 +404,3208,1.0,1026927820 +404,3527,5.0,1026928258 +404,4010,5.0,1026928393 +404,4130,3.0,1026928522 +404,4226,4.0,1026928131 +404,4681,3.0,1026927849 +404,4865,2.0,1026928223 +404,4881,4.0,1026928189 +404,4885,2.0,1026928411 +404,4896,4.0,1026928208 +404,4963,3.0,1026928190 +404,4968,4.0,1026928270 +404,5015,4.0,1026928131 +404,5337,5.0,1026928466 +404,5349,3.0,1026928044 +404,5372,3.0,1026928349 +404,5382,4.0,1026928483 +404,5401,4.0,1026929296 +404,5452,1.0,1026928619 +404,5464,5.0,1026928044 +404,5470,4.0,1026929076 +405,10,3.5,1097769358 +405,85,4.0,1097698847 +405,105,3.5,1061357222 +405,110,2.0,1097696563 +405,168,2.5,1097769660 +405,257,1.5,1097696965 +405,260,5.0,1097697526 +405,277,4.0,1061357291 +405,315,3.5,1097769940 +405,339,4.0,1097696700 +405,349,4.0,1097769146 +405,350,4.0,1097696689 +405,356,5.0,1097770325 +405,357,4.0,1097696662 +405,377,2.0,1097769345 +405,380,2.5,1097769216 +405,423,5.0,1097696943 +405,434,1.0,1097696670 +405,457,5.0,1097769055 +405,468,3.0,1061357309 +405,474,4.0,1097769091 +405,509,5.0,1097696643 +405,515,1.0,1097696666 +405,531,4.0,1097698433 +405,586,4.0,1097696655 +405,590,4.5,1097698110 +405,648,2.0,1097769495 +405,653,1.5,1097696648 +405,674,3.0,1097696925 +405,780,4.0,1097769445 +405,858,5.0,1097769125 +405,897,4.5,1097697224 +405,904,5.0,1097696659 +405,908,4.5,1097698395 +405,910,3.0,1061357298 +405,912,5.0,1097696680 +405,915,4.5,1097770155 +405,916,4.5,1097770169 +405,920,5.0,1097698410 +405,931,4.5,1097697200 +405,947,4.0,1097770419 +405,951,4.5,1097698779 +405,952,5.0,1097696892 +405,955,4.0,1097698767 +405,969,4.0,1061357219 +405,1008,3.5,1097698787 +405,1019,4.5,1097770503 +405,1036,4.0,1097696651 +405,1079,4.0,1097770377 +405,1087,3.5,1097699157 +405,1097,4.5,1097770478 +405,1099,4.5,1097698773 +405,1100,3.5,1097698403 +405,1101,4.5,1097769326 +405,1196,4.0,1097769097 +405,1197,4.0,1097769107 +405,1198,4.5,1097696605 +405,1201,3.5,1061357282 +405,1204,4.0,1061357250 +405,1207,5.0,1061357210 +405,1210,4.5,1097769114 +405,1214,3.5,1097769166 +405,1221,5.0,1097696624 +405,1226,4.0,1097770291 +405,1231,4.0,1061357344 +405,1234,5.0,1097696628 +405,1238,4.5,1097696867 +405,1240,4.0,1097698367 +405,1246,4.5,1097698361 +405,1250,2.0,1061357245 +405,1265,5.0,1097770339 +405,1266,4.5,1097696633 +405,1270,5.0,1097698098 +405,1282,5.0,1097696636 +405,1287,4.5,1097769040 +405,1291,4.5,1061363634 +405,1292,5.0,1097696859 +405,1295,3.5,1097697727 +405,1302,2.5,1097698373 +405,1304,5.0,1097697714 +405,1370,3.5,1097696620 +405,1374,4.0,1097769171 +405,1375,3.0,1097769471 +405,1385,2.5,1097696839 +405,1552,3.0,1097769543 +405,1556,1.0,1097696849 +405,1580,4.5,1097769183 +405,1608,2.5,1097769709 +405,1610,4.0,1097769074 +405,1639,2.0,1097696585 +405,1674,4.5,1061357255 +405,1722,3.5,1061357319 +405,1784,5.0,1097698333 +405,1792,3.5,1097769656 +405,1876,2.5,1097696596 +405,1917,1.0,1097696567 +405,1918,2.5,1097698324 +405,1927,4.0,1097697929 +405,1929,1.5,1097697446 +405,1935,4.5,1097697137 +405,1953,4.5,1097768993 +405,1956,3.5,1097698344 +405,1957,3.5,1097698338 +405,1958,4.0,1097770438 +405,1960,4.5,1061363625 +405,1961,4.0,1097696580 +405,2000,4.5,1097769310 +405,2001,3.5,1061357287 +405,2002,3.5,1097698349 +405,2011,2.5,1097698327 +405,2012,4.0,1097696571 +405,2023,5.0,1097769415 +405,2080,3.5,1097698309 +405,2096,3.5,1097698311 +405,2108,3.5,1097696813 +405,2115,4.0,1097769338 +405,2150,5.0,1097696799 +405,2151,4.0,1097698707 +405,2174,3.5,1061363589 +405,2184,4.0,1061363584 +405,2193,4.0,1061363565 +405,2202,3.0,1097697145 +405,2207,4.0,1061363552 +405,2208,2.5,1097698698 +405,2245,2.0,1061363519 +405,2249,3.0,1061363495 +405,2259,4.0,1061363499 +405,2269,3.0,1061363474 +405,2302,4.0,1097698290 +405,2312,4.5,1061363418 +405,2340,0.5,1061363376 +405,2353,4.0,1061363363 +405,2355,4.0,1061363355 +405,2366,3.0,1061363332 +405,2376,3.0,1061363327 +405,2396,3.5,1061363277 +405,2398,3.5,1061363274 +405,2401,3.5,1061363283 +405,2405,3.0,1061363297 +405,2406,4.0,1061363291 +405,2424,3.5,1061363255 +405,2469,3.0,1061363215 +405,2470,5.0,1097696306 +405,2471,3.5,1061363200 +405,2501,5.0,1097696312 +405,2520,3.5,1061363141 +405,2529,3.5,1061363132 +405,2535,2.0,1097697126 +405,2570,4.0,1061363094 +405,2617,1.5,1061357228 +405,2621,4.0,1097698076 +405,2628,2.5,1061363007 +405,2657,3.5,1061362975 +405,2670,3.5,1061362955 +405,2712,1.0,1061362910 +405,2716,3.5,1061362892 +405,2724,2.5,1061362900 +405,2728,4.0,1061362869 +405,2734,1.5,1061362873 +405,2745,2.0,1061362838 +405,2747,3.5,1061362843 +405,2763,4.5,1061362825 +405,2764,5.0,1097696329 +405,2779,4.0,1061362796 +405,2791,2.5,1061362769 +405,2795,2.5,1061362766 +405,2797,4.5,1061362755 +405,2803,4.0,1061362737 +405,2819,3.0,1061362719 +405,2857,2.0,1061362683 +405,2858,0.5,1061362675 +405,2875,4.0,1061362659 +405,2916,3.0,1061362605 +405,2918,1.5,1061362600 +405,2919,3.0,1061362585 +405,2921,3.0,1061362597 +405,2922,3.5,1061362569 +405,2929,0.5,1061362565 +405,2942,4.0,1061362548 +405,2944,3.5,1061362527 +405,2947,4.0,1061362530 +405,2948,4.0,1061362535 +405,2949,3.5,1061362541 +405,2950,3.0,1061362552 +405,2951,4.0,1061362538 +405,2987,4.0,1061362472 +405,2989,3.5,1061362479 +405,2990,4.0,1061362463 +405,2991,3.0,1061362466 +405,2993,3.5,1061362456 +405,3006,4.0,1061362435 +405,3020,3.5,1061362421 +405,3028,3.0,1061362402 +405,3082,3.5,1097769410 +405,3088,4.5,1061362320 +405,3096,4.5,1097770373 +405,3098,3.5,1061362329 +405,3125,1.0,1061362292 +405,3147,2.0,1061362247 +405,3171,4.5,1061362223 +405,3176,0.5,1061362237 +405,3185,4.5,1061362207 +405,3224,4.0,1061362157 +405,3247,4.0,1061362141 +405,3248,2.0,1061362145 +405,3256,3.5,1061362115 +405,3257,3.5,1061362124 +405,3260,1.0,1061362111 +405,3334,4.0,1061362036 +405,3347,5.0,1097696297 +405,3363,5.0,1097696304 +405,3364,3.5,1061361992 +405,3368,4.5,1061362003 +405,3379,4.5,1061361969 +405,3404,4.0,1097769453 +405,3405,4.5,1061361939 +405,3408,4.0,1061361934 +405,3436,4.0,1061361904 +405,3451,4.0,1097770254 +405,3467,3.5,1097697074 +405,3478,4.0,1061361853 +405,3510,3.5,1061361810 +405,3524,3.5,1061361794 +405,3577,4.5,1097699060 +405,3578,4.5,1061361747 +405,3623,2.0,1061361709 +405,3633,4.5,1061361684 +405,3635,4.0,1061361676 +405,3638,3.5,1061361689 +405,3639,4.0,1061361679 +405,3653,5.0,1097696309 +405,3671,4.0,1097698251 +405,3681,3.5,1061361625 +405,3682,3.0,1061361629 +405,3699,4.0,1097770517 +405,3705,2.0,1061361580 +405,3755,3.5,1061361521 +405,3763,5.0,1061361494 +405,3764,1.5,1061361500 +405,3769,3.0,1097769438 +405,3788,3.0,1061361465 +405,3789,5.0,1097696299 +405,3792,4.0,1061361447 +405,3822,2.5,1061361429 +405,3841,2.5,1097697063 +405,3873,3.5,1061361364 +405,3897,4.5,1061361344 +405,3929,4.0,1061361290 +405,3967,3.5,1061361255 +405,3969,3.5,1061361261 +405,3984,3.5,1061361237 +405,3999,1.5,1061361224 +405,4002,1.5,1061361214 +405,4018,1.5,1061361183 +405,4019,3.5,1061361172 +405,4022,4.5,1061357271 +405,4025,3.5,1061361179 +405,4041,4.0,1061361150 +405,4084,3.0,1061361106 +405,4085,4.0,1061361093 +405,4103,4.5,1061361075 +405,4223,4.5,1061360944 +405,4254,1.0,1061360915 +405,4296,3.5,1061360861 +405,4310,3.5,1097769740 +405,4321,4.0,1061360818 +405,4327,3.5,1061360810 +405,4338,4.5,1061360787 +405,4339,3.0,1061360795 +405,4356,4.0,1061360757 +405,4357,4.0,1061360768 +405,4359,3.5,1061360754 +405,4361,4.5,1061360747 +405,4420,3.5,1061360689 +405,4448,5.0,1097696740 +405,4478,3.5,1061360622 +405,4534,4.5,1061360566 +405,4535,4.5,1061360558 +405,4571,3.5,1061360529 +405,4587,3.5,1061360517 +405,4643,3.5,1097698235 +405,4664,4.5,1061360422 +405,4705,4.0,1061360374 +405,4709,3.5,1061360358 +405,4714,3.0,1061360365 +405,4727,4.5,1061360341 +405,4776,0.5,1061360289 +405,4783,5.0,1097696294 +405,4784,3.5,1061360259 +405,4799,3.0,1061360245 +405,4803,3.5,1061360234 +405,4806,4.0,1061360229 +405,4855,4.0,1061360178 +405,4857,4.5,1061360173 +405,4861,4.5,1061360164 +405,4866,4.0,1097769482 +405,4874,2.5,1061360141 +405,4889,5.0,1061360119 +405,4896,4.5,1061360102 +405,4901,3.5,1061360115 +405,4933,3.0,1061360060 +405,4947,3.5,1061360037 +405,4957,4.0,1061360019 +405,4958,3.5,1061360005 +405,4963,4.0,1061360001 +405,4979,1.5,1061359960 +405,4993,4.5,1061359966 +405,4994,3.5,1061359947 +405,4995,4.5,1061359935 +405,5010,4.0,1061359902 +405,5013,1.0,1061359908 +405,5014,3.5,1061359917 +405,5015,4.0,1061359898 +405,5016,3.0,1061359920 +405,5027,3.5,1097769978 +405,5049,4.0,1061359855 +405,5061,0.5,1061359841 +405,5085,3.5,1061359798 +405,5097,4.5,1061359795 +405,5193,5.0,1097696326 +405,5214,4.5,1061359657 +405,5299,5.0,1097696314 +405,5344,4.0,1061359443 +405,5346,4.0,1061359449 +405,5364,4.0,1061359420 +405,5373,3.5,1061359382 +405,5378,5.0,1097696318 +405,5382,4.0,1061359405 +405,5383,4.0,1061359391 +405,5400,3.5,1061359331 +405,5418,4.0,1061359307 +405,5420,4.0,1061359316 +405,5446,5.0,1097696302 +405,5470,4.0,1061359254 +405,5479,4.0,1061359235 +405,5506,3.5,1061359205 +405,5602,4.5,1061359110 +405,5603,4.5,1061359113 +405,5620,3.5,1061359090 +405,5622,4.5,1061359098 +405,5651,2.5,1097698966 +405,5732,5.0,1061358908 +405,5782,3.0,1061358849 +405,5796,2.5,1061358830 +405,5799,4.5,1061358818 +405,5801,4.0,1061358822 +405,5816,4.5,1061358797 +405,5872,4.0,1061358735 +405,5873,3.5,1061358726 +405,5943,4.5,1061358648 +405,5945,0.5,1061358637 +405,5947,4.0,1061358644 +405,5952,4.5,1061358632 +405,5955,4.0,1061358614 +405,5989,4.5,1061358579 +405,5995,5.0,1061358575 +405,6032,4.5,1061358525 +405,6078,3.5,1061358475 +405,6166,4.0,1061358373 +405,6178,3.5,1061358362 +405,6211,4.0,1061358311 +405,6213,4.0,1061358320 +405,6216,4.5,1097698926 +405,6219,5.0,1097769791 +405,6232,4.5,1061358286 +405,6261,4.0,1061358246 +405,6378,5.0,1061358109 +405,6385,4.5,1097697003 +405,6405,4.0,1061358075 +405,6426,4.0,1061358060 +405,6447,4.5,1097696262 +405,6448,3.5,1061358012 +405,6461,4.5,1061357994 +405,6516,4.5,1061357923 +405,6518,3.0,1061357930 +405,6565,5.0,1097696981 +405,6613,2.0,1061357796 +405,6617,4.0,1097769066 +405,6645,2.5,1097697296 +405,6658,2.0,1061357744 +405,6662,2.5,1061357729 +405,6785,3.0,1097770441 +405,6832,2.5,1097698917 +405,6947,4.0,1097769079 +405,6993,1.5,1097770201 +405,7056,3.5,1097769189 +405,7121,4.0,1097697562 +405,7143,3.5,1097769110 +405,7153,5.0,1097769043 +405,7569,4.0,1097769008 +405,7570,3.5,1097769525 +405,7573,4.0,1097769372 +405,7774,3.5,1097698491 +405,7791,4.0,1097699245 +405,7831,4.0,1097770265 +405,7832,4.0,1097697979 +405,7833,4.0,1097770226 +405,7834,4.0,1097699255 +405,7835,4.0,1097770346 +405,8183,5.0,1097770237 +405,8190,2.0,1097770144 +405,8228,2.5,1097769023 +405,8360,5.0,1097770242 +405,8368,4.5,1097698483 +405,8493,4.5,1097769017 +405,8542,3.5,1097770166 +405,8610,4.0,1097770262 +405,8623,4.0,1097770245 +405,8633,3.5,1097769154 +405,8665,3.5,1097769070 +405,8675,5.0,1097769120 +405,8796,3.0,1097770258 +406,1,3.5,1447951646 +406,52,4.5,1447952142 +406,111,5.0,1447952609 +406,364,3.5,1447951703 +406,541,4.0,1447951528 +406,750,5.0,1448509307 +406,858,4.0,1447951451 +406,902,4.5,1447951679 +406,908,3.5,1447952399 +406,912,3.5,1447951491 +406,923,3.5,1447952471 +406,924,5.0,1447959487 +406,1077,4.0,1447951668 +406,1196,3.5,1447951460 +406,1200,1.0,1447951538 +406,1203,5.0,1447951484 +406,1206,3.0,1447951621 +406,1207,4.0,1447951521 +406,1212,5.0,1447952510 +406,1214,1.0,1447951537 +406,1221,3.0,1447951463 +406,1228,4.5,1447952623 +406,1230,4.5,1447952110 +406,1237,4.0,1447952202 +406,1244,4.5,1447951595 +406,1258,3.5,1447951610 +406,1784,4.0,1447951706 +406,1873,3.5,1447951733 +406,2010,3.5,1447951627 +406,2268,3.5,1447951699 +406,3000,5.0,1447971224 +406,3114,3.5,1447951674 +406,3462,5.0,1447951551 +406,3742,5.0,1447951653 +406,4329,4.5,1447952575 +406,4928,4.0,1447959366 +406,4993,5.0,1447951509 +406,5291,4.5,1447952693 +406,5475,5.0,1447951893 +406,5618,5.0,1447971221 +406,5971,4.5,1447971222 +406,6101,5.0,1447951938 +406,6350,3.5,1447971226 +406,6666,4.5,1447959371 +406,6954,5.0,1447952016 +406,7099,4.5,1447951571 +406,7153,4.5,1447951493 +406,7925,4.5,1447952674 +406,8154,5.0,1447952075 +406,8253,2.0,1447971231 +406,8933,5.0,1447952021 +406,25771,4.5,1447951691 +406,26318,4.5,1447959375 +406,26662,4.5,1447971202 +406,26776,5.0,1447971230 +406,31658,5.0,1447959670 +406,33493,4.0,1447951805 +406,41336,4.0,1447959383 +406,44191,5.0,1447971196 +406,49394,3.5,1447959386 +406,56367,3.0,1447951695 +406,65261,5.0,1447971234 +406,66371,4.0,1448509808 +406,68073,4.5,1448509815 +406,68954,3.5,1447951557 +406,78903,5.0,1447951952 +406,81845,3.5,1447959682 +406,86882,5.0,1447952124 +406,92259,4.0,1447951544 +406,98126,5.0,1447951971 +406,103444,5.0,1447952147 +406,104283,5.0,1447971232 +406,112552,3.5,1447951853 +407,1,4.0,962646314 +407,14,4.0,962648347 +407,25,4.0,1085507289 +407,32,4.0,962647111 +407,36,4.0,962646804 +407,41,5.0,962675654 +407,50,4.0,962646253 +407,52,5.0,962647368 +407,58,5.0,962646871 +407,73,5.0,962646804 +407,144,4.0,962647874 +407,150,5.0,962646954 +407,151,3.0,962648320 +407,162,4.0,962646090 +407,171,5.0,962647453 +407,178,5.0,962647841 +407,223,4.0,962646754 +407,246,5.0,962646090 +407,253,3.0,962647553 +407,265,4.0,962646714 +407,290,4.0,962646041 +407,296,5.0,962646090 +407,300,5.0,962647247 +407,318,4.0,962646429 +407,319,4.0,962675697 +407,324,4.0,962648282 +407,334,5.0,962647453 +407,337,4.0,962646896 +407,342,4.0,962648188 +407,345,5.0,962675853 +407,348,5.0,962647221 +407,377,4.0,962647040 +407,388,4.0,962646216 +407,454,3.0,962675902 +407,457,4.0,962646804 +407,501,3.0,962646653 +407,506,5.0,962648188 +407,509,4.0,962647742 +407,527,4.0,962645604 +407,529,5.0,962646681 +407,534,5.0,962647175 +407,538,4.0,962647646 +407,549,5.0,962646429 +407,551,5.0,962646653 +407,562,3.0,962647646 +407,581,5.0,962647742 +407,593,4.0,962646348 +407,608,5.0,962646120 +407,628,3.0,962647553 +407,745,5.0,962646090 +407,778,5.0,962646804 +407,806,2.0,962648467 +407,838,4.0,962648320 +407,1063,5.0,962647646 +407,1094,5.0,962646429 +407,1095,5.0,962647076 +407,1097,4.0,962645690 +407,1177,4.0,962647925 +407,1183,4.0,1095353349 +407,1184,4.0,962648320 +407,1206,5.0,962645690 +407,1211,4.5,1057181653 +407,1217,5.0,962645645 +407,1249,4.0,962646348 +407,1279,3.0,962647646 +407,1304,5.0,962675620 +407,1333,4.0,962675697 +407,1343,3.0,962647874 +407,1354,4.0,962646187 +407,1357,4.0,962648005 +407,1358,4.0,962647403 +407,1375,3.0,962675942 +407,1393,3.0,962647577 +407,1407,3.0,962648071 +407,1411,4.0,962646617 +407,1441,4.0,962647646 +407,1449,5.0,962647202 +407,1498,3.0,962646714 +407,1500,4.0,962647646 +407,1504,5.0,962646714 +407,1573,3.0,962647151 +407,1610,3.0,962646994 +407,1614,4.0,962647925 +407,1617,5.0,962645645 +407,1619,4.0,962648123 +407,1639,4.0,962675853 +407,1641,4.0,962646843 +407,1643,4.0,962648071 +407,1673,5.0,962646503 +407,1678,4.0,962647742 +407,1683,5.0,962648153 +407,1684,4.0,962647955 +407,1693,4.0,962648153 +407,1699,4.0,962647343 +407,1701,4.0,962648282 +407,1704,5.0,962646563 +407,1719,5.0,962646348 +407,1730,5.0,962646925 +407,1732,2.0,962675802 +407,1734,5.0,962646090 +407,1735,4.0,962648404 +407,1797,5.0,962648039 +407,1860,5.0,962646994 +407,1870,4.0,962646563 +407,1873,5.0,962646954 +407,1880,4.0,962647016 +407,1897,4.0,962648467 +407,1909,4.0,962647796 +407,1916,2.0,962647841 +407,1923,3.0,962647955 +407,1966,5.0,962647453 +407,2028,4.0,962646314 +407,2029,5.0,962647796 +407,2071,5.0,962647523 +407,2076,5.0,962675757 +407,2108,4.0,962647483 +407,2112,4.0,962647247 +407,2171,4.0,962647874 +407,2268,3.0,962648404 +407,2282,4.0,962648347 +407,2291,5.0,962647054 +407,2297,3.0,962646871 +407,2304,4.0,962646681 +407,2329,4.0,962646386 +407,2333,5.0,962647202 +407,2336,5.0,962646429 +407,2340,3.0,962675853 +407,2369,3.0,962675853 +407,2388,4.0,966182270 +407,2395,5.0,962647523 +407,2396,5.0,962646563 +407,2431,2.0,962676059 +407,2435,4.0,962648221 +407,2439,4.0,962646280 +407,2442,4.0,962647319 +407,2447,3.0,962648123 +407,2467,4.0,1095353364 +407,2501,5.0,962646216 +407,2571,5.0,962646503 +407,2575,4.0,962646503 +407,2599,3.0,962646253 +407,2626,4.0,962776393 +407,2628,4.0,962648991 +407,2721,5.0,962646994 +407,2732,5.0,1119639368 +407,2762,5.0,962646594 +407,2801,4.0,962647523 +407,2837,5.0,975740667 +407,2858,5.0,962646253 +407,2883,4.0,962648123 +407,2908,5.0,962647111 +407,2916,3.0,962647742 +407,2949,5.0,962675697 +407,2959,5.0,962648886 +407,2997,5.0,962646563 +407,3006,5.0,962646804 +407,3007,4.0,962648886 +407,3044,5.0,962675757 +407,3052,3.0,962648376 +407,3060,4.0,962646804 +407,3079,5.0,962647403 +407,3081,4.0,962648153 +407,3082,3.0,962648965 +407,3083,4.0,967307166 +407,3145,3.0,962648942 +407,3147,4.0,962648886 +407,3148,4.0,962647874 +407,3155,4.0,966182298 +407,3158,3.0,962648428 +407,3160,4.0,962646843 +407,3161,3.0,967307196 +407,3163,5.0,962646594 +407,3174,4.0,962647267 +407,3175,5.0,962648886 +407,3176,5.0,962646563 +407,3179,4.0,966182298 +407,3181,5.0,966182239 +407,3225,3.0,966182239 +407,3241,4.0,977098692 +407,3246,4.0,962647343 +407,3256,3.0,962647453 +407,3259,3.0,962648005 +407,3260,5.0,962646314 +407,3285,3.0,966182321 +407,3298,4.0,967307166 +407,3317,5.0,987445622 +407,3328,4.0,968253369 +407,3357,5.0,976994276 +407,3386,4.0,962646896 +407,3408,4.0,972162244 +407,3481,4.0,972789374 +407,3499,4.0,962646563 +407,3521,4.0,962675654 +407,3535,3.0,962645890 +407,3538,4.0,972162244 +407,3552,2.0,962675902 +407,3566,4.0,972162244 +407,3578,3.0,962645789 +407,3594,4.0,974012349 +407,3598,5.0,962645825 +407,3606,4.0,962675620 +407,3608,5.0,962675729 +407,3620,4.0,962675942 +407,3635,3.0,962675802 +407,3649,3.0,962675802 +407,3723,4.0,962648039 +407,3747,3.0,974012282 +407,3751,5.0,962645789 +407,3755,3.0,962645926 +407,3783,5.0,962648667 +407,3790,4.0,984246350 +407,3793,3.0,975740667 +407,3794,4.0,966027860 +407,3795,5.0,987445622 +407,3823,4.0,987445622 +407,3897,4.0,972162407 +407,3903,4.0,972162407 +407,3911,4.0,972789280 +407,3914,4.0,976464659 +407,3949,4.5,1079737198 +407,3950,4.5,1079737271 +407,3967,4.5,1079737260 +407,3972,3.0,987445638 +407,3996,5.0,977098643 +407,4017,5.0,983810938 +407,4021,5.0,978801610 +407,4024,4.0,983810938 +407,4027,4.5,1079737283 +407,4034,5.0,984246220 +407,4036,4.0,979491861 +407,4226,5.0,985451994 +407,4235,5.0,1079737176 +407,4304,5.0,1079737349 +407,4306,4.0,1079737278 +407,4642,4.5,1079737179 +407,4720,2.0,1029185563 +407,4765,4.0,1029185563 +407,4873,5.0,1029185563 +407,4878,5.0,1079737184 +407,4896,3.0,1029185563 +407,4903,4.0,1032541242 +407,4963,4.0,1029185563 +407,4973,5.0,1029185528 +407,4975,3.0,1029185638 +407,4979,5.0,1029185563 +407,4993,5.0,1029185528 +407,4994,4.0,1029185621 +407,4995,4.0,1029185528 +407,5010,4.0,1029185528 +407,5013,5.0,1029185563 +407,5135,2.0,1041285381 +407,5225,5.0,1029185785 +407,5315,4.0,1032541261 +407,5316,3.0,1041285403 +407,5325,5.0,1032541261 +407,5349,3.0,1029185785 +407,5378,3.0,1029185414 +407,5379,4.5,1053715237 +407,5391,5.0,1041285381 +407,5417,3.0,1029185387 +407,5418,4.0,1029185363 +407,5445,4.0,1029185363 +407,5446,4.0,1053715255 +407,5464,4.5,1053715229 +407,5483,4.0,1079737354 +407,5502,3.0,1029185437 +407,5632,4.0,1057181627 +407,5669,4.5,1079737195 +407,5791,4.5,1057181623 +407,5812,5.0,1041362340 +407,5816,4.0,1053715222 +407,5878,4.5,1057181571 +407,5902,4.5,1057181563 +407,5945,4.5,1079737344 +407,5952,4.0,1047672835 +407,5954,4.5,1057181558 +407,5956,1.0,1047672948 +407,5991,5.0,1047672835 +407,5992,5.0,1047672835 +407,5995,4.5,1057181553 +407,6062,3.5,1057181709 +407,6218,4.5,1079737264 +407,6268,3.5,1079737241 +407,6296,5.0,1079737338 +407,6331,4.5,1079737204 +407,6365,3.5,1057181349 +407,6380,4.5,1079737207 +407,6440,4.5,1057181578 +407,6502,4.5,1079737286 +407,6539,4.5,1079737267 +407,6565,4.5,1079737328 +407,6620,5.0,1079737188 +407,6711,5.0,1079737172 +407,6773,5.0,1085507146 +407,6932,3.5,1085506836 +407,7153,4.5,1108662582 +407,7158,3.0,1085506831 +407,7162,4.0,1095353328 +407,7361,3.5,1097862959 +407,8368,4.0,1108662591 +407,8622,4.5,1093640803 +407,8636,4.0,1095352957 +407,8665,4.0,1095352961 +407,8784,4.0,1108662579 +407,8879,4.5,1095353381 +407,8949,4.5,1119639356 +407,8966,4.0,1123191731 +407,32587,3.0,1125091301 +407,33794,4.0,1122406345 +407,36517,4.5,1143832495 +407,36527,4.5,1145389998 +407,36529,4.5,1142017904 +407,37729,4.5,1145390005 +407,37741,5.0,1145389981 +407,38038,5.0,1145389985 +407,39183,5.0,1142017820 +407,39292,5.0,1143832433 +407,40278,4.0,1143832473 +407,40815,4.0,1143832516 +407,40819,4.0,1143832454 +407,41285,4.5,1142017737 +407,41566,4.0,1145390021 +407,48516,4.5,1167342284 +408,1,2.0,933035002 +408,16,2.0,933037621 +408,17,4.0,933035241 +408,18,5.0,933116210 +408,21,5.0,933114620 +408,32,4.0,933036132 +408,39,4.0,933119358 +408,45,4.0,933119441 +408,47,5.0,933033418 +408,50,5.0,933032097 +408,55,1.0,933112848 +408,73,5.0,933033497 +408,101,3.0,933116428 +408,104,3.0,933115239 +408,123,5.0,933034637 +408,150,3.0,933036283 +408,175,5.0,933036371 +408,180,5.0,933037117 +408,222,5.0,933113348 +408,223,4.0,933032411 +408,260,5.0,933031702 +408,265,4.0,933035394 +408,291,2.0,933118888 +408,296,4.0,933034219 +408,309,5.0,933032259 +408,314,5.0,933037791 +408,319,5.0,933033987 +408,327,5.0,933115430 +408,333,2.0,933118344 +408,342,3.0,933037621 +408,345,4.0,933115960 +408,356,3.0,933033418 +408,367,2.0,933119248 +408,410,2.0,933118435 +408,440,3.0,933116428 +408,454,2.0,933116529 +408,457,3.0,933031911 +408,474,5.0,933114620 +408,514,5.0,933118121 +408,522,3.0,933116046 +408,539,3.0,933119441 +408,541,5.0,933032411 +408,555,4.0,933034827 +408,588,3.0,933111453 +408,590,2.0,933113494 +408,593,3.0,933108976 +408,595,3.0,933114944 +408,608,4.0,933033987 +408,671,5.0,933119248 +408,680,5.0,933116905 +408,733,4.0,933118888 +408,741,4.0,933113348 +408,778,5.0,933035323 +408,780,4.0,933119248 +408,785,1.0,933111453 +408,866,5.0,933033314 +408,903,4.0,933034637 +408,904,4.0,933032097 +408,910,3.0,933032959 +408,914,2.0,933036956 +408,919,3.0,933035002 +408,1015,2.0,933118344 +408,1034,4.0,933031620 +408,1036,1.0,933033653 +408,1051,3.0,933036371 +408,1059,5.0,933036132 +408,1060,4.0,933036032 +408,1066,5.0,933037945 +408,1080,4.0,933035559 +408,1089,5.0,933033497 +408,1097,5.0,933116428 +408,1112,5.0,933108064 +408,1136,4.0,933033653 +408,1179,3.0,933038101 +408,1196,5.0,933032321 +408,1197,5.0,933033653 +408,1198,2.0,933107201 +408,1200,3.0,933034133 +408,1203,3.0,933108644 +408,1206,5.0,933033497 +408,1208,5.0,933034133 +408,1210,5.0,933032164 +408,1214,3.0,933032411 +408,1215,3.0,933113494 +408,1218,5.0,933031923 +408,1235,5.0,933109646 +408,1242,3.0,933033045 +408,1246,4.0,933108498 +408,1252,4.0,933034219 +408,1257,5.0,933108722 +408,1258,3.0,933037791 +408,1259,4.0,933038101 +408,1261,1.0,933035479 +408,1265,2.0,933112775 +408,1268,4.0,933108794 +408,1270,3.0,933110178 +408,1273,5.0,933033045 +408,1279,4.0,933110043 +408,1280,5.0,933034219 +408,1285,4.0,933035688 +408,1288,5.0,933033987 +408,1291,2.0,933033239 +408,1296,4.0,933035163 +408,1300,4.0,933035002 +408,1302,2.0,933108794 +408,1345,3.0,933118344 +408,1361,3.0,933033497 +408,1394,5.0,933033913 +408,1407,4.0,933037039 +408,1408,4.0,933115845 +408,1411,2.0,933034919 +408,1429,5.0,933037039 +408,1441,3.0,933036723 +408,1464,4.0,933037039 +408,1500,5.0,933109890 +408,1517,1.0,933116046 +408,1527,5.0,933036723 +408,1537,5.0,933033987 +408,1552,5.0,933111570 +408,1569,4.0,933038226 +408,1573,4.0,933111200 +408,1584,4.0,933035559 +408,1620,5.0,933112947 +408,1639,5.0,933033987 +408,1641,5.0,933037039 +408,1644,4.0,933116428 +408,1648,1.0,933034637 +408,1658,5.0,933035867 +408,1673,2.0,933037117 +408,1682,5.0,933038303 +408,1701,1.0,933036723 +408,1704,5.0,933032959 +408,1717,4.0,933118888 +408,1721,4.0,933033153 +408,1732,4.0,933114322 +408,1748,5.0,933035950 +408,1777,5.0,933116529 +408,1827,5.0,933113254 +408,1836,1.0,933033653 +408,1873,5.0,933033418 +408,1876,4.0,933037117 +408,1885,5.0,933112848 +408,1907,3.0,933033418 +408,1909,5.0,933114243 +408,1914,4.0,933032097 +408,1916,5.0,933035241 +408,1917,4.0,933111843 +408,1919,4.0,933032411 +408,1920,3.0,933112674 +408,1923,4.0,933033045 +408,1954,1.0,933118020 +408,1956,3.0,933031620 +408,1961,3.0,933032411 +408,1967,4.0,933033497 +408,1968,4.0,933115430 +408,2006,4.0,933035749 +408,2014,2.0,933118020 +408,2018,4.0,933118121 +408,2019,5.0,933031820 +408,2046,4.0,933034133 +408,2058,4.0,933037712 +408,2059,2.0,933032016 +408,2064,4.0,933033045 +408,2071,4.0,933113695 +408,2076,4.0,933110043 +408,2081,3.0,933111672 +408,2094,3.0,933115845 +408,2109,5.0,933032411 +408,2114,4.0,933032959 +408,2115,2.0,933108498 +408,2125,5.0,933037875 +408,2133,3.0,933037117 +408,2136,2.0,933033418 +408,2142,3.0,933037039 +408,2144,4.0,933034637 +408,2150,2.0,933106752 +408,2161,4.0,933035241 +408,2167,5.0,933036283 +408,2174,2.0,933035559 +408,2195,5.0,933033913 +408,2232,5.0,933034054 +408,2248,5.0,933033653 +408,2268,3.0,933032959 +408,2273,4.0,933033730 +408,2282,5.0,933033807 +408,2291,2.0,933033653 +408,2302,2.0,933035950 +408,2348,5.0,933033987 +408,2363,5.0,933107313 +408,2371,1.0,933109733 +408,2372,1.0,933036445 +408,2427,4.0,933036956 +408,2433,2.0,933031911 +408,2447,1.0,933035950 +408,2470,2.0,933036445 +408,2478,2.0,933116046 +408,2485,5.0,933115960 +408,2496,3.0,933032411 +408,2561,4.0,933110370 +408,2568,4.0,933037712 +408,2571,5.0,933036032 +408,2580,4.0,933036206 +408,2606,1.0,933031112 +408,2620,5.0,933030875 +408,2624,5.0,933031051 +408,2628,5.0,933030708 +408,2640,3.0,933116121 +408,2657,4.0,933032016 +408,2671,1.0,933031051 +408,2683,1.0,933030812 +408,2692,5.0,933030708 +408,2694,1.0,933031112 +408,2699,1.0,933036132 +408,2700,2.0,933031112 +408,2701,2.0,933031261 +408,2702,5.0,933030972 +408,2710,5.0,933030972 +408,2714,2.0,933030972 +408,2716,3.0,933033730 +408,2718,3.0,933030972 +408,2723,4.0,933031261 +408,2724,1.0,933031051 +409,1,5.0,828212413 +409,15,1.0,831090605 +409,16,4.0,828212412 +409,21,5.0,828212412 +409,22,1.0,831090605 +409,25,4.0,828212412 +409,30,5.0,828212412 +409,32,3.0,828212412 +409,34,5.0,831090605 +409,35,4.0,828212412 +409,46,4.0,831090605 +409,47,5.0,828213115 +409,50,4.0,828213115 +409,85,5.0,828212412 +409,110,4.0,828213115 +409,150,4.0,828213114 +409,153,3.0,828213115 +409,154,4.0,828213115 +409,165,2.0,828213115 +409,194,5.0,831090605 +409,204,4.0,828213115 +409,213,5.0,831090605 +409,223,4.0,828213115 +409,231,4.0,828213115 +409,232,5.0,828213511 +409,235,4.0,828213115 +409,264,5.0,828213115 +409,265,5.0,828213115 +409,268,4.0,828213115 +409,272,5.0,828213115 +409,280,5.0,828213115 +409,290,5.0,828213115 +409,292,2.0,828213115 +409,296,5.0,828213115 +409,306,5.0,828213115 +409,307,5.0,828213115 +409,308,5.0,828213115 +409,309,5.0,828213115 +409,318,5.0,828213115 +409,319,5.0,828213115 +409,331,4.0,828213115 +409,348,5.0,828213115 +409,349,3.0,831090605 +409,380,3.0,828213115 +409,417,4.0,828213114 +409,431,4.0,828213115 +409,434,4.0,831090605 +409,477,4.0,831090605 +409,590,4.0,828213115 +409,592,3.0,828213114 +409,673,5.0,828213115 +410,1,5.0,1434057935 +410,32,4.5,1434057966 +410,34,1.5,1434057979 +410,110,5.0,1434057934 +410,165,3.0,1434057961 +410,231,3.0,1434057974 +410,260,4.5,1434057911 +410,296,1.0,1434057926 +410,316,4.5,1434057977 +410,318,5.0,1434057915 +410,344,3.0,1434057958 +410,356,5.0,1434057929 +410,377,4.5,1434057956 +410,380,4.0,1434057963 +410,480,5.0,1434057932 +410,500,4.0,1434057982 +410,527,0.5,1434057938 +410,608,1.0,1434057969 +410,648,5.0,1434057959 +410,1198,5.0,1434057912 +410,1265,5.0,1434057973 +410,1270,5.0,1434058028 +410,2571,5.0,1434057917 +410,4993,5.0,1434058003 +410,5418,5.0,1434058024 +410,5952,5.0,1434058005 +410,8665,4.5,1434058026 +410,8961,4.5,1434058027 +411,24,5.0,944931682 +411,105,4.0,944930722 +411,318,5.0,944931267 +411,527,5.0,944931010 +411,608,4.0,944931267 +411,858,4.0,944930798 +411,912,3.0,944930867 +411,1193,5.0,944930931 +411,1196,3.0,944929012 +411,1219,5.0,944931010 +411,1221,4.0,944929202 +411,1500,3.0,944929202 +411,1584,4.0,944930722 +411,1754,4.0,944929202 +411,1956,2.0,944931267 +411,1997,5.0,944930722 +411,2324,1.0,944933658 +411,2439,3.0,944933263 +411,2501,4.0,944933658 +411,2541,1.0,944933914 +411,2570,5.0,944933658 +411,2707,4.0,944931606 +411,2710,1.0,944931770 +411,2762,4.0,944931405 +411,2858,4.0,944931405 +411,3006,5.0,944931515 +411,3076,3.0,944929012 +412,1,4.0,993088074 +412,19,3.0,993091327 +412,27,3.0,993089400 +412,39,3.0,993088307 +412,50,4.0,993087974 +412,110,3.0,993088283 +412,140,4.0,993088995 +412,185,3.0,993090479 +412,193,2.0,993092131 +412,231,3.0,993090296 +412,260,3.0,993086295 +412,296,3.0,993088001 +412,318,2.0,993087893 +412,337,2.0,993088545 +412,339,4.0,993089721 +412,342,3.0,993090153 +412,344,3.0,993089460 +412,360,3.0,993091678 +412,361,3.0,993088385 +412,364,4.0,993088420 +412,367,4.0,993089642 +412,370,3.0,993091164 +412,377,3.0,993088492 +412,420,3.0,993091692 +412,500,3.0,993088722 +412,550,2.0,993086487 +412,588,4.0,993088492 +412,619,3.0,993091065 +412,662,1.0,993090278 +412,708,3.0,993086584 +412,736,4.0,993089149 +412,754,4.0,993091533 +412,784,1.0,993090715 +412,804,3.0,993090278 +412,805,3.0,993088349 +412,832,3.0,993089134 +412,833,1.0,993091607 +412,837,3.0,993089965 +412,912,2.0,993086331 +412,1027,3.0,993089134 +412,1043,3.0,993086357 +412,1060,3.0,993088618 +412,1210,3.0,993086382 +412,1265,2.0,993088088 +412,1377,4.0,993090003 +412,1393,5.0,993088243 +412,1407,5.0,993088739 +412,1409,1.0,993090362 +412,1485,3.0,993088722 +412,1513,4.0,993089935 +412,1527,2.0,993088739 +412,1544,2.0,993090729 +412,1562,1.0,993092269 +412,1569,4.0,993086407 +412,1580,3.0,993088739 +412,1608,2.0,993089435 +412,1612,1.0,993090704 +412,1644,4.0,993090951 +412,1676,3.0,993090117 +412,1682,4.0,993088397 +412,1704,3.0,993088047 +412,1721,4.0,993088141 +412,1722,4.0,993088673 +412,1760,2.0,993092421 +412,1769,1.0,993089991 +412,1777,3.0,993088492 +412,1784,3.0,993088442 +412,1805,1.0,993089419 +412,1821,3.0,993090153 +412,1833,1.0,993090876 +412,1835,5.0,993088602 +412,1876,5.0,993089072 +412,1895,2.0,993088602 +412,1909,4.0,993088452 +412,1917,4.0,993089783 +412,2026,2.0,993091327 +412,2028,4.0,993087974 +412,2029,3.0,993089814 +412,2107,3.0,993091327 +412,2126,2.0,993090863 +412,2188,1.0,993090278 +412,2231,1.0,993089400 +412,2279,3.0,993091557 +412,2294,3.0,993088673 +412,2316,1.0,993090362 +412,2338,3.0,993091666 +412,2355,3.0,993088141 +412,2387,1.0,993090704 +412,2396,3.0,993088141 +412,2428,1.0,993090466 +412,2433,2.0,993090208 +412,2443,5.0,993088246 +412,2447,4.0,993089167 +412,2485,4.0,993089616 +412,2490,3.0,993089616 +412,2505,2.0,993090448 +412,2539,1.0,993089351 +412,2541,5.0,993089178 +412,2546,3.0,993090235 +412,2567,3.0,993088995 +412,2568,1.0,993092210 +412,2571,4.0,993088013 +412,2572,2.0,993088442 +412,2580,4.0,993086258 +412,2581,3.0,993089178 +412,2598,1.0,993091164 +412,2605,4.0,993090208 +412,2617,2.0,993086609 +412,2622,3.0,993089513 +412,2683,5.0,993089120 +412,2687,3.0,993088514 +412,2700,5.0,993088243 +412,2702,2.0,993090224 +412,2706,3.0,993088442 +412,2719,2.0,993091135 +412,2722,3.0,993090937 +412,2724,3.0,993090603 +412,2762,5.0,993088013 +412,2763,4.0,993089339 +412,2770,1.0,993090466 +412,2805,3.0,993090614 +412,2827,2.0,993091330 +412,2840,3.0,993089826 +412,2858,3.0,993088047 +412,2861,3.0,993089586 +412,2881,3.0,993089642 +412,2888,1.0,993091054 +412,2959,4.0,993088060 +412,2961,4.0,993089377 +412,3006,1.0,993088332 +412,3052,4.0,993088648 +412,3053,1.0,993090662 +412,3081,3.0,993088514 +412,3082,4.0,993089513 +412,3114,4.0,993088001 +412,3146,3.0,993090224 +412,3148,3.0,993088283 +412,3173,2.0,993090755 +412,3174,1.0,993088602 +412,3186,5.0,993088492 +412,3225,1.0,993092830 +412,3253,1.0,993089010 +412,3255,5.0,993088309 +412,3257,5.0,993091088 +412,3273,4.0,993087483 +412,3300,2.0,993087604 +412,3316,1.0,993087748 +412,3354,1.0,993087731 +412,3408,5.0,993087309 +412,3409,3.0,993087559 +412,3452,3.0,993087693 +412,3484,3.0,993087483 +412,3511,1.0,993087814 +412,3512,2.0,993087322 +412,3534,2.0,993087498 +412,3535,1.0,993087367 +412,3536,3.0,993087218 +412,3578,5.0,993087185 +412,3598,2.0,993086955 +412,3616,1.0,993087731 +412,3617,3.0,993087266 +412,3623,3.0,993087367 +412,3646,1.0,993087604 +412,3717,3.0,993087483 +412,3743,2.0,993087791 +412,3744,3.0,993087693 +412,3751,3.0,993087309 +412,3752,2.0,993087587 +412,3753,4.0,993087218 +412,3755,5.0,993087383 +412,3785,2.0,993087604 +412,3793,4.0,993087309 +412,3798,4.0,993087604 +412,3825,5.0,993087407 +412,3826,1.0,993087802 +412,3861,2.0,993087483 +412,3893,1.0,993087337 +412,3896,4.0,993087322 +412,3897,3.0,993087185 +412,3916,4.0,993086504 +412,3948,3.0,993087337 +412,3968,2.0,993087587 +412,3969,5.0,993086515 +412,3977,4.0,993086621 +412,3981,1.0,993087703 +412,3986,3.0,993086487 +412,3994,1.0,993087266 +412,3996,4.0,993087149 +412,3998,2.0,993087550 +412,3999,2.0,993086976 +412,4011,4.0,993087185 +412,4015,3.0,993087748 +412,4016,5.0,993086504 +412,4018,3.0,993086597 +412,4019,3.0,993086526 +412,4022,3.0,993087218 +412,4023,4.0,993092799 +412,4025,2.0,993086634 +412,4034,3.0,993086916 +412,4054,5.0,993092808 +412,4069,3.0,993087383 +412,4143,3.0,993087841 +412,4148,2.0,993087309 +412,4149,2.0,993087827 +412,4161,3.0,993087383 +412,4223,2.0,993086785 +412,4228,3.0,993086769 +412,4238,4.0,993086450 +412,4239,3.0,993086341 +412,4246,4.0,993086818 +412,4255,2.0,993086882 +412,4270,4.0,993086818 +412,4299,2.0,993086769 +412,4305,2.0,993086769 +412,4306,4.0,993086769 +412,4308,5.0,993086769 +412,4310,5.0,993086785 +412,4344,3.0,993086450 +412,4367,3.0,993086818 +413,6,5.0,850890598 +413,7,5.0,850890598 +413,17,3.0,850890557 +413,25,4.0,850890557 +413,52,3.0,850890657 +413,62,4.0,850890557 +413,95,4.0,850890557 +413,112,3.0,850890598 +413,141,3.0,850890557 +413,494,3.0,850890598 +413,648,4.0,850890557 +413,694,3.0,850890772 +413,708,4.0,850890657 +413,733,5.0,850890598 +413,736,3.0,850890557 +413,780,4.0,850890557 +413,786,4.0,850890657 +413,800,4.0,850890737 +413,832,4.0,850890737 +413,852,4.0,850890772 +413,1073,4.0,850890657 +413,1356,5.0,850890708 +414,21,4.0,1039390453 +414,24,2.0,1039390286 +414,28,4.0,1039390382 +414,46,2.0,1039390453 +414,288,2.0,1039390286 +414,346,3.0,1039388921 +414,380,2.0,1039390571 +414,439,1.0,1039390474 +414,518,2.0,1039388961 +414,524,3.0,1039390072 +414,589,4.0,1039390645 +414,612,3.0,1039390716 +414,619,1.0,1039390171 +414,700,2.0,1039390261 +414,835,2.0,1039390382 +414,907,4.0,1039388961 +414,953,3.0,1039390537 +414,969,5.0,1039390218 +414,1056,3.0,1039390696 +414,1113,2.0,1039390537 +414,1221,5.0,1039388961 +414,1244,4.0,1039390696 +414,1321,4.0,1039390645 +414,1466,3.0,1039390218 +414,1507,3.0,1039390760 +414,1552,1.0,1039390171 +414,1636,1.0,1039390106 +414,1668,2.0,1039390106 +414,1684,4.0,1039390147 +414,1876,1.0,1039390171 +414,1912,4.0,1039390286 +414,1952,4.0,1039390738 +414,2028,2.0,1039390423 +414,2134,3.0,1039388961 +414,2141,3.0,1039388921 +414,2250,3.0,1039388961 +414,2337,2.0,1039390303 +414,2359,3.0,1039390537 +414,2369,4.0,1039390738 +414,2427,3.0,1039390303 +414,2793,1.0,1039390286 +414,2942,3.0,1039390645 +414,2962,3.0,1039390474 +414,2983,4.0,1039390596 +414,3097,3.0,1039390335 +414,3099,3.0,1039388921 +414,3101,3.0,1039388921 +414,3102,3.0,1039390261 +414,3113,1.0,1039390196 +414,3240,2.0,1039390072 +414,3268,1.0,1039390261 +414,3395,3.0,1039390453 +414,3481,3.0,1039388921 +414,3534,2.0,1039390571 +414,4021,4.0,1039390696 +414,4025,2.0,1039390401 +414,4081,1.0,1039390196 +414,4130,1.0,1039390571 +414,4148,1.0,1039390261 +414,4161,1.0,1039390666 +414,4177,2.0,1039390571 +414,4181,4.0,1039390596 +414,4203,1.0,1039390286 +414,4316,1.0,1039390382 +414,4333,3.0,1039390716 +414,4345,2.0,1039390240 +414,4367,3.0,1039390738 +414,4420,2.0,1039390335 +414,4527,3.0,1039390196 +414,4550,2.0,1039390072 +414,4559,1.0,1039390738 +414,4578,2.0,1039390501 +414,4623,2.0,1039390240 +414,4881,4.0,1039390453 +414,4932,3.0,1039390760 +414,4973,5.0,1039390596 +414,5646,4.0,1039390382 +414,5651,3.0,1039390218 +414,5816,4.0,1039390760 +414,5834,3.0,1039390453 +414,5969,2.0,1039390501 +415,10,4.0,848984824 +415,34,4.0,848984886 +415,50,5.0,848984934 +415,110,5.0,848984824 +415,150,3.0,848984676 +415,161,4.0,848984824 +415,165,3.0,848984732 +415,185,4.0,848984824 +415,208,3.0,848984824 +415,292,5.0,848984796 +415,296,3.0,848984676 +415,316,5.0,848984762 +415,329,4.0,848984796 +415,349,5.0,848984762 +415,356,3.0,848984762 +415,380,5.0,848984676 +415,434,3.0,848984796 +415,454,5.0,848984934 +415,457,5.0,848984732 +415,480,5.0,848984796 +415,588,3.0,848984732 +415,590,3.0,848984676 +415,592,3.0,848984675 +415,595,3.0,848984762 +415,736,5.0,848984886 +415,780,4.0,848984886 +416,3,4.0,841447146 +416,7,4.0,841447107 +416,10,4.0,841446669 +416,11,4.0,841446809 +416,19,3.0,841446722 +416,20,3.0,841447146 +416,22,4.0,841446959 +416,32,3.0,841446767 +416,39,3.0,841446748 +416,62,5.0,841446890 +416,74,3.0,841447506 +416,86,3.0,841447389 +416,88,3.0,841447506 +416,104,3.0,841447169 +416,122,3.0,841447089 +416,140,3.0,841447673 +416,150,3.0,841446597 +416,153,3.0,841446622 +416,158,2.0,841447812 +416,161,4.0,841446655 +416,165,4.0,841446621 +416,168,4.0,841446877 +416,186,3.0,841446839 +416,193,1.0,841446909 +416,195,4.0,841447132 +416,208,2.0,841446669 +416,215,3.0,841447436 +416,216,4.0,841447036 +416,217,2.0,841447489 +416,225,4.0,841446722 +416,231,3.0,841446638 +416,235,4.0,841446852 +416,236,3.0,841447796 +416,237,4.0,841446940 +416,246,5.0,841447474 +416,248,3.0,841447075 +416,253,3.0,841446669 +416,273,3.0,841446940 +416,282,3.0,841446809 +416,288,3.0,841446684 +416,296,3.0,841446598 +416,300,3.0,841446703 +416,315,2.0,841446809 +416,329,3.0,841446655 +416,333,4.0,841446890 +416,344,4.0,841446622 +416,349,4.0,841446621 +416,353,3.0,841446877 +416,355,2.0,841446928 +416,356,4.0,841446669 +416,358,2.0,841447315 +416,364,3.0,841446703 +416,367,3.0,841446722 +416,368,3.0,841446909 +416,370,3.0,841446940 +416,376,3.0,841447006 +416,377,3.0,841446722 +416,380,3.0,841446598 +416,381,4.0,841447018 +416,382,3.0,841447124 +416,419,3.0,841447075 +416,420,3.0,841446733 +416,432,3.0,841446794 +416,433,3.0,841447466 +416,434,3.0,841446655 +416,435,3.0,841446767 +416,437,3.0,841447169 +416,440,3.0,841446795 +416,442,3.0,841446821 +416,445,1.0,841447518 +416,450,4.0,841447307 +416,454,3.0,841446684 +416,457,4.0,841446638 +416,466,3.0,841446959 +416,474,5.0,841446839 +416,480,3.0,841446684 +416,481,3.0,841447200 +416,489,1.0,841447183 +416,500,3.0,841446733 +416,508,4.0,841446862 +416,511,3.0,841447307 +416,520,2.0,841446970 +416,524,4.0,841447183 +416,539,4.0,841446767 +416,540,2.0,841447064 +416,543,4.0,841447054 +416,550,3.0,841447192 +416,585,3.0,841446890 +416,586,3.0,841446748 +416,587,3.0,841446748 +416,589,3.0,841446703 +416,592,3.0,841446597 +416,593,4.0,841446638 +416,594,3.0,841446959 +416,597,4.0,841446748 +416,648,3.0,841446919 +416,733,4.0,841447006 +416,736,3.0,841446909 +416,765,3.0,841447458 +416,780,3.0,841446992 +416,784,2.0,841447211 +416,786,4.0,841447169 +416,788,3.0,841447659 +416,802,3.0,841447544 +416,805,4.0,841447352 +416,1012,5.0,841447686 +416,1020,3.0,841447518 +417,1,3.5,1112585993 +417,104,2.5,1112466691 +417,110,5.0,1112585177 +417,158,0.5,1112466844 +417,161,3.5,1112672392 +417,165,3.0,1112747157 +417,260,4.0,1112672233 +417,261,3.5,1112672396 +417,349,4.0,1112747042 +417,356,4.0,1112585205 +417,457,4.0,1112586264 +417,529,4.5,1112672352 +417,588,0.5,1112587463 +417,608,4.0,1112586065 +417,780,4.0,1112672278 +417,832,5.0,1112466760 +417,903,4.0,1112466859 +417,920,3.0,1112585245 +417,923,3.5,1112466737 +417,1035,3.5,1112466812 +417,1036,3.5,1112747159 +417,1090,4.5,1112585040 +417,1125,4.0,1112587585 +417,1136,4.0,1112587228 +417,1148,4.0,1112466897 +417,1196,4.0,1112585174 +417,1197,4.5,1112587073 +417,1198,3.5,1112747069 +417,1210,4.0,1112585202 +417,1222,3.5,1112585196 +417,1224,4.5,1112585225 +417,1250,4.0,1112466870 +417,1265,4.5,1112586232 +417,1272,4.0,1112585180 +417,1278,4.5,1112587249 +417,1288,4.5,1112466774 +417,1304,4.0,1112466724 +417,1370,3.5,1112747161 +417,1393,4.0,1112670612 +417,1449,4.0,1112585880 +417,1527,2.0,1112466546 +417,1580,4.0,1112672321 +417,1608,4.0,1112747039 +417,1610,4.0,1112466642 +417,1687,4.0,1112747169 +417,1693,4.0,1112793266 +417,1792,3.5,1112586281 +417,1923,0.5,1112466554 +417,1950,4.0,1112670630 +417,1961,5.0,1112466551 +417,2028,5.0,1112585168 +417,2054,0.5,1112466783 +417,2081,0.5,1112466863 +417,2109,4.0,1112587403 +417,2324,5.0,1112586305 +417,2359,4.0,1112587140 +417,2403,4.0,1112585629 +417,2427,2.0,1112585356 +417,2502,3.5,1112587086 +417,2571,4.5,1112586925 +417,2628,2.5,1112672236 +417,2671,4.0,1112672330 +417,2683,0.5,1112466563 +417,2797,3.5,1112587412 +417,3006,4.0,1112585096 +417,3066,3.0,1112585254 +417,3100,3.5,1112586323 +417,3114,3.5,1112585996 +417,3360,4.0,1112670596 +417,3362,4.0,1112587294 +417,3507,4.5,1112587246 +417,3551,4.5,1112672411 +417,3578,4.0,1112585082 +417,3751,3.5,1112587449 +417,3753,3.5,1112672313 +417,3911,4.5,1112585867 +417,3988,3.5,1112672408 +417,3994,4.5,1112746861 +417,3996,4.5,1112585931 +417,4016,3.5,1112587600 +417,4027,4.0,1112586094 +417,4103,5.0,1112585232 +417,4225,4.0,1112587324 +417,4306,4.5,1112466695 +417,4361,5.0,1112587425 +417,4499,4.5,1112587149 +417,4506,4.0,1112747273 +417,4585,3.5,1113102216 +417,4857,4.0,1112585745 +417,4886,4.0,1112587211 +417,4901,4.5,1112746965 +417,4958,1.5,1112585379 +417,4963,4.5,1112587090 +417,4993,4.5,1112586031 +417,5010,4.5,1112585229 +417,5014,4.5,1112586396 +417,5107,3.0,1112585446 +417,5110,3.5,1112586121 +417,5152,3.5,1112585256 +417,5349,4.5,1112672480 +417,5377,5.0,1112585891 +417,5378,2.5,1112672234 +417,5428,3.0,1112585799 +417,5502,4.0,1112746876 +417,5602,4.0,1112587495 +417,5611,4.5,1112585110 +417,5945,4.5,1112587196 +417,5952,4.5,1112586035 +417,5991,0.5,1112587468 +417,5995,5.0,1112585139 +417,6213,4.0,1112747192 +417,6365,3.5,1112587034 +417,6377,4.0,1112587070 +417,6539,4.0,1112587077 +417,6598,5.0,1112585690 +417,6662,4.5,1112587362 +417,6663,4.0,1112587384 +417,6863,4.0,1112587164 +417,6934,3.0,1112587042 +417,6947,4.0,1112585216 +417,7090,4.0,1112585949 +417,7132,4.0,1112587275 +417,7143,3.0,1112585220 +417,7152,4.0,1112585712 +417,7153,4.5,1112586033 +417,7348,4.0,1112586252 +417,7980,3.5,1112585207 +417,8360,4.0,1112587083 +417,8376,4.5,1112836778 +417,8596,4.0,1112587420 +417,8636,4.5,1112672482 +417,8730,4.5,1112585284 +417,8783,4.5,1112746891 +417,8798,4.5,1112586338 +417,8827,4.5,1112587215 +417,8961,4.5,1112585653 +417,8984,4.5,1112587107 +417,30883,2.0,1112586139 +417,32587,3.5,1113187399 +418,1,3.5,1132180691 +418,2,2.0,1132178551 +418,10,2.5,1132178305 +418,47,3.5,1132178233 +418,48,3.0,1132180974 +418,95,3.5,1132178363 +418,150,4.0,1132178166 +418,153,2.0,1132178218 +418,158,4.0,1132176938 +418,339,4.5,1132178340 +418,344,2.5,1132698132 +418,350,3.5,1132178607 +418,356,4.5,1132178150 +418,357,3.5,1132178296 +418,364,4.5,1135358410 +418,367,3.0,1132178265 +418,377,3.0,1132178203 +418,380,4.0,1132178172 +418,434,3.5,1132178314 +418,442,3.0,1132178601 +418,480,5.0,1132178153 +418,500,3.0,1132178260 +418,586,4.0,1132178448 +418,589,3.5,1132178177 +418,590,3.5,1132698071 +418,592,3.0,1132698067 +418,597,5.0,1132178252 +418,648,3.5,1132178198 +418,673,1.5,1132177287 +418,733,4.0,1132178246 +418,736,4.0,1132178226 +418,778,0.5,1132178665 +418,780,4.5,1132178180 +418,783,3.5,1132180927 +418,805,4.0,1132176971 +418,1032,2.0,1132180821 +418,1088,5.0,1132177250 +418,1092,3.0,1132177216 +418,1240,2.5,1132178369 +418,1380,3.5,1135031757 +418,1407,3.5,1135031771 +418,1416,2.5,1132180298 +418,1446,3.5,1132179507 +418,1527,3.5,1132178522 +418,1562,1.5,1135029619 +418,1566,3.0,1132180897 +418,1580,4.0,1132178344 +418,1645,3.5,1132180274 +418,1688,4.0,1132180783 +418,1704,3.5,1132178537 +418,1721,4.5,1132178349 +418,1722,3.0,1132177114 +418,1835,4.0,1132180632 +418,1882,3.5,1132180397 +418,1923,2.5,1132178542 +418,1961,3.5,1132178483 +418,2080,3.5,1132180739 +418,2167,3.5,1132180257 +418,2324,4.5,1132179425 +418,2470,3.0,1142087569 +418,2471,3.5,1142087572 +418,2571,4.0,1132178269 +418,2572,5.0,1132177302 +418,2617,4.0,1132180586 +418,2687,5.0,1132180707 +418,2701,1.0,1132177294 +418,2706,4.0,1132178674 +418,2762,3.5,1132178322 +418,3155,3.5,1132178687 +418,3408,4.0,1132178769 +418,3452,4.5,1132696245 +418,3512,3.0,1132696659 +418,3578,4.5,1132178477 +418,3717,5.0,1132179839 +418,3744,3.0,1132696257 +418,3825,5.0,1132179861 +418,3999,3.5,1132696472 +418,4018,3.5,1132696889 +418,4034,1.5,1132176929 +418,4054,3.5,1132697000 +418,4069,3.5,1132696986 +418,4085,3.5,1132177360 +418,4090,2.5,1132180919 +418,4155,3.0,1132697467 +418,4161,2.5,1132696267 +418,4232,2.0,1132696413 +418,4246,2.5,1132177315 +418,4254,3.5,1142087561 +418,4270,3.5,1132180575 +418,4306,3.5,1132178049 +418,4308,0.5,1132177349 +418,4310,4.0,1132696149 +418,4344,2.0,1132696167 +418,4347,3.5,1132179511 +418,4367,3.5,1132179791 +418,4369,5.0,1132179825 +418,4638,4.0,1132696405 +418,4639,4.0,1132696969 +418,4887,4.0,1132696426 +418,4896,5.0,1132177706 +418,4901,3.5,1132697579 +418,4963,4.5,1132178766 +418,4975,1.5,1132697198 +418,4993,5.0,1132179265 +418,4995,4.5,1132178868 +418,5151,3.0,1132697192 +418,5218,5.0,1145867932 +418,5313,1.5,1132180555 +418,5349,2.5,1132695990 +418,5387,4.5,1132179760 +418,5414,5.0,1132180211 +418,5444,5.0,1132179738 +418,5445,3.5,1145914524 +418,5459,3.5,1132696190 +418,5507,3.5,1132696203 +418,5628,4.0,1132179413 +418,5816,4.5,1132177702 +418,5872,3.5,1132696145 +418,5952,4.5,1132179269 +418,6218,4.0,1132179420 +418,6365,3.5,1132178843 +418,6377,5.0,1132177253 +418,6537,3.0,1132696183 +418,6539,3.5,1132177148 +418,6595,4.0,1132696174 +418,6874,1.5,1132696099 +418,6934,3.5,1132696138 +418,6942,5.0,1132178790 +418,6952,3.5,1136824773 +418,7005,2.0,1132180429 +418,7149,4.5,1132178833 +418,7153,5.0,1132177102 +418,7154,4.0,1132696875 +418,7265,3.0,1132697329 +418,7293,4.0,1132178852 +418,7325,3.5,1132696211 +418,7381,3.5,1132696551 +418,8360,3.0,1132178749 +418,8361,4.5,1132696160 +418,8368,4.5,1132177704 +418,8371,3.0,1132696230 +418,8529,5.0,1132178794 +418,8622,3.5,1132178019 +418,8907,4.5,1132177974 +418,8916,4.0,1132177897 +418,8961,4.0,1134475732 +418,8972,4.5,1132695969 +418,8984,4.0,1132696195 +418,30822,4.0,1132177859 +418,31427,4.5,1142087655 +418,31903,5.0,1132179365 +418,32587,3.5,1132696089 +418,33085,1.0,1138211258 +418,33145,4.0,1133507957 +418,33615,3.5,1132868408 +418,33679,4.0,1132178882 +418,33794,4.0,1135029471 +418,34162,4.0,1132177761 +418,34532,3.5,1132177824 +418,35957,4.0,1132177615 +418,37727,4.0,1133507895 +418,40339,3.5,1135358277 +418,40614,4.0,1142087523 +418,40815,4.5,1134475774 +418,42007,3.5,1142087510 +418,43836,1.5,1145048460 +418,44022,4.5,1145048288 +418,45447,4.5,1148507443 +419,1,4.5,1110049948 +419,21,3.5,1110050033 +419,34,4.0,1110049997 +419,50,4.0,1110050211 +419,105,3.5,1110049610 +419,342,4.5,1110049577 +419,508,4.5,1110050281 +419,527,4.5,1110050485 +419,590,3.5,1110050258 +419,647,3.5,1110049682 +419,783,4.0,1110049648 +419,858,3.5,1110050220 +419,1293,4.5,1110049704 +419,1304,4.5,1110050163 +419,1641,4.5,1110050097 +419,1682,3.0,1110050494 +419,1722,2.5,1110049673 +419,1784,3.0,1110049993 +419,2001,2.5,1110049620 +419,2054,3.0,1110049594 +419,2167,3.5,1110049694 +419,2302,4.5,1110049581 +419,2321,3.0,1110049974 +419,2539,4.0,1110049732 +419,2762,4.5,1110050489 +419,2959,2.0,1110050471 +419,3039,3.5,1110049746 +419,3114,3.5,1110049966 +419,3408,3.5,1110050655 +419,3481,3.5,1110050145 +419,3623,2.5,1110049655 +419,3751,3.0,1110050640 +419,3911,3.0,1110049737 +419,3948,4.0,1110050477 +419,3977,3.5,1110049667 +419,4886,3.5,1110049687 +419,5299,3.5,1110050673 +419,5377,3.0,1110050378 +419,5572,3.5,1110050009 +419,5876,4.5,1110050633 +419,5991,3.0,1110050002 +419,5992,4.0,1110050697 +419,6218,4.0,1110050060 +419,6331,4.5,1110050577 +419,6539,2.5,1110050369 +419,6870,4.5,1110050595 +419,6942,3.5,1110049983 +419,7153,3.5,1110050202 +419,8360,3.5,1110050382 +419,8961,4.5,1110050125 +420,32,4.0,892821557 +420,107,4.0,892822150 +420,126,3.0,892823079 +420,144,4.0,892822057 +420,181,1.0,892823124 +420,249,2.0,892824744 +420,342,5.0,892821852 +420,355,3.0,892823100 +420,362,5.0,892822813 +420,480,2.0,892822895 +420,497,4.0,892821791 +420,529,5.0,892821062 +420,531,3.0,892823039 +420,541,4.0,892820411 +420,552,5.0,892822126 +420,562,4.0,892821791 +420,593,2.0,892821021 +420,594,3.0,892822895 +420,595,4.0,892822843 +420,596,3.0,892822956 +420,616,3.0,892822895 +420,661,3.0,892823002 +420,750,5.0,892820643 +420,828,4.0,892823039 +420,898,5.0,892820829 +420,903,5.0,892820793 +420,904,5.0,892820870 +420,907,3.0,892820411 +420,908,4.0,892820829 +420,910,4.0,892820870 +420,912,3.0,892820643 +420,913,3.0,892821369 +420,914,3.0,892821460 +420,923,4.0,892820829 +420,945,4.0,892820363 +420,953,3.0,892820960 +420,1017,3.0,892823002 +420,1023,5.0,892822813 +420,1025,5.0,892822813 +420,1027,3.0,892822895 +420,1028,5.0,892822922 +420,1029,3.0,892822922 +420,1031,4.0,892822956 +420,1032,4.0,892822956 +420,1035,5.0,892822895 +420,1073,5.0,892822922 +420,1079,5.0,892821791 +420,1080,4.0,892821498 +420,1097,4.0,892822843 +420,1103,3.0,892821524 +420,1104,4.0,892821295 +420,1125,4.0,892821852 +420,1136,4.0,892820683 +420,1150,4.0,892821398 +420,1188,5.0,892821852 +420,1193,4.0,892820960 +420,1196,4.0,892820643 +420,1197,5.0,892820683 +420,1198,4.0,892820583 +420,1200,4.0,892823261 +420,1207,3.0,892820545 +420,1214,4.0,892821498 +420,1217,4.0,892821146 +420,1219,5.0,892823261 +420,1220,5.0,892821936 +420,1224,5.0,892820870 +420,1225,5.0,892820683 +420,1230,3.0,892821460 +420,1231,4.0,892821062 +420,1234,4.0,892821936 +420,1235,4.0,892821936 +420,1247,4.0,892824777 +420,1250,3.0,892821339 +420,1259,5.0,892821725 +420,1264,5.0,892821090 +420,1266,4.0,892823202 +420,1269,3.0,892820683 +420,1270,4.0,892821936 +420,1272,3.0,892821460 +420,1275,4.0,892824374 +420,1278,4.0,892821976 +420,1280,4.0,892824515 +420,1282,3.0,892821557 +420,1288,5.0,892821791 +420,1291,3.0,892821751 +420,1302,3.0,892821146 +420,1303,4.0,892820683 +420,1304,5.0,892821999 +420,1307,4.0,892821936 +420,1333,4.0,892823226 +420,1374,4.0,892823226 +420,1380,2.0,892822259 +420,1394,2.0,892821976 +420,1405,1.0,892822303 +420,1411,4.0,892820363 +420,1704,4.0,892820141 +420,1721,2.0,892820141 +420,5060,3.0,892821424 +421,1,2.0,835170129 +421,11,5.0,835170327 +421,34,3.0,835170160 +421,39,3.0,835170225 +421,110,5.0,835170129 +421,150,4.0,835169969 +421,151,4.0,835170327 +421,158,3.0,835170469 +421,160,1.0,835170225 +421,165,2.0,835170005 +421,168,3.0,835170548 +421,173,1.0,835170259 +421,186,3.0,835170356 +421,236,3.0,835170289 +421,252,2.0,835170328 +421,253,2.0,835170100 +421,261,3.0,835170381 +421,265,2.0,835170469 +421,266,3.0,835170191 +421,292,3.0,835170070 +421,293,1.0,835170356 +421,300,3.0,835170129 +421,315,1.0,835170259 +421,316,5.0,835170037 +421,317,2.0,835170160 +421,318,5.0,835170037 +421,337,4.0,835170289 +421,339,3.0,835170070 +421,344,1.0,835170005 +421,349,5.0,835170004 +421,350,4.0,835170469 +421,356,4.0,835170289 +421,364,3.0,835170225 +421,377,4.0,835170548 +421,380,3.0,835169969 +421,410,2.0,835170129 +421,432,2.0,835170259 +421,434,2.0,835170070 +421,440,3.0,835170356 +421,454,4.0,835170225 +421,457,4.0,835170100 +421,480,1.0,835170327 +421,588,3.0,835170004 +421,589,2.0,835170469 +421,590,5.0,835169969 +421,593,3.0,835170100 +421,595,3.0,835170037 +422,1,5.0,980859727 +422,25,5.0,980859792 +422,34,4.0,980859748 +422,36,5.0,980859727 +422,39,4.0,980860120 +422,62,3.0,980860203 +422,70,3.0,980860306 +422,163,4.0,980860614 +422,296,5.0,980859486 +422,300,4.0,980860098 +422,314,5.0,980860034 +422,318,5.0,980859511 +422,356,4.0,980859825 +422,377,4.0,980860586 +422,480,3.0,980859968 +422,509,5.0,980860316 +422,539,3.0,980860336 +422,589,3.0,980859748 +422,593,5.0,980859598 +422,597,4.0,980860598 +422,608,5.0,980859486 +422,671,4.0,980859486 +422,745,5.0,980859598 +422,848,3.0,980860368 +422,858,4.0,980859294 +422,902,5.0,980859307 +422,999,5.0,980860034 +422,1060,4.0,980859698 +422,1089,5.0,980859525 +422,1092,4.0,980860353 +422,1094,4.0,980860072 +422,1148,5.0,980859539 +422,1183,5.0,980860560 +422,1187,4.0,980860072 +422,1196,3.0,980859275 +422,1213,4.0,980859650 +422,1223,5.0,980859727 +422,1265,3.0,980859890 +422,1266,4.0,980859839 +422,1268,4.0,980860306 +422,1271,4.0,980859780 +422,1356,2.0,980860353 +422,1393,3.0,980860542 +422,1441,3.0,980860425 +422,1517,4.0,980860003 +422,1610,4.0,980860144 +422,1619,5.0,980860290 +422,1639,5.0,980860560 +422,1704,4.0,980859727 +422,1721,3.0,980860144 +422,1777,3.0,980860110 +422,1805,4.0,980859968 +422,1909,2.0,980860326 +422,1977,2.0,980859275 +422,2028,4.0,980859539 +422,2231,4.0,980860274 +422,2268,4.0,980859937 +422,2291,4.0,980859953 +422,2324,5.0,980859698 +422,2359,5.0,980859761 +422,2571,3.0,980859698 +422,2677,5.0,980859598 +422,2706,4.0,980860444 +422,2712,5.0,980860465 +422,2791,4.0,980859307 +422,2841,3.0,980860353 +422,2908,4.0,980859761 +422,2916,2.0,980860166 +422,3007,4.0,980859698 +422,3044,3.0,980860560 +422,3052,5.0,980860166 +422,3100,5.0,980859978 +422,3107,4.0,980860478 +422,3114,4.0,980859650 +422,3129,5.0,980860368 +422,3148,4.0,980859848 +422,3155,4.0,980860274 +422,3174,4.0,980859862 +422,3253,4.0,980859862 +422,3418,5.0,980859898 +422,3499,4.0,980859912 +422,3614,4.0,980860425 +422,3990,2.0,980859425 +422,3999,2.0,980859396 +422,4025,3.0,980859425 +423,16,3.5,1353700733 +423,32,4.5,1353702469 +423,52,3.5,1353700719 +423,88,3.0,1354045120 +423,110,3.5,1353690717 +423,111,5.0,1353690587 +423,112,4.0,1354044911 +423,153,2.0,1354570794 +423,165,2.5,1353700439 +423,180,3.5,1353700713 +423,208,1.5,1356120878 +423,216,1.0,1353690007 +423,223,4.0,1354044791 +423,247,5.0,1366745345 +423,293,3.0,1353690982 +423,296,4.5,1353690522 +423,318,4.0,1353690380 +423,344,1.5,1353700421 +423,356,2.5,1353690977 +423,380,2.5,1354570781 +423,431,4.0,1353689965 +423,441,4.0,1356120997 +423,501,5.0,1355155724 +423,520,3.5,1354044892 +423,541,4.5,1353690537 +423,551,3.0,1353702981 +423,588,1.5,1353700416 +423,592,2.5,1354570771 +423,608,4.0,1353690579 +423,678,4.0,1353690603 +423,743,3.5,1356120984 +423,745,4.5,1353690436 +423,750,4.5,1353692208 +423,778,3.5,1353691124 +423,849,3.0,1353689992 +423,858,4.5,1353690685 +423,903,4.5,1353690529 +423,904,4.0,1353690384 +423,908,4.0,1353690400 +423,913,4.5,1355513806 +423,953,4.0,1353690728 +423,968,4.0,1353691701 +423,1073,4.5,1354033800 +423,1079,4.5,1353703162 +423,1080,5.0,1353691316 +423,1089,5.0,1353690653 +423,1090,3.5,1353690658 +423,1097,3.5,1354033802 +423,1103,3.5,1353692291 +423,1129,4.0,1353689957 +423,1136,4.5,1353691314 +423,1148,4.0,1353690430 +423,1193,5.0,1353690387 +423,1194,3.5,1353701208 +423,1196,4.0,1354570765 +423,1197,4.0,1353690481 +423,1198,4.0,1354033796 +423,1199,4.5,1353691009 +423,1201,5.0,1354570465 +423,1206,5.0,1353691236 +423,1209,4.0,1353690545 +423,1213,3.5,1353690609 +423,1215,4.0,1355514381 +423,1219,5.0,1353690677 +423,1220,4.0,1354044787 +423,1221,3.5,1353690749 +423,1222,4.5,1355514019 +423,1226,3.5,1353703105 +423,1240,4.0,1354570761 +423,1247,3.5,1353690632 +423,1252,5.0,1353690445 +423,1253,3.5,1353702847 +423,1255,4.0,1356029365 +423,1256,5.0,1353690551 +423,1258,5.0,1353691217 +423,1261,4.5,1353691738 +423,1263,3.5,1353691303 +423,1266,4.5,1353691003 +423,1270,3.0,1353700413 +423,1272,4.5,1353690031 +423,1276,4.0,1353690971 +423,1278,4.0,1353691348 +423,1281,3.5,1353690690 +423,1285,4.5,1354045487 +423,1288,4.5,1353690999 +423,1298,3.5,1356120971 +423,1304,4.5,1353691012 +423,1321,4.5,1354045273 +423,1333,4.0,1353692203 +423,1344,4.5,1353702867 +423,1345,3.5,1353701881 +423,1374,4.0,1353700592 +423,1391,4.0,1356120958 +423,1405,3.5,1353689980 +423,1573,3.5,1353700586 +423,1584,4.0,1354033786 +423,1587,3.5,1354044863 +423,1588,1.0,1353701200 +423,1590,1.0,1353690073 +423,1594,3.5,1354570050 +423,1663,4.0,1353703355 +423,1673,5.0,1354570176 +423,1682,3.0,1354570754 +423,1729,5.0,1353692080 +423,1732,5.0,1353703115 +423,1884,4.5,1354044852 +423,1907,1.5,1353700551 +423,1921,3.5,1353691976 +423,1953,3.5,1353691135 +423,1954,3.0,1354570862 +423,1982,2.5,1354570469 +423,2000,3.0,1353700544 +423,2002,3.0,1353700546 +423,2003,4.0,1354044843 +423,2012,3.0,1354033779 +423,2019,3.5,1353691335 +423,2023,4.0,1353700541 +423,2076,3.5,1353692228 +423,2078,2.5,1353689996 +423,2109,4.0,1353700528 +423,2134,3.0,1353700975 +423,2144,3.5,1353690001 +423,2148,4.5,1355155603 +423,2167,2.5,1353700523 +423,2174,2.0,1353700409 +423,2186,4.0,1353690495 +423,2288,5.0,1353703107 +423,2324,3.5,1353690463 +423,2329,3.5,1353690508 +423,2371,3.5,1353690067 +423,2401,4.0,1354045042 +423,2406,4.0,1354570843 +423,2407,3.0,1354044836 +423,2450,3.0,1354045036 +423,2502,4.5,1353691321 +423,2529,5.0,1353700515 +423,2539,2.0,1353700512 +423,2542,3.0,1353691250 +423,2557,4.0,1354570080 +423,2571,2.0,1353690450 +423,2648,4.0,1354570649 +423,2664,4.5,1353692283 +423,2700,3.5,1353691875 +423,2706,3.0,1354044782 +423,2716,3.5,1354033776 +423,2723,3.5,1353690018 +423,2788,3.0,1353691204 +423,2810,4.0,1353701693 +423,2826,2.0,1353690049 +423,2857,3.0,1354045026 +423,2916,3.5,1354033772 +423,2921,4.5,1355514335 +423,2944,3.0,1353690058 +423,2951,4.5,1354044826 +423,2959,4.5,1353690423 +423,2968,4.0,1353700507 +423,2987,3.5,1354044779 +423,2991,1.5,1353700889 +423,3000,5.0,1353690649 +423,3030,5.0,1353690425 +423,3033,3.5,1356120932 +423,3037,4.0,1353691308 +423,3039,2.5,1353689973 +423,3066,3.0,1353691420 +423,3095,4.0,1353691169 +423,3101,1.5,1353700493 +423,3147,4.0,1354570745 +423,3168,4.5,1353692273 +423,3175,2.5,1353700489 +423,3198,3.5,1353691405 +423,3200,4.5,1355514088 +423,3210,2.5,1356120926 +423,3254,2.5,1354045022 +423,3275,1.5,1353691363 +423,3360,3.0,1354045012 +423,3365,4.5,1353691152 +423,3386,4.0,1353690039 +423,3396,3.5,1353700486 +423,3424,2.5,1353703084 +423,3435,4.0,1353690397 +423,3441,2.0,1353700882 +423,3462,3.5,1353690490 +423,3467,4.0,1355514278 +423,3499,3.5,1353702968 +423,3546,4.5,1353702151 +423,3552,4.0,1354044819 +423,3624,3.0,1353690042 +423,3635,3.5,1353700866 +423,3671,3.5,1355514296 +423,3681,3.5,1353691376 +423,3703,3.5,1355513592 +423,3735,4.0,1354044993 +423,3809,3.5,1353700852 +423,3897,4.0,1354570741 +423,3911,3.5,1353692224 +423,3929,3.5,1355155885 +423,3996,3.5,1354570738 +423,4011,3.0,1353690997 +423,4027,4.0,1355514375 +423,4085,2.0,1353700481 +423,4105,3.5,1353691696 +423,4226,4.5,1353690453 +423,4406,4.0,1353691311 +423,4499,4.0,1353703317 +423,4545,1.0,1354044978 +423,4552,3.5,1355155703 +423,4558,2.5,1353700838 +423,4643,0.5,1353700476 +423,4734,1.5,1353700803 +423,4776,3.5,1354570825 +423,4855,4.0,1355514394 +423,4886,1.5,1353700402 +423,4963,2.5,1353700399 +423,4979,3.0,1353691972 +423,4993,3.0,1356120865 +423,5060,4.0,1353691031 +423,5218,2.5,1354044811 +423,5291,4.5,1353690457 +423,5349,3.0,1356120860 +423,5481,1.5,1354044807 +423,5618,5.0,1353690435 +423,5662,4.5,1354033555 +423,5669,3.0,1353692022 +423,5690,3.5,1353690616 +423,5826,4.0,1354570522 +423,5952,3.0,1354033768 +423,6001,5.0,1356029422 +423,6287,2.0,1354044962 +423,6373,2.0,1354570812 +423,6395,2.5,1366745069 +423,6502,3.0,1353692269 +423,6711,3.5,1353692248 +423,6713,5.0,1353701742 +423,6773,5.0,1355155764 +423,6774,4.0,1354570201 +423,6936,3.5,1353700780 +423,6957,4.0,1354044950 +423,6975,4.0,1353702254 +423,7013,4.5,1353690676 +423,7022,4.0,1353691747 +423,7147,3.0,1353702047 +423,7153,3.5,1353690515 +423,7235,5.0,1353701558 +423,7293,1.5,1353700773 +423,7325,2.5,1353700765 +423,7360,4.0,1354044945 +423,7482,4.0,1356121341 +423,7924,4.5,1355155786 +423,8142,4.0,1356029404 +423,8154,4.0,1353703053 +423,8157,4.5,1354045427 +423,8228,4.5,1353690673 +423,8360,1.5,1353700456 +423,8370,5.0,1356121385 +423,8376,2.0,1354044796 +423,8464,4.0,1354570808 +423,8607,4.5,1353701750 +423,8622,4.0,1356120900 +423,8874,4.5,1353703365 +423,8914,3.5,1356029443 +423,8917,4.0,1354044939 +423,8984,2.0,1353700759 +423,25777,3.5,1353691809 +423,26776,4.5,1353691925 +423,26840,4.0,1354570103 +423,27397,4.0,1355514085 +423,27592,5.0,1353701570 +423,27773,5.0,1353690651 +423,30745,5.0,1353701537 +423,30810,4.0,1353700757 +423,31658,5.0,1353690724 +423,31878,4.5,1354045280 +423,33794,4.0,1353691354 +423,34542,4.0,1353692075 +423,35836,3.5,1356120891 +423,37727,1.0,1353701479 +423,37729,4.0,1353700751 +423,38038,3.5,1353692264 +423,38061,3.5,1353703019 +423,39292,3.5,1353691948 +423,40732,3.5,1353701470 +423,42632,2.5,1353701577 +423,44191,3.0,1353700450 +423,44195,3.5,1354044794 +423,44665,3.5,1356121024 +423,47997,3.5,1353701446 +423,48322,2.5,1353701441 +423,48385,4.5,1354570798 +423,48516,5.0,1353690593 +423,48817,3.5,1366745303 +423,50641,4.5,1355155630 +423,51077,1.5,1353701435 +423,51086,1.0,1353701417 +423,51255,4.5,1353692280 +423,51540,4.5,1366745284 +423,52281,3.0,1353692135 +423,52666,4.0,1355155660 +423,52885,5.0,1353691801 +423,54503,3.5,1353691707 +423,54881,4.0,1355155972 +423,54997,4.0,1353692108 +423,55820,5.0,1353691214 +423,55830,3.5,1353701404 +423,56367,2.5,1353691795 +423,57669,5.0,1353691968 +423,58559,5.0,1353690391 +423,59615,0.5,1353700740 +423,60684,3.5,1353692035 +423,62155,2.5,1353701360 +423,62336,4.0,1353690745 +423,62378,3.0,1366744972 +423,63992,0.5,1353701364 +423,64614,3.0,1353691104 +423,64620,3.0,1353692046 +423,65261,4.0,1353691999 +423,67997,5.0,1353701611 +423,68157,4.0,1353691029 +423,68237,4.5,1353691173 +423,69122,2.5,1353691813 +423,70286,4.5,1353692029 +423,71464,4.0,1353701313 +423,71535,3.0,1353692016 +423,72378,0.5,1353701305 +423,72781,4.5,1353701647 +423,74152,4.0,1353703328 +423,74458,4.0,1353692048 +423,76251,2.5,1353692235 +423,77455,4.0,1353691101 +423,77907,4.5,1353701649 +423,79132,5.0,1353690447 +423,79136,4.5,1366745158 +423,79702,3.5,1353691806 +423,81591,4.0,1353691879 +423,82459,3.5,1353692140 +423,86345,4.0,1353690622 +423,86347,4.0,1353691114 +423,86377,4.0,1353690558 +423,91529,4.5,1355514013 +423,91947,3.5,1366745125 +423,92535,4.5,1353690517 +423,94024,4.5,1353701675 +423,94939,4.5,1353701629 +423,97744,4.5,1353701660 +423,97866,4.5,1356029375 +423,99114,4.5,1366745141 +423,99437,2.5,1366745227 +423,99795,4.5,1366745000 +424,39,3.5,1088826826 +424,348,3.0,1088826578 +424,475,4.5,1088826626 +424,745,4.5,1088826612 +424,910,3.5,1088826602 +424,1148,4.5,1088826569 +424,1179,3.5,1088826655 +424,1250,3.0,1088826555 +424,1466,3.5,1088826652 +424,1573,3.5,1088826807 +424,1641,4.0,1088826791 +424,1747,3.5,1088826633 +424,1777,1.0,1088826606 +424,1912,3.5,1088826659 +424,1952,4.0,1088826932 +424,1965,3.5,1088826923 +424,2160,4.5,1088826914 +424,2302,2.0,1088826778 +424,2395,3.5,1088826788 +424,2424,0.5,1088826664 +424,2599,4.5,1088826798 +424,2770,4.0,1088826594 +424,2858,3.0,1088826794 +424,3000,3.5,1088826881 +424,3671,3.5,1088826857 +424,3809,1.0,1088826863 +424,4027,1.0,1088826583 +424,4226,4.0,1088826564 +424,5388,4.0,1088826838 +424,5952,2.0,1088826870 +425,1,4.5,1112383737 +425,3,0.5,1112383600 +425,50,4.0,1112383800 +425,104,3.0,1112383604 +425,260,3.5,1112383838 +425,266,4.0,1112383542 +425,293,3.5,1112537739 +425,318,3.0,1112383732 +425,368,4.0,1112383561 +425,442,1.5,1112383529 +425,527,5.0,1112537663 +425,553,2.5,1112383621 +425,593,4.5,1112537716 +425,708,1.0,1112383574 +425,858,4.0,1112537707 +425,1193,5.0,1112537799 +425,1196,4.0,1112383753 +425,1198,2.0,1112383762 +425,1200,3.5,1112537786 +425,1208,4.0,1112383587 +425,1210,3.5,1112383774 +425,1220,4.0,1112383595 +425,1270,1.0,1112383851 +425,1517,4.5,1112383591 +425,1584,3.0,1112383523 +425,1610,3.5,1112383538 +425,1617,3.5,1112537806 +425,2028,4.5,1112383767 +425,2194,3.5,1112383783 +425,2329,5.0,1112383742 +425,2762,5.0,1112383804 +425,2959,3.0,1112383533 +425,2987,3.5,1112383580 +425,3114,4.5,1112383625 +425,3421,3.0,1112383892 +425,3552,2.5,1112383856 +425,3578,4.0,1112537782 +425,4011,3.5,1112383822 +425,4226,2.0,1112537653 +425,4306,3.0,1112383616 +425,4327,4.0,1112537769 +425,4886,3.0,1112383721 +425,4973,0.5,1112537791 +425,4993,4.0,1112383847 +425,5464,3.0,1112383908 +425,5782,3.5,1112537731 +425,5952,4.0,1112383869 +425,5989,2.5,1112383905 +425,6377,5.0,1112383828 +425,6539,4.0,1112383873 +425,6990,4.0,1112383747 +425,7153,4.0,1112383861 +425,7263,4.5,1112383811 +425,8784,0.5,1112537722 +425,8961,3.0,1112383888 +426,1,3.0,1312723226 +426,2,3.0,1310374386 +426,32,2.0,1310376031 +426,47,4.0,1313019611 +426,150,4.5,1310374587 +426,173,2.0,1310374525 +426,293,4.5,1215237478 +426,318,3.0,1310375718 +426,356,4.5,1310374614 +426,364,2.0,1214634821 +426,367,2.5,1214634250 +426,377,3.0,1310374227 +426,527,4.5,1310375774 +426,586,3.5,1215235439 +426,587,2.5,1214634345 +426,589,3.5,1310374483 +426,593,3.5,1310375903 +426,733,3.5,1310374501 +426,780,4.0,1310374391 +426,858,4.5,1310375743 +426,1090,2.5,1310375989 +426,1097,3.5,1214634258 +426,1213,4.0,1310375786 +426,1220,1.5,1215235642 +426,1221,4.5,1310374708 +426,1240,3.0,1310374704 +426,1246,3.0,1310374314 +426,1262,1.5,1310375819 +426,1266,2.5,1316424838 +426,1466,4.0,1310376117 +426,1573,4.5,1310374306 +426,1580,3.0,1214633651 +426,1645,4.5,1216014351 +426,1704,3.5,1310375872 +426,1721,4.0,1310374199 +426,1876,4.0,1310374309 +426,1917,3.5,1310388056 +426,1961,4.0,1310376168 +426,1997,3.0,1313019635 +426,2012,2.5,1310374655 +426,2028,4.5,1310374233 +426,2054,3.5,1215235446 +426,2273,3.5,1236265879 +426,2324,4.0,1311681703 +426,2329,4.0,1310375741 +426,2355,3.5,1214634964 +426,2459,2.0,1323087463 +426,2529,2.5,1216013578 +426,2571,4.5,1310374252 +426,2706,1.0,1310374591 +426,2762,4.5,1310374674 +426,2959,4.0,1310375783 +426,3114,3.0,1312723229 +426,3147,4.5,1214634860 +426,3157,3.5,1310374490 +426,3198,2.0,1310375932 +426,3751,2.5,1310374319 +426,3793,3.5,1214633662 +426,3897,2.5,1214634127 +426,3946,2.0,1213376027 +426,3948,3.0,1310374514 +426,3977,3.5,1214634738 +426,4011,2.5,1310375943 +426,4022,4.0,1310374323 +426,4306,3.0,1310374346 +426,4370,4.0,1215236236 +426,4447,1.0,1216014348 +426,4718,0.5,1216014109 +426,4720,4.5,1266835528 +426,4886,4.0,1214634083 +426,4896,4.0,1310374287 +426,4993,5.0,1214633546 +426,4995,4.5,1310374325 +426,5010,4.0,1310374426 +426,5218,3.5,1310374542 +426,5266,3.0,1310374245 +426,5349,4.0,1214633579 +426,5418,4.0,1310387832 +426,5459,3.0,1310374509 +426,5480,3.0,1213376185 +426,5502,3.0,1236265810 +426,5679,4.5,1310374236 +426,5816,4.0,1310374393 +426,5952,5.0,1214633808 +426,5956,4.5,1310374304 +426,5989,4.5,1214634080 +426,5995,4.5,1310375881 +426,6333,4.0,1214634095 +426,6365,4.5,1310374255 +426,6377,3.5,1214633646 +426,6503,0.5,1236266043 +426,6537,3.0,1310374340 +426,6539,4.5,1310387883 +426,6874,4.0,1214633654 +426,6880,3.5,1323087450 +426,6934,4.5,1310374254 +426,7143,4.5,1310375702 +426,7153,5.0,1214633640 +426,7318,4.0,1313019654 +426,7366,1.0,1213376078 +426,7373,3.0,1310374545 +426,7438,4.5,1216013447 +426,8132,4.0,1310375708 +426,8360,2.5,1310374497 +426,8361,4.5,1216014468 +426,8368,4.0,1310374299 +426,8528,3.0,1216014856 +426,8636,2.5,1310374343 +426,8644,4.0,1310374280 +426,8645,1.0,1213375877 +426,8961,4.0,1214633721 +426,8972,4.0,1310374378 +426,30707,4.5,1310387916 +426,30793,4.0,1215235498 +426,30894,2.0,1310374328 +426,31696,4.5,1313019387 +426,32587,4.0,1310374230 +426,33587,2.0,1315407189 +426,33679,3.5,1215237463 +426,33794,4.0,1214633593 +426,34048,4.5,1310374168 +426,35836,4.0,1216012624 +426,38038,3.5,1310388229 +426,39446,4.5,1213375973 +426,40815,4.0,1310374302 +426,41566,3.0,1310374408 +426,41569,4.0,1310374605 +426,44191,4.0,1310387855 +426,44665,4.5,1266835505 +426,45447,4.5,1310374316 +426,45722,4.5,1310387884 +426,46335,2.5,1310374400 +426,46530,2.0,1310374487 +426,46578,3.5,1310374520 +426,47610,4.0,1310374260 +426,48159,3.0,1310374558 +426,48385,3.0,1310374581 +426,48394,4.5,1310374248 +426,48516,3.5,1321896493 +426,48518,2.5,1323087437 +426,48696,2.5,1323171391 +426,48774,1.5,1310374412 +426,49272,4.0,1310374419 +426,49649,3.5,1310374563 +426,49822,3.5,1322736099 +426,50872,3.0,1310374365 +426,51255,3.5,1310374542 +426,51662,4.0,1214633813 +426,52281,4.5,1310387926 +426,52722,4.0,1213375902 +426,52973,2.0,1215236241 +426,53125,4.5,1310374239 +426,53956,2.0,1320778912 +426,53972,3.0,1310374516 +426,53996,3.5,1310374333 +426,54001,4.0,1310374298 +426,54259,2.5,1310374205 +426,54270,1.5,1310388116 +426,54286,4.0,1310387837 +426,54503,3.0,1310387935 +426,55052,4.0,1216014601 +426,55110,4.0,1310388062 +426,55118,4.5,1310376125 +426,55272,4.5,1323890835 +426,55290,3.0,1310376141 +426,55820,3.0,1266835529 +426,55872,3.5,1324839261 +426,55995,3.5,1310374582 +426,56174,4.0,1310374284 +426,56367,3.5,1214633770 +426,56757,4.5,1310374202 +426,56788,3.5,1213376235 +426,57223,0.5,1310388123 +426,57368,4.5,1310388033 +426,57640,4.0,1310387995 +426,58306,3.5,1310387961 +426,58559,4.5,1310387905 +426,58627,4.0,1310388048 +426,59306,4.0,1310388132 +426,59315,4.5,1310376071 +426,59594,3.5,1310388107 +426,59615,3.5,1310388076 +426,59727,4.0,1310388096 +426,60040,3.5,1310387983 +426,60069,4.0,1310387772 +426,60072,3.0,1310387972 +426,60074,4.5,1310388070 +426,60126,4.0,1310388041 +426,60514,3.0,1310388086 +426,61167,4.5,1313019514 +426,63082,4.0,1310376021 +426,64032,1.5,1311409769 +426,64614,4.5,1310375971 +426,65261,3.0,1312242949 +426,65514,3.5,1310376061 +426,65601,2.5,1311252288 +426,66335,1.0,1313361477 +426,67197,2.5,1311409753 +426,67255,2.0,1322067294 +426,68157,3.5,1310375581 +426,68269,3.5,1314655612 +426,68358,2.5,1312375505 +426,68791,3.0,1313019381 +426,68848,3.5,1312923744 +426,69644,3.0,1311941355 +426,69951,3.0,1313162389 +426,70286,4.0,1310509278 +426,70293,2.5,1316189837 +426,71135,2.0,1311681564 +426,71205,3.5,1311801411 +426,71211,1.5,1323423057 +426,71248,1.5,1310637692 +426,71252,2.0,1311705609 +426,71254,3.0,1311606101 +426,71490,2.5,1315091282 +426,71573,1.5,1312242966 +426,72011,3.0,1312900885 +426,72043,2.5,1312315781 +426,72395,2.5,1314747954 +426,72405,1.0,1311252323 +426,72479,3.5,1314570712 +426,72489,2.5,1314460884 +426,72641,4.0,1310376100 +426,72762,2.5,1311919068 +426,73015,3.0,1315476400 +426,73017,3.5,1312066410 +426,73106,2.0,1311759587 +426,73168,2.5,1311505072 +426,73321,3.0,1315488854 +426,73929,4.0,1313019088 +426,74115,2.0,1314270039 +426,74156,2.0,1315407212 +426,74228,3.5,1314916910 +426,74452,2.5,1315921256 +426,74530,3.5,1315161580 +426,74532,2.5,1320663157 +426,74545,1.5,1323204271 +426,74580,3.5,1314015415 +426,74868,3.0,1311769935 +426,74944,2.5,1320525077 +426,75341,4.0,1310821392 +426,76111,4.0,1313361502 +426,76293,2.5,1320778852 +426,78499,4.5,1312723214 +426,79132,3.0,1310375731 +426,79134,3.5,1312406213 +426,79293,2.0,1311257816 +426,79553,3.5,1316267502 +426,81834,3.5,1310376154 +426,81845,4.0,1310375737 +426,81932,4.0,1310375918 +426,82167,3.0,1322931116 +426,85572,2.5,1323890879 +426,86880,4.0,1316189764 +427,246,5.0,1250895460 +427,910,5.0,948657494 +427,919,5.0,1133042737 +427,927,5.0,948657464 +427,1189,4.5,1250894394 +427,1192,5.0,1250895524 +427,1203,5.0,1128457191 +427,1207,5.0,1128457173 +427,1267,5.0,977929549 +427,1610,4.0,943193215 +427,1794,5.0,949892229 +427,1834,5.0,950656096 +427,1947,5.0,954646432 +427,2165,4.0,941370404 +427,2202,5.0,1133042768 +427,2324,2.0,943193068 +427,2330,4.0,948657202 +427,2331,5.0,943193150 +427,2357,5.0,939334343 +427,2396,5.0,939334407 +427,2436,2.0,948657936 +427,2494,4.0,950656136 +427,2501,5.0,939334407 +427,2505,4.0,939334662 +427,2541,4.0,939334474 +427,2572,3.0,948658156 +427,2575,3.0,939334343 +427,2580,5.0,939334343 +427,2583,2.0,939334407 +427,2599,5.0,939471337 +427,2607,4.0,939471337 +427,2611,4.0,950656065 +427,2612,5.0,1133042932 +427,2629,4.0,948657936 +427,2677,4.0,939471258 +427,2690,4.0,954858294 +427,2692,4.0,939471258 +427,2721,4.0,939332587 +427,2725,2.0,939333701 +427,2759,2.0,949892370 +427,2762,3.0,939332587 +427,2829,4.0,939333936 +427,2839,4.0,954646432 +427,2858,5.0,939332587 +427,2890,5.0,957753781 +427,2891,4.0,940772684 +427,2908,5.0,957753723 +427,2959,4.0,958331913 +427,2966,3.0,959536644 +427,2997,4.0,941370234 +427,3006,4.0,943810098 +427,3007,4.0,948657229 +427,3079,3.0,968563714 +427,3083,5.0,968563574 +427,3114,4.0,948657147 +427,3129,3.0,969816668 +427,3163,3.0,951098843 +427,3175,3.0,953504181 +427,3176,4.0,947369314 +427,3181,3.0,968563534 +427,3182,4.0,949892202 +427,3186,2.0,968563714 +427,3188,4.0,977929769 +427,3289,4.0,953504066 +427,3317,5.0,952358232 +427,3408,4.0,955643035 +427,3409,3.0,971028409 +427,3535,4.0,957753838 +427,3538,3.0,959536380 +427,3556,3.0,968563653 +427,3594,3.0,983550877 +427,3624,4.0,971631229 +427,3893,4.0,969216317 +427,3903,3.0,971028428 +427,3911,3.0,978709981 +427,3949,5.0,975781813 +427,3967,4.0,975781760 +427,3983,4.0,978710004 +427,3989,4.0,994366614 +427,3993,4.0,994366630 +427,3996,5.0,981069166 +427,4014,3.0,981069181 +427,4016,3.0,983550997 +427,4021,3.0,983550975 +427,4022,3.0,979574534 +427,4027,3.0,983550944 +427,4029,2.0,979574560 +427,4034,4.0,983550819 +427,4056,4.0,983550847 +427,4226,5.0,988493239 +427,4235,4.0,988493239 +427,4236,4.0,994366511 +427,4237,4.0,1110945225 +427,4252,5.0,994366535 +427,4304,5.0,994366511 +427,4306,4.0,1009911179 +427,4375,4.0,1005543899 +427,4384,3.0,997048492 +427,4427,5.0,1133042901 +427,4450,4.0,1001173786 +427,4641,4.0,1000678535 +427,4642,5.0,998607282 +427,4649,3.0,1003024600 +427,4722,4.0,1000678496 +427,4723,4.0,998967925 +427,4765,5.0,1005543981 +427,4766,4.0,1005543960 +427,4772,4.0,1011672972 +427,4878,4.0,1004906303 +427,4897,3.0,1008650249 +427,4903,4.0,1005543960 +427,4965,2.0,1009911218 +427,4973,5.0,1116354559 +427,5010,5.0,1011672915 +427,5013,3.0,1010345180 +427,5015,4.0,1014007804 +427,5074,4.0,1014305906 +427,5135,3.0,1116354513 +427,5222,4.0,1021345835 +427,5225,4.0,1116354581 +427,5375,4.5,1133042951 +427,5377,3.0,1049083446 +427,5445,2.0,1025186493 +427,5446,5.0,1042555931 +427,5502,4.0,1044750719 +427,5505,4.0,1044750697 +427,5525,4.0,1060280381 +427,5577,3.0,1065393088 +427,5669,5.0,1041725800 +427,5685,3.5,1060280351 +427,5792,4.5,1116354538 +427,5812,4.5,1116354484 +427,5875,1.0,1051537004 +427,5878,5.0,1046647854 +427,5902,3.0,1041725737 +427,5945,3.0,1042996257 +427,5955,4.0,1042555897 +427,5991,5.0,1041725759 +427,6016,5.0,1156716167 +427,6062,4.0,1047651383 +427,6215,4.0,1051536964 +427,6218,5.0,1052664860 +427,6235,5.0,1046648012 +427,6244,5.0,1046647917 +427,6269,5.0,1049083482 +427,6296,3.0,1051799150 +427,6297,3.0,1053008615 +427,6299,3.5,1054595166 +427,6329,2.0,1116354871 +427,6331,5.0,1053309962 +427,6377,4.0,1054753022 +427,6378,4.0,1056383778 +427,6380,5.0,1057761595 +427,6385,3.5,1056484880 +427,6502,4.5,1057761622 +427,6552,4.5,1065393046 +427,6568,2.0,1065392996 +427,6592,3.5,1088952308 +427,6612,4.5,1250894339 +427,6620,5.0,1088952325 +427,6711,3.5,1068506016 +427,6772,4.0,1110945182 +427,6867,4.5,1116354563 +427,6869,4.5,1068506104 +427,6935,4.0,1068506242 +427,6945,4.0,1110945213 +427,7137,5.0,1088952249 +427,7139,4.0,1116354459 +427,7156,4.5,1110945168 +427,7256,4.0,1081899058 +427,7323,3.0,1081899052 +427,7382,3.5,1088952195 +427,7451,4.0,1088952403 +427,7932,5.0,1110945208 +427,8011,4.0,1110945174 +427,8129,1.5,1110945325 +427,8360,3.0,1099360992 +427,8366,3.5,1088952208 +427,8376,4.0,1099361016 +427,8464,5.0,1088952199 +427,8530,3.5,1112919628 +427,8622,5.0,1088952190 +427,8645,4.5,1095625235 +427,8784,4.0,1095625232 +427,8813,3.5,1095645165 +427,8860,0.5,1111026293 +427,8873,2.5,1099361090 +427,8874,4.0,1097018897 +427,8910,3.5,1116354633 +427,8938,5.0,1104630933 +427,8949,4.0,1104630917 +427,8951,4.0,1104630922 +427,8961,3.5,1115178370 +427,8966,3.5,1104630957 +427,8970,4.0,1116354613 +427,8973,4.0,1104630927 +427,8979,4.0,1131832183 +427,9018,5.0,1106498092 +427,26524,5.0,1250894277 +427,26599,5.0,1131832222 +427,27790,3.5,1114792332 +427,27822,4.0,1111026450 +427,27838,4.0,1111026402 +427,27846,4.5,1110945245 +427,27850,3.5,1115178387 +427,27878,4.0,1128457245 +427,30707,3.0,1118709999 +427,30820,4.0,1110945124 +427,30822,4.5,1110945131 +427,30898,4.0,1114792318 +427,31437,4.0,1112919612 +427,31689,4.5,1110945368 +427,31878,4.5,1115828580 +427,32025,4.0,1116130631 +427,33138,4.0,1115178337 +427,33154,4.0,1115828627 +427,33166,5.0,1115828585 +427,33171,2.5,1133042763 +427,33639,4.5,1130600531 +427,33838,3.5,1133042812 +427,33880,2.5,1133042784 +427,34153,4.5,1123776115 +427,34162,2.0,1123776185 +427,34164,4.5,1133042802 +427,37741,4.5,1133042634 +427,39183,4.5,1135123313 +427,39292,4.0,1130600490 +427,44555,4.0,1177171058 +427,44694,3.5,1167240430 +427,45028,2.5,1156716144 +427,45720,3.0,1159045087 +427,45950,5.0,1156716264 +427,46578,3.5,1157246253 +427,47950,2.0,1159045041 +427,48394,4.5,1170692369 +427,48696,3.5,1163959008 +427,48698,4.0,1250894319 +427,49132,4.0,1250895374 +427,49824,4.0,1170609840 +427,51255,4.0,1179589802 +427,51418,1.0,1177170996 +427,51662,1.0,1177171099 +427,51884,3.5,1177171121 +427,55069,5.0,1206586611 +427,55094,4.0,1206586675 +427,55276,4.5,1206586652 +427,55290,4.0,1206586666 +427,55820,4.0,1206586640 +427,56152,4.5,1206586687 +427,58191,4.5,1250894329 +427,59731,4.0,1250894403 +427,60943,4.5,1250895660 +427,61236,4.0,1250894514 +427,61357,4.0,1256226805 +427,64614,1.5,1250894570 +427,66509,0.5,1250895805 +427,67997,4.5,1250894343 +427,68157,4.0,1262228528 +427,68347,4.5,1256226826 +427,68838,4.0,1262228546 +427,68954,3.5,1250894386 +427,69122,5.0,1250895760 +427,69458,4.5,1263310958 +427,69481,4.0,1250894296 +427,69757,4.0,1250895730 +427,70286,4.0,1262977565 +427,71379,3.0,1263310993 +427,71462,4.5,1263310917 +427,71579,4.5,1263310897 +427,72011,5.0,1265906220 +427,72386,3.5,1272752346 +427,72395,3.0,1262228475 +427,72720,4.0,1262228620 +427,72998,2.5,1262977526 +427,90428,5.0,1346207554 +427,91673,5.0,1346207499 +427,103137,4.5,1382283005 +427,103624,4.5,1381617789 +427,103980,3.5,1381617664 +427,104879,2.0,1381617702 +427,106100,4.0,1386874965 +427,106438,4.5,1387728917 +427,106696,4.0,1389310515 +427,106916,4.0,1388964642 +427,107141,3.5,1388964557 +427,109374,4.0,1409437972 +427,111622,4.0,1409437538 +427,111921,3.0,1409437552 +427,112852,2.5,1413040016 +427,113064,3.5,1413040057 +427,113275,3.5,1413040042 +427,114028,4.0,1415901733 +427,114074,3.5,1413040135 +427,115174,3.5,1415901843 +428,1,5.0,1304131910 +428,2,3.0,1304136764 +428,10,2.5,1304136575 +428,16,5.0,1304142362 +428,34,3.0,1304132685 +428,50,4.5,1304131941 +428,60,2.0,1304131480 +428,111,5.0,1304136728 +428,153,1.5,1304133635 +428,223,4.5,1304136337 +428,231,4.0,1304136299 +428,256,2.0,1304130936 +428,260,5.0,1304131901 +428,296,5.0,1304131855 +428,329,2.5,1304136644 +428,344,3.5,1304136498 +428,356,3.5,1304133595 +428,357,2.0,1304136654 +428,364,5.0,1304133938 +428,413,0.5,1304131497 +428,480,3.0,1304136474 +428,500,1.0,1304132696 +428,508,3.0,1304141271 +428,586,3.5,1304136687 +428,588,4.0,1304136386 +428,589,4.0,1304131915 +428,592,4.0,1304136485 +428,593,4.5,1304136471 +428,595,3.5,1304133667 +428,608,4.5,1304132319 +428,616,2.5,1304131112 +428,743,2.0,1304131465 +428,858,5.0,1304131897 +428,912,3.0,1304136749 +428,919,3.0,1304136755 +428,924,5.0,1304134854 +428,1036,4.0,1304134845 +428,1073,5.0,1304132663 +428,1080,5.0,1304142495 +428,1089,5.0,1304136732 +428,1097,3.0,1304132219 +428,1136,5.0,1304136569 +428,1193,5.0,1304136641 +428,1196,5.0,1304131854 +428,1197,3.0,1304136572 +428,1198,4.0,1304132105 +428,1201,4.5,1304136888 +428,1206,5.0,1304136384 +428,1208,5.0,1304134913 +428,1210,5.0,1304133955 +428,1213,5.0,1304136721 +428,1221,5.0,1304136301 +428,1222,5.0,1304141286 +428,1228,4.0,1304136886 +428,1237,4.5,1304175433 +428,1240,4.0,1304132398 +428,1244,5.0,1304131118 +428,1256,4.5,1304131708 +428,1258,5.0,1304134964 +428,1259,4.5,1304141199 +428,1265,4.0,1304134860 +428,1270,5.0,1304133535 +428,1291,4.0,1304136645 +428,1387,4.0,1304136297 +428,1405,3.0,1304131051 +428,1580,4.0,1304132213 +428,1721,1.0,1304132657 +428,1732,5.0,1304142504 +428,1826,0.5,1304136788 +428,1917,0.5,1304133571 +428,1968,5.0,1304134842 +428,2011,5.0,1304134907 +428,2054,2.5,1304136388 +428,2115,4.0,1304134905 +428,2324,2.5,1304141246 +428,2396,1.5,1304132676 +428,2502,5.0,1304136309 +428,2628,1.5,1304131881 +428,2700,4.5,1304141079 +428,2707,4.0,1304131460 +428,2716,5.0,1304132102 +428,2746,1.0,1304131105 +428,2762,3.0,1304131916 +428,2918,5.0,1304134856 +428,2959,5.0,1304136560 +428,2968,3.0,1304131049 +428,2997,4.5,1304136710 +428,3114,5.0,1304132698 +428,3175,3.5,1304141086 +428,3421,4.0,1304130910 +428,3424,5.0,1304131496 +428,3471,3.5,1304141000 +428,3481,5.0,1304136307 +428,3623,1.0,1304133953 +428,3671,4.5,1304130933 +428,3751,3.0,1304135055 +428,3969,0.5,1304131719 +428,4022,3.0,1304133574 +428,4226,4.0,1304132657 +428,4306,2.5,1304131858 +428,4822,5.0,1304175134 +428,4878,5.0,1304133585 +428,4886,4.0,1304131892 +428,4896,3.5,1304133562 +428,4979,5.0,1304136392 +428,4993,4.0,1304134850 +428,4995,4.0,1304132699 +428,5349,3.5,1304133533 +428,5378,1.5,1304132675 +428,5502,1.5,1304141098 +428,5618,5.0,1304141257 +428,5816,3.5,1304133645 +428,5952,4.0,1304132087 +428,6333,3.0,1304133967 +428,6377,4.0,1304133632 +428,6440,4.5,1304142199 +428,6539,4.0,1304131860 +428,6711,4.5,1304133651 +428,6807,4.5,1304175669 +428,7153,4.0,1304136354 +428,7361,4.5,1304132089 +428,8360,2.0,1304133630 +428,8368,3.0,1304133948 +428,8636,3.5,1304132076 +428,8859,0.5,1304136791 +428,8961,4.0,1304132679 +428,25771,2.5,1304141523 +428,26729,4.0,1304175163 +428,27879,3.0,1304141525 +428,33794,4.0,1304131913 +428,34338,5.0,1304225383 +428,35836,4.0,1304141202 +428,40815,3.5,1304140997 +428,44633,5.0,1304141893 +428,45722,2.0,1304133943 +428,46578,4.0,1304133965 +428,48385,5.0,1304141255 +428,48516,4.5,1304133568 +428,48774,3.5,1304141034 +428,48780,4.5,1304136397 +428,49272,3.0,1304132107 +428,51127,4.5,1304141351 +428,51662,3.0,1304133664 +428,54290,0.5,1304136792 +428,56174,3.0,1304141083 +428,56367,4.5,1304133927 +428,58559,5.0,1304132112 +428,59315,3.5,1304132214 +428,60069,4.5,1304132672 +428,61348,0.5,1304136794 +428,63082,3.0,1304133948 +428,64839,3.5,1304141889 +428,68157,5.0,1304133647 +428,68954,4.5,1304133577 +428,69122,4.5,1304133941 +428,69757,4.0,1304136382 +428,70286,4.0,1304141260 +428,72998,2.5,1304132659 +428,76251,5.0,1304141094 +428,77455,4.5,1304136806 +428,77561,3.5,1304141210 +428,79132,4.5,1304132079 +428,80463,5.0,1304133955 +428,81591,5.0,1304141039 +428,84944,3.0,1304175077 +428,85414,5.0,1304141215 +429,123,4.0,1238950945 +429,593,4.0,1238952027 +429,724,2.5,1238950799 +429,1350,2.0,1238951690 +429,1644,0.5,1238951659 +429,2316,3.0,1238950920 +429,2329,0.5,1238951937 +429,2337,2.5,1238951032 +429,2571,2.5,1238951996 +429,2858,2.0,1238951926 +429,2959,3.0,1238951957 +429,4128,2.0,1238951686 +429,4226,1.5,1238952002 +429,4973,3.0,1238951910 +429,4993,2.0,1238951982 +429,5618,2.5,1238951921 +429,5952,2.0,1238951986 +429,5971,2.5,1238951907 +429,7153,2.0,1238951983 +429,7371,3.0,1238950966 +429,7460,2.0,1238951083 +429,8915,2.0,1238951356 +429,45062,1.0,1238951200 +429,50804,3.0,1238951256 +429,55444,1.5,1238951212 +429,62344,2.5,1238951407 +429,64575,1.5,1238951331 +430,1,4.0,1172908978 +430,3,1.5,1111488810 +430,6,4.0,1111489263 +430,10,3.5,1172908696 +430,19,2.0,1111488716 +430,21,5.0,1172909126 +430,25,4.5,1111579872 +430,29,5.0,1111579350 +430,32,5.0,1111489823 +430,34,3.5,1172909176 +430,47,5.0,1111489134 +430,50,5.0,1111489279 +430,69,4.0,1111489768 +430,104,2.0,1111488812 +430,110,4.0,1172908379 +430,141,4.0,1172909136 +430,147,4.5,1111579932 +430,150,4.0,1172908407 +430,153,1.0,1172908800 +430,185,3.5,1172909057 +430,223,2.5,1111489336 +430,231,5.0,1172908653 +430,235,5.0,1111488794 +430,253,5.0,1172908857 +430,260,3.5,1111489126 +430,292,5.0,1172908834 +430,293,5.0,1111489235 +430,296,4.5,1170411259 +430,316,4.0,1172908366 +430,318,5.0,1111489121 +430,337,4.5,1111579448 +430,344,4.0,1172908141 +430,349,4.5,1172908489 +430,356,4.5,1172908444 +430,357,4.0,1172909132 +430,364,5.0,1172908572 +430,367,4.0,1172908988 +430,368,2.5,1111488758 +430,380,5.0,1172908481 +430,442,0.5,1111488735 +430,454,3.0,1172909002 +430,457,5.0,1172908134 +430,480,4.0,1172908639 +430,494,1.0,1111488801 +430,497,1.5,1111488818 +430,500,4.0,1172908623 +430,539,2.0,1172909125 +430,553,4.0,1111488822 +430,555,4.5,1170411342 +430,587,4.0,1172908831 +430,588,4.5,1172908207 +430,589,4.5,1172908230 +430,590,4.0,1172908236 +430,592,3.5,1172908660 +430,593,4.0,1111489761 +430,594,2.5,1111488764 +430,595,3.5,1172908778 +430,597,4.0,1172908574 +430,608,4.0,1172908124 +430,648,4.5,1172909071 +430,653,0.5,1111488791 +430,665,3.0,1172909323 +430,714,4.5,1111579833 +430,733,4.0,1172908861 +430,736,2.0,1172908580 +430,741,5.0,1111579229 +430,745,5.0,1170411578 +430,778,5.0,1111579243 +430,780,2.5,1172908200 +430,858,4.5,1172908454 +430,968,3.5,1170411359 +430,1036,4.0,1111488980 +430,1073,4.0,1172908513 +430,1079,4.0,1111579182 +430,1080,5.0,1111579223 +430,1089,4.5,1170411271 +430,1090,2.5,1111489294 +430,1097,4.0,1172908345 +430,1101,3.0,1111488828 +430,1136,5.0,1111578980 +430,1148,4.5,1170411615 +430,1172,4.5,1111579376 +430,1175,4.0,1111579434 +430,1193,4.5,1172908562 +430,1196,4.5,1111489117 +430,1197,4.5,1111489266 +430,1198,4.0,1111489087 +430,1199,3.5,1111579432 +430,1208,4.5,1111488785 +430,1210,5.0,1172908475 +430,1214,4.0,1172908713 +430,1220,4.0,1111488789 +430,1222,3.5,1111489795 +430,1240,2.0,1111489287 +430,1258,5.0,1111579153 +430,1259,4.0,1111489285 +430,1265,5.0,1172908516 +430,1270,4.5,1172908600 +430,1285,4.0,1111579390 +430,1291,4.0,1172908809 +430,1298,5.0,1170411372 +430,1393,4.5,1172909031 +430,1394,4.0,1111579354 +430,1464,4.0,1170411349 +430,1517,3.5,1172908850 +430,1527,5.0,1111579839 +430,1580,5.0,1172908672 +430,1584,1.0,1111488730 +430,1610,3.5,1111488750 +430,1617,3.5,1111579007 +430,1625,4.0,1111489196 +430,1704,4.5,1172909209 +430,1721,2.5,1172908150 +430,1732,4.5,1111579415 +430,1757,3.0,1170411539 +430,1784,3.5,1111488723 +430,1917,3.0,1172908967 +430,1921,5.0,1111579815 +430,1923,4.5,1111488767 +430,1961,4.0,1111489333 +430,1968,4.5,1111579220 +430,2010,4.5,1111579472 +430,2012,3.5,1172909027 +430,2028,4.0,1111489001 +430,2064,4.0,1111579487 +430,2138,5.0,1111579516 +430,2140,4.0,1111579829 +430,2174,4.0,1172908972 +430,2194,5.0,1111489006 +430,2291,5.0,1172909202 +430,2318,4.5,1111579865 +430,2324,4.0,1111579118 +430,2329,5.0,1111489077 +430,2396,4.5,1172908429 +430,2467,5.0,1111579348 +430,2542,5.0,1111579093 +430,2571,4.0,1111488994 +430,2599,4.0,1111579524 +430,2628,3.0,1172908131 +430,2640,2.0,1172909184 +430,2683,4.5,1172908720 +430,2692,4.5,1111579086 +430,2700,3.5,1111579545 +430,2706,4.0,1172908728 +430,2710,2.0,1172908992 +430,2716,4.0,1111489023 +430,2762,4.0,1111489092 +430,2788,4.5,1111578999 +430,2797,4.5,1172908701 +430,2810,5.0,1111579329 +430,2858,5.0,1111579059 +430,2916,5.0,1172908724 +430,2918,5.0,1111489008 +430,2924,5.0,1111579442 +430,2944,3.5,1111489211 +430,2947,2.5,1111489205 +430,2959,5.0,1111488748 +430,2987,3.5,1111488777 +430,2997,5.0,1111579314 +430,3000,4.5,1111579139 +430,3019,5.0,1111579518 +430,3020,4.5,1111579868 +430,3039,4.0,1111489050 +430,3114,4.5,1111489143 +430,3129,4.5,1111579822 +430,3160,4.5,1111579468 +430,3275,5.0,1111489165 +430,3328,1.5,1111579881 +430,3342,5.0,1111579535 +430,3421,2.5,1111489059 +430,3481,5.0,1111579289 +430,3499,4.5,1111489321 +430,3552,2.5,1111488991 +430,3578,4.0,1172908348 +430,3581,3.5,1172909333 +430,3623,2.5,1172908868 +430,3671,4.5,1111489222 +430,3677,5.0,1111579537 +430,3751,3.5,1172909197 +430,3793,3.5,1172908160 +430,3868,4.0,1111489269 +430,3897,4.0,1111489789 +430,3910,5.0,1111579859 +430,3911,4.5,1111579318 +430,3948,4.5,1172909189 +430,3949,4.0,1111579150 +430,3977,3.5,1172908784 +430,3996,5.0,1111579142 +430,4002,1.5,1111489214 +430,4011,4.5,1111489188 +430,4022,3.5,1172908708 +430,4027,5.0,1111579232 +430,4034,4.0,1172908224 +430,4226,5.0,1111578970 +430,4235,5.0,1111579309 +430,4306,4.0,1111579064 +430,4349,5.0,1111579787 +430,4499,4.5,1111489272 +430,4616,5.0,1111579241 +430,4641,4.0,1111579521 +430,4720,5.0,1111579299 +430,4833,4.5,1111489146 +430,4848,5.0,1111579907 +430,4855,3.0,1111489063 +430,4873,4.5,1170411362 +430,4878,5.0,1111579089 +430,4886,5.0,1172908353 +430,4896,3.5,1172908433 +430,4963,4.0,1172908359 +430,4973,5.0,1111579003 +430,4979,4.0,1111579480 +430,4993,3.5,1111489157 +430,4995,3.5,1172909076 +430,5010,2.5,1111489299 +430,5225,4.5,1111579424 +430,5349,4.0,1172908764 +430,5378,3.5,1172908217 +430,5418,4.0,1172908339 +430,5445,4.5,1172908117 +430,5464,2.0,1111489185 +430,5500,4.5,1111489193 +430,5617,5.0,1111579379 +430,5618,5.0,1111579074 +430,5669,4.5,1111579167 +430,5679,5.0,1170411385 +430,5791,5.0,1111579819 +430,5816,3.5,1172909057 +430,5828,5.0,1170411378 +430,5952,4.0,1111489208 +430,5954,3.5,1111579236 +430,5989,4.0,1111489153 +430,6016,5.0,1111579068 +430,6093,4.5,1111579888 +430,6104,2.5,1111579011 +430,6242,5.0,1111579259 +430,6303,3.5,1111579368 +430,6333,4.0,1111489020 +430,6365,4.0,1172908244 +430,6377,4.0,1111489296 +430,6440,5.0,1111579483 +430,6461,5.0,1111579160 +430,6502,4.5,1111579419 +430,6530,3.5,1170411291 +430,6539,4.0,1111489053 +430,6711,5.0,1111579383 +430,6796,4.5,1111489792 +430,6807,5.0,1111579106 +430,6864,4.5,1111489138 +430,6874,5.0,1111579099 +430,6987,4.5,1111579179 +430,6990,4.0,1111489027 +430,7090,4.5,1111579109 +430,7147,5.0,1111579081 +430,7153,3.5,1111489230 +430,7158,2.0,1111579362 +430,7361,5.0,1111578973 +430,7438,5.0,1111578995 +430,7579,2.0,1161344510 +430,7818,2.5,1172909057 +430,8158,4.5,1111489276 +430,8360,4.5,1111489301 +430,8368,3.5,1172908648 +430,8622,4.0,1172908757 +430,8636,0.5,1111489217 +430,8665,0.5,1111489325 +430,8917,3.5,1111579553 +430,8961,5.0,1172908771 +430,26509,4.5,1172908172 +430,26915,4.5,1172908485 +430,30793,4.5,1172909114 +430,32587,5.0,1170411313 +430,33493,3.5,1172908630 +430,33794,5.0,1172908493 +430,37386,4.5,1148091236 +430,37731,3.5,1151754940 +430,37830,4.0,1148090344 +430,38061,5.0,1170411311 +430,39183,1.5,1148091178 +430,40815,3.5,1172908450 +430,40819,1.5,1172909150 +430,41566,2.0,1148091184 +430,41569,2.5,1148091172 +430,41571,4.0,1148091164 +430,42004,4.0,1151754906 +430,42011,2.0,1148091114 +430,42013,2.0,1148091106 +430,42734,4.5,1148090954 +430,42738,4.5,1148090947 +430,43679,3.5,1148090914 +430,43836,2.5,1148090882 +430,43871,3.5,1148090865 +430,43928,4.0,1151753766 +430,44191,3.5,1148090668 +430,44397,0.5,1151753780 +430,44665,5.0,1161344490 +430,44840,3.5,1161344795 +430,44972,4.0,1161344853 +430,45442,3.5,1161344810 +430,45499,4.0,1161344646 +430,45722,4.0,1172908591 +430,46335,1.0,1161344840 +430,46965,3.5,1161345196 +430,47254,5.0,1172908412 +430,48522,0.5,1172908962 +430,49272,5.0,1172909059 +431,1,4.5,1165547529 +431,5,4.5,1140455425 +431,17,5.0,1165548246 +431,41,5.0,1165548141 +431,47,5.0,1165547618 +431,50,5.0,1165546804 +431,110,5.0,1165547659 +431,150,4.0,1165548458 +431,186,2.5,1140455413 +431,215,5.0,1165548709 +431,223,5.0,1165548086 +431,236,3.0,1140455391 +431,246,4.0,1140455356 +431,247,4.0,1165548015 +431,260,5.0,1140454401 +431,318,5.0,1140454304 +431,337,5.0,1140455213 +431,350,3.0,1140455297 +431,356,4.5,1165548284 +431,357,2.0,1140455245 +431,377,2.0,1140454871 +431,420,3.0,1136308742 +431,432,3.0,1136308770 +431,457,4.5,1165546446 +431,497,5.0,1165548800 +431,520,3.0,1140454291 +431,527,4.5,1165546932 +431,529,4.0,1140455233 +431,587,4.0,1140455281 +431,628,5.0,1140455188 +431,661,3.0,1140454429 +431,832,3.0,1136308727 +431,898,4.5,1165547342 +431,899,4.5,1165547632 +431,902,3.0,1165548721 +431,904,4.0,1140455202 +431,908,5.0,1165546900 +431,910,5.0,1165547354 +431,911,4.0,1165547451 +431,912,4.0,1165546952 +431,914,3.0,1165548366 +431,919,4.0,1165547737 +431,920,1.0,1136308713 +431,923,4.0,1136308702 +431,928,4.5,1165547283 +431,953,5.0,1165547593 +431,955,4.0,1165547762 +431,1036,4.0,1165547564 +431,1050,4.5,1165546697 +431,1059,5.0,1140455259 +431,1060,4.0,1165547956 +431,1084,4.0,1165547756 +431,1090,5.0,1136308809 +431,1097,5.0,1165548753 +431,1103,5.0,1165548069 +431,1104,5.0,1165547422 +431,1188,4.5,1165548882 +431,1193,5.0,1165546856 +431,1196,5.0,1165546316 +431,1197,5.0,1165547041 +431,1198,4.5,1165546302 +431,1204,4.5,1165547107 +431,1206,4.0,1165547779 +431,1207,4.5,1165546937 +431,1208,2.5,1165547158 +431,1210,4.5,1165546493 +431,1217,4.5,1165547049 +431,1219,5.0,1165547126 +431,1221,5.0,1165546882 +431,1224,5.0,1165547256 +431,1225,4.5,1165547220 +431,1228,4.5,1165547205 +431,1235,0.5,1165548008 +431,1240,4.5,1165546482 +431,1242,5.0,1140455171 +431,1246,5.0,1165546535 +431,1247,4.0,1165547316 +431,1250,3.0,1140455060 +431,1252,5.0,1165546955 +431,1258,5.0,1165547627 +431,1259,5.0,1140455002 +431,1265,5.0,1165546558 +431,1270,4.5,1165547749 +431,1278,5.0,1136308820 +431,1288,4.0,1136308794 +431,1291,4.0,1140454975 +431,1299,5.0,1165547268 +431,1302,4.0,1165548856 +431,1307,3.0,1165548695 +431,1357,4.0,1165548562 +431,1358,3.0,1140455024 +431,1376,1.0,1140455113 +431,1387,4.0,1165547832 +431,1394,3.0,1136308749 +431,1407,4.0,1136308721 +431,1411,5.0,1165548507 +431,1466,5.0,1165548191 +431,1485,3.0,1136308781 +431,1517,2.0,1140454234 +431,1635,5.0,1165548208 +431,1639,5.0,1140455096 +431,1653,5.0,1136308762 +431,1682,4.0,1165546613 +431,1704,4.5,1165546406 +431,1719,4.0,1165547635 +431,1784,4.0,1165546629 +431,1801,3.0,1140454565 +431,1873,3.0,1165546702 +431,1912,4.0,1165548134 +431,1945,5.0,1165546975 +431,1953,3.0,1165547470 +431,1954,4.0,1140455038 +431,1955,4.0,1165548787 +431,1956,4.5,1165548378 +431,1961,4.5,1165546475 +431,1968,5.0,1165546586 +431,2000,4.0,1136308735 +431,2004,0.5,1140454602 +431,2010,4.5,1165547495 +431,2011,4.0,1136308690 +431,2012,3.0,1140455141 +431,2019,4.0,1140455076 +431,2020,4.0,1165548187 +431,2028,4.5,1165547419 +431,2085,3.0,1140454543 +431,2114,4.5,1165546682 +431,2174,3.0,1140454814 +431,2231,4.5,1165546667 +431,2248,5.0,1165547711 +431,2268,4.5,1165546555 +431,2291,5.0,1165548755 +431,2324,4.5,1165546428 +431,2329,5.0,1165546947 +431,2336,4.0,1165547907 +431,2369,3.0,1140454580 +431,2395,3.0,1165547947 +431,2396,5.0,1165548643 +431,2406,3.0,1136308826 +431,2502,2.0,1136308831 +431,2571,4.5,1140454924 +431,2599,4.0,1136308801 +431,2617,3.0,1136308806 +431,2640,3.0,1136308791 +431,2692,5.0,1140454376 +431,2700,0.5,1140454844 +431,2728,4.5,1165546395 +431,2762,5.0,1165546361 +431,2797,4.5,1165548899 +431,2858,4.5,1165547074 +431,2863,4.0,1165548515 +431,2908,5.0,1165547981 +431,2918,5.0,1165547568 +431,2959,4.5,1165547245 +431,3044,4.5,1165546669 +431,3052,4.0,1140454784 +431,3071,4.5,1165546582 +431,3095,4.5,1165547580 +431,3113,0.5,1140455724 +431,3114,4.0,1140454828 +431,3246,5.0,1165547923 +431,3252,4.0,1165546689 +431,3260,3.0,1140455699 +431,3359,4.5,1165547308 +431,3361,4.0,1140455679 +431,3469,4.0,1165547019 +431,3481,5.0,1165547673 +431,3545,3.0,1165548724 +431,3578,4.5,1165546539 +431,3751,3.0,1140454886 +431,3785,2.0,1140455737 +431,3793,3.5,1140454743 +431,3893,4.0,1140455486 +431,3897,2.0,1136308773 +431,3916,4.0,1165548638 +431,3949,4.5,1165547506 +431,3967,5.0,1165548172 +431,3978,2.0,1140455546 +431,3994,3.0,1140454946 +431,3996,4.5,1165547456 +431,4011,5.0,1165546431 +431,4014,4.5,1165546657 +431,4016,2.0,1140454470 +431,4041,3.5,1140455472 +431,4054,3.5,1165546283 +431,4223,4.5,1165546678 +431,4226,5.0,1165546824 +431,4239,4.5,1165546727 +431,4262,4.0,1165547951 +431,4306,4.0,1140454774 +431,4326,5.0,1165546460 +431,4351,2.5,1140455503 +431,4641,4.0,1140455457 +431,4701,3.5,1140455515 +431,4823,3.5,1140455534 +431,4846,4.0,1165548779 +431,4880,5.0,1165546660 +431,4886,4.5,1165547400 +431,4890,2.5,1140455554 +431,4963,4.0,1165546596 +431,4973,5.0,1165546944 +431,4993,4.5,1165546337 +431,4995,4.0,1165548170 +431,5064,3.5,1165548739 +431,5103,4.5,1165546653 +431,5135,4.5,1165548315 +431,5349,4.0,1140454902 +431,5377,5.0,1140455324 +431,5418,5.0,1165546549 +431,5445,5.0,1165546664 +431,5481,2.5,1140455402 +431,5812,4.5,1165548480 +431,5952,5.0,1165546340 +431,5989,4.5,1165546525 +431,5995,4.5,1165547115 +431,6218,5.0,1165548843 +431,6281,4.0,1140455377 +431,6333,5.0,1165546470 +431,6377,4.0,1165546381 +431,6539,5.0,1140454322 +431,6708,3.5,1165546622 +431,6711,4.5,1165547823 +431,6776,5.0,1165548051 +431,6787,4.0,1165546811 +431,6796,4.5,1165547306 +431,6852,5.0,1165546969 +431,6870,3.0,1165547686 +431,6874,4.0,1165548044 +431,6932,5.0,1165546418 +431,6942,3.0,1165546647 +431,6953,4.0,1165548425 +431,6986,4.0,1165547552 +431,7079,4.0,1165547587 +431,7139,5.0,1165547188 +431,7153,4.5,1165546323 +431,7361,4.0,1165546922 +431,7386,4.5,1165548823 +431,7438,4.5,1165547828 +431,7572,3.0,1165547729 +431,8360,4.5,1165546610 +431,8464,5.0,1165546478 +431,8530,5.0,1165546319 +431,8636,5.0,1140454343 +431,8645,5.0,1165547022 +431,8665,5.0,1165546641 +431,8784,4.5,1165546448 +431,8873,5.0,1165547603 +431,8958,4.0,1165548143 +431,8961,5.0,1165546888 +431,8970,5.0,1165546403 +431,8981,4.0,1165546732 +431,27721,5.0,1165547426 +431,30707,5.0,1165546386 +431,30749,5.0,1165546306 +431,30812,5.0,1165548464 +431,30850,5.0,1165547848 +431,32587,4.5,1165546520 +431,33794,3.5,1165546330 +431,34072,5.0,1165546516 +431,36517,5.0,1165548095 +431,37733,4.5,1165548611 +431,37741,5.0,1165546916 +431,39183,4.5,1165547445 +431,39292,4.0,1165547006 +431,40583,5.0,1165548259 +431,40819,4.0,1165547362 +431,42004,5.0,1165548828 +431,44191,5.0,1165546466 +431,45722,5.0,1165546735 +432,1,5.0,1271227588 +432,32,5.0,1138382928 +432,47,5.0,1138382869 +432,50,5.0,1138382864 +432,145,4.0,1138381599 +432,150,4.5,1271227581 +432,293,5.0,1138382256 +432,296,5.0,1138382014 +432,318,5.0,1271227572 +432,356,4.0,1271227565 +432,593,5.0,1138382913 +432,780,5.0,1271227591 +432,858,5.0,1138382878 +432,924,3.0,1271227469 +432,1089,5.0,1138382170 +432,1136,4.5,1138382960 +432,1200,4.0,1138382126 +432,1206,1.0,1271227513 +432,1213,3.5,1138382874 +432,1214,5.0,1138382120 +432,1222,4.0,1138382855 +432,1258,4.0,1138382900 +432,1320,3.0,1138381429 +432,1485,3.5,1138381507 +432,1517,4.5,1138385042 +432,1729,5.0,1138382608 +432,1997,4.0,1138381586 +432,2028,5.0,1138382392 +432,2054,4.0,1138381335 +432,2273,4.5,1138382206 +432,2329,5.0,1138381578 +432,2502,4.0,1138381323 +432,2571,5.0,1138382903 +432,2683,4.5,1138385049 +432,2700,4.0,1138381512 +432,2959,5.0,1138382850 +432,3948,4.5,1138382735 +432,3949,5.0,1138382507 +432,4011,5.0,1138382056 +432,4034,4.0,1138381365 +432,4226,5.0,1138382858 +432,4235,5.0,1138382289 +432,4262,5.0,1138382228 +432,4701,4.5,1138382210 +432,5170,4.0,1138382765 +432,5225,4.0,1138382637 +432,5418,4.5,1138381659 +432,5445,5.0,1138381357 +432,5481,5.0,1138382781 +432,5995,5.0,1138382600 +432,6016,3.0,1138382525 +432,6040,0.5,1138382350 +432,6188,3.5,1138382326 +432,6708,5.0,1138382077 +432,6796,4.5,1138382917 +432,6874,5.0,1138382151 +432,7153,5.0,1138382935 +432,7438,5.0,1138382153 +432,32587,5.0,1138382492 +432,33166,4.0,1138382581 +432,48780,5.0,1271227689 +432,68157,5.0,1271227668 +433,1,4.5,1417930541 +433,6,5.0,1417930660 +433,11,1.5,1417930769 +433,16,4.5,1417930766 +433,19,2.5,1417930709 +433,32,4.0,1417930548 +433,36,3.0,1417930691 +433,47,5.0,1417930576 +433,50,3.5,1417930567 +433,104,3.0,1417930773 +433,111,5.0,1417930670 +433,173,1.0,1417930885 +433,231,4.5,1417930586 +433,235,4.5,1417930826 +433,260,4.0,1417929790 +433,293,3.5,1417930666 +433,296,5.0,1417930528 +433,300,4.0,1417930730 +433,318,4.0,1417929784 +433,337,3.0,1417930808 +433,356,4.0,1417930530 +433,380,3.5,1417930564 +433,442,1.5,1417930771 +433,527,5.0,1417930561 +433,555,4.5,1417930860 +433,589,4.5,1417930543 +433,592,4.0,1417930553 +433,593,4.5,1417930533 +433,608,5.0,1417930573 +433,784,2.0,1417930870 +433,858,5.0,1417930577 +433,924,5.0,1417930662 +433,1036,4.5,1417930619 +433,1073,4.0,1417930609 +433,1079,4.0,1417930757 +433,1090,3.0,1417930847 +433,1147,4.0,1417929794 +433,1193,5.0,1417930614 +433,1196,5.0,1417929792 +433,1198,4.5,1417929796 +433,1199,3.5,1417931186 +433,1200,4.5,1417930634 +433,1201,5.0,1417930916 +433,1203,5.0,1417931280 +433,1206,4.5,1417930674 +433,1213,5.0,1417930638 +433,1214,4.5,1417930607 +433,1222,5.0,1417930702 +433,1225,4.0,1417930734 +433,1240,5.0,1417930596 +433,1242,2.0,1417931207 +433,1265,5.0,1417930602 +433,1266,4.0,1417930921 +433,1270,5.0,1417930574 +433,1358,4.5,1417930940 +433,1387,4.0,1417930719 +433,1393,3.5,1417930697 +433,1485,3.0,1417930800 +433,1573,3.5,1417930765 +433,1617,4.0,1417930625 +433,1673,5.0,1417930938 +433,1682,4.5,1417930679 +433,1777,3.5,1417930948 +433,1784,3.0,1417930700 +433,1923,3.0,1417930668 +433,1961,4.0,1417930636 +433,1968,4.0,1417930694 +433,2011,4.0,1417930754 +433,2194,2.5,1417930849 +433,2291,3.5,1417930704 +433,2329,3.0,1417931291 +433,2395,4.5,1417930933 +433,2571,4.0,1417930552 +433,2640,3.0,1417930844 +433,2657,4.0,1417930925 +433,2683,3.5,1417930654 +433,2700,4.0,1417930810 +433,2706,3.5,1417930682 +433,2712,5.0,1417930862 +433,2716,4.0,1417930622 +433,2791,3.5,1417930762 +433,2797,3.5,1417930751 +433,2804,4.0,1417931200 +433,2858,4.0,1417930568 +433,2985,3.5,1417930928 +433,2987,5.0,1417930717 +433,3052,4.5,1417930838 +433,3175,3.0,1417930931 +433,3452,3.0,1417930392 +433,3535,4.0,1417930042 +433,3578,3.0,1417929821 +433,3793,3.0,1417929826 +433,3897,5.0,1417929842 +433,3949,4.0,1417929939 +433,3994,3.5,1417929943 +433,4015,3.0,1417930346 +433,4027,4.5,1417929847 +433,4226,2.5,1417929825 +433,4235,4.0,1417930301 +433,4306,4.0,1417929818 +433,4388,2.0,1417930472 +433,4641,5.0,1417930245 +433,4718,3.0,1417930046 +433,4734,4.0,1417930224 +433,4776,3.0,1417930069 +433,4848,4.0,1417930018 +433,4878,4.0,1417930782 +433,4886,4.0,1417929834 +433,4979,5.0,1417929965 +433,4993,5.0,1417929815 +433,5010,2.5,1417929993 +433,5060,3.5,1417931199 +433,5349,3.5,1417929840 +433,5418,3.5,1417929857 +433,5445,3.5,1417929832 +433,5481,2.5,1417930054 +433,5618,4.5,1417929958 +433,5810,3.0,1417930349 +433,5902,5.0,1417930015 +433,5952,4.5,1417929816 +433,5954,4.5,1417930371 +433,5995,4.0,1417929990 +433,6016,5.0,1417929962 +433,6287,2.5,1417930427 +433,6377,4.0,1417929836 +433,6708,4.5,1417930362 +433,6711,4.0,1417930877 +433,6870,3.5,1417930064 +433,6874,4.0,1417929858 +433,6936,3.5,1417930401 +433,6953,2.0,1417930250 +433,6957,3.0,1417930467 +433,7022,4.5,1417930375 +433,7153,5.0,1417929823 +433,7361,4.5,1417929863 +433,7438,3.0,1417930785 +433,7451,4.0,1417930402 +433,8376,3.5,1417930219 +433,8528,3.5,1417930329 +433,8636,4.0,1417930892 +433,8641,4.5,1417930336 +433,8665,3.0,1417929947 +433,8961,4.5,1417929846 +433,27773,5.0,1417930244 +433,30707,2.5,1417930031 +433,30810,4.5,1417930314 +433,31410,3.5,1417930455 +433,32587,4.0,1417929934 +433,33166,2.0,1417930033 +433,33794,3.5,1417930804 +433,34150,1.5,1417930477 +433,34162,3.0,1417930191 +433,35836,4.5,1417930000 +433,38061,4.5,1417930357 +433,39183,4.5,1417930299 +433,45499,2.5,1417930241 +433,46578,3.5,1417929979 +433,48516,4.5,1417929941 +433,48774,4.5,1417930038 +433,50872,4.0,1417930056 +433,51540,4.5,1417930460 +433,52722,3.5,1417930413 +433,52973,3.5,1417930355 +433,53996,3.0,1417930281 +433,54272,3.5,1417930317 +433,54503,5.0,1417930206 +433,54997,3.5,1417930369 +433,55820,5.0,1417929994 +433,56782,5.0,1417930338 +433,58559,4.5,1417929850 +433,58998,4.5,1417930481 +433,59369,3.5,1417930374 +433,59784,3.0,1417930398 +433,60069,3.5,1417929975 +433,61323,4.5,1417930431 +433,63082,1.0,1417930035 +433,64614,2.5,1417930237 +433,65188,4.5,1417929781 +433,68157,4.5,1417930021 +433,68358,3.5,1417930177 +433,68954,3.0,1417930039 +433,69122,3.5,1417930174 +433,69481,4.0,1417930456 +433,69757,4.0,1417930248 +433,71535,3.0,1417930332 +433,76251,3.5,1417930384 +433,77561,3.0,1417930436 +433,78499,4.5,1417930311 +433,79132,2.5,1417929960 +433,79702,4.5,1417930484 +433,80463,5.0,1417930350 +433,81591,5.0,1417930341 +433,81845,3.5,1417930334 +433,89745,4.0,1417930405 +433,91529,0.5,1417930418 +433,96829,4.0,1417931275 +433,104069,3.5,1417931277 +433,109487,4.5,1417931287 +434,1,4.0,886372746 +434,6,4.0,886373053 +434,17,5.0,886372794 +434,25,5.0,886372794 +434,28,4.0,886374463 +434,32,4.0,886372696 +434,34,4.0,886374222 +434,36,5.0,886372696 +434,50,5.0,886374081 +434,52,4.0,886373239 +434,58,5.0,886372899 +434,74,2.0,886373792 +434,78,4.0,886373239 +434,79,1.0,886373553 +434,85,4.0,886373101 +434,94,3.0,886373388 +434,95,3.0,886373186 +434,100,3.0,886373835 +434,101,5.0,886373634 +434,103,3.0,886373489 +434,107,2.0,886373716 +434,111,4.0,886376254 +434,141,1.0,886372899 +434,150,3.0,886374328 +434,156,2.0,886373442 +434,162,4.0,886374286 +434,176,4.0,886374286 +434,194,4.0,886375700 +434,213,4.0,886375433 +434,229,4.0,886375642 +434,246,4.0,886374516 +434,260,2.0,886374845 +434,272,4.0,886376510 +434,280,4.0,886376510 +434,281,5.0,886375700 +434,296,5.0,886376002 +434,299,1.0,886374081 +434,300,5.0,886374463 +434,318,4.0,886374328 +434,348,4.0,886376348 +434,356,2.0,886376312 +434,412,4.0,886376570 +434,428,4.0,886374564 +434,431,4.0,886376444 +434,457,5.0,886374515 +434,469,2.0,886376180 +434,475,5.0,886375478 +434,494,3.0,886372696 +434,497,4.0,886376394 +434,501,1.0,886376050 +434,508,2.0,886376002 +434,509,1.0,886376812 +434,515,5.0,886376002 +434,527,4.0,886376095 +434,534,4.0,886376866 +434,535,4.0,886375700 +434,538,4.0,886376254 +434,589,4.0,886376866 +434,590,1.0,886376254 +434,593,3.0,886374564 +434,594,4.0,886375433 +434,595,5.0,886374784 +434,599,4.0,886374463 +434,608,4.0,886372696 +434,628,3.0,886373053 +434,648,4.0,886373345 +434,661,4.0,886373345 +434,679,4.0,886375736 +434,707,3.0,886373442 +434,728,4.0,886372946 +434,733,4.0,886372946 +434,745,5.0,886374960 +434,750,4.0,886375433 +434,778,4.0,886373053 +434,780,1.0,886373345 +434,783,4.0,886373673 +434,785,1.0,886373101 +434,786,3.0,886373345 +434,800,4.0,886373145 +434,804,4.0,886373442 +434,805,2.0,886375281 +434,806,1.0,886373888 +434,816,3.0,886373716 +434,832,4.0,886373053 +434,838,5.0,886373053 +434,848,4.0,886373053 +434,852,4.0,886372850 +434,858,5.0,886374713 +434,866,4.0,886372990 +434,893,5.0,886372990 +434,904,4.0,886375478 +434,912,5.0,886374784 +434,913,5.0,886375433 +434,923,5.0,886374286 +434,953,3.0,886376613 +434,971,4.0,886375774 +434,986,4.0,895845222 +434,991,4.0,886372946 +434,994,5.0,886373053 +434,999,3.0,886372794 +434,1003,2.0,886373101 +434,1023,4.0,886374222 +434,1034,4.0,886372899 +434,1035,4.0,886374328 +434,1036,4.0,886374713 +434,1041,4.0,886372746 +434,1042,3.0,886372850 +434,1047,2.0,886373388 +434,1050,5.0,889302802 +434,1057,4.0,889302146 +434,1077,5.0,886375598 +434,1094,4.0,886375864 +434,1096,4.0,886376613 +434,1097,2.0,886374637 +434,1148,5.0,886374713 +434,1171,3.0,886376570 +434,1183,4.0,886374960 +434,1185,4.0,886376180 +434,1188,4.0,886374516 +434,1189,4.0,886375598 +434,1193,3.0,886375598 +434,1198,3.0,886375433 +434,1203,4.0,886376510 +434,1206,4.0,886376131 +434,1207,4.0,886374784 +434,1208,4.0,886376002 +434,1210,2.0,886375147 +434,1212,4.0,886374637 +434,1213,4.0,886376095 +434,1214,4.0,886374784 +434,1221,5.0,886376866 +434,1223,4.0,886374784 +434,1224,4.0,886376095 +434,1225,5.0,886374515 +434,1226,4.0,886374222 +434,1228,4.0,886374564 +434,1230,5.0,886375828 +434,1231,4.0,886374784 +434,1233,4.0,886375053 +434,1234,2.0,886375828 +434,1240,4.0,886375642 +434,1242,3.0,886376312 +434,1244,4.0,886376613 +434,1250,4.0,886374463 +434,1252,5.0,886376095 +434,1254,4.0,886374222 +434,1256,5.0,886376866 +434,1263,4.0,886375700 +434,1266,5.0,886374784 +434,1270,4.0,886374713 +434,1278,4.0,886374286 +434,1285,4.0,886376613 +434,1287,5.0,886374564 +434,1288,4.0,886375478 +434,1292,4.0,886376613 +434,1293,2.0,886376180 +434,1300,3.0,886376444 +434,1303,4.0,886374329 +434,1304,4.0,886375828 +434,1357,5.0,886374081 +434,1387,4.0,886376131 +434,1393,4.0,886372946 +434,1394,4.0,886376002 +434,1399,4.0,886373145 +434,1404,2.0,886375233 +434,1407,3.0,886372990 +434,1411,5.0,886375598 +434,1414,3.0,889302287 +434,1416,2.0,889302014 +434,1466,5.0,886375090 +434,1488,2.0,889302498 +434,1527,1.0,886374960 +434,1569,2.0,886374845 +434,1573,5.0,886375000 +434,1609,3.0,889302892 +434,1614,1.0,889301971 +434,1617,5.0,886372637 +434,1625,1.0,889302014 +434,1641,4.0,910599899 +434,1645,4.0,889301913 +434,1665,3.0,889302091 +434,1670,4.0,910599803 +434,1693,5.0,889302203 +434,1719,5.0,889301913 +434,1721,2.0,910599899 +434,1729,4.0,889301971 +434,1732,4.0,910599611 +434,1748,3.0,910599804 +434,1834,4.0,910599803 +434,1875,4.0,910599108 +434,2108,4.0,910599899 +434,2952,4.0,910599852 +435,32,5.0,891508567 +435,260,5.0,891508282 +435,527,4.0,891508246 +435,589,5.0,891508440 +435,593,4.0,891508567 +435,720,5.0,891508321 +435,750,5.0,891508160 +435,778,3.0,891508001 +435,924,4.0,891508361 +435,1080,4.0,891508440 +435,1127,4.0,891508084 +435,1175,4.0,891508487 +435,1196,5.0,891508399 +435,1210,5.0,891508361 +435,1223,5.0,891508246 +435,1230,3.0,891508440 +435,1246,4.0,891508084 +435,1348,4.0,891508321 +435,1425,4.0,891508001 +435,1566,3.0,891508001 +435,1580,5.0,891508001 +435,1721,4.0,891508001 +435,1722,3.0,891508001 +436,58,4.0,941458109 +436,111,4.0,941457768 +436,334,4.0,941458348 +436,593,2.0,941458253 +436,608,5.0,941457831 +436,750,5.0,941456330 +436,755,2.0,941458348 +436,898,4.0,941455779 +436,904,5.0,941457262 +436,909,5.0,941457713 +436,910,5.0,941457351 +436,912,4.0,941456162 +436,916,3.0,941455855 +436,919,3.0,941457995 +436,923,5.0,941456205 +436,1084,4.0,941456082 +436,1104,5.0,941457006 +436,1132,3.0,941457885 +436,1183,4.0,941458179 +436,1203,5.0,941458109 +436,1206,4.0,941456243 +436,1208,4.0,941457885 +436,1219,5.0,941455408 +436,1224,5.0,941456732 +436,1225,5.0,941457713 +436,1230,5.0,941456423 +436,1233,4.0,941457768 +436,1244,4.0,941456464 +436,1247,5.0,941456599 +436,1250,5.0,941457885 +436,1251,5.0,941457995 +436,1283,5.0,941456802 +436,1411,3.0,941456657 +436,1669,4.0,941457092 +436,1834,3.0,941458253 +436,1939,5.0,941458109 +436,1940,4.0,941458052 +436,1941,5.0,941456657 +436,1944,5.0,941457713 +436,1945,5.0,941456961 +436,1953,4.0,941456541 +436,1955,4.0,941458348 +436,1964,4.0,941457831 +436,2019,5.0,941457713 +436,2067,4.0,941458052 +436,2068,3.0,941458348 +436,2131,5.0,941457417 +436,2132,5.0,941455478 +436,2208,4.0,941455626 +436,2313,4.0,941457831 +436,2351,5.0,941455530 +436,2573,5.0,941457092 +436,2776,3.0,941454850 +436,2820,5.0,941456657 +436,2829,1.0,941455110 +436,2858,3.0,941454850 +436,2871,4.0,941456292 +436,2886,1.0,941455182 +436,2894,1.0,941455855 +436,4424,5.0,941458179 +436,4970,3.0,941455993 +436,6918,5.0,941457831 +437,1,4.0,831693610 +437,48,3.0,831691596 +437,150,5.0,831691372 +437,163,3.0,831691989 +437,208,1.0,831691477 +437,232,5.0,831692018 +437,239,2.0,831693584 +437,246,4.0,831691596 +437,296,5.0,831691373 +437,329,3.0,831691462 +437,362,3.0,831692363 +437,364,5.0,831692485 +437,380,4.0,831691373 +437,440,3.0,831692227 +437,457,4.0,831692127 +437,551,4.0,831692252 +437,588,4.0,831691414 +437,590,4.0,831691372 +437,592,3.0,831691372 +437,595,5.0,831691445 +437,610,3.0,831693571 +437,616,3.0,831693610 +437,661,3.0,831693571 +437,709,3.0,831693571 +438,50,5.0,1472550855 +438,296,5.0,1472550892 +438,318,5.0,1472550853 +438,527,4.5,1472550861 +438,923,4.0,1472551016 +438,1089,4.5,1472550997 +438,1193,4.0,1472550988 +438,1682,4.5,1472551045 +438,4993,4.0,1472550922 +438,27773,4.5,1472550927 +438,48516,4.0,1472550918 +438,51662,4.0,1472551032 +438,79132,5.0,1472550905 +438,92259,4.0,1472550899 +438,99114,4.5,1472550939 +438,106766,4.0,1472551097 +438,109487,5.0,1472551008 +438,112552,4.5,1472551083 +438,122904,3.5,1472551042 +438,152081,4.0,1472550878 +439,34,1.0,1041114896 +439,39,4.0,1041114896 +439,45,4.0,1041114934 +439,125,3.0,1041114960 +439,185,3.0,1041114690 +439,187,2.0,1041115023 +439,196,3.0,1041114546 +439,198,4.0,1041114491 +439,223,4.0,1041114960 +439,235,4.0,1041114934 +439,260,2.0,1041114200 +439,316,4.0,1041114590 +439,318,3.0,1041113319 +439,327,3.0,1041114645 +439,435,1.0,1041114690 +439,440,2.0,1041115036 +439,442,3.0,1041114526 +439,465,3.0,1041113409 +439,480,3.0,1041114242 +439,527,3.0,1041113283 +439,541,3.0,1041114267 +439,588,3.0,1041115006 +439,589,4.0,1041114223 +439,593,5.0,1041113266 +439,608,4.0,1041113283 +439,671,3.0,1041114876 +439,674,2.0,1041114505 +439,748,3.0,1041114613 +439,780,3.0,1041114526 +439,788,3.0,1041114645 +439,830,3.0,1041021138 +439,858,5.0,1041113147 +439,917,3.0,1041113108 +439,919,3.0,1041113044 +439,920,5.0,1041114075 +439,924,2.0,1041114200 +439,926,5.0,1041113496 +439,955,4.0,1041113063 +439,968,4.0,1041114393 +439,971,3.0,1041113240 +439,1019,2.0,1041114267 +439,1079,3.0,1041115125 +439,1081,4.0,1041115325 +439,1096,5.0,1041021138 +439,1127,4.0,1041114393 +439,1135,3.0,1041115416 +439,1196,5.0,1041113283 +439,1200,4.0,1041114267 +439,1206,2.0,1041114242 +439,1207,4.0,1041113496 +439,1210,4.0,1041021138 +439,1214,4.0,1041114242 +439,1215,2.0,1041114223 +439,1221,5.0,1041113190 +439,1257,3.0,1041115211 +439,1259,3.0,1041114121 +439,1265,4.0,1041114852 +439,1270,4.0,1041021089 +439,1307,4.0,1041115080 +439,1320,3.0,1041114664 +439,1356,3.0,1041114433 +439,1371,1.0,1041114491 +439,1372,4.0,1041114433 +439,1374,4.0,1041114409 +439,1375,2.0,1041114590 +439,1376,4.0,1041114448 +439,1391,4.0,1041114613 +439,1394,2.0,1041115103 +439,1396,3.0,1041114301 +439,1449,3.0,1041114984 +439,1527,3.0,1041114334 +439,1544,2.0,1041114613 +439,1580,2.0,1041114301 +439,1584,4.0,1041114316 +439,1590,2.0,1041114715 +439,1653,3.0,1041114301 +439,1674,4.0,1041114141 +439,1676,1.0,1041114526 +439,1734,5.0,1041113147 +439,1748,3.0,1041114223 +439,1784,2.0,1041114896 +439,1909,4.0,1041114334 +439,1914,3.0,1041115023 +439,1923,4.0,1041115006 +439,1962,3.0,1041114121 +439,1968,4.0,1041115125 +439,2000,4.0,1041115139 +439,2003,3.0,1041115375 +439,2010,4.0,1041114223 +439,2011,2.0,1041114393 +439,2012,1.0,1041114433 +439,2028,2.0,1041113391 +439,2034,3.0,1041114546 +439,2054,3.0,1041114645 +439,2081,3.0,1041115258 +439,2094,3.0,1041114465 +439,2100,3.0,1041115346 +439,2133,4.0,1041115346 +439,2134,3.0,1041115305 +439,2141,4.0,1041115283 +439,2144,4.0,1041115244 +439,2150,3.0,1041115305 +439,2174,3.0,1041115163 +439,2245,3.0,1041115305 +439,2301,3.0,1041115397 +439,2318,4.0,1041114876 +439,2321,2.0,1041114914 +439,2324,4.0,1041113319 +439,2329,4.0,1041113409 +439,2366,2.0,1041113063 +439,2369,4.0,1041115375 +439,2406,3.0,1041115346 +439,2407,3.0,1041115346 +439,2423,3.0,1041115188 +439,2463,3.0,1041115305 +439,2469,4.0,1041115397 +439,2470,3.0,1041115375 +439,2502,4.0,1041114852 +439,2599,3.0,1041114876 +439,2628,4.0,1041021114 +439,2640,3.0,1041114349 +439,2642,1.0,1041114715 +439,2648,3.0,1041113077 +439,2660,4.0,1041114200 +439,2668,3.0,1041114546 +439,2699,3.0,1041114491 +439,2700,4.0,1041114876 +439,2716,3.0,1041115211 +439,2746,3.0,1041115346 +439,2759,3.0,1041115006 +439,2791,3.0,1041115103 +439,2797,3.0,1041115230 +439,2804,4.0,1041115062 +439,2858,3.0,1041113227 +439,2916,3.0,1041114267 +439,2918,4.0,1041115103 +439,2926,2.0,1041115283 +439,2968,1.0,1041114393 +439,2997,4.0,1041114838 +439,3033,4.0,1041114546 +439,3060,3.0,1041114960 +439,3067,4.0,1041115062 +439,3072,4.0,1041115188 +439,3095,2.0,1041114121 +439,3160,2.0,1041114095 +439,3253,3.0,1041114934 +439,3269,2.0,1041114433 +439,3300,3.0,1041114465 +439,3317,4.0,1041115499 +439,3354,1.0,1041114733 +439,3448,3.0,1041115283 +439,3481,3.0,1041115479 +439,3515,2.0,1041115586 +439,3526,3.0,1041115125 +439,3527,3.0,1041114393 +439,3535,2.0,1041115516 +439,3548,4.0,1041113161 +439,3556,4.0,1041115541 +439,3591,3.0,1041115375 +439,3608,4.0,1041115080 +439,3617,2.0,1041115643 +439,3697,1.0,1041114564 +439,3704,3.0,1041114526 +439,3785,3.0,1041115615 +439,3793,1.0,1041114301 +439,3821,2.0,1041115710 +439,3827,2.0,1041114590 +439,3848,4.0,1041021089 +439,3858,2.0,1041115726 +439,3863,1.0,1041114409 +439,3868,4.0,1041115163 +439,3882,3.0,1041115615 +439,3893,2.0,1041115572 +439,3897,3.0,1041113351 +439,3900,3.0,1041021089 +439,3911,4.0,1041115479 +439,3948,3.0,1041115643 +439,3959,1.0,1041114393 +439,3981,1.0,1041114564 +439,3988,1.0,1041115615 +439,3994,4.0,1041114393 +439,4002,3.0,1041115211 +439,4015,4.0,1041115744 +439,4025,2.0,1041115726 +439,4027,4.0,1041115479 +439,4034,3.0,1041114141 +439,4043,3.0,1041113509 +439,4046,3.0,1041114075 +439,4048,3.0,1041114095 +439,4117,3.0,1041114767 +439,4121,3.0,1041115416 +439,4161,4.0,1041021138 +439,4291,2.0,1041115416 +439,4308,4.0,1041113471 +439,4333,2.0,1041115416 +439,4343,3.0,1041114564 +439,4370,3.0,1041114349 +439,4478,3.0,1041115230 +439,4489,4.0,1041115325 +439,4501,3.0,1041115397 +439,4529,2.0,1041115397 +439,4544,1.0,1041114590 +439,4545,3.0,1041114590 +439,4571,4.0,1041115163 +439,4618,3.0,1041114733 +439,4623,3.0,1041115305 +439,4641,2.0,1041115461 +439,4643,4.0,1041114491 +439,4649,1.0,1041115695 +439,4652,1.0,1041114664 +439,4662,3.0,1041115211 +439,4678,3.0,1041115325 +439,4679,3.0,1041115283 +439,4718,1.0,1041115541 +439,4722,4.0,1041115660 +439,4849,3.0,1041115744 +439,4867,3.0,1041115695 +439,4874,2.0,1041114491 +439,4890,3.0,1041115643 +439,4956,3.0,1041114767 +439,4963,4.0,1041115499 +439,4979,4.0,1041115516 +439,5013,2.0,1041115499 +439,5015,5.0,1041113375 +439,5026,4.0,1041112767 +439,5074,3.0,1041115572 +439,5095,4.0,1041112781 +439,5171,1.0,1041114626 +439,5225,5.0,1041112729 +439,5255,4.0,1041112842 +439,5279,2.0,1041114934 +439,5299,1.0,1041115499 +439,5312,4.0,1041112797 +439,5349,3.0,1041112749 +439,5377,4.0,1041113471 +439,5378,4.0,1041112767 +439,5387,2.0,1041112842 +439,5419,2.0,1041112811 +439,5445,4.0,1041112729 +439,5449,1.0,1041112842 +439,5481,3.0,1041112797 +439,5500,3.0,1041115325 +439,5506,3.0,1041021089 +439,5577,3.0,1041115586 +439,5620,2.0,1041112970 +439,5625,3.0,1041112924 +439,5630,4.0,1041112905 +439,5666,1.0,1041112970 +439,5668,5.0,1041112970 +439,5675,3.0,1041113002 +439,5679,5.0,1041112949 +439,5780,3.0,1041115283 +439,5791,5.0,1041112924 +439,5810,4.0,1041112924 +439,5816,3.0,1041112877 +439,5872,3.0,1041112936 +439,5876,4.0,1041112905 +439,5902,4.0,1041112877 +439,5943,1.0,1041115676 +439,5956,5.0,1041021089 +440,1,4.0,835337057 +440,2,4.0,835337237 +440,32,3.0,835337099 +440,47,4.0,835337079 +440,50,4.0,835337099 +440,110,5.0,835337057 +440,150,5.0,835336935 +440,165,4.0,835336972 +440,225,1.0,835337079 +440,273,3.0,835337370 +440,288,3.0,835337057 +440,293,5.0,835337237 +440,296,3.0,835336936 +440,316,4.0,835336996 +440,318,5.0,835336996 +440,344,1.0,835336972 +440,353,3.0,835337417 +440,356,4.0,835337200 +440,364,5.0,835337121 +440,367,3.0,835337181 +440,370,4.0,835337586 +440,374,3.0,835337795 +440,377,4.0,835337294 +440,380,4.0,835336937 +440,442,2.0,835337309 +440,466,4.0,835337608 +440,471,3.0,835337519 +440,474,4.0,835337447 +440,480,5.0,835337216 +440,485,4.0,835337573 +440,491,5.0,835337598 +440,553,3.0,835337200 +440,586,3.0,835337391 +440,587,3.0,835337370 +440,588,3.0,835336972 +440,589,5.0,835337275 +440,590,5.0,835336934 +440,592,3.0,835336934 +440,593,4.0,835337038 +440,595,3.0,835336997 +441,58,5.0,1079561308 +441,59,5.0,1048091888 +441,80,4.5,1055274300 +441,94,4.5,1078145577 +441,110,3.0,1078145992 +441,150,3.5,1078145987 +441,156,4.0,1048092031 +441,164,4.5,1079562066 +441,194,4.5,1053624079 +441,213,5.0,1048091840 +441,223,4.5,1079561932 +441,260,5.0,1078145785 +441,296,4.5,1078145955 +441,318,3.5,1078146006 +441,345,4.5,1079561964 +441,356,3.5,1078145967 +441,457,3.5,1078145974 +441,475,4.5,1055273872 +441,541,4.0,1079562098 +441,581,5.0,1055273727 +441,587,1.0,1055274068 +441,590,3.5,1078145979 +441,592,2.5,1078145983 +441,593,4.0,1078145960 +441,858,4.5,1055273880 +441,913,3.5,1079561110 +441,1049,2.5,1078145899 +441,1094,4.0,1084313016 +441,1101,3.0,1055172641 +441,1147,3.0,1055273558 +441,1172,5.0,1048091084 +441,1183,3.5,1084312997 +441,1193,4.5,1053623849 +441,1196,4.5,1078145804 +441,1197,3.5,1078145792 +441,1198,5.0,1048092142 +441,1203,3.5,1055274130 +441,1204,4.5,1078145809 +441,1208,4.0,1084313048 +441,1210,4.0,1078146014 +441,1220,3.5,1084312933 +441,1235,4.5,1053623871 +441,1242,4.0,1084313046 +441,1259,2.5,1078145798 +441,1262,4.0,1084313034 +441,1270,3.0,1048090962 +441,1396,3.5,1055274102 +441,1446,5.0,1048091927 +441,1552,2.5,1055173947 +441,1635,3.5,1055274107 +441,1641,4.5,1079561951 +441,1721,0.5,1055274051 +441,1732,4.5,1079561130 +441,1759,4.5,1055273793 +441,1827,5.0,1048092172 +441,1968,4.0,1048091140 +441,2028,2.0,1048090990 +441,2064,5.0,1048092243 +441,2067,4.0,1084313007 +441,2324,4.5,1079561829 +441,2395,4.0,1079561942 +441,2542,4.5,1079561923 +441,2571,4.0,1055274566 +441,2618,4.5,1079561707 +441,2700,1.0,1079562012 +441,2858,4.0,1078145551 +441,2987,3.5,1079562108 +441,3060,4.5,1079561948 +441,3178,4.5,1078156315 +441,3246,4.0,1079561288 +441,3408,3.5,1079562575 +441,3476,3.0,1079561149 +441,3578,3.0,1079562523 +441,3677,4.5,1053624117 +441,3751,4.5,1056029634 +441,3897,4.0,1079562397 +441,3910,3.5,1079561510 +441,3911,4.5,1053623839 +441,3967,4.0,1048091800 +441,3992,4.0,1079561611 +441,4008,4.0,1084313000 +441,4021,4.5,1053623753 +441,4027,4.0,1048091192 +441,4034,3.5,1079562389 +441,4226,5.0,1048091589 +441,4235,4.0,1055273702 +441,4326,4.5,1055172791 +441,4384,5.0,1079561618 +441,4701,2.5,1055172672 +441,4903,3.0,1048091819 +441,4967,3.0,1048091627 +441,4969,3.5,1079561105 +441,4973,4.0,1048091577 +441,4979,4.0,1048091819 +441,4993,5.0,1048091608 +441,4995,4.5,1079562473 +441,5015,4.0,1079561524 +441,5083,4.0,1048091122 +441,5135,2.0,1048091800 +441,5225,4.0,1048091577 +441,5365,4.0,1055274124 +441,5377,2.5,1079562485 +441,5391,4.5,1079561593 +441,5446,4.0,1079562412 +441,5621,1.0,1055274056 +441,5669,4.0,1048092203 +441,5673,4.0,1079561527 +441,5876,4.5,1079562430 +441,5952,4.0,1048091577 +441,5989,4.0,1079562416 +441,6003,5.0,1078145859 +441,6016,5.0,1055273605 +441,6059,3.0,1053623908 +441,6219,0.5,1055274221 +441,6373,3.0,1055274249 +441,6552,4.0,1079561654 +441,6565,3.5,1079562498 +441,6787,4.5,1079561241 +441,6874,4.0,1084312918 +441,7303,4.0,1084313053 +442,1,4.0,1227920032 +442,2,4.0,1227969149 +442,3,4.5,1227969381 +442,16,4.5,1227969295 +442,25,1.0,1227921695 +442,34,3.5,1227920128 +442,36,4.5,1227969086 +442,47,4.5,1227920086 +442,65,1.0,1227917301 +442,95,1.0,1227969045 +442,104,4.5,1227969247 +442,110,4.5,1227918685 +442,141,4.5,1227969028 +442,150,4.0,1227918270 +442,153,4.0,1227968858 +442,161,4.5,1227969017 +442,208,2.5,1227968959 +442,231,4.5,1227921550 +442,260,5.0,1227919947 +442,266,4.5,1227969287 +442,288,4.5,1227969060 +442,296,4.5,1227919572 +442,318,4.5,1227917878 +442,344,4.0,1227968833 +442,349,4.5,1227968875 +442,356,5.0,1227918415 +442,364,4.5,1227967474 +442,367,4.5,1227968910 +442,377,4.0,1227920068 +442,380,4.0,1227921487 +442,381,4.0,1227917252 +442,454,4.5,1227968982 +442,457,4.5,1227920023 +442,474,4.0,1227969200 +442,480,4.5,1227919841 +442,481,4.0,1227917247 +442,491,3.5,1227917217 +442,500,4.5,1227920121 +442,527,4.5,1227918447 +442,539,4.5,1227920248 +442,553,5.0,1227969354 +442,586,4.0,1227969014 +442,587,4.0,1227968922 +442,588,4.5,1227967485 +442,589,4.0,1227919809 +442,590,4.0,1227919889 +442,592,4.5,1227920028 +442,593,5.0,1227918784 +442,595,4.0,1227920095 +442,597,4.5,1227920112 +442,608,4.0,1227920058 +442,733,4.0,1227920117 +442,736,3.5,1227968867 +442,743,3.0,1227917157 +442,765,3.0,1227917320 +442,780,3.5,1227920036 +442,858,4.5,1227918338 +442,919,5.0,1227921050 +442,1022,4.0,1227967466 +442,1029,4.0,1227967555 +442,1035,4.5,1227969471 +442,1036,4.5,1227968990 +442,1049,4.5,1227917256 +442,1073,4.5,1227968926 +442,1080,5.0,1227969230 +442,1089,4.5,1227920812 +442,1090,4.5,1227919379 +442,1097,4.5,1227968903 +442,1136,4.5,1227968969 +442,1196,4.5,1227920064 +442,1197,4.5,1227968919 +442,1198,4.5,1227918592 +442,1200,4.5,1227920919 +442,1208,4.5,1227917678 +442,1210,4.5,1227920041 +442,1213,5.0,1227919679 +442,1214,5.0,1227920242 +442,1219,4.5,1227920866 +442,1220,4.5,1227969212 +442,1221,4.5,1227919674 +442,1222,4.5,1227919369 +442,1231,4.0,1227918712 +442,1233,4.0,1227919643 +442,1240,4.5,1227919806 +442,1250,4.5,1227918582 +442,1258,4.5,1227918181 +442,1265,4.5,1227968943 +442,1270,4.0,1227920083 +442,1282,3.5,1227967469 +442,1288,5.0,1227921029 +442,1291,4.5,1227968974 +442,1307,5.0,1227969136 +442,1378,4.5,1227917977 +442,1380,4.5,1227969374 +442,1387,4.0,1227969164 +442,1393,4.5,1227969119 +442,1394,5.0,1227969403 +442,1409,3.5,1227917209 +442,1485,4.5,1227969307 +442,1500,5.0,1227917839 +442,1517,4.5,1227969131 +442,1552,4.5,1227969465 +442,1573,0.5,1227969273 +442,1580,4.5,1227968895 +442,1587,1.0,1227917194 +442,1610,4.5,1227918261 +442,1663,4.5,1227919440 +442,1704,4.5,1227920212 +442,1721,4.0,1227968898 +442,1784,4.5,1227918165 +442,1805,4.0,1227918762 +442,1917,3.5,1227920222 +442,1923,5.0,1227920217 +442,1957,4.5,1227917162 +442,1959,4.5,1227917274 +442,1961,5.0,1227969070 +442,1968,5.0,1227969171 +442,1997,5.0,1227920937 +442,2000,4.5,1227969327 +442,2028,5.0,1227968295 +442,2078,4.5,1227967451 +442,2081,4.5,1227967576 +442,2115,5.0,1227969240 +442,2126,0.5,1227917311 +442,2144,4.0,1227918008 +442,2174,4.5,1227969220 +442,2194,4.5,1227918682 +442,2268,4.5,1227918093 +442,2313,4.0,1227917203 +442,2355,4.5,1227967550 +442,2398,4.5,1230227401 +442,2571,4.5,1227920879 +442,2628,4.0,1227968938 +442,2683,4.5,1227969078 +442,2700,4.5,1227967506 +442,2706,4.5,1227969139 +442,2716,4.5,1227968998 +442,2762,4.5,1227968879 +442,2791,4.5,1227969281 +442,2795,4.5,1227917234 +442,2797,4.5,1227969235 +442,2858,4.0,1227920078 +442,2918,5.0,1227969176 +442,2959,4.5,1230177781 +442,2987,4.0,1227967518 +442,3087,4.0,1227917270 +442,3114,4.0,1227967406 +442,3396,4.0,1227917144 +442,3421,4.5,1234061412 +442,3448,4.5,1227919456 +442,3450,4.5,1227919316 +442,3526,4.5,1227917267 +442,3552,5.0,1227968527 +442,3578,5.0,1227968987 +442,3671,5.0,1227968502 +442,3680,4.5,1227967960 +442,3751,4.5,1227967572 +442,3916,4.0,1227918104 +442,3948,4.5,1227969452 +442,3977,4.0,1227969391 +442,3988,4.5,1227918853 +442,4022,4.5,1227969346 +442,4027,4.5,1227969336 +442,4126,2.5,1227917444 +442,4306,4.5,1227967432 +442,4483,2.5,1227968531 +442,4516,4.0,1227917576 +442,4638,3.5,1227919845 +442,4816,3.5,1227969664 +442,4857,4.5,1227921058 +442,4886,4.5,1227967415 +442,4963,4.5,1227969278 +442,4993,4.5,1227920234 +442,4995,4.5,1227969319 +442,5010,4.5,1227919428 +442,5152,5.0,1227919445 +442,5218,4.5,1227967522 +442,5669,4.0,1227967980 +442,6005,4.5,1227968094 +442,6122,4.5,1227967865 +442,6188,4.5,1227919168 +442,6377,4.5,1227967410 +442,6874,4.5,1227969409 +442,6936,4.5,1227969637 +442,7132,4.0,1227921024 +442,7153,4.5,1227920236 +442,7263,4.5,1227918676 +442,7318,4.5,1227917705 +442,7386,4.5,1227919595 +442,7979,4.0,1227967887 +442,8207,4.5,1227920871 +442,8360,4.5,1227967499 +442,8493,4.0,1227918109 +442,8641,4.5,1227918468 +442,8827,4.5,1227918258 +442,8961,4.0,1227967387 +442,8965,4.0,1227967341 +442,27873,4.5,1227968089 +442,32587,4.0,1230175903 +442,33615,4.5,1227967630 +442,34072,4.0,1227967973 +442,39183,2.5,1227918050 +442,40819,5.0,1227921037 +442,43869,4.0,1227969651 +442,44022,4.5,1227967622 +442,45517,4.0,1227967491 +442,46347,4.5,1227967875 +442,46970,4.0,1227969657 +442,48304,3.5,1227917673 +442,48738,4.0,1227920861 +442,48741,4.0,1227967931 +442,49274,4.0,1227967611 +442,49530,4.0,1227918690 +442,50872,4.0,1227967398 +442,51662,4.0,1227919460 +442,52245,4.0,1227969644 +442,52435,4.0,1227919007 +442,53121,4.5,1227967650 +442,54272,4.0,1227967504 +442,58156,2.0,1227918928 +442,58559,5.0,1227918834 +442,59315,5.0,1230175688 +442,60069,3.5,1230175532 +442,60487,4.0,1227921097 +442,64114,4.5,1234059992 +443,260,4.5,1427775169 +443,293,5.0,1427775376 +443,318,5.0,1427775162 +443,356,4.5,1427775397 +443,541,5.0,1427775555 +443,589,5.0,1427775382 +443,593,4.5,1427775392 +443,741,5.0,1427775447 +443,1036,5.0,1427775368 +443,1136,5.0,1427775558 +443,1196,5.0,1427775173 +443,1198,5.0,1427775164 +443,1200,5.0,1427775388 +443,1210,5.0,1427775372 +443,1274,5.0,1427775448 +443,1291,5.0,1427775187 +443,2571,4.5,1427775185 +443,2810,5.0,1427775459 +443,3000,5.0,1427775402 +443,5618,5.0,1427775430 +443,5690,5.0,1427775449 +443,5971,5.0,1427775427 +443,6350,5.0,1427775421 +443,6857,4.5,1427775513 +443,7099,5.0,1427775423 +443,26662,5.0,1427775432 +443,27660,4.0,1427775501 +443,31658,5.0,1427775425 +443,48394,5.0,1427775557 +443,57504,5.0,1427775519 +443,62336,5.0,1427775457 +443,65261,5.0,1427775486 +443,85179,5.0,1427775515 +443,89864,5.0,1427775215 +443,94864,4.5,1427775211 +443,104841,4.5,1427775561 +443,106782,5.0,1427775207 +443,112556,5.0,1427775229 +443,112852,5.0,1427775204 +443,131013,3.5,1427775200 +444,902,4.0,975088273 +444,1193,5.0,975088310 +444,1617,4.0,975088236 +444,2133,1.0,975088310 +444,2622,3.0,975088273 +444,3176,3.0,975088310 +444,3897,3.0,975088816 +444,3936,3.0,975088236 +444,3963,4.0,975088533 +444,3967,4.0,975088533 +444,3969,4.0,975088533 +444,3977,1.0,975088500 +444,3984,4.0,975088474 +444,3987,4.0,975088474 +444,3990,1.0,975088474 +444,3991,1.0,975088431 +444,4000,3.0,975088431 +444,4002,5.0,975088391 +444,4007,5.0,975088392 +444,4008,4.0,975088392 +445,296,4.5,1360005902 +445,318,5.0,1360005921 +445,356,5.0,1360005908 +445,480,3.5,1360005917 +445,502,4.5,1360005560 +445,593,3.5,1360005912 +445,1591,3.0,1360004940 +445,2004,3.5,1360004979 +445,2380,3.5,1360005633 +445,2384,1.5,1360004930 +445,2409,4.0,1360004934 +445,2410,3.5,1360004951 +445,3999,2.5,1360005590 +445,4161,4.0,1360004991 +445,4270,2.0,1360004883 +445,4874,4.0,1360004915 +445,5291,3.5,1360005603 +445,37741,2.0,1360005615 +445,53000,2.5,1360005595 +445,80463,3.5,1360005570 +446,318,5.0,1436621001 +446,4896,5.0,1436621120 +446,4993,5.0,1436621011 +446,5445,4.0,1436621134 +446,5952,4.5,1436621014 +446,6333,4.5,1436621075 +446,7153,5.0,1436621009 +446,8368,5.0,1436621055 +446,8644,4.5,1436621492 +446,8665,5.0,1436621053 +446,40815,4.5,1436621066 +446,54286,5.0,1436621016 +446,63082,5.0,1436621141 +446,63992,4.5,1436621553 +446,65514,4.5,1436621096 +446,68954,4.0,1436621300 +446,70286,4.0,1436621199 +446,72998,4.5,1436621073 +446,87232,5.0,1436621036 +446,88125,5.0,1436621220 +446,98809,4.0,1436621117 +446,111362,4.5,1436621050 +446,111759,4.0,1436621042 +446,115713,5.0,1436621602 +446,120466,4.5,1436621570 +447,1,3.0,832492847 +447,2,3.0,832493108 +447,6,3.0,832493230 +447,10,3.0,832492847 +447,11,3.0,832493040 +447,17,3.0,832493040 +447,19,3.0,832492963 +447,21,3.0,832492911 +447,25,4.0,832493175 +447,34,3.0,832492936 +447,36,4.0,832493175 +447,39,3.0,832492963 +447,48,3.0,832493175 +447,60,3.0,832493413 +447,62,5.0,832493132 +447,105,4.0,832493108 +447,110,5.0,832492911 +447,111,3.0,832492988 +447,141,4.0,832493063 +447,150,4.0,832492563 +447,151,3.0,832493012 +447,153,3.0,832492610 +447,158,3.0,832493085 +447,160,3.0,832492963 +447,161,4.0,832492847 +447,165,3.0,832492610 +447,168,3.0,832493085 +447,172,2.0,832493085 +447,173,2.0,832493012 +447,185,3.0,832492879 +447,186,3.0,832493063 +447,208,4.0,832492879 +447,216,1.0,832493335 +447,218,3.0,832493257 +447,222,3.0,832493280 +447,224,3.0,832493108 +447,225,3.0,832492911 +447,231,3.0,832492644 +447,234,1.0,832493335 +447,235,2.0,832493063 +447,236,3.0,832493012 +447,237,3.0,832493206 +447,246,2.0,832493207 +447,253,2.0,832492879 +447,256,3.0,832493108 +447,261,3.0,832493063 +447,265,3.0,832493063 +447,266,3.0,832492936 +447,272,3.0,832493206 +447,276,2.0,832493207 +447,277,3.0,832493230 +447,282,4.0,832492988 +447,288,2.0,832492911 +447,293,3.0,832493085 +447,296,3.0,832492563 +447,300,3.0,832492879 +447,315,3.0,832492988 +447,317,3.0,832492936 +447,318,4.0,832492644 +447,329,3.0,832492644 +447,333,3.0,832493108 +447,337,3.0,832493012 +447,339,3.0,832492847 +447,342,3.0,832493335 +447,344,3.0,832492610 +447,348,3.0,832493230 +447,349,3.0,832492610 +447,364,3.0,832493335 +447,380,4.0,832492563 +447,381,3.0,832493280 +447,410,3.0,832492911 +447,413,1.0,832493411 +447,420,2.0,832492963 +447,432,2.0,832492988 +447,434,3.0,832492847 +447,435,3.0,832492988 +447,454,4.0,832493411 +447,457,3.0,832493132 +447,477,2.0,832493451 +447,553,3.0,832493040 +447,555,3.0,832493132 +447,588,3.0,832492610 +447,590,4.0,832492563 +447,592,3.0,832492563 +447,593,4.0,832493132 +447,595,3.0,832492644 +447,608,4.0,832493280 +448,1,3.0,1444761397 +448,260,5.0,1444761426 +448,356,3.0,1444761400 +448,480,5.0,1444761389 +448,589,5.0,1444761778 +448,593,5.0,1444761386 +448,1196,5.0,1444761808 +448,1198,5.0,1444761821 +448,1210,5.0,1444761802 +448,1270,5.0,1444761391 +448,1291,5.0,1444761792 +448,2571,5.0,1444761393 +448,4993,5.0,1444761817 +448,5952,4.0,1444761818 +448,7153,5.0,1444761813 +448,54286,5.0,1444761789 +448,59315,5.0,1444761779 +448,68358,5.0,1444761790 +448,79132,5.0,1444761797 +448,89745,5.0,1444761795 +449,32,4.0,836927059 +449,47,4.0,836907547 +449,62,4.0,836927059 +449,150,4.0,836908387 +449,185,4.0,836907480 +449,225,4.0,836907601 +449,296,5.0,836908387 +449,300,5.0,836907544 +449,317,3.0,836907776 +449,318,5.0,836907434 +449,344,3.0,836907384 +449,349,4.0,836907384 +449,356,5.0,836907604 +449,364,4.0,836907783 +449,380,4.0,836908387 +449,434,3.0,836907459 +449,454,5.0,836907600 +449,457,5.0,836907459 +449,480,4.0,836907787 +449,588,5.0,836907384 +449,590,5.0,836908387 +449,592,5.0,836908387 +449,593,5.0,836907459 +449,595,4.0,836907435 +450,29,4.5,1449354100 +450,47,5.0,1449349727 +450,50,5.0,1449349256 +450,111,5.0,1449354173 +450,296,5.0,1449349600 +450,318,4.0,1449349252 +450,527,4.5,1449349254 +450,541,4.5,1449349648 +450,593,5.0,1449349656 +450,608,5.0,1449349641 +450,750,4.5,1449349370 +450,778,4.5,1449354169 +450,858,5.0,1449349272 +450,908,4.0,1449349652 +450,912,4.0,1449349429 +450,1089,5.0,1475737107 +450,1136,4.5,1449349658 +450,1193,5.0,1449349568 +450,1198,4.0,1449349427 +450,1199,5.0,1449354075 +450,1201,5.0,1449349636 +450,1204,2.5,1449349692 +450,1206,5.0,1449354022 +450,1208,5.0,1449354094 +450,1213,4.5,1449349572 +450,1221,4.0,1449349777 +450,1222,5.0,1449349554 +450,1258,4.5,1449349557 +450,1260,4.5,1449349750 +450,1298,5.0,1475737120 +450,1527,3.0,1449354033 +450,1617,4.5,1449349724 +450,1653,3.5,1449354113 +450,1682,5.0,1449354039 +450,1704,5.0,1449349736 +450,1732,4.5,1475737106 +450,2019,4.5,1449349591 +450,2076,5.0,1475737127 +450,2318,5.0,1475737121 +450,2324,5.0,1449349790 +450,2329,4.0,1449349594 +450,2542,4.5,1475737111 +450,2571,5.0,1449349431 +450,2692,5.0,1449354097 +450,2858,5.0,1449349598 +450,2959,5.0,1449349260 +450,2970,5.0,1449349303 +450,3089,4.5,1449349725 +450,3202,5.0,1449349335 +450,3578,1.0,1475737172 +450,3793,0.5,1475737181 +450,3910,5.0,1475737250 +450,3949,3.5,1449354163 +450,4011,5.0,1475737199 +450,4027,5.0,1475737199 +450,4226,5.0,1475737165 +450,4235,3.5,1475737258 +450,4306,4.0,1475737174 +450,4308,3.0,1449354030 +450,4848,5.0,1449354273 +450,4873,5.0,1449354102 +450,4878,5.0,1449354041 +450,4886,4.0,1475737183 +450,4963,5.0,1475737189 +450,4973,5.0,1449349263 +450,4993,1.0,1475737169 +450,4995,4.5,1475737195 +450,5056,5.0,1449349308 +450,5121,5.0,1449349304 +450,5291,5.0,1449349694 +450,5445,4.0,1475737187 +450,5618,4.5,1449349367 +450,5952,1.0,1475737170 +450,5989,4.5,1475737197 +450,5995,5.0,1449349733 +450,6016,5.0,1449349261 +450,6377,3.0,1475737185 +450,6874,4.5,1449354023 +450,7063,5.0,1449349301 +450,7153,1.0,1475737171 +450,7361,5.0,1449349376 +450,7438,3.5,1449349403 +450,8636,2.0,1449349393 +450,8961,3.0,1449349401 +450,27773,4.5,1449349704 +450,32587,4.5,1449354037 +450,33794,3.0,1449349406 +450,44191,4.0,1449349384 +450,48394,3.0,1449354073 +450,48516,5.0,1449349388 +450,48780,3.5,1449349730 +450,53550,5.0,1449349333 +450,57669,5.0,1449354006 +450,58559,4.5,1475737176 +450,60069,4.5,1449354165 +450,60333,5.0,1449349309 +450,60684,4.5,1449354026 +450,61323,5.0,1449350052 +450,63082,4.5,1449354170 +450,64660,5.0,1475737055 +450,70286,4.5,1449354161 +450,79132,4.0,1449354069 +450,79469,5.0,1475736993 +450,80717,5.0,1475737052 +450,86504,4.5,1449349690 +450,92259,4.5,1449349258 +450,94466,5.0,1449349275 +450,99030,5.0,1475736957 +450,106920,2.0,1449354145 +450,107447,5.0,1475736957 +450,107649,5.0,1475736994 +450,109374,5.0,1449354021 +450,112552,4.0,1449349696 +450,115122,4.0,1475737068 +450,122882,1.0,1449349412 +450,129313,5.0,1475736979 +450,134130,2.0,1449349398 +450,141886,5.0,1475737051 +450,148372,5.0,1475737053 +450,153584,5.0,1475736995 +451,52,4.0,979330046 +451,206,4.0,980447536 +451,223,1.0,979516730 +451,246,5.0,980447386 +451,260,4.0,979330104 +451,541,4.0,979516433 +451,556,3.0,980447432 +451,581,5.0,980447432 +451,908,5.0,979330081 +451,994,5.0,979330579 +451,1171,4.0,979330384 +451,1189,4.0,980447432 +451,1192,5.0,980447386 +451,1197,4.0,979516452 +451,1225,4.0,979516371 +451,1288,5.0,979516387 +451,1296,5.0,979516433 +451,1299,4.0,979516410 +451,1361,5.0,980447368 +451,1441,3.0,979330463 +451,1484,5.0,979330564 +451,1639,1.0,979516748 +451,1797,3.0,980447432 +451,1865,4.0,980447472 +451,2064,5.0,979516433 +451,2124,3.0,979330046 +451,2541,4.0,979516496 +451,2598,1.0,980447330 +451,2693,3.0,980447489 +451,2706,4.0,979330104 +451,2804,4.0,979516410 +451,2858,4.0,979330343 +451,2915,4.0,979516452 +451,2959,5.0,979330540 +451,3007,5.0,980447432 +451,3052,2.0,979516763 +451,3067,1.0,979516371 +451,3361,3.0,979516387 +451,3418,5.0,979330081 +451,3521,5.0,979516452 +451,3556,3.0,979330384 +451,3594,2.0,979330674 +451,3683,4.0,979516433 +451,3814,4.0,979330104 +451,3969,1.0,979330296 +451,3977,5.0,979330296 +451,3996,5.0,979330263 +451,4009,3.0,979330384 +451,4022,2.0,979330296 +451,4054,3.0,979516309 +451,4061,3.0,979330451 +451,4067,1.0,979330384 +452,1,3.5,1133735252 +452,3,1.0,976423199 +452,5,3.0,976422557 +452,6,4.0,976423753 +452,7,3.0,976422719 +452,11,4.0,976419907 +452,14,5.0,976420715 +452,16,4.0,976420133 +452,17,4.0,976419438 +452,18,3.0,976423954 +452,19,1.0,976427428 +452,22,3.0,976424048 +452,24,2.0,976420743 +452,27,3.0,976421239 +452,29,4.0,976424683 +452,31,2.5,1077114665 +452,34,4.0,1067732233 +452,36,5.0,976419552 +452,39,3.0,976421630 +452,43,4.0,976425795 +452,45,3.0,976419946 +452,47,2.5,1151810489 +452,52,3.0,976421944 +452,57,3.0,976421122 +452,62,3.0,976420061 +452,74,2.0,1016590266 +452,79,1.0,976421101 +452,86,3.0,976420610 +452,89,3.0,976424143 +452,94,4.0,976420414 +452,100,3.0,976420764 +452,104,1.0,976421834 +452,105,1.0,976420744 +452,110,4.0,976425416 +452,111,4.0,1002941559 +452,113,3.0,976421014 +452,119,3.0,976423036 +452,144,3.0,976422042 +452,150,4.0,976419605 +452,161,3.0,976423807 +452,164,3.0,976423582 +452,165,4.0,976424188 +452,168,3.0,976420942 +452,175,4.0,1015029817 +452,186,1.0,976422783 +452,193,1.0,976427569 +452,195,4.0,976420942 +452,203,3.0,976423060 +452,207,3.0,976426587 +452,208,3.0,976424965 +452,222,4.0,976420150 +452,223,2.0,1133735707 +452,225,2.0,976420569 +452,229,4.0,1077114985 +452,230,4.0,976420586 +452,235,3.0,1133735422 +452,236,4.0,976427254 +452,237,3.0,976422997 +452,247,3.0,976419499 +452,249,3.0,976419799 +452,252,3.0,976422801 +452,260,4.0,976424659 +452,261,3.0,976420291 +452,265,3.5,1067731704 +452,266,3.0,976426708 +452,271,2.0,976420886 +452,272,3.5,1067732235 +452,278,2.0,976422760 +452,279,4.0,976419777 +452,280,3.0,976420133 +452,281,3.0,976419754 +452,288,4.0,976424209 +452,292,2.0,976420837 +452,293,3.0,976423807 +452,296,5.0,976425081 +452,300,4.0,976419622 +452,305,3.0,976423176 +452,306,5.0,976425154 +452,307,5.0,976419689 +452,308,5.0,976419715 +452,312,3.0,976423060 +452,318,5.0,976419528 +452,331,2.0,976421239 +452,337,4.0,976419824 +452,339,4.0,976422363 +452,342,3.0,976422279 +452,344,1.0,976422605 +452,348,3.5,1133735631 +452,349,4.0,976423954 +452,350,2.0,976420328 +452,351,2.0,976422186 +452,356,4.0,976421889 +452,357,4.0,976421969 +452,360,1.0,976423319 +452,361,4.0,976426210 +452,371,4.0,976420677 +452,375,3.0,976427445 +452,376,3.0,976424301 +452,377,4.0,976423883 +452,380,3.0,976422186 +452,381,3.0,976420474 +452,388,4.0,976420166 +452,412,2.0,976419866 +452,413,1.0,1016590228 +452,427,1.0,976424583 +452,429,1.0,976422697 +452,440,4.0,976421741 +452,454,2.0,976420414 +452,455,3.0,976421139 +452,457,4.0,976423694 +452,460,2.0,989111285 +452,463,2.0,976424451 +452,468,3.0,976422605 +452,471,3.0,976422396 +452,474,4.0,976423780 +452,475,5.0,976419844 +452,477,2.0,976419659 +452,480,5.0,976424739 +452,486,2.0,976427011 +452,490,3.0,976424071 +452,491,3.0,976420715 +452,492,2.0,976422231 +452,493,3.0,976425924 +452,494,3.0,976424164 +452,498,3.0,976421216 +452,500,4.0,976422542 +452,507,3.0,976420203 +452,508,5.0,976420037 +452,515,5.0,976419552 +452,516,2.0,976421014 +452,518,2.0,1077114334 +452,524,2.0,976420267 +452,527,4.0,1048089895 +452,529,5.0,976419887 +452,531,4.0,976420610 +452,534,4.0,976420061 +452,535,3.0,976420061 +452,536,3.0,976420837 +452,538,3.0,976426512 +452,539,4.0,976422297 +452,540,1.0,976424511 +452,556,4.0,976425596 +452,562,4.0,976425388 +452,581,4.0,976425238 +452,586,3.0,976422942 +452,587,4.0,976422347 +452,589,4.0,976423675 +452,590,4.0,976424722 +452,593,5.0,976419528 +452,597,3.0,976422186 +452,605,2.0,976420498 +452,608,5.0,976423675 +452,628,4.0,976419589 +452,635,3.0,976422582 +452,647,4.0,976420311 +452,648,3.0,976426235 +452,691,3.0,976422504 +452,707,3.0,976423582 +452,708,3.0,976426069 +452,719,2.0,976423300 +452,726,3.0,976419589 +452,728,4.0,976421758 +452,733,3.0,976423954 +452,736,3.0,976424318 +452,750,5.0,976428397 +452,762,1.0,976423357 +452,778,4.0,1133735586 +452,780,4.0,976426314 +452,781,3.0,976426494 +452,784,2.0,976422873 +452,786,3.0,976426913 +452,800,4.0,1133735839 +452,802,4.0,976420764 +452,805,4.0,976420242 +452,818,1.0,976423128 +452,829,1.0,976423319 +452,830,3.0,976423075 +452,832,3.0,976420414 +452,848,3.0,976420639 +452,852,3.0,976422231 +452,858,5.0,1002939818 +452,891,1.0,978405647 +452,898,4.0,976421541 +452,899,3.0,1040499503 +452,902,3.5,1077114204 +452,903,4.0,989110975 +452,904,4.0,1067732357 +452,906,3.0,1133735856 +452,908,4.0,1002940225 +452,910,4.0,976421323 +452,911,3.0,976421541 +452,912,5.0,1002939847 +452,913,5.0,989111896 +452,915,4.0,989112236 +452,919,3.0,1002940135 +452,920,4.0,1002940311 +452,921,3.0,976421580 +452,923,4.0,1002938163 +452,932,4.5,1077114316 +452,933,3.5,1077114659 +452,934,3.0,976422677 +452,943,3.5,1077114950 +452,946,3.0,976421911 +452,949,4.5,1133735550 +452,950,2.5,1133736000 +452,953,4.0,1002940311 +452,969,5.0,976424683 +452,986,3.0,1002938285 +452,994,3.0,1133735811 +452,1012,4.0,1002941030 +452,1027,3.0,976420639 +452,1029,4.0,1133735349 +452,1036,4.0,976423641 +452,1041,4.0,976425190 +452,1042,3.0,976426141 +452,1054,2.0,976425218 +452,1061,3.0,976420414 +452,1077,4.0,976421741 +452,1078,4.0,976421630 +452,1079,3.0,976421580 +452,1081,3.0,976421969 +452,1082,4.0,1002941030 +452,1084,4.0,1002940431 +452,1086,3.0,1133735326 +452,1089,2.0,976423641 +452,1090,4.0,1002940671 +452,1092,3.0,976424188 +452,1094,5.0,976419659 +452,1095,5.0,976418958 +452,1096,4.0,1002940709 +452,1097,5.0,1002940618 +452,1100,1.5,1077114631 +452,1101,2.5,1077115687 +452,1103,4.0,1002940767 +452,1104,4.0,1002939995 +452,1111,5.0,1077114933 +452,1120,3.0,976420267 +452,1124,4.0,1077115697 +452,1127,3.0,976424722 +452,1135,3.0,976422279 +452,1136,4.0,976421377 +452,1162,5.0,976421377 +452,1169,4.0,989111755 +452,1171,5.0,976426047 +452,1172,4.0,976421430 +452,1179,4.0,976423582 +452,1183,3.0,976419929 +452,1186,4.0,1077114624 +452,1187,4.0,976419528 +452,1189,4.0,989111734 +452,1193,5.0,976418958 +452,1196,4.0,976424659 +452,1197,3.0,1002941820 +452,1198,4.0,976424659 +452,1200,3.5,1133735526 +452,1201,1.5,1133735530 +452,1203,4.0,989110944 +452,1204,4.0,989110944 +452,1206,3.0,996875507 +452,1207,5.0,1002939847 +452,1208,4.0,1002940431 +452,1213,4.0,976425133 +452,1214,3.0,978405185 +452,1219,4.5,1077115642 +452,1221,5.0,1002939818 +452,1222,3.0,1002938212 +452,1225,4.0,1002939847 +452,1228,4.0,1002940157 +452,1230,4.0,1048089885 +452,1231,4.0,1002940157 +452,1233,5.0,976425036 +452,1234,5.0,1002941300 +452,1235,2.0,976421430 +452,1240,4.0,976423675 +452,1242,4.0,1067731812 +452,1244,3.0,1002940311 +452,1245,4.0,1133735730 +452,1246,3.5,1133735275 +452,1247,4.0,1002939995 +452,1250,4.0,1002939995 +452,1252,4.0,989111896 +452,1256,4.0,1133736014 +452,1258,4.0,996875481 +452,1259,5.0,976421517 +452,1260,4.0,989111896 +452,1262,3.0,1133734641 +452,1263,5.0,1002940480 +452,1265,4.0,976421472 +452,1266,3.0,976425169 +452,1267,3.0,1133735821 +452,1268,3.0,976419844 +452,1269,4.0,989112182 +452,1270,4.0,989112202 +452,1271,3.0,976419972 +452,1272,4.0,1002940618 +452,1276,4.0,976421377 +452,1278,4.0,976421630 +452,1283,4.0,1067731957 +452,1284,3.5,1133736011 +452,1285,3.0,976421678 +452,1287,3.0,1133735397 +452,1288,4.0,989112131 +452,1291,4.0,976424683 +452,1292,3.0,976421541 +452,1293,4.0,1002938163 +452,1299,4.0,989110975 +452,1302,4.0,1002940927 +452,1303,3.5,1112044845 +452,1304,5.0,976421377 +452,1307,4.0,989112182 +452,1321,3.0,1133735542 +452,1327,1.5,1077114253 +452,1333,4.0,1067732167 +452,1343,4.0,976423835 +452,1344,4.0,976423901 +452,1345,3.0,1077115647 +452,1353,1.0,976423207 +452,1357,3.0,976419887 +452,1358,5.0,976419605 +452,1361,4.0,976425100 +452,1370,4.0,976423928 +452,1385,3.0,976426257 +452,1387,4.0,1002941559 +452,1392,3.0,1133735646 +452,1393,5.0,976419528 +452,1394,5.0,976421494 +452,1395,3.0,976422542 +452,1396,4.0,976420077 +452,1397,4.0,976425488 +452,1399,4.0,976420810 +452,1401,3.0,976426457 +452,1407,3.0,976424026 +452,1409,3.0,976423060 +452,1410,2.0,976421076 +452,1414,3.0,976426295 +452,1423,4.5,1077115657 +452,1441,3.0,976422142 +452,1442,3.0,976420037 +452,1449,3.0,976421678 +452,1459,1.0,976424071 +452,1466,3.0,976419946 +452,1476,2.0,976422279 +452,1480,3.0,1077114310 +452,1483,2.0,976421101 +452,1488,3.0,976420639 +452,1499,1.0,976427552 +452,1500,5.0,976421778 +452,1507,3.0,976420474 +452,1517,3.0,976421911 +452,1526,1.0,976423036 +452,1535,3.0,976425576 +452,1541,2.0,976422962 +452,1545,4.0,976419417 +452,1552,4.0,976424301 +452,1556,1.0,976424599 +452,1569,2.0,976426378 +452,1573,3.0,976424099 +452,1580,4.0,976422186 +452,1584,3.0,976419659 +452,1594,3.0,976419528 +452,1597,2.0,976424099 +452,1605,2.0,976424921 +452,1608,4.0,976423977 +452,1610,3.0,976423807 +452,1611,4.0,976420133 +452,1614,4.0,976422719 +452,1617,5.0,976423582 +452,1620,3.0,976420677 +452,1625,2.0,976423807 +452,1629,3.0,976422740 +452,1633,4.0,976419907 +452,1635,5.0,976419528 +452,1639,1.5,1133735553 +452,1641,4.0,976421778 +452,1642,3.0,976421798 +452,1643,4.0,976420328 +452,1644,2.0,976427154 +452,1645,2.0,976424026 +452,1646,2.0,976422326 +452,1647,3.0,976424301 +452,1653,2.0,976423835 +452,1663,3.0,989112409 +452,1667,3.0,976420744 +452,1673,3.0,976425539 +452,1674,4.0,976423780 +452,1678,4.0,976420133 +452,1680,3.0,976419866 +452,1682,4.0,976419777 +452,1686,3.0,976424143 +452,1693,3.0,976426192 +452,1694,4.0,976425267 +452,1701,3.0,1077114627 +452,1703,1.0,976422623 +452,1704,5.0,976425267 +452,1711,3.0,976420692 +452,1713,2.0,976422605 +452,1719,4.0,976419887 +452,1721,1.0,976419972 +452,1727,4.0,976420744 +452,1747,5.0,976419824 +452,1752,2.0,976424493 +452,1754,2.0,976424301 +452,1767,2.0,1077115633 +452,1777,2.0,976422122 +452,1784,1.0,976421630 +452,1785,3.5,1077114911 +452,1801,2.0,976420639 +452,1804,3.0,976420942 +452,1810,4.0,1133735337 +452,1821,2.0,976426442 +452,1834,3.0,976419659 +452,1835,3.0,976426607 +452,1876,3.0,976420291 +452,1883,1.0,976421927 +452,1885,3.0,976419844 +452,1888,4.0,976426948 +452,1889,4.0,1067732172 +452,1892,2.0,976424048 +452,1894,1.0,976422942 +452,1896,3.0,989112264 +452,1909,3.0,976426047 +452,1911,3.0,976426930 +452,1914,3.0,1048089883 +452,1917,3.0,976424468 +452,1921,3.0,976423928 +452,1923,3.0,976421718 +452,1944,3.0,1008974914 +452,1945,4.0,1067732375 +452,1946,3.5,1133735658 +452,1947,5.0,1067732311 +452,1948,4.0,989112161 +452,1949,4.0,1002940225 +452,1950,3.0,1002940287 +452,1952,5.0,1002940431 +452,1953,4.0,976423780 +452,1954,3.0,1002940532 +452,1955,4.0,1002938212 +452,1956,4.0,1002938179 +452,1957,4.0,1002940574 +452,1958,4.0,976421758 +452,1960,3.0,1151810441 +452,1961,4.0,1002940409 +452,1962,2.0,1133735039 +452,1963,3.0,989112218 +452,1964,4.0,1002941091 +452,1968,4.0,976421741 +452,1975,0.5,1077114303 +452,1977,1.0,978405647 +452,1985,0.5,1077114276 +452,1994,4.0,976423835 +452,1997,4.0,1002941559 +452,2000,3.0,976421986 +452,2001,2.5,1077114590 +452,2003,3.0,976422347 +452,2007,2.0,976423243 +452,2011,3.0,976422326 +452,2012,3.0,976426378 +452,2013,3.5,1077114599 +452,2020,4.0,1002940671 +452,2022,3.0,1067732238 +452,2023,4.0,976418975 +452,2025,3.0,976420498 +452,2028,4.0,976418939 +452,2045,3.0,976420715 +452,2054,3.0,1015029818 +452,2058,3.0,976424048 +452,2059,2.0,976420715 +452,2064,4.0,989111783 +452,2065,3.0,976421601 +452,2067,3.0,1133735670 +452,2070,4.0,1002940686 +452,2071,5.0,976419929 +452,2080,4.0,976421889 +452,2094,2.5,1077115620 +452,2100,3.0,976422122 +452,2106,3.0,976426161 +452,2108,4.0,976421798 +452,2110,3.0,976421580 +452,2112,3.0,976420133 +452,2115,3.0,976424798 +452,2118,3.0,976423954 +452,2120,1.0,976420886 +452,2121,3.0,976424511 +452,2125,3.0,976419733 +452,2126,3.0,976424493 +452,2130,3.5,1133735978 +452,2132,5.0,1002940655 +452,2144,4.0,1077114605 +452,2145,3.0,976422396 +452,2155,2.0,976427064 +452,2160,3.0,976423863 +452,2166,3.0,976426047 +452,2176,3.0,989111029 +452,2180,3.0,976424272 +452,2194,4.0,1002940655 +452,2231,3.0,976420234 +452,2237,3.0,976419866 +452,2243,4.0,976421815 +452,2245,4.0,1048089901 +452,2248,3.0,976421517 +452,2249,3.0,976422582 +452,2250,3.0,976420610 +452,2259,1.0,976423300 +452,2268,5.0,976419689 +452,2269,2.0,976421101 +452,2272,3.0,1133735115 +452,2276,3.0,976419754 +452,2289,5.0,976419552 +452,2290,3.0,976422209 +452,2291,3.0,976419777 +452,2294,3.0,976426015 +452,2297,3.0,976420837 +452,2300,4.0,976421377 +452,2302,4.0,976425924 +452,2303,3.0,1002941030 +452,2306,2.0,976423300 +452,2312,4.0,1067731855 +452,2313,4.0,1002940480 +452,2314,4.0,976420977 +452,2316,2.0,976427093 +452,2318,5.0,976421652 +452,2320,2.0,976420474 +452,2321,5.0,976425488 +452,2324,5.0,976419689 +452,2329,4.0,976419552 +452,2331,3.0,976422542 +452,2333,3.0,1002940532 +452,2334,3.0,976424048 +452,2336,4.0,976419689 +452,2338,1.5,1077114883 +452,2346,3.0,1048089893 +452,2352,4.0,976421652 +452,2353,3.0,976423954 +452,2355,4.0,976421678 +452,2357,4.0,976419417 +452,2359,4.0,976421517 +452,2369,1.0,976422396 +452,2375,1.0,976423017 +452,2379,0.5,1077114268 +452,2384,3.0,1077115617 +452,2385,2.0,976422942 +452,2386,1.0,976421274 +452,2391,4.0,976423694 +452,2395,3.0,989112297 +452,2396,5.0,976421494 +452,2398,3.5,1077114238 +452,2416,1.0,976422483 +452,2417,3.0,976422522 +452,2419,3.0,976424272 +452,2424,3.0,976421889 +452,2432,3.0,976420431 +452,2433,3.0,976420474 +452,2434,4.0,976420764 +452,2439,4.0,1002940891 +452,2442,4.0,976419799 +452,2446,2.0,976424424 +452,2453,3.5,1077114283 +452,2463,3.5,1077114595 +452,2469,4.0,976422209 +452,2470,2.0,1002938285 +452,2478,2.0,1048089899 +452,2490,2.0,976424354 +452,2496,2.0,976422326 +452,2497,2.0,976426572 +452,2502,3.0,1067732063 +452,2504,3.0,976421076 +452,2505,1.5,1077114242 +452,2521,2.0,1016590228 +452,2527,3.0,976424003 +452,2539,3.0,976422473 +452,2541,3.0,976420942 +452,2542,3.0,1133735827 +452,2546,3.0,976420414 +452,2558,2.0,976422962 +452,2561,3.0,976426512 +452,2565,3.0,1077114837 +452,2567,3.0,976422582 +452,2571,2.0,976423675 +452,2572,2.0,978405160 +452,2580,4.0,976425349 +452,2583,3.0,976425998 +452,2594,4.0,976425154 +452,2598,3.0,976422890 +452,2599,4.0,976421392 +452,2600,2.0,976425806 +452,2605,2.0,976424301 +452,2611,3.0,976419992 +452,2612,3.0,1002940225 +452,2621,3.5,1077115292 +452,2639,2.0,996875902 +452,2640,3.0,1077115585 +452,2664,4.0,1133735545 +452,2670,3.5,1067732267 +452,2671,4.0,976422042 +452,2682,4.0,976425446 +452,2683,3.0,976422783 +452,2688,3.0,976421014 +452,2692,5.0,976425100 +452,2693,3.0,989111783 +452,2699,3.0,976422623 +452,2700,3.0,976421693 +452,2706,2.0,989112609 +452,2707,3.0,976424071 +452,2710,1.0,976426210 +452,2712,3.0,1077115594 +452,2713,1.0,976424583 +452,2716,4.0,976421580 +452,2717,2.0,1077114588 +452,2718,4.0,976420184 +452,2722,2.0,976424339 +452,2724,3.0,976422783 +452,2725,4.0,976419622 +452,2729,1.5,1133735950 +452,2736,2.0,1077114262 +452,2739,4.0,1002940906 +452,2750,3.0,976421911 +452,2752,3.0,976423017 +452,2757,4.0,1067732247 +452,2759,3.0,976422042 +452,2762,5.0,976423656 +452,2770,3.0,976422186 +452,2779,4.0,976422019 +452,2788,4.0,989112202 +452,2791,4.0,1067732230 +452,2797,4.0,976421911 +452,2803,3.0,976424143 +452,2804,5.0,976421332 +452,2805,2.0,976423128 +452,2806,1.0,976423277 +452,2812,3.0,976423977 +452,2827,3.0,1006656786 +452,2829,3.0,976420993 +452,2852,3.5,1067731810 +452,2856,3.0,976423835 +452,2858,5.0,976419417 +452,2861,3.0,976422740 +452,2863,3.5,1133735851 +452,2866,4.0,1002940767 +452,2870,3.0,1077114830 +452,2871,4.0,976423753 +452,2875,4.0,976420715 +452,2881,2.0,976424339 +452,2906,2.0,1048089897 +452,2908,4.0,976419689 +452,2915,4.0,976421741 +452,2916,3.0,976423863 +452,2917,3.5,1133735438 +452,2918,5.0,976421494 +452,2926,3.0,1040499592 +452,2929,3.0,1133735617 +452,2930,3.5,1151810316 +452,2944,3.0,1133735221 +452,2947,3.5,1067732220 +452,2948,2.5,1133735524 +452,2950,0.5,1077114841 +452,2951,1.0,1067732260 +452,2956,3.0,976424099 +452,2959,2.0,976425267 +452,2961,3.0,1077114819 +452,2966,4.0,1067732304 +452,2973,5.0,976421350 +452,2987,3.0,976424702 +452,2997,3.0,989112131 +452,3006,4.0,1002940311 +452,3011,4.0,1002941091 +452,3015,2.0,976423977 +452,3019,3.0,1002940548 +452,3034,4.0,976418939 +452,3037,4.0,976421718 +452,3039,3.0,1077115598 +452,3044,3.0,976425666 +452,3052,3.0,989112719 +452,3062,4.0,1002940480 +452,3066,3.0,1016590417 +452,3068,4.0,1002940225 +452,3069,4.0,1002940655 +452,3072,3.0,976421678 +452,3077,4.0,976425238 +452,3088,4.0,976421472 +452,3097,3.0,1040499503 +452,3098,3.0,989111029 +452,3099,3.0,976422396 +452,3100,3.0,976425267 +452,3101,4.0,976424003 +452,3103,2.0,976421122 +452,3104,4.0,976421678 +452,3105,4.0,976419824 +452,3106,3.0,976420217 +452,3108,4.0,976419972 +452,3111,4.0,1005425664 +452,3114,3.0,1133735286 +452,3130,2.0,976423199 +452,3135,4.0,1002940709 +452,3146,1.0,976423128 +452,3147,4.0,1002940532 +452,3152,4.0,1002940512 +452,3167,4.5,1077114810 +452,3168,3.0,976424722 +452,3169,3.5,1067732252 +452,3173,2.0,1002938319 +452,3174,4.5,1077114561 +452,3175,3.0,978405357 +452,3176,4.0,976419929 +452,3182,4.0,989111367 +452,3186,4.0,976426410 +452,3189,3.0,983405457 +452,3194,3.5,1077114788 +452,3198,4.0,1016590228 +452,3200,4.0,989112264 +452,3201,4.0,1002940618 +452,3203,2.0,976423928 +452,3204,3.0,976423863 +452,3210,3.0,989112409 +452,3219,3.0,976424026 +452,3244,3.0,976422231 +452,3246,5.0,976420037 +452,3247,2.0,976422801 +452,3249,3.0,976426494 +452,3250,3.0,976425666 +452,3253,3.0,976421601 +452,3255,5.0,976419824 +452,3256,3.0,976423977 +452,3257,2.0,976421076 +452,3258,2.0,976423128 +452,3260,4.0,976425416 +452,3263,3.0,976422347 +452,3269,2.0,976424846 +452,3272,4.0,1008975127 +452,3274,2.0,976426314 +452,3289,4.0,1008976167 +452,3296,3.5,1067731835 +452,3298,3.0,1008975723 +452,3299,0.5,1151812365 +452,3301,4.0,1048089891 +452,3307,2.5,1133734748 +452,3310,3.5,1067732106 +452,3316,0.5,1151812196 +452,3317,5.0,976419241 +452,3326,2.0,1048089889 +452,3334,4.0,989111914 +452,3347,4.0,1002940494 +452,3350,4.0,1067731807 +452,3358,3.0,976421815 +452,3359,4.0,1002940287 +452,3360,4.0,1002940409 +452,3361,4.0,976421450 +452,3362,5.0,976421377 +452,3363,5.0,976421778 +452,3365,2.0,1002938163 +452,3371,3.5,1077115578 +452,3379,4.0,1002940363 +452,3386,3.0,976425703 +452,3392,1.0,976423176 +452,3405,2.5,1133735096 +452,3408,3.0,983405332 +452,3409,2.5,1151811867 +452,3412,4.0,976424812 +452,3420,4.0,976424143 +452,3421,4.0,978405215 +452,3424,3.5,1133735589 +452,3435,4.0,989111896 +452,3436,2.0,976421196 +452,3445,2.0,976423863 +452,3448,3.0,976421944 +452,3449,3.0,1077115573 +452,3450,2.0,976422371 +452,3451,4.0,976421430 +452,3457,3.0,1077115255 +452,3461,2.5,1133735268 +452,3467,4.0,1077114298 +452,3468,4.0,1067731698 +452,3469,4.5,1077114780 +452,3471,5.0,1002940709 +452,3476,3.0,976423928 +452,3481,5.0,978404762 +452,3498,4.0,1002940574 +452,3499,4.0,976425539 +452,3501,3.0,976421969 +452,3502,4.0,976420886 +452,3504,5.0,976421408 +452,3505,3.0,976423883 +452,3507,3.5,1133734987 +452,3510,3.5,1067732136 +452,3512,3.0,983405457 +452,3513,3.0,994377925 +452,3515,3.0,989111473 +452,3516,4.0,976421741 +452,3526,5.0,976421601 +452,3528,1.0,976420905 +452,3534,3.0,983405551 +452,3535,2.0,989111491 +452,3543,5.0,976421494 +452,3545,3.0,1002941597 +452,3546,3.0,976424026 +452,3548,3.0,976421430 +452,3551,4.0,976423780 +452,3552,2.0,976421969 +452,3555,4.0,978404826 +452,3556,2.0,1133735578 +452,3565,2.0,1151811848 +452,3578,4.0,978404762 +452,3579,3.0,989110733 +452,3581,3.5,1151811331 +452,3591,3.0,976422019 +452,3609,4.5,1133734867 +452,3614,3.0,976422326 +452,3623,3.0,1008976192 +452,3634,4.0,976423641 +452,3635,2.0,1040499703 +452,3646,1.0,1002938966 +452,3653,3.0,1067732124 +452,3655,4.0,1002939818 +452,3668,4.5,1077114783 +452,3671,4.0,976421517 +452,3683,4.0,1002938163 +452,3684,3.0,1077114796 +452,3685,3.0,989112279 +452,3686,3.0,976424209 +452,3699,3.5,1133735680 +452,3706,2.0,976424003 +452,3712,3.0,976422279 +452,3713,4.0,976419799 +452,3717,1.0,983405576 +452,3724,5.0,1067732179 +452,3726,3.5,1077114366 +452,3728,3.0,976423753 +452,3730,4.0,1002940409 +452,3733,4.0,1002940655 +452,3734,3.5,1133735413 +452,3735,4.0,1002940225 +452,3738,4.0,1077114356 +452,3741,4.0,1002940655 +452,3747,3.0,1008975059 +452,3751,3.0,994285588 +452,3753,3.0,983405457 +452,3755,4.0,978404826 +452,3763,2.0,1077114245 +452,3783,4.0,1011922168 +452,3784,3.0,983405596 +452,3788,4.0,1016590228 +452,3789,4.0,1002940363 +452,3793,1.0,978405473 +452,3798,2.0,983405457 +452,3799,1.0,978405647 +452,3801,3.0,1133735382 +452,3809,3.0,1048089887 +452,3810,2.0,976424405 +452,3812,3.0,976422697 +452,3813,3.0,1002940959 +452,3814,3.5,1133735539 +452,3824,1.0,976419314 +452,3826,2.0,1151812218 +452,3831,3.0,983405375 +452,3844,4.0,1077114768 +452,3859,3.5,1133735777 +452,3861,2.0,994377925 +452,3864,1.0,978405647 +452,3868,3.0,976421630 +452,3871,4.0,1067732316 +452,3893,3.0,976419094 +452,3897,5.0,989110975 +452,3910,2.0,1133735946 +452,3911,5.0,976419064 +452,3915,3.0,1002938477 +452,3916,3.5,1067732120 +452,3948,3.0,1008975059 +452,3949,4.0,1002939121 +452,3950,3.0,1002940927 +452,3951,3.5,1077115537 +452,3952,3.0,989110784 +452,3953,2.0,1044681111 +452,3957,1.0,978405621 +452,3967,5.0,976419064 +452,3969,2.0,1151811667 +452,3973,1.0,983405551 +452,3977,1.0,989111182 +452,3978,4.0,976419260 +452,3979,1.0,989111219 +452,3980,4.0,976419133 +452,3983,4.0,1002939098 +452,3987,4.0,976419133 +452,3988,1.0,978404955 +452,3989,5.0,976427884 +452,3990,1.0,983405576 +452,3993,3.0,1002939142 +452,3994,5.0,976419064 +452,3996,5.0,989111340 +452,3998,3.0,976428220 +452,3999,1.5,1151812159 +452,4007,3.5,1067731816 +452,4008,4.5,1067732199 +452,4014,3.0,1002941369 +452,4017,4.0,1008975059 +452,4018,3.0,1077114571 +452,4019,3.0,1151811068 +452,4020,3.0,1002938251 +452,4022,4.0,978404740 +452,4023,3.0,1077114556 +452,4025,1.5,1151811810 +452,4027,4.0,1002939075 +452,4029,4.0,983405375 +452,4031,2.5,1151812061 +452,4033,4.0,996875693 +452,4034,4.0,996875507 +452,4037,3.0,978405416 +452,4056,3.0,983405491 +452,4061,4.0,1002940874 +452,4062,4.0,989112544 +452,4069,1.0,1151812174 +452,4077,4.0,1016590660 +452,4080,3.0,989111163 +452,4086,4.0,1002941007 +452,4103,3.0,1133735000 +452,4109,1.0,989111285 +452,4116,1.5,1133735621 +452,4117,3.5,1133735470 +452,4136,2.0,1133734764 +452,4148,2.0,985305568 +452,4149,2.0,1002938399 +452,4155,1.0,1151812137 +452,4161,2.0,1002938335 +452,4162,1.0,989111656 +452,4167,2.5,1151811936 +452,4171,4.0,1133734654 +452,4174,4.0,989110944 +452,4186,3.0,989111029 +452,4187,4.0,1067731996 +452,4191,4.0,989110944 +452,4205,2.0,989111123 +452,4210,3.0,1133735467 +452,4211,4.0,989110975 +452,4214,1.0,989111139 +452,4215,1.0,989111285 +452,4216,4.0,1002940225 +452,4217,4.5,1067731988 +452,4218,4.0,1133735752 +452,4223,4.0,985305352 +452,4225,2.0,1133734926 +452,4226,5.0,1005425532 +452,4235,3.0,1011922097 +452,4237,3.0,1077115545 +452,4239,3.0,1008975762 +452,4246,3.0,1005425532 +452,4255,1.0,989111639 +452,4262,3.0,1133735378 +452,4263,4.0,1002940455 +452,4265,1.0,989111422 +452,4273,4.0,1011921989 +452,4274,3.0,989111163 +452,4276,3.0,989111123 +452,4277,3.5,1077115169 +452,4279,4.0,989111059 +452,4280,4.0,989112440 +452,4290,2.0,989111219 +452,4292,4.0,989110975 +452,4300,3.0,1133735266 +452,4304,3.0,1044681166 +452,4306,4.0,994285437 +452,4308,3.0,1151811257 +452,4310,1.5,1151812104 +452,4318,3.5,1077115143 +452,4322,4.0,1002940976 +452,4326,4.0,1002940480 +452,4334,4.0,1002939191 +452,4343,1.5,1151812168 +452,4344,3.0,1008976271 +452,4345,3.0,1044681084 +452,4359,4.0,1077114760 +452,4361,4.0,996875507 +452,4370,4.0,994285511 +452,4371,3.0,1008976132 +452,4372,3.0,1077114720 +452,4378,4.0,1067732338 +452,4427,4.0,1002939253 +452,4447,3.0,1008976192 +452,4450,4.0,1019314991 +452,4464,4.0,1077114739 +452,4465,4.0,1067731731 +452,4482,2.0,1077115176 +452,4486,2.5,1077115149 +452,4488,3.0,1002938285 +452,4499,2.5,1077114736 +452,4503,3.0,1077115514 +452,4508,3.5,1077115178 +452,4520,0.5,1077115158 +452,4537,4.5,1077115145 +452,4557,3.0,1133734919 +452,4571,3.0,1008974990 +452,4577,4.0,1008974990 +452,4638,1.0,1151812116 +452,4639,3.0,1002938659 +452,4641,4.0,1067732115 +452,4644,3.5,1151810913 +452,4670,2.5,1077115095 +452,4675,2.0,1077115138 +452,4686,0.5,1077114328 +452,4690,3.5,1077115128 +452,4703,3.0,1002938231 +452,4723,4.0,1044681084 +452,4727,0.5,1151812120 +452,4737,3.5,1151811186 +452,4769,4.0,1067731980 +452,4776,3.0,1151811136 +452,4787,3.0,1002938090 +452,4799,3.0,1002938072 +452,4803,3.0,1002938072 +452,4809,4.0,1002938052 +452,4810,4.0,1005425727 +452,4814,2.0,1151811963 +452,4815,3.0,1002938030 +452,4816,3.0,1151811768 +452,4835,2.5,1067732077 +452,4836,3.0,1002937999 +452,4851,4.0,1002937980 +452,4855,3.0,1002938231 +452,4862,2.0,1002937954 +452,4866,2.0,1044681131 +452,4867,3.5,1077114749 +452,4874,3.0,1044681111 +452,4880,4.0,1008975880 +452,4881,5.0,1044681131 +452,4885,2.5,1077115090 +452,4890,2.0,1151811859 +452,4903,5.0,1044681111 +452,4912,2.5,1133735678 +452,4921,2.5,1133734887 +452,4925,3.0,1008974990 +452,4932,3.5,1077115122 +452,4947,3.0,1008974990 +452,4963,3.0,1044681166 +452,4965,4.0,1044681084 +452,4967,5.0,1019314518 +452,4971,3.5,1077115125 +452,4973,5.0,1044681084 +452,4975,2.0,1151811548 +452,4979,3.0,1067732160 +452,4995,4.0,1044681084 +452,5008,4.0,1112044801 +452,5009,3.0,1077114287 +452,5010,3.0,1044681084 +452,5013,4.0,1067732187 +452,5014,2.5,1151811347 +452,5015,4.0,1019314518 +452,5016,3.0,1151811485 +452,5021,4.0,1077115132 +452,5023,4.0,1008974914 +452,5051,2.5,1151811271 +452,5060,5.0,1011922024 +452,5065,2.5,1077114746 +452,5073,4.0,1077115119 +452,5108,2.0,1151811743 +452,5120,4.0,1067732004 +452,5127,2.0,1151812014 +452,5135,3.0,1040499565 +452,5152,4.0,1077114724 +452,5186,2.0,1016590142 +452,5225,4.0,1067732284 +452,5237,2.0,1016590052 +452,5238,4.5,1077115487 +452,5241,2.0,1016590052 +452,5246,1.0,1016590031 +452,5247,1.0,1016590031 +452,5248,1.0,1016590031 +452,5266,4.0,1044681166 +452,5292,4.0,1019314780 +452,5293,3.0,1044681084 +452,5294,3.0,1040499592 +452,5299,4.5,1067732217 +452,5308,3.0,1019314713 +452,5309,3.0,1019314713 +452,5312,2.5,1151811875 +452,5341,4.0,1019314658 +452,5353,2.0,1019314625 +452,5354,3.0,1019314625 +452,5360,2.0,1019314625 +452,5364,2.5,1151811461 +452,5377,3.5,1067731794 +452,5379,4.5,1067731824 +452,5385,3.0,1067732088 +452,5388,3.0,1040499524 +452,5398,4.0,1067731708 +452,5415,1.5,1151812099 +452,5418,3.5,1077114405 +452,5445,4.0,1067732067 +452,5446,4.0,1133735217 +452,5447,3.0,1151811227 +452,5452,1.5,1077114294 +452,5459,2.5,1077114410 +452,5462,1.0,1040499760 +452,5464,4.0,1067731792 +452,5479,3.5,1077114731 +452,5481,3.0,1151811883 +452,5483,2.5,1133735449 +452,5502,4.0,1151811524 +452,5505,3.5,1133735304 +452,5528,3.0,1151811192 +452,5544,4.5,1077115081 +452,5581,2.0,1077115438 +452,5617,2.5,1133735277 +452,5619,3.5,1133735291 +452,5620,2.5,1151811952 +452,5625,3.0,1151811096 +452,5642,4.0,1040499703 +452,5666,0.5,1151811660 +452,5667,2.5,1077115029 +452,5668,3.0,1151811152 +452,5669,5.0,1067731943 +452,5673,2.5,1151811103 +452,5680,3.0,1151811430 +452,5693,3.0,1077114668 +452,5707,3.5,1133736073 +452,5747,4.5,1133735090 +452,5782,4.0,1133735161 +452,5787,2.0,1151812145 +452,5799,4.0,1040499703 +452,5801,4.5,1067732152 +452,5812,4.0,1067732205 +452,5815,1.0,1044681375 +452,5816,1.0,1044681319 +452,5832,1.0,1044681375 +452,5867,3.0,1133735107 +452,5874,1.0,1044681351 +452,5876,4.5,1067731838 +452,5878,4.0,1067732279 +452,5879,1.0,1044681375 +452,5881,2.0,1151811616 +452,5900,1.0,1044681351 +452,5902,3.0,1133735227 +452,5923,2.5,1077115399 +452,5942,1.0,1044681375 +452,5943,1.0,1044681335 +452,5945,4.0,1151811014 +452,5952,1.0,1044681274 +452,5954,4.0,1133735062 +452,5955,3.5,1151810970 +452,5956,3.0,1151811178 +452,5957,2.0,1077114708 +452,5963,3.5,1067731725 +452,5989,4.0,1133735049 +452,5991,3.5,1133735607 +452,5992,2.0,1133735355 +452,5995,4.0,1151810825 +452,6001,3.0,1040499503 +452,6003,3.0,1151811075 +452,6013,1.0,1044681375 +452,6016,4.0,1133734637 +452,6058,2.0,1151812020 +452,6101,4.0,1133735113 +452,6170,4.0,1133734978 +452,6178,3.0,1067731715 +452,6187,3.0,1151811371 +452,6188,3.0,1151811359 +452,6218,4.0,1133735295 +452,6269,3.5,1112044714 +452,6281,3.0,1151811532 +452,6287,1.5,1151811983 +452,6296,3.0,1133735495 +452,6299,5.0,1077115021 +452,6305,3.5,1133735651 +452,6323,3.0,1151811297 +452,6335,1.5,1133735804 +452,6337,4.0,1151811100 +452,6377,4.0,1133734908 +452,6378,3.5,1077114703 +452,6380,3.5,1133735533 +452,6385,3.5,1133735157 +452,6413,4.0,1077114389 +452,6428,1.0,1133735391 +452,6436,3.5,1067731787 +452,6440,4.0,1067732300 +452,6448,3.5,1133735118 +452,6449,4.0,1067731802 +452,6450,0.5,1067731764 +452,6452,3.5,1067731772 +452,6454,3.5,1133734881 +452,6461,4.0,1067731777 +452,6466,3.5,1133735558 +452,6502,3.5,1133735599 +452,6533,3.5,1077115017 +452,6535,0.5,1151812359 +452,6539,4.0,1151811049 +452,6552,3.5,1133735182 +452,6561,4.0,1077114324 +452,6565,3.5,1133735104 +452,6591,3.5,1151810937 +452,6592,2.0,1151811477 +452,6639,4.0,1067731756 +452,6678,2.0,1077115366 +452,6708,3.5,1151810482 +452,6711,3.5,1133735307 +452,6724,4.0,1067731721 +452,6751,0.5,1151812316 +452,6765,2.5,1151811593 +452,6770,3.5,1133735405 +452,6777,4.0,1133734828 +452,6779,3.5,1077115370 +452,6786,3.5,1133735204 +452,6787,5.0,1077115004 +452,6790,4.0,1151811205 +452,6794,2.5,1077115373 +452,6796,3.5,1067731984 +452,6810,3.0,1077114962 +452,6832,4.0,1077114974 +452,6840,3.5,1133735556 +452,6852,4.0,1067731712 +452,6870,4.0,1112044787 +452,6873,3.5,1151811495 +452,6879,2.5,1151811417 +452,6881,3.5,1133735025 +452,6885,1.0,1151812189 +452,6887,3.0,1151811385 +452,6890,4.0,1151811081 +452,6892,2.5,1151812069 +452,6896,3.5,1133736008 +452,6927,3.5,1151811719 +452,6932,2.0,1133734890 +452,6942,3.0,1133735683 +452,6945,3.0,1151810871 +452,6947,3.5,1133735462 +452,6950,2.5,1151811708 +452,6957,3.0,1151811264 +452,6963,4.0,1112045101 +452,6970,3.0,1133734790 +452,6979,3.5,1133735017 +452,6993,4.0,1077114379 +452,7001,3.0,1133735408 +452,7004,3.0,1077114989 +452,7008,2.0,1077115342 +452,7025,3.5,1112045086 +452,7060,3.0,1077114533 +452,7076,1.5,1133735384 +452,7084,3.5,1133735416 +452,7089,3.5,1133735793 +452,7091,3.5,1112044805 +452,7095,2.5,1077115348 +452,7096,5.0,1133735892 +452,7137,4.5,1133735429 +452,7139,4.0,1133734874 +452,7149,2.5,1151811410 +452,7151,3.0,1151811027 +452,7154,3.0,1151811779 +452,7156,3.5,1133735360 +452,7160,4.0,1133734939 +452,7162,2.5,1151811170 +452,7173,2.0,1151811969 +452,7215,4.5,1133735192 +452,7217,3.5,1133735032 +452,7223,2.5,1133735510 +452,7255,1.5,1151811947 +452,7256,3.5,1151810416 +452,7285,4.0,1133735134 +452,7294,1.5,1151812252 +452,7303,3.0,1112045092 +452,7334,3.5,1133735213 +452,7366,1.0,1151811824 +452,7381,1.5,1151812306 +452,7445,3.0,1151811285 +452,7449,1.5,1151812301 +452,7450,2.0,1151811981 +452,7478,3.5,1112044833 +452,7493,4.0,1133734796 +452,7560,3.5,1133734626 +452,7572,4.0,1112045084 +452,7584,3.0,1133734847 +452,7614,3.0,1133735704 +452,7619,3.5,1133734823 +452,7698,4.5,1133734835 +452,7705,3.5,1133734899 +452,7728,2.5,1133735237 +452,7836,3.5,1133735386 +452,7980,2.5,1133734937 +452,8011,3.5,1133734912 +452,8039,3.5,1133735224 +452,8128,4.5,1133735176 +452,8147,4.0,1112045081 +452,8191,4.5,1133734813 +452,8228,5.0,1133734650 +452,8332,3.5,1133735660 +452,8337,3.5,1133734998 +452,8361,3.5,1151811918 +452,8362,2.5,1151811990 +452,8373,1.0,1151812177 +452,8464,3.5,1133734981 +452,8529,2.0,1151811328 +452,8582,3.5,1151810600 +452,8610,3.0,1133735084 +452,8622,4.0,1133735196 +452,8641,3.0,1151811724 +452,8645,3.5,1151810353 +452,8665,3.5,1151811127 +452,8753,4.0,1112045210 +452,8781,2.5,1151811453 +452,8783,2.0,1151811732 +452,8784,4.5,1151810512 +452,8827,3.0,1133736063 +452,8838,3.0,1133735004 +452,8860,2.0,1151811681 +452,8870,2.5,1151811932 +452,8880,3.5,1133734995 +452,8916,3.0,1151811648 +452,8949,2.0,1133735128 +452,8958,4.0,1133735037 +452,8966,3.5,1151810963 +452,8969,2.0,1151812113 +452,8981,4.0,1133735371 +452,8984,2.0,1151811796 +452,8987,4.0,1151811322 +452,9018,3.5,1133735592 +452,25891,2.5,1133734820 +452,26084,4.0,1133735737 +452,26085,3.0,1133734760 +452,26178,3.5,1151810563 +452,26242,3.5,1151810367 +452,27808,3.0,1151811281 +452,27821,3.0,1151811440 +452,27822,3.0,1151811568 +452,27878,3.5,1151810928 +452,30707,3.5,1151810933 +452,30749,4.0,1133734809 +452,30810,1.5,1151811236 +452,30812,3.0,1151810959 +452,30816,3.0,1151811376 +452,30825,3.0,1151811880 +452,30894,2.0,1151812280 +452,30898,2.5,1151811397 +452,31035,4.5,1112044704 +452,31700,2.5,1151811898 +452,32029,2.0,1151811380 +452,32296,0.5,1151812222 +452,32369,3.0,1133734933 +452,33499,2.0,1151812243 +452,33669,3.0,1151811753 +452,34153,3.5,1151810949 +452,34542,3.5,1151811000 +452,36527,3.0,1133735170 +452,37741,4.5,1151810920 +452,39183,4.5,1151810945 +452,39292,5.0,1151810345 +452,40819,4.0,1151810329 +452,41569,4.0,1151811163 +453,44,4.0,994622468 +453,153,5.0,994622468 +453,173,3.0,994621919 +453,181,2.0,994622648 +453,185,5.0,994621902 +453,256,3.0,994621948 +453,258,4.0,994622032 +453,303,4.0,994622486 +453,317,3.0,994621552 +453,349,5.0,994622258 +453,368,5.0,994622258 +453,393,3.0,994622561 +453,435,3.0,994621902 +453,457,5.0,994622160 +453,480,3.0,994622184 +453,502,3.0,994622692 +453,552,3.0,994622360 +453,558,2.0,994622582 +453,589,4.0,994622141 +453,688,3.0,994622627 +453,694,2.0,994622627 +453,736,4.0,994622424 +453,737,3.0,994622032 +453,780,4.0,994621794 +453,1097,3.0,994621552 +453,1100,3.0,994622282 +453,1356,5.0,994621794 +453,1377,3.0,994622282 +453,1391,3.0,994622529 +453,1396,4.0,994621822 +453,1431,3.0,994622599 +453,1527,5.0,994621794 +453,1562,4.0,994622627 +453,1566,4.0,994621552 +453,1573,3.0,994621769 +453,1580,5.0,994622203 +453,1610,2.0,994622160 +453,1681,4.0,994622648 +453,1687,3.0,994622424 +453,1792,4.0,994622424 +453,1801,5.0,994622529 +453,1833,4.0,994622399 +453,1882,2.0,994622002 +453,1917,3.0,994621879 +453,1918,5.0,994622399 +453,2002,4.0,994622360 +453,2006,3.0,994622258 +453,2012,5.0,994621861 +453,2028,3.0,994622141 +453,2053,2.0,994622002 +453,2153,2.0,994622692 +453,2273,4.0,994622332 +453,2321,4.0,994621575 +453,2353,5.0,994622203 +453,2393,4.0,994622379 +453,2398,3.0,994621575 +453,2498,3.0,994622002 +453,2571,5.0,994621769 +453,2617,4.0,994622235 +453,2628,3.0,994621842 +453,2701,5.0,994622002 +453,2720,3.0,994622664 +453,2916,4.0,994621794 +453,3000,4.0,994622141 +453,3175,4.0,994621810 +453,3256,5.0,994622184 +453,3268,3.0,994622627 +453,3354,3.0,994622099 +453,3438,3.0,994622446 +453,3578,3.0,994622751 +453,3623,2.0,994622751 +453,3624,3.0,994622751 +453,3717,3.0,994622783 +453,3745,4.0,994622079 +453,3753,4.0,994622751 +453,3755,2.0,994622783 +453,3793,5.0,994622079 +453,3827,3.0,994622079 +453,3864,2.0,994622850 +453,3977,3.0,994622783 +453,3994,5.0,994622079 +453,3996,5.0,994622751 +453,3999,2.0,994622783 +453,4025,4.0,994622783 +453,4270,3.0,994621685 +453,4310,4.0,994621685 +454,50,5.0,1463382448 +454,260,5.0,1463382580 +454,293,5.0,1463382581 +454,296,5.0,1463382559 +454,318,4.0,1463382447 +454,593,4.0,1463382464 +454,608,5.0,1463382596 +454,750,3.0,1463382587 +454,858,5.0,1463382450 +454,1089,5.0,1463382590 +454,1193,5.0,1463382557 +454,1196,5.0,1463382573 +454,1201,5.0,1463382594 +454,1213,3.5,1463382468 +454,1221,5.0,1463382462 +454,2028,3.0,1463382596 +454,2329,3.5,1463382569 +454,2542,5.0,1463382521 +454,2571,4.0,1463382562 +454,2858,5.0,1463382576 +454,2959,5.0,1463382489 +454,3994,3.0,1463382532 +454,5995,5.0,1463382592 +454,6016,5.0,1463382563 +454,58559,5.0,1463382574 +454,79132,5.0,1463382582 +454,92259,3.5,1463382567 +455,1,3.5,1110395566 +455,47,4.5,1110395657 +455,145,3.0,1110395177 +455,165,3.5,1110395626 +455,296,4.0,1110395545 +455,344,4.5,1110395610 +455,356,3.5,1110395574 +455,364,3.5,1110395661 +455,377,3.5,1110395618 +455,457,4.0,1110395550 +455,480,5.0,1110395546 +455,520,3.5,1110395122 +455,589,4.5,1110395562 +455,592,4.0,1110395552 +455,648,4.0,1110395604 +455,673,2.5,1110395285 +455,736,4.0,1110395653 +455,780,4.5,1110395565 +455,1060,2.5,1110395232 +455,1092,4.0,1110395218 +455,1909,3.5,1110395203 +455,2167,3.5,1110395274 +455,2194,3.5,1110395129 +455,2329,4.5,1110395258 +455,2470,3.5,1110395248 +455,2502,4.0,1110395125 +455,3147,3.0,1110395141 +455,3160,0.5,1110395263 +455,3623,3.5,1110395168 +455,5445,4.0,1110395191 +455,5952,4.5,1110395149 +456,1,3.5,1432307903 +456,260,5.0,1432307935 +456,356,4.0,1432307893 +456,480,4.5,1432307901 +456,593,3.5,1432307916 +456,1196,4.0,1432308080 +456,1198,4.5,1432308011 +456,1210,4.5,1432308054 +456,1270,4.5,1432307891 +456,1291,4.5,1432308076 +456,2571,5.0,1432307886 +456,2692,4.0,1432309001 +456,3578,4.0,1432308166 +456,3702,4.0,1432308459 +456,3703,5.0,1432308480 +456,3704,2.5,1432308468 +456,3717,3.5,1432308374 +456,3793,4.0,1432308173 +456,3977,3.0,1432308273 +456,3996,4.5,1432308178 +456,4306,3.5,1432308168 +456,4886,3.5,1432308193 +456,4896,3.0,1432308260 +456,4963,4.5,1432308231 +456,4973,5.0,1432308190 +456,4993,4.0,1432308064 +456,4995,3.5,1432308239 +456,5349,3.5,1432308227 +456,5378,3.0,1432308277 +456,5418,3.0,1432308218 +456,5445,4.0,1432308197 +456,5459,3.5,1432308376 +456,5618,4.0,1432308293 +456,5903,5.0,1432308581 +456,5952,4.0,1432308073 +456,6350,4.0,1432332110 +456,6365,4.5,1432308271 +456,6377,3.5,1432308215 +456,6537,3.0,1432308420 +456,6539,4.0,1432308181 +456,6874,3.5,1432308219 +456,6934,4.0,1432308313 +456,7099,3.5,1432308955 +456,7143,4.0,1432308343 +456,7153,4.0,1432308061 +456,7438,3.5,1432308251 +456,8368,3.0,1432308300 +456,8644,4.0,1432308396 +456,8665,3.5,1432308295 +456,31658,4.0,1432332023 +456,33493,3.5,1432308317 +456,33794,3.5,1432308256 +456,44191,5.0,1432308597 +456,45722,4.0,1432308389 +456,58559,4.0,1432308059 +456,59315,4.0,1432308304 +456,70286,1.5,1432308441 +456,72998,4.0,1432308351 +456,73017,4.0,1432331631 +456,79132,3.0,1432308520 +456,91529,4.0,1432331743 +456,106471,5.0,1432332106 +456,106473,3.5,1432309050 +456,106762,4.0,1432308943 +456,107081,4.5,1432308937 +456,122882,4.0,1432308476 +456,130448,0.5,1432331602 +457,1,1.5,1471386200 +457,3,1.5,1471385241 +457,5,1.0,1471385747 +457,6,3.0,1471386884 +457,10,2.0,1471385100 +457,16,3.5,1471386880 +457,18,2.5,1471388600 +457,19,1.5,1471387811 +457,20,2.5,1471578972 +457,31,1.5,1471385561 +457,32,3.0,1471384581 +457,34,1.0,1471386491 +457,39,2.0,1471386519 +457,45,3.0,1471383926 +457,47,4.5,1471384576 +457,50,3.0,1471383313 +457,70,3.0,1471383662 +457,88,2.5,1471385106 +457,97,3.5,1471383765 +457,104,3.5,1471384806 +457,110,3.0,1471383479 +457,111,5.0,1471384449 +457,145,2.0,1471385443 +457,147,4.0,1471383839 +457,153,2.0,1471385581 +457,163,3.0,1471386088 +457,165,2.5,1471384873 +457,175,4.5,1471386974 +457,180,3.0,1471387310 +457,185,1.5,1471385505 +457,204,1.0,1471385757 +457,216,4.0,1471386037 +457,223,3.5,1471385880 +457,231,3.0,1471385154 +457,253,3.0,1471384714 +457,260,0.5,1471383563 +457,288,3.0,1471383679 +457,292,2.0,1471387885 +457,293,5.0,1471383382 +457,296,5.0,1471383370 +457,317,1.0,1471386810 +457,318,5.0,1471383282 +457,319,3.5,1471383906 +457,329,0.5,1471386581 +457,330,2.0,1471386819 +457,332,2.0,1471386607 +457,333,2.5,1471383804 +457,344,2.5,1471386254 +457,356,3.5,1471384637 +457,364,2.0,1471386114 +457,367,2.5,1471385069 +457,368,1.0,1471385350 +457,370,2.5,1471385199 +457,374,1.0,1471385650 +457,377,1.5,1471387536 +457,380,2.5,1471387442 +457,390,3.0,1471384063 +457,410,1.5,1471386650 +457,413,2.5,1471387428 +457,431,4.0,1471386891 +457,442,1.5,1471385499 +457,454,2.5,1471385082 +457,457,3.0,1471384712 +457,466,2.0,1471386435 +457,480,2.5,1471385095 +457,485,1.5,1471385317 +457,492,3.5,1471384852 +457,500,2.0,1471386330 +457,520,2.0,1471386387 +457,542,2.0,1471387575 +457,543,3.0,1471385053 +457,555,4.5,1471384565 +457,586,2.5,1471385180 +457,589,3.5,1471383535 +457,592,2.5,1471383567 +457,593,3.0,1471383289 +457,606,1.5,1471386806 +457,608,5.0,1471383410 +457,648,1.5,1471385244 +457,736,2.0,1471385547 +457,743,1.5,1471385648 +457,778,4.0,1471384462 +457,780,1.5,1471385127 +457,784,2.5,1471385159 +457,785,3.0,1471386102 +457,786,1.5,1471385526 +457,788,1.5,1471386602 +457,832,1.5,1471385448 +457,842,2.0,1471386386 +457,858,4.0,1471383286 +457,886,1.5,1471386439 +457,903,4.0,1471383421 +457,904,4.0,1471383406 +457,908,4.0,1471383427 +457,912,4.0,1471383402 +457,920,2.0,1471385324 +457,924,5.0,1471383448 +457,1020,2.0,1471386285 +457,1036,4.0,1471383526 +457,1060,4.0,1471388838 +457,1073,3.0,1471383670 +457,1089,4.0,1471383412 +457,1091,2.0,1471386494 +457,1092,2.5,1471386305 +457,1095,4.0,1471388375 +457,1101,2.5,1471385001 +457,1120,4.0,1471383826 +457,1193,3.5,1471383304 +457,1196,0.5,1471383398 +457,1198,2.0,1471386273 +457,1201,2.0,1471385845 +457,1203,3.0,1471384552 +457,1206,5.0,1471384416 +457,1210,0.5,1471383568 +457,1213,5.0,1471383372 +457,1222,4.5,1471384476 +457,1240,3.0,1471383549 +457,1244,4.0,1471384849 +457,1252,4.0,1471385869 +457,1258,5.0,1471383420 +457,1259,3.5,1471385882 +457,1263,4.0,1471384507 +457,1265,3.5,1471385918 +457,1270,4.0,1471383543 +457,1273,3.0,1471578840 +457,1285,3.0,1471383771 +457,1291,2.0,1471385123 +457,1304,0.5,1471384660 +457,1305,4.0,1471386545 +457,1330,2.0,1471386367 +457,1342,2.5,1471387458 +457,1343,4.0,1471383799 +457,1345,3.0,1471383751 +457,1347,3.0,1471385029 +457,1350,3.0,1471384630 +457,1370,2.5,1471385173 +457,1376,1.0,1471385454 +457,1377,2.5,1471387758 +457,1378,1.5,1471385606 +457,1388,1.5,1471386444 +457,1391,2.5,1471386091 +457,1393,3.0,1471383501 +457,1405,2.5,1471386213 +457,1407,2.0,1471384967 +457,1431,1.5,1471385392 +457,1461,2.0,1471385485 +457,1464,4.0,1471384541 +457,1466,4.0,1471385841 +457,1483,3.0,1471386788 +457,1485,2.0,1471386297 +457,1517,3.0,1471384645 +457,1552,0.5,1471385515 +457,1573,0.5,1471385188 +457,1594,3.5,1471409469 +457,1608,1.5,1471385539 +457,1617,3.5,1471384562 +457,1620,2.5,1471386801 +457,1625,3.0,1471384664 +457,1644,1.5,1471385381 +457,1645,2.5,1471386375 +457,1673,4.5,1471384496 +457,1676,1.0,1471386418 +457,1682,3.0,1471383442 +457,1704,4.0,1471383423 +457,1717,1.5,1471386635 +457,1729,3.5,1471385855 +457,1732,3.0,1471384509 +457,1777,3.5,1471384772 +457,1805,2.5,1471386381 +457,1836,3.0,1471384112 +457,1884,4.0,1471383643 +457,1911,1.5,1471386464 +457,1912,3.0,1471578984 +457,1921,3.5,1471578878 +457,1923,3.0,1471384774 +457,1952,3.5,1471579886 +457,1953,3.5,1471384672 +457,1964,3.0,1471384042 +457,1968,3.5,1471384579 +457,1969,2.0,1471386584 +457,1971,2.0,1471386659 +457,1972,1.5,1471385669 +457,1973,2.0,1471385546 +457,1974,3.0,1471383860 +457,1975,2.5,1471385314 +457,1976,2.0,1471385657 +457,1977,2.0,1471385524 +457,1979,2.0,1471385700 +457,1982,3.0,1471384742 +457,1985,1.5,1471385501 +457,1991,2.5,1471385171 +457,1992,2.0,1471385706 +457,1995,2.0,1471385570 +457,1997,3.5,1471386933 +457,2000,2.0,1471386206 +457,2001,1.5,1471385306 +457,2002,1.0,1471385007 +457,2004,1.5,1471385520 +457,2005,3.5,1471384649 +457,2011,2.0,1471386193 +457,2012,2.0,1471385010 +457,2042,2.0,1471385602 +457,2054,1.5,1471385472 +457,2059,1.5,1471386612 +457,2064,3.0,1471387235 +457,2072,2.5,1471386409 +457,2076,5.0,1471384425 +457,2080,1.5,1471386823 +457,2081,1.0,1471386351 +457,2082,2.0,1471385235 +457,2115,2.0,1471385117 +457,2120,2.5,1471386344 +457,2122,2.5,1471385255 +457,2124,2.0,1471386307 +457,2133,3.0,1471385152 +457,2134,2.5,1471387354 +457,2144,3.5,1471384679 +457,2145,3.0,1471384876 +457,2160,4.5,1471384570 +457,2174,3.5,1471384725 +457,2231,4.0,1471386554 +457,2273,1.5,1471386836 +457,2280,3.5,1471388894 +457,2291,3.0,1471387169 +457,2301,2.5,1471387326 +457,2302,3.0,1471385059 +457,2315,1.5,1471385428 +457,2318,4.0,1471383847 +457,2329,4.0,1471383394 +457,2335,2.5,1471385067 +457,2353,2.0,1471385133 +457,2355,1.5,1471386374 +457,2372,1.5,1471386637 +457,2375,2.0,1471385487 +457,2378,2.5,1471386505 +457,2387,3.0,1471383969 +457,2391,3.5,1471383898 +457,2395,3.0,1471384669 +457,2405,2.0,1471385503 +457,2407,2.5,1471384989 +457,2408,1.5,1471385750 +457,2409,2.0,1471386447 +457,2410,2.0,1471385549 +457,2411,2.0,1471385709 +457,2416,2.0,1471386427 +457,2420,3.0,1471384734 +457,2447,1.5,1471387450 +457,2459,3.5,1471386054 +457,2463,3.0,1471386076 +457,2468,2.5,1471385463 +457,2470,2.0,1471384982 +457,2478,1.5,1471385422 +457,2495,3.0,1471383945 +457,2502,4.0,1471384615 +457,2513,2.5,1471386222 +457,2517,2.5,1471386234 +457,2541,2.0,1471386276 +457,2542,3.5,1471384619 +457,2571,3.0,1471383481 +457,2599,3.5,1471383792 +457,2616,2.0,1471386476 +457,2640,1.5,1471385284 +457,2641,1.5,1471385727 +457,2694,2.5,1471384959 +457,2699,1.5,1471386706 +457,2700,3.0,1471385937 +457,2706,2.5,1471386219 +457,2710,2.0,1471386300 +457,2712,5.0,1471384395 +457,2716,3.0,1471386089 +457,2717,1.5,1471385294 +457,2726,3.0,1471389061 +457,2735,3.0,1471385739 +457,2746,2.5,1471386141 +457,2762,3.0,1471384759 +457,2790,1.5,1471385634 +457,2792,2.0,1471386349 +457,2794,2.0,1471385528 +457,2795,3.0,1471384732 +457,2796,2.0,1471385673 +457,2797,3.0,1471384758 +457,2803,2.0,1471386486 +457,2804,3.5,1471383743 +457,2858,3.5,1471383391 +457,2867,2.0,1471387411 +457,2871,4.0,1471384593 +457,2902,0.5,1471385361 +457,2915,2.5,1471387286 +457,2916,3.5,1471384939 +457,2918,4.0,1471383524 +457,2947,1.5,1471386403 +457,2948,1.0,1471385722 +457,2952,3.0,1471388626 +457,2959,4.0,1471383293 +457,2985,2.5,1471386268 +457,2987,2.5,1471386110 +457,2989,1.5,1471385114 +457,2997,4.0,1471383437 +457,3006,3.0,1471383769 +457,3017,2.0,1471386449 +457,3033,2.5,1471386161 +457,3039,4.0,1471385948 +457,3040,2.5,1471387515 +457,3052,2.5,1471386176 +457,3087,2.5,1471386296 +457,3114,1.5,1471386310 +457,3146,2.5,1471386506 +457,3160,3.5,1471384556 +457,3168,4.0,1471383820 +457,3173,2.5,1471388396 +457,3208,1.5,1471386620 +457,3210,3.5,1471384782 +457,3243,2.0,1471385497 +457,3247,2.0,1471385331 +457,3248,1.5,1471385716 +457,3249,2.0,1471386604 +457,3253,3.5,1471384750 +457,3254,2.5,1471385051 +457,3255,2.5,1471387511 +457,3256,2.0,1471386484 +457,3257,2.0,1471385493 +457,3262,4.0,1471384431 +457,3272,4.0,1471384924 +457,3275,2.5,1471385986 +457,3285,2.5,1471387085 +457,3362,3.5,1471385852 +457,3388,1.5,1471386698 +457,3421,3.0,1471383796 +457,3424,4.5,1471383853 +457,3438,2.5,1471385376 +457,3439,1.5,1471385680 +457,3444,2.5,1471386371 +457,3450,1.5,1471385469 +457,3452,1.5,1471385760 +457,3468,3.5,1471383841 +457,3476,3.0,1471578889 +457,3481,4.0,1471384680 +457,3499,4.0,1471384558 +457,3527,2.0,1471387425 +457,3552,3.5,1471385954 +457,3556,4.0,1471386029 +457,3578,2.5,1471383476 +457,3608,3.5,1471384811 +457,3617,2.0,1471387613 +457,3624,1.5,1471385412 +457,3676,3.5,1471384547 +457,3683,3.0,1471579053 +457,3688,2.0,1471386413 +457,3697,1.5,1471385627 +457,3708,2.5,1471387593 +457,3717,1.0,1471385742 +457,3725,3.5,1471409602 +457,3752,2.0,1471385163 +457,3753,1.0,1471385355 +457,3785,2.0,1471386682 +457,3788,5.0,1471383894 +457,3825,1.5,1471385763 +457,3863,2.0,1471388887 +457,3868,3.0,1471385983 +457,3869,2.5,1471386170 +457,3897,3.5,1471384626 +457,3918,2.0,1471386248 +457,3948,1.5,1471387409 +457,3949,3.5,1471384470 +457,3955,2.0,1471386488 +457,3968,1.5,1471385457 +457,3979,2.5,1471385598 +457,3984,1.0,1471385432 +457,3994,1.5,1471387672 +457,3996,3.0,1471386117 +457,4002,3.0,1471385988 +457,4007,3.5,1471383787 +457,4010,2.5,1471386405 +457,4011,3.0,1471384611 +457,4018,0.5,1471386711 +457,4022,2.5,1471386225 +457,4027,3.0,1471384736 +457,4034,3.0,1471384675 +457,4040,2.0,1471386590 +457,4069,1.5,1471385416 +457,4084,2.5,1471384985 +457,4085,3.5,1471384737 +457,4132,2.0,1471385513 +457,4149,2.0,1471386253 +457,4214,3.0,1471385088 +457,4226,3.0,1471384608 +457,4235,3.5,1471384544 +457,4239,3.5,1471384639 +457,4247,2.5,1471385121 +457,4262,4.5,1471384577 +457,4293,2.0,1471385552 +457,4321,2.5,1471387506 +457,4333,3.0,1471386433 +457,4340,1.5,1471385696 +457,4351,2.5,1471387558 +457,4450,4.0,1471384035 +457,4452,2.0,1471388861 +457,4480,2.0,1471386631 +457,4487,2.0,1471385465 +457,4489,3.0,1471387202 +457,4499,2.5,1471387229 +457,4509,2.5,1471387553 +457,4520,2.5,1471385737 +457,4531,2.0,1471386700 +457,4545,2.5,1471385264 +457,4558,2.0,1471385396 +457,4571,3.0,1471384740 +457,4614,2.0,1471386647 +457,4621,1.5,1471385409 +457,4623,3.0,1471387342 +457,4641,3.0,1471384770 +457,4677,1.5,1471386466 +457,4679,2.5,1471387441 +457,4701,1.0,1471386588 +457,4718,1.5,1471386510 +457,4734,2.0,1471386123 +457,4776,3.0,1471385993 +457,4816,2.5,1471384880 +457,4848,4.0,1471384459 +457,4878,4.0,1471383435 +457,4886,1.0,1471386653 +457,4888,3.0,1471384100 +457,4890,2.0,1471385268 +457,4896,1.5,1471385441 +457,4929,1.5,1471385717 +457,4963,3.0,1471385008 +457,4975,2.0,1471385451 +457,4979,2.5,1471383628 +457,4980,1.5,1471385125 +457,4995,3.0,1471386063 +457,5002,3.5,1471409592 +457,5027,1.5,1471385559 +457,5060,2.0,1471385645 +457,5074,3.5,1471384105 +457,5151,1.5,1471385597 +457,5219,1.5,1471385508 +457,5225,3.5,1471385952 +457,5266,2.5,1471385260 +457,5283,1.5,1471386341 +457,5308,2.0,1471385327 +457,5323,1.0,1471385756 +457,5337,2.0,1471388005 +457,5349,1.5,1471385506 +457,5418,2.0,1471386362 +457,5445,1.5,1471385146 +457,5449,2.0,1471387973 +457,5481,2.0,1471385109 +457,5541,2.0,1471387459 +457,5620,1.5,1471386594 +457,5669,3.0,1471383649 +457,5673,3.0,1471385055 +457,5679,3.5,1471385251 +457,5810,3.0,1471386359 +457,5879,2.0,1471386525 +457,5900,1.5,1471385379 +457,5952,0.5,1471383517 +457,5956,2.5,1471384999 +457,5970,2.5,1471386327 +457,5989,3.5,1471384775 +457,6016,5.0,1471383375 +457,6155,1.5,1471386616 +457,6188,4.0,1471384767 +457,6281,2.0,1471387633 +457,6287,2.0,1471385201 +457,6333,1.0,1471385629 +457,6338,1.5,1471385573 +457,6373,2.0,1471385086 +457,6440,3.5,1471384635 +457,6548,2.0,1471385384 +457,6586,2.0,1471385075 +457,6593,1.0,1471386685 +457,6595,1.5,1471385684 +457,6615,1.5,1471386705 +457,6620,4.0,1471385900 +457,6711,4.0,1471385911 +457,6774,3.0,1471386779 +457,6796,4.0,1471383837 +457,6811,1.5,1471387772 +457,6863,3.0,1471384768 +457,6870,3.5,1471383333 +457,6874,3.0,1471383443 +457,6936,2.5,1471387498 +457,6944,2.0,1471386339 +457,6975,3.0,1471383836 +457,7004,2.5,1471385374 +457,7007,2.0,1471386396 +457,7012,2.0,1471387749 +457,7026,2.0,1471386469 +457,7036,2.5,1471387813 +457,7044,3.0,1471384614 +457,7102,2.5,1471387666 +457,7123,3.0,1471384897 +457,7143,1.5,1471385193 +457,7153,0.5,1471383508 +457,7317,2.0,1471386217 +457,7318,0.5,1471383728 +457,7325,1.5,1471386408 +457,7360,1.5,1471386313 +457,7361,3.5,1471384605 +457,7367,2.5,1471579108 +457,7376,1.0,1471385735 +457,7419,3.0,1471383868 +457,7438,3.0,1471383473 +457,7445,2.5,1471386278 +457,7616,3.0,1471579461 +457,7802,4.0,1471388989 +457,8268,2.5,1471387949 +457,8368,1.5,1471385481 +457,8371,1.5,1471385613 +457,8464,2.5,1471387211 +457,8528,2.0,1471386185 +457,8614,2.5,1471387559 +457,8622,3.0,1471383677 +457,8623,2.0,1471387424 +457,8636,0.5,1471387030 +457,8641,2.5,1471386039 +457,8644,1.5,1471385290 +457,8665,2.0,1471386460 +457,8783,2.0,1471385149 +457,8807,2.5,1471386023 +457,8808,1.0,1471385616 +457,8873,3.5,1471383738 +457,8910,2.5,1471387488 +457,8917,2.5,1471386160 +457,8949,4.5,1471385219 +457,8950,3.5,1471384686 +457,8957,2.5,1471386167 +457,8958,3.0,1471384745 +457,8961,2.0,1471385320 +457,8972,0.5,1471386709 +457,8984,3.0,1471384973 +457,26614,2.0,1471386430 +457,26726,2.5,1471386565 +457,27611,0.5,1471383660 +457,27773,4.0,1471384502 +457,27831,3.0,1471385128 +457,27839,1.5,1471386567 +457,30825,2.5,1471384816 +457,31685,2.0,1471386452 +457,31696,2.0,1471385111 +457,32587,3.0,1471383447 +457,32598,2.0,1471579934 +457,32914,3.0,1471384033 +457,33004,2.0,1471386818 +457,33162,1.5,1471385593 +457,33166,3.0,1471383451 +457,33679,1.0,1471385371 +457,34162,3.0,1471384809 +457,34534,2.0,1471386713 +457,35836,3.5,1471384861 +457,37384,2.5,1471387549 +457,37727,2.0,1471385590 +457,37733,3.5,1471386782 +457,38061,2.5,1471384797 +457,39446,1.5,1471386365 +457,40815,1.0,1471385594 +457,41285,3.0,1471578622 +457,42011,1.0,1471385354 +457,42013,1.5,1471386665 +457,42725,3.0,1471386069 +457,44022,1.5,1471385467 +457,44191,3.0,1471383494 +457,45186,1.0,1471385724 +457,45431,1.0,1471385618 +457,45517,2.0,1471385421 +457,45722,0.5,1471385754 +457,45728,2.0,1471386094 +457,45950,2.5,1471387401 +457,46578,3.0,1471384780 +457,46970,2.5,1471385017 +457,46972,1.5,1471385567 +457,46976,2.5,1471384891 +457,47640,1.5,1471385286 +457,48043,3.0,1471578899 +457,48385,3.0,1471383617 +457,48394,3.5,1471385872 +457,48516,3.0,1471383464 +457,48780,3.5,1471385026 +457,49272,1.5,1471385239 +457,50851,3.5,1471388652 +457,51662,2.5,1471383583 +457,52245,2.0,1471385104 +457,52287,1.0,1471385666 +457,52722,0.5,1471387035 +457,52973,3.0,1471384825 +457,53322,2.0,1471386521 +457,53519,2.5,1471386074 +457,53894,2.0,1471387293 +457,54004,2.0,1471386688 +457,54272,2.0,1471386499 +457,54286,2.0,1471385258 +457,54503,3.0,1471384749 +457,54732,1.5,1471385461 +457,55118,3.5,1471385858 +457,55247,1.5,1471384510 +457,55269,2.5,1471386105 +457,55290,3.0,1471384869 +457,55820,5.0,1471384523 +457,56174,1.5,1471385347 +457,56367,3.0,1471384716 +457,56782,5.0,1471383610 +457,56805,3.0,1471386336 +457,57669,3.5,1471383616 +457,58156,1.5,1471385302 +457,58299,1.5,1471385555 +457,58559,0.5,1471383397 +457,58803,2.5,1471386528 +457,58998,3.0,1471385996 +457,59022,3.0,1471385131 +457,59315,1.0,1471385628 +457,59369,1.5,1471385414 +457,59421,1.0,1471385661 +457,59900,1.5,1471385425 +457,60756,3.0,1471383671 +457,61024,3.0,1471383641 +457,61132,1.5,1471386203 +457,61240,3.5,1471385831 +457,61323,3.0,1471384598 +457,62434,2.5,1471384993 +457,63082,3.5,1471383429 +457,63131,1.5,1471387303 +457,64614,2.5,1471385042 +457,64839,4.5,1471384474 +457,67734,2.5,1471386067 +457,68157,3.0,1471386073 +457,69122,3.5,1471386235 +457,69134,3.5,1471386752 +457,69306,1.5,1471387481 +457,69757,3.5,1471384527 +457,69784,2.5,1471383716 +457,70728,3.0,1471386911 +457,71464,2.5,1471383776 +457,72737,1.0,1471385663 +457,72998,0.5,1471383578 +457,73017,1.5,1471385388 +457,74458,2.5,1471383512 +457,76077,2.5,1471385141 +457,76251,1.5,1471385474 +457,77455,3.0,1471383692 +457,78039,3.0,1471386942 +457,78209,2.5,1471385077 +457,79132,3.0,1471383386 +457,80489,3.0,1471385014 +457,81591,4.5,1471383528 +457,82035,2.5,1471388660 +457,82852,1.5,1471385537 +457,86320,3.5,1471386754 +457,86882,3.0,1471578485 +457,86911,1.5,1471386517 +457,88129,4.0,1471384702 +457,88954,1.5,1471386834 +457,89492,2.0,1471386656 +457,91529,0.5,1471383574 +457,93831,1.0,1471388129 +457,95441,2.5,1471385277 +457,95740,0.5,1471386815 +457,96110,2.0,1471387997 +457,96488,3.0,1471384950 +457,96728,4.0,1471384722 +457,96829,3.0,1471383665 +457,97913,1.0,1471385651 +457,97923,3.0,1471386120 +457,98961,0.5,1471386623 +457,100581,2.5,1471387658 +457,101112,0.5,1471387038 +457,101285,3.0,1471387002 +457,101525,3.5,1471385944 +457,102123,2.5,1471387499 +457,102194,2.5,1471383710 +457,102407,2.0,1471387284 +457,102684,4.0,1471387313 +457,102686,1.5,1471385518 +457,102905,3.0,1471387023 +457,103801,2.5,1471387186 +457,103813,2.5,1471388008 +457,106072,0.5,1471383601 +457,106100,3.0,1471386060 +457,106236,3.0,1471389097 +457,106330,1.5,1471385632 +457,106487,0.5,1471383597 +457,106766,3.5,1471385924 +457,106782,4.0,1471383503 +457,106916,3.0,1471385981 +457,106920,3.5,1471384504 +457,107348,1.5,1471385300 +457,108727,4.0,1471386738 +457,108981,4.0,1471386746 +457,109374,2.5,1471387192 +457,110110,3.0,1471383939 +457,112183,3.5,1471387165 +457,112290,3.0,1471386950 +457,112552,3.5,1471383604 +457,112556,3.0,1471384971 +457,114060,3.5,1471386043 +457,114662,0.5,1471386135 +457,115569,3.0,1471385977 +457,119141,2.0,1471385167 +457,120392,2.5,1471578540 +457,122882,0.5,1471383595 +457,122886,0.5,1471383344 +457,122904,0.5,1471383348 +457,126106,3.5,1471409573 +457,127198,2.5,1471388562 +457,128520,1.0,1471385702 +457,131013,1.5,1471385543 +457,133295,2.5,1471388667 +457,139385,3.5,1471385246 +457,140174,3.5,1471383351 +457,142488,2.0,1471386260 +457,145307,2.5,1471388180 +457,145775,3.0,1471388580 +457,152025,2.5,1471389099 +457,152081,1.5,1471385509 +458,1,3.5,1365115663 +458,10,4.0,1365115941 +458,34,3.0,1365115878 +458,47,4.0,1365115711 +458,105,3.5,1337555657 +458,110,4.0,1365115659 +458,165,3.5,1365115767 +458,208,3.0,1365116004 +458,231,2.5,1365115836 +458,288,2.5,1365116149 +458,296,4.0,1365115682 +458,318,5.0,1365115653 +458,356,5.0,1365115640 +458,364,4.0,1365115753 +458,377,4.0,1365115715 +458,431,3.0,1337555697 +458,454,4.0,1365116028 +458,480,2.5,1365115649 +458,527,4.0,1365115671 +458,539,4.0,1365115983 +458,541,3.5,1365115978 +458,587,3.0,1365115966 +458,590,4.0,1365115697 +458,593,4.5,1365115645 +458,597,4.0,1365115843 +458,648,4.5,1365115749 +458,733,3.5,1365115847 +458,736,3.0,1365115778 +458,783,2.5,1337555639 +458,858,4.0,1365115738 +458,1036,3.5,1365115971 +458,1089,2.5,1365116036 +458,1097,4.0,1365115840 +458,1197,4.0,1337555830 +458,1198,3.5,1365115728 +458,1200,3.5,1365116040 +458,1206,4.0,1365116162 +458,1214,4.0,1365115961 +458,1221,4.0,1365116078 +458,1240,3.5,1365115862 +458,1265,4.0,1365115909 +458,1270,3.0,1365115723 +458,1275,3.5,1337555610 +458,1291,4.0,1365115953 +458,1371,3.5,1337555674 +458,1375,3.5,1337555615 +458,1377,3.0,1337555590 +458,1527,3.5,1365116083 +458,1721,4.5,1365115781 +458,1923,3.5,1365116114 +458,1961,5.0,1365116047 +458,2028,3.0,1365115758 +458,2273,3.0,1337555689 +458,2294,2.0,1337555661 +458,2539,3.0,1337555704 +458,2571,4.5,1337555823 +458,2628,4.0,1365115936 +458,2683,2.5,1365116106 +458,2701,3.0,1337555626 +458,2706,4.0,1365116157 +458,2716,4.0,1365115990 +458,2959,2.5,1365115771 +458,3033,2.5,1337555619 +458,3101,3.0,1337555583 +458,3147,4.0,1354978930 +458,3578,4.5,1365115892 +458,3717,4.0,1337555692 +458,3793,4.0,1365116068 +458,3996,3.0,1365116120 +458,4306,4.0,1365115886 +458,4993,5.0,1365115791 +458,5952,5.0,1365115868 +458,6539,4.0,1365116169 +458,7153,5.0,1337555836 +458,7438,4.0,1354978918 +458,49272,3.5,1337555666 +459,1,5.0,859210690 +459,3,4.0,859210733 +459,6,4.0,859210733 +459,7,3.0,859210733 +459,14,4.0,859210803 +459,25,5.0,859210691 +459,32,4.0,859210690 +459,36,4.0,859210733 +459,79,2.0,859210803 +459,95,4.0,859210691 +459,104,4.0,859210761 +459,135,2.0,859210803 +459,260,5.0,859210761 +459,628,4.0,859210803 +459,648,4.0,859210690 +459,653,4.0,859210761 +459,733,4.0,859210733 +459,736,3.0,859210690 +459,780,4.0,859210690 +459,788,5.0,859210761 +459,1073,5.0,859210733 +459,1356,4.0,859210803 +460,1,4.5,1072836909 +460,4,3.5,1072837815 +460,29,4.0,1072836608 +460,32,4.0,1072836688 +460,45,4.0,1072836078 +460,47,2.5,1072836886 +460,48,2.5,1072836067 +460,50,4.5,1072836483 +460,94,2.5,1072836469 +460,95,3.5,1072838019 +460,162,3.5,1072837377 +460,176,1.5,1072837086 +460,203,3.0,1072837875 +460,223,4.0,1072836864 +460,236,1.5,1072835963 +460,260,4.5,1072836994 +460,281,4.5,1072836501 +460,293,4.0,1072836805 +460,296,4.0,1072836897 +460,300,1.5,1072836838 +460,318,5.0,1072836586 +460,327,3.0,1072837585 +460,337,4.5,1072836719 +460,342,4.5,1072836034 +460,348,2.0,1072837293 +460,356,1.5,1072839132 +460,357,5.0,1072839259 +460,410,2.5,1072838351 +460,434,1.5,1072838174 +460,441,4.0,1072837232 +460,442,3.5,1072838136 +460,457,3.5,1072837123 +460,471,5.0,1072836030 +460,497,5.0,1072838843 +460,517,2.0,1072837821 +460,520,2.0,1072838505 +460,529,3.0,1072836010 +460,543,3.0,1072836074 +460,551,3.5,1072836757 +460,562,4.0,1072836717 +460,585,4.0,1072838640 +460,592,3.5,1072837098 +460,593,4.0,1072836971 +460,595,4.0,1072839194 +460,608,4.0,1072836705 +460,637,3.0,1072837714 +460,671,4.5,1072836530 +460,719,2.0,1072837859 +460,745,5.0,1072836583 +460,778,4.0,1072836900 +460,784,4.0,1072835996 +460,852,1.5,1072836013 +460,866,3.5,1072837222 +460,898,5.0,1072838911 +460,899,5.0,1072838860 +460,904,4.5,1072837140 +460,908,4.0,1072839318 +460,911,4.0,1072838953 +460,912,5.0,1072839331 +460,913,4.0,1072836061 +460,916,4.0,1072837436 +460,919,4.0,1072839367 +460,950,5.0,1072837419 +460,954,4.0,1072839340 +460,994,3.5,1072837195 +460,1010,4.0,1072838001 +460,1030,4.5,1072838037 +460,1036,4.5,1072836921 +460,1050,4.0,1072837466 +460,1060,4.5,1072836820 +460,1073,5.0,1072836977 +460,1079,4.5,1072836802 +460,1080,5.0,1072835970 +460,1081,4.0,1072838757 +460,1089,4.0,1072836637 +460,1090,3.5,1072837060 +460,1091,3.5,1072838148 +460,1095,4.0,1072837491 +460,1136,5.0,1072836764 +460,1148,4.5,1072836538 +460,1171,4.0,1072837289 +460,1172,3.5,1072839378 +460,1177,4.0,1072839118 +460,1196,5.0,1072836946 +460,1197,5.0,1072836690 +460,1198,5.0,1072836595 +460,1200,3.5,1072836778 +460,1213,4.0,1072836664 +460,1219,4.0,1072837023 +460,1220,3.5,1072837508 +460,1223,3.5,1072836736 +460,1225,3.0,1072837133 +460,1231,3.5,1072837202 +460,1235,4.0,1072837018 +460,1242,2.0,1072836775 +460,1245,4.5,1072836486 +460,1247,5.0,1072839347 +460,1249,4.5,1072837386 +460,1257,5.0,1072836588 +460,1259,4.0,1072836726 +460,1265,4.0,1072836794 +460,1266,4.0,1072836950 +460,1270,4.0,1072836861 +460,1284,4.5,1072837479 +460,1285,5.0,1072836496 +460,1288,5.0,1072836808 +460,1291,4.0,1072836966 +460,1302,2.5,1072838976 +460,1304,4.0,1072839440 +460,1320,3.5,1072838404 +460,1358,4.0,1072837269 +460,1380,4.5,1072838778 +460,1394,4.5,1072837025 +460,1411,3.5,1072837514 +460,1449,4.0,1072836388 +460,1500,5.0,1072835999 +460,1517,3.0,1072835945 +460,1588,4.0,1072838121 +460,1617,3.5,1072836561 +460,1635,4.0,1072837524 +460,1645,1.0,1072838873 +460,1673,4.0,1072836998 +460,1682,3.5,1072837015 +460,1704,4.0,1072837079 +460,1801,1.0,1072838238 +460,1816,0.5,1072837967 +460,1834,4.0,1072837260 +460,1912,3.5,1072836913 +460,1917,1.5,1072835988 +460,1924,2.0,1072838158 +460,1959,4.0,1072838753 +460,1961,3.0,1072837336 +460,1966,4.0,1072837256 +460,1968,4.5,1072837329 +460,2014,3.5,1072838192 +460,2020,5.0,1072837101 +460,2064,4.5,1072837306 +460,2109,4.5,1072837198 +460,2174,4.0,1072835949 +460,2248,4.0,1072836410 +460,2252,3.5,1072837671 +460,2269,1.5,1072837578 +460,2289,4.5,1072837117 +460,2291,4.0,1072835954 +460,2318,4.0,1072839020 +460,2321,4.0,1072837430 +460,2324,3.5,1072837108 +460,2333,3.5,1072837504 +460,2335,3.0,1072838429 +460,2336,4.0,1072836679 +460,2372,4.0,1072837869 +460,2387,2.5,1072837896 +460,2391,3.0,1072837277 +460,2395,3.0,1072836041 +460,2405,4.0,1072838390 +460,2431,0.5,1072837799 +460,2490,3.5,1072838804 +460,2502,4.0,1072836617 +460,2542,4.0,1072837350 +460,2571,4.0,1072836875 +460,2580,4.0,1072836667 +460,2599,4.5,1072836541 +460,2640,3.5,1072836049 +460,2692,3.5,1072836492 +460,2693,4.0,1072836761 +460,2707,4.0,1072838996 +460,2716,5.0,1072836924 +460,2717,3.5,1072837806 +460,2735,2.0,1072837846 +460,2750,3.5,1072837454 +460,2761,4.0,1072836318 +460,2762,4.0,1072836640 +460,2791,3.5,1072836814 +460,2794,0.5,1072837842 +460,2795,4.0,1072837319 +460,2797,4.5,1072837253 +460,2804,3.5,1072836057 +460,2829,4.0,1072838048 +460,2858,4.5,1072836700 +460,2890,4.0,1072836578 +460,2912,3.5,1072837012 +460,2918,4.5,1072836415 +460,2942,4.0,1072837675 +460,2947,4.0,1072837413 +460,2959,3.5,1072836548 +460,2997,5.0,1072836744 +460,3007,3.5,1072836459 +460,3039,4.0,1072837394 +460,3060,3.0,1072837246 +460,3067,4.0,1072837341 +460,3114,4.0,1072836601 +460,3210,4.0,1072837068 +460,3253,3.5,1072836787 +460,3258,1.0,1072838248 +460,3265,2.5,1072836343 +460,3267,3.5,1072836622 +460,3317,4.0,1072836551 +460,3359,4.0,1072839361 +460,3361,4.0,1072837344 +460,3396,4.0,1072836422 +460,3421,5.0,1072836984 +460,3424,2.0,1072837458 +460,3429,5.0,1072836439 +460,3435,4.0,1072836629 +460,3444,3.5,1072838302 +460,3481,4.5,1072836669 +460,3489,3.5,1072838359 +460,3499,3.0,1072836693 +460,3505,4.5,1072838964 +460,3526,4.0,1072837463 +460,3624,4.0,1072839072 +460,3638,3.5,1072838603 +460,3671,4.0,1072837173 +460,3683,4.0,1072837032 +460,3707,4.0,1072838310 +460,3751,4.5,1072837373 +460,3791,4.0,1072838446 +460,3882,4.0,1072839097 +460,3897,4.0,1072836615 +460,3911,4.5,1072836512 +460,3949,1.5,1072837142 +460,3983,4.0,1072836750 +460,3987,3.0,1072838689 +460,3988,2.5,1072837948 +460,3996,4.0,1072836473 +460,4002,3.5,1072836685 +460,4011,4.0,1072837272 +460,4027,4.5,1072836571 +460,4029,4.5,1072839031 +460,4039,2.0,1072838708 +460,4116,3.5,1072836464 +460,4226,5.0,1072836360 +460,4232,4.0,1072839207 +460,4235,3.5,1072837301 +460,4396,4.0,1072837863 +460,4447,4.0,1072839086 +460,4467,2.5,1072836847 +460,4474,2.5,1072837961 +460,4621,1.5,1072837684 +460,4641,4.0,1072836790 +460,4660,4.5,1072838486 +460,4700,3.5,1072837622 +460,4816,4.0,1072839060 +460,4855,4.0,1072836960 +460,4886,3.5,1072836858 +460,4973,5.0,1072836566 +460,4979,4.0,1072836604 +460,4993,3.5,1072836526 +460,5012,2.0,1072837919 +460,5013,4.5,1072839146 +460,5034,4.0,1072836851 +460,5303,3.5,1072838551 +460,5308,1.5,1072837748 +460,5377,4.0,1072836413 +460,5444,4.5,1072837150 +460,5460,4.0,1072838395 +460,5500,4.0,1072837313 +460,5504,2.5,1072839210 +460,5505,4.0,1072839225 +460,5507,4.5,1072837933 +460,5574,2.5,1072838510 +460,5650,4.0,1072836517 +460,5902,4.0,1072836645 +460,5952,4.5,1072836378 +460,5991,4.5,1072837473 +460,6104,4.5,1072836350 +460,6238,2.0,1072837810 +460,6296,4.0,1072839374 +460,6299,2.5,1072837443 +460,6525,3.0,1072838057 +460,6539,5.0,1072836403 +460,6591,3.5,1072837217 +460,6618,4.0,1072836325 +460,6711,4.5,1072836398 +460,6796,3.0,1072836435 +460,6807,4.0,1072836321 +460,6850,3.5,1072838294 +460,6863,3.0,1072836145 +460,6870,3.5,1072836153 +460,6936,4.5,1072836132 +460,6942,4.0,1072836166 +460,6957,3.5,1072836173 +460,6979,5.0,1072836768 +460,7153,4.5,1072836125 +461,1,3.5,1090907386 +461,4,1.5,1090908852 +461,6,4.0,1091067217 +461,7,0.5,1091049760 +461,10,2.0,1090907439 +461,11,1.5,1090907986 +461,16,3.0,1090908858 +461,17,4.5,1091049784 +461,18,1.5,1091959887 +461,21,3.0,1091958515 +461,22,2.0,1091958962 +461,25,2.5,1090908000 +461,29,3.5,1091959504 +461,31,2.0,1091959143 +461,34,3.5,1091958458 +461,36,3.0,1091958547 +461,39,4.5,1090908007 +461,44,0.5,1090908838 +461,47,5.0,1090907975 +461,48,2.0,1091958954 +461,50,4.0,1090908012 +461,60,2.0,1091959553 +461,62,2.5,1091958551 +461,70,2.0,1090908842 +461,71,0.5,1090907750 +461,101,3.5,1090908846 +461,104,3.5,1091958722 +461,105,2.5,1091959001 +461,110,4.0,1091958415 +461,111,3.5,1091958595 +461,122,1.5,1090907623 +461,141,2.0,1090907982 +461,144,1.5,1091959648 +461,150,3.0,1090907363 +461,153,0.5,1091049746 +461,158,1.0,1090908806 +461,160,1.5,1090908017 +461,161,2.5,1091958488 +461,163,3.0,1090907465 +461,165,2.5,1091958446 +461,168,2.0,1091958914 +461,173,1.5,1091958758 +461,176,2.5,1093224586 +461,180,4.0,1090908822 +461,185,2.0,1090908002 +461,193,1.5,1090907641 +461,196,2.0,1091958809 +461,203,2.0,1091959587 +461,204,1.5,1091959070 +461,207,2.5,1091959533 +461,208,2.0,1091958543 +461,222,2.5,1090908810 +461,223,3.5,1090907978 +461,225,1.0,1091958687 +461,230,3.0,1090908819 +461,231,3.0,1090908009 +461,235,4.5,1091049742 +461,236,4.0,1091958815 +461,237,0.5,1091959192 +461,246,4.0,1090907261 +461,249,3.5,1091959597 +461,253,2.5,1091958519 +461,257,2.0,1091959859 +461,260,4.5,1091958419 +461,266,1.5,1090907996 +461,282,1.0,1093225236 +461,288,2.5,1090907961 +461,289,2.0,1090908798 +461,293,4.0,1091049771 +461,296,4.5,1091958401 +461,300,3.0,1090907432 +461,303,4.0,1090908773 +461,315,1.5,1091958838 +461,317,2.0,1090907934 +461,318,5.0,1091067335 +461,322,3.5,1090908794 +461,329,1.5,1091958464 +461,333,4.0,1090907428 +461,338,1.0,1091959697 +461,339,2.5,1090907955 +461,349,2.0,1091958440 +461,353,3.0,1090907472 +461,355,1.0,1093225282 +461,356,4.0,1091958405 +461,357,2.0,1091958511 +461,364,1.5,1091049697 +461,367,3.0,1090907400 +461,368,2.0,1090907965 +461,370,2.0,1090907293 +461,372,3.0,1090908790 +461,377,4.0,1090907939 +461,380,2.5,1090907342 +461,381,1.0,1091959652 +461,413,1.5,1090908783 +461,416,1.5,1090907763 +461,420,0.5,1091049709 +461,429,3.0,1090907731 +461,432,1.5,1091049729 +461,434,1.5,1091958494 +461,440,2.5,1091958585 +461,442,1.5,1091958649 +461,454,2.5,1090907357 +461,457,2.5,1090907943 +461,466,0.5,1090907264 +461,474,2.5,1090907949 +461,477,3.0,1091959668 +461,480,5.0,1090907970 +461,485,2.0,1091958903 +461,493,2.0,1090908747 +461,494,2.0,1093224374 +461,497,3.0,1091958698 +461,500,1.5,1091049718 +461,508,2.5,1091958635 +461,515,3.5,1090908762 +461,520,2.0,1091958977 +461,527,4.0,1091958434 +461,529,3.5,1090907302 +461,539,3.5,1090907888 +461,540,0.5,1090908750 +461,543,3.5,1091049684 +461,551,4.5,1091067353 +461,553,4.0,1090907347 +461,555,3.5,1091067229 +461,562,2.5,1091959523 +461,585,2.5,1091959085 +461,586,2.5,1091958582 +461,587,3.0,1090907892 +461,588,4.0,1091048437 +461,589,5.0,1091054289 +461,590,4.0,1091958412 +461,592,3.0,1090907922 +461,593,5.0,1091958398 +461,594,3.0,1091958666 +461,595,4.5,1090907912 +461,596,3.0,1090907374 +461,597,4.5,1091958472 +461,608,4.0,1090907926 +461,613,2.5,1090907594 +461,628,3.0,1090907272 +461,647,1.5,1091959097 +461,648,2.0,1090907899 +461,653,2.0,1091958716 +461,708,1.5,1091049723 +461,720,4.0,1091959466 +461,724,2.0,1091959271 +461,733,2.0,1091958470 +461,736,1.0,1091049731 +461,745,4.0,1091959126 +461,778,4.0,1090907894 +461,780,1.5,1091958424 +461,783,1.5,1091049691 +461,784,3.0,1091049734 +461,785,4.0,1091049726 +461,786,1.5,1090907919 +461,802,1.5,1091958788 +461,805,1.5,1091958853 +461,818,2.0,1090908766 +461,832,1.5,1090908734 +461,852,3.5,1090907306 +461,858,5.0,1091049702 +461,866,3.0,1090908728 +461,899,3.5,1090908723 +461,910,1.5,1093225270 +461,912,4.5,1091958616 +461,916,4.0,1090908719 +461,919,3.5,1090907904 +461,920,4.0,1091958704 +461,923,4.0,1090907220 +461,926,3.5,1090908706 +461,934,2.5,1090908713 +461,953,4.5,1091049645 +461,994,3.0,1090907601 +461,999,1.5,1090908710 +461,1027,1.5,1091959657 +461,1035,5.0,1090908676 +461,1036,4.5,1090907884 +461,1037,1.5,1091959449 +461,1042,4.0,1091959251 +461,1047,3.0,1091959182 +461,1051,2.0,1093224789 +461,1059,2.5,1091959206 +461,1060,4.0,1090908693 +461,1061,4.0,1090908690 +461,1073,4.0,1091067366 +461,1088,3.0,1090908700 +461,1089,4.5,1091049663 +461,1090,3.0,1091049668 +461,1092,2.5,1091959130 +461,1094,3.0,1091958878 +461,1097,3.5,1091958497 +461,1101,3.5,1091048590 +461,1103,2.5,1091959792 +461,1104,2.5,1091959684 +461,1120,3.5,1091959260 +461,1127,2.5,1091958692 +461,1129,3.5,1090908681 +461,1148,4.5,1090908671 +461,1175,4.0,1091959780 +461,1179,3.5,1090908678 +461,1183,2.5,1090907879 +461,1186,2.5,1091959548 +461,1188,4.0,1090908695 +461,1193,3.5,1091958579 +461,1196,5.0,1091048596 +461,1197,5.0,1090907881 +461,1198,5.0,1090907839 +461,1200,5.0,1090907871 +461,1203,3.0,1091959413 +461,1206,4.0,1090907852 +461,1207,4.5,1091049660 +461,1208,3.5,1091049656 +461,1210,4.5,1091048443 +461,1213,4.0,1091958641 +461,1214,5.0,1090907842 +461,1215,4.5,1091067274 +461,1219,4.0,1090908660 +461,1220,3.5,1090908657 +461,1221,5.0,1090907858 +461,1222,3.5,1090908652 +461,1223,4.0,1091959821 +461,1225,4.0,1091049649 +461,1230,3.0,1091958748 +461,1240,4.0,1091958562 +461,1242,3.0,1090908648 +461,1247,3.0,1090908643 +461,1249,4.0,1091959257 +461,1252,4.0,1090907377 +461,1257,4.0,1091959921 +461,1258,3.5,1091958792 +461,1259,3.5,1091067185 +461,1261,4.5,1091067356 +461,1263,3.0,1091959188 +461,1265,3.5,1090907864 +461,1266,3.5,1091958937 +461,1270,5.0,1091052198 +461,1282,2.5,1091959080 +461,1284,3.0,1091959826 +461,1285,3.5,1090908618 +461,1287,4.0,1091959281 +461,1288,4.5,1091958859 +461,1291,3.5,1091958612 +461,1304,3.0,1091958768 +461,1307,5.0,1090907845 +461,1320,2.0,1090908615 +461,1321,4.0,1091067271 +461,1345,3.5,1090908635 +461,1347,4.0,1091959693 +461,1350,3.5,1090907560 +461,1356,2.5,1091958599 +461,1357,3.0,1090908607 +461,1370,1.5,1090907237 +461,1377,2.0,1091049675 +461,1378,2.0,1091959622 +461,1380,4.5,1090908624 +461,1381,3.5,1090908626 +461,1385,1.5,1091959705 +461,1387,4.0,1091067342 +461,1388,1.0,1090908610 +461,1393,3.0,1090907866 +461,1394,3.0,1091958736 +461,1405,2.0,1093224473 +461,1407,3.0,1090908603 +461,1411,2.5,1090908593 +461,1416,2.0,1090908564 +461,1438,1.5,1091959717 +461,1476,3.0,1090908573 +461,1479,1.0,1091959329 +461,1485,3.0,1090907338 +461,1500,5.0,1090907258 +461,1517,3.0,1091067176 +461,1527,2.0,1091067290 +461,1537,3.5,1090908587 +461,1544,1.0,1090907287 +461,1552,2.5,1091048486 +461,1556,0.5,1090908576 +461,1562,0.5,1091959495 +461,1569,1.5,1091959147 +461,1573,3.0,1090908570 +461,1580,2.0,1091958557 +461,1584,2.0,1091048488 +461,1586,2.0,1090907573 +461,1587,2.5,1090908584 +461,1590,2.0,1090908567 +461,1597,1.5,1090908521 +461,1603,0.5,1090908548 +461,1608,1.5,1090908539 +461,1610,4.5,1091054287 +461,1614,2.5,1090908517 +461,1617,5.0,1090907868 +461,1621,3.0,1090907709 +461,1625,3.5,1090907350 +461,1639,3.5,1091067268 +461,1641,2.5,1091958772 +461,1644,1.0,1091959789 +461,1645,2.0,1091959106 +461,1673,4.0,1090908534 +461,1678,2.5,1093224465 +461,1682,2.5,1091067209 +461,1688,2.5,1090907556 +461,1690,2.0,1090908529 +461,1704,4.5,1090907848 +461,1711,0.5,1091959840 +461,1717,1.5,1090908550 +461,1721,4.0,1091048448 +461,1722,1.5,1090908483 +461,1729,3.5,1091959230 +461,1732,3.5,1090908497 +461,1735,1.5,1093224483 +461,1748,3.5,1090907567 +461,1777,3.0,1090908504 +461,1779,1.5,1090908501 +461,1784,3.5,1091958672 +461,1792,1.0,1090908508 +461,1805,2.0,1091959601 +461,1831,1.0,1090908492 +461,1882,0.5,1090908488 +461,1895,3.5,1090909367 +461,1907,2.0,1090908452 +461,1909,2.0,1091959066 +461,1912,4.5,1091959238 +461,1918,2.0,1091959374 +461,1921,3.0,1091959627 +461,1923,3.0,1091048472 +461,1954,3.5,1090908464 +461,1958,2.0,1093224457 +461,1960,3.0,1090908444 +461,1961,3.0,1090907822 +461,1968,4.5,1090907833 +461,1970,1.0,1096527528 +461,1972,1.0,1090909354 +461,1982,3.5,1090907548 +461,1983,1.5,1093224760 +461,1994,3.5,1091959382 +461,1995,1.0,1096527511 +461,1997,4.5,1090908436 +461,2000,4.0,1090908468 +461,2001,3.0,1091959030 +461,2002,2.0,1091959339 +461,2003,3.5,1090908460 +461,2005,4.0,1091959402 +461,2011,2.5,1090907233 +461,2012,2.5,1091958843 +461,2028,3.5,1090907814 +461,2067,2.5,1091959759 +461,2076,3.5,1091959508 +461,2081,5.0,1090908429 +461,2088,0.5,1090908416 +461,2092,0.5,1090909324 +461,2094,2.5,1091959581 +461,2100,2.5,1090908427 +461,2105,2.5,1091959217 +461,2108,2.0,1091959304 +461,2115,4.0,1091958871 +461,2118,3.5,1091067256 +461,2122,2.0,1090909331 +461,2124,2.0,1091959607 +461,2125,2.0,1096527452 +461,2134,3.5,1090908422 +461,2139,2.0,1090908408 +461,2144,4.5,1091052194 +461,2145,3.5,1091959632 +461,2167,3.0,1090908419 +461,2174,3.0,1091958797 +461,2193,3.0,1090908396 +461,2194,3.5,1090908390 +461,2231,3.0,1090908383 +461,2240,2.5,1093224750 +461,2245,3.0,1091959894 +461,2248,3.5,1091067318 +461,2262,1.0,1090909315 +461,2268,2.5,1090907255 +461,2269,2.0,1090909305 +461,2273,3.0,1090907575 +461,2278,3.0,1090908387 +461,2288,2.5,1091067293 +461,2291,4.0,1090907240 +461,2294,1.5,1091959379 +461,2302,2.5,1091958960 +461,2320,2.0,1090907722 +461,2329,3.0,1091959285 +461,2333,3.5,1090908358 +461,2335,3.0,1090908354 +461,2336,2.0,1090907580 +461,2346,2.0,1090909274 +461,2355,3.5,1090907827 +461,2369,3.5,1091959645 +461,2373,1.5,1090907715 +461,2376,1.5,1090909285 +461,2389,0.5,1090909295 +461,2394,2.0,1090908362 +461,2395,4.0,1090907297 +461,2396,3.0,1090907818 +461,2409,3.0,1090908324 +461,2410,3.5,1090907501 +461,2420,3.5,1091959801 +461,2422,1.5,1090909289 +461,2424,1.5,1091959221 +461,2427,1.0,1091959491 +461,2446,1.0,1090907810 +461,2455,4.0,1090908334 +461,2470,2.0,1091959112 +461,2473,1.0,1090909280 +461,2485,2.5,1091959911 +461,2496,2.5,1090908347 +461,2497,1.0,1090909259 +461,2502,4.0,1091959050 +461,2505,1.0,1090909245 +461,2513,2.0,1093224438 +461,2539,2.0,1091959410 +461,2541,2.5,1091959569 +461,2542,4.0,1090908319 +461,2571,4.5,1091958534 +461,2580,3.5,1091067188 +461,2581,2.0,1090908343 +461,2599,3.5,1090908337 +461,2616,3.5,1091959853 +461,2628,1.5,1091958574 +461,2640,4.0,1090908310 +461,2641,3.5,1091959444 +461,2642,1.0,1093224434 +461,2643,0.5,1090909254 +461,2671,3.5,1091959058 +461,2687,2.0,1090908277 +461,2699,2.5,1090908295 +461,2700,4.5,1091958886 +461,2706,2.5,1091958709 +461,2710,2.5,1091958726 +461,2716,4.5,1091052185 +461,2717,1.0,1091959768 +461,2719,1.5,1090908280 +461,2722,2.5,1090908307 +461,2723,3.0,1091959362 +461,2734,1.5,1090909227 +461,2735,2.0,1090908283 +461,2761,4.5,1091067329 +461,2762,4.5,1091958565 +461,2770,1.5,1090907381 +461,2787,2.0,1090907695 +461,2791,5.0,1090907353 +461,2792,2.5,1090908302 +461,2797,3.5,1090908288 +461,2804,3.5,1091067285 +461,2858,2.0,1091958481 +461,2871,2.0,1091959455 +461,2872,3.5,1090907512 +461,2881,1.0,1091959481 +461,2891,2.5,1093224709 +461,2908,2.5,1091959539 +461,2915,3.0,1091067262 +461,2916,3.0,1091067220 +461,2918,4.5,1091958783 +461,2953,0.5,1096527462 +461,2959,5.0,1091067248 +461,2968,3.0,1093225306 +461,2985,4.5,1091048451 +461,2986,1.0,1090907508 +461,2987,4.0,1091067282 +461,2989,1.5,1093224416 +461,2997,4.0,1090907798 +461,3005,2.0,1090908245 +461,3006,3.5,1091959429 +461,3016,3.5,1090907515 +461,3020,2.0,1093224420 +461,3033,3.0,1091959242 +461,3039,5.0,1091052171 +461,3044,2.5,1091067297 +461,3081,2.5,1090908252 +461,3082,1.0,1091959517 +461,3087,2.0,1090908237 +461,3101,2.5,1091959036 +461,3107,3.0,1090907528 +461,3113,1.0,1096527625 +461,3114,3.5,1091958752 +461,3147,3.5,1091959046 +461,3155,2.0,1090909180 +461,3157,2.0,1090908264 +461,3160,3.5,1090908257 +461,3175,3.0,1091067303 +461,3176,2.5,1091958994 +461,3182,3.0,1096527500 +461,3186,2.5,1090909191 +461,3203,3.5,1090907532 +461,3210,4.0,1091067194 +461,3246,3.5,1090907497 +461,3249,1.5,1093224700 +461,3250,2.0,1090909184 +461,3251,1.5,1093224695 +461,3253,4.0,1090908269 +461,3255,3.0,1091959343 +461,3256,2.5,1090908205 +461,3259,1.0,1093224403 +461,3263,2.5,1090908189 +461,3270,4.0,1090909166 +461,3317,3.0,1091959753 +461,3334,3.5,1090907522 +461,3354,0.5,1091959775 +461,3408,4.0,1090907280 +461,3409,2.5,1090908218 +461,3418,4.0,1091959062 +461,3424,3.0,1091959874 +461,3438,3.5,1091052086 +461,3452,2.5,1091052087 +461,3478,2.5,1090907655 +461,3480,2.0,1090909139 +461,3481,4.0,1090908202 +461,3489,1.0,1091959764 +461,3499,3.5,1090908193 +461,3504,3.5,1091052163 +461,3510,1.5,1090907452 +461,3513,2.0,1090909136 +461,3527,3.5,1090908207 +461,3528,1.5,1090909142 +461,3535,3.0,1091959847 +461,3536,3.0,1090908226 +461,3578,3.5,1090907344 +461,3591,3.5,1091052145 +461,3608,4.0,1090908170 +461,3617,2.0,1090907469 +461,3623,1.5,1091048462 +461,3699,2.5,1091052158 +461,3701,2.0,1093224665 +461,3702,3.5,1091052153 +461,3703,4.0,1091052148 +461,3712,2.0,1090909127 +461,3723,3.0,1090909119 +461,3751,4.0,1091958924 +461,3752,2.5,1090908175 +461,3755,2.0,1091959348 +461,3785,0.5,1091959746 +461,3791,4.0,1090907648 +461,3793,2.0,1090908184 +461,3798,2.5,1090908179 +461,3841,0.5,1093225145 +461,3863,1.0,1090907447 +461,3868,4.0,1091067244 +461,3893,2.5,1096527610 +461,3895,0.5,1093224965 +461,3896,3.5,1090909091 +461,3897,4.0,1090908167 +461,3911,3.0,1091959440 +461,3948,2.5,1091959153 +461,3949,4.0,1090908131 +461,3959,3.5,1090909095 +461,3967,2.5,1091959899 +461,3968,1.0,1090907482 +461,3977,3.5,1091959117 +461,3980,1.5,1093224658 +461,3993,2.5,1090909056 +461,3994,2.5,1091959184 +461,3996,4.0,1091958775 +461,4002,3.0,1091049818 +461,4010,3.5,1090909050 +461,4011,4.5,1090908134 +461,4019,1.5,1090908154 +461,4020,3.0,1090907664 +461,4022,3.5,1090907360 +461,4025,2.5,1090908138 +461,4027,4.0,1091959026 +461,4033,3.5,1090909081 +461,4034,2.5,1091048478 +461,4062,1.5,1093224641 +461,4066,3.5,1090909076 +461,4069,1.0,1090909068 +461,4084,3.5,1090909071 +461,4085,4.5,1090908142 +461,4091,2.0,1090909034 +461,4105,4.0,1091067232 +461,4128,3.5,1091049826 +461,4132,4.0,1090907668 +461,4148,3.0,1090908150 +461,4159,0.5,1090909020 +461,4210,4.0,1090907672 +461,4214,3.5,1090909040 +461,4226,4.5,1091048482 +461,4238,1.5,1090909025 +461,4246,4.5,1091049808 +461,4291,2.0,1090909014 +461,4306,3.0,1090907275 +461,4308,4.0,1091959575 +461,4310,1.0,1093224387 +461,4321,4.0,1090908159 +461,4343,1.0,1090907653 +461,4370,2.0,1091049820 +461,4447,3.5,1091049797 +461,4465,3.0,1093224627 +461,4478,3.0,1093224616 +461,4564,1.0,1090908992 +461,4571,3.5,1090908110 +461,4603,0.5,1090907774 +461,4621,2.5,1093224620 +461,4638,1.5,1090908103 +461,4666,1.5,1090908115 +461,4673,3.0,1093224629 +461,4720,3.5,1096527589 +461,4734,2.5,1096527437 +461,4792,0.5,1090908121 +461,4816,2.0,1090907487 +461,4846,3.0,1096527433 +461,4865,3.0,1090907678 +461,4876,0.5,1090907615 +461,4878,3.0,1091067307 +461,4896,3.5,1091959314 +461,4951,2.5,1090908976 +461,4963,3.0,1091959276 +461,4973,4.5,1090908107 +461,4975,1.0,1096527568 +461,4979,4.5,1091049813 +461,4993,4.5,1090908092 +461,5010,3.0,1091052190 +461,5013,2.5,1093224391 +461,5015,1.5,1091049806 +461,5025,1.5,1090908964 +461,5049,3.5,1090908950 +461,5066,1.5,1093224942 +461,5103,3.0,1093224613 +461,5254,3.0,1090908955 +461,5308,2.0,1090908916 +461,5349,4.0,1091959178 +461,5357,3.0,1090908075 +461,5377,3.5,1096527586 +461,5378,0.5,1091049776 +461,5388,4.0,1090908078 +461,5418,3.5,1090908084 +461,5445,3.5,1091959246 +461,5500,5.0,1091067333 +461,5502,3.0,1090908073 +461,5540,3.5,1090908929 +461,5617,3.5,1090907638 +461,5618,4.0,1090908936 +461,5679,4.5,1090907395 +461,5754,2.0,1090908924 +461,5782,4.0,1130133861 +461,5810,3.5,1090908939 +461,5816,3.0,1150092445 +461,5952,4.5,1091959162 +461,5989,3.0,1090908062 +461,5991,2.5,1091049753 +461,6003,2.0,1093224603 +461,6016,3.5,1093225088 +461,6058,2.0,1093224911 +461,6157,1.5,1090907610 +461,6201,2.5,1090908056 +461,6250,1.5,1093224899 +461,6323,2.0,1090908905 +461,6333,3.5,1090908044 +461,6365,2.0,1090908047 +461,6377,4.5,1093224378 +461,6476,3.0,1090908052 +461,6502,4.0,1090908898 +461,6503,1.0,1093224574 +461,6534,2.5,1090907629 +461,6539,3.5,1090908025 +461,6796,2.5,1091052182 +461,6857,3.5,1091067174 +461,6874,4.0,1090908871 +461,6934,2.0,1090908884 +461,6942,4.0,1090908863 +461,6944,2.5,1093224581 +461,6947,3.0,1091067370 +461,6979,3.5,1090908888 +461,6983,3.5,1090908880 +461,7022,3.5,1093224878 +461,7036,3.0,1090907735 +461,7090,3.5,1093225033 +461,7153,5.0,1091049781 +461,7171,2.5,1093225072 +461,7373,3.5,1093225093 +461,7386,4.5,1091052188 +461,7438,4.0,1090908866 +461,8368,4.5,1150092449 +461,8464,3.5,1091052203 +461,8636,4.5,1093225013 +461,8665,4.0,1091958266 +461,8722,1.0,1093225135 +461,8783,3.5,1091958277 +461,8798,4.5,1093225028 +461,8807,3.0,1093225045 +461,8874,4.0,1096527369 +461,8961,4.5,1130133852 +461,33679,3.5,1150092304 +461,33794,4.0,1130133848 +461,34048,3.5,1150092276 +461,34405,4.0,1130133839 +461,35836,4.0,1130133883 +461,36519,3.5,1150092204 +461,37733,3.5,1150091788 +461,38038,4.5,1130133875 +461,39183,3.5,1150091805 +461,40629,3.5,1150092135 +461,40815,4.5,1150092124 +461,41566,3.0,1150091773 +461,41569,4.0,1150091757 +461,41716,3.5,1150092090 +461,42728,3.0,1150092047 +461,42730,3.0,1150092076 +461,44191,3.5,1150091718 +462,21,3.5,1115312737 +462,104,4.5,1115312685 +462,141,4.0,1115312652 +462,180,3.0,1115312698 +462,186,2.5,1115312258 +462,246,4.0,1115312253 +462,356,5.0,1115312512 +462,357,3.0,1115312710 +462,380,3.5,1115312581 +462,440,2.0,1115312587 +462,539,3.0,1115312628 +462,543,2.5,1115312275 +462,552,2.0,1115312284 +462,587,3.5,1115312606 +462,597,3.5,1115312616 +462,785,3.5,1115312723 +462,1042,2.0,1115312657 +462,1265,3.0,1115312756 +462,1372,3.0,1115312360 +462,1376,3.0,1115312280 +462,1396,2.5,1115312271 +462,1476,3.0,1115312687 +462,1500,3.0,1115312693 +462,1517,5.0,1115312673 +462,1580,4.0,1115312593 +462,1625,5.0,1115312352 +462,1639,3.0,1115312245 +462,1784,3.5,1115312752 +462,1923,5.0,1115312510 +462,2001,5.0,1115312307 +462,2100,3.5,1115312322 +462,2108,3.0,1115312743 +462,2302,4.0,1115312599 +462,2321,3.5,1115312356 +462,2324,4.0,1115312517 +462,2353,3.5,1115312297 +462,2596,1.0,1115312760 +462,2657,3.0,1115312318 +462,2671,2.0,1115312609 +462,2699,3.0,1115312242 +462,2706,4.5,1115312635 +462,2858,5.0,1115312520 +462,3052,3.0,1115312631 +462,3174,3.0,1115312763 +462,3175,2.0,1115312640 +462,3176,3.5,1115312328 +462,3253,4.0,1115312645 +462,3255,3.0,1115312590 +462,3261,3.5,1115312717 +462,3977,3.0,1115312342 +462,4321,3.5,1115312578 +463,1,3.0,1049913385 +463,7,4.0,1050499745 +463,11,3.0,1049924343 +463,17,4.0,1050499223 +463,24,2.0,1050439270 +463,25,3.0,1050499156 +463,32,4.0,1050439203 +463,39,3.0,1049924900 +463,47,4.0,1049922469 +463,48,3.0,1050499840 +463,50,5.0,1049913552 +463,52,4.0,1049913506 +463,110,5.0,1049912928 +463,132,2.0,1051643569 +463,151,3.0,1050439020 +463,160,1.0,1050439585 +463,161,3.0,1050438983 +463,168,3.0,1050499923 +463,195,3.0,1050499745 +463,222,4.0,1050499356 +463,223,4.0,1049923845 +463,225,3.0,1051643426 +463,260,5.0,1049912928 +463,266,4.0,1049912641 +463,288,2.0,1051643535 +463,292,3.0,1051643461 +463,293,4.0,1050499156 +463,296,3.0,1049913527 +463,316,4.0,1050439429 +463,318,5.0,1049913589 +463,329,3.0,1050439353 +463,339,3.0,1049924343 +463,349,3.0,1051643331 +463,350,3.0,1051643381 +463,353,4.0,1049922660 +463,356,3.0,1049924031 +463,357,4.0,1049924002 +463,377,3.0,1049922528 +463,380,4.0,1049913914 +463,442,2.0,1050439484 +463,454,3.0,1051643381 +463,457,3.0,1049913035 +463,474,3.0,1049922649 +463,480,4.0,1049913808 +463,490,4.0,1051643301 +463,509,3.0,1049912562 +463,527,5.0,1049913608 +463,539,3.0,1050499463 +463,541,4.0,1051711344 +463,551,4.0,1049924002 +463,587,4.0,1050499745 +463,588,4.0,1049913411 +463,589,4.0,1049912983 +463,590,5.0,1049913781 +463,592,4.0,1049913831 +463,593,5.0,1049913589 +463,595,5.0,1049913411 +463,597,2.0,1049912458 +463,608,4.0,1049913631 +463,610,4.0,1050439342 +463,628,4.0,1051643257 +463,647,3.0,1050439020 +463,708,4.0,1050499651 +463,733,3.0,1049922549 +463,736,4.0,1050499784 +463,786,1.0,1051643407 +463,802,2.0,1050499553 +463,832,3.0,1049922750 +463,852,3.0,1050499553 +463,858,5.0,1049912418 +463,880,2.0,1050439606 +463,904,4.0,1049922352 +463,908,4.0,1049922352 +463,914,4.0,1050499182 +463,915,4.0,1049924031 +463,916,4.0,1049924150 +463,919,4.0,1050437796 +463,920,4.0,1050438915 +463,934,4.0,1049924281 +463,1036,4.0,1049912983 +463,1037,3.0,1050439528 +463,1047,3.0,1051643302 +463,1059,4.0,1050499307 +463,1060,4.0,1049923908 +463,1073,4.0,1049913808 +463,1079,5.0,1049923865 +463,1088,3.0,1050499697 +463,1089,4.0,1049922382 +463,1090,3.0,1050438959 +463,1092,4.0,1051643302 +463,1094,4.0,1050438959 +463,1097,4.0,1050439234 +463,1101,4.0,1050499441 +463,1127,3.0,1049913889 +463,1129,3.0,1049913946 +463,1183,2.0,1050438983 +463,1193,5.0,1049913608 +463,1196,5.0,1049913725 +463,1197,4.0,1049913012 +463,1198,4.0,1049912458 +463,1200,4.0,1049912948 +463,1204,4.0,1049913752 +463,1207,5.0,1049913536 +463,1208,4.0,1050438898 +463,1210,5.0,1049913035 +463,1213,3.0,1049913645 +463,1214,5.0,1049912817 +463,1219,4.0,1049912817 +463,1221,4.0,1049913552 +463,1222,3.0,1050438983 +463,1225,4.0,1049913589 +463,1231,4.0,1051711318 +463,1233,5.0,1049913589 +463,1240,5.0,1049912983 +463,1242,4.0,1050438927 +463,1246,4.0,1051711660 +463,1259,4.0,1049913764 +463,1270,4.0,1050439203 +463,1275,4.0,1050437828 +463,1285,4.0,1049924814 +463,1288,4.0,1049923796 +463,1290,3.0,1050499553 +463,1291,3.0,1049913035 +463,1296,4.0,1050499463 +463,1298,4.0,1050439086 +463,1302,3.0,1051711442 +463,1307,4.0,1049923880 +463,1320,2.0,1050439396 +463,1330,2.0,1051711851 +463,1339,4.0,1050499713 +463,1343,4.0,1051643331 +463,1344,3.0,1049922406 +463,1347,4.0,1051712004 +463,1356,4.0,1049912677 +463,1357,4.0,1050499426 +463,1358,4.0,1049913619 +463,1370,2.0,1049922750 +463,1371,3.0,1050439369 +463,1372,4.0,1049913977 +463,1373,2.0,1049912677 +463,1374,5.0,1049913844 +463,1375,3.0,1050439370 +463,1376,4.0,1049913889 +463,1378,4.0,1051712195 +463,1380,3.0,1049924932 +463,1387,4.0,1049912817 +463,1393,4.0,1050499307 +463,1394,5.0,1049923865 +463,1396,4.0,1050439234 +463,1407,3.0,1049912875 +463,1408,4.0,1050439035 +463,1409,3.0,1050499697 +463,1479,2.0,1050499724 +463,1488,3.0,1051643438 +463,1500,4.0,1049923880 +463,1544,2.0,1050439528 +463,1569,4.0,1050499356 +463,1573,2.0,1049922819 +463,1580,4.0,1049913889 +463,1584,4.0,1050439251 +463,1587,4.0,1051712437 +463,1608,2.0,1049922869 +463,1610,5.0,1049913035 +463,1615,3.0,1051643353 +463,1617,4.0,1049922367 +463,1619,3.0,1050439020 +463,1620,2.0,1051643257 +463,1625,4.0,1049922469 +463,1639,4.0,1050499223 +463,1641,4.0,1049924256 +463,1653,3.0,1049922649 +463,1674,4.0,1049922424 +463,1676,2.0,1050439110 +463,1687,2.0,1051643493 +463,1721,4.0,1050499369 +463,1732,3.0,1049922841 +463,1748,4.0,1049922406 +463,1777,4.0,1049924964 +463,1889,3.0,1051643214 +463,1892,3.0,1051643331 +463,1909,2.0,1050439286 +463,1914,4.0,1049912654 +463,1921,4.0,1049922768 +463,1957,4.0,1051711334 +463,1959,4.0,1050499697 +463,1960,4.0,1050438940 +463,1961,3.0,1051711487 +463,1962,4.0,1051711354 +463,1965,3.0,1050439251 +463,1968,4.0,1049912311 +463,1974,3.0,1051712239 +463,1982,4.0,1049912855 +463,1983,3.0,1051712605 +463,1984,1.0,1051712828 +463,1994,4.0,1049922549 +463,1997,4.0,1049912817 +463,2000,4.0,1049924227 +463,2001,4.0,1051711789 +463,2006,3.0,1050437828 +463,2011,2.0,1051711964 +463,2012,1.0,1049912367 +463,2013,4.0,1049913977 +463,2020,4.0,1050499131 +463,2028,4.0,1049912948 +463,2054,3.0,1050439500 +463,2058,3.0,1049922819 +463,2081,4.0,1049913444 +463,2088,1.0,1051712565 +463,2100,3.0,1051643660 +463,2105,4.0,1049913977 +463,2115,3.0,1051711851 +463,2119,1.0,1051712743 +463,2122,2.0,1051712651 +463,2134,3.0,1051712099 +463,2138,4.0,1051643648 +463,2141,3.0,1051712109 +463,2143,3.0,1050499796 +463,2144,3.0,1049924950 +463,2145,3.0,1051711964 +463,2146,4.0,1050499664 +463,2155,3.0,1049924932 +463,2164,1.0,1049912677 +463,2174,3.0,1049924215 +463,2193,3.0,1051643679 +463,2194,5.0,1049912983 +463,2245,3.0,1051711806 +463,2248,3.0,1049923983 +463,2262,3.0,1050499635 +463,2263,3.0,1051712464 +463,2288,3.0,1051711334 +463,2289,4.0,1049923845 +463,2311,4.0,1050439396 +463,2316,3.0,1050499859 +463,2321,4.0,1049924343 +463,2329,4.0,1049912738 +463,2334,3.0,1051643426 +463,2352,3.0,1051711487 +463,2355,4.0,1049913431 +463,2359,3.0,1049923983 +463,2369,2.0,1050499713 +463,2371,4.0,1051711851 +463,2375,2.0,1051712508 +463,2376,3.0,1051712146 +463,2378,4.0,1051712195 +463,2391,4.0,1051643189 +463,2393,3.0,1050439462 +463,2396,5.0,1049923755 +463,2403,4.0,1051712122 +463,2404,2.0,1051712663 +463,2406,3.0,1050499463 +463,2407,3.0,1049924293 +463,2410,3.0,1051712311 +463,2411,3.0,1051712576 +463,2420,3.0,1051711882 +463,2421,2.0,1051712495 +463,2422,1.0,1051712760 +463,2423,4.0,1049912418 +463,2450,1.0,1049912698 +463,2455,4.0,1049912875 +463,2470,3.0,1051711987 +463,2471,1.0,1051712508 +463,2497,2.0,1050499933 +463,2502,5.0,1050499223 +463,2505,2.0,1051643506 +463,2513,4.0,1051712426 +463,2529,4.0,1050439203 +463,2541,2.0,1049912616 +463,2542,3.0,1049922528 +463,2551,4.0,1049912711 +463,2571,5.0,1049912929 +463,2599,4.0,1049924172 +463,2617,2.0,1051643381 +463,2622,4.0,1051643711 +463,2628,1.0,1050439270 +463,2640,4.0,1049913889 +463,2641,4.0,1050439396 +463,2657,3.0,1050439342 +463,2664,4.0,1049912841 +463,2671,3.0,1049924846 +463,2706,3.0,1049924240 +463,2716,4.0,1049923942 +463,2717,2.0,1051712207 +463,2724,2.0,1050499912 +463,2735,3.0,1051712464 +463,2761,4.0,1049913431 +463,2762,4.0,1049922367 +463,2791,4.0,1051711442 +463,2795,4.0,1051711545 +463,2797,4.0,1049923960 +463,2803,3.0,1051643475 +463,2804,5.0,1051711318 +463,2858,5.0,1049913645 +463,2871,4.0,1049913781 +463,2875,3.0,1050499960 +463,2890,4.0,1050438983 +463,2908,3.0,1049912311 +463,2916,2.0,1049922679 +463,2918,4.0,1049923830 +463,2942,3.0,1050499810 +463,2985,4.0,1050439299 +463,2987,1.0,1049913431 +463,2989,4.0,1051711882 +463,2997,2.0,1049923796 +463,3005,1.0,1051643426 +463,3018,3.0,1051711615 +463,3039,4.0,1049924048 +463,3052,2.0,1049923983 +463,3081,4.0,1049912616 +463,3087,3.0,1051711694 +463,3098,3.0,1051711521 +463,3101,4.0,1049922819 +463,3102,4.0,1049922819 +463,3175,3.0,1049913808 +463,3176,2.0,1049922719 +463,3185,3.0,1051214702 +463,3210,4.0,1051711545 +463,3249,3.0,1051643353 +463,3253,4.0,1049924886 +463,3256,3.0,1051643331 +463,3257,3.0,1050499960 +463,3259,3.0,1050499784 +463,3260,4.0,1049912626 +463,3263,2.0,1049912573 +463,3317,4.0,1049924215 +463,3361,4.0,1049924172 +463,3408,4.0,1051210420 +463,3412,4.0,1051711615 +463,3421,4.0,1049923865 +463,3422,4.0,1050499570 +463,3441,4.0,1050439098 +463,3479,3.0,1049913889 +463,3481,4.0,1049923942 +463,3489,1.0,1051643771 +463,3505,4.0,1049922505 +463,3519,4.0,1050439035 +463,3525,3.0,1051712250 +463,3527,4.0,1049922719 +463,3528,3.0,1050499697 +463,3534,3.0,1051214768 +463,3552,4.0,1049924281 +463,3555,3.0,1051214670 +463,3556,2.0,1051210583 +463,3578,5.0,1051210542 +463,3591,3.0,1051711945 +463,3608,2.0,1051711645 +463,3623,2.0,1051214702 +463,3638,3.0,1050499784 +463,3686,4.0,1049922869 +463,3693,4.0,1051712050 +463,3698,3.0,1050439441 +463,3702,4.0,1050439286 +463,3703,4.0,1050439270 +463,3704,4.0,1050439429 +463,3706,2.0,1051711819 +463,3740,2.0,1051712061 +463,3751,4.0,1051210336 +463,3752,3.0,1051215423 +463,3753,3.0,1050439060 +463,3755,3.0,1051214702 +463,3763,3.0,1051711725 +463,3791,3.0,1051712160 +463,3793,4.0,1050439251 +463,3798,3.0,1051215159 +463,3825,2.0,1051215599 +463,3844,4.0,1051711806 +463,3863,4.0,1049923598 +463,3897,4.0,1049923796 +463,3911,4.0,1049924048 +463,3917,3.0,1051712146 +463,3952,4.0,1051210386 +463,3967,4.0,1051210278 +463,3977,2.0,1051214785 +463,3988,1.0,1051215409 +463,3994,4.0,1049922779 +463,3996,4.0,1049912929 +463,4002,3.0,1051711558 +463,4007,4.0,1051711521 +463,4014,4.0,1049924293 +463,4020,3.0,1049922751 +463,4022,4.0,1049913831 +463,4025,2.0,1051214827 +463,4027,5.0,1049913831 +463,4029,3.0,1049924256 +463,4034,5.0,1051210069 +463,4036,4.0,1051210571 +463,4041,3.0,1050499598 +463,4084,3.0,1051712311 +463,4085,4.0,1049924310 +463,4103,4.0,1050438959 +463,4128,4.0,1051711682 +463,4132,3.0,1050499987 +463,4148,2.0,1051215133 +463,4149,3.0,1051215720 +463,4161,2.0,1051215197 +463,4214,4.0,1049912418 +463,4223,4.0,1050439020 +463,4226,5.0,1049913552 +463,4238,2.0,1051215121 +463,4246,4.0,1050499570 +463,4262,3.0,1049912602 +463,4299,4.0,1049913946 +463,4306,5.0,1049913411 +463,4308,5.0,1051210311 +463,4321,3.0,1049913946 +463,4344,2.0,1051215409 +463,4361,3.0,1050499168 +463,4370,1.0,1050439370 +463,4378,2.0,1051210401 +463,4444,4.0,1049912983 +463,4447,3.0,1051214645 +463,4448,3.0,1051210454 +463,4478,4.0,1051711789 +463,4487,2.0,1050499912 +463,4489,3.0,1051712021 +463,4508,4.0,1051711932 +463,4535,3.0,1050499474 +463,4543,3.0,1051711851 +463,4571,4.0,1049913914 +463,4618,2.0,1050439620 +463,4623,3.0,1049924825 +463,4641,2.0,1051210278 +463,4643,1.0,1050439528 +463,4681,2.0,1051711920 +463,4720,4.0,1049912841 +463,4734,3.0,1049924031 +463,4776,3.0,1051214520 +463,4809,3.0,1051711600 +463,4814,2.0,1051215181 +463,4823,2.0,1051214739 +463,4835,2.0,1051711463 +463,4844,3.0,1051210559 +463,4848,4.0,1049912418 +463,4880,4.0,1051210386 +463,4881,3.0,1051210278 +463,4886,4.0,1049913411 +463,4896,3.0,1051210454 +463,4901,3.0,1049922751 +463,4903,4.0,1051210226 +463,4932,2.0,1051711920 +463,4941,2.0,1050439441 +463,4963,4.0,1049924267 +463,4973,4.0,1049923830 +463,4975,3.0,1049922719 +463,4979,3.0,1049924172 +463,4993,5.0,1049913589 +463,4995,4.0,1050499238 +463,5010,3.0,1050439035 +463,5013,4.0,1049924031 +463,5111,3.0,1051643582 +463,5171,2.0,1050439546 +463,5172,1.0,1051550808 +463,5237,4.0,1051712004 +463,5265,4.0,1051214785 +463,5266,4.0,1049922719 +463,5294,4.0,1049922424 +463,5299,4.0,1050499356 +463,5303,3.0,1050499884 +463,5349,4.0,1049913808 +463,5377,4.0,1049923926 +463,5378,3.0,1049913977 +463,5388,3.0,1049913012 +463,5400,3.0,1051214739 +463,5415,3.0,1051214739 +463,5418,2.0,1049922505 +463,5445,2.0,1049913012 +463,5463,2.0,1049913914 +463,5464,3.0,1051210351 +463,5481,1.0,1051215067 +463,5502,4.0,1049922719 +463,5540,3.0,1051643749 +463,5620,3.0,1050499871 +463,5679,5.0,1049912841 +463,5693,3.0,1050499238 +463,5694,3.0,1049912367 +463,5812,4.0,1051550788 +463,5816,4.0,1051210336 +463,5859,3.0,1051712160 +463,5944,1.0,1050439546 +463,5952,4.0,1050437796 +463,5970,4.0,1050499811 +463,6078,3.0,1051712357 +463,6303,4.0,1050439396 +463,6308,3.0,1050499987 +464,10,5.0,829911793 +464,39,5.0,829912558 +464,62,5.0,829911793 +464,95,5.0,829911793 +464,153,5.0,829912557 +464,158,4.0,829912557 +464,163,4.0,829912558 +464,165,4.0,829912558 +464,173,2.0,829912558 +464,196,3.0,829912558 +464,198,4.0,829912558 +464,204,4.0,829912558 +464,222,5.0,829912557 +464,236,4.0,829912558 +464,256,4.0,829912558 +464,257,5.0,829912558 +464,260,5.0,829912558 +464,262,5.0,829912558 +464,296,5.0,829912558 +464,317,2.0,829912558 +464,339,5.0,829912558 +464,344,3.0,829912557 +464,349,4.0,829912557 +464,380,4.0,829912558 +464,410,4.0,829912557 +464,434,4.0,829912557 +464,588,5.0,829912557 +464,592,4.0,829912557 +464,595,5.0,829912557 +464,610,4.0,829911793 +465,17,5.0,1170653276 +465,39,4.5,1170653255 +465,135,1.0,1170652740 +465,327,3.0,1170652767 +465,531,3.5,1170652746 +465,542,0.5,1170652893 +465,562,3.0,1170652771 +465,661,4.0,1170653770 +465,778,5.0,1170653457 +465,838,5.0,1170653263 +465,858,5.0,1170653592 +465,1620,3.5,1170652847 +465,1895,4.5,1170652934 +465,1958,5.0,1170652812 +465,2145,4.0,1170652763 +465,2336,5.0,1170653408 +465,2375,3.0,1170652879 +465,2542,5.0,1170653427 +465,2581,3.0,1170652760 +465,2959,5.0,1170653589 +465,3107,3.0,1170652734 +465,3452,4.0,1170652906 +465,3512,3.5,1170652951 +465,3844,5.0,1170652953 +465,4011,5.0,1170653455 +465,4246,4.5,1170653260 +465,4896,4.5,1170653605 +465,4921,5.0,1170653523 +465,4995,4.0,1170653526 +465,5377,3.5,1170653517 +465,5816,4.5,1170653563 +465,6942,4.0,1170653399 +465,27706,4.0,1170653646 +465,30793,3.5,1170653609 +465,31694,1.0,1170653280 +465,34162,4.0,1170652940 +465,38798,3.0,1170653612 +465,40629,5.0,1170653266 +465,40815,4.5,1170653520 +466,1,5.0,944892273 +466,2,3.0,944978286 +466,25,3.0,945139829 +466,34,4.0,944979430 +466,36,3.0,945317020 +466,39,4.0,944979604 +466,41,4.0,945010502 +466,48,3.0,944979236 +466,50,4.0,945139638 +466,150,4.0,945139757 +466,153,2.0,944978804 +466,223,5.0,944979917 +466,246,5.0,945139311 +466,260,5.0,944977176 +466,296,4.0,945232550 +466,316,2.0,945317266 +466,318,5.0,945139349 +466,329,3.0,944978286 +466,333,4.0,945317313 +466,344,2.0,944892302 +466,357,5.0,944979809 +466,364,5.0,944978989 +466,381,3.0,944892303 +466,440,2.0,944979745 +466,480,4.0,944978157 +466,497,5.0,945140540 +466,500,4.0,945317187 +466,527,5.0,945139349 +466,539,3.0,945317137 +466,541,3.0,945139801 +466,586,4.0,945317291 +466,588,4.0,944978924 +466,589,3.0,945139738 +466,592,4.0,944977911 +466,594,5.0,944978924 +466,595,5.0,944978989 +466,596,5.0,944978924 +466,608,4.0,945139883 +466,616,5.0,944979057 +466,627,3.0,949377348 +466,648,1.0,944978339 +466,674,1.0,944978060 +466,678,4.0,945010704 +466,709,3.0,944979109 +466,761,4.0,944978548 +466,783,4.0,944979109 +466,848,4.0,945317247 +466,858,5.0,944942987 +466,898,5.0,944979430 +466,899,5.0,945010461 +466,903,4.0,944977399 +466,904,5.0,944977273 +466,912,5.0,944892273 +466,919,5.0,944977223 +466,923,5.0,944977357 +466,940,5.0,944977694 +466,953,5.0,945232758 +466,954,5.0,945140415 +466,1022,4.0,944979024 +466,1023,5.0,944979109 +466,1029,5.0,944979057 +466,1036,4.0,945140034 +466,1042,3.0,944980010 +466,1050,4.0,945139263 +466,1079,5.0,945139434 +466,1091,2.0,945836678 +466,1094,4.0,945139717 +466,1097,5.0,945139864 +466,1103,4.0,945140176 +466,1104,4.0,945140034 +466,1135,3.0,945836604 +466,1196,4.0,944977696 +466,1197,5.0,944977756 +466,1198,5.0,944977696 +466,1200,5.0,945232987 +466,1203,4.0,945139663 +466,1208,3.0,944942987 +466,1210,4.0,944892303 +466,1220,4.0,945836527 +466,1221,4.0,944942987 +466,1224,5.0,945139464 +466,1231,4.0,945140071 +466,1242,5.0,945233281 +466,1256,5.0,944977176 +466,1259,5.0,944977789 +466,1265,4.0,944977357 +466,1266,4.0,945139414 +466,1269,5.0,944979858 +466,1270,3.0,944979714 +466,1282,3.0,944978924 +466,1287,4.0,944977789 +466,1288,4.0,945836302 +466,1291,4.0,944977956 +466,1297,2.0,945836436 +466,1307,5.0,945140225 +466,1321,3.0,945140445 +466,1356,3.0,944978124 +466,1358,4.0,945139801 +466,1370,3.0,944892273 +466,1371,3.0,944978761 +466,1373,2.0,944978804 +466,1374,5.0,944977834 +466,1375,4.0,944978157 +466,1376,4.0,944978060 +466,1377,3.0,944978124 +466,1378,3.0,945836657 +466,1387,5.0,945139663 +466,1394,4.0,944979714 +466,1408,5.0,945317086 +466,1544,3.0,944978490 +466,1566,3.0,944979178 +466,1580,3.0,944979604 +466,1617,3.0,944977451 +466,1639,5.0,945140370 +466,1641,4.0,945139990 +466,1663,4.0,945836436 +466,1676,3.0,944978339 +466,1688,5.0,944979201 +466,1704,4.0,944892929 +466,1784,4.0,945233032 +466,1810,3.0,945139717 +466,1883,3.0,945140106 +466,1907,5.0,944978989 +466,1917,2.0,944978367 +466,1934,5.0,944979858 +466,1947,5.0,945233333 +466,1968,3.0,945836527 +466,1997,4.0,945140225 +466,2003,4.0,945836576 +466,2005,1.0,944892273 +466,2011,1.0,945836576 +466,2018,5.0,944978989 +466,2028,5.0,945139414 +466,2054,3.0,944978287 +466,2078,5.0,944979024 +466,2080,5.0,944978924 +466,2081,5.0,944979057 +466,2085,5.0,944979024 +466,2087,5.0,944978989 +466,2088,3.0,944978416 +466,2090,4.0,944979178 +466,2100,2.0,945836527 +466,2114,3.0,945317187 +466,2115,4.0,944978124 +466,2140,2.0,945317187 +466,2141,3.0,944979109 +466,2144,2.0,945836527 +466,2145,2.0,945836576 +466,2174,3.0,945836436 +466,2193,2.0,944978060 +466,2243,5.0,944979858 +466,2245,3.0,945836576 +466,2262,3.0,945836628 +466,2321,2.0,944979943 +466,2324,4.0,948124791 +466,2352,3.0,945836302 +466,2355,5.0,944979562 +466,2369,3.0,945836628 +466,2371,2.0,944892929 +466,2384,3.0,944979562 +466,2394,4.0,944898563 +466,2395,4.0,944979809 +466,2396,5.0,944897726 +466,2405,4.0,945836657 +466,2406,4.0,944977911 +466,2414,4.0,944978287 +466,2421,2.0,944978448 +466,2427,4.0,945317187 +466,2469,3.0,945836576 +466,2470,3.0,945836657 +466,2473,2.0,945836740 +466,2478,3.0,945317332 +466,2501,4.0,944898002 +466,2506,4.0,947735412 +466,2529,5.0,944892929 +466,2539,3.0,944898563 +466,2558,2.0,947735304 +466,2571,2.0,944897726 +466,2599,4.0,949377543 +466,2617,4.0,944898945 +466,2628,3.0,944978287 +466,2640,4.0,944977834 +466,2641,5.0,944978199 +466,2642,2.0,944978804 +466,2683,4.0,944898563 +466,2687,5.0,944979024 +466,2693,4.0,949377501 +466,2700,3.0,944898002 +466,2723,4.0,948339736 +466,2736,4.0,945836604 +466,2739,4.0,945010270 +466,2746,5.0,945836527 +466,2761,5.0,944897726 +466,2762,4.0,945139829 +466,2797,5.0,945317111 +466,2863,4.0,944977483 +466,2875,3.0,945317247 +466,2915,2.0,945836527 +466,2916,3.0,944977834 +466,2918,5.0,945317053 +466,2987,5.0,944977834 +466,3034,4.0,944978989 +466,3035,5.0,944980010 +466,3037,4.0,945232758 +466,3052,3.0,945316556 +466,3060,4.0,944979810 +466,3072,4.0,944979562 +466,3088,5.0,944979604 +466,3097,4.0,944977223 +466,3108,5.0,945140225 +466,3114,5.0,944978924 +466,3130,2.0,945317420 +466,3157,2.0,949377475 +466,3175,2.0,948985208 +466,3176,4.0,948339694 +466,5060,3.0,944979604 +467,43,4.0,939063188 +467,155,3.0,939064184 +467,223,2.0,939063188 +467,341,4.0,939715642 +467,432,2.0,939064322 +467,523,4.0,941441316 +467,590,5.0,942047345 +467,608,5.0,939063829 +467,858,4.0,939063829 +467,903,5.0,939063829 +467,928,5.0,939628293 +467,1056,3.0,946094367 +467,1093,3.0,939063537 +467,1124,4.0,939064124 +467,1213,4.0,939063829 +467,1221,4.0,939063829 +467,1236,4.0,942756581 +467,1513,2.0,939063537 +467,1537,4.0,942047345 +467,1584,5.0,945642825 +467,1645,4.0,941876931 +467,1684,3.0,941440809 +467,1704,5.0,939063829 +467,1711,4.0,939064257 +467,1721,5.0,939628293 +467,1784,5.0,939063871 +467,1923,4.0,939628293 +467,2023,4.0,939064124 +467,2062,3.0,939064124 +467,2150,3.0,939064184 +467,2154,4.0,939064040 +467,2165,2.0,939628293 +467,2166,4.0,941441316 +467,2168,4.0,942047345 +467,2188,3.0,939063634 +467,2268,4.0,939063871 +467,2336,3.0,939063365 +467,2390,3.0,939063365 +467,2395,4.0,939063188 +467,2396,5.0,939063287 +467,2424,4.0,939063871 +467,2433,5.0,939063588 +467,2434,5.0,939063365 +467,2469,4.0,939064221 +467,2501,2.0,939731054 +467,2539,3.0,939731054 +467,2567,4.0,939731054 +467,2575,5.0,939628293 +467,2580,4.0,939063365 +467,2590,3.0,943804795 +467,2599,4.0,943804714 +467,2716,4.0,939063287 +467,2724,4.0,939062828 +467,2725,3.0,939062573 +467,2762,4.0,939062479 +467,2858,5.0,939062480 +467,2881,4.0,939062746 +467,2942,5.0,942047378 +467,2950,4.0,939064363 +467,2997,4.0,943804760 +467,3051,3.0,945642349 +467,3079,4.0,945642308 +467,3083,4.0,945642308 +467,3125,5.0,945642255 +468,1,4.0,1296195523 +468,2,2.0,1296195941 +468,3,2.5,1296196738 +468,6,3.5,1296195765 +468,10,3.0,1296195616 +468,11,2.0,1296195998 +468,16,3.5,1296196073 +468,17,3.5,1296195956 +468,19,1.5,1296190090 +468,21,2.5,1296195775 +468,24,2.5,1296198402 +468,25,3.0,1296195961 +468,31,1.5,1296193889 +468,32,3.0,1296189720 +468,34,3.5,1296191457 +468,39,3.0,1296195802 +468,44,1.5,1296197500 +468,47,3.5,1296195557 +468,48,2.5,1296197205 +468,50,3.0,1296195544 +468,58,3.0,1296197114 +468,62,2.5,1296195949 +468,65,0.5,1296192303 +468,88,1.5,1296192404 +468,104,2.0,1296195992 +468,107,3.0,1296202861 +468,110,3.0,1296195515 +468,111,4.0,1296193008 +468,135,1.5,1296198467 +468,150,3.0,1296191153 +468,153,1.0,1296191749 +468,158,2.0,1296197013 +468,160,1.5,1296196963 +468,162,4.0,1296194504 +468,170,2.0,1296198261 +468,185,1.5,1296195798 +468,186,1.5,1296196975 +468,203,2.0,1296201724 +468,207,2.0,1296201591 +468,208,2.0,1296195829 +468,216,1.0,1296192291 +468,231,2.5,1296195857 +468,235,3.5,1296194040 +468,236,2.5,1296197294 +468,246,3.5,1296192936 +468,252,2.0,1296197360 +468,256,2.0,1296197456 +468,260,3.5,1296195511 +468,267,2.0,1296203339 +468,272,3.0,1296189314 +468,277,3.0,1296197473 +468,288,2.0,1296195964 +468,293,3.5,1296195959 +468,296,3.5,1296193351 +468,300,2.0,1296195914 +468,316,2.0,1296195862 +468,317,3.0,1296196112 +468,318,3.5,1296195508 +468,326,3.5,1296194633 +468,329,2.5,1296195845 +468,333,2.5,1296197322 +468,337,3.5,1296196078 +468,339,2.5,1296195759 +468,344,1.5,1296190092 +468,349,2.5,1296193229 +468,356,3.0,1296195502 +468,357,3.0,1296195824 +468,361,2.5,1296201530 +468,364,3.5,1296195563 +468,367,1.5,1296195850 +468,368,2.5,1296196081 +468,374,1.5,1296202971 +468,376,3.5,1296201581 +468,377,3.0,1296195553 +468,412,3.0,1296190264 +468,414,2.0,1296190297 +468,419,1.5,1296202988 +468,432,2.5,1296197193 +468,434,2.5,1296195806 +468,435,2.5,1296197828 +468,440,2.0,1296193814 +468,441,3.0,1296198091 +468,448,2.5,1296203891 +468,455,1.0,1296189301 +468,457,3.5,1296195518 +468,468,3.0,1296198280 +468,471,4.0,1296197444 +468,480,2.5,1296195506 +468,485,2.5,1296196866 +468,491,2.0,1296198827 +468,497,3.0,1296197502 +468,500,2.5,1296195860 +468,515,3.5,1296197314 +468,520,3.0,1296196841 +468,524,3.0,1296202903 +468,529,2.5,1296197336 +468,531,3.0,1296198340 +468,535,3.5,1296193365 +468,539,3.0,1296195834 +468,541,3.5,1296192468 +468,543,2.5,1296196868 +468,552,2.5,1296196849 +468,556,3.5,1296194029 +468,585,2.5,1296197475 +468,586,2.5,1296195816 +468,587,2.5,1296195620 +468,588,2.5,1296190323 +468,590,3.0,1296195538 +468,593,3.0,1296195504 +468,594,4.0,1296195986 +468,595,3.0,1296191868 +468,596,4.0,1296197806 +468,597,2.5,1296195620 +468,608,4.0,1296194220 +468,620,2.5,1296199712 +468,637,2.0,1296201316 +468,648,3.0,1296195559 +468,653,1.5,1296196202 +468,661,3.5,1296197346 +468,673,1.5,1296198305 +468,708,2.5,1296196118 +468,719,2.5,1296189306 +468,736,2.0,1296195864 +468,750,4.0,1296195260 +468,778,4.0,1296195929 +468,780,2.0,1296195532 +468,783,2.5,1296197177 +468,784,2.5,1296196231 +468,785,2.5,1296197541 +468,788,1.5,1296196026 +468,802,2.0,1296197017 +468,806,3.0,1296190588 +468,830,2.0,1296198094 +468,837,3.0,1296201324 +468,838,3.0,1296198033 +468,858,4.0,1296194661 +468,880,2.5,1296201837 +468,898,3.5,1296194423 +468,899,3.5,1296197466 +468,902,2.5,1296197947 +468,903,4.0,1296192976 +468,904,4.0,1296192883 +468,905,3.5,1296199970 +468,908,4.0,1296192909 +468,909,3.5,1296191139 +468,910,4.0,1296194280 +468,911,3.0,1296193334 +468,912,3.5,1296195226 +468,913,4.0,1296194904 +468,914,3.0,1296197426 +468,919,4.0,1296195947 +468,920,4.0,1296196172 +468,922,3.5,1296194892 +468,923,5.0,1296192929 +468,924,4.5,1296189688 +468,926,3.5,1296190443 +468,928,3.5,1296194480 +468,930,4.0,1296192853 +468,932,3.0,1296190207 +468,933,3.5,1296201686 +468,936,3.5,1296199981 +468,942,3.0,1296193029 +468,946,4.0,1296193059 +468,947,4.5,1296193047 +468,950,4.0,1296194543 +468,951,4.0,1296194668 +468,952,2.5,1296191215 +468,953,3.5,1296193401 +468,954,4.0,1296202951 +468,955,4.0,1296194214 +468,963,3.0,1296197724 +468,965,4.5,1296189906 +468,968,4.0,1296198267 +468,970,3.0,1296191843 +468,1019,2.5,1296189669 +468,1020,3.0,1296193912 +468,1021,2.5,1296190944 +468,1022,3.0,1296197936 +468,1025,3.0,1296201301 +468,1027,2.0,1296198132 +468,1028,3.5,1296197564 +468,1029,3.5,1296198021 +468,1035,3.5,1296196767 +468,1036,2.5,1296195826 +468,1042,3.0,1296189275 +468,1059,3.0,1296197953 +468,1069,3.0,1296194882 +468,1073,3.5,1296195616 +468,1076,3.5,1296195263 +468,1077,2.5,1296198388 +468,1078,3.0,1296191622 +468,1079,2.5,1296196006 +468,1080,4.0,1296193304 +468,1081,2.5,1296202915 +468,1084,3.0,1296193124 +468,1086,3.5,1296194399 +468,1088,2.0,1296197222 +468,1089,3.0,1296195762 +468,1090,3.0,1296196238 +468,1094,3.0,1296196769 +468,1095,3.5,1296198556 +468,1097,3.5,1296195616 +468,1103,3.5,1296193354 +468,1104,3.5,1296201445 +468,1120,2.5,1296197182 +468,1124,3.0,1296201539 +468,1127,3.0,1296190072 +468,1129,2.5,1296197914 +468,1132,3.0,1296194685 +468,1136,4.0,1296193302 +468,1148,3.5,1296194299 +468,1172,3.0,1296189281 +468,1178,4.0,1296192859 +468,1183,3.0,1296196125 +468,1185,3.0,1296198702 +468,1189,4.0,1296192871 +468,1193,4.0,1296194420 +468,1196,3.0,1296195546 +468,1197,3.5,1296195620 +468,1198,3.5,1296195555 +468,1199,4.0,1296196908 +468,1200,3.0,1296190426 +468,1203,4.0,1296189616 +468,1204,4.0,1296194359 +468,1207,3.5,1296194493 +468,1208,4.0,1296191149 +468,1209,3.5,1296194369 +468,1210,3.5,1296195535 +468,1211,4.0,1296194070 +468,1212,4.5,1296192832 +468,1213,4.0,1296195967 +468,1214,3.5,1296190431 +468,1219,4.5,1296194530 +468,1221,4.0,1296195788 +468,1222,4.0,1296196016 +468,1224,3.5,1296193075 +468,1225,3.5,1296190544 +468,1228,4.0,1296194533 +468,1230,3.5,1296191046 +468,1231,3.5,1296198739 +468,1233,3.5,1296194210 +468,1234,3.0,1296196675 +468,1235,3.5,1296189327 +468,1237,3.5,1296195280 +468,1240,3.0,1296195627 +468,1243,3.0,1296203189 +468,1244,3.5,1296189330 +468,1245,4.0,1296194317 +468,1246,2.5,1296196003 +468,1247,3.5,1296194188 +468,1248,4.0,1296194728 +468,1250,4.0,1296194455 +468,1252,4.0,1296192895 +468,1253,3.5,1296201383 +468,1254,4.0,1296193013 +468,1256,4.5,1296193113 +468,1257,3.0,1296192094 +468,1258,4.0,1296195907 +468,1260,5.0,1296192901 +468,1262,3.5,1296194223 +468,1263,4.0,1296198036 +468,1265,3.5,1296195618 +468,1266,3.5,1296194068 +468,1267,3.5,1296194365 +468,1269,3.0,1296191226 +468,1270,3.0,1296191518 +468,1272,3.5,1296193317 +468,1276,3.5,1296194257 +468,1278,3.5,1296197128 +468,1281,4.0,1296194462 +468,1282,3.5,1296197111 +468,1283,3.0,1296194348 +468,1284,3.5,1296192222 +468,1287,2.5,1296192003 +468,1288,4.0,1296194241 +468,1291,3.0,1296195832 +468,1292,3.5,1296191965 +468,1293,3.5,1296198016 +468,1295,3.0,1296202684 +468,1296,3.0,1296198487 +468,1297,2.5,1296201853 +468,1300,2.5,1296194055 +468,1302,2.5,1296197574 +468,1303,4.0,1296193043 +468,1304,3.5,1296196188 +468,1305,3.5,1296194476 +468,1333,4.0,1296192320 +468,1339,2.5,1296197431 +468,1340,3.5,1296194501 +468,1344,3.5,1296201521 +468,1347,2.5,1296198042 +468,1348,4.0,1296194693 +468,1350,2.5,1296202984 +468,1366,2.5,1296202656 +468,1367,1.5,1296189597 +468,1380,3.0,1296196152 +468,1387,3.5,1296195895 +468,1391,3.0,1296196130 +468,1393,2.0,1296195944 +468,1394,3.5,1296196499 +468,1396,2.5,1296198300 +468,1399,2.5,1296203549 +468,1405,3.0,1296191881 +468,1407,2.5,1296196061 +468,1408,2.5,1296197483 +468,1409,2.0,1296198285 +468,1411,3.5,1296198166 +468,1419,3.5,1296194099 +468,1431,1.5,1296192113 +468,1438,2.5,1296198513 +468,1449,3.5,1296198834 +468,1464,4.0,1296203038 +468,1479,2.5,1296198464 +468,1485,2.0,1296196084 +468,1499,1.5,1296190775 +468,1515,2.0,1296202884 +468,1517,2.0,1296191383 +468,1527,2.5,1296196220 +468,1544,2.5,1296198162 +468,1552,2.0,1296196496 +468,1556,1.0,1296202845 +468,1562,1.5,1296191733 +468,1566,2.5,1296198855 +468,1569,1.5,1296198207 +468,1580,3.0,1296195618 +468,1584,3.0,1296195883 +468,1586,1.5,1296198317 +468,1591,1.5,1296203203 +468,1592,1.0,1296190286 +468,1610,2.5,1296195893 +468,1617,3.0,1296193403 +468,1625,3.0,1296198384 +468,1645,2.0,1296196755 +468,1649,4.0,1296194115 +468,1653,3.5,1296196056 +468,1672,2.5,1296201597 +468,1674,3.0,1296197888 +468,1676,1.5,1296196504 +468,1682,3.5,1296195925 +468,1688,2.5,1296190790 +468,1701,3.0,1296201760 +468,1704,3.0,1296195795 +468,1721,2.5,1296195616 +468,1722,2.0,1296196854 +468,1729,3.0,1296196742 +468,1732,4.0,1296192205 +468,1735,3.0,1296203174 +468,1747,2.5,1296196998 +468,1748,3.0,1296197171 +468,1777,2.5,1296196558 +468,1784,2.5,1296191266 +468,1801,2.5,1296198831 +468,1805,2.0,1296198013 +468,1810,2.5,1296201338 +468,1831,1.5,1296198108 +468,1834,2.5,1296201706 +468,1876,2.5,1296196542 +468,1882,1.5,1296197849 +468,1883,2.0,1296198554 +468,1884,3.0,1296198200 +468,1887,2.0,1296190517 +468,1892,2.0,1296198688 +468,1894,1.5,1296202958 +468,1907,2.5,1296202893 +468,1909,2.5,1296197877 +468,1916,3.0,1296203107 +468,1917,1.0,1296191199 +468,1921,3.5,1296197244 +468,1923,2.0,1296195974 +468,1925,3.5,1296201266 +468,1927,3.5,1296190463 +468,1934,3.5,1296193274 +468,1935,3.5,1296194152 +468,1939,3.0,1296192074 +468,1942,3.0,1296190479 +468,1945,3.5,1296194431 +468,1947,2.5,1296197220 +468,1949,3.0,1296193045 +468,1950,3.0,1296194413 +468,1952,4.0,1296194202 +468,1953,3.0,1296189259 +468,1955,4.0,1296198558 +468,1957,3.5,1296198000 +468,1959,2.5,1296198414 +468,1960,3.0,1296198112 +468,1961,3.0,1296195784 +468,1962,3.0,1296197383 +468,1965,3.0,1296198227 +468,1966,3.0,1296194125 +468,1968,3.0,1296195899 +468,1982,3.0,1296202998 +468,1994,2.5,1296197164 +468,1997,2.5,1296197034 +468,2005,3.0,1296197863 +468,2006,2.0,1296197202 +468,2010,4.0,1296194688 +468,2011,2.5,1296191521 +468,2012,3.0,1296191529 +468,2013,2.5,1296198189 +468,2018,3.5,1296191609 +468,2019,4.0,1296194890 +468,2021,2.0,1296193797 +468,2022,3.5,1296203392 +468,2023,3.5,1296197213 +468,2028,3.0,1296195573 +468,2033,2.5,1296192356 +468,2035,3.0,1296193189 +468,2053,1.5,1296198720 +468,2054,2.5,1296196063 +468,2059,3.0,1296203280 +468,2064,3.5,1296197344 +468,2065,3.5,1296201673 +468,2066,3.5,1296192857 +468,2067,3.0,1296198682 +468,2072,3.0,1296189780 +468,2076,4.0,1296197363 +468,2078,3.5,1296197441 +468,2080,3.5,1296197263 +468,2081,2.5,1296197291 +468,2084,3.0,1296200192 +468,2085,3.0,1296189601 +468,2087,3.5,1296198844 +468,2100,3.0,1296196478 +468,2105,3.0,1296196844 +468,2115,3.0,1296196032 +468,2125,2.0,1296201694 +468,2132,3.0,1296194496 +468,2134,2.5,1296198145 +468,2137,2.0,1296198356 +468,2139,3.0,1296198704 +468,2150,2.5,1296189264 +468,2160,3.5,1296193357 +468,2161,3.0,1296197050 +468,2174,3.0,1296191927 +468,2183,3.5,1296194051 +468,2186,4.0,1296192830 +468,2193,2.5,1296197126 +468,2194,3.5,1296198392 +468,2195,1.5,1296193682 +468,2203,4.0,1296194723 +468,2208,4.0,1296194675 +468,2210,4.0,1296194093 +468,2221,4.0,1296192456 +468,2243,3.0,1296198173 +468,2248,3.0,1296198011 +468,2268,2.5,1296196488 +468,2273,2.5,1296197063 +468,2289,3.5,1296194142 +468,2291,3.5,1296196021 +468,2294,2.5,1296191077 +468,2300,3.0,1296194060 +468,2303,4.5,1296199803 +468,2311,2.5,1296189813 +468,2313,4.0,1296198544 +468,2321,3.0,1296196993 +468,2324,3.0,1296196186 +468,2329,1.5,1296190688 +468,2333,3.0,1296198443 +468,2335,1.5,1296198275 +468,2336,3.0,1296196933 +468,2353,2.5,1296197261 +468,2355,3.5,1296196042 +468,2366,4.0,1296197854 +468,2371,2.5,1296197873 +468,2393,2.5,1296197166 +468,2394,2.5,1296198118 +468,2395,3.5,1296196485 +468,2398,3.5,1296203285 +468,2406,2.5,1296196686 +468,2407,2.5,1296196984 +468,2409,2.5,1296201360 +468,2410,2.5,1296198472 +468,2411,2.5,1296198706 +468,2412,2.0,1296203193 +468,2413,2.5,1296193241 +468,2420,2.0,1296197334 +468,2424,2.5,1296196857 +468,2431,1.5,1296197995 +468,2433,2.0,1296198797 +468,2454,3.0,1296201684 +468,2455,2.5,1296197145 +468,2469,2.5,1296201665 +468,2470,3.0,1296196516 +468,2474,3.0,1296203426 +468,2478,3.0,1296198178 +468,2488,3.0,1296194372 +468,2496,2.0,1296192486 +468,2501,3.0,1296189342 +468,2502,3.5,1296195995 +468,2528,3.0,1296201628 +468,2529,3.0,1296196522 +468,2539,2.5,1296190784 +468,2541,2.0,1296193858 +468,2567,1.5,1296201310 +468,2571,3.0,1296195542 +468,2572,2.0,1296196814 +468,2580,2.5,1296197405 +468,2581,2.5,1296197460 +468,2605,2.0,1296197604 +468,2612,3.0,1296195210 +468,2616,2.5,1296201285 +468,2617,2.5,1296196115 +468,2628,2.0,1296195616 +468,2648,3.5,1296194266 +468,2657,2.5,1296196649 +468,2664,3.5,1296194192 +468,2671,2.5,1296197004 +468,2683,2.0,1296195768 +468,2687,2.5,1296198436 +468,2691,2.0,1296203500 +468,2692,3.0,1296196168 +468,2694,1.0,1296197100 +468,2699,3.0,1296191179 +468,2701,1.5,1296196831 +468,2706,1.5,1296190708 +468,2707,2.5,1296189352 +468,2716,3.0,1296195818 +468,2717,2.5,1296197544 +468,2719,1.5,1296198812 +468,2722,1.0,1296197438 +468,2724,1.5,1296189293 +468,2726,3.5,1296192881 +468,2727,3.0,1296202747 +468,2728,3.5,1296198446 +468,2729,3.5,1296193038 +468,2731,3.5,1296189920 +468,2746,2.5,1296197134 +468,2747,4.0,1296203142 +468,2750,2.5,1296201745 +468,2761,4.0,1296197302 +468,2762,3.0,1296195571 +468,2791,3.0,1296190310 +468,2797,3.5,1296192153 +468,2803,2.5,1296198461 +468,2804,3.5,1296196689 +468,2857,4.0,1296201104 +468,2858,3.5,1296190586 +468,2863,4.0,1296194122 +468,2871,3.0,1296189296 +468,2890,3.0,1296198283 +468,2905,3.5,1296193093 +468,2908,3.5,1296198211 +468,2915,2.0,1296189299 +468,2916,2.5,1296196019 +468,2918,3.5,1296195902 +468,2935,3.5,1296199972 +468,2936,4.0,1296195217 +468,2944,3.0,1296197478 +468,2946,3.5,1296201111 +468,2947,3.0,1296196670 +468,2949,3.0,1296198296 +468,2953,2.5,1296197562 +468,2959,3.0,1296195619 +468,2966,3.5,1296194237 +468,2968,3.0,1296189267 +468,2973,3.5,1296201799 +468,2974,1.0,1296191761 +468,2976,3.0,1296203461 +468,2987,3.5,1296195927 +468,2997,2.5,1296191962 +468,3002,3.5,1296199691 +468,3006,3.0,1296197174 +468,3007,4.0,1296190696 +468,3020,2.5,1296197978 +468,3022,5.0,1296194944 +468,3030,3.5,1296192814 +468,3033,2.5,1296197950 +468,3034,3.5,1296198736 +468,3035,3.0,1296194161 +468,3052,2.5,1296196199 +468,3075,4.0,1296194320 +468,3077,4.0,1296189924 +468,3082,1.5,1296197155 +468,3087,3.0,1296198198 +468,3088,3.5,1296199985 +468,3089,4.5,1296192150 +468,3095,3.0,1296192963 +468,3097,4.0,1296193056 +468,3098,3.0,1296201553 +468,3099,2.5,1296200020 +468,3104,3.0,1296198793 +468,3105,2.5,1296191424 +468,3108,2.5,1296189335 +468,3114,4.0,1296195932 +468,3136,3.0,1296199816 +468,3140,4.0,1296199854 +468,3147,2.5,1296195989 +468,3148,2.5,1296197860 +468,3152,4.0,1296203349 +468,3155,1.5,1296191020 +468,3156,2.0,1296192147 +468,3157,2.5,1296201379 +468,3175,3.0,1296197523 +468,3196,3.0,1296194330 +468,3198,3.0,1296201510 +468,3201,3.0,1296194264 +468,3210,3.0,1296197032 +468,3232,4.0,1296194922 +468,3246,3.0,1296198365 +468,3247,2.5,1296197589 +468,3252,3.0,1296198745 +468,3253,2.5,1296196661 +468,3255,3.0,1296196776 +468,3258,2.5,1296202981 +468,3259,2.0,1296203251 +468,3263,2.5,1296197960 +468,3270,2.0,1296193871 +468,3271,2.0,1296201681 +468,3285,2.0,1296191827 +468,3306,4.0,1296192947 +468,3307,4.0,1296192878 +468,3309,4.5,1296197635 +468,3310,4.5,1296192943 +468,3314,2.5,1296192244 +468,3317,3.0,1296197403 +468,3334,3.0,1296194229 +468,3341,3.0,1296194076 +468,3354,2.5,1296198302 +468,3359,3.5,1296194078 +468,3361,2.5,1296198221 +468,3362,4.0,1296193025 +468,3363,3.5,1296189344 +468,3364,3.0,1296191304 +468,3365,3.5,1296194321 +468,3420,3.0,1296189750 +468,3424,3.0,1296194110 +468,3429,4.0,1296201912 +468,3435,3.5,1296192817 +468,3444,1.5,1296192566 +468,3448,2.5,1296196910 +468,3450,2.5,1296198336 +468,3451,2.5,1296203293 +468,3461,3.5,1296203022 +468,3462,4.0,1296192906 +468,3468,4.0,1296202882 +468,3471,3.5,1296196785 +468,3476,3.0,1296198754 +468,3477,2.5,1296203249 +468,3479,2.5,1296201393 +468,3489,2.0,1296197148 +468,3499,3.0,1296197597 +468,3504,3.5,1296201846 +468,3505,2.5,1296203145 +468,3507,3.0,1296199993 +468,3510,2.5,1296197938 +468,3512,2.0,1296203296 +468,3524,3.0,1296191252 +468,3527,2.5,1296197106 +468,3551,3.5,1296203091 +468,3552,2.5,1296197047 +468,3555,2.0,1296197538 +468,3559,3.5,1296199856 +468,3608,3.5,1296198018 +468,3618,2.5,1296201780 +468,3623,2.5,1296196107 +468,3624,2.0,1296197309 +468,3629,4.5,1296192995 +468,3632,3.5,1296199907 +468,3634,3.0,1296194323 +468,3638,2.5,1296201696 +468,3639,3.0,1296198789 +468,3640,3.0,1296199901 +468,3671,2.5,1296192490 +468,3676,4.5,1296204007 +468,3683,3.5,1296192538 +468,3686,2.5,1296198807 +468,3703,3.0,1296198046 +468,3705,2.0,1296192310 +468,3717,1.0,1296196981 +468,3726,2.5,1296191320 +468,3730,3.5,1296192959 +468,3736,3.0,1296190096 +468,3740,2.5,1296192247 +468,3741,4.5,1296191576 +468,3742,4.0,1296191788 +468,3751,3.5,1296196148 +468,3755,2.0,1296196758 +468,3788,3.5,1296192589 +468,3791,2.5,1296203255 +468,3793,2.5,1296195778 +468,3798,2.5,1296197816 +468,3801,3.5,1296190793 +468,3809,2.5,1296197587 +468,3812,2.5,1296201763 +468,3814,2.5,1296201739 +468,3827,2.5,1296198067 +468,3861,1.5,1296197667 +468,3863,2.5,1296198147 +468,3911,3.5,1296197372 +468,3916,2.5,1296197054 +468,3929,4.5,1296191675 +468,3948,2.5,1296196942 +468,3959,3.0,1296202924 +468,3967,3.0,1296192284 +468,3968,1.5,1296191903 +468,3969,1.5,1296198063 +468,3977,1.5,1296196145 +468,3979,1.0,1296203377 +468,3986,2.0,1296189960 +468,3987,1.5,1296193176 +468,3988,1.5,1296197821 +468,3993,2.5,1296203571 +468,3994,3.0,1296197242 +468,3996,3.5,1296195970 +468,3999,1.5,1296201362 +468,4002,3.0,1296197304 +468,4008,2.5,1296201427 +468,4014,2.5,1296196712 +468,4016,2.5,1296198069 +468,4018,2.0,1296197830 +468,4020,3.0,1296202967 +468,4022,3.0,1296196058 +468,4023,2.5,1296197997 +468,4025,2.0,1296196927 +468,4027,4.0,1296196076 +468,4052,2.0,1296191065 +468,4054,1.5,1296201609 +468,4069,1.5,1296198727 +468,4103,2.5,1296200181 +468,4105,3.0,1296198242 +468,4144,3.5,1296193118 +468,4191,3.0,1296190345 +468,4226,3.5,1296195781 +468,4232,2.5,1296198809 +468,4237,3.5,1296192851 +468,4239,2.0,1296192573 +468,4270,1.5,1296197276 +468,4299,2.5,1296197927 +468,4306,2.5,1296195842 +468,4310,1.5,1296197297 +468,4321,2.5,1296196940 +468,4322,3.0,1296193386 +468,4327,3.0,1296201454 +468,4333,2.5,1296203346 +468,4361,3.0,1296197096 +468,4367,1.5,1296197199 +468,4369,2.0,1296197398 +468,4370,3.5,1296190023 +468,4405,4.5,1296192795 +468,4406,3.5,1296194472 +468,4409,2.5,1296201808 +468,4432,3.5,1296194843 +468,4447,2.5,1296196882 +468,4467,3.0,1296190137 +468,4499,2.5,1296198216 +468,4515,3.5,1296201108 +468,4545,2.5,1296203102 +468,4546,3.5,1296194297 +468,4571,2.5,1296192266 +468,4623,2.5,1296198448 +468,4628,2.5,1296201775 +468,4639,1.5,1296190580 +468,4643,2.5,1296197209 +468,4679,2.5,1296201702 +468,4700,2.0,1296203178 +468,4701,2.0,1296197408 +468,4713,2.5,1296190535 +468,4720,3.0,1296196891 +468,4721,2.5,1296190703 +468,4728,1.5,1296201488 +468,4776,2.5,1296197459 +468,4799,2.5,1296200012 +468,4816,2.0,1296197140 +468,4844,2.0,1296191644 +468,4848,3.5,1296197093 +468,4855,3.0,1296198313 +468,4857,2.5,1296203113 +468,4874,2.5,1296197265 +468,4878,3.0,1296197546 +468,4881,4.0,1296198105 +468,4886,3.5,1296195889 +468,4889,2.5,1296203368 +468,4890,2.0,1296198348 +468,4896,2.5,1296196930 +468,4958,1.5,1296191951 +468,4963,2.5,1296196040 +468,4969,3.5,1296190892 +468,4970,4.0,1296192600 +468,4973,3.0,1296190577 +468,4979,2.5,1296198686 +468,4980,2.5,1296192263 +468,4993,3.5,1296195622 +468,4994,2.5,1296203400 +468,4995,3.0,1296191862 +468,4998,3.0,1296194464 +468,5001,3.5,1296199190 +468,5008,3.0,1296194735 +468,5013,3.0,1296197504 +468,5014,2.5,1296201401 +468,5059,4.5,1296199697 +468,5060,3.0,1296196879 +468,5064,2.5,1296193249 +468,5065,2.5,1296201562 +468,5103,2.5,1296201415 +468,5121,4.5,1296192777 +468,5139,3.0,1296191564 +468,5171,2.0,1296201560 +468,5177,4.5,1296194752 +468,5202,3.0,1296194879 +468,5218,3.0,1296196771 +468,5265,2.5,1296193841 +468,5266,2.5,1296197045 +468,5267,3.0,1296203110 +468,5275,2.5,1296203456 +468,5288,4.0,1296191361 +468,5292,3.0,1296203166 +468,5299,2.0,1296197152 +468,5300,3.0,1296189909 +468,5313,1.0,1296203223 +468,5339,2.5,1296194155 +468,5349,2.5,1296195887 +468,5377,3.0,1296190051 +468,5378,2.0,1296197941 +468,5388,3.0,1296197002 +468,5400,1.5,1296198344 +468,5404,3.0,1296190001 +468,5418,3.0,1296196155 +468,5434,3.5,1296194384 +468,5444,2.5,1296197985 +468,5445,3.0,1296195921 +468,5449,0.5,1296201500 +468,5459,1.5,1296197066 +468,5464,2.5,1296196773 +468,5475,3.5,1296192988 +468,5502,3.0,1296197559 +468,5505,2.5,1296201833 +468,5507,0.5,1296197866 +468,5523,2.0,1296190165 +468,5528,2.5,1296197964 +468,5540,3.0,1296193227 +468,5602,3.5,1296193131 +468,5603,4.0,1296193032 +468,5604,4.0,1296194677 +468,5620,1.5,1296198779 +468,5669,3.0,1296196947 +468,5673,3.0,1296197495 +468,5679,2.5,1296196467 +468,5707,2.5,1296190060 +468,5712,2.5,1296192578 +468,5747,3.5,1296193070 +468,5812,3.0,1296202912 +468,5816,2.5,1296197886 +468,5872,1.0,1296198424 +468,5902,3.0,1296190121 +468,5914,4.5,1296202530 +468,5932,4.0,1296192766 +468,5941,1.5,1296193788 +468,5943,2.0,1296203067 +468,5945,3.0,1296190048 +468,5952,3.5,1296195838 +468,5955,2.0,1296191070 +468,5956,2.5,1296197463 +468,5957,2.0,1296201671 +468,5989,3.5,1296197230 +468,5991,2.0,1296196554 +468,5992,3.0,1296198294 +468,5995,4.0,1296196536 +468,6123,3.5,1296195116 +468,6148,3.0,1296199207 +468,6156,2.0,1296201419 +468,6157,1.5,1296197342 +468,6198,3.5,1296190627 +468,6254,3.5,1296191442 +468,6281,2.5,1296198149 +468,6296,3.0,1296198560 +468,6297,2.0,1296201856 +468,6303,3.0,1296190914 +468,6331,3.5,1296194172 +468,6333,3.0,1296196529 +468,6373,2.0,1296196987 +468,6377,3.5,1296196014 +468,6378,2.0,1296197196 +468,6380,4.0,1296203218 +468,6383,1.0,1296189656 +468,6385,3.5,1296198836 +468,6395,2.5,1296193257 +468,6400,3.5,1296192903 +468,6408,3.0,1296191007 +468,6433,4.5,1296193005 +468,6440,4.0,1296191715 +468,6460,4.0,1296194644 +468,6513,3.0,1296199390 +468,6534,2.5,1296197377 +468,6539,2.5,1296195898 +468,6564,1.0,1296201714 +468,6565,2.5,1296197316 +468,6579,3.0,1296199242 +468,6584,2.5,1296201788 +468,6593,2.0,1296201375 +468,6612,3.5,1296192764 +468,6650,4.0,1296193002 +468,6659,2.5,1296198492 +468,6662,3.0,1296201342 +468,6708,3.0,1296197285 +468,6711,3.0,1296197268 +468,6739,2.5,1296191341 +468,6780,4.0,1296202520 +468,6787,3.5,1296190501 +468,6791,3.5,1296191469 +468,6807,3.5,1296196990 +468,6818,4.0,1296192819 +468,6858,3.5,1296194519 +468,6863,3.0,1296196462 +468,6869,3.0,1296192926 +468,6870,3.0,1296196508 +468,6873,3.0,1296201437 +468,6874,3.0,1296196088 +468,6879,2.0,1296201647 +468,6936,2.5,1296197447 +468,6942,2.5,1296196899 +468,6947,3.0,1296197497 +468,6957,2.5,1296191567 +468,6979,2.5,1296198796 +468,6986,3.5,1296192001 +468,6987,4.0,1296193065 +468,6993,3.0,1296194345 +468,7013,4.0,1296192821 +468,7043,3.5,1296195134 +468,7044,3.0,1296204045 +468,7056,4.0,1296194831 +468,7062,3.0,1296192318 +468,7063,5.0,1296190279 +468,7065,3.5,1296192325 +468,7073,3.5,1296193370 +468,7074,4.5,1296195078 +468,7075,3.5,1296194395 +468,7076,3.0,1296193332 +468,7084,3.0,1296193135 +468,7089,4.0,1296190558 +468,7090,3.0,1296197481 +468,7091,4.0,1296192897 +468,7096,3.0,1296194090 +468,7132,4.0,1296194715 +468,7135,3.0,1296192918 +468,7139,3.5,1296198817 +468,7147,3.0,1296192191 +468,7149,2.5,1296198717 +468,7153,3.5,1296195790 +468,7156,4.0,1296193069 +468,7160,2.5,1296198084 +468,7195,3.5,1296199236 +468,7196,3.0,1296199465 +468,7209,4.0,1296194133 +468,7210,3.5,1296192855 +468,7238,4.0,1296191278 +468,7256,3.5,1296194702 +468,7309,4.0,1296192395 +468,7325,2.0,1296198540 +468,7334,3.0,1296201752 +468,7347,1.5,1296203019 +468,7361,2.5,1296196068 +468,7367,2.5,1296202906 +468,7386,3.0,1296202896 +468,7387,3.5,1296194038 +468,7407,2.5,1296190213 +468,7419,3.5,1296190230 +468,7438,3.0,1296196700 +468,7484,4.0,1296192788 +468,7566,4.5,1296189845 +468,7706,4.0,1296190993 +468,7748,3.5,1296194377 +468,7834,3.5,1296190250 +468,7897,3.0,1296191593 +468,7914,4.0,1296192042 +468,7934,3.5,1296201742 +468,7938,3.0,1296192979 +468,7939,3.0,1296193100 +468,7979,3.5,1296194523 +468,7983,3.5,1296201749 +468,8011,3.0,1296194546 +468,8042,4.0,1296194804 +468,8169,2.5,1296189789 +468,8207,3.5,1296194397 +468,8235,4.0,1296194966 +468,8257,3.0,1296191785 +468,8264,4.0,1296194312 +468,8267,3.5,1296199715 +468,8275,4.0,1296194852 +468,8336,3.5,1296194196 +468,8337,3.0,1296194393 +468,8338,3.5,1296192385 +468,8340,3.0,1296201577 +468,8360,2.0,1296196698 +468,8361,2.0,1296198571 +468,8366,2.5,1296201557 +468,8368,2.5,1296196916 +468,8376,2.5,1296197006 +468,8423,3.0,1296199161 +468,8451,3.0,1296192442 +468,8464,2.5,1296196644 +468,8491,4.0,1296194779 +468,8507,4.0,1296193116 +468,8511,4.5,1296194875 +468,8528,2.0,1296197355 +468,8529,3.0,1296197374 +468,8542,3.5,1296194656 +468,8600,4.0,1296190976 +468,8609,4.5,1296194959 +468,8610,2.5,1296190475 +468,8620,3.5,1296193561 +468,8623,2.5,1296198747 +468,8641,2.5,1296190803 +468,8644,2.0,1296197072 +468,8661,3.0,1296199533 +468,8665,3.0,1296196894 +468,8684,4.0,1296194996 +468,8700,3.0,1296199412 +468,8711,3.0,1296199989 +468,8751,4.0,1296192754 +468,8754,3.0,1296194381 +468,8783,2.5,1296197520 +468,8797,4.5,1296192782 +468,8838,4.0,1296203437 +468,8840,2.5,1296203444 +468,8874,3.5,1296196897 +468,8882,3.0,1296192633 +468,8950,3.5,1296197576 +468,8958,3.0,1296197835 +468,8961,3.5,1296196141 +468,8968,1.5,1296190242 +468,8970,3.0,1296196787 +468,8981,3.0,1296197818 +468,25750,4.5,1296194926 +468,25752,4.0,1296199151 +468,25755,3.5,1296192916 +468,25764,4.5,1296194930 +468,25769,4.5,1296192828 +468,25771,3.5,1296190902 +468,25777,4.0,1296194757 +468,25827,3.5,1296199983 +468,25839,3.5,1296194526 +468,25868,3.0,1296191587 +468,25916,2.5,1296199180 +468,25993,2.5,1296199261 +468,26052,3.5,1296193091 +468,26111,3.0,1296191889 +468,26122,3.5,1296194828 +468,26133,3.5,1296195182 +468,26171,4.5,1296195165 +468,26178,3.0,1296199279 +468,26302,3.5,1296192974 +468,26313,4.0,1296199809 +468,26391,2.5,1296203446 +468,26400,4.5,1296195057 +468,26414,3.5,1296199415 +468,26425,2.5,1296193120 +468,26614,3.0,1296197256 +468,26712,4.5,1296189893 +468,26850,3.0,1296189985 +468,27334,3.5,1296202870 +468,27706,2.5,1296198186 +468,27773,2.0,1296194058 +468,27808,2.0,1296201321 +468,27816,2.5,1296199365 +468,27821,2.5,1296201897 +468,27873,2.5,1296193295 +468,27879,3.5,1296192991 +468,27904,3.5,1296197975 +468,30707,3.0,1296197388 +468,30723,4.0,1296199813 +468,30793,2.5,1296197021 +468,30810,2.5,1296197274 +468,30812,3.5,1296191412 +468,30818,2.5,1296192136 +468,30822,2.5,1296201700 +468,30892,3.5,1296199286 +468,31116,2.5,1296194433 +468,31547,4.5,1296194956 +468,31549,4.0,1296199722 +468,31685,2.0,1296197924 +468,31737,3.0,1296199290 +468,31770,3.0,1296193531 +468,32031,2.5,1296203064 +468,32160,3.5,1296194776 +468,32280,3.5,1296189869 +468,32371,3.0,1296199387 +468,32853,4.0,1296192810 +468,32882,3.0,1296192235 +468,32898,4.5,1296194638 +468,33312,4.0,1296193339 +468,33380,3.5,1296189839 +468,33493,2.5,1296196889 +468,33660,3.0,1296197485 +468,33679,1.5,1296197078 +468,33681,0.5,1296190191 +468,33794,3.0,1296191745 +468,34048,2.5,1296197211 +468,34072,3.0,1296198278 +468,34321,2.0,1296191556 +468,34437,3.5,1296201404 +468,34542,4.0,1296192932 +468,34583,3.0,1296199518 +468,36517,3.0,1296198138 +468,36535,2.5,1296203362 +468,36553,3.0,1296199362 +468,37733,3.0,1296197885 +468,37741,3.5,1296198048 +468,37785,3.0,1296190906 +468,38304,4.0,1296194690 +468,39292,3.5,1296202864 +468,40278,2.5,1296198056 +468,40583,2.5,1296197879 +468,40819,2.5,1296196506 +468,41226,3.5,1296194726 +468,41566,2.5,1296196684 +468,41569,2.5,1296197044 +468,41571,2.5,1296201875 +468,42163,3.5,1296194165 +468,42681,3.5,1296189939 +468,44022,2.0,1296201297 +468,44195,2.5,1296196667 +468,44199,2.5,1296197812 +468,44555,3.5,1296194748 +468,44587,4.5,1296194947 +468,44633,4.0,1296199193 +468,44671,3.0,1296199719 +468,44761,4.0,1296201618 +468,45186,2.0,1296197909 +468,45431,2.5,1296198723 +468,45447,2.0,1296196802 +468,45499,2.0,1296196810 +468,45517,2.5,1296197912 +468,45722,2.0,1296196761 +468,45837,4.0,1296196950 +468,45950,2.5,1296198081 +468,46530,2.5,1296197917 +468,46578,3.0,1296196527 +468,46664,3.5,1296195076 +468,46850,3.0,1296194032 +468,46967,1.5,1296201777 +468,46974,2.0,1296204104 +468,46976,2.5,1296201390 +468,47099,3.0,1296197555 +468,47152,3.5,1296195316 +468,47287,3.5,1296195179 +468,47610,2.5,1296197929 +468,47629,2.5,1296198417 +468,47714,3.0,1296192512 +468,47721,4.0,1296194834 +468,47997,2.5,1296202841 +468,47999,3.5,1296203352 +468,48198,3.0,1296199818 +468,48301,4.0,1296195128 +468,48385,3.0,1296197824 +468,48394,3.0,1296196646 +468,48516,3.0,1296196672 +468,48741,3.0,1296199312 +468,48774,3.0,1296196797 +468,48780,2.5,1296196967 +468,48982,2.5,1296203577 +468,49225,3.5,1296194969 +468,49272,3.0,1296196945 +468,49394,3.5,1296194766 +468,49824,2.0,1296193788 +468,49932,3.5,1296204119 +468,50259,4.0,1296199327 +468,50658,4.0,1296189936 +468,50740,4.0,1296192745 +468,50742,4.0,1296189970 +468,50872,4.0,1296197506 +468,50912,3.0,1296203951 +468,51044,4.0,1296201121 +468,51080,3.5,1296202888 +468,51540,3.5,1296198342 +468,52241,3.0,1296193411 +468,52435,3.5,1296201288 +468,52666,2.5,1296192022 +468,52767,4.5,1296189822 +468,52967,3.5,1296191431 +468,53125,2.0,1296196707 +468,53322,2.5,1296197069 +468,53550,3.0,1296199702 +468,53894,2.5,1296203272 +468,53972,1.5,1296197186 +468,54286,3.0,1296197131 +468,54419,3.0,1296193875 +468,54426,3.5,1296189726 +468,54881,3.0,1296194671 +468,55063,3.5,1296194807 +468,55071,3.0,1296193314 +468,55276,3.0,1296194053 +468,55280,3.0,1296199333 +468,55290,3.0,1296198141 +468,55687,3.0,1296199165 +468,55768,2.5,1296191914 +468,55805,3.0,1296191943 +468,55814,3.5,1296193023 +468,55820,4.5,1296196874 +468,55830,1.5,1296191819 +468,56152,3.0,1296198351 +468,56174,2.5,1296196495 +468,56367,3.5,1296197279 +468,56563,3.5,1296199322 +468,56782,3.5,1296194024 +468,57368,3.0,1296193238 +468,57972,4.0,1296199626 +468,58559,3.0,1296196470 +468,58879,3.0,1296203441 +468,59315,2.5,1296196783 +468,59387,3.0,1296203258 +468,59418,2.5,1296190598 +468,59501,2.5,1296203094 +468,59615,2.0,1296197552 +468,59784,2.5,1296200150 +468,59832,3.0,1296194179 +468,59846,3.5,1296198288 +468,60040,1.5,1296197972 +468,60069,4.0,1296196722 +468,60684,2.5,1296197082 +468,60763,2.0,1296190731 +468,60766,4.0,1296194362 +468,61240,3.5,1296197593 +468,61323,3.5,1296196740 +468,62383,3.5,1296189665 +468,63072,3.0,1296198699 +468,63082,2.5,1296198528 +468,63859,2.5,1296198490 +468,63876,3.0,1296197897 +468,64285,3.0,1296201925 +468,64575,3.0,1296194403 +468,64701,3.0,1296199258 +468,64839,3.0,1296194104 +468,64957,3.0,1296196906 +468,65130,2.5,1296203511 +468,65638,4.0,1296191297 +468,66019,4.0,1296199726 +468,66934,3.0,1296197844 +468,67255,2.5,1296198848 +468,67504,5.0,1296199673 +468,68157,3.0,1296196663 +468,68237,3.0,1296196799 +468,68954,3.5,1296197311 +468,69122,2.5,1296196877 +468,69241,2.5,1296192033 +468,69306,1.5,1296203907 +468,69481,3.5,1296193398 +468,69604,2.5,1296201793 +468,69757,3.0,1296189783 +468,69951,3.5,1296201527 +468,70286,2.5,1296197424 +468,70488,3.5,1296199735 +468,70927,3.0,1296203961 +468,71156,2.5,1296203133 +468,71211,3.0,1296201870 +468,71264,2.5,1296201843 +468,71379,2.5,1296201304 +468,71464,4.0,1296198265 +468,71520,2.5,1296203129 +468,71525,3.0,1296190020 +468,71535,3.0,1296197307 +468,71650,4.0,1296199733 +468,71899,3.5,1296201922 +468,72011,3.0,1296198059 +468,72176,3.0,1296192200 +468,72226,4.0,1296198125 +468,72405,3.5,1296191549 +468,72626,3.0,1296192278 +468,72647,4.5,1296193144 +468,73017,1.5,1296197651 +468,73276,3.0,1296190267 +468,73572,3.0,1296199718 +468,74458,3.0,1296197036 +468,74486,2.5,1296189776 +468,74545,3.0,1296194271 +468,76093,2.5,1296196852 +468,77307,2.5,1296194112 +468,77359,3.0,1296199383 +468,77455,4.0,1296201066 +468,77866,2.5,1296201319 +468,78499,4.0,1296196551 +468,78517,3.0,1296203726 +468,78574,3.5,1296203055 +468,78829,3.0,1296192081 +468,79132,3.0,1296196481 +468,79824,3.0,1296191486 +468,80463,3.5,1296196728 +468,80572,2.5,1296203762 +468,80599,4.5,1296199868 +468,80862,3.0,1296201170 +468,81562,3.0,1296189514 +468,81845,3.0,1296196257 +468,81910,3.0,1296191250 +468,82459,4.0,1296202070 +468,82934,3.0,1296201721 +468,83096,3.5,1296197142 +468,83318,5.0,1296199871 +468,83322,4.0,1296196834 +468,83359,5.0,1296199873 +468,83361,3.5,1296197392 +468,83411,5.0,1296199870 +468,83603,3.5,1296196412 +469,170,4.5,1282471428 +469,468,3.0,1282471439 +469,555,4.5,1282471649 +469,616,2.0,1282471430 +469,719,0.5,1282471399 +469,720,4.0,1282471400 +469,838,3.5,1282471409 +469,1093,5.0,1282471432 +469,1244,2.5,1282471433 +469,1345,5.0,1282471403 +469,1479,2.0,1282471404 +469,1513,4.0,1282471406 +469,1947,5.0,1282471411 +469,2076,4.0,1282471413 +469,2915,3.5,1282471397 +469,3108,3.5,1282471435 +469,3210,4.5,1282471423 +469,3510,4.0,1282471425 +469,4643,4.5,1282471426 +469,8784,2.5,1282471436 +469,72612,2.5,1282471653 +470,1,3.5,1234088628 +470,29,4.0,1233101190 +470,70,3.5,1234089783 +470,172,4.0,1232976151 +470,224,3.5,1232976270 +470,247,3.5,1232976340 +470,253,3.0,1234089754 +470,261,3.5,1232976195 +470,296,3.0,1234088603 +470,318,3.0,1234088613 +470,661,3.0,1232976207 +470,841,2.5,1234091077 +470,913,4.5,1232976172 +470,965,3.0,1233101085 +470,969,4.5,1232976201 +470,1028,3.5,1232976140 +470,1076,4.0,1234089860 +470,1175,3.5,1233101166 +470,1190,2.0,1234091444 +470,1206,3.0,1234090174 +470,1212,3.5,1234091394 +470,1260,2.5,1234089010 +470,1271,1.5,1232976283 +470,1284,4.0,1234090290 +470,1285,4.5,1232976189 +470,1287,3.0,1232976293 +470,1295,3.5,1234090403 +470,1333,3.5,1232976185 +470,1339,2.5,1234089742 +470,1348,3.0,1234089703 +470,1554,4.0,1234090134 +470,1569,2.0,1232976250 +470,1748,2.5,1234089096 +470,1967,3.5,1234089064 +470,2010,3.5,1234090198 +470,2097,3.5,1234089620 +470,2105,3.0,1232976259 +470,2167,2.0,1234089775 +470,2173,2.5,1233101119 +470,2488,2.5,1234091095 +470,2746,3.0,1232976327 +470,2867,2.5,1234089747 +470,3221,4.0,1234090094 +470,3264,4.5,1234089769 +470,3435,3.0,1234089005 +470,3521,4.0,1234090931 +470,4128,3.0,1234089735 +470,4195,4.0,1234089614 +470,4720,3.0,1234089830 +470,4970,3.5,1234090254 +470,5146,4.0,1234089731 +470,5489,3.5,1234089713 +470,6541,3.5,1234089133 +470,6754,2.5,1234089804 +470,6987,3.5,1234090225 +470,7013,3.5,1234088977 +470,7051,4.0,1234089205 +470,7064,5.0,1234088884 +470,7068,3.0,1234090970 +470,7099,4.0,1234089187 +470,7454,3.0,1234089139 +470,7587,4.0,1234088998 +470,7766,3.5,1234088990 +470,7943,3.0,1234088918 +470,25763,2.0,1234090452 +470,25771,0.5,1234088858 +470,26265,3.5,1234089609 +470,31658,4.5,1234089113 +470,56757,3.0,1233101039 +471,1,3.5,1239658613 +471,2,3.0,1239744723 +471,10,4.5,1257634439 +471,150,4.5,1239659215 +471,186,3.0,1239660559 +471,260,5.0,1239657317 +471,292,3.0,1251234423 +471,356,4.0,1239659177 +471,364,4.0,1239658695 +471,376,3.5,1256074188 +471,377,2.5,1239747156 +471,380,3.5,1239660804 +471,405,4.0,1239745349 +471,480,3.5,1239657778 +471,520,3.0,1239744640 +471,527,4.0,1239744571 +471,541,3.5,1239658389 +471,586,2.5,1239746516 +471,588,3.5,1239657561 +471,589,4.5,1239660784 +471,593,4.5,1239657270 +471,594,4.5,1239658699 +471,597,3.5,1239660592 +471,736,3.0,1239659730 +471,750,3.5,1239744365 +471,780,3.0,1239745466 +471,788,4.0,1239744794 +471,919,3.5,1239748140 +471,1022,4.0,1239658549 +471,1023,4.0,1239656893 +471,1028,3.5,1239659905 +471,1029,3.5,1239744686 +471,1032,4.0,1239748285 +471,1047,2.5,1239746311 +471,1059,2.5,1239658026 +471,1080,4.5,1239658491 +471,1101,3.5,1239745150 +471,1136,4.5,1239658483 +471,1196,4.0,1239657313 +471,1198,4.0,1239659104 +471,1200,4.5,1239744162 +471,1201,4.5,1239660052 +471,1206,2.5,1239659293 +471,1210,4.5,1239657316 +471,1214,4.0,1239744126 +471,1219,4.0,1239746697 +471,1222,4.0,1239660261 +471,1233,4.0,1239745386 +471,1240,5.0,1239660764 +471,1246,3.5,1239744889 +471,1250,3.5,1239660529 +471,1258,4.5,1239744402 +471,1262,4.0,1239657957 +471,1291,4.5,1239659095 +471,1320,3.5,1239744160 +471,1333,3.5,1239656616 +471,1342,2.5,1273433548 +471,1387,3.5,1239659673 +471,1388,3.0,1239659679 +471,1544,3.0,1239657788 +471,1566,3.5,1239744307 +471,1580,3.0,1239746608 +471,1587,4.0,1239660791 +471,1610,4.0,1239746081 +471,1616,3.5,1251742975 +471,1665,3.5,1239656916 +471,1707,3.0,1239746521 +471,1721,3.5,1239745055 +471,1722,3.5,1239658268 +471,1779,3.0,1239748574 +471,1923,3.5,1239744111 +471,1954,4.5,1239658937 +471,1974,3.0,1257192629 +471,1991,2.5,1251235025 +471,1992,2.0,1251235027 +471,2018,4.5,1239658727 +471,2028,4.0,1239657723 +471,2051,3.0,1239747129 +471,2078,4.0,1239658529 +471,2081,3.0,1239660100 +471,2115,4.0,1239659099 +471,2124,3.5,1239659790 +471,2214,3.5,1239746718 +471,2253,3.5,1239656852 +471,2291,4.0,1239744653 +471,2355,3.5,1239658644 +471,2376,4.5,1239653323 +471,2383,3.0,1239653515 +471,2409,4.0,1239658941 +471,2410,4.0,1239658944 +471,2427,3.5,1239745267 +471,2459,3.5,1239657993 +471,2513,2.5,1251234319 +471,2514,2.0,1251234322 +471,2549,2.0,1239659244 +471,2571,3.0,1239661583 +471,2600,1.0,1239653036 +471,2628,3.0,1239657333 +471,2671,3.5,1239660577 +471,2706,3.5,1239657816 +471,2710,2.0,1242510718 +471,2716,3.0,1239745876 +471,2719,2.0,1239656754 +471,2724,3.5,1239660621 +471,2803,3.5,1239660612 +471,2903,3.5,1252616421 +471,2947,4.5,1239657888 +471,2948,4.5,1239658229 +471,2949,4.0,1239654135 +471,2959,4.0,1239660016 +471,2985,4.0,1239744192 +471,2989,4.0,1239658246 +471,2990,4.0,1239653243 +471,2991,4.0,1239658257 +471,2993,4.0,1239653227 +471,2995,2.0,1239745915 +471,3034,4.0,1239658691 +471,3082,3.5,1239656484 +471,3114,3.0,1239658616 +471,3147,4.5,1239659208 +471,3262,3.5,1239745821 +471,3398,3.0,1239747500 +471,3412,3.5,1239744693 +471,3527,4.0,1239660788 +471,3578,4.0,1239660447 +471,3633,4.5,1239658261 +471,3635,4.0,1239658239 +471,3638,4.5,1239658271 +471,3639,4.5,1239658253 +471,3654,3.5,1239997882 +471,3702,4.5,1239657373 +471,3703,4.5,1239657379 +471,3704,4.0,1239657372 +471,3821,3.5,1239744787 +471,3824,3.5,1239659839 +471,3827,3.5,1239747476 +471,3849,4.0,1239746832 +471,3948,3.5,1257192129 +471,3984,4.5,1239658242 +471,4005,4.0,1239994806 +471,4022,5.0,1239659224 +471,4124,2.5,1239659683 +471,4148,4.5,1239657857 +471,4214,3.5,1239660308 +471,4223,4.5,1239995095 +471,4306,3.5,1239658687 +471,4310,2.5,1239746343 +471,4370,3.5,1239745224 +471,4718,3.5,1239657822 +471,4886,4.0,1239658637 +471,4949,2.0,1258156955 +471,4958,3.0,1243722294 +471,4993,5.0,1239657163 +471,5218,4.5,1239657436 +471,5299,3.5,1273433502 +471,5378,3.5,1239657331 +471,5459,3.0,1239747191 +471,5479,4.0,1239746405 +471,5528,3.5,1239744959 +471,5630,4.5,1239659013 +471,5669,4.0,1239745443 +471,5679,4.0,1239660141 +471,5830,3.5,1239748297 +471,5872,3.5,1239994833 +471,5952,4.5,1239657172 +471,6242,4.0,1240526829 +471,6281,3.0,1239994768 +471,6286,4.0,1239657417 +471,6377,3.5,1239658634 +471,6379,2.5,1239657228 +471,6537,3.5,1239660796 +471,6664,4.5,1239660749 +471,6979,3.5,1239659311 +471,6990,4.0,1239745654 +471,7149,3.5,1239744530 +471,7153,5.0,1239657177 +471,7569,4.5,1239658236 +471,7570,4.0,1239658275 +471,7573,4.0,1239746091 +471,7809,3.5,1239998003 +471,7980,3.5,1239657710 +471,8361,3.0,1239747411 +471,8404,4.0,1239748611 +471,8493,4.0,1239997936 +471,8526,3.0,1239745995 +471,8528,3.0,1239744057 +471,8581,4.0,1239659267 +471,8589,4.0,1239745403 +471,8622,3.5,1239745452 +471,8640,3.0,1239747305 +471,8783,2.5,1239744296 +471,8957,3.5,1239743874 +471,26007,4.5,1239745513 +471,26393,3.5,1239745344 +471,26403,4.5,1239660152 +471,27075,3.0,1239659793 +471,30825,3.0,1257192566 +471,33493,4.0,1239657326 +471,33615,4.0,1239657547 +471,39052,3.0,1239654916 +471,39446,4.0,1251234851 +471,43391,3.0,1239657649 +471,44022,3.5,1239653591 +471,44301,4.0,1239657402 +471,44317,2.0,1239655660 +471,48877,3.5,1273433592 +471,51662,4.0,1239745570 +471,52644,2.5,1273433521 +471,54272,4.0,1251743437 +471,55577,3.5,1273433596 +471,57528,4.5,1239660709 +471,59615,3.5,1239659091 +471,62999,3.5,1239657548 +471,66246,4.5,1239657588 +471,66317,4.0,1256074834 +471,69644,4.5,1251234352 +472,1,5.0,939004597 +472,6,3.0,994737953 +472,7,2.0,944321656 +472,11,3.0,944321835 +472,16,4.0,939692158 +472,17,4.0,939141338 +472,21,4.0,939072462 +472,25,5.0,939691226 +472,29,4.0,1017535257 +472,32,3.0,939049777 +472,34,5.0,939071579 +472,36,4.0,946843083 +472,39,4.0,939072462 +472,47,4.0,994738167 +472,50,4.0,1017535859 +472,69,4.5,1075915788 +472,94,4.0,1017534656 +472,101,4.0,1004423372 +472,111,4.0,939072776 +472,117,3.0,1006929225 +472,121,4.0,939691618 +472,123,3.0,949996107 +472,125,5.0,939072152 +472,141,2.5,1156728938 +472,144,4.0,944321656 +472,150,3.0,939691973 +472,155,3.0,974245114 +472,162,5.0,939049553 +472,176,3.0,939071418 +472,180,2.0,944321656 +472,198,1.0,962171889 +472,211,4.0,1162244498 +472,213,4.0,1017534915 +472,223,4.0,939072217 +472,232,3.0,939071898 +472,235,4.0,1017535333 +472,241,1.0,962171468 +472,246,5.0,939049553 +472,260,4.0,939072841 +472,265,3.0,939691869 +472,288,3.0,994738036 +472,290,4.0,970518370 +472,293,4.0,949996107 +472,296,5.0,940539077 +472,299,3.0,939692234 +472,300,3.0,944061932 +472,318,5.0,947222673 +472,322,4.0,939072462 +472,342,5.0,944321404 +472,345,4.0,962170023 +472,348,3.0,939072217 +472,356,4.0,939071839 +472,357,5.0,944062114 +472,363,5.0,939049591 +472,364,4.0,939004597 +472,369,2.5,1161358140 +472,377,4.0,1156728929 +472,380,2.0,962171913 +472,390,5.0,1004423372 +472,412,2.0,962171293 +472,431,3.0,994738168 +472,441,4.0,939691545 +472,443,4.0,1047765919 +472,446,3.0,939691405 +472,449,4.0,948656430 +472,456,4.0,1017535421 +472,457,4.0,939691713 +472,467,4.0,958950101 +472,480,4.0,994737675 +472,492,2.0,939072462 +472,493,4.0,994737953 +472,497,2.0,939071750 +472,501,4.0,970518900 +472,511,3.0,1158605231 +472,513,2.0,944321548 +472,514,4.0,970518127 +472,522,3.0,994738036 +472,527,3.0,939691768 +472,529,5.0,939072841 +472,538,3.0,939692234 +472,541,5.0,939049777 +472,551,5.0,958950245 +472,556,3.0,939049669 +472,562,4.0,939072152 +472,574,4.0,939072395 +472,581,3.0,939049669 +472,588,3.0,939004597 +472,589,2.0,950131344 +472,593,5.0,939072776 +472,594,4.0,994738309 +472,595,5.0,939004597 +472,599,5.0,939004952 +472,608,3.0,939691713 +472,659,4.0,994738168 +472,661,4.0,939004659 +472,678,4.0,939691713 +472,708,4.0,939072462 +472,714,1.0,962170354 +472,720,5.0,939691164 +472,728,3.0,939072040 +472,745,5.0,939691471 +472,750,5.0,939005079 +472,769,3.0,939691164 +472,783,2.0,939004706 +472,785,4.5,1075916020 +472,800,4.0,939691545 +472,813,1.0,962170599 +472,837,4.0,944321548 +472,838,2.0,944321656 +472,841,4.0,1006929182 +472,858,5.0,939003985 +472,898,3.0,939071962 +472,899,4.0,974244991 +472,902,4.0,944062013 +472,903,5.0,939072776 +472,904,4.0,939691164 +472,905,4.0,939071363 +472,906,4.0,939072599 +472,908,5.0,939003828 +472,910,4.0,939072776 +472,912,5.0,939004850 +472,913,5.0,939004850 +472,914,5.0,939691344 +472,915,4.0,958950297 +472,919,5.0,939072776 +472,920,4.5,1075915883 +472,922,5.0,939691713 +472,923,5.0,939004850 +472,924,4.0,939049849 +472,926,5.0,939003828 +472,928,5.0,944062013 +472,930,5.0,944062114 +472,938,4.0,994738309 +472,942,4.5,1075915978 +472,951,5.0,944061874 +472,953,5.0,939691545 +472,955,5.0,939691869 +472,968,5.0,944061932 +472,969,5.0,974244991 +472,1019,5.0,994737564 +472,1028,5.0,939692158 +472,1029,4.0,994738309 +472,1035,4.0,994738309 +472,1036,3.0,939691713 +472,1041,4.0,939691344 +472,1050,3.0,939049553 +472,1057,3.0,944321548 +472,1060,5.0,939071962 +472,1073,5.0,939072329 +472,1077,3.0,970518055 +472,1078,4.0,939003572 +472,1079,5.0,939003725 +472,1080,4.0,939071363 +472,1084,4.0,939691471 +472,1089,5.0,970518833 +472,1090,5.0,994309048 +472,1097,4.0,939049849 +472,1099,4.0,1162244502 +472,1100,2.0,962170671 +472,1103,4.0,944062066 +472,1104,5.0,970518708 +472,1123,5.0,944062375 +472,1129,4.0,962170835 +472,1136,5.0,939003572 +472,1147,5.0,939049553 +472,1148,5.0,939691164 +472,1162,1.0,944321321 +472,1171,3.0,939071962 +472,1172,4.0,939071363 +472,1175,5.0,939071514 +472,1178,5.0,962171976 +472,1179,4.0,1017535421 +472,1180,1.0,944321656 +472,1183,3.0,939691545 +472,1184,3.0,939072040 +472,1185,3.0,974245114 +472,1188,4.0,944321835 +472,1189,5.0,949995614 +472,1191,4.0,1006929004 +472,1193,5.0,939003985 +472,1196,4.5,1075915845 +472,1197,5.0,939071750 +472,1198,5.0,939691471 +472,1199,5.0,939691869 +472,1200,4.0,939049961 +472,1201,4.5,1156728545 +472,1202,5.0,958950101 +472,1203,4.0,1017535172 +472,1204,5.0,939004995 +472,1206,5.0,939049849 +472,1208,5.0,939003984 +472,1209,4.0,939072841 +472,1210,3.0,939049849 +472,1211,3.0,939071898 +472,1212,4.0,939049020 +472,1213,5.0,939072599 +472,1214,5.0,939049961 +472,1215,4.0,944062066 +472,1219,5.0,939691405 +472,1220,5.0,939071656 +472,1221,5.0,939003985 +472,1222,4.0,939691344 +472,1223,4.0,1075915905 +472,1224,3.0,1017534915 +472,1225,4.0,1017535172 +472,1228,5.0,1017534737 +472,1230,5.0,939003572 +472,1233,5.0,939072894 +472,1234,4.0,939003572 +472,1235,4.0,939072329 +472,1236,3.0,939071898 +472,1240,5.0,939072841 +472,1242,2.0,939691344 +472,1244,4.0,939003984 +472,1245,4.0,1157512094 +472,1247,5.0,939005079 +472,1248,5.0,939691164 +472,1249,5.0,939692104 +472,1250,5.0,939003828 +472,1252,5.0,944062013 +472,1254,4.0,939049020 +472,1256,2.0,944321656 +472,1258,4.0,939692234 +472,1259,4.0,939071656 +472,1260,5.0,962171728 +472,1263,2.0,962171976 +472,1265,4.0,939072462 +472,1266,5.0,939691344 +472,1267,5.0,939004952 +472,1269,3.0,939004850 +472,1270,3.0,939049849 +472,1272,5.0,939692234 +472,1273,3.0,970518179 +472,1274,4.0,1017535172 +472,1276,4.0,939071579 +472,1278,4.0,939003572 +472,1279,3.0,939072329 +472,1280,4.0,1017534788 +472,1282,3.0,994738309 +472,1283,5.0,939691226 +472,1284,5.0,962171728 +472,1285,5.0,944321835 +472,1288,5.0,939071579 +472,1292,5.0,939072329 +472,1295,4.0,944062114 +472,1296,4.0,1017534737 +472,1299,5.0,939691164 +472,1303,4.0,939692104 +472,1304,5.0,939071962 +472,1307,5.0,939072217 +472,1310,4.5,1075915968 +472,1321,4.5,1162244245 +472,1333,4.5,1156728373 +472,1339,1.0,962170417 +472,1348,4.0,1156728353 +472,1357,4.0,1017535781 +472,1358,5.0,1017534872 +472,1361,5.0,949995614 +472,1374,3.0,939049777 +472,1380,4.0,994738436 +472,1387,5.0,994737899 +472,1392,4.0,1017535257 +472,1393,4.0,939072841 +472,1394,5.0,939071750 +472,1405,3.0,939004706 +472,1413,3.0,949996360 +472,1449,3.0,939071656 +472,1466,3.0,939692104 +472,1476,3.0,944321835 +472,1489,2.0,939004706 +472,1500,4.0,1017535421 +472,1517,5.0,958950297 +472,1537,5.0,939071418 +472,1566,2.0,939004659 +472,1569,3.0,939072395 +472,1580,5.0,944321835 +472,1610,5.0,939691405 +472,1614,1.0,944321835 +472,1617,5.0,939072894 +472,1625,5.0,940539131 +472,1639,4.0,1017535258 +472,1641,4.0,939072329 +472,1653,4.0,939049961 +472,1658,2.0,939691869 +472,1663,4.0,939692905 +472,1673,4.0,1017535258 +472,1674,4.0,949996156 +472,1678,3.0,939692234 +472,1682,4.0,939691618 +472,1688,3.0,994738309 +472,1693,2.0,962170106 +472,1699,4.0,939692104 +472,1701,3.0,939072217 +472,1704,3.0,939691471 +472,1719,5.0,940539077 +472,1721,5.0,939691405 +472,1729,4.0,1017535489 +472,1732,4.0,944321656 +472,1734,2.0,939692533 +472,1747,4.0,944321835 +472,1748,3.0,939049777 +472,1760,1.0,994738695 +472,1777,3.0,944321404 +472,1784,3.0,939071579 +472,1785,4.0,962170835 +472,1794,3.0,944321321 +472,1796,2.0,950776150 +472,1799,4.0,939691973 +472,1845,5.0,939071579 +472,1856,5.0,1006929033 +472,1861,2.0,944321321 +472,1865,4.0,949996391 +472,1866,3.0,939049224 +472,1883,1.0,939049224 +472,1888,3.0,939071656 +472,1907,2.0,939004597 +472,1914,3.0,939692653 +472,1921,4.0,939691226 +472,1922,4.0,974244507 +472,1923,5.0,939071579 +472,1946,4.0,1017535630 +472,1947,3.0,939692037 +472,1948,4.0,944321548 +472,1952,5.0,939691618 +472,1953,5.0,939003984 +472,1954,5.0,939003985 +472,1955,4.0,994738650 +472,1956,5.0,939691164 +472,1957,5.0,939072776 +472,1958,4.0,939071750 +472,1960,4.5,1162244543 +472,1964,4.5,1075915973 +472,1965,4.0,939049961 +472,1966,5.0,939071839 +472,1968,4.0,939072329 +472,1997,4.5,1156728380 +472,2000,3.0,944321835 +472,2001,3.0,944321739 +472,2013,2.0,939691713 +472,2014,3.0,939692368 +472,2016,2.0,939692431 +472,2019,4.0,1017535781 +472,2020,4.0,949996107 +472,2025,3.0,939691226 +472,2028,3.0,944061874 +472,2037,3.0,944062066 +472,2064,5.0,939049553 +472,2065,4.0,939072395 +472,2067,5.0,939005079 +472,2073,5.0,939071656 +472,2078,4.0,1017535489 +472,2080,3.0,944061932 +472,2081,4.0,939072395 +472,2085,4.0,1017535173 +472,2102,4.0,970518127 +472,2108,4.0,944321548 +472,2109,4.0,939692533 +472,2117,4.0,950131344 +472,2130,3.0,994738168 +472,2136,4.0,944321404 +472,2141,3.0,939692431 +472,2144,5.0,944321404 +472,2145,4.0,1017535723 +472,2150,4.0,939049153 +472,2159,4.0,994738168 +472,2160,4.5,1156728377 +472,2169,3.0,962170354 +472,2171,4.0,994738489 +472,2174,5.0,939072217 +472,2186,4.0,1075916035 +472,2194,4.0,1017535859 +472,2231,3.0,939692037 +472,2243,4.0,939072152 +472,2245,3.0,939692653 +472,2248,5.0,939072040 +472,2249,3.0,939692431 +472,2261,5.0,1014277534 +472,2276,3.0,974244601 +472,2282,3.0,939692104 +472,2285,4.0,949996360 +472,2289,5.0,939071898 +472,2291,5.0,950776150 +472,2294,4.0,939004659 +472,2296,3.0,947222762 +472,2300,5.0,958950180 +472,2301,3.0,939071839 +472,2302,3.0,939049224 +472,2303,4.0,994738309 +472,2310,4.0,1017535630 +472,2318,5.0,939692431 +472,2321,3.0,939072395 +472,2324,3.0,947222831 +472,2325,4.0,944321548 +472,2329,2.0,962170023 +472,2330,5.0,950776150 +472,2331,3.0,939072152 +472,2335,3.5,1158605234 +472,2344,4.0,939691768 +472,2349,4.0,939071839 +472,2355,3.0,939004598 +472,2359,5.0,944321739 +472,2360,3.0,974244935 +472,2366,5.0,994737953 +472,2371,4.0,944321835 +472,2375,3.0,939071750 +472,2384,1.0,939072040 +472,2387,4.0,944321835 +472,2391,4.0,940539077 +472,2394,3.0,939004597 +472,2395,5.0,953094994 +472,2396,2.0,939048793 +472,2401,4.0,939691618 +472,2406,3.0,939071750 +472,2407,3.0,939072217 +472,2416,3.0,944321321 +472,2425,3.0,939141157 +472,2427,4.0,944061932 +472,2433,2.0,939692037 +472,2439,3.0,939141057 +472,2442,4.0,939141157 +472,2463,4.0,944321548 +472,2467,5.0,940539077 +472,2468,3.0,944321739 +472,2470,4.0,944321548 +472,2478,3.0,944321739 +472,2482,3.0,1010960589 +472,2485,3.0,939071514 +472,2488,5.0,944062066 +472,2490,5.0,939048793 +472,2502,4.0,940538450 +472,2505,1.0,939048793 +472,2518,3.0,939072329 +472,2529,3.0,939005079 +472,2539,4.0,939141157 +472,2541,1.0,939141157 +472,2542,4.0,939048793 +472,2553,5.0,939004952 +472,2554,5.0,950131344 +472,2571,5.0,939048793 +472,2572,2.0,944062232 +472,2580,4.0,939141057 +472,2590,4.0,940538500 +472,2599,5.0,940538500 +472,2605,2.0,940538500 +472,2606,3.0,950776150 +472,2609,3.0,940538500 +472,2610,3.0,939141057 +472,2621,3.0,944062279 +472,2622,1.0,944062013 +472,2627,5.0,1047765891 +472,2628,4.0,939049777 +472,2644,5.0,962170417 +472,2648,4.5,1075916008 +472,2657,5.0,939692905 +472,2671,3.0,944062279 +472,2672,3.0,939141057 +472,2683,4.0,944062184 +472,2686,3.0,947222831 +472,2687,4.0,939004597 +472,2693,4.0,939049669 +472,2697,1.0,944321656 +472,2700,4.0,939072040 +472,2701,3.0,944062232 +472,2706,3.0,939002838 +472,2710,3.0,939003019 +472,2712,2.0,939003158 +472,2713,2.0,939003244 +472,2716,3.0,939071656 +472,2717,2.0,939072395 +472,2718,4.0,948656159 +472,2722,3.0,939003123 +472,2723,4.0,939003123 +472,2724,3.0,939071579 +472,2726,5.0,940539221 +472,2729,5.0,939691768 +472,2730,2.0,994309048 +472,2731,4.0,962170023 +472,2732,3.0,947222673 +472,2736,4.0,951611626 +472,2759,4.0,948656221 +472,2761,4.0,939002838 +472,2762,5.0,939002838 +472,2770,4.0,949995783 +472,2791,5.0,939049153 +472,2797,3.0,939071418 +472,2804,5.0,946843083 +472,2805,4.0,939003206 +472,2824,5.0,951173767 +472,2840,2.0,939141807 +472,2858,2.0,939002838 +472,2860,3.0,939003019 +472,2861,1.0,939003206 +472,2871,5.0,944062066 +472,2875,5.0,994738537 +472,2881,1.0,939003123 +472,2882,2.0,959831064 +472,2885,3.0,939002920 +472,2890,3.0,945502818 +472,2891,3.0,959831017 +472,2912,4.0,959831017 +472,2915,4.0,1017535781 +472,2916,4.0,994737621 +472,2917,4.0,994738107 +472,2918,5.0,944061874 +472,2925,4.0,939003984 +472,2926,4.0,944321739 +472,2935,4.0,939071363 +472,2936,4.0,948656295 +472,2940,4.0,962171728 +472,2944,4.0,1162244200 +472,2947,4.0,1162244221 +472,2948,4.0,1162244228 +472,2949,4.5,1162244239 +472,2951,5.0,944061874 +472,2959,2.0,945502818 +472,2966,3.0,943899827 +472,2968,4.0,950131344 +472,2972,4.0,1017534788 +472,2973,4.0,944321548 +472,2974,3.0,948656089 +472,2987,5.0,944061874 +472,2988,4.0,946843083 +472,2997,4.0,945502818 +472,3000,4.0,1017535723 +472,3007,4.0,1006928934 +472,3019,4.0,1017535333 +472,3022,5.0,944061932 +472,3037,5.0,970518055 +472,3039,4.0,958950246 +472,3054,1.0,959831064 +472,3057,3.0,944061653 +472,3067,4.0,1017535905 +472,3072,4.0,1004423372 +472,3081,4.0,943899827 +472,3082,2.0,948656047 +472,3088,3.0,944321656 +472,3089,5.0,974244507 +472,3090,3.0,974244991 +472,3099,3.0,948656386 +472,3100,3.0,944061932 +472,3104,4.0,944321739 +472,3108,4.0,948656430 +472,3114,5.0,948655922 +472,3125,2.0,946842902 +472,3127,4.0,949995343 +472,3133,5.0,953095219 +472,3134,4.0,947222673 +472,3135,5.0,1017534915 +472,3146,5.0,948656089 +472,3147,2.0,948656009 +472,3156,1.0,946842867 +472,3163,3.0,948655922 +472,3167,5.0,946843083 +472,3169,4.0,946843083 +472,3173,4.0,946842794 +472,3174,3.0,946842867 +472,3176,3.0,948655922 +472,3182,4.0,1017535630 +472,3188,4.0,1006928876 +472,3200,4.0,970518127 +472,3201,5.0,953094943 +472,3210,5.0,948656386 +472,3224,4.0,949996236 +472,3246,4.0,1162244548 +472,3260,4.0,1017534915 +472,3263,4.0,948656386 +472,3265,4.0,970519115 +472,3266,4.0,994738036 +472,3285,3.0,951611626 +472,3304,3.0,1017535029 +472,3308,3.0,954742077 +472,3317,4.0,952901714 +472,3328,2.0,958949891 +472,3330,5.0,953094994 +472,3334,4.0,962171728 +472,3342,4.0,1162244493 +472,3359,5.0,974244601 +472,3361,5.0,958950297 +472,3362,5.0,953095219 +472,3363,4.0,1017535173 +472,3365,3.0,1156728555 +472,3384,5.0,994737953 +472,3408,3.0,958949891 +472,3418,4.0,994737953 +472,3421,5.0,958950101 +472,3424,4.0,958950180 +472,3435,4.0,1017535334 +472,3462,4.0,962171581 +472,3467,3.0,1017534951 +472,3471,5.0,994737621 +472,3481,4.0,954741927 +472,3499,4.0,1156728385 +472,3504,5.0,954742077 +472,3506,4.5,1158605135 +472,3507,4.0,958950180 +472,3508,5.0,1156728567 +472,3521,4.0,954742125 +472,3534,2.0,961745111 +472,3535,3.0,958949934 +472,3539,4.5,1075915732 +472,3543,4.0,954742024 +472,3549,4.0,994738309 +472,3551,5.0,994738650 +472,3556,3.0,958949891 +472,3578,4.0,958949934 +472,3608,4.0,958950246 +472,3653,5.0,1006928934 +472,3671,5.0,958950037 +472,3683,5.0,962171728 +472,3702,4.5,1157512384 +472,3703,4.0,994737621 +472,3718,5.0,1004422779 +472,3730,5.0,962171110 +472,3741,4.0,970518833 +472,3751,4.0,962169824 +472,3752,3.0,962169824 +472,3753,1.0,970517723 +472,3755,2.0,970517723 +472,3783,4.0,994738107 +472,3785,4.0,970517723 +472,3789,4.0,1017534788 +472,3793,3.0,970517723 +472,3811,4.0,1017535258 +472,3814,5.0,970518127 +472,3819,3.0,970517988 +472,3893,3.0,970517723 +472,3897,3.0,970517723 +472,3910,1.0,994738436 +472,3911,4.0,970517723 +472,3913,4.0,1006929033 +472,3925,4.0,970518179 +472,3947,5.0,974244935 +472,3948,4.0,974244416 +472,3955,2.0,979540065 +472,3967,3.0,974244416 +472,3993,3.0,979539865 +472,3996,4.0,979539865 +472,4011,4.0,981441662 +472,4019,4.0,979539966 +472,4020,4.0,979540065 +472,4022,3.0,979539865 +472,4027,4.0,979539865 +472,4029,3.0,1158605083 +472,4034,5.0,979539865 +472,4054,2.0,981441662 +472,4056,3.0,981441662 +472,4091,3.0,1010960589 +472,4116,4.0,1010960630 +472,4117,4.0,1004423139 +472,4190,5.0,1017534872 +472,4197,4.0,994738650 +472,4210,2.0,994737953 +472,4211,3.0,1017534951 +472,4225,3.0,1004422921 +472,4234,3.0,994309232 +472,4239,3.0,994309232 +472,4246,4.0,994309499 +472,4262,5.0,1162244886 +472,4278,4.5,1075915933 +472,4292,5.0,994309048 +472,4304,5.0,1006929004 +472,4306,4.0,1010439969 +472,4308,3.5,1156728983 +472,4327,4.0,1156728549 +472,4349,4.5,1158605059 +472,4356,4.0,994738374 +472,4361,4.0,1017535859 +472,4369,4.0,994309138 +472,4378,4.0,994309138 +472,4432,5.0,994309048 +472,4440,4.0,1162244525 +472,4474,3.0,1006929104 +472,4490,2.0,994738847 +472,4546,4.0,1006929140 +472,4562,5.0,1004423139 +472,4570,4.0,1010960661 +472,4589,4.0,1017535334 +472,4641,4.0,1004423139 +472,4698,4.0,1010960589 +472,4711,5.0,1006928934 +472,4754,3.0,1017534841 +472,4769,4.0,1006928934 +472,4783,5.0,1006928934 +472,4826,4.0,1162244490 +472,4848,4.0,1006928698 +472,4855,4.0,1162244202 +472,4886,5.0,1006928698 +472,4896,3.0,1006928698 +472,4914,4.0,1017534788 +472,4963,3.0,1010439856 +472,4970,4.0,939691973 +472,4973,4.0,1010960402 +472,4978,3.0,1014277421 +472,4979,2.0,1010439856 +472,4990,3.0,1014277458 +472,4993,3.0,1010439727 +472,4995,4.0,1014277421 +472,5010,3.0,1014277421 +472,5013,3.0,1010960402 +472,5018,3.0,1026344748 +472,5022,4.0,1017535058 +472,5025,4.0,1014277458 +472,5060,4.0,1010960630 +472,5074,5.0,1014277421 +472,5092,4.0,1014277458 +472,5177,4.0,1017534688 +472,5187,4.0,1026344748 +472,5218,3.0,1018080215 +472,5226,3.5,1158605140 +472,5256,2.0,1017534530 +472,5267,4.0,1017534594 +472,5285,3.0,1020325429 +472,5291,3.0,1158604913 +472,5292,4.0,1050100913 +472,5298,4.0,1020325429 +472,5299,4.0,1156728975 +472,5316,3.0,1023325980 +472,5349,3.0,1023325980 +472,5377,3.0,1023325980 +472,5378,3.0,1023326012 +472,5379,4.0,1023325980 +472,5401,4.0,1026887149 +472,5417,4.0,1026887149 +472,5444,4.0,1026887149 +472,5445,3.0,1026887149 +472,5446,4.0,1172531320 +472,5463,3.0,1026887197 +472,5479,3.0,1031894398 +472,5502,2.0,1031894362 +472,5507,3.0,1031894362 +472,5524,3.0,1031894362 +472,5572,3.0,1037746946 +472,5577,2.0,1032568460 +472,5617,4.0,1037746889 +472,5618,5.0,1172531135 +472,5669,3.0,1047765891 +472,5810,3.0,1037746889 +472,5825,4.0,1172956897 +472,5899,4.0,1162244329 +472,5902,4.5,1075915870 +472,5914,4.0,1075915707 +472,5932,4.5,1164753473 +472,5941,3.0,1047765772 +472,5942,3.0,1047765832 +472,5945,2.0,1047765721 +472,5952,3.0,1047765721 +472,5965,3.0,1162244187 +472,5991,4.0,1050100913 +472,5993,3.0,1047765772 +472,5995,4.0,1172531312 +472,6003,5.0,1047765772 +472,6016,4.0,1156728740 +472,6032,4.0,1050100843 +472,6042,4.0,1047765773 +472,6057,2.0,1047765773 +472,6062,5.0,1047765773 +472,6185,2.0,1047765773 +472,6188,4.5,1075915920 +472,6212,3.0,1047765832 +472,6216,1.0,1047765721 +472,6218,4.0,1050101331 +472,6331,4.5,1075915769 +472,6365,1.5,1156728961 +472,6368,4.5,1075915722 +472,6377,4.0,1075915586 +472,6440,4.5,1075915657 +472,6461,5.0,1156728563 +472,6539,3.5,1075915632 +472,6620,4.0,1156728234 +472,6662,4.5,1162244652 +472,6711,4.5,1075915818 +472,6773,4.5,1075915525 +472,6777,3.5,1157512083 +472,6787,4.5,1156728101 +472,6807,4.0,1075915598 +472,6936,2.0,1075915492 +472,6942,4.0,1075915498 +472,6947,5.0,1075915483 +472,6975,3.0,1162244528 +472,6979,4.0,1157512376 +472,6987,4.0,1156728350 +472,6993,4.5,1075915796 +472,7013,4.5,1157386833 +472,7070,3.0,1162244261 +472,7072,3.0,1162244164 +472,7084,4.0,1075915578 +472,7147,3.0,1075915518 +472,7153,2.0,1075915476 +472,7438,2.5,1156728950 +472,7587,4.0,1156728112 +472,7771,5.0,1162244476 +472,7802,4.5,1162244323 +472,8042,4.0,1157512059 +472,8228,4.5,1156728124 +472,8949,4.0,1156728270 +472,8961,3.5,1156728747 +472,26172,4.0,1162244155 +472,26231,3.5,1172530533 +472,26425,4.5,1156728243 +472,26729,5.0,1168889546 +472,30707,2.5,1157512035 +472,32582,4.0,1172531111 +472,32632,4.0,1162244518 +472,33639,4.5,1157512317 +472,37741,4.5,1156728120 +472,38038,4.0,1156728252 +472,38992,3.5,1158605176 +472,39292,2.5,1156728152 +472,41285,3.5,1172531452 +472,41997,3.5,1172531439 +472,43396,4.0,1162244387 +472,44022,3.5,1164753301 +472,44191,4.0,1157512402 +472,44195,3.0,1156728091 +472,44761,4.0,1158605391 +472,45440,3.5,1164753282 +472,45501,3.0,1161358124 +472,45728,4.0,1164753219 +472,45730,1.0,1172530814 +472,45950,4.5,1164753215 +472,46322,4.5,1172530550 +472,46850,4.5,1164753203 +472,46967,4.0,1164753270 +472,47423,4.0,1172530523 +472,47997,4.0,1172530800 +472,48319,3.5,1172530755 +472,48738,4.0,1165517980 +472,49132,4.0,1172956890 +472,49272,4.0,1165517959 +472,50068,4.0,1170954729 +473,2,5.0,1425643774 +473,104,3.5,1425644175 +473,110,5.0,1425644210 +473,145,4.5,1425645124 +473,316,0.5,1425645578 +473,356,5.0,1425644213 +473,364,5.0,1425643485 +473,377,3.5,1425645567 +473,500,5.0,1425644068 +473,765,4.0,1425644109 +473,780,5.0,1425643902 +473,1027,2.0,1425645565 +473,1036,5.0,1425643530 +473,1246,3.5,1425644076 +473,1370,5.0,1425643997 +473,1527,5.0,1425643563 +473,1704,5.0,1425644064 +473,1917,5.0,1425644006 +473,1954,4.0,1425645585 +473,2335,4.0,1425644170 +473,2431,5.0,1425644057 +473,2571,5.0,1425643453 +473,2959,5.0,1425645497 +473,3147,5.0,1425643444 +473,3448,5.0,1425644078 +473,3489,5.0,1425644065 +473,3578,5.0,1425643489 +473,4306,5.0,1425643344 +473,4874,5.0,1425643640 +473,4886,5.0,1425643448 +473,4973,5.0,1425643558 +473,5377,3.5,1425643120 +473,6157,2.0,1425643193 +473,6373,5.0,1425643114 +473,6378,3.0,1425643124 +473,6548,5.0,1425643259 +473,6754,4.0,1425643217 +473,7293,5.0,1425643161 +473,8464,5.0,1425643135 +473,8529,4.0,1425643187 +473,8984,2.5,1425644012 +473,32587,5.0,1425644005 +473,33794,4.0,1425643493 +473,36529,5.0,1425643169 +473,45208,3.0,1425644120 +473,49272,4.5,1425643778 +473,50872,5.0,1425643501 +473,53974,3.5,1425644133 +473,54004,5.0,1425644172 +473,58559,5.0,1425645521 +473,59315,5.0,1425643495 +473,59900,2.0,1425644188 +473,68157,5.0,1425645591 +473,72998,5.0,1425643504 +473,76093,5.0,1425643337 +473,79091,4.5,1425645588 +473,79132,5.0,1425643321 +473,80549,4.5,1425668744 +473,83349,2.5,1425645634 +473,85414,3.0,1425643537 +473,86548,5.0,1425645627 +473,88163,5.0,1425668726 +473,88810,5.0,1425668742 +473,89745,5.0,1425643497 +473,90403,3.0,1425645640 +473,90430,5.0,1425645651 +473,90890,1.0,1425644192 +473,91529,5.0,1425643469 +473,99114,5.0,1425645643 +473,99728,5.0,1425668729 +473,100083,2.5,1425668769 +473,101142,4.0,1425668771 +473,109374,5.0,1425643073 +473,111617,3.5,1425644157 +473,112556,5.0,1425643077 +473,112852,4.0,1425644226 +474,260,4.0,976163499 +474,316,4.0,976163143 +474,480,4.0,977201887 +474,595,5.0,976163768 +474,858,5.0,976163045 +474,898,5.0,976163962 +474,899,5.0,976163696 +474,909,4.0,976163962 +474,919,4.0,976163696 +474,951,4.0,977201760 +474,1197,5.0,976163582 +474,1198,4.0,976163095 +474,1214,4.0,976493665 +474,1219,4.0,976493665 +474,1221,5.0,976163499 +474,1238,5.0,976163397 +474,1244,4.0,976163962 +474,1282,4.0,977201799 +474,1288,5.0,976163696 +474,1304,4.0,976163582 +474,1387,4.0,976163499 +474,1466,4.0,977201799 +474,1673,3.0,976163045 +474,1903,4.0,977202217 +474,1947,5.0,976163768 +474,2019,5.0,976163499 +474,2070,5.0,976163351 +474,2150,1.0,976164041 +474,2160,4.0,977201847 +474,2300,4.0,976163696 +474,2303,4.0,976163696 +474,2657,3.0,976163768 +474,2858,3.0,977201760 +474,2863,3.0,976163696 +474,2944,3.0,976163582 +474,3101,3.0,976163095 +474,3104,4.0,976163143 +474,3545,4.0,976163696 +474,3578,4.0,977201847 +474,3819,3.0,976163915 +474,4008,4.0,977201847 +475,1,4.5,1446908358 +475,16,4.0,1447072053 +475,47,4.0,1447071828 +475,110,4.0,1447414544 +475,111,4.5,1447072049 +475,153,1.0,1447329525 +475,260,5.0,1446908093 +475,296,5.0,1446908211 +475,316,3.0,1446909035 +475,356,4.5,1446908262 +475,480,4.5,1446908568 +475,541,4.0,1447071701 +475,588,3.5,1446908542 +475,589,4.5,1447071931 +475,592,4.0,1447329513 +475,858,5.0,1446908198 +475,903,4.0,1447072029 +475,924,5.0,1447339191 +475,1036,5.0,1447329757 +475,1097,3.5,1446908443 +475,1196,5.0,1447237781 +475,1198,5.0,1447935227 +475,1200,4.0,1447269576 +475,1201,5.0,1447269602 +475,1203,5.0,1447269581 +475,1210,4.0,1447329650 +475,1213,5.0,1447072052 +475,1214,4.0,1447269575 +475,1221,5.0,1447237783 +475,1228,4.5,1447072060 +475,1270,5.0,1447329733 +475,1275,3.5,1447329710 +475,1377,4.0,1447329522 +475,1387,4.0,1447269603 +475,1562,1.0,1447329537 +475,1580,3.0,1447329624 +475,1721,3.0,1446908857 +475,2028,4.0,1446908215 +475,2167,4.0,1447329754 +475,2288,4.0,1447269610 +475,2355,3.5,1446908635 +475,2571,5.0,1446908081 +475,2617,3.5,1447255334 +475,2628,1.0,1447255300 +475,2640,3.5,1447329621 +475,2641,2.5,1447329643 +475,2687,3.0,1447255432 +475,2701,1.0,1447255366 +475,2706,2.0,1446908111 +475,2716,4.0,1447329646 +475,2761,4.0,1447255385 +475,2762,3.5,1447255296 +475,2959,5.0,1446908095 +475,2985,3.5,1446909060 +475,3082,2.0,1447255379 +475,3114,3.5,1446908113 +475,3285,2.0,1447255439 +475,3354,1.5,1447255419 +475,3462,4.0,1446908249 +475,3483,3.0,1447255567 +475,3535,4.0,1447072279 +475,3564,0.5,1447778383 +475,3578,4.0,1446908294 +475,3615,1.5,1447239779 +475,3623,2.5,1447072169 +475,3624,2.0,1447255392 +475,3646,1.5,1447327386 +475,3703,4.0,1447256595 +475,3717,2.5,1447239346 +475,3751,2.0,1447255346 +475,3752,2.0,1447255389 +475,3753,3.0,1447255357 +475,3785,2.0,1447072263 +475,3793,3.5,1447072140 +475,3821,0.5,1447239688 +475,3827,2.5,1447255443 +475,3897,4.0,1447072173 +475,3977,1.0,1447255341 +475,3981,2.0,1447255494 +475,3988,2.0,1447255429 +475,3997,0.5,1447255560 +475,4015,2.0,1447327166 +475,4016,4.0,1447072567 +475,4025,2.0,1447778072 +475,4232,1.5,1447072678 +475,4270,2.5,1447239392 +475,4299,3.5,1447072556 +475,4306,2.0,1446908382 +475,4310,2.0,1447072290 +475,4367,2.0,1447072362 +475,4368,0.5,1447778309 +475,4369,3.0,1447239431 +475,4370,2.5,1447072235 +475,4386,1.0,1447255558 +475,4388,1.0,1447072696 +475,4447,1.0,1447327103 +475,4638,1.0,1447239424 +475,4643,2.0,1447072274 +475,4701,2.5,1447072561 +475,4718,2.0,1447072292 +475,4720,2.5,1447255370 +475,4735,1.0,1447327985 +475,4744,1.5,1447327608 +475,4757,1.5,1447328003 +475,4876,1.0,1447327588 +475,4886,3.5,1447072127 +475,4890,1.5,1447778136 +475,4896,3.5,1447072160 +475,4963,4.0,1447072147 +475,4993,5.0,1446908089 +475,4994,2.5,1447778317 +475,5010,4.5,1447239336 +475,5128,1.0,1447778405 +475,5171,1.5,1447255497 +475,5218,2.0,1447072218 +475,5219,2.5,1447239506 +475,5254,4.0,1447072606 +475,5266,2.0,1447255416 +475,5313,0.5,1447239735 +475,5349,4.0,1447072143 +475,5378,2.0,1447072738 +475,5418,4.0,1447072154 +475,5419,1.0,1447255547 +475,5445,3.0,1447072129 +475,5459,2.0,1447239352 +475,5463,3.0,1447255520 +475,5478,2.0,1447327895 +475,5480,1.5,1447778702 +475,5481,1.5,1447327098 +475,5502,3.0,1447239332 +475,5504,0.5,1447778490 +475,5507,2.0,1447072640 +475,5523,0.5,1447778855 +475,5574,1.5,1447239613 +475,5621,0.5,1447778365 +475,5679,2.0,1447239358 +475,5784,1.0,1447327901 +475,5785,3.0,1447239646 +475,5810,3.0,1447072592 +475,5816,3.0,1447072748 +475,5872,1.0,1447239479 +475,5952,5.0,1446908199 +475,5956,4.0,1447072057 +475,5989,4.5,1447072172 +475,5991,3.0,1447072271 +475,6016,4.5,1447269572 +475,6059,2.5,1447327391 +475,6157,1.0,1447072595 +475,6333,3.0,1447072746 +475,6365,2.0,1447072163 +475,6377,3.0,1447072128 +475,6378,3.0,1447239344 +475,6383,2.0,1447239581 +475,6502,4.0,1447072220 +475,6503,1.0,1447239560 +475,6534,2.0,1447072601 +475,6537,1.0,1447072282 +475,6539,3.5,1447072139 +475,6541,1.0,1447239515 +475,6548,2.0,1447239663 +475,6550,2.0,1447778296 +475,6564,1.0,1447239677 +475,6566,0.5,1447778766 +475,6586,2.5,1447239768 +475,6595,2.5,1447239723 +475,6686,0.5,1447329344 +475,6711,4.5,1447072741 +475,6754,3.0,1447239534 +475,6863,4.0,1447072251 +475,6874,4.5,1446908355 +475,6888,1.0,1447327407 +475,6934,2.0,1447072213 +475,6936,1.5,1447778141 +475,7143,3.5,1447072240 +475,7147,4.0,1447072209 +475,7153,5.0,1446908087 +475,7164,1.5,1447328063 +475,7317,2.5,1447327544 +475,7360,4.0,1447072665 +475,7361,4.0,1447072145 +475,7369,0.5,1447329039 +475,7373,3.0,1447072548 +475,7438,4.5,1446908364 +475,7439,1.0,1447327703 +475,7451,2.5,1447239503 +475,7454,2.0,1447239572 +475,7458,2.0,1446909050 +475,7502,5.0,1446909151 +475,8360,2.0,1446908672 +475,8361,2.5,1447072524 +475,8368,4.0,1446908440 +475,8371,2.5,1447072715 +475,8372,1.0,1447328125 +475,8528,2.5,1447072580 +475,8636,4.0,1447072744 +475,8640,2.0,1447327532 +475,8641,3.0,1447072563 +475,8644,2.0,1447239329 +475,8665,4.0,1447072205 +475,8666,0.5,1447327723 +475,8783,2.5,1447239512 +475,8810,0.5,1447239576 +475,8861,1.0,1447239733 +475,8866,3.0,1447778499 +475,8873,2.5,1447778177 +475,8874,4.0,1446908348 +475,8907,1.0,1447327577 +475,8947,1.0,1447778312 +475,8957,2.5,1447072552 +475,8961,4.0,1447072155 +475,8970,3.5,1447072462 +475,8972,2.5,1447072593 +475,8984,2.5,1447072532 +475,8985,1.0,1447327477 +475,27423,3.0,1447779288 +475,27772,1.0,1447329048 +475,30707,4.0,1446908365 +475,30749,4.0,1447072277 +475,30793,2.0,1447072300 +475,30812,3.5,1447072075 +475,31221,0.5,1447327944 +475,31685,2.0,1447072639 +475,31696,3.0,1447072631 +475,32296,1.5,1447328833 +475,32587,4.0,1447072740 +475,33004,3.0,1447072529 +475,33158,1.0,1447778758 +475,33166,3.0,1447072266 +475,33493,2.5,1447329655 +475,33615,2.0,1447072703 +475,33646,2.5,1447778447 +475,33679,3.0,1447072359 +475,33794,3.5,1447072157 +475,34048,2.5,1447239428 +475,34150,1.0,1447072671 +475,34162,2.5,1447072312 +475,34319,2.0,1447327213 +475,34332,2.0,1447778676 +475,35836,3.5,1447239349 +475,36401,1.5,1447327524 +475,36519,1.5,1447327663 +475,36529,4.0,1447239445 +475,37380,1.0,1447327992 +475,37386,1.0,1447327450 +475,37731,3.0,1447327990 +475,37830,3.0,1447327911 +475,39435,2.0,1447328282 +475,39444,3.5,1447327970 +475,39446,1.0,1447239744 +475,40815,4.0,1446908495 +475,40819,3.5,1447072436 +475,40851,2.5,1447778836 +475,41566,3.0,1446908779 +475,41569,3.0,1447327135 +475,41997,3.5,1447239519 +475,42011,2.0,1447327720 +475,42418,2.0,1447328927 +475,42738,2.5,1447327487 +475,43928,0.5,1447778556 +475,43936,3.0,1447327612 +475,44191,3.5,1446908308 +475,44195,3.5,1446909158 +475,44665,3.0,1447239454 +475,45186,3.5,1447239602 +475,45447,3.0,1447072569 +475,45499,2.0,1447072432 +475,45517,1.0,1447072616 +475,45666,4.0,1447327976 +475,45672,1.0,1447327385 +475,45722,2.0,1447239342 +475,46335,2.5,1447327840 +475,46530,1.5,1447239592 +475,46578,4.0,1447072215 +475,46723,3.0,1447072649 +475,46965,2.0,1447327626 +475,46972,2.0,1447239653 +475,46974,2.0,1447778872 +475,47044,2.0,1447327969 +475,47099,3.0,1447072669 +475,47200,2.0,1447327499 +475,47518,2.5,1447327958 +475,47640,2.5,1447778728 +475,48322,2.5,1447328117 +475,48385,3.0,1446909164 +475,48394,3.5,1446908268 +475,48516,5.0,1447072036 +475,48780,4.5,1447072211 +475,48783,3.5,1447327981 +475,49272,5.0,1447072207 +475,49274,1.0,1447778345 +475,49278,2.5,1447239669 +475,49396,3.0,1447328305 +475,49530,4.0,1446909160 +475,49649,0.5,1447778479 +475,49651,4.5,1447327947 +475,50068,3.0,1447327453 +475,50872,4.5,1447072241 +475,51077,0.5,1447327614 +475,51086,2.0,1447327706 +475,51255,3.5,1447268348 +475,51540,4.0,1447239544 +475,51575,0.5,1447328933 +475,51662,4.0,1446908562 +475,51935,3.0,1447239795 +475,51939,2.0,1447778934 +475,52245,3.0,1447327549 +475,52281,3.0,1447071721 +475,52694,1.0,1447329165 +475,52722,1.0,1447072611 +475,52973,3.0,1447239491 +475,53000,4.0,1447071717 +475,53121,0.5,1447239772 +475,53125,2.0,1447072543 +475,53322,3.5,1447239547 +475,53460,2.5,1447778862 +475,53464,0.5,1447239810 +475,53519,3.0,1447327297 +475,53972,2.5,1447239537 +475,53993,0.5,1447778365 +475,53996,3.0,1447072527 +475,54001,3.5,1447239418 +475,54190,3.0,1447327624 +475,54259,3.0,1447072637 +475,54272,2.5,1447072550 +475,54286,4.0,1447072222 +475,54503,3.5,1447072366 +475,54648,1.5,1447328890 +475,54995,3.0,1447327408 +475,55232,1.5,1447327710 +475,55721,4.0,1447328235 +475,55768,1.0,1447328272 +475,55820,4.5,1447072237 +475,56145,4.0,1447327593 +475,56174,2.5,1447072360 +475,56176,0.5,1447778839 +475,56367,3.5,1447072226 +475,56775,3.0,1447239807 +475,56801,0.5,1447778487 +475,57368,4.0,1447071727 +475,57640,3.0,1447239750 +475,58025,2.0,1447239803 +475,58293,1.0,1447327547 +475,58559,5.0,1446909123 +475,58655,1.5,1447329057 +475,58803,3.0,1447239754 +475,59037,3.0,1447329302 +475,59103,2.0,1447329015 +475,59315,4.0,1447239318 +475,59369,3.5,1447239444 +475,59421,1.5,1447328966 +475,59501,2.5,1447327624 +475,59615,1.0,1447239509 +475,59784,3.5,1446908527 +475,60040,2.0,1447239643 +475,60069,3.5,1446908224 +475,60072,3.0,1447239702 +475,60074,2.0,1447071726 +475,60126,2.5,1447778320 +475,60684,4.5,1446908505 +475,60937,1.0,1447328950 +475,61024,3.0,1447239683 +475,61132,4.5,1447071725 +475,61160,2.5,1447328878 +475,62155,3.0,1447328116 +475,62394,1.0,1447778746 +475,62999,1.0,1447328052 +475,63082,3.0,1447072238 +475,63113,2.0,1447071723 +475,63859,2.5,1447327584 +475,63876,3.0,1447239700 +475,64030,1.0,1447778732 +475,64497,1.0,1447778531 +475,64614,3.0,1447072304 +475,64620,4.5,1447327494 +475,64839,4.5,1447072651 +475,64957,3.0,1447072597 +475,64969,2.5,1447327458 +475,64983,3.0,1447327978 +475,66171,2.0,1447328979 +475,67408,2.5,1446909078 +475,67734,3.0,1447327650 +475,67923,2.5,1447328858 +475,68157,4.5,1447071775 +475,68205,1.0,1447328880 +475,68237,4.0,1447071795 +475,68319,0.5,1447239607 +475,68358,4.0,1447072260 +475,68554,2.5,1447327484 +475,68659,3.0,1447329455 +475,68791,2.0,1447239766 +475,68793,1.0,1447328885 +475,68954,3.0,1446908222 +475,69122,3.0,1447072268 +475,69481,3.5,1446908437 +475,69526,0.5,1447239789 +475,69644,1.0,1447328054 +475,69757,3.5,1447327123 +475,69784,1.0,1447327727 +475,69844,3.5,1446908410 +475,70286,3.5,1447239354 +475,70336,0.5,1447778590 +475,71156,3.0,1447327797 +475,71535,3.5,1446908400 +475,71745,3.5,1447327967 +475,72011,3.5,1447072683 +475,72043,2.5,1447329721 +475,72226,3.5,1447071934 +475,72395,2.5,1447328988 +475,72641,3.0,1447778229 +475,72733,3.0,1447328856 +475,72998,3.0,1446908484 +475,73017,3.0,1447072372 +475,73023,3.5,1447328911 +475,73321,4.0,1447255630 +475,73929,1.0,1447269131 +475,74458,4.5,1446908315 +475,74532,2.0,1447256061 +475,74789,1.0,1447239609 +475,74795,3.5,1446908825 +475,75805,1.0,1447329301 +475,76093,4.0,1447072517 +475,76175,0.5,1447269085 +475,76251,3.5,1447072565 +475,76293,2.5,1447328266 +475,77206,2.5,1447256346 +475,77364,2.5,1447256028 +475,77561,3.5,1447329586 +475,78088,3.0,1447255860 +475,78105,2.0,1447255690 +475,78209,1.5,1447255724 +475,78467,0.5,1447256251 +475,78469,2.5,1447269090 +475,78499,4.5,1447072357 +475,78637,0.5,1447255772 +475,79091,2.0,1447071718 +475,79132,3.0,1446908082 +475,79185,2.0,1447269105 +475,79224,3.0,1447255817 +475,79242,3.0,1447255760 +475,79293,1.5,1447255637 +475,79592,2.5,1447269085 +475,79695,1.0,1447269094 +475,79702,4.0,1447072646 +475,80363,2.0,1447255806 +475,80463,3.5,1447072457 +475,80489,4.0,1447239752 +475,80549,3.0,1447239826 +475,81156,3.0,1447255994 +475,81229,3.0,1447255620 +475,81537,2.0,1447269103 +475,81562,2.5,1446908520 +475,81564,3.5,1446908553 +475,81591,3.0,1447072460 +475,81782,2.0,1447269099 +475,81834,4.0,1446908372 +475,81845,4.0,1447072307 +475,81932,4.0,1447239757 +475,82095,0.5,1447256093 +475,82169,2.0,1447255815 +475,82202,1.0,1447255788 +475,82459,4.0,1447071873 +475,82461,3.0,1447239813 +475,83349,2.0,1447268863 +475,83613,1.5,1447255727 +475,84152,4.5,1447255610 +475,84772,2.0,1447268861 +475,84944,3.5,1447255657 +475,85022,1.5,1447256001 +475,85056,2.0,1447268879 +475,85131,2.5,1447255794 +475,85342,4.0,1447255785 +475,85510,3.0,1447268865 +475,85774,4.0,1447071948 +475,86298,2.0,1447255808 +475,86332,2.0,1447329595 +475,86644,2.5,1447328996 +475,86833,3.0,1447778339 +475,86880,1.5,1447255644 +475,86882,3.0,1447255617 +475,86911,1.0,1447255670 +475,87192,3.5,1447255856 +475,87222,3.0,1447328063 +475,87232,4.0,1447072609 +475,87306,3.5,1447255633 +475,87430,0.5,1447255725 +475,87485,1.5,1447255779 +475,87520,0.5,1447327973 +475,87529,2.0,1447256019 +475,87869,2.5,1446909041 +475,87876,0.5,1447268893 +475,88125,3.5,1447072584 +475,88129,4.0,1447072690 +475,88140,3.5,1447239637 +475,88744,4.0,1446908606 +475,88812,3.0,1447256017 +475,89030,2.5,1447256138 +475,89492,4.0,1447239690 +475,89745,4.0,1447072355 +475,89804,3.5,1447255718 +475,89864,4.0,1447239770 +475,90249,3.0,1447255792 +475,90524,2.0,1447268951 +475,90647,2.0,1447255820 +475,90746,3.5,1447255702 +475,90866,3.5,1447072084 +475,91077,3.0,1447842943 +475,91094,3.0,1447255881 +475,91485,2.0,1447268635 +475,91500,4.0,1446908578 +475,91529,2.5,1446908231 +475,91535,2.5,1447255710 +475,91542,3.5,1447239621 +475,91630,3.5,1447239741 +475,91658,4.0,1447255608 +475,91660,0.5,1447268972 +475,92420,3.5,1447255720 +475,92938,1.0,1447256213 +475,93270,2.5,1447256100 +475,93363,2.5,1447255766 +475,93510,4.0,1447255640 +475,93766,0.5,1447256074 +475,93838,4.0,1447255835 +475,94018,1.5,1447255876 +475,94777,2.5,1447255666 +475,94864,2.0,1446908837 +475,95309,3.5,1446908827 +475,95441,3.0,1447255667 +475,95510,2.0,1447239739 +475,95875,1.5,1447255750 +475,96079,4.0,1447240147 +475,96610,4.0,1447239567 +475,96691,2.0,1447256157 +475,96737,4.0,1447255751 +475,96821,4.0,1447255627 +475,96861,2.5,1447255867 +475,96863,1.5,1447268744 +475,97304,4.0,1446908362 +475,97913,3.0,1447239817 +475,97921,3.5,1446908417 +475,97923,3.5,1447255752 +475,98122,4.0,1447256427 +475,98124,4.0,1447255946 +475,98154,3.0,1447268633 +475,98809,3.0,1447072663 +475,98961,4.0,1446908492 +475,99112,2.0,1447255776 +475,99114,4.0,1446908209 +475,99117,2.0,1447256134 +475,99728,2.5,1447256035 +475,99813,4.0,1447255894 +475,100498,1.0,1447255955 +475,101864,2.5,1447268384 +475,102033,2.5,1447256141 +475,102123,3.5,1447255767 +475,102125,2.5,1447329585 +475,102445,3.5,1447239656 +475,102481,2.5,1447255973 +475,102686,0.5,1447255891 +475,102716,3.0,1447255905 +475,102880,1.0,1447256010 +475,102903,1.0,1447255685 +475,103042,2.5,1447268390 +475,103141,2.5,1447255740 +475,103228,4.0,1447255654 +475,103249,3.0,1446909043 +475,103253,2.0,1446909069 +475,103335,1.0,1447255696 +475,103339,2.5,1447255950 +475,103655,0.5,1447256241 +475,103772,2.5,1447268397 +475,103810,2.5,1447255954 +475,103883,2.5,1447256089 +475,104241,3.0,1447268408 +475,104243,2.0,1447329336 +475,104841,4.5,1446908491 +475,104879,4.0,1446908310 +475,104913,4.5,1447268394 +475,105504,3.5,1447268392 +475,105755,1.0,1447256370 +475,105844,4.0,1447268383 +475,106002,2.5,1447255736 +475,106072,3.5,1447255679 +475,106100,4.0,1446908349 +475,106487,3.0,1448031993 +475,106489,3.0,1447239717 +475,106766,4.0,1447255855 +475,106782,5.0,1446908412 +475,106916,3.5,1447268385 +475,106918,4.0,1447255730 +475,106920,4.0,1447071797 +475,107069,3.0,1447255939 +475,107348,3.0,1447255899 +475,107406,4.0,1447255742 +475,107953,3.0,1447268546 +475,108190,2.5,1447255737 +475,108928,2.0,1447256032 +475,108945,2.0,1447255877 +475,109374,4.5,1447071770 +475,109487,3.5,1447071958 +475,109578,3.5,1447255915 +475,109673,2.0,1447329317 +475,109850,2.0,1447256281 +475,110102,4.5,1447239781 +475,110127,2.5,1447255900 +475,110553,2.5,1447255797 +475,111113,3.0,1447255919 +475,111362,3.5,1447239666 +475,111364,3.0,1447255791 +475,111443,3.5,1447329226 +475,111622,3.5,1447256004 +475,111743,1.5,1447256071 +475,111759,4.0,1447072692 +475,111781,4.0,1447240130 +475,112138,3.0,1447328865 +475,112175,3.5,1447255682 +475,112183,3.0,1447071791 +475,112290,3.5,1447255642 +475,112370,0.5,1447255931 +475,112421,3.5,1447256268 +475,112552,4.5,1446908255 +475,112556,4.0,1446908312 +475,112623,4.0,1446908631 +475,112852,4.5,1447072635 +475,112911,2.0,1447256249 +475,113348,2.0,1447256090 +475,114662,3.5,1446908770 +475,115170,3.0,1447256064 +475,115210,3.5,1446908533 +475,115569,4.0,1447071819 +475,115617,4.0,1447239624 +475,115713,5.0,1446908140 +475,116161,3.0,1447256097 +475,116797,4.0,1446908135 +475,116823,2.0,1447255664 +475,117529,3.0,1447256491 +475,118696,2.0,1447255701 +475,119145,4.5,1447256486 +475,120799,2.0,1447255985 +475,122882,5.0,1446908352 +475,122886,4.5,1452259407 +475,122892,3.5,1447256484 +475,122900,4.0,1447255922 +475,122902,1.5,1447256325 +475,130634,2.5,1447256489 +475,132046,3.0,1447256115 +475,133195,1.0,1447256525 +475,134130,4.0,1454428207 +475,134170,4.0,1447256170 +475,134853,5.0,1446908136 +475,135133,3.0,1449834805 +475,136020,2.0,1447237796 +475,139644,3.0,1454428216 +475,142488,5.0,1454428201 +475,146656,4.5,1454428219 +475,148626,5.0,1454428198 +476,16,5.0,978966317 +476,111,4.0,971680962 +476,593,4.0,971680928 +476,785,3.0,971681012 +476,1093,5.0,971879190 +476,1097,2.0,971680989 +476,1127,1.0,971878795 +476,1198,3.0,971681012 +476,2318,4.0,971879270 +476,2369,2.0,971878972 +476,2395,4.0,971879462 +476,2396,3.0,971879462 +476,2428,2.0,971879215 +476,2490,2.0,971879410 +476,2580,2.0,971879270 +476,2600,3.0,971879550 +476,2683,3.0,971878911 +476,2692,4.0,971879427 +476,2700,4.0,971879513 +476,2701,1.0,971879550 +476,2706,2.0,971878795 +476,2707,4.0,971878911 +476,2710,3.0,971878929 +476,2712,3.0,971879215 +476,2716,3.0,971879236 +476,2719,1.0,971879270 +476,2722,3.0,971878972 +476,2724,1.0,971879462 +476,2762,4.0,971879462 +476,2772,3.0,971878972 +476,2826,2.0,971878795 +476,2858,5.0,971878795 +476,2881,3.0,971879190 +476,2959,5.0,971879215 +476,2987,3.0,971879550 +476,2995,1.0,971879270 +476,2997,5.0,971878911 +476,3081,4.0,971879462 +476,3113,1.0,971879215 +476,3127,3.0,971680928 +476,3160,5.0,971879362 +476,3174,4.0,971879362 +476,3175,4.0,971879236 +476,3578,3.0,971879270 +476,3623,4.0,971879378 +476,3752,1.0,971879362 +477,158,2.0,1329273308 +477,193,0.5,1329273629 +477,1027,0.5,1329273654 +477,1032,0.5,1329273648 +477,1371,5.0,1329273453 +477,1376,5.0,1329273299 +477,1527,5.0,1329273804 +477,1580,4.0,1329273976 +477,1644,1.0,1329273645 +477,1690,1.0,1329273431 +477,1722,4.0,1329273336 +477,2717,4.0,1329273624 +477,2881,0.5,1329273632 +477,2985,2.0,1329273301 +477,3717,4.0,1329273478 +477,4571,0.5,1329273631 +477,5481,5.0,1329273637 +477,8371,5.0,1329273855 +477,37386,5.0,1329273822 +477,65982,3.5,1329273959 +477,83613,4.0,1329273836 +478,47,3.5,1446621801 +478,260,4.5,1446622759 +478,293,3.5,1446622432 +478,296,5.0,1446621714 +478,318,5.0,1446621527 +478,356,5.0,1446621713 +478,778,4.5,1448366070 +478,1089,5.0,1446829908 +478,1193,4.5,1448366068 +478,1210,4.5,1446829751 +478,1270,5.0,1446622582 +478,1527,5.0,1446622660 +478,1884,4.0,1446622315 +478,2028,4.5,1446621699 +478,2329,5.0,1446621529 +478,2542,5.0,1446621572 +478,2571,3.5,1446621543 +478,2959,4.5,1446621716 +478,3147,4.0,1446621727 +478,3949,4.5,1446621947 +478,4011,5.0,1446621835 +478,4973,2.5,1446621923 +478,4993,5.0,1446622013 +478,4995,4.5,1446621791 +478,5952,5.0,1446622109 +478,5956,4.5,1446830553 +478,5989,5.0,1446621949 +478,5995,5.0,1446621644 +478,6016,4.5,1446621851 +478,6373,4.5,1446830537 +478,6902,4.0,1446622620 +478,7153,5.0,1446621979 +478,7293,3.5,1446830506 +478,7361,4.0,1446622736 +478,7438,4.0,1446621926 +478,7458,4.5,1446830493 +478,8368,4.5,1446622638 +478,8984,4.5,1446830502 +478,30812,4.0,1448366027 +478,32587,4.5,1446621931 +478,47099,4.5,1448366020 +478,48516,4.5,1446621779 +478,53125,4.0,1446621673 +478,54001,4.5,1446621676 +478,55247,5.0,1446622172 +478,55269,4.5,1446622204 +478,58559,3.5,1446621987 +478,59022,2.5,1446622341 +478,59315,3.5,1446621844 +478,64957,5.0,1446830173 +478,68157,4.5,1446623029 +478,72378,2.5,1446621819 +478,72998,4.0,1446622651 +478,73017,4.0,1446622630 +478,74458,4.5,1446622412 +478,79132,5.0,1446622776 +478,80463,3.5,1446621664 +478,80693,3.5,1446830417 +478,81537,3.5,1446622200 +478,81562,3.0,1446621814 +478,84844,5.0,1446622362 +478,88125,4.5,1446622406 +478,89492,4.0,1446621822 +478,91529,4.0,1446623043 +478,91542,4.0,1446622632 +478,92259,5.0,1446622009 +478,99114,4.0,1446621730 +478,106918,5.0,1446830134 +478,109374,4.5,1446622140 +478,109487,5.0,1446621584 +478,118900,3.5,1446622281 +478,119145,4.0,1446622655 +478,122886,5.0,1446622586 +478,138036,4.0,1448365930 +479,2,4.0,1409093666 +479,104,4.0,1410192250 +479,150,5.0,1409005120 +479,318,5.0,1409004681 +479,367,4.0,1409093530 +479,586,4.0,1409093577 +479,593,5.0,1409004732 +479,1097,4.0,1409005147 +479,1136,5.0,1409004746 +479,1193,4.0,1409093557 +479,1206,3.0,1409093622 +479,1270,4.5,1409093498 +479,1387,4.0,1409005161 +479,1388,3.5,1409004128 +479,1580,4.5,1409093527 +479,1663,4.0,1410192304 +479,1704,4.0,1409093588 +479,1732,3.0,1409093701 +479,1920,2.0,1409004174 +479,1961,4.5,1409093598 +479,1968,4.5,1409093663 +479,2004,2.0,1409004133 +479,2082,3.5,1409004123 +479,2114,3.5,1409004206 +479,2116,2.0,1409004096 +479,2502,4.0,1409093698 +479,2571,4.0,1409004715 +479,2683,4.0,1409093607 +479,2706,4.0,1409093634 +479,2762,4.0,1409093515 +479,2791,4.0,1409093728 +479,2916,4.0,1409093710 +479,2918,4.5,1409093650 +479,2959,4.0,1409004704 +479,3534,3.0,1409004141 +479,3793,4.0,1409093593 +479,4226,4.5,1409004729 +479,4306,4.0,1409093549 +479,4558,3.5,1409004232 +479,4686,3.5,1409004449 +479,4886,4.0,1409093638 +479,4896,4.5,1409093797 +479,4963,4.0,1409093654 +479,4980,3.0,1409004201 +479,4993,2.0,1409093519 +479,4995,4.5,1409093679 +479,5481,4.0,1410192265 +479,5618,0.5,1409004709 +479,5621,4.0,1409004359 +479,5816,4.0,1409093780 +479,5952,2.0,1409093544 +479,6377,4.0,1409093657 +479,6539,4.0,1409093628 +479,7153,1.0,1409004756 +479,7361,4.0,1409093684 +479,8464,4.0,1410192261 +479,8622,4.0,1409004044 +479,8961,4.5,1409093732 +479,33794,5.0,1409004830 +479,45950,4.0,1409004273 +479,46976,5.0,1409093851 +479,47610,5.0,1409005155 +479,48738,5.0,1409093858 +479,49530,5.0,1409005125 +479,51255,3.0,1409093862 +479,54001,4.0,1409093788 +479,54503,5.0,1409093823 +479,55247,5.0,1409005016 +479,55280,2.0,1410192461 +479,56367,5.0,1409005177 +479,58303,4.5,1410192448 +479,58559,5.0,1409004822 +479,58998,4.0,1410192457 +479,59315,4.0,1410192258 +479,59369,4.5,1409005208 +479,63082,5.0,1409093849 +479,64614,4.0,1410192481 +479,67255,4.5,1410192468 +479,69122,5.0,1409005151 +479,69481,4.5,1410192503 +479,69757,5.0,1409093767 +479,69844,4.5,1409093785 +479,72011,4.5,1410192483 +479,72998,5.0,1409005122 +479,73017,4.0,1409005203 +479,79132,5.0,1409004743 +479,80463,4.5,1410192509 +479,80489,4.0,1409005211 +479,81562,5.0,1409094234 +479,81834,5.0,1409005131 +479,81845,4.5,1410192464 +479,87232,4.0,1409005223 +479,87520,4.0,1409004489 +479,88125,5.0,1409005133 +479,89864,5.0,1410192476 +479,91529,5.0,1409004834 +479,91542,4.0,1409005205 +479,99114,4.0,1409004240 +479,106487,4.5,1409093810 +480,1,5.0,1272669366 +480,2,5.0,1272669458 +480,32,3.0,1272668464 +480,34,3.5,1272670036 +480,47,4.0,1272670017 +480,50,4.5,1272667244 +480,110,4.0,1272668411 +480,150,4.5,1339456571 +480,158,4.5,1339455084 +480,165,5.0,1272668487 +480,180,3.0,1339285240 +480,185,4.0,1272670061 +480,223,4.0,1339284707 +480,296,4.0,1272668440 +480,318,5.0,1272667015 +480,339,4.5,1272668589 +480,344,3.0,1339456450 +480,356,2.0,1339456579 +480,357,4.0,1272670051 +480,364,5.0,1272668489 +480,367,3.5,1272668505 +480,377,5.0,1272671503 +480,380,3.5,1272668458 +480,434,4.0,1272668563 +480,442,4.0,1272668709 +480,455,3.0,1339284908 +480,457,4.5,1272668421 +480,474,4.0,1339284947 +480,480,5.0,1272668408 +480,481,3.0,1272670428 +480,485,4.0,1339455106 +480,500,4.0,1339284652 +480,539,3.5,1272669408 +480,586,5.0,1272669437 +480,587,3.5,1272670041 +480,588,3.5,1272668468 +480,589,5.0,1272669274 +480,590,4.0,1272668446 +480,593,4.5,1272666729 +480,595,3.5,1339456458 +480,608,3.5,1272670006 +480,648,3.5,1272670011 +480,653,4.5,1272668796 +480,736,4.5,1272668493 +480,750,2.5,1339284717 +480,778,4.0,1339284996 +480,780,4.5,1272666627 +480,784,2.0,1272668815 +480,832,5.0,1272668804 +480,858,4.0,1339456454 +480,904,4.5,1272666867 +480,1027,4.5,1339455426 +480,1028,0.5,1339455551 +480,1036,5.0,1272666561 +480,1059,3.5,1339455255 +480,1060,3.5,1339455372 +480,1080,4.0,1339454974 +480,1089,4.5,1272668610 +480,1097,4.0,1339456465 +480,1136,4.0,1272667253 +480,1200,4.0,1272669265 +480,1206,4.0,1339284702 +480,1207,4.5,1339455039 +480,1213,5.0,1272668612 +480,1214,4.5,1272666803 +480,1240,4.5,1339285265 +480,1259,4.5,1272670103 +480,1265,5.0,1272667434 +480,1270,4.0,1272670014 +480,1370,4.0,1272668821 +480,1393,3.5,1272668641 +480,1407,4.0,1272668749 +480,1408,4.5,1339285365 +480,1485,4.5,1272668743 +480,1499,3.5,1339455530 +480,1517,4.5,1272668632 +480,1527,3.5,1272668586 +480,1552,5.0,1272671511 +480,1569,3.5,1272673110 +480,1573,4.5,1272668727 +480,1580,5.0,1272668522 +480,1608,4.5,1339285505 +480,1617,4.5,1272668556 +480,1639,3.0,1339455053 +480,1641,5.0,1272668785 +480,1644,3.0,1339455351 +480,1676,5.0,1272669452 +480,1680,3.0,1339455518 +480,1682,5.0,1272668661 +480,1717,3.5,1339455501 +480,1721,4.5,1272668524 +480,1729,5.0,1339455111 +480,1732,4.0,1339455033 +480,1777,4.0,1272672623 +480,1784,2.5,1339285492 +480,1792,3.5,1272778290 +480,1917,4.0,1272666550 +480,1920,4.0,1272665583 +480,1923,5.0,1272668605 +480,1954,4.5,1339285421 +480,1968,4.0,1272666894 +480,2000,4.5,1272668767 +480,2001,3.0,1339455117 +480,2011,4.0,1339285301 +480,2028,5.0,1272668494 +480,2054,4.5,1272669445 +480,2058,4.0,1339455481 +480,2081,4.0,1339455073 +480,2082,5.0,1339455642 +480,2118,4.5,1339285292 +480,2161,4.0,1339455311 +480,2232,4.5,1339283559 +480,2294,4.5,1339455189 +480,2353,5.0,1272672157 +480,2420,4.5,1339455434 +480,2424,3.5,1272669401 +480,2529,5.0,1339285842 +480,2542,5.0,1272672310 +480,2571,5.0,1272666665 +480,2617,4.0,1272668773 +480,2671,3.5,1339455186 +480,2683,4.5,1272668601 +480,2706,0.5,1339455315 +480,2762,4.5,1272666581 +480,2797,4.0,1339455154 +480,2959,3.5,1272667353 +480,2968,5.0,1339285310 +480,2985,3.5,1339455679 +480,2997,2.5,1272668581 +480,3114,2.5,1272668655 +480,3147,4.5,1272666778 +480,3168,3.0,1339455624 +480,3253,4.0,1339285221 +480,3256,4.0,1339456486 +480,3409,4.0,1272665557 +480,3438,4.0,1339456544 +480,3499,4.5,1272665488 +480,3535,3.5,1272669938 +480,3578,5.0,1272668108 +480,3698,4.5,1339455460 +480,3717,2.0,1339285497 +480,3751,3.0,1339455142 +480,3755,2.0,1339455260 +480,3793,3.5,1272670073 +480,3897,4.0,1272668734 +480,3911,3.0,1272669779 +480,3916,4.0,1272669311 +480,3948,5.0,1272668838 +480,3967,3.0,1339455547 +480,4011,4.5,1272667735 +480,4022,4.0,1272668760 +480,4023,4.0,1272778035 +480,4034,4.0,1272670453 +480,4148,3.5,1272666721 +480,4223,4.0,1272672726 +480,4226,5.0,1272666879 +480,4246,4.0,1339284991 +480,4251,4.0,1272668173 +480,4270,3.0,1339455200 +480,4306,5.0,1272666918 +480,4351,4.0,1272665599 +480,4381,4.0,1272669787 +480,4621,3.5,1339284919 +480,4638,2.0,1339455305 +480,4776,5.0,1272669313 +480,4878,2.5,1339284110 +480,4896,5.0,1272764444 +480,4901,2.0,1339455417 +480,4963,3.0,1339285379 +480,4993,5.0,1272667000 +480,5010,4.5,1339283425 +480,5108,4.5,1272669330 +480,5266,5.0,1272669861 +480,5349,3.5,1272670109 +480,5377,2.5,1272669974 +480,5418,5.0,1272668082 +480,5445,4.0,1272666682 +480,5449,3.5,1272672899 +480,5464,4.5,1272669014 +480,5481,4.5,1339285260 +480,5630,4.0,1272666741 +480,5816,5.0,1272764423 +480,5833,4.5,1272665889 +480,5903,4.0,1339284120 +480,5952,5.0,1272666982 +480,5956,5.0,1272673098 +480,5989,3.0,1339455790 +480,6016,4.5,1272667606 +480,6281,5.0,1272671054 +480,6323,4.5,1272671404 +480,6365,3.0,1339455103 +480,6373,3.0,1339454956 +480,6377,4.5,1272668711 +480,6380,4.0,1272665734 +480,6502,4.5,1272666831 +480,6539,4.5,1272777807 +480,6796,5.0,1272667132 +480,6870,4.0,1272667994 +480,6874,4.0,1272667409 +480,6879,4.5,1272670695 +480,6942,4.5,1272672755 +480,7004,3.5,1339284902 +480,7143,4.5,1339285392 +480,7153,5.0,1272666992 +480,7162,4.0,1339455528 +480,7254,4.5,1272670772 +480,7256,4.0,1272672112 +480,7293,4.5,1272672629 +480,7347,3.5,1272672992 +480,7360,4.5,1272670692 +480,7362,4.0,1339455941 +480,7438,2.0,1339284056 +480,7445,4.0,1339284807 +480,7458,4.5,1339455357 +480,7502,5.0,1339285385 +480,8360,3.5,1339283435 +480,8361,4.0,1339455271 +480,8368,5.0,1272764407 +480,8369,4.5,1339456151 +480,8528,3.0,1339285510 +480,8529,3.5,1272669383 +480,8641,5.0,1272668856 +480,8644,4.0,1272670779 +480,8665,5.0,1272670455 +480,8783,3.5,1339283584 +480,8798,5.0,1272670543 +480,8860,4.0,1272765460 +480,8874,5.0,1272667041 +480,8907,3.5,1272672173 +480,8908,4.0,1272665951 +480,8949,0.5,1339455119 +480,8950,4.0,1272669931 +480,8957,4.5,1272666853 +480,8958,3.5,1272667440 +480,8972,3.5,1272778017 +480,27611,5.0,1339284100 +480,27674,4.0,1272671391 +480,27773,5.0,1272667751 +480,27831,4.0,1272667404 +480,27867,4.0,1339455410 +480,30707,1.5,1272668071 +480,30825,5.0,1272669869 +480,31410,3.5,1272671900 +480,31685,3.5,1339455949 +480,32587,5.0,1272666571 +480,33166,3.5,1339285158 +480,33672,3.5,1272666098 +480,33679,2.5,1339455293 +480,33794,4.0,1272667726 +480,34162,3.5,1272666911 +480,34405,5.0,1272667999 +480,35836,3.5,1272666769 +480,36276,3.5,1272671083 +480,36708,4.5,1272672626 +480,37731,1.5,1339455993 +480,39446,4.0,1272777826 +480,40412,4.5,1272668089 +480,40723,4.0,1272666126 +480,40732,4.5,1272666815 +480,40815,5.0,1272670804 +480,40819,4.0,1272672432 +480,41566,3.0,1339284755 +480,41569,3.0,1272671457 +480,41997,4.0,1272667084 +480,43936,4.5,1272666592 +480,44199,5.0,1272667783 +480,44511,4.0,1272669891 +480,44555,4.0,1272667616 +480,45672,3.5,1272672892 +480,45722,3.5,1339284912 +480,46578,5.0,1272668030 +480,46970,3.0,1339455586 +480,46972,3.5,1339455892 +480,46976,4.5,1272668009 +480,47610,3.0,1339284934 +480,47629,4.0,1272672529 +480,48516,5.0,1272667164 +480,48774,4.5,1272666691 +480,48780,5.0,1272666970 +480,49272,3.5,1272668087 +480,49278,4.5,1272669297 +480,49530,5.0,1272668081 +480,50445,3.5,1272671273 +480,50872,3.5,1272668041 +480,51084,4.5,1272672638 +480,51255,5.0,1272666925 +480,51412,4.5,1272665926 +480,51540,3.5,1272671348 +480,51662,3.5,1272672801 +480,52328,5.0,1272671117 +480,52952,3.0,1339455912 +480,53000,4.0,1272671452 +480,53972,2.5,1339285881 +480,54001,5.0,1272764414 +480,54286,5.0,1272667820 +480,54372,5.0,1272666173 +480,54503,4.5,1272669796 +480,54881,4.5,1272667918 +480,54997,4.5,1272668055 +480,55094,2.0,1272778261 +480,55247,1.5,1339285217 +480,55765,2.0,1272670402 +480,55820,4.5,1272667745 +480,56145,5.0,1272670832 +480,56174,4.0,1272667056 +480,56251,5.0,1339285825 +480,56782,3.5,1339455242 +480,57368,4.5,1272670843 +480,57669,5.0,1272666943 +480,58559,4.0,1272666753 +480,58803,4.5,1272671473 +480,58998,3.5,1272669806 +480,59315,3.0,1339285997 +480,59369,4.0,1272666844 +480,59421,4.5,1272673089 +480,59784,3.0,1272671188 +480,60069,4.0,1272666657 +480,60074,3.5,1272672166 +480,60161,4.5,1272666004 +480,61352,4.5,1272670541 +480,62155,3.5,1272672740 +480,62374,3.0,1272670707 +480,62644,3.0,1272670247 +480,62956,4.5,1272669830 +480,63072,3.0,1339284116 +480,63113,3.0,1339455506 +480,63131,4.5,1339456234 +480,64716,3.5,1272672154 +480,64839,3.0,1272667721 +480,64969,3.5,1339455634 +480,64983,4.0,1272671439 +480,65088,4.0,1272672873 +480,65216,5.0,1272672581 +480,66203,4.0,1272672636 +480,66297,4.5,1272666139 +480,67197,3.5,1272778044 +480,67255,4.0,1339284773 +480,67997,4.5,1339455953 +480,68073,4.5,1272670905 +480,68135,3.5,1272672862 +480,68237,5.0,1272666637 +480,68791,4.0,1272669920 +480,68954,2.5,1339285893 +480,69122,4.0,1272666933 +480,69306,3.5,1339456241 +480,69757,4.0,1272668053 +480,69844,5.0,1272764430 +480,70286,4.5,1339283920 +480,71106,3.5,1339285011 +480,71135,4.5,1272670819 +480,71264,3.5,1339284737 +480,71535,4.0,1272665777 +480,72226,2.0,1272667700 +480,72378,3.5,1272666613 +480,72998,5.0,1272667769 +480,73017,5.0,1339284321 +480,73211,4.0,1272667930 +480,74228,4.0,1339285306 +480,74458,4.0,1339283590 +480,74740,3.5,1272670778 +480,78088,4.0,1339283568 +480,78349,4.0,1339283468 +480,79132,5.0,1339283594 +480,79702,3.0,1339285851 +480,80463,4.5,1339455165 +480,81562,3.0,1339455207 +480,81834,4.5,1339283418 +480,81845,5.0,1339455002 +480,85414,3.5,1339284814 +480,88125,4.5,1339283421 +480,88744,3.5,1339455019 +480,89745,5.0,1339284337 +480,90888,3.0,1339284349 +480,91542,5.0,1339284328 +480,93363,4.0,1339284312 +480,94018,3.5,1339284364 +480,94777,4.5,1339284235 +480,94864,4.0,1339284298 +481,1,4.0,1437000892 +481,16,4.0,1437107274 +481,32,4.0,1437001138 +481,58,5.0,1437001711 +481,111,5.0,1437001061 +481,260,5.0,1437000913 +481,288,4.0,1437005927 +481,293,5.0,1437001979 +481,296,5.0,1437001071 +481,307,5.0,1437001570 +481,318,3.5,1437001004 +481,356,4.0,1437000890 +481,495,4.5,1437106903 +481,527,3.5,1437001006 +481,541,5.0,1437001831 +481,593,4.0,1437000887 +481,608,4.5,1437001083 +481,680,4.0,1437106441 +481,702,5.0,1437005446 +481,750,5.0,1437001062 +481,778,4.5,1437001898 +481,858,5.0,1437000986 +481,899,4.0,1437001363 +481,903,5.0,1437001834 +481,908,5.0,1437001848 +481,912,4.0,1437001066 +481,919,4.0,1437106109 +481,922,5.0,1437001850 +481,923,5.0,1437001090 +481,924,5.0,1437001080 +481,933,5.0,1437001545 +481,955,4.0,1437001472 +481,1032,4.5,1437106260 +481,1084,4.5,1437001358 +481,1089,5.0,1437001076 +481,1097,4.5,1437107173 +481,1136,3.0,1437106074 +481,1172,5.0,1437001195 +481,1193,5.0,1437001002 +481,1196,5.0,1437001055 +481,1198,4.0,1437001073 +481,1201,5.0,1437001057 +481,1206,5.0,1437001854 +481,1208,5.0,1437001069 +481,1210,5.0,1437001134 +481,1213,4.5,1437000994 +481,1221,5.0,1437000991 +481,1222,5.0,1437006129 +481,1227,5.0,1437001674 +481,1230,5.0,1437001114 +481,1240,3.5,1437005605 +481,1244,4.0,1437001937 +481,1247,4.0,1437001087 +481,1251,5.0,1437001459 +481,1252,5.0,1437001097 +481,1256,4.5,1437107405 +481,1258,5.0,1437006117 +481,1260,5.0,1437001206 +481,1270,5.0,1437000896 +481,1281,5.0,1437001355 +481,1282,5.0,1437106201 +481,1291,4.0,1437001380 +481,1304,5.0,1437001223 +481,1348,5.0,1437001943 +481,1354,4.0,1437003938 +481,1356,4.5,1437001351 +481,1374,4.5,1437001300 +481,1387,4.0,1437107158 +481,1527,4.0,1437107001 +481,1580,4.0,1437106994 +481,1682,4.0,1437005893 +481,1704,3.5,1437106992 +481,1729,4.0,1437005949 +481,1732,5.0,1437003466 +481,1784,3.5,1437006193 +481,1884,5.0,1437107584 +481,1952,5.0,1437001402 +481,1955,4.0,1441892391 +481,1961,3.5,1437005929 +481,1997,4.0,1437002064 +481,2010,5.0,1437001458 +481,2065,4.0,1437106183 +481,2068,5.0,1437106067 +481,2115,3.5,1437107198 +481,2160,4.0,1437005381 +481,2291,4.0,1437005924 +481,2351,4.5,1437001479 +481,2360,5.0,1437001370 +481,2361,4.0,1437105878 +481,2529,5.0,1437002017 +481,2542,4.0,1437005912 +481,2571,4.0,1437000902 +481,2572,3.5,1439688849 +481,2628,3.0,1437001026 +481,2692,5.0,1437001118 +481,2712,4.0,1437006131 +481,2729,3.0,1437006135 +481,2730,4.5,1437006153 +481,2731,5.0,1437001915 +481,2732,5.0,1437002006 +481,2762,4.5,1437001019 +481,2763,2.0,1439688851 +481,2858,4.5,1437001016 +481,2918,3.5,1437001125 +481,2959,4.5,1437001018 +481,2997,5.0,1437001141 +481,3000,5.0,1437001222 +481,3010,5.0,1437005142 +481,3022,4.5,1437001291 +481,3083,5.0,1437001508 +481,3089,5.0,1437001890 +481,3134,5.0,1437001465 +481,3168,5.0,1437006171 +481,3285,4.0,1437002557 +481,3306,5.0,1437001665 +481,3307,5.0,1437001889 +481,3310,5.0,1437002009 +481,3362,4.5,1437001836 +481,3462,5.0,1437001202 +481,3471,4.0,1437005554 +481,3503,5.0,1437005547 +481,3504,5.0,1437001376 +481,3534,2.5,1437002629 +481,3535,4.0,1437002378 +481,3560,4.0,1437106924 +481,3578,4.0,1437002209 +481,3629,5.0,1437107397 +481,3677,5.0,1437106601 +481,3753,2.5,1437002320 +481,3863,4.0,1437002376 +481,3882,1.5,1437002613 +481,3897,4.5,1437002205 +481,3910,5.0,1437002687 +481,3949,4.5,1437001081 +481,3996,4.0,1437002223 +481,4011,4.0,1437005914 +481,4014,4.0,1437004094 +481,4016,4.0,1437002548 +481,4017,4.0,1437003153 +481,4023,3.0,1437002587 +481,4144,4.5,1437001468 +481,4226,4.0,1437002166 +481,4235,4.5,1437001226 +481,4246,5.0,1437002306 +481,4262,4.5,1437001115 +481,4270,2.0,1437002429 +481,4306,3.5,1437002214 +481,4308,3.5,1437002285 +481,4343,1.5,1437002620 +481,4370,3.5,1437002292 +481,4628,4.0,1437107118 +481,4638,2.0,1437002473 +481,4643,2.0,1437002371 +481,4658,4.0,1437105826 +481,4728,3.0,1437002794 +481,4776,3.0,1437002423 +481,4848,4.5,1437002347 +481,4874,3.5,1437002504 +481,4886,4.5,1437002227 +481,4896,3.5,1437006298 +481,4914,5.0,1437106502 +481,4963,3.5,1437002182 +481,4973,5.0,1437001051 +481,4992,2.0,1437002822 +481,4993,5.0,1437001087 +481,4994,3.5,1437003180 +481,4995,3.5,1437002190 +481,5014,3.5,1437002765 +481,5056,5.0,1437003673 +481,5147,5.0,1437003669 +481,5179,5.0,1437005469 +481,5218,3.0,1437002297 +481,5225,4.5,1437001981 +481,5266,2.5,1437002470 +481,5269,5.0,1437003835 +481,5304,4.5,1437004331 +481,5319,5.0,1437006449 +481,5349,3.0,1437002183 +481,5378,3.5,1437006307 +481,5418,5.0,1437002201 +481,5445,3.5,1437002178 +481,5449,2.0,1437002768 +481,5459,3.5,1437002343 +481,5489,5.0,1437003878 +481,5560,4.5,1437003744 +481,5607,5.0,1437006459 +481,5618,5.0,1437005698 +481,5620,2.0,1437002777 +481,5669,3.5,1437002303 +481,5686,4.5,1437004997 +481,5791,4.5,1437002852 +481,5878,5.0,1437001507 +481,5881,1.0,1437002846 +481,5902,4.5,1437002355 +481,5944,3.5,1437002781 +481,5945,3.5,1437006180 +481,5952,4.0,1437001093 +481,5956,3.5,1437107334 +481,5989,4.0,1437006296 +481,5991,3.5,1437002367 +481,5992,4.5,1437002677 +481,6003,4.0,1437002813 +481,6016,5.0,1437000996 +481,6155,3.0,1437002717 +481,6197,4.5,1437007415 +481,6214,5.0,1437005080 +481,6283,5.0,1437005617 +481,6287,2.5,1437003544 +481,6333,1.0,1437006311 +481,6365,3.5,1437006300 +481,6370,4.5,1437004375 +481,6373,3.0,1437002358 +481,6377,5.0,1437002179 +481,6385,4.0,1437002715 +481,6539,3.0,1437002218 +481,6591,3.5,1437003789 +481,6666,5.0,1437004173 +481,6711,4.5,1437003357 +481,6774,4.0,1437007406 +481,6863,4.0,1437002353 +481,6874,5.0,1437002191 +481,6888,1.0,1437002938 +481,6934,3.0,1437002271 +481,6942,2.5,1437002375 +481,6947,3.0,1437002478 +481,6975,4.5,1437003842 +481,6985,5.0,1437005306 +481,6987,5.0,1437005267 +481,7043,5.0,1437106401 +481,7063,5.0,1437003876 +481,7071,4.0,1437005458 +481,7090,4.5,1441892578 +481,7091,4.0,1437107574 +481,7147,4.0,1437002259 +481,7149,3.5,1437002868 +481,7151,4.0,1437003173 +481,7153,4.0,1437002165 +481,7160,4.0,1437002730 +481,7162,4.0,1437002725 +481,7254,4.0,1437002365 +481,7293,3.5,1441892562 +481,7323,5.0,1437002648 +481,7327,5.0,1437005272 +481,7347,3.5,1437002907 +481,7361,5.0,1437002186 +481,7371,5.0,1437002843 +481,7419,4.0,1437107276 +481,7438,5.0,1437002196 +481,7451,2.0,1437002610 +481,7505,4.5,1437003935 +481,8154,5.0,1437002005 +481,8197,5.0,1437002048 +481,8239,5.0,1437002088 +481,8368,3.5,1437002254 +481,8477,5.0,1437001701 +481,8529,3.5,1437002573 +481,8533,2.5,1437005527 +481,8620,4.0,1437004193 +481,8636,2.5,1437006309 +481,8638,3.0,1437001680 +481,8645,3.5,1437003045 +481,8665,5.0,1437002252 +481,8798,3.5,1437002438 +481,8873,4.5,1437003553 +481,8930,4.5,1437003943 +481,8949,4.0,1437002445 +481,8961,3.0,1437006293 +481,8966,3.0,1437003244 +481,8969,4.0,1437003049 +481,8970,4.0,1437002484 +481,8973,4.5,1437002078 +481,8981,4.0,1437002716 +481,25750,5.0,1437106059 +481,25771,5.0,1437003734 +481,26094,5.0,1437005404 +481,26258,4.0,1437105806 +481,26326,5.0,1437105780 +481,26574,4.0,1437004294 +481,26729,5.0,1437007724 +481,27423,5.0,1437005044 +481,27611,3.5,1437005560 +481,27773,5.0,1437001202 +481,27821,3.5,1437003247 +481,30707,4.5,1437002345 +481,30749,4.5,1437001304 +481,30812,4.0,1437002519 +481,31973,5.0,1437004326 +481,32444,4.0,1437106570 +481,32587,4.0,1437001147 +481,32825,4.5,1437106699 +481,32898,5.0,1437005548 +481,33166,4.0,1437002362 +481,33493,3.0,1437002269 +481,33679,2.5,1437002467 +481,33903,5.0,1437007302 +481,34048,2.0,1437107222 +481,34072,4.0,1437002863 +481,34437,4.5,1437002824 +481,36276,4.0,1437003828 +481,36529,4.0,1437002519 +481,37741,4.0,1437002749 +481,39183,5.0,1437002532 +481,39869,4.0,1437003953 +481,40819,4.5,1437002495 +481,41566,3.0,1437002452 +481,41997,3.5,1437107169 +481,42677,4.5,1437107187 +481,44555,5.0,1437001841 +481,44694,4.5,1437001927 +481,44717,3.0,1437005055 +481,45447,2.5,1437002570 +481,45720,3.0,1437002728 +481,46578,5.0,1437001659 +481,46723,4.0,1437002656 +481,46976,3.5,1437003350 +481,47152,5.0,1437106568 +481,47721,5.0,1437106063 +481,48165,5.0,1437003824 +481,48385,3.5,1437002433 +481,48394,5.0,1437002282 +481,48516,4.5,1437006170 +481,48997,4.0,1441892419 +481,49272,3.5,1437002277 +481,49299,4.0,1437006468 +481,50842,4.0,1437003964 +481,50872,4.5,1437002386 +481,50912,4.0,1437004091 +481,51662,3.0,1437002289 +481,52666,4.5,1437003826 +481,53123,4.0,1437001672 +481,54001,4.0,1437002497 +481,54259,3.0,1437002645 +481,54272,3.0,1437002557 +481,54286,5.0,1437002287 +481,54503,4.0,1437002465 +481,55118,4.0,1437007396 +481,55247,4.5,1437001512 +481,55269,4.5,1437002080 +481,55721,4.5,1437001623 +481,55820,5.0,1437001405 +481,56174,3.0,1437002475 +481,56367,5.0,1437002293 +481,56587,3.0,1437006185 +481,56757,3.0,1437002739 +481,56782,4.5,1437001625 +481,56869,5.0,1437005037 +481,57038,5.0,1437005025 +481,58301,4.0,1437003846 +481,58559,3.5,1437002233 +481,58879,4.0,1437107315 +481,59615,2.0,1437002637 +481,59805,4.0,1437006549 +481,60069,4.5,1437001281 +481,60333,4.5,1437003882 +481,61323,4.0,1437001971 +481,63082,4.0,1437006686 +481,63179,4.5,1437004063 +481,64278,5.0,1437007686 +481,64614,4.5,1437001418 +481,64957,3.5,1437002604 +481,66097,4.0,1437002788 +481,68157,5.0,1437001928 +481,68358,3.5,1441892356 +481,68872,4.0,1437004336 +481,68954,4.0,1441892363 +481,69122,3.5,1437002425 +481,69134,4.0,1437003957 +481,70533,4.0,1437005649 +481,71033,4.0,1437006454 +481,71108,5.0,1437003816 +481,71433,4.5,1437006512 +481,71535,1.0,1437005940 +481,71755,5.0,1437006499 +481,72683,4.0,1437006573 +481,72998,3.0,1441892361 +481,73017,3.0,1441892350 +481,74458,4.0,1437002493 +481,74789,2.5,1437002770 +481,77658,5.0,1437001235 +481,78499,4.5,1437002500 +481,79132,4.0,1437001145 +481,79702,4.5,1437002695 +481,81591,4.0,1437002529 +481,81786,4.5,1437004100 +481,81834,3.0,1437003549 +481,84187,3.5,1437005645 +481,85394,4.5,1437003897 +481,85774,4.0,1437001984 +481,86320,4.5,1437003930 +481,86626,4.0,1437106459 +481,86882,3.5,1437002923 +481,88125,4.0,1437001598 +481,88682,4.0,1437107322 +481,89000,3.5,1437006473 +481,89039,4.0,1437106339 +481,89356,3.5,1437006462 +481,89759,4.5,1437001844 +481,90863,4.5,1437107286 +481,90866,4.0,1437003225 +481,92163,4.0,1437106580 +481,92259,4.0,1437001156 +481,96020,4.0,1437006731 +481,96606,5.0,1437001596 +481,96829,5.0,1437001347 +481,96832,5.0,1437003988 +481,97230,5.0,1437107341 +481,98056,4.5,1437003822 +481,98963,5.0,1437004891 +481,99114,5.0,1437001312 +481,100106,4.5,1437007680 +481,103210,3.5,1437106143 +481,105246,4.5,1437004383 +481,106642,2.5,1437005622 +481,106782,4.0,1437002895 +481,107771,4.5,1437145367 +481,108727,4.0,1437003950 +481,108873,3.5,1437006457 +481,108979,5.0,1441892330 +481,108981,4.0,1437003966 +481,109374,3.5,1437001369 +481,109487,4.5,1441892373 +481,109848,4.5,1437005592 +481,111235,3.5,1437105983 +481,111443,3.5,1441892426 +481,112062,4.0,1437004111 +481,112070,4.0,1437996597 +481,112556,4.0,1437001699 +481,116797,3.5,1439688859 +481,116897,5.0,1437006448 +481,117533,4.0,1437001031 +481,122886,4.0,1437106119 +481,129191,4.0,1437004285 +481,130980,4.5,1437007991 +481,131830,4.0,1437996528 +481,138696,5.0,1437004594 +481,138698,4.5,1437004716 +482,32,4.0,949292001 +482,70,3.0,949292302 +482,799,3.0,949292236 +482,818,2.0,949291953 +482,1210,4.0,949292001 +482,1214,5.0,949292087 +482,1219,5.0,949292087 +482,1258,5.0,949292128 +482,1261,4.0,949292269 +482,1278,5.0,949292163 +482,1321,3.0,949292087 +482,1333,4.0,949292163 +482,1334,4.0,949292236 +482,1337,2.0,949292269 +482,1347,2.0,949292236 +482,1355,4.0,949291953 +482,1387,4.0,949292087 +482,1407,3.0,949292383 +482,1721,5.0,949291953 +482,1752,3.0,949291953 +482,1982,3.0,949292236 +482,1994,3.0,949292163 +482,1997,5.0,949292087 +482,2003,4.0,949292236 +482,2097,3.0,949292383 +482,2118,4.0,949292196 +482,2160,3.0,949292196 +482,2288,3.0,949292087 +482,2366,4.0,949292128 +482,2454,2.0,949292269 +482,2455,2.0,949292269 +482,2517,3.0,949292383 +482,2617,4.0,949292302 +482,2633,4.0,949292196 +482,2634,5.0,949292332 +482,2635,5.0,949292128 +482,2636,5.0,949292128 +482,2637,4.0,949292128 +482,2638,3.0,949292128 +482,2644,5.0,949292163 +482,2647,5.0,949292163 +482,2648,5.0,949292087 +482,2649,5.0,949292196 +482,2650,5.0,949292196 +482,2651,5.0,949292269 +482,2652,5.0,949292302 +482,2653,2.0,949292163 +482,2654,5.0,949292196 +482,2664,5.0,949292163 +482,2716,5.0,949292087 +482,2747,3.0,949292302 +482,2780,4.0,949292236 +482,2781,3.0,949292332 +482,2784,4.0,949292087 +482,2867,2.0,949292236 +482,2901,4.0,949292302 +482,3016,3.0,949292383 +482,3018,5.0,949292001 +482,3264,3.0,949292236 +483,50,4.0,1465389616 +483,110,4.0,1465387307 +483,111,3.0,1465387417 +483,260,4.0,1465387263 +483,293,4.0,1465387311 +483,318,5.0,1465387257 +483,356,5.0,1465387336 +483,377,3.0,1465387536 +483,380,4.0,1465387574 +483,457,3.5,1465387340 +483,541,5.0,1465389610 +483,588,2.5,1465387504 +483,589,4.0,1465387306 +483,593,5.0,1465387333 +483,648,4.0,1465387522 +483,778,5.0,1465387437 +483,1036,4.5,1465387389 +483,1089,4.0,1465387397 +483,1196,5.0,1465387264 +483,1198,4.0,1465387260 +483,1200,5.0,1465387318 +483,1210,3.5,1465387290 +483,1213,5.0,1465387394 +483,1214,5.0,1465387420 +483,1222,4.5,1465389630 +483,1240,5.0,1465387341 +483,1258,4.0,1465389633 +483,1259,5.0,1465387564 +483,1291,4.0,1465387282 +483,1527,3.0,1465387443 +483,1573,2.0,1465387568 +483,1580,3.0,1465387435 +483,1676,4.0,1465387586 +483,1682,3.0,1465387384 +483,1732,5.0,1465387406 +483,1884,4.0,1465387578 +483,1968,4.0,1465387519 +483,1997,3.5,1465389618 +483,2028,4.0,1465387313 +483,2288,5.0,1465389579 +483,2329,5.0,1465387374 +483,2403,5.0,1465389634 +483,2571,3.5,1465387268 +483,2628,0.5,1465387488 +483,2916,5.0,1465387573 +483,2997,1.0,1465387494 +483,3147,5.0,1465387352 +483,3275,1.5,1465387597 +483,3527,5.0,1465387600 +483,3623,3.5,1465387540 +483,3702,4.0,1465389629 +483,3703,5.0,1465389622 +483,3793,2.0,1465387404 +483,3996,1.0,1465387509 +483,4638,2.0,1465387603 +483,4776,3.5,1465389619 +483,4878,4.0,1465387376 +483,4993,4.0,1465387337 +483,5378,0.5,1465387481 +483,5418,5.0,1465387372 +483,5952,4.0,1465387315 +483,6333,0.5,1465387491 +483,6365,0.5,1465387450 +483,7153,4.0,1465387316 +483,7254,2.5,1465387440 +483,7438,1.0,1465387365 +483,8644,1.0,1465387424 +483,8665,5.0,1465387402 +483,8798,5.0,1465387557 +483,8874,4.0,1465387409 +483,33166,3.0,1465387555 +483,33493,1.0,1465387442 +483,33794,3.5,1465387349 +483,34405,0.5,1465387508 +483,39183,2.0,1465387583 +483,44195,3.0,1465387526 +483,45186,4.0,1465387595 +483,48385,3.0,1465387476 +483,49530,4.0,1465387470 +483,53125,2.5,1465387467 +483,54286,4.0,1465387344 +483,56782,5.0,1465389576 +483,58559,4.0,1465387310 +483,59315,5.0,1465387351 +483,59615,3.5,1465387530 +483,60040,5.0,1465387593 +483,63113,4.0,1465387533 +483,68237,3.5,1465389578 +483,68358,1.0,1465387357 +483,69481,5.0,1465387515 +483,70286,5.0,1465387373 +483,71535,3.5,1465387414 +483,72641,0.5,1465387496 +483,73321,4.0,1465387552 +483,77561,4.0,1465387426 +483,79132,3.5,1465387335 +483,82459,4.0,1465387517 +483,88129,4.5,1465387501 +483,88140,5.0,1465387474 +483,88744,5.0,1465387471 +483,90405,2.5,1465387560 +483,91500,3.0,1465387380 +483,93840,3.5,1465387547 +483,96079,4.0,1465387431 +483,96610,4.0,1465387452 +483,102125,4.0,1465387458 +483,102445,0.5,1465387478 +483,103228,3.0,1465387553 +483,106100,4.0,1465387484 +483,106487,3.0,1465387421 +483,106782,4.5,1465387366 +483,111362,4.5,1465387413 +483,111759,5.0,1465387382 +483,112852,3.5,1465387362 +483,115149,4.0,1465387563 +483,116823,3.0,1465387498 +483,122886,0.5,1465387346 +483,122900,5.0,1465387486 +483,122904,1.5,1465387448 +484,1,3.0,851345204 +484,3,4.0,851345272 +484,17,5.0,851345205 +484,25,2.0,851345205 +484,32,5.0,851345204 +484,41,4.0,851345432 +484,62,5.0,851345205 +484,65,1.0,851345432 +484,76,5.0,851345499 +484,104,3.0,851345320 +484,376,5.0,851345272 +484,494,4.0,851345272 +484,640,4.0,851345499 +484,648,4.0,851345205 +484,719,4.0,851345499 +484,724,4.0,851345499 +484,736,3.0,851345204 +484,780,5.0,851345204 +484,788,4.0,851345366 +484,1073,4.0,851345320 +485,31,4.0,1337748425 +485,105,2.5,1337748405 +485,362,4.5,1337748523 +485,1234,4.5,1337748746 +485,1321,2.5,1337748546 +485,1918,4.0,1337748463 +485,2109,3.5,1337748591 +485,2150,4.0,1337748457 +485,2161,3.5,1337748418 +485,2746,4.5,1337748488 +485,3006,3.0,1337748472 +485,3252,3.5,1337748562 +485,3361,4.0,1337748576 +485,3386,2.5,1337748535 +485,3396,3.5,1337748581 +485,3717,1.0,1337748452 +485,3826,3.0,1337748585 +485,3916,4.5,1337748572 +485,5991,4.0,1337748512 +485,8823,3.0,1337748768 +486,1,5.0,1464121011 +486,34,2.5,1464121171 +486,231,5.0,1464121125 +486,260,5.0,1464121502 +486,356,4.0,1464121000 +486,480,3.5,1464121512 +486,500,1.5,1464121160 +486,541,5.0,1464121547 +486,588,4.0,1464121049 +486,589,4.0,1464121534 +486,750,5.0,1464121014 +486,778,3.5,1464123190 +486,780,2.5,1464121560 +486,924,5.0,1464121577 +486,1080,5.0,1464121090 +486,1136,5.0,1464120985 +486,1196,5.0,1464121509 +486,1197,4.5,1464120982 +486,1210,5.0,1464121528 +486,1230,4.5,1464121179 +486,1247,4.0,1464121106 +486,1265,5.0,1464120986 +486,1270,5.0,1464120983 +486,1273,5.0,1464123344 +486,1288,5.0,1464121217 +486,1573,4.0,1464121624 +486,1584,3.0,1464121637 +486,1653,4.0,1464121589 +486,1682,4.0,1464121027 +486,1732,4.5,1464123195 +486,1784,4.0,1464121104 +486,1884,4.5,1464121132 +486,1916,4.0,1464123373 +486,1917,3.0,1464121609 +486,1968,4.5,1464121075 +486,2000,4.0,1464121013 +486,2012,3.5,1464121628 +486,2296,3.0,1464121457 +486,2324,4.0,1464121006 +486,2395,4.5,1464121219 +486,2542,3.0,1464121062 +486,2571,4.0,1464121499 +486,2572,3.5,1464121140 +486,2628,2.5,1464121579 +486,2683,4.0,1464121176 +486,2716,4.0,1464121003 +486,2791,4.0,1464121029 +486,2916,5.0,1464121640 +486,2918,4.0,1464120995 +486,2997,4.0,1464121042 +486,3019,3.5,1464123191 +486,3114,5.0,1464121040 +486,3462,5.0,1464121208 +486,3481,3.5,1464121165 +486,3521,4.0,1464123193 +486,3948,3.5,1464121054 +486,4027,3.5,1464121045 +486,4370,2.5,1464121607 +486,4816,5.0,1464121098 +486,4973,2.0,1464121019 +486,4975,1.5,1464121625 +486,4979,5.0,1464121073 +486,5378,3.0,1464121576 +486,5445,2.5,1464121545 +486,5508,3.0,1464123450 +486,5902,4.0,1464123403 +486,6001,3.5,1464123354 +486,6188,3.5,1464121426 +486,6502,3.0,1464121591 +486,6807,4.5,1464121225 +486,6863,3.0,1464121047 +486,6978,3.5,1464123265 +486,7206,4.0,1464123384 +486,7323,2.5,1464121181 +486,7325,3.0,1464121448 +486,7361,4.5,1464121523 +486,7460,3.5,1464123382 +486,7947,4.0,1464123406 +486,7983,4.5,1464123412 +486,8376,3.5,1464121093 +486,8641,4.0,1464121088 +486,8874,4.0,1464121016 +486,8949,4.0,1464123358 +486,30810,4.0,1464121174 +486,34048,2.5,1464121594 +486,45517,3.0,1464121084 +486,46972,3.0,1464121120 +486,48774,3.0,1464121553 +486,52245,3.0,1464121433 +486,54503,4.5,1464120698 +486,55269,4.0,1464121206 +486,58156,3.0,1464121445 +486,59315,2.5,1464121517 +486,60684,3.5,1464121562 +486,60756,2.5,1464121419 +486,62434,3.0,1464121344 +486,64614,3.5,1464120712 +486,68237,5.0,1464121558 +486,68954,5.0,1464120996 +486,70286,4.0,1464121537 +486,72226,4.5,1464121130 +486,72998,2.5,1464121514 +486,73017,4.0,1464120713 +486,76077,4.5,1464122826 +486,78499,5.0,1464121020 +486,79132,3.5,1464121501 +486,82461,2.0,1464121635 +486,86911,3.0,1464121147 +486,88744,2.5,1464121567 +486,89745,2.5,1464121521 +486,94864,2.0,1464121586 +486,94959,3.0,1464121039 +486,97913,3.0,1464121069 +486,101864,2.5,1464121600 +486,102125,2.5,1464121564 +486,102445,2.5,1464121570 +486,102481,3.0,1464121451 +486,103228,2.0,1464121619 +486,103253,3.0,1464121605 +486,104841,2.5,1464121543 +486,106766,2.0,1464123456 +486,107406,2.5,1464121633 +486,109374,4.0,1464121030 +486,109487,2.5,1464121507 +486,111360,2.0,1464121614 +486,111759,4.0,1464121539 +486,112852,2.0,1464121532 +486,115713,3.0,1464121519 +486,122882,4.5,1464121510 +486,122886,3.0,1464121526 +486,128360,4.0,1464120907 +486,134130,2.0,1464120716 +486,134170,3.0,1464120930 +486,135887,2.0,1464120789 +486,139385,3.5,1464120913 +486,140174,3.5,1464120722 +486,140267,5.0,1464120771 +486,144976,5.0,1464120776 +487,2,4.0,832836515 +487,10,4.0,832836302 +487,11,4.0,832836467 +487,17,5.0,832836492 +487,19,3.0,832836405 +487,22,5.0,832836661 +487,27,3.0,832838282 +487,31,5.0,832836558 +487,32,4.0,832836378 +487,34,3.0,832836378 +487,39,4.0,832836405 +487,47,4.0,832836352 +487,48,3.0,832836572 +487,50,5.0,832836405 +487,54,3.0,832837960 +487,74,4.0,832837995 +487,89,3.0,832838523 +487,94,3.0,832837830 +487,95,5.0,832836467 +487,102,3.0,832838036 +487,104,3.0,832837436 +487,110,5.0,832836352 +487,122,3.0,832837343 +487,141,5.0,832836515 +487,145,4.0,832836701 +487,147,4.0,832837759 +487,150,4.0,832836228 +487,153,3.0,832836250 +487,158,3.0,832836541 +487,160,3.0,832836405 +487,161,4.0,832836302 +487,165,3.0,832836250 +487,168,3.0,832836541 +487,175,4.0,832837551 +487,179,3.0,832837916 +487,180,3.0,832837830 +487,185,3.0,832836330 +487,186,3.0,832836492 +487,193,3.0,832836590 +487,195,4.0,832837311 +487,203,3.0,832836683 +487,207,4.0,832837206 +487,208,3.0,832836330 +487,216,3.0,832836717 +487,218,4.0,832836661 +487,222,5.0,832836683 +487,224,3.0,832836541 +487,225,3.0,832836352 +487,227,4.0,832836610 +487,230,4.0,832836661 +487,231,3.0,832836275 +487,236,3.0,832836449 +487,237,4.0,832836610 +487,240,3.0,832838156 +487,248,3.0,832837258 +487,252,3.0,832836467 +487,253,3.0,832836330 +487,257,4.0,832836717 +487,261,5.0,832836515 +487,265,4.0,832836492 +487,266,5.0,832836378 +487,270,4.0,832837747 +487,273,4.0,832836632 +487,277,5.0,832836610 +487,280,5.0,832836717 +487,288,3.0,832836352 +487,289,4.0,832837343 +487,293,4.0,832836515 +487,296,4.0,832836228 +487,300,4.0,832836330 +487,304,4.0,832837995 +487,316,4.0,832836276 +487,318,3.0,832836275 +487,329,4.0,832836276 +487,333,4.0,832836558 +487,339,4.0,832836302 +487,340,4.0,832837747 +487,344,3.0,832836250 +487,349,4.0,832836250 +487,350,4.0,832837206 +487,353,3.0,832837294 +487,355,3.0,832837374 +487,356,4.0,832838265 +487,357,4.0,832838265 +487,361,3.0,832838789 +487,364,5.0,832836590 +487,367,3.0,832836632 +487,370,3.0,832838557 +487,371,4.0,832837571 +487,372,3.0,832838789 +487,376,3.0,832837516 +487,377,4.0,832838393 +487,378,4.0,832839039 +487,380,3.0,832836228 +487,381,4.0,832836683 +487,410,2.0,832836352 +487,412,3.0,832838746 +487,415,4.0,832837844 +487,420,3.0,832836405 +487,421,4.0,832837781 +487,422,4.0,832839099 +487,426,3.0,832837571 +487,431,4.0,832836701 +487,433,3.0,832838294 +487,440,4.0,832836683 +487,450,4.0,832839025 +487,453,4.0,832839129 +487,454,4.0,832836590 +487,455,4.0,832838819 +487,457,5.0,832836449 +487,466,3.0,832838674 +487,471,4.0,832837388 +487,474,5.0,832838492 +487,475,5.0,832838764 +487,480,4.0,832838322 +487,489,4.0,832838947 +487,490,4.0,832838916 +487,491,3.0,832837536 +487,497,5.0,832838523 +487,500,5.0,832838464 +487,508,5.0,832838416 +487,510,4.0,832839025 +487,516,3.0,832838931 +487,520,3.0,832838592 +487,521,3.0,832838880 +487,524,5.0,832838839 +487,527,5.0,832838377 +487,539,4.0,832838464 +487,540,3.0,832838854 +487,542,4.0,832838916 +487,543,4.0,832838916 +487,544,4.0,832838989 +487,550,3.0,832837960 +487,552,3.0,832837436 +487,555,3.0,832836558 +487,585,4.0,832837343 +487,586,4.0,832838619 +487,587,4.0,832838603 +487,588,4.0,832836250 +487,590,5.0,832836228 +487,592,4.0,832836228 +487,593,4.0,832836425 +487,594,4.0,832838789 +487,595,4.0,832836276 +487,596,4.0,832839068 +487,597,4.0,832838539 +487,640,3.0,832837975 +487,648,5.0,832838947 +487,662,3.0,832838245 +487,708,4.0,832837805 +487,724,4.0,832838377 +487,736,5.0,832837374 +488,47,4.0,1308944597 +488,224,4.0,1308938709 +488,293,4.5,1308943595 +488,319,4.5,1308938825 +488,455,3.0,1308938730 +488,608,4.0,1308944534 +488,743,3.5,1308938811 +488,778,4.5,1308944251 +488,880,4.5,1308938892 +488,1089,4.0,1308944591 +488,1103,3.5,1308938862 +488,1125,4.0,1308938881 +488,1136,4.5,1308944558 +488,1206,4.0,1308944513 +488,1235,4.0,1308938763 +488,1258,5.0,1308944606 +488,1287,3.5,1308938692 +488,1357,4.5,1308938749 +488,1409,3.5,1308938836 +488,1586,3.0,1308938803 +488,1918,3.0,1308938700 +488,2746,4.5,1308938723 +488,2826,2.5,1308938785 +488,2959,4.0,1308943590 +488,3499,4.0,1308938741 +488,3949,4.0,1308939626 +488,4235,4.0,1308939319 +488,4878,4.5,1308943127 +488,4881,4.5,1308946186 +488,4993,3.5,1308939593 +488,5618,5.0,1308939629 +488,5952,3.5,1308939600 +488,5971,4.5,1308939608 +488,5995,4.5,1308939615 +488,6016,4.5,1308939328 +488,6773,4.5,1308946371 +488,7153,3.5,1308939597 +488,7323,4.0,1308945243 +488,7361,4.5,1308939342 +488,8014,4.5,1308944436 +488,27186,4.5,1308948497 +488,46578,4.5,1308946032 +488,48394,4.0,1308940302 +488,48738,4.0,1308943095 +488,48774,4.0,1308945757 +488,55442,4.5,1308941766 +488,61236,4.0,1308943109 +488,64839,4.5,1308941773 +488,66097,4.0,1308945995 +488,70286,5.0,1308943121 +488,71899,5.0,1308941788 +488,72226,4.0,1308943080 +488,74486,4.5,1308939071 +488,81591,4.0,1308944269 +489,24,3.0,944961127 +489,41,4.0,944960408 +489,282,3.0,944959719 +489,480,2.0,944956897 +489,858,3.0,944960213 +489,910,5.0,944960488 +489,915,5.0,944960127 +489,923,4.0,944960309 +489,924,4.0,944960048 +489,1193,4.0,944959719 +489,1246,4.0,944959750 +489,1513,3.0,944961127 +489,1911,3.0,944961017 +489,2282,3.0,944960127 +489,2396,5.0,944961222 +489,2700,5.0,944961222 +489,2710,4.0,944961017 +489,2716,4.0,944961017 +489,2718,5.0,944960213 +489,2858,5.0,944961017 +489,2942,2.0,944959857 +489,2987,3.0,944961223 +489,3095,5.0,944960353 +489,3114,5.0,944961223 +490,1,1.0,851786086 +490,6,5.0,851786277 +490,9,4.0,851786427 +490,14,3.0,851786330 +490,32,3.0,851786086 +490,36,3.0,851786277 +490,58,4.0,851786330 +490,79,4.0,851786427 +490,95,4.0,851786086 +490,112,4.0,851786277 +490,141,4.0,851786086 +490,494,4.0,851786277 +490,628,4.0,851786427 +490,648,4.0,851786087 +490,653,4.0,851786330 +490,733,5.0,851786277 +490,736,3.0,851786086 +490,762,3.0,851786427 +490,780,3.0,851786086 +490,784,4.0,851786330 +490,786,4.0,851786330 +490,1073,1.0,851786330 +491,1,5.0,940796476 +491,11,3.0,940797048 +491,21,3.0,940796953 +491,34,4.0,940796422 +491,39,4.0,940797183 +491,52,1.0,940796953 +491,86,1.0,940795660 +491,125,4.0,940797129 +491,235,4.0,940796953 +491,253,4.0,940889429 +491,299,2.0,940795660 +491,345,4.0,940797226 +491,356,4.0,940796828 +491,357,5.0,940797129 +491,380,1.0,940797307 +491,440,3.0,940797307 +491,471,3.0,940797129 +491,588,3.0,940797129 +491,708,4.0,940797048 +491,799,3.0,940797129 +491,838,5.0,940797226 +491,1171,4.0,940797307 +491,1265,4.0,940796828 +491,1392,3.0,940796903 +491,1407,2.0,940889379 +491,1580,3.0,940797048 +491,1614,3.0,940797308 +491,1701,5.0,940796476 +491,1784,4.0,940796828 +491,1794,4.0,940796828 +491,1885,5.0,940796903 +491,2013,5.0,940795746 +491,2070,3.0,940795701 +491,2107,2.0,940889379 +491,2289,4.0,940796422 +491,2331,4.0,940796828 +491,2336,4.0,940795620 +491,2356,2.0,940797183 +491,2395,3.0,940795571 +491,2396,4.0,940795572 +491,2541,1.0,940795789 +491,2580,4.0,940795572 +491,2599,5.0,940796374 +491,2690,5.0,940797129 +491,2699,3.0,940795870 +491,2710,5.0,940795701 +491,2712,5.0,940795746 +491,2715,1.0,940796196 +491,2716,3.0,940795620 +491,2722,2.0,940795108 +491,2724,1.0,940795257 +491,2758,4.0,940795870 +491,2762,5.0,940794973 +491,2763,4.0,940795036 +491,2770,4.0,940795198 +491,2775,3.0,940795155 +491,2829,2.0,940795198 +491,2858,5.0,940794973 +491,2890,5.0,940794973 +491,2891,4.0,940795257 +491,2959,4.0,940795198 +491,2976,4.0,940795155 +491,2987,4.0,940795571 +492,30,2.0,898110583 +492,35,4.0,898111314 +492,77,4.0,898111123 +492,144,2.0,898111194 +492,154,5.0,898110821 +492,199,3.0,898110953 +492,213,2.0,898110739 +492,232,5.0,898110796 +492,247,4.0,898110796 +492,264,4.0,898111194 +492,265,5.0,898110796 +492,306,5.0,898110674 +492,307,5.0,898110739 +492,308,4.0,898110979 +492,326,3.0,898110543 +492,347,4.0,898111263 +492,446,5.0,898110843 +492,495,5.0,898111297 +492,501,5.0,898111027 +492,506,4.0,898111278 +492,509,3.0,898110821 +492,559,5.0,898111329 +492,573,1.0,898111099 +492,608,3.0,898108501 +492,620,4.0,898111061 +492,681,3.0,898110771 +492,690,4.0,898111214 +492,715,2.0,898110843 +492,721,4.0,898110927 +492,760,3.0,898110927 +492,793,4.0,898111123 +492,820,5.0,898111061 +492,824,4.0,898110674 +492,854,4.0,898110739 +492,1131,4.0,898110674 +492,1132,4.0,898110583 +492,1161,4.0,898111123 +492,1173,5.0,898111246 +492,1174,3.0,898111099 +492,1176,5.0,898111027 +492,1183,2.0,898107401 +492,1202,2.0,898110543 +492,1206,5.0,898111061 +492,1211,5.0,898111027 +492,1218,5.0,898110979 +492,1224,3.0,898110674 +492,1232,5.0,898110453 +492,1233,3.0,898108428 +492,1243,4.0,898110953 +492,1249,3.0,898110927 +492,1264,3.0,898110927 +492,1280,4.0,898110583 +492,1295,2.0,898111061 +492,1306,5.0,898111061 +492,1357,3.0,898110583 +492,1365,4.0,898110739 +492,1369,3.0,898110642 +492,1406,1.0,898111397 +492,1415,3.0,898110927 +492,1419,4.0,898110642 +492,1483,3.0,898107965 +492,1596,3.0,898107498 +492,1614,2.0,898107789 +492,1617,4.0,898107401 +492,1625,3.0,898107529 +492,1644,2.0,898107753 +492,1654,4.0,898107789 +492,1699,3.0,898107442 +492,1713,1.0,898108099 +492,1719,3.0,898107471 +492,1733,2.0,898107529 +492,1805,3.0,898107877 +492,1836,3.0,898107471 +492,2019,5.0,898110739 +493,7,4.0,954685491 +493,11,4.0,954685288 +493,17,4.0,954685153 +493,25,3.0,954685326 +493,28,4.0,954685191 +493,34,5.0,954684819 +493,48,2.0,954685491 +493,58,4.0,954685352 +493,105,4.0,954685326 +493,140,4.0,954685631 +493,207,4.0,954685597 +493,222,4.0,954685491 +493,237,2.0,954685413 +493,239,1.0,954685721 +493,252,4.0,954685538 +493,258,3.0,954685631 +493,266,4.0,954685571 +493,342,3.0,954685379 +493,351,4.0,954685516 +493,356,3.0,954685288 +493,357,4.0,954685326 +493,361,4.0,954685631 +493,377,4.0,954685326 +493,440,5.0,954685326 +493,469,4.0,954685721 +493,484,3.0,954684903 +493,497,2.0,954685229 +493,509,4.0,954685352 +493,539,4.0,954685326 +493,587,5.0,954685435 +493,597,4.0,954685352 +493,608,4.0,954684954 +493,613,4.0,954685663 +493,691,4.0,954685663 +493,736,4.0,954685597 +493,837,3.0,954684561 +493,838,4.0,954685288 +493,852,1.0,954685413 +493,858,4.0,954684927 +493,902,3.0,954684592 +493,905,4.0,954684761 +493,910,3.0,954684794 +493,934,3.0,954684761 +493,945,3.0,954684761 +493,1066,3.0,954684761 +493,1183,5.0,954685229 +493,1188,5.0,954685191 +493,1197,3.0,954684561 +493,1221,3.0,954684995 +493,1225,4.0,954684954 +493,1252,4.0,954684995 +493,1256,2.0,954684714 +493,1265,4.0,954685191 +493,1270,4.0,954684819 +493,1353,5.0,954685694 +493,1393,4.0,954685191 +493,1398,4.0,954685631 +493,1408,2.0,954685229 +493,1441,4.0,954685435 +493,1498,3.0,954685694 +493,1541,4.0,954685631 +493,1569,4.0,954685571 +493,1614,4.0,954684714 +493,1617,4.0,954684954 +493,1629,4.0,954685631 +493,1643,4.0,954684561 +493,1680,5.0,954685288 +493,1721,4.0,954685326 +493,1772,2.0,954684794 +493,1835,4.0,954685597 +493,1888,5.0,954685516 +493,1894,3.0,954685571 +493,1912,3.0,954685229 +493,2025,1.0,954685491 +493,2045,3.0,954685288 +493,2062,1.0,954685379 +493,2088,1.0,954684715 +493,2108,3.0,954685413 +493,2125,4.0,954685288 +493,2243,3.0,954684715 +493,2288,3.0,954684592 +493,2291,2.0,954685249 +493,2297,4.0,954685663 +493,2316,4.0,954685571 +493,2324,4.0,954685091 +493,2352,4.0,954684715 +493,2384,3.0,954684684 +493,2396,4.0,954685191 +493,2424,4.0,954685539 +493,2485,4.0,954685571 +493,2496,2.0,954685460 +493,2497,1.0,954685721 +493,2558,3.0,954685721 +493,2697,3.0,954685249 +493,2804,5.0,954684819 +493,2860,4.0,954684794 +493,2875,5.0,954685491 +493,3044,5.0,954685379 +493,3081,4.0,954685663 +493,3096,3.0,954684848 +493,3097,3.0,954685091 +493,3108,2.0,954685516 +493,3114,4.0,954684761 +493,3244,3.0,954684761 +493,3259,5.0,954685597 +493,3269,4.0,954685539 +493,3363,3.0,954684794 +493,3548,4.0,954684903 +493,3550,3.0,954685894 +493,3551,3.0,954684883 +494,50,5.0,1342747884 +494,260,4.5,1342748091 +494,296,4.0,1342747685 +494,318,4.5,1342747739 +494,356,3.5,1342747833 +494,527,5.0,1342747868 +494,593,4.5,1342748986 +494,750,4.0,1342748223 +494,858,5.0,1342747450 +494,910,4.0,1342748200 +494,1080,3.5,1342747660 +494,1089,4.0,1342747845 +494,1090,4.0,1342747690 +494,1193,5.0,1342747955 +494,1196,4.5,1342748124 +494,1197,4.0,1342748309 +494,1198,4.0,1342748110 +494,1201,4.0,1342748081 +494,1203,4.5,1342748304 +494,1210,4.0,1342747779 +494,1213,4.5,1342747902 +494,1221,5.0,1342747453 +494,1259,5.0,1342748774 +494,1265,3.5,1342747636 +494,1267,4.0,1342746012 +494,1276,5.0,1342747933 +494,1610,4.0,1342748831 +494,1704,4.0,1342747772 +494,1722,2.5,1342745942 +494,1732,4.0,1342747598 +494,1747,3.5,1342745968 +494,1947,2.0,1342746028 +494,2028,5.0,1342747786 +494,2329,4.5,1342747925 +494,2502,5.0,1342747752 +494,2542,4.5,1342747767 +494,2571,4.0,1342748022 +494,2788,4.5,1342747655 +494,2791,4.5,1342747591 +494,2918,3.5,1342748623 +494,2947,4.0,1342747627 +494,2959,4.5,1342748135 +494,3578,4.5,1342747508 +494,3752,2.0,1342746041 +494,4011,4.0,1342747560 +494,4262,3.5,1342747694 +494,4327,4.5,1342748757 +494,5047,1.0,1342746843 +494,5418,4.0,1342748332 +494,5420,3.0,1342746706 +494,5952,3.0,1342748162 +494,6874,3.0,1342748749 +494,6947,4.0,1342746077 +494,7502,4.5,1342748375 +494,7669,4.0,1342748504 +494,30707,4.0,1342747565 +494,31410,4.0,1342747512 +494,34405,4.0,1342746088 +494,41997,4.0,1342748388 +494,42011,3.0,1342746800 +494,44191,3.5,1342748412 +494,48516,4.5,1342748097 +494,48738,4.0,1342748403 +494,48774,4.0,1342748392 +494,48780,4.0,1342748396 +494,49272,4.0,1342748372 +494,50068,4.5,1342748400 +494,54286,4.0,1342748379 +494,55118,4.5,1342746535 +494,60069,4.0,1342748532 +494,66934,4.5,1342748423 +494,68157,4.0,1342748589 +494,69757,3.5,1342747389 +494,78469,3.5,1342746954 +494,79592,3.5,1342747202 +494,86833,3.5,1342747012 +494,94959,4.5,1369076771 +494,97306,4.5,1369076827 +495,34,5.0,846384319 +495,47,4.0,846384293 +495,110,5.0,846384274 +495,150,4.0,846384142 +495,161,3.0,846384233 +495,165,3.0,846384168 +495,208,4.0,846384233 +495,253,3.0,846384274 +495,292,5.0,846384215 +495,316,3.0,846384194 +495,329,4.0,846384194 +495,349,4.0,846384168 +495,356,5.0,846384215 +495,364,4.0,846384293 +495,367,4.0,846384293 +495,454,4.0,846384274 +495,457,5.0,846384194 +495,480,4.0,846384215 +495,527,5.0,846384480 +495,587,5.0,846384319 +495,589,4.0,846384274 +495,590,5.0,846384142 +495,592,3.0,846384142 +495,595,4.0,846384194 +495,597,3.0,846384319 +496,2,4.0,834060098 +496,3,3.0,843218375 +496,6,5.0,843218321 +496,11,4.0,837017766 +496,15,3.0,834598803 +496,19,2.0,834059934 +496,20,4.0,834598410 +496,22,5.0,834060753 +496,23,4.0,843218321 +496,27,4.0,834598448 +496,31,4.0,834060152 +496,34,2.0,834059907 +496,47,3.0,834059907 +496,48,3.0,834060152 +496,61,4.0,843218417 +496,62,5.0,837510633 +496,71,5.0,834598137 +496,79,4.0,843218338 +496,89,4.0,843218356 +496,95,4.0,837017561 +496,105,5.0,834060152 +496,110,5.0,834059873 +496,140,4.0,834598470 +496,141,2.0,834060114 +496,150,4.0,834059753 +496,151,5.0,834060075 +496,153,2.0,834059779 +496,158,4.0,834060114 +496,160,3.0,837017717 +496,161,4.0,834059827 +496,165,4.0,834059779 +496,168,5.0,834060135 +496,170,3.0,834598493 +496,185,5.0,834059851 +496,188,3.0,834598763 +496,204,4.0,843218375 +496,207,4.0,834060874 +496,208,4.0,834059851 +496,225,4.0,834059907 +496,227,4.0,834060218 +496,230,4.0,843218356 +496,231,1.0,834059806 +496,236,4.0,843218394 +496,237,4.0,834060218 +496,240,4.0,834060820 +496,252,4.0,834059999 +496,253,4.0,834059851 +496,256,3.0,834060135 +496,257,4.0,834598269 +496,261,3.0,834060114 +496,266,5.0,834059933 +496,271,4.0,834598383 +496,277,4.0,834060173 +496,280,4.0,843218303 +496,281,5.0,834598910 +496,282,4.0,834059971 +496,292,5.0,834059827 +496,293,4.0,834060098 +496,304,4.0,834598354 +496,315,4.0,834060790 +496,316,5.0,834059806 +496,317,3.0,834059907 +496,318,5.0,843218287 +496,329,5.0,834059806 +496,337,2.0,834059971 +496,338,5.0,834598117 +496,339,3.0,834059827 +496,344,2.0,834059779 +496,349,4.0,834059779 +496,350,4.0,834060194 +496,351,3.0,834598354 +496,356,5.0,834060194 +496,364,5.0,834059999 +496,367,3.0,834060098 +496,368,5.0,834060718 +496,376,4.0,834060753 +496,377,3.0,834060717 +496,380,4.0,834059753 +496,382,3.0,834060834 +496,383,4.0,834060834 +496,410,3.0,834059873 +496,419,3.0,837511201 +496,420,3.0,834059933 +496,422,3.0,843218375 +496,432,3.0,837017741 +496,434,4.0,834059827 +496,440,4.0,834060135 +496,442,4.0,837017795 +496,450,4.0,834060820 +496,454,3.0,834598493 +496,455,3.0,834598372 +496,457,5.0,834059873 +496,474,4.0,834060738 +496,480,5.0,834060400 +496,485,3.0,834598985 +496,494,5.0,834598629 +496,500,4.0,834060718 +496,515,3.0,834598775 +496,524,5.0,834060853 +496,528,3.0,837511426 +496,539,5.0,834060738 +496,540,3.0,834598372 +496,544,4.0,843218338 +496,552,3.0,834060790 +496,553,5.0,834060000 +496,555,4.0,834060135 +496,586,3.0,834060853 +496,587,5.0,834060696 +496,588,4.0,834059779 +496,589,5.0,834060790 +496,590,5.0,834059753 +496,592,3.0,834059753 +496,593,5.0,834059873 +496,595,4.0,834059806 +496,597,4.0,834060738 +496,648,5.0,834060369 +496,653,4.0,834598076 +496,724,3.0,834598803 +496,733,5.0,843218287 +496,761,3.0,837511174 +496,780,5.0,837017561 +496,786,5.0,843218303 +496,802,4.0,843218287 +496,805,4.0,843218303 +496,835,5.0,843218394 +496,1036,5.0,843218356 +497,246,5.0,940018718 +497,265,4.0,939767844 +497,308,5.0,940018282 +497,496,2.0,939767844 +497,527,5.0,939768497 +497,715,2.0,939768161 +497,923,2.0,939768497 +497,1041,2.0,939768028 +497,1079,5.0,942292951 +497,1081,4.0,940364525 +497,1096,4.0,940364249 +497,1097,5.0,940364445 +497,1124,3.0,942293168 +497,1131,5.0,939768396 +497,1132,4.0,939768497 +497,1150,5.0,940364481 +497,1172,5.0,940364289 +497,1173,1.0,942293281 +497,1179,4.0,939767934 +497,1185,5.0,940364572 +497,1186,5.0,940364612 +497,1188,3.0,940018718 +497,1196,4.0,940364445 +497,1197,3.0,940364087 +497,1198,5.0,940364289 +497,1200,4.0,940364143 +497,1207,3.0,939768396 +497,1211,3.0,940364339 +497,1220,3.0,940364694 +497,1221,3.0,939768444 +497,1225,5.0,940364445 +497,1231,3.0,940364400 +497,1242,1.0,940364339 +497,1246,5.0,942293244 +497,1247,5.0,939768396 +497,1258,4.0,940364653 +497,1259,4.0,940364481 +497,1270,3.0,940364400 +497,1285,4.0,940364612 +497,1288,4.0,940364200 +497,1289,5.0,940364572 +497,1293,4.0,942292852 +497,1295,2.0,940364481 +497,1296,3.0,940364087 +497,1300,5.0,940364289 +497,1302,4.0,940364612 +497,1307,5.0,940364339 +497,1374,3.0,942292951 +497,1376,2.0,940364525 +497,1394,5.0,940364339 +497,1663,3.0,940364249 +497,1674,5.0,940364143 +497,1810,4.0,940018282 +497,1944,4.0,939768444 +497,1956,4.0,940364400 +497,1957,3.0,940364200 +497,1958,4.0,942292852 +497,1959,5.0,940364289 +497,1961,4.0,940364400 +497,1968,5.0,940364143 +497,1994,4.0,942293093 +497,2020,4.0,940364339 +497,2022,3.0,942293125 +497,2028,4.0,939768497 +497,2064,5.0,940364087 +497,2068,3.0,942293244 +497,2100,3.0,940364694 +497,2105,1.0,940364200 +497,2115,4.0,940364143 +497,2134,4.0,940364200 +497,2144,3.0,940364249 +497,2145,4.0,940364087 +497,2146,4.0,940364339 +497,2150,4.0,940364400 +497,2174,2.0,940364446 +497,2240,5.0,940364653 +497,2243,4.0,940364200 +497,2248,5.0,940364143 +497,2262,2.0,940364087 +497,2312,5.0,940364445 +497,2313,3.0,940452283 +497,2324,2.0,940018348 +497,2352,5.0,940364249 +497,2369,2.0,940364612 +497,2371,4.0,940364445 +497,2395,5.0,939767934 +497,2406,4.0,940364200 +497,2470,2.0,940364339 +497,2496,4.0,939768078 +497,2501,4.0,939768078 +497,2518,2.0,942293168 +497,2599,5.0,939767984 +497,2712,5.0,939766909 +497,2716,4.0,940364249 +497,2724,5.0,939766834 +497,2762,4.0,939766567 +497,2797,3.0,940364694 +497,2801,5.0,939768161 +497,2859,4.0,942292951 +497,2917,5.0,940364694 +497,2918,5.0,940364653 +497,2938,4.0,942293200 +497,2973,5.0,942293281 +497,3019,2.0,942293244 +497,3067,2.0,942292915 +498,357,3.5,1166907035 +498,520,3.0,1166906977 +498,588,4.5,1166906824 +498,1035,2.5,1166906993 +498,1136,5.0,1166906841 +498,1183,4.0,1166907024 +498,1197,3.5,1166906931 +498,1214,2.0,1166906900 +498,1544,4.0,1166907583 +498,1569,3.5,1166907058 +498,1721,0.5,1166907673 +498,2406,4.0,1166907905 +498,2918,5.0,1166906833 +498,3033,5.0,1166907929 +498,3421,4.0,1166907882 +498,5378,0.5,1166907665 +498,5459,3.0,1166907648 +498,5481,1.5,1166907017 +498,6934,3.0,1166907546 +498,8636,3.0,1166906943 +499,50,5.0,965247608 +499,111,5.0,965247885 +499,162,4.0,965247661 +499,185,1.0,965247402 +499,260,4.0,965247608 +499,750,5.0,965248041 +499,858,5.0,965247608 +499,903,5.0,965248104 +499,913,5.0,965248041 +499,926,4.0,965248150 +499,953,4.0,965247266 +499,1084,5.0,965248008 +499,1104,4.0,965248008 +499,1193,5.0,965247291 +499,1197,4.0,965247335 +499,1210,4.0,965247402 +499,1213,5.0,965248041 +499,1221,5.0,965248203 +499,1230,5.0,965248168 +499,1248,4.0,965247661 +499,1254,4.0,965248104 +499,1267,5.0,965248041 +499,1280,5.0,965248041 +499,1461,1.0,965247402 +499,2010,4.0,965247977 +499,2019,5.0,965247850 +499,2858,5.0,965247885 +499,3089,5.0,965247608 +499,3238,1.0,965247402 +499,3435,5.0,965247977 +499,3741,4.0,965247850 +499,3742,4.0,965247608 +499,5060,5.0,965248203 +500,1,2.0,1228946388 +500,2,1.5,1228946281 +500,19,3.0,1228963336 +500,34,2.5,1228946744 +500,39,2.5,1228946243 +500,48,2.5,1228963545 +500,62,3.5,1228946126 +500,110,3.5,1228920957 +500,158,2.5,1229098692 +500,231,3.0,1228920995 +500,260,1.0,1228946667 +500,317,3.0,1228963470 +500,318,4.5,1228945990 +500,329,0.5,1228946757 +500,337,3.0,1228963143 +500,344,2.5,1228920531 +500,356,5.0,1228920719 +500,362,4.0,1228920135 +500,364,2.5,1228946719 +500,367,1.5,1228920944 +500,480,1.5,1228946663 +500,497,3.5,1228963385 +500,500,3.0,1228921057 +500,520,3.0,1228963488 +500,551,3.0,1228963167 +500,586,4.0,1228946090 +500,588,3.0,1228920888 +500,593,1.5,1228920712 +500,595,3.0,1228920972 +500,596,3.0,1229098357 +500,597,2.5,1228921246 +500,616,3.0,1228920138 +500,700,4.0,1228921289 +500,708,4.0,1228963181 +500,736,1.0,1228946728 +500,783,2.5,1229098696 +500,784,1.0,1228963377 +500,919,2.0,1228946400 +500,1013,4.0,1228920280 +500,1025,3.5,1228920224 +500,1035,3.0,1229098604 +500,1073,2.5,1228921142 +500,1088,4.0,1229098924 +500,1089,1.5,1228946080 +500,1097,1.0,1228920940 +500,1193,3.0,1228946169 +500,1197,4.0,1228920997 +500,1207,4.0,1228963303 +500,1210,1.0,1228946683 +500,1219,1.0,1228946269 +500,1225,3.5,1228946163 +500,1246,3.0,1228946324 +500,1265,1.0,1228921259 +500,1282,3.5,1228963467 +500,1367,2.5,1228920431 +500,1380,3.0,1228946407 +500,1407,0.5,1228962976 +500,1441,3.5,1228920193 +500,1485,2.5,1228946361 +500,1517,3.0,1228921215 +500,1569,3.0,1229098543 +500,1580,0.5,1228920793 +500,1704,3.5,1254039793 +500,1721,3.5,1228921001 +500,1739,1.0,1228920471 +500,1777,1.5,1228946472 +500,1923,2.0,1228920904 +500,1947,3.0,1228920101 +500,1959,4.0,1228920233 +500,1968,4.5,1228921052 +500,2005,1.0,1233450575 +500,2053,0.5,1228920271 +500,2054,1.0,1228946155 +500,2078,3.5,1229098985 +500,2081,2.5,1228946418 +500,2139,4.5,1228920284 +500,2141,3.0,1228920276 +500,2144,3.5,1229099010 +500,2145,4.5,1228920153 +500,2150,4.0,1228963831 +500,2273,3.5,1229098392 +500,2321,3.5,1228946445 +500,2324,5.0,1228920623 +500,2355,2.5,1228921136 +500,2420,3.5,1229098981 +500,2470,1.0,1228962982 +500,2502,3.5,1228946137 +500,2541,4.5,1229099143 +500,2571,1.0,1228946697 +500,2572,4.5,1228920422 +500,2599,3.0,1228946228 +500,2657,1.5,1228946340 +500,2671,3.5,1228963112 +500,2683,3.5,1228921013 +500,2694,4.0,1229098564 +500,2706,2.0,1228920950 +500,2710,0.5,1254039837 +500,2724,2.5,1229098933 +500,2762,1.5,1228946736 +500,2797,3.5,1228921126 +500,2915,3.0,1228920094 +500,2918,3.5,1228921008 +500,2959,2.5,1228946780 +500,3114,3.0,1254039813 +500,3174,4.0,1228946043 +500,3247,3.0,1228920168 +500,3253,3.0,1228946348 +500,3255,3.0,1228963406 +500,3397,2.0,1229628723 +500,3408,1.5,1228946174 +500,3418,1.5,1228946261 +500,3421,2.0,1228963158 +500,3448,3.5,1233450556 +500,3481,4.0,1228921235 +500,3624,4.0,1229098900 +500,3717,3.0,1228963411 +500,3751,1.5,1228921206 +500,3752,3.0,1229098334 +500,3755,2.0,1228963209 +500,3793,3.0,1228921061 +500,3863,1.0,1228920119 +500,3897,3.5,1228920601 +500,3948,2.5,1228921200 +500,3949,2.0,1228946499 +500,3977,2.0,1228921016 +500,4014,4.5,1228922024 +500,4018,4.0,1228963438 +500,4022,3.0,1254039877 +500,4025,4.0,1228963424 +500,4178,3.5,1228921420 +500,4246,4.0,1228946093 +500,4299,4.0,1229099173 +500,4306,2.5,1228946807 +500,4308,2.5,1228946232 +500,4369,3.5,1229098555 +500,4370,2.0,1228963049 +500,4447,3.0,1228963203 +500,4571,3.0,1228920127 +500,4641,3.5,1229098408 +500,4701,3.0,1229099007 +500,4703,4.0,1228921470 +500,4720,2.5,1228946489 +500,4748,1.5,1228920461 +500,4749,1.5,1228920465 +500,4750,1.5,1228920467 +500,4816,4.0,1228963626 +500,4878,2.5,1228921249 +500,4880,3.5,1228921860 +500,4886,3.0,1228920874 +500,4896,2.5,1228921168 +500,4963,3.5,1228920772 +500,4973,4.5,1254039855 +500,4993,1.5,1228946786 +500,4995,3.5,1228920880 +500,5218,2.0,1228946142 +500,5299,3.5,1228946159 +500,5377,3.5,1228946329 +500,5481,3.0,1228963316 +500,5679,0.5,1228946391 +500,5810,3.5,1228920494 +500,5816,3.0,1228946240 +500,5952,1.0,1228920759 +500,5989,4.0,1228920894 +500,5991,3.5,1228946461 +500,5995,4.0,1228946319 +500,6218,3.5,1228962990 +500,6377,3.0,1228946061 +500,6539,4.0,1228921238 +500,6565,1.5,1228963590 +500,6863,3.5,1228946303 +500,6942,4.5,1228921476 +500,7147,4.0,1228946248 +500,7173,2.5,1228920607 +500,7254,2.5,1228962997 +500,7293,4.0,1229099147 +500,7361,3.5,1254039850 +500,7380,4.0,1228921095 +500,7444,4.0,1228920446 +500,7669,5.0,1254040049 +500,8131,3.5,1228921461 +500,8360,3.5,1228920776 +500,8366,4.0,1228920669 +500,8368,3.0,1228946431 +500,8376,3.0,1228963087 +500,8528,3.5,1228963609 +500,8529,3.0,1228963565 +500,8533,3.5,1228946858 +500,8784,3.5,1228926965 +500,8949,1.0,1228946193 +500,8957,1.0,1229098353 +500,8961,3.0,1228921131 +500,30749,1.5,1228946358 +500,30793,3.0,1228946185 +500,30810,1.0,1228963561 +500,31433,4.5,1228977517 +500,33639,4.0,1228926953 +500,33660,3.0,1228964104 +500,33679,3.0,1228946458 +500,34162,3.0,1228946441 +500,35836,2.0,1228946064 +500,37729,3.5,1229098613 +500,38061,5.0,1228920637 +500,40815,3.5,1228946104 +500,41566,3.0,1228946221 +500,45447,2.5,1228946493 +500,45517,3.5,1228963630 +500,45722,3.5,1228920857 +500,46578,4.0,1228920852 +500,46976,3.0,1228946385 +500,47518,4.5,1228920510 +500,48385,1.0,1228920953 +500,48394,3.5,1228920935 +500,49286,4.0,1233450559 +500,51662,2.0,1228920811 +500,52287,4.5,1229628747 +500,52435,4.5,1229098891 +500,53123,2.0,1229628713 +500,53125,4.0,1228946449 +500,53322,4.0,1228963282 +500,54001,3.0,1228946284 +500,54259,4.5,1228921076 +500,54272,4.0,1228921041 +500,54281,4.0,1228946033 +500,54503,2.5,1228946108 +500,55267,3.0,1228946868 +500,55999,4.0,1228963798 +500,56152,4.0,1228921093 +500,56367,4.5,1228926941 +500,58047,3.5,1228946018 +500,58347,4.5,1228920687 +500,58998,3.0,1228963523 +500,59501,3.0,1229628755 +500,59784,3.5,1229098379 +500,60069,2.0,1254039799 +500,62155,4.5,1228938927 +500,62718,4.5,1228977508 +500,63239,1.5,1228946298 +500,63393,2.5,1228920768 +500,64034,4.5,1229528514 +500,65230,3.0,1233450795 +500,65585,3.5,1233450664 +500,66509,2.5,1254039935 +500,69406,4.0,1254040072 +500,69606,4.0,1254039829 +500,69757,4.0,1254039914 +500,69844,3.5,1254039927 +500,69945,2.5,1254039818 +500,70183,4.0,1254039954 +500,70293,4.0,1254039917 +501,1,5.0,1283137657 +501,36,4.5,1283137825 +501,47,5.0,1283137699 +501,50,3.5,1289258039 +501,111,0.5,1283137802 +501,296,5.0,1283137478 +501,318,5.0,1284994196 +501,356,4.5,1283137639 +501,364,3.5,1283199805 +501,367,3.0,1309479705 +501,593,4.5,1283137642 +501,596,3.0,1309492781 +501,608,3.0,1283137690 +501,745,4.0,1283138249 +501,778,5.0,1283305909 +501,858,5.0,1283137709 +501,1089,5.0,1283137811 +501,1097,4.0,1283137734 +501,1136,3.5,1309492528 +501,1148,4.0,1283138070 +501,1203,5.0,1309479844 +501,1206,4.0,1283137831 +501,1213,4.5,1284182265 +501,1221,4.0,1309492462 +501,1222,3.0,1290890226 +501,1265,4.0,1309149552 +501,1580,4.0,1283137731 +501,1682,4.5,1283137847 +501,1704,5.0,1307129555 +501,1729,4.0,1284182322 +501,1732,4.0,1309492484 +501,1791,2.0,1309492910 +501,2028,4.5,1284182237 +501,2329,5.0,1283137892 +501,2355,4.0,1284182342 +501,2483,0.5,1283130588 +501,2542,5.0,1283138182 +501,2571,4.0,1309492730 +501,2692,5.0,1283138011 +501,2701,2.0,1309493055 +501,2761,3.5,1309492548 +501,2762,4.0,1291663189 +501,2959,5.0,1283136740 +501,2997,3.5,1299472330 +501,3105,4.5,1294191019 +501,3114,5.0,1283137839 +501,3160,4.5,1294191006 +501,3409,3.0,1283135584 +501,3481,4.5,1283138032 +501,3578,4.5,1283137751 +501,3623,3.5,1283137979 +501,3751,4.0,1283137982 +501,3949,5.0,1283138547 +501,4011,5.0,1283138081 +501,4022,4.0,1283137961 +501,4226,4.5,1283137792 +501,4235,5.0,1295411146 +501,4306,4.5,1309492516 +501,4878,3.5,1309492603 +501,4886,4.0,1283137863 +501,4896,4.0,1283138063 +501,4963,4.5,1299472130 +501,4973,4.0,1285806853 +501,4993,4.5,1284182249 +501,4995,3.5,1291563434 +501,5266,4.5,1283139148 +501,5319,5.0,1302652183 +501,5459,3.5,1309493047 +501,5608,5.0,1283227068 +501,5630,4.5,1307129471 +501,5669,4.0,1287248554 +501,5816,3.5,1309492575 +501,5952,4.0,1284182310 +501,5954,4.0,1284994262 +501,5989,5.0,1283138072 +501,6016,5.0,1283138480 +501,6323,4.0,1291437655 +501,6377,4.0,1283137895 +501,6863,5.0,1283139135 +501,6874,3.0,1283138810 +501,7153,4.5,1283137789 +501,7254,4.5,1299472160 +501,7323,4.0,1284182332 +501,7361,5.0,1309149350 +501,7934,4.0,1283138936 +501,8360,4.0,1283138214 +501,8644,4.0,1309493029 +501,8950,3.0,1284331608 +501,8957,5.0,1283139100 +501,8961,4.5,1299472303 +501,25788,4.5,1284182235 +501,25911,3.0,1309492684 +501,27706,4.0,1296689182 +501,27815,4.5,1283139323 +501,30812,4.0,1283139246 +501,31685,4.0,1309493029 +501,31952,2.5,1309492824 +501,32031,2.5,1309493175 +501,33679,3.5,1309493092 +501,34319,3.5,1309493166 +501,36519,3.5,1292956082 +501,37731,5.0,1284994225 +501,39446,4.0,1309492710 +501,40148,5.0,1283135934 +501,41285,4.5,1298787060 +501,42197,2.5,1309492804 +501,43267,5.0,1309234837 +501,44195,5.0,1294548056 +501,44199,4.0,1284182325 +501,44974,5.0,1295465203 +501,46559,4.0,1298260509 +501,46578,4.5,1283139188 +501,46976,4.5,1283139275 +501,47099,4.5,1299472145 +501,47721,2.5,1283139638 +501,48516,5.0,1283138508 +501,48780,3.0,1290111458 +501,48877,3.0,1309492708 +501,50872,4.0,1284182306 +501,51662,4.0,1309492501 +501,52458,4.0,1283130282 +501,53123,5.0,1299472178 +501,55247,4.0,1290046009 +501,55577,3.0,1309492705 +501,55721,3.5,1299472313 +501,55768,3.5,1283130381 +501,55820,4.0,1309492721 +501,56174,4.0,1309493003 +501,56367,4.5,1299472291 +501,56587,4.0,1299472206 +501,57368,4.5,1284182274 +501,57669,4.5,1284182255 +501,58103,4.0,1283130326 +501,58191,4.0,1295652134 +501,58303,4.0,1292082014 +501,58559,3.5,1309492618 +501,59143,3.0,1309492695 +501,60069,4.0,1283138594 +501,60072,5.0,1283139023 +501,60074,2.5,1309493042 +501,60649,1.0,1299472478 +501,62644,3.5,1298811090 +501,62849,5.0,1283139031 +501,63062,3.5,1309493083 +501,63082,4.0,1287185158 +501,63436,3.0,1309492703 +501,64034,4.5,1283138309 +501,64614,4.5,1283138801 +501,64716,3.5,1309493021 +501,68157,5.0,1283138517 +501,68205,3.0,1299472364 +501,68954,4.5,1283138570 +501,69122,3.0,1283138313 +501,69844,3.5,1309492571 +501,70286,4.5,1283138866 +501,70567,3.0,1299903821 +501,71033,5.0,1283138582 +501,71131,3.5,1283298297 +501,71379,3.5,1289257987 +501,71899,4.5,1299472284 +501,72129,3.0,1309492702 +501,72226,5.0,1297093245 +501,72393,4.5,1290890244 +501,72395,5.0,1298259640 +501,72407,1.5,1309492928 +501,72998,4.5,1309479709 +501,74275,3.5,1283130971 +501,74458,5.0,1283138917 +501,74545,4.0,1298260507 +501,74624,3.5,1309492673 +501,76030,3.5,1291563417 +501,76093,4.0,1296077522 +501,77455,5.0,1287083484 +501,77798,2.5,1309492788 +501,78088,3.5,1309492643 +501,78349,2.0,1286580757 +501,78499,5.0,1283130395 +501,78729,2.0,1283136281 +501,78772,1.5,1309492916 +501,79132,5.0,1284516688 +501,79293,3.5,1309492520 +501,80026,4.5,1284221000 +501,80350,0.5,1292474358 +501,80463,4.0,1292530313 +501,80489,4.0,1292081989 +501,80549,3.5,1298811215 +501,80693,4.5,1296101105 +501,81156,3.0,1299472359 +501,81158,3.0,1298260232 +501,81535,2.5,1298260532 +501,81562,4.0,1296438351 +501,81564,4.0,1309492443 +501,81591,3.0,1309492869 +501,81834,3.0,1307129483 +501,81845,4.5,1299942026 +501,81847,2.5,1299472394 +501,81932,5.0,1299455930 +501,82037,3.0,1309492698 +501,82852,3.0,1298811206 +501,84954,5.0,1308793598 +501,85367,4.0,1309479544 +501,85414,4.0,1316314606 +501,85736,4.0,1303060921 +502,1,4.0,861302126 +502,6,3.0,861302161 +502,18,3.0,861302538 +502,25,5.0,861302126 +502,32,5.0,861302126 +502,36,5.0,861302161 +502,50,5.0,861322516 +502,52,4.0,861302194 +502,62,3.0,861302126 +502,68,3.0,861302518 +502,78,4.0,862510043 +502,104,4.0,861302194 +502,112,4.0,861302194 +502,125,4.0,861322517 +502,150,3.0,861322705 +502,194,4.0,861304067 +502,198,4.0,861322649 +502,223,5.0,861304067 +502,231,3.0,861304066 +502,235,4.0,861322482 +502,246,4.0,861304067 +502,260,4.0,861302161 +502,296,5.0,861322541 +502,318,5.0,861304067 +502,337,4.0,861322595 +502,376,3.0,861302194 +502,428,3.0,861322621 +502,471,4.0,861322541 +502,541,5.0,861322517 +502,555,4.0,861322621 +502,589,5.0,861322705 +502,605,3.0,869188561 +502,608,5.0,861302161 +502,648,3.0,861302126 +502,671,5.0,861302276 +502,697,4.0,868218086 +502,708,4.0,861302194 +502,714,5.0,868636987 +502,720,3.0,861304068 +502,733,3.0,861302161 +502,736,3.0,861302126 +502,745,5.0,861302338 +502,750,4.0,861322481 +502,765,1.0,861303351 +502,778,5.0,861302227 +502,780,3.0,861302881 +502,784,4.0,861302194 +502,785,5.0,861302338 +502,786,3.0,861302161 +502,804,3.0,868217898 +502,858,4.0,861302276 +502,869,3.0,861303115 +502,999,3.0,862510165 +502,1049,3.0,861302568 +502,1051,4.0,861302603 +502,1059,4.0,861302362 +502,1060,5.0,868217367 +502,1073,3.0,861302161 +502,1080,4.0,861322482 +502,1089,5.0,861322481 +502,1120,4.0,868217382 +502,1136,4.0,861322481 +502,1173,5.0,868637282 +502,1193,4.0,861322516 +502,1196,4.0,861322595 +502,1197,4.0,861322541 +502,1198,4.0,861322574 +502,1199,5.0,861322482 +502,1206,4.0,861322482 +502,1208,4.0,861322574 +502,1210,4.0,861302227 +502,1213,4.0,861322516 +502,1214,4.0,861322705 +502,1220,4.0,861322621 +502,1221,3.0,861322574 +502,1222,4.0,861322621 +502,1225,5.0,861322649 +502,1233,3.0,861303696 +502,1234,4.0,861322677 +502,1240,4.0,861322574 +502,1245,5.0,861322723 +502,1247,5.0,861322677 +502,1249,4.0,861322705 +502,1266,3.0,861322705 +502,1285,4.0,861322677 +502,1288,5.0,861322574 +502,1292,4.0,861322649 +502,1391,5.0,861302403 +502,1393,3.0,861302276 +502,1394,5.0,861322516 +502,1399,3.0,861303115 +502,1405,3.0,861302362 +502,1411,5.0,861302384 +502,1429,3.0,861302538 +502,1437,4.0,861303260 +502,1454,3.0,861303278 +502,1457,2.0,861303325 +502,1464,5.0,861303095 +502,1466,4.0,861302568 +502,1476,4.0,861302518 +502,1497,2.0,861303393 +502,1500,4.0,861302663 +502,1517,5.0,868217844 +502,1527,5.0,868217844 +502,1541,5.0,868217990 +502,1544,3.0,868217990 +502,1552,3.0,868217926 +502,1562,3.0,868218256 +502,1569,4.0,868637076 +502,1573,5.0,868217305 +502,1580,4.0,868217305 +502,1584,5.0,869188470 +502,1639,5.0,895850340 +503,1,4.0,1432365762 +503,50,4.0,1432366655 +503,208,3.5,1432365889 +503,260,4.0,1432365785 +503,356,4.0,1432365753 +503,357,4.0,1432365900 +503,480,4.0,1432365756 +503,527,4.0,1432366653 +503,593,4.0,1432365747 +503,858,4.0,1432366657 +503,912,4.0,1432366042 +503,953,3.5,1432365834 +503,1089,4.0,1432365902 +503,1196,4.0,1432365858 +503,1198,4.0,1432365855 +503,1210,4.0,1432365862 +503,1270,3.0,1432365769 +503,1291,4.0,1432365860 +503,2571,4.0,1432365760 +503,2858,4.0,1432366025 +503,3408,3.5,1432366685 +503,4973,4.0,1432366938 +503,4993,3.0,1432365875 +503,5378,3.0,1432366691 +503,5952,3.0,1432365879 +503,7153,3.0,1432365874 +503,49272,3.5,1432366966 +503,50872,4.0,1432365836 +503,54259,5.0,1432367070 +503,58559,4.0,1432365866 +503,59315,4.0,1432366968 +503,59784,4.0,1432367074 +503,60069,4.0,1432366964 +503,63082,3.5,1432366032 +503,72998,3.5,1432367086 +503,76093,4.5,1432366943 +503,78499,4.0,1432366668 +503,79091,5.0,1432367046 +503,81845,4.0,1432366039 +503,81847,1.0,1432367056 +503,89745,4.0,1432367080 +503,97913,4.0,1432367060 +503,112552,4.0,1432365830 +503,112852,4.0,1432367066 +504,1875,3.0,904376978 +504,1878,3.0,904377138 +504,1882,3.0,904377138 +504,1883,1.0,904376847 +504,1885,3.0,904376847 +504,1887,3.0,904377138 +504,1892,4.0,904376977 +504,1907,1.0,904376787 +504,1909,2.0,904376903 +504,1917,3.0,904376847 +504,1918,4.0,904376903 +504,1923,4.0,904376715 +504,2006,1.0,904376715 +504,2025,1.0,904376903 +504,2028,3.0,904376715 +504,2058,5.0,904376847 +504,2125,1.0,904376903 +504,2126,4.0,904376715 +504,2153,3.0,904376977 +504,2155,4.0,904377179 +504,2167,3.0,904376787 +504,2169,4.0,904376903 +504,2188,4.0,904376787 +504,2190,2.0,904376715 +505,3,3.0,1340413945 +505,7,3.0,1340413951 +505,52,3.0,1340414299 +505,110,2.5,1340410027 +505,111,3.0,1340405130 +505,141,3.0,1340413719 +505,215,3.5,1340415154 +505,224,3.0,1340414394 +505,260,4.0,1340405126 +505,261,3.0,1340414196 +505,266,3.0,1340413855 +505,296,3.0,1340405199 +505,318,3.5,1340404806 +505,337,3.0,1340412040 +505,339,3.0,1340413726 +505,348,3.5,1340411787 +505,356,4.0,1340405319 +505,364,2.5,1340406485 +505,380,3.0,1340413633 +505,457,3.0,1340410047 +505,480,3.0,1340406473 +505,492,3.0,1340415099 +505,509,3.0,1340413825 +505,527,4.0,1340404797 +505,539,3.5,1340406432 +505,587,3.0,1340413694 +505,589,3.0,1340409082 +505,590,3.0,1340406756 +505,593,3.0,1340408727 +505,594,3.5,1340413814 +505,596,3.0,1340411945 +505,597,3.5,1340407937 +505,608,3.0,1340409105 +505,707,3.0,1340415854 +505,750,3.5,1340405270 +505,898,3.5,1340404896 +505,899,3.5,1340405123 +505,900,3.5,1340405826 +505,903,3.5,1340405066 +505,904,4.5,1340405225 +505,905,4.0,1340405502 +505,908,4.5,1340405147 +505,909,3.0,1340405558 +505,910,3.5,1340405213 +505,911,4.0,1340405142 +505,912,4.5,1340405209 +505,913,3.0,1340404924 +505,914,3.0,1340409023 +505,918,3.0,1340409271 +505,919,3.5,1340405687 +505,920,3.0,1340405684 +505,921,3.0,1340412442 +505,922,4.0,1340404030 +505,923,3.5,1340405249 +505,924,3.0,1340405021 +505,926,3.5,1340404907 +505,928,3.0,1340404816 +505,930,3.5,1340405741 +505,932,3.0,1340411370 +505,933,3.0,1340409032 +505,942,3.5,1340405752 +505,945,4.0,1340404944 +505,947,3.0,1340409159 +505,949,3.5,1340405089 +505,953,4.0,1340405722 +505,954,4.0,1340405189 +505,955,3.0,1340405138 +505,965,3.0,1340404823 +505,969,3.0,1340408644 +505,994,3.5,1340406436 +505,1028,3.5,1340405988 +505,1032,3.0,1340411734 +505,1035,3.5,1340406022 +505,1036,3.5,1340408872 +505,1084,3.5,1340405996 +505,1088,4.0,1340407488 +505,1090,3.0,1340408908 +505,1092,3.0,1340414156 +505,1093,3.0,1340414555 +505,1096,3.0,1340408921 +505,1097,3.5,1340406303 +505,1101,3.0,1340413769 +505,1104,3.0,1340410114 +505,1124,3.5,1340415859 +505,1136,4.5,1340407304 +505,1172,4.0,1340404878 +505,1177,5.0,1340407226 +505,1183,4.0,1340407715 +505,1193,3.5,1340406962 +505,1196,4.0,1340405157 +505,1198,4.0,1340406298 +505,1203,3.0,1340408530 +505,1204,4.0,1340405304 +505,1207,3.0,1340405966 +505,1210,3.5,1340406273 +505,1212,2.5,1340409411 +505,1220,3.0,1340406323 +505,1225,4.0,1340404809 +505,1228,2.0,1340410867 +505,1230,3.5,1340405076 +505,1234,4.0,1340406066 +505,1240,3.0,1340408742 +505,1244,4.0,1340405094 +505,1245,3.0,1340409140 +505,1246,3.5,1340406284 +505,1247,3.5,1340405253 +505,1250,3.0,1340408498 +505,1252,4.0,1340405237 +505,1253,3.5,1340406825 +505,1254,3.0,1340408942 +505,1256,4.0,1340405114 +505,1258,3.5,1340409393 +505,1259,3.5,1340406314 +505,1260,3.0,1340407005 +505,1262,3.5,1340405944 +505,1265,3.0,1340408479 +505,1267,3.0,1340405178 +505,1269,2.0,1342311706 +505,1270,3.5,1340406280 +505,1272,3.0,1340408591 +505,1278,3.5,1340405204 +505,1281,4.0,1340405042 +505,1282,3.0,1340409804 +505,1284,4.5,1340404049 +505,1287,3.5,1340405818 +505,1288,2.5,1340408934 +505,1291,3.5,1340406327 +505,1292,3.5,1340406138 +505,1293,3.5,1340406743 +505,1296,4.5,1340404006 +505,1299,3.5,1340408999 +505,1304,3.5,1340405950 +505,1307,4.0,1340406290 +505,1333,3.0,1340410945 +505,1374,3.5,1340408447 +505,1380,3.5,1340407829 +505,1387,4.0,1340406124 +505,1580,3.0,1340413660 +505,1584,3.0,1340413775 +505,1597,3.0,1340414150 +505,1608,3.0,1340413963 +505,1617,3.5,1340404916 +505,1619,2.5,1340415805 +505,1663,3.5,1340408169 +505,1674,3.0,1340408570 +505,1704,2.5,1340409680 +505,1711,3.0,1340415785 +505,1721,3.0,1340413664 +505,1732,2.0,1340411589 +505,1784,3.5,1340406492 +505,1894,3.0,1340415638 +505,1934,4.0,1340407464 +505,1935,3.0,1340409558 +505,1939,3.0,1340409916 +505,1944,3.5,1340405217 +505,1945,3.5,1340405297 +505,1947,3.0,1340405962 +505,1950,3.5,1340405549 +505,1954,3.0,1340408666 +505,1955,3.0,1340411900 +505,1958,3.0,1340415660 +505,1959,4.0,1340407662 +505,1961,3.0,1340409281 +505,1968,3.5,1340406244 +505,1982,3.0,1340414890 +505,1994,3.0,1340414365 +505,2012,3.0,1340413783 +505,2020,3.0,1340406239 +505,2028,3.5,1340405259 +505,2065,3.5,1340407016 +505,2081,3.0,1340413968 +505,2100,3.0,1340414084 +505,2108,3.0,1340414708 +505,2109,3.0,1340408551 +505,2115,2.5,1340406229 +505,2144,3.5,1340411989 +505,2145,3.5,1340414628 +505,2146,3.5,1340415081 +505,2160,3.0,1340405992 +505,2183,3.5,1340406836 +505,2194,3.5,1340406874 +505,2208,3.0,1340409704 +505,2243,3.5,1340406396 +505,2245,3.0,1340415872 +505,2248,3.5,1340406248 +505,2268,3.0,1340409233 +505,2288,3.0,1340408267 +505,2300,2.0,1340409172 +505,2312,3.0,1340416084 +505,2329,3.5,1340412628 +505,2352,3.5,1340404018 +505,2353,4.0,1340407612 +505,2355,3.0,1340413773 +505,2396,3.0,1340408366 +505,2398,3.0,1340409460 +505,2403,3.0,1340415809 +505,2407,2.5,1340414187 +505,2410,3.0,1340415689 +505,2424,3.0,1340414178 +505,2431,3.0,1340414865 +505,2529,2.5,1340410856 +505,2565,3.0,1340412128 +505,2571,3.0,1340409838 +505,2640,3.0,1340413890 +505,2641,3.0,1340414434 +505,2657,3.5,1340413999 +505,2662,2.5,1340415771 +505,2671,3.0,1340414079 +505,2701,1.0,1340414168 +505,2712,4.0,1340407512 +505,2729,3.0,1340411258 +505,2739,3.0,1340413379 +505,2745,3.0,1340412278 +505,2750,3.5,1340406346 +505,2762,3.0,1340408731 +505,2791,3.5,1340408604 +505,2819,5.0,1340404940 +505,2847,3.0,1340406722 +505,2863,3.0,1340408813 +505,2915,3.0,1340414400 +505,2916,3.0,1340413786 +505,2917,3.0,1340406817 +505,2918,2.5,1340409807 +505,2936,3.5,1340405764 +505,2941,4.0,1340404191 +505,2942,3.0,1340415068 +505,2947,3.5,1340405936 +505,2948,3.5,1340405931 +505,2973,3.5,1340405334 +505,2987,3.0,1340413763 +505,2991,3.5,1340406105 +505,2993,2.5,1340409870 +505,3022,3.5,1340406978 +505,3035,4.0,1340404164 +505,3061,3.5,1340405778 +505,3089,3.0,1340405080 +505,3093,2.5,1340404281 +505,3095,3.5,1340405732 +505,3097,3.0,1340409184 +505,3100,3.0,1340415538 +505,3101,3.0,1340414088 +505,3105,3.0,1340413159 +505,3152,3.5,1340406152 +505,3160,3.0,1340413462 +505,3168,3.0,1340415200 +505,3176,4.0,1340407644 +505,3200,3.5,1340406194 +505,3201,3.0,1340406174 +505,3210,3.5,1340407903 +505,3246,3.0,1340408264 +505,3247,3.0,1340414700 +505,3252,3.0,1340411979 +505,3307,4.0,1340405086 +505,3334,3.5,1340404918 +505,3359,3.5,1340406113 +505,3360,3.0,1340409350 +505,3361,3.0,1340411784 +505,3363,3.5,1340403982 +505,3364,3.0,1340405027 +505,3386,4.5,1340407159 +505,3408,3.0,1340413894 +505,3418,3.0,1340414108 +505,3424,3.0,1340410979 +505,3435,3.0,1340409428 +505,3448,3.0,1340411867 +505,3451,4.0,1340406034 +505,3462,3.5,1340405506 +505,3471,3.5,1340406076 +505,3475,3.5,1340410717 +505,3481,3.0,1340406585 +505,3504,3.5,1340406145 +505,3505,4.0,1340404153 +505,3510,3.0,1340414536 +505,3529,3.5,1340404350 +505,3545,3.5,1340406129 +505,3552,4.0,1340407501 +505,3559,3.0,1340415089 +505,3578,3.0,1340409109 +505,3629,3.0,1340409551 +505,3635,3.5,1340406117 +505,3639,2.5,1340409708 +505,3654,3.5,1340412247 +505,3671,3.5,1340406082 +505,3675,4.0,1340405892 +505,3724,3.0,1342311981 +505,3730,3.5,1340406148 +505,3741,3.0,1340406160 +505,3791,4.0,1340407726 +505,3809,0.5,1340415528 +505,3897,3.0,1340406578 +505,3984,4.0,1340404077 +505,4007,3.0,1340406701 +505,4014,4.0,1340407534 +505,4018,3.0,1340414500 +505,4027,3.0,1340406571 +505,4085,3.0,1340409043 +505,4190,3.0,1340410793 +505,4246,3.0,1340414123 +505,4310,3.0,1340414606 +505,4321,4.0,1340407673 +505,4326,4.0,1340406306 +505,4327,3.0,1340405941 +505,4361,3.5,1340409492 +505,4370,0.5,1340414232 +505,4432,2.5,1340412182 +505,4447,3.0,1340414530 +505,4557,3.5,1340404378 +505,4798,3.0,1340412402 +505,4857,3.0,1340406178 +505,4979,3.0,1340414133 +505,4995,3.5,1340406603 +505,5060,3.0,1340408893 +505,5299,3.5,1340414304 +505,5385,3.0,1340408822 +505,5445,2.5,1340413737 +505,5502,3.0,1340414301 +505,5876,3.0,1340412905 +505,5945,3.0,1340415708 +505,5991,3.0,1340414519 +505,5995,3.5,1340405286 +505,6228,3.0,1340410898 +505,6373,3.0,1340414517 +505,6377,4.0,1340406641 +505,6413,5.0,1340407209 +505,6440,3.0,1340413360 +505,6711,3.5,1340413978 +505,6777,3.5,1340409696 +505,6787,4.5,1340404950 +505,6864,3.0,1340415272 +505,6867,3.0,1340406592 +505,6942,3.0,1340407776 +505,6979,3.0,1340415998 +505,6993,4.5,1340407286 +505,7013,2.0,1340410082 +505,7050,3.5,1340415084 +505,7055,3.5,1340409287 +505,7132,3.5,1340404983 +505,7149,4.0,1340407687 +505,7215,3.5,1340404802 +505,7216,2.5,1340406803 +505,7361,3.0,1340405232 +505,7569,3.5,1340409632 +505,7573,3.0,1340408469 +505,7836,3.0,1340410147 +505,7934,3.5,1340406349 +505,7983,3.5,1340406339 +505,8228,3.0,1340404829 +505,8361,3.0,1340415669 +505,8533,3.0,1340411671 +505,8535,4.5,1340407318 +505,8542,3.0,1340409940 +505,8638,3.5,1340406553 +505,8910,3.0,1340411633 +505,8916,3.5,1340404422 +505,8958,3.5,1340411960 +505,8961,3.5,1340408152 +505,8966,4.0,1340404224 +505,8970,4.0,1340407577 +505,8972,3.0,1340416030 +505,25771,2.0,1340410935 +505,25827,3.5,1340407857 +505,25850,4.0,1340407421 +505,25891,3.0,1340415078 +505,30793,3.0,1340414747 +505,30812,4.5,1340407370 +505,33493,3.0,1340414203 +505,36517,3.5,1340404130 +505,37741,4.0,1340406539 +505,38038,3.5,1340407886 +505,39292,3.5,1340406545 +505,40819,3.0,1340409418 +505,41285,3.5,1340406556 +505,43396,3.5,1340411113 +505,45447,3.5,1340415952 +505,45517,3.5,1340415095 +505,46578,3.0,1340414314 +505,47610,3.5,1340412118 +505,48394,1.0,1340405605 +505,48780,1.0,1340414402 +505,49272,3.0,1340414245 +505,49286,3.5,1340407434 +505,49772,3.0,1340412451 +505,50160,4.0,1340407452 +505,50872,3.0,1340414805 +505,52967,3.0,1340412634 +505,53123,3.5,1340406597 +505,54259,3.0,1340411087 +505,55052,3.5,1340413352 +505,55269,4.0,1340407547 +505,55451,4.5,1340407261 +505,55814,3.5,1340406616 +505,56367,3.0,1340414475 +505,60069,2.0,1340405623 +505,64622,3.0,1340412292 +505,86882,5.0,1340407242 +506,1,4.0,865395296 +506,2,3.0,865395979 +506,19,3.0,865395921 +506,32,3.0,865395295 +506,141,3.0,865395298 +506,296,3.0,865395921 +506,344,4.0,865395979 +506,364,3.0,865395921 +506,376,3.0,865395400 +506,480,3.0,865395979 +506,648,3.0,865395297 +506,661,4.0,865395465 +506,673,2.0,865395503 +506,724,3.0,865395502 +506,780,3.0,865395294 +506,784,3.0,865395401 +506,788,3.0,865395401 +506,858,4.0,865395502 +506,1059,4.0,865395921 +506,1073,3.0,865395344 +506,1391,5.0,865395678 +507,1,3.0,862090954 +507,3,2.0,862091271 +507,9,1.0,862091545 +507,18,4.0,862091839 +507,32,4.0,862090953 +507,36,5.0,862091271 +507,62,4.0,862090955 +507,95,3.0,862090955 +507,100,2.0,862091570 +507,112,4.0,862091445 +507,141,3.0,862090954 +507,260,5.0,862091271 +507,376,2.0,862091445 +507,494,2.0,862091272 +507,608,3.0,862091271 +507,648,4.0,862090954 +507,653,3.0,862091445 +507,671,5.0,862091777 +507,673,5.0,862091777 +507,694,3.0,862092115 +507,728,1.0,862092115 +507,733,3.0,862091271 +507,736,5.0,862090954 +507,745,5.0,862091893 +507,748,4.0,862091812 +507,778,3.0,862091545 +507,780,4.0,862090953 +507,783,4.0,862091545 +507,786,2.0,862091271 +507,802,3.0,862091498 +507,832,4.0,862091545 +507,849,2.0,862091839 +507,880,3.0,862091893 +507,1061,2.0,862091839 +507,1073,3.0,862091271 +507,1210,5.0,862091545 +507,1356,3.0,862091498 +507,1391,2.0,862091839 +508,11,3.0,844376294 +508,21,5.0,844376165 +508,32,3.0,844376206 +508,34,5.0,844376142 +508,41,5.0,844377195 +508,47,5.0,844376097 +508,50,5.0,844376206 +508,141,4.0,844376344 +508,150,5.0,844375898 +508,161,4.0,844376036 +508,185,3.0,844376036 +508,230,4.0,844376544 +508,252,3.0,844376344 +508,261,3.0,844376394 +508,288,4.0,844376071 +508,296,5.0,844375898 +508,300,5.0,844376097 +508,316,4.0,844375956 +508,318,5.0,844376016 +508,339,4.0,844376071 +508,342,3.0,844376544 +508,350,3.0,844376276 +508,355,1.0,844376488 +508,356,5.0,844376016 +508,377,4.0,844376097 +508,380,4.0,844375898 +508,440,4.0,844376226 +508,455,3.0,844376628 +508,457,5.0,844375956 +508,471,4.0,844377075 +508,480,3.0,844376036 +508,500,4.0,844376142 +508,508,5.0,844376344 +508,527,5.0,844376226 +508,539,4.0,844376206 +508,586,3.0,844376142 +508,587,3.0,844376165 +508,590,3.0,844375898 +508,592,3.0,844375898 +508,593,5.0,844375956 +508,594,3.0,844376523 +508,595,3.0,844375956 +508,597,2.0,844376165 +508,736,3.0,844376455 +508,780,4.0,844376523 +508,802,4.0,844376876 +508,1028,4.0,844377166 +508,1079,5.0,844376857 +509,1,3.0,939329344 +509,3,2.0,946276711 +509,6,3.0,939471667 +509,11,3.0,1095897396 +509,14,3.0,939342219 +509,16,4.0,939342432 +509,17,4.0,939328099 +509,21,4.0,939329651 +509,25,4.0,939340016 +509,28,4.0,940012794 +509,30,3.0,939341117 +509,32,4.0,939341117 +509,34,3.0,939329179 +509,36,4.5,1093299814 +509,41,4.5,1093278310 +509,42,2.0,940016257 +509,45,3.5,1093278335 +509,47,4.0,940016006 +509,50,5.0,940016006 +509,52,4.0,939329345 +509,58,3.0,939341261 +509,62,3.0,939328501 +509,64,2.0,946277009 +509,68,4.0,940013280 +509,69,3.5,1093295992 +509,70,1.0,939471667 +509,72,3.0,939329345 +509,81,3.0,940013280 +509,94,4.5,1093278348 +509,101,4.5,1095897708 +509,104,2.0,978938551 +509,110,5.0,939339943 +509,111,5.0,1093278375 +509,118,3.0,946277116 +509,125,4.0,942930627 +509,140,2.0,940013391 +509,144,4.0,939329728 +509,147,3.0,939343145 +509,150,3.0,939342347 +509,151,4.0,939340720 +509,154,4.0,978936993 +509,159,3.0,939341677 +509,162,4.5,1095897742 +509,166,1.0,946276711 +509,175,3.0,939340558 +509,176,3.0,946276073 +509,180,2.0,985745354 +509,194,4.0,939340642 +509,213,4.0,939340096 +509,214,4.0,939339943 +509,215,4.5,1093278361 +509,223,4.0,939329345 +509,224,3.0,939342100 +509,231,3.0,946276890 +509,232,3.0,939329252 +509,233,4.5,1093278398 +509,235,5.0,939329651 +509,237,3.0,946276773 +509,246,3.5,1124552941 +509,249,4.0,939341365 +509,253,3.0,1093299786 +509,260,5.0,978937536 +509,265,3.0,939340346 +509,266,4.0,940016671 +509,272,4.5,1093278423 +509,273,3.0,942409470 +509,281,5.0,939342219 +509,288,2.5,1093295691 +509,290,4.0,939342219 +509,293,3.0,939341426 +509,296,5.0,939340096 +509,299,3.0,939328501 +509,300,4.0,939341023 +509,303,3.0,940016621 +509,305,2.0,946276692 +509,306,4.0,939340016 +509,307,4.0,939340252 +509,308,4.0,939341426 +509,318,4.0,939340252 +509,326,3.0,939340179 +509,333,2.0,946276752 +509,334,4.0,939342432 +509,337,4.5,1093278436 +509,344,2.0,946276827 +509,345,1.0,939343145 +509,348,4.5,1095897738 +509,349,3.0,978937614 +509,356,4.0,939329406 +509,357,3.0,939329570 +509,364,3.5,1072415891 +509,367,2.0,946276346 +509,372,3.0,946276692 +509,373,4.0,1093295975 +509,377,1.0,940013699 +509,380,2.0,946276596 +509,383,3.0,979262432 +509,388,4.0,939328099 +509,417,3.0,939329345 +509,428,4.0,939341118 +509,431,3.0,940016152 +509,434,2.0,940016257 +509,441,4.0,946276346 +509,446,5.0,939326039 +509,453,2.0,946276519 +509,454,3.0,1093299752 +509,457,4.0,939471744 +509,458,3.0,978762169 +509,471,4.0,939329728 +509,474,4.0,1093299910 +509,475,4.0,939341023 +509,477,3.0,939341863 +509,480,3.0,978937644 +509,492,4.0,939329795 +509,493,3.0,939342718 +509,496,3.0,940013481 +509,497,3.0,1093295668 +509,500,3.0,946276800 +509,501,4.0,939340253 +509,506,2.0,979261660 +509,507,4.0,939342616 +509,508,3.0,939341988 +509,509,3.0,939342100 +509,515,4.0,939340642 +509,518,2.0,946276848 +509,520,1.0,946277062 +509,527,5.0,939339943 +509,529,4.0,939326663 +509,534,4.0,939340253 +509,535,5.0,939340253 +509,539,3.0,1072415926 +509,541,4.0,1093299858 +509,551,3.0,1093295420 +509,553,4.0,940016533 +509,555,3.0,940013107 +509,562,3.0,939328501 +509,567,3.0,946268775 +509,574,2.0,939329795 +509,586,3.0,1093299846 +509,587,2.0,940013391 +509,588,3.5,1093299695 +509,589,2.0,940018357 +509,590,5.0,940016621 +509,592,2.0,940014496 +509,593,4.0,939340179 +509,594,3.5,1093295493 +509,595,3.0,1093295652 +509,597,2.0,946276565 +509,605,2.0,940013391 +509,608,4.5,1093278448 +509,627,3.0,939342718 +509,639,3.0,946276213 +509,674,2.0,978937699 +509,678,4.0,979261848 +509,714,2.0,940016621 +509,736,2.0,940013315 +509,745,4.0,1124553277 +509,750,4.0,940016758 +509,762,1.0,940016432 +509,778,4.0,939340179 +509,780,2.0,940016974 +509,785,2.0,946276611 +509,800,4.0,939340179 +509,802,2.0,940013699 +509,806,3.0,939342900 +509,830,2.0,946276928 +509,850,3.0,940016097 +509,851,3.0,939341273 +509,852,3.0,940013699 +509,858,5.0,939325726 +509,864,4.0,978761824 +509,866,3.0,939341426 +509,869,3.0,940016292 +509,889,4.0,948602270 +509,893,4.0,939342040 +509,899,3.0,940018759 +509,902,3.5,1093295938 +509,904,4.0,940017935 +509,908,4.0,1072416787 +509,909,4.0,1037843565 +509,910,3.0,978936191 +509,912,5.0,940016758 +509,919,4.0,978937021 +509,923,5.0,940018190 +509,924,4.0,942609067 +509,949,2.0,978936953 +509,969,2.0,940017090 +509,971,4.0,978937170 +509,987,3.0,940013699 +509,991,4.0,940017214 +509,994,5.0,939342040 +509,997,3.0,942408806 +509,999,3.0,940016152 +509,1007,2.0,940016671 +509,1020,2.0,946276800 +509,1030,3.0,978937742 +509,1033,4.5,1093295852 +509,1036,2.5,1093299897 +509,1041,3.0,939340720 +509,1049,3.0,978937802 +509,1050,3.0,939342347 +509,1051,3.0,939341677 +509,1057,4.0,940013156 +509,1059,3.0,939341863 +509,1060,4.0,939329093 +509,1061,4.0,978936271 +509,1073,3.0,940642852 +509,1077,4.0,940642852 +509,1078,3.0,946268891 +509,1079,4.0,940018077 +509,1080,4.5,1093278540 +509,1088,2.0,1093295913 +509,1089,5.0,940016006 +509,1090,4.0,939417819 +509,1091,4.0,942931508 +509,1094,4.0,939341365 +509,1095,4.0,1165630471 +509,1096,4.0,940015597 +509,1097,3.0,1093299769 +509,1103,4.0,939328176 +509,1104,4.5,1093299375 +509,1114,3.0,939342432 +509,1120,3.0,939340558 +509,1125,4.0,940642852 +509,1135,3.0,942931297 +509,1136,5.0,939326733 +509,1145,3.0,940012597 +509,1147,4.5,1093278564 +509,1148,3.0,985745325 +509,1171,3.0,939329570 +509,1172,4.0,939417618 +509,1173,3.0,940015074 +509,1175,3.0,939329179 +509,1179,3.0,940012432 +509,1183,4.0,939342616 +509,1185,4.0,940015336 +509,1186,3.0,940015597 +509,1188,1.0,940013644 +509,1191,3.0,940012684 +509,1193,4.0,940014165 +509,1196,5.0,939417618 +509,1197,4.0,940014445 +509,1198,5.0,940014445 +509,1199,4.0,939328176 +509,1200,4.0,940016906 +509,1203,4.0,1124552895 +509,1206,4.0,942409063 +509,1207,4.0,942609134 +509,1208,5.0,939325800 +509,1210,4.0,940012857 +509,1211,3.5,1093295398 +509,1212,4.0,1165630366 +509,1213,5.0,939340253 +509,1214,3.5,1093299870 +509,1217,5.0,1093278043 +509,1219,4.5,1093295919 +509,1220,4.0,942930925 +509,1221,5.0,939325726 +509,1222,4.0,940015160 +509,1224,3.0,943629741 +509,1225,5.0,939417819 +509,1226,4.0,978938285 +509,1227,4.0,940015336 +509,1228,5.0,939326537 +509,1230,5.0,940642532 +509,1231,4.0,940015505 +509,1233,4.0,939340016 +509,1234,5.0,940017723 +509,1240,3.0,1093299833 +509,1242,4.0,940015160 +509,1243,4.0,978938422 +509,1244,4.5,1093278062 +509,1245,5.0,939325873 +509,1246,4.0,940015074 +509,1247,4.5,1093278603 +509,1249,4.0,978762250 +509,1250,4.0,978936993 +509,1251,3.5,1124553070 +509,1252,4.0,979262305 +509,1257,3.0,942931090 +509,1259,4.0,940014445 +509,1263,5.0,940014165 +509,1265,2.0,939329345 +509,1266,3.0,940016533 +509,1267,4.0,948602390 +509,1270,3.0,1093299730 +509,1271,3.0,939342616 +509,1272,4.0,1093295870 +509,1273,3.0,946268691 +509,1275,5.0,940014497 +509,1276,4.0,942409858 +509,1278,4.0,942409063 +509,1281,4.0,940017723 +509,1285,2.0,942931043 +509,1288,4.0,939417618 +509,1291,4.0,940014445 +509,1295,4.0,940015692 +509,1296,4.0,940015597 +509,1298,5.0,939471542 +509,1299,4.0,940015238 +509,1300,4.0,940015336 +509,1302,4.0,940015160 +509,1304,4.5,1093278635 +509,1307,4.5,1093278074 +509,1339,2.0,940013514 +509,1354,5.0,939342219 +509,1357,3.0,939339943 +509,1358,4.5,1093278865 +509,1365,4.0,939341608 +509,1366,3.0,940018357 +509,1371,3.0,978937802 +509,1374,3.0,940014497 +509,1375,3.0,939326663 +509,1377,2.0,978937847 +509,1378,3.0,940016621 +509,1379,2.5,1093295895 +509,1380,3.0,940642852 +509,1388,2.5,1093295806 +509,1393,4.0,939342537 +509,1394,4.0,939328176 +509,1396,4.0,940016097 +509,1405,2.5,1093295385 +509,1408,3.0,940013644 +509,1409,3.0,946276308 +509,1413,4.0,939339943 +509,1414,3.0,939329345 +509,1419,3.0,940014312 +509,1441,3.0,940013644 +509,1446,4.0,939329179 +509,1449,4.0,940017935 +509,1466,4.0,939340558 +509,1479,2.0,943368907 +509,1482,3.0,946276455 +509,1488,3.0,940016974 +509,1499,2.0,978937959 +509,1500,4.0,939329795 +509,1501,3.0,940016432 +509,1503,3.0,946276898 +509,1516,3.0,946276519 +509,1517,3.0,948602186 +509,1527,3.0,939471667 +509,1562,2.0,978937938 +509,1569,1.0,939329651 +509,1580,2.0,946276308 +509,1581,1.0,946276848 +509,1584,4.0,940017825 +509,1587,2.0,940014751 +509,1589,4.0,939342432 +509,1594,3.0,939341988 +509,1610,4.0,939471744 +509,1617,4.0,940012432 +509,1619,4.0,939341365 +509,1620,3.0,940016257 +509,1627,3.0,939471744 +509,1631,3.0,979260578 +509,1635,4.0,939340558 +509,1639,4.0,939342718 +509,1641,4.0,939329093 +509,1643,4.0,939341608 +509,1644,2.0,979261470 +509,1645,3.0,940016152 +509,1648,3.0,939342219 +509,1649,4.0,940012724 +509,1653,3.0,939341426 +509,1658,3.0,939328501 +509,1660,3.0,939341767 +509,1663,3.0,942931167 +509,1667,3.0,939341365 +509,1670,4.0,940017090 +509,1672,3.0,939341261 +509,1673,4.0,939341365 +509,1674,3.0,940642171 +509,1678,3.0,939340876 +509,1680,4.0,940013481 +509,1682,3.0,939340179 +509,1693,3.0,939341365 +509,1694,4.0,939342347 +509,1699,3.0,939340096 +509,1701,5.0,939329345 +509,1704,5.0,939340179 +509,1711,4.0,939326860 +509,1719,4.0,978937145 +509,1721,2.0,939328099 +509,1729,4.5,1093278926 +509,1730,3.0,948090683 +509,1732,5.0,939329345 +509,1735,2.0,940013347 +509,1747,2.0,939329870 +509,1753,1.0,946276596 +509,1777,1.0,939329870 +509,1784,4.0,978938864 +509,1788,4.0,939340096 +509,1794,4.0,939329406 +509,1797,3.0,940012564 +509,1799,3.0,939340720 +509,1805,2.0,939342537 +509,1810,3.0,939340346 +509,1824,3.0,946276235 +509,1827,3.5,1093280312 +509,1834,4.0,939341767 +509,1836,3.0,979261531 +509,1840,2.0,939340642 +509,1845,4.0,939329507 +509,1863,2.0,946277045 +509,1865,4.0,940642268 +509,1883,3.0,939329728 +509,1884,3.0,939342718 +509,1885,4.0,946276176 +509,1897,4.0,940013107 +509,1904,4.0,946276136 +509,1910,4.0,940016368 +509,1913,2.0,940014312 +509,1914,3.0,939329179 +509,1916,3.0,939340096 +509,1921,4.0,1095897422 +509,1923,3.0,939328099 +509,1945,4.0,1124552977 +509,1952,4.0,939326860 +509,1953,3.0,940014354 +509,1954,5.0,940014164 +509,1955,4.0,940014312 +509,1957,5.0,939326440 +509,1959,3.0,940015432 +509,1960,4.0,940015238 +509,1961,4.0,939417618 +509,1962,4.0,940015114 +509,1963,4.0,940017825 +509,1964,4.0,978937021 +509,1967,2.0,940014445 +509,1968,4.0,940015014 +509,1991,3.0,979261135 +509,1992,1.0,979261135 +509,1993,1.0,979261135 +509,1997,4.0,1093295799 +509,2000,3.0,940015277 +509,2003,1.0,942931297 +509,2010,3.5,1124552957 +509,2011,2.0,942931238 +509,2019,4.0,978936766 +509,2020,4.0,940015074 +509,2022,4.0,940015277 +509,2023,3.0,939325726 +509,2028,3.0,939340016 +509,2054,2.0,942931508 +509,2064,5.0,978936573 +509,2065,4.0,940015505 +509,2073,4.0,942931592 +509,2076,2.0,940015014 +509,2081,3.0,939471469 +509,2088,2.0,942931542 +509,2099,4.0,978937614 +509,2100,2.0,942931090 +509,2105,3.0,940014855 +509,2108,3.0,939329728 +509,2109,3.0,940642681 +509,2114,3.0,943629832 +509,2115,4.0,940014445 +509,2126,2.0,940016368 +509,2128,4.0,946276827 +509,2132,5.0,1093295410 +509,2133,1.0,940014855 +509,2134,2.0,942931469 +509,2144,3.0,942930925 +509,2145,2.0,940015432 +509,2154,2.0,979261470 +509,2155,4.0,939329795 +509,2160,3.0,1124553046 +509,2161,2.0,940014855 +509,2165,4.0,939328176 +509,2174,3.0,940018357 +509,2193,2.0,940014497 +509,2194,4.0,940015692 +509,2231,4.0,939340720 +509,2243,4.0,939417618 +509,2248,3.0,978937145 +509,2253,2.0,946276730 +509,2264,3.0,940015692 +509,2268,4.0,939341988 +509,2271,4.0,939326860 +509,2278,4.0,940016332 +509,2280,3.0,940016063 +509,2289,5.0,939329093 +509,2291,4.0,939341365 +509,2302,3.0,939329252 +509,2303,4.0,940014164 +509,2318,4.5,1093279001 +509,2323,2.0,940012724 +509,2324,3.0,939329093 +509,2329,4.0,1124552849 +509,2333,4.0,939340346 +509,2340,2.0,940012856 +509,2348,4.0,1037843635 +509,2352,4.0,940015014 +509,2356,3.0,939327651 +509,2359,3.0,946276235 +509,2363,3.0,979261411 +509,2366,4.0,978937558 +509,2369,3.0,942931090 +509,2371,4.0,942930970 +509,2372,3.0,942931469 +509,2375,2.0,942931167 +509,2378,2.0,942931429 +509,2391,3.0,940016063 +509,2395,4.5,1093279006 +509,2396,5.0,939327531 +509,2405,2.0,940014751 +509,2406,3.0,940014751 +509,2409,3.0,940014354 +509,2410,3.0,940015505 +509,2411,2.0,940015505 +509,2412,2.0,943629583 +509,2420,3.0,940015238 +509,2423,3.0,942931167 +509,2425,4.0,946268745 +509,2427,2.0,940016974 +509,2437,3.0,942929917 +509,2439,4.0,939340876 +509,2440,3.0,939341608 +509,2441,3.0,979262432 +509,2450,1.0,940014855 +509,2459,3.0,940017825 +509,2463,3.0,942931238 +509,2470,3.0,942930970 +509,2473,3.5,1093279027 +509,2474,4.0,940015074 +509,2478,2.0,940016671 +509,2481,4.5,1093278137 +509,2482,2.0,946276109 +509,2492,4.5,1093278086 +509,2501,4.0,940012358 +509,2502,2.0,939327531 +509,2511,4.0,978936271 +509,2529,4.0,940018190 +509,2539,3.0,939327805 +509,2542,4.5,1093278125 +509,2567,3.0,939327531 +509,2571,4.5,1093279062 +509,2577,3.0,948090837 +509,2580,3.0,939327531 +509,2581,1.0,942608641 +509,2583,3.0,939327805 +509,2589,2.0,946276039 +509,2594,4.0,939327805 +509,2598,4.0,939327923 +509,2599,3.0,939329093 +509,2600,3.0,948090762 +509,2610,3.0,939327651 +509,2620,4.0,946268650 +509,2628,3.0,978937802 +509,2640,3.0,978937593 +509,2641,2.0,940014751 +509,2642,2.0,940014751 +509,2657,2.0,940642852 +509,2662,3.0,940016860 +509,2674,3.0,978937273 +509,2677,3.5,1095897491 +509,2692,5.0,942608765 +509,2699,1.0,939329252 +509,2700,3.0,978938247 +509,2702,3.5,1093295774 +509,2706,2.0,978762088 +509,2710,4.0,939327130 +509,2712,3.0,939327130 +509,2716,3.0,942930925 +509,2717,2.0,942931297 +509,2728,3.0,978937170 +509,2731,4.0,939328501 +509,2734,3.0,940015336 +509,2735,2.0,940014909 +509,2739,4.0,940015074 +509,2745,4.0,940015277 +509,2746,1.0,939471469 +509,2762,4.0,939325352 +509,2769,2.0,1037842751 +509,2770,2.0,948602215 +509,2791,4.0,940018077 +509,2794,4.0,942931542 +509,2797,3.0,942930297 +509,2804,3.0,978936814 +509,2858,4.5,1093278089 +509,2862,2.0,940015014 +509,2871,4.5,1093279055 +509,2891,2.0,946269131 +509,2905,4.0,978937536 +509,2912,4.0,943368937 +509,2915,3.0,942931167 +509,2916,2.0,978937644 +509,2918,3.0,942608528 +509,2929,4.0,940015505 +509,2943,3.0,940013156 +509,2959,4.0,942409596 +509,2966,3.0,978937170 +509,2973,4.0,942931043 +509,2997,5.0,942408669 +509,3006,4.0,1124553288 +509,3007,5.0,948602100 +509,3033,2.0,942931429 +509,3037,4.0,942930297 +509,3039,4.0,942931090 +509,3052,4.0,942930001 +509,3067,4.0,943629741 +509,3072,4.0,942930970 +509,3081,3.5,1101709374 +509,3082,2.0,946269142 +509,3083,4.0,978937273 +509,3087,3.0,942931297 +509,3089,5.0,979260937 +509,3095,4.0,978936814 +509,3100,4.5,1093278135 +509,3104,5.0,942931043 +509,3108,4.0,978938525 +509,3129,4.0,978938403 +509,3130,4.0,946276947 +509,3142,4.0,946269017 +509,3148,4.0,1093295731 +509,3152,4.0,948602463 +509,3157,2.5,1093295755 +509,3160,4.0,948090741 +509,3168,4.0,978937558 +509,3173,2.0,978938747 +509,3174,2.0,948090991 +509,3175,3.5,1093279141 +509,3177,3.0,1037843438 +509,3178,4.0,948090655 +509,3179,4.0,979260834 +509,3180,2.0,979261710 +509,3188,3.0,978758185 +509,3189,4.0,1037842728 +509,3201,4.0,978937021 +509,3249,2.5,1093295543 +509,3253,3.0,978938422 +509,3263,3.5,1093295727 +509,3266,4.0,939329093 +509,3298,4.0,1037843059 +509,3302,4.0,978938464 +509,3307,5.0,978938129 +509,3317,4.0,1037842641 +509,3327,3.0,978758334 +509,3328,4.0,978758225 +509,3361,3.0,978938266 +509,3362,4.0,978936145 +509,3363,4.0,978938189 +509,3365,4.0,979262354 +509,3396,4.0,978938337 +509,3408,3.0,985745294 +509,3424,3.0,978938227 +509,3448,4.0,978938440 +509,3467,4.0,1037843617 +509,3468,5.0,978936814 +509,3476,4.5,1093278127 +509,3481,5.0,978758185 +509,3489,2.0,978937878 +509,3504,4.0,978937058 +509,3510,3.0,978758400 +509,3526,4.0,978937273 +509,3543,4.0,978937189 +509,3552,4.5,1095897805 +509,3555,3.0,978758400 +509,3556,3.0,1037842751 +509,3566,2.0,978758257 +509,3571,3.0,1037843156 +509,3578,3.0,978758298 +509,3608,3.0,978938502 +509,3617,1.0,978761971 +509,3618,4.0,978761971 +509,3624,2.5,1099008623 +509,3629,4.0,978938129 +509,3671,4.0,978938266 +509,3672,2.0,978937742 +509,3683,4.0,978937189 +509,3686,3.0,979261371 +509,3698,2.0,978937777 +509,3699,3.0,978937674 +509,3717,2.0,1037843480 +509,3730,4.0,978936766 +509,3735,3.0,978936191 +509,3744,2.0,978761971 +509,3747,3.0,979260523 +509,3751,3.0,1037842551 +509,3753,4.0,1037843367 +509,3760,2.0,978938502 +509,3763,3.0,1093295712 +509,3770,2.0,978937644 +509,3783,4.5,1093279163 +509,3793,4.0,978758298 +509,3794,2.0,1037842985 +509,3812,4.0,1093295537 +509,3821,1.0,1037843294 +509,3852,4.0,1037842963 +509,3860,3.0,978936356 +509,3863,4.0,978762000 +509,3880,4.0,979260864 +509,3882,1.0,1037843037 +509,3893,3.0,1093280158 +509,3896,2.0,978936055 +509,3897,4.0,978758146 +509,3910,4.0,978758147 +509,3911,4.5,1093279192 +509,3916,3.0,1093279991 +509,3948,3.0,978758400 +509,3949,4.5,1093279209 +509,3952,3.0,1037842822 +509,3953,3.0,1037843347 +509,3967,3.0,978758147 +509,3969,2.0,1037843430 +509,3972,4.0,1037842793 +509,3977,2.0,1037843317 +509,3978,3.0,1037843416 +509,3979,1.0,978757978 +509,3980,3.0,1037843165 +509,3983,5.0,978757908 +509,3993,3.0,979286723 +509,3994,3.0,978758225 +509,3996,4.5,1093278189 +509,3998,3.0,978758400 +509,4002,4.0,979261686 +509,4011,4.5,1093278215 +509,4014,3.0,985745250 +509,4017,3.0,1037842482 +509,4022,3.0,978937593 +509,4025,1.0,1037843317 +509,4027,5.0,980022343 +509,4029,3.0,1037842687 +509,4031,2.0,985745073 +509,4033,3.0,1037842585 +509,4034,5.0,978757931 +509,4036,3.0,1037843002 +509,4047,3.5,1072416798 +509,4056,3.0,1037842930 +509,4066,3.0,1095897504 +509,4069,2.0,985745144 +509,4161,1.0,1037843332 +509,4167,3.0,1037843262 +509,4226,5.0,1037842448 +509,4234,3.0,1037843243 +509,4235,5.0,1037842602 +509,4239,3.0,1037842917 +509,4262,4.5,1093279215 +509,4267,3.0,1037843347 +509,4306,4.0,1037842704 +509,4308,1.0,1037842813 +509,4321,3.5,1093295717 +509,4345,2.0,1037842867 +509,4367,2.5,1095897369 +509,4369,1.0,1037843209 +509,4378,3.0,1037842728 +509,4448,2.5,1093279929 +509,4499,3.5,1095897417 +509,4641,4.0,1037842513 +509,4701,3.0,1037843317 +509,4718,1.0,1037843022 +509,4720,3.0,1093277793 +509,4733,4.0,1037843156 +509,4734,2.0,1037843092 +509,4761,3.5,1093279779 +509,4776,4.0,1037842963 +509,4782,4.0,1037842985 +509,4823,2.0,1037843209 +509,4846,4.0,1037842667 +509,4873,5.0,1037842585 +509,4874,3.0,1037843179 +509,4878,4.0,1093277227 +509,4881,4.0,1037842667 +509,4886,4.5,1093277523 +509,4888,4.5,1093278218 +509,4889,4.0,1037843092 +509,4890,2.0,1037843116 +509,4896,3.0,1037842813 +509,4898,4.0,1037843367 +509,4901,3.0,1037842963 +509,4903,5.0,1037842513 +509,4961,3.0,1093280373 +509,4963,2.0,1037842621 +509,4973,4.0,1093277349 +509,4975,3.0,1037842793 +509,4977,3.0,1099008501 +509,4979,4.0,1037842602 +509,4993,4.5,1093279234 +509,4995,3.0,1037842667 +509,5009,4.0,1037843243 +509,5010,4.0,1037842687 +509,5013,5.0,1037842564 +509,5015,4.0,1037842482 +509,5016,2.0,1037843074 +509,5025,2.0,1037843243 +509,5060,3.0,940017214 +509,5072,4.0,1037842751 +509,5081,4.0,1037843377 +509,5147,4.0,1124552990 +509,5225,4.5,1093278284 +509,5258,4.0,1037842728 +509,5266,3.0,1037842667 +509,5293,2.5,1072416827 +509,5349,3.0,1037842641 +509,5377,3.0,1093277625 +509,5380,3.0,1093279951 +509,5388,3.5,1093279494 +509,5417,3.0,1037842464 +509,5445,4.0,1037842687 +509,5464,4.0,1037842551 +509,5477,4.0,1037843074 +509,5483,3.5,1093277836 +509,5502,3.0,1037842751 +509,5508,2.0,1093280006 +509,5528,3.0,1072416834 +509,5572,2.5,1093280148 +509,5577,3.5,1072416822 +509,5617,3.0,1093277604 +509,5669,4.5,1093278181 +509,5670,4.0,1093279457 +509,5673,3.0,1037842297 +509,5680,3.5,1099009339 +509,5782,4.0,1095897455 +509,5791,3.0,1072416778 +509,5792,3.5,1072416763 +509,5810,2.0,1037842236 +509,5820,4.0,1093277757 +509,5868,4.0,1037842170 +509,5876,4.0,1093277749 +509,5902,4.0,1093277258 +509,5945,2.5,1093277855 +509,5952,5.0,1093278231 +509,5954,3.5,1093277410 +509,5955,3.0,1093277844 +509,5956,3.5,1093279835 +509,5959,3.5,1093277532 +509,5989,3.5,1093277550 +509,5991,2.5,1093277899 +509,5995,3.5,1093277404 +509,6003,4.0,1093279662 +509,6016,4.5,1097205699 +509,6218,3.0,1072415897 +509,6269,5.0,1093277320 +509,6279,4.0,1093279800 +509,6296,3.5,1093279694 +509,6306,4.0,1093277784 +509,6331,4.0,1093277614 +509,6333,3.5,1093277519 +509,6337,4.0,1093279781 +509,6339,4.5,1093278305 +509,6365,4.0,1072415918 +509,6367,2.5,1072415939 +509,6377,3.5,1093277366 +509,6378,2.5,1072415905 +509,6380,4.0,1093277282 +509,6440,5.0,1093295238 +509,6502,3.0,1072415858 +509,6537,1.5,1093295426 +509,6538,4.0,1093280013 +509,6539,4.0,1093277555 +509,6552,5.0,1093277497 +509,6565,4.0,1093277808 +509,6612,4.5,1124553012 +509,6617,3.5,1093279817 +509,6620,3.5,1093277354 +509,6663,4.0,1093295619 +509,6708,2.5,1093277596 +509,6710,3.0,1093279808 +509,6711,4.0,1093277450 +509,6755,2.0,1165630554 +509,6787,4.5,1095897466 +509,6796,3.5,1124553145 +509,6807,4.0,1093295532 +509,6863,3.5,1093279633 +509,6867,3.5,1101708375 +509,6870,3.5,1093277383 +509,6874,2.5,1093277273 +509,6881,3.0,1095897340 +509,6890,3.0,1093277823 +509,6893,2.5,1072415867 +509,6932,3.5,1093277638 +509,6934,4.0,1095897404 +509,6947,4.0,1093277704 +509,6953,4.5,1093277683 +509,6957,3.0,1165630564 +509,6993,4.0,1124552914 +509,7139,3.5,1093277313 +509,7147,2.0,1093277482 +509,7149,2.5,1093280090 +509,7153,4.5,1093277220 +509,7156,3.5,1093277338 +509,7158,3.5,1099008066 +509,7160,3.5,1093277373 +509,7162,4.0,1093279724 +509,7171,3.0,1095897560 +509,7255,0.5,1095897237 +509,7256,4.5,1093277564 +509,7263,3.5,1093277477 +509,7323,3.5,1093277659 +509,7361,3.5,1099007992 +509,7438,4.0,1095460092 +509,7445,3.0,1095897304 +509,7460,1.0,1097371532 +509,8042,3.5,1124552927 +509,8154,4.0,1124553059 +509,8364,2.5,1124553201 +509,8366,3.0,1101708576 +509,8368,3.0,1165630506 +509,8373,1.0,1093277126 +509,8376,4.0,1165630582 +509,8464,3.0,1097371500 +509,8533,2.5,1093277097 +509,8622,4.0,1093276979 +509,8636,3.0,1165630511 +509,8638,4.5,1101708362 +509,8645,4.0,1124553263 +509,8781,2.5,1165630612 +509,8783,3.0,1165630590 +509,8784,3.5,1095897621 +509,8798,3.5,1095360991 +509,8873,4.0,1124553293 +509,8874,2.0,1165630478 +509,8927,3.0,1097205624 +509,8949,4.0,1124552856 +509,8950,3.0,1124553115 +509,8961,4.5,1124553358 +509,30707,4.0,1124553168 +509,30820,3.5,1124553124 +509,30850,4.0,1165630447 +509,32587,1.5,1124553100 +509,33660,3.5,1124553184 +509,33794,4.5,1124553351 +509,34271,3.5,1165630539 +509,34338,3.0,1165630600 +510,1,1.0,944346953 +510,17,4.0,944348185 +510,21,4.0,952820505 +510,25,1.0,944346953 +510,34,1.0,946974972 +510,36,4.0,946893253 +510,58,4.0,946892906 +510,84,4.0,947112271 +510,97,3.0,949223114 +510,211,3.0,947228157 +510,232,4.0,946891746 +510,246,4.0,952328513 +510,260,2.0,948183626 +510,265,4.0,946892517 +510,281,3.0,944348485 +510,290,3.0,946892580 +510,296,4.0,946880558 +510,318,4.0,944348557 +510,352,2.0,950425012 +510,356,3.0,946880364 +510,358,1.0,947360832 +510,428,4.0,946891865 +510,433,1.0,949997179 +510,482,1.0,948180496 +510,483,5.0,946892212 +510,488,4.0,944348210 +510,509,5.0,944346278 +510,515,4.0,946880460 +510,520,1.0,951561066 +510,522,1.0,946889433 +510,527,2.0,944348185 +510,529,4.0,946893119 +510,531,4.0,946892906 +510,541,1.0,944347209 +510,593,5.0,944347836 +510,608,4.0,944348071 +510,647,3.0,951560888 +510,696,3.0,953102975 +510,714,1.0,948180540 +510,750,5.0,952327949 +510,753,3.0,946893091 +510,845,5.0,955011276 +510,912,5.0,952328215 +510,921,4.0,948952698 +510,940,1.0,951560995 +510,945,4.0,952328638 +510,1027,1.0,951561067 +510,1040,4.0,953102941 +510,1041,2.0,952327907 +510,1046,2.0,948180573 +510,1077,3.0,952328638 +510,1079,4.0,1022623631 +510,1089,5.0,944346844 +510,1092,1.0,946974281 +510,1094,5.0,946974806 +510,1096,3.0,948183184 +510,1131,5.0,944347267 +510,1136,1.0,948183626 +510,1163,2.0,952819913 +510,1172,5.0,948183503 +510,1183,4.0,946893229 +510,1185,2.0,948183257 +510,1186,4.0,944346768 +510,1188,2.0,944348557 +510,1193,2.0,948183589 +510,1198,3.0,952328687 +510,1200,2.0,948183694 +510,1201,4.0,952820447 +510,1206,5.0,952328687 +510,1212,3.0,952328215 +510,1213,3.0,944348322 +510,1214,2.0,948183695 +510,1225,5.0,944347065 +510,1230,4.0,952328805 +510,1233,5.0,946880322 +510,1234,4.0,952328867 +510,1244,5.0,952328350 +510,1247,5.0,952328601 +510,1265,4.0,946975490 +510,1266,1.0,944346953 +510,1276,4.0,952328467 +510,1280,5.0,944347209 +510,1283,4.0,952328350 +510,1291,4.0,944347306 +510,1296,5.0,948844269 +510,1299,3.0,948183503 +510,1300,4.0,948183257 +510,1304,4.0,950070893 +510,1307,4.0,952328939 +510,1357,4.0,944346623 +510,1393,1.0,944348485 +510,1610,2.0,946881021 +510,1617,4.0,944348071 +510,1641,4.0,944346953 +510,1643,4.0,946974566 +510,1673,4.0,946892035 +510,1689,3.0,950420944 +510,1699,5.0,944348381 +510,1701,3.0,946880322 +510,1704,1.0,946880364 +510,1721,1.0,946880492 +510,1729,3.0,949997133 +510,1747,3.0,946975579 +510,1834,5.0,944348322 +510,1875,1.0,947228210 +510,1885,4.0,946892517 +510,1923,3.0,944348185 +510,1952,4.0,952328350 +510,1953,4.0,952328467 +510,1958,3.0,944347065 +510,1960,5.0,944347003 +510,1961,3.0,944347267 +510,1963,5.0,944347003 +510,1965,4.0,944347065 +510,2028,2.0,944348185 +510,2065,4.0,952328939 +510,2101,1.0,952327949 +510,2108,4.0,944348381 +510,2112,2.0,944347209 +510,2130,4.0,948183257 +510,2150,4.0,944347208 +510,2300,4.0,952328513 +510,2303,2.0,950071422 +510,2313,2.0,948183257 +510,2359,5.0,944346346 +510,2396,5.0,944346473 +510,2433,2.0,944348614 +510,2439,3.0,946892517 +510,2481,3.0,948614621 +510,2630,3.0,951606442 +510,2671,2.0,957809335 +510,2696,3.0,958422326 +510,2716,3.0,944347003 +510,2739,4.0,946975626 +510,2750,4.0,952328759 +510,2753,1.0,948614571 +510,2762,3.0,954576426 +510,2801,4.0,946892906 +510,2858,3.0,944346073 +510,2863,5.0,952328421 +510,2908,4.0,954998551 +510,2919,2.0,948614662 +510,2951,4.0,952820505 +510,2970,2.0,949223177 +510,2973,4.0,952328295 +510,3006,3.0,949223145 +510,3034,1.0,951561067 +510,3036,2.0,950424966 +510,3090,3.0,948183184 +510,3100,3.0,946892707 +510,3114,1.0,951561132 +510,3125,4.0,955531109 +510,3148,2.0,958614362 +510,3152,4.0,952328350 +510,3260,5.0,948845433 +510,3266,1.0,949997246 +510,3408,4.0,957809392 +510,3418,3.0,952328601 +510,3893,4.0,1022623947 +510,3897,5.0,1022623308 +510,4424,5.0,1022624565 +511,11,4.0,829351964 +511,16,5.0,829351964 +511,21,5.0,829351964 +511,25,4.0,829351964 +511,31,4.0,829352433 +511,36,5.0,829351964 +511,50,5.0,829352433 +511,58,5.0,829351964 +511,94,4.0,829351964 +511,100,5.0,829351964 +511,111,5.0,829351964 +511,125,3.0,829351964 +511,150,4.0,829352433 +511,193,1.0,829352433 +511,223,4.0,829352433 +511,231,3.0,829352433 +511,235,3.0,829352433 +511,237,4.0,829352433 +511,246,5.0,829352433 +511,280,5.0,829352433 +511,282,4.0,829352433 +511,288,3.0,829352433 +511,293,4.0,829352433 +511,296,5.0,829352433 +511,300,5.0,829352433 +511,318,5.0,829352433 +511,337,4.0,829352433 +511,342,5.0,829352433 +511,590,5.0,829352433 +511,608,5.0,829351964 +511,720,5.0,829351964 +512,318,5.0,1433818724 +512,356,5.0,1435375890 +512,589,3.0,1433818868 +512,1198,3.5,1433818766 +512,1291,4.0,1433818827 +512,2028,3.5,1447465310 +512,2115,4.0,1434150671 +512,2424,4.0,1434150117 +512,3578,5.0,1433818890 +512,4963,4.5,1434151036 +512,5064,5.0,1434150219 +512,5989,5.0,1434151014 +512,6942,3.5,1435800110 +512,8132,5.0,1435540227 +512,8529,5.0,1434150102 +512,48780,3.0,1434164145 +512,60069,4.0,1433818909 +512,63082,4.5,1434151044 +512,69122,4.0,1434150727 +512,72998,4.0,1434151171 +512,74458,5.0,1433818946 +512,79132,5.0,1433818792 +512,84152,4.5,1434150035 +512,86911,3.5,1434150750 +512,107141,4.0,1434150137 +512,116797,5.0,1446940778 +512,126548,3.0,1435800481 +513,110,5.0,843771870 +513,150,3.0,843771752 +513,151,5.0,843771936 +513,161,5.0,843771870 +513,208,3.0,843771870 +513,231,3.0,843771811 +513,292,3.0,843771870 +513,296,5.0,843771753 +513,318,5.0,843771830 +513,339,3.0,843771870 +513,344,3.0,843771780 +513,349,4.0,843771780 +513,356,4.0,843771830 +513,380,3.0,843771753 +513,434,3.0,843771830 +513,457,3.0,843771811 +513,480,4.0,843771830 +513,527,5.0,843771936 +513,590,3.0,843771752 +513,592,3.0,843771752 +513,593,5.0,843771811 +513,595,4.0,843771811 +514,1,4.0,853892832 +514,3,1.0,853892868 +514,5,1.0,853892868 +514,14,3.0,853892898 +514,17,3.0,853892833 +514,21,3.0,853894140 +514,24,1.0,853896519 +514,25,5.0,853892833 +514,29,5.0,853893081 +514,32,4.0,853892832 +514,34,4.0,853894009 +514,35,3.0,853894140 +514,36,4.0,853892867 +514,38,1.0,853896032 +514,39,3.0,854116134 +514,43,3.0,853893138 +514,44,3.0,853897100 +514,45,4.0,853894362 +514,47,4.0,853893935 +514,48,2.0,853894938 +514,50,5.0,853893691 +514,52,4.0,853892898 +514,57,3.0,853896692 +514,62,3.0,853892833 +514,69,3.0,854116294 +514,78,4.0,853893226 +514,83,3.0,853893246 +514,85,3.0,853893080 +514,92,4.0,853893059 +514,107,2.0,853895942 +514,110,3.0,853893691 +514,111,5.0,853893691 +514,112,3.0,853894491 +514,117,4.0,853893246 +514,144,3.0,853895135 +514,147,4.0,853894074 +514,150,4.0,853895900 +514,151,4.0,853894100 +514,153,3.0,853896269 +514,156,4.0,853893545 +514,157,2.0,854116294 +514,159,4.0,853894100 +514,162,5.0,853893691 +514,163,3.0,854116215 +514,172,2.0,853895776 +514,175,5.0,853893860 +514,176,5.0,853893713 +514,180,3.0,854116263 +514,190,3.0,853895191 +514,194,4.0,853893713 +514,198,3.0,853894449 +514,209,3.0,853896382 +514,222,3.0,853896453 +514,223,5.0,853893935 +514,227,1.0,853897100 +514,229,3.0,853894449 +514,230,3.0,853895684 +514,231,2.0,854116419 +514,232,3.0,853893860 +514,233,5.0,853893961 +514,235,3.0,853893788 +514,236,1.0,853896781 +514,247,5.0,853894693 +514,249,4.0,853893907 +514,252,2.0,853896781 +514,253,4.0,853894779 +514,260,5.0,853893832 +514,265,4.0,853893882 +514,266,3.0,853896711 +514,272,5.0,853893859 +514,273,2.0,853894801 +514,288,5.0,853893691 +514,290,3.0,853893811 +514,292,3.0,853895732 +514,293,4.0,853893881 +514,296,5.0,853893691 +514,299,4.0,853894217 +514,300,3.0,853893961 +514,302,3.0,853893761 +514,314,4.0,853893859 +514,316,3.0,853896896 +514,317,3.0,853896002 +514,318,5.0,853893691 +514,319,5.0,853893761 +514,320,3.0,853894491 +514,321,3.0,853894009 +514,322,4.0,853893832 +514,327,3.0,853897046 +514,329,2.0,853896364 +514,330,3.0,853894827 +514,331,3.0,853894169 +514,333,1.0,854116476 +514,337,4.0,853893811 +514,342,4.0,853894670 +514,344,3.0,854116539 +514,345,3.0,853895102 +514,350,4.0,853895754 +514,353,3.0,853894569 +514,356,4.0,853896102 +514,357,4.0,853895191 +514,361,3.0,853896732 +514,362,4.0,853895879 +514,364,2.0,853894895 +514,365,4.0,853896300 +514,366,3.0,853894801 +514,367,3.0,854116263 +514,368,4.0,854116294 +514,369,3.0,853893859 +514,371,4.0,853896399 +514,374,1.0,853896032 +514,377,3.0,853897009 +514,380,3.0,853896990 +514,407,3.0,853894755 +514,410,3.0,854116100 +514,412,3.0,853896253 +514,413,1.0,854116447 +514,415,1.0,854116476 +514,417,4.0,853894521 +514,426,4.0,853894755 +514,427,1.0,853895699 +514,433,3.0,854116392 +514,435,3.0,854116315 +514,441,3.0,853894334 +514,442,2.0,853897047 +514,446,5.0,853893761 +514,448,4.0,853894362 +514,449,3.0,854116195 +514,452,3.0,853894670 +514,454,3.0,853895753 +514,457,4.0,853894569 +514,469,3.0,853896300 +514,470,2.0,854116447 +514,471,4.0,853893788 +514,480,4.0,853895854 +514,481,3.0,853894310 +514,484,3.0,853895943 +514,490,3.0,853895732 +514,491,3.0,853896427 +514,493,4.0,853894217 +514,494,1.0,853892868 +514,497,3.0,853893961 +514,500,3.0,853895942 +514,505,3.0,853896001 +514,506,4.0,853895045 +514,507,4.0,853896152 +514,509,5.0,853893788 +514,510,2.0,853896495 +514,514,3.0,854116166 +514,515,4.0,853895045 +514,518,3.0,854116195 +514,520,3.0,854116539 +514,529,4.0,853894075 +514,531,3.0,853895085 +514,532,2.0,853894779 +514,535,4.0,853893735 +514,537,1.0,853895153 +514,538,4.0,853893907 +514,539,3.0,853896756 +514,541,5.0,853893713 +514,542,1.0,854116476 +514,543,3.0,853896732 +514,548,1.0,853897070 +514,551,3.0,853893832 +514,555,4.0,853893735 +514,558,1.0,853894938 +514,562,5.0,853893185 +514,574,4.0,853896216 +514,585,3.0,853895922 +514,586,3.0,853895900 +514,587,3.0,853896566 +514,588,4.0,853894895 +514,590,4.0,853893788 +514,592,4.0,853894258 +514,593,4.0,853893788 +514,594,4.0,853894362 +514,595,3.0,853894894 +514,596,4.0,853894362 +514,597,3.0,853896780 +514,606,3.0,853894827 +514,608,5.0,853892867 +514,613,4.0,853895135 +514,616,3.0,853894937 +514,648,3.0,853892832 +514,653,4.0,853892898 +514,661,4.0,853892928 +514,707,2.0,853892993 +514,708,2.0,853892898 +514,720,5.0,853893735 +514,733,3.0,853892867 +514,741,4.0,853893811 +514,745,4.0,853893059 +514,748,2.0,853893016 +514,750,5.0,853893713 +514,753,4.0,853896216 +514,762,1.0,853892928 +514,766,5.0,853893166 +514,778,5.0,853893691 +514,780,3.0,853892832 +514,784,2.0,853892898 +514,799,3.0,853893138 +514,800,5.0,853893735 +514,802,2.0,853892958 +514,805,3.0,853892958 +514,838,3.0,853894449 +514,851,4.0,853894009 +514,852,3.0,853892993 +514,880,1.0,853893138 +514,902,4.0,853894521 +514,908,5.0,853893935 +514,909,5.0,853894416 +514,910,4.0,853894309 +514,919,4.0,853894217 +514,921,3.0,854116044 +514,923,5.0,853893761 +514,924,5.0,853893811 +514,953,4.0,853894491 +514,955,4.0,853894416 +514,965,4.0,853894258 +514,1007,3.0,853895923 +514,1011,3.0,853895922 +514,1012,4.0,853895854 +514,1013,3.0,853895900 +514,1015,3.0,853895879 +514,1019,3.0,853895854 +514,1022,4.0,853894894 +514,1025,3.0,853894895 +514,1027,3.0,853895900 +514,1028,4.0,853895854 +514,1029,3.0,853894894 +514,1030,3.0,853894938 +514,1031,3.0,853895855 +514,1032,3.0,853894282 +514,1033,4.0,853894895 +514,1035,4.0,853895855 +514,1036,4.0,853896936 +514,1037,3.0,853894827 +514,1041,5.0,853893545 +514,1059,3.0,853893138 +514,1073,4.0,853892898 +514,1077,4.0,853894140 +514,1079,4.0,853894468 +514,1080,4.0,853893961 +514,1081,3.0,854116100 +514,1084,4.0,853893907 +514,1086,4.0,853894169 +514,1088,3.0,853896732 +514,1089,4.0,853893692 +514,1090,4.0,853894140 +514,1091,3.0,854116315 +514,1092,4.0,853895700 +514,1093,4.0,853896183 +514,1094,3.0,853893982 +514,1095,4.0,853894039 +514,1097,5.0,853895855 +514,1101,3.0,853896971 +514,1103,4.0,853894074 +514,1104,5.0,853893859 +514,1111,5.0,853893326 +514,1120,5.0,853893326 +514,1124,4.0,853896183 +514,1125,3.0,854116100 +514,1126,3.0,853895923 +514,1127,3.0,853894723 +514,1128,3.0,853894755 +514,1129,3.0,853895639 +514,1130,3.0,853894723 +514,1135,3.0,854116153 +514,1136,4.0,853893859 +514,1148,4.0,853893761 +514,1150,3.0,853893961 +514,1171,4.0,853896152 +514,1173,4.0,853894039 +514,1175,4.0,853893935 +514,1177,3.0,853895059 +514,1179,4.0,853894282 +514,1186,4.0,853894449 +514,1187,4.0,853896231 +514,1189,4.0,853894334 +514,1191,3.0,853896342 +514,1193,5.0,853893811 +514,1196,5.0,853894039 +514,1197,4.0,853894258 +514,1198,5.0,853894009 +514,1199,4.0,853893713 +514,1200,4.0,853894140 +514,1201,5.0,853894282 +514,1203,5.0,853894100 +514,1204,5.0,853893907 +514,1206,5.0,853893761 +514,1207,5.0,853893935 +514,1208,5.0,853893735 +514,1210,4.0,853894362 +514,1211,5.0,853894169 +514,1213,5.0,853896074 +514,1214,5.0,853893882 +514,1219,5.0,853893982 +514,1220,4.0,854116044 +514,1222,5.0,853894258 +514,1223,4.0,853894217 +514,1225,5.0,853893811 +514,1230,4.0,853893935 +514,1231,4.0,853894217 +514,1235,4.0,853894310 +514,1236,4.0,853896253 +514,1240,4.0,853894384 +514,1242,4.0,853894169 +514,1243,5.0,853894009 +514,1245,4.0,853893935 +514,1246,4.0,853894334 +514,1249,4.0,853894074 +514,1250,5.0,853894074 +514,1252,4.0,853893907 +514,1257,4.0,854116076 +514,1258,5.0,853893907 +514,1259,4.0,853894384 +514,1260,4.0,853894039 +514,1261,4.0,853894693 +514,1265,4.0,853896661 +514,1268,3.0,853896216 +514,1269,4.0,853895623 +514,1270,4.0,853897151 +514,1271,4.0,853896136 +514,1272,5.0,853894416 +514,1274,5.0,853894310 +514,1275,3.0,853894521 +514,1276,5.0,853894074 +514,1277,4.0,853894309 +514,1279,3.0,853894521 +514,1280,4.0,853894140 +514,1282,4.0,853894039 +514,1285,4.0,853893981 +514,1288,4.0,854116021 +514,1289,5.0,853894333 +514,1291,3.0,853896936 +514,1296,4.0,853894100 +514,1297,4.0,853897183 +514,1298,5.0,853896183 +514,1302,3.0,853896136 +514,1304,4.0,853894449 +514,1305,4.0,853894384 +514,1307,4.0,853896661 +514,1321,4.0,853894693 +514,1323,2.0,853894850 +514,1326,2.0,853894850 +514,1327,3.0,853894755 +514,1330,3.0,853894779 +514,1333,4.0,853894449 +514,1334,3.0,853894755 +514,1339,3.0,853894723 +514,1342,4.0,853894755 +514,1343,4.0,853894723 +514,1344,4.0,853895639 +514,1345,4.0,853894693 +514,1347,4.0,853894723 +514,1350,4.0,853894723 +514,1356,3.0,853892928 +514,1357,4.0,853893545 +514,1366,4.0,853893326 +514,1370,3.0,853895670 +514,1371,4.0,853895670 +514,1372,2.0,853895670 +514,1373,2.0,853895712 +514,1374,4.0,853895624 +514,1375,3.0,853895670 +514,1376,2.0,853895670 +514,1377,4.0,853896937 +514,1380,3.0,853896692 +514,1381,1.0,853896756 +514,1387,5.0,853894693 +514,1388,3.0,853894779 +514,1389,2.0,853894850 +514,1394,4.0,853894217 +514,1396,3.0,853896231 +514,1441,2.0,853896711 +514,2019,4.0,853894468 +514,5060,5.0,853894362 +515,60,3.0,1285890709 +515,169,5.0,1286399032 +515,273,2.5,1286398769 +515,519,4.0,1286398918 +515,1566,3.5,1286398944 +515,2080,3.5,1286398722 +515,2379,3.5,1286399042 +515,2422,5.0,1286399024 +515,2622,2.0,1286399011 +515,2739,5.0,1285890767 +515,2804,5.0,1286399831 +515,3246,5.0,1286398960 +515,3275,5.0,1286399754 +515,3386,4.0,1285890451 +515,3996,4.5,1286399929 +515,4019,5.0,1285890749 +515,4886,5.0,1286401644 +515,4995,4.5,1286399634 +515,5015,3.5,1286398897 +515,8827,5.0,1286399675 +515,30707,5.0,1286401629 +515,33794,4.5,1286399620 +515,48516,4.0,1286399999 +515,53125,4.5,1286399017 +515,54286,5.0,1286399762 +515,56367,4.0,1286401528 +515,58559,4.0,1286399966 +515,59315,4.5,1286401450 +515,69280,4.0,1286399260 +515,69757,4.0,1286399369 +515,70286,5.0,1286400025 +515,72641,5.0,1286399733 +515,72998,5.0,1286399571 +515,80463,5.0,1286399256 +516,3,3.0,844687536 +516,5,3.0,844687485 +516,6,4.0,844687340 +516,7,4.0,844687509 +516,9,3.0,844687820 +516,10,4.0,844687118 +516,12,3.0,844687789 +516,13,3.0,844688688 +516,19,3.0,844687167 +516,21,5.0,844687168 +516,22,5.0,844687379 +516,23,3.0,844687509 +516,25,5.0,844687365 +516,30,4.0,844688700 +516,31,4.0,844687388 +516,32,4.0,844687197 +516,34,3.0,844687152 +516,39,3.0,844687182 +516,44,3.0,844687325 +516,47,4.0,844687137 +516,64,3.0,844688650 +516,74,3.0,844687780 +516,79,3.0,844687828 +516,95,4.0,844687287 +516,110,4.0,844687118 +516,112,3.0,844687456 +516,132,3.0,844687647 +516,135,4.0,844687869 +516,140,4.0,844687882 +516,145,3.0,844687413 +516,153,2.0,844687044 +516,154,4.0,844687869 +516,155,4.0,844688604 +516,161,4.0,844687099 +516,163,3.0,844687428 +516,165,4.0,844687044 +516,168,3.0,844687300 +516,173,3.0,844687253 +516,177,3.0,844687658 +516,185,3.0,844687099 +516,186,3.0,844687300 +516,188,3.0,844687918 +516,191,3.0,844687844 +516,193,3.0,844687340 +516,195,3.0,844687694 +516,196,4.0,844687287 +516,203,4.0,844687413 +516,204,3.0,844687274 +516,218,4.0,844687485 +516,225,4.0,844687168 +516,230,5.0,844687401 +516,231,3.0,844687067 +516,232,4.0,844687524 +516,236,3.0,844687253 +516,237,3.0,844687379 +516,247,3.0,844687703 +516,249,3.0,844687625 +516,251,3.0,844687985 +516,253,4.0,844687118 +516,256,3.0,844687300 +516,266,3.0,844687197 +516,267,3.0,844687524 +516,273,3.0,844687379 +516,278,3.0,844687769 +516,292,4.0,844687099 +516,293,4.0,844687274 +516,296,5.0,844687015 +516,303,3.0,844687466 +516,305,3.0,844687606 +516,315,3.0,844687253 +516,316,3.0,844687085 +516,317,3.0,844687197 +516,318,5.0,844687085 +516,319,3.0,844687625 +516,326,4.0,844688688 +516,329,3.0,844687067 +516,337,5.0,844687252 +516,338,3.0,844687606 +516,339,3.0,844687099 +516,344,4.0,844687044 +516,349,4.0,844687067 +516,353,4.0,844687315 +516,356,4.0,844687085 +516,357,4.0,844687197 +516,360,3.0,844687882 +516,364,3.0,844687137 +516,365,3.0,844687754 +516,370,3.0,844687340 +516,374,3.0,844687509 +516,377,3.0,844687137 +516,380,3.0,844687015 +516,382,4.0,844687677 +516,384,3.0,844688745 +516,420,3.0,844687182 +516,432,3.0,844687238 +516,433,3.0,844687799 +516,442,3.0,844687264 +516,446,4.0,844687853 +516,455,3.0,844687456 +516,460,3.0,844687769 +516,464,3.0,844687669 +516,466,3.0,844687401 +516,468,3.0,844687428 +516,474,3.0,844687264 +516,480,3.0,844687085 +516,485,3.0,844687340 +516,494,4.0,844687625 +516,508,5.0,844687287 +516,521,3.0,844687895 +516,527,5.0,844687182 +516,529,3.0,844687496 +516,539,4.0,844687182 +516,543,3.0,844687456 +516,548,3.0,844687658 +516,552,3.0,844687413 +516,555,3.0,844687365 +516,586,3.0,844687167 +516,587,4.0,844687152 +516,588,3.0,844687044 +516,589,4.0,844687137 +516,590,4.0,844687015 +516,592,3.0,844687015 +516,593,5.0,844687044 +516,595,4.0,844687067 +516,597,4.0,844687167 +516,640,4.0,844688598 +516,648,3.0,844687315 +516,733,3.0,844687428 +516,736,5.0,844687300 +516,741,4.0,844688776 +516,786,4.0,844687536 +516,836,3.0,844688797 +516,852,4.0,844688797 +516,861,3.0,844688640 +516,1036,3.0,844687669 +516,1037,3.0,844688724 +516,1064,3.0,844688348 +516,1079,5.0,844688598 +516,1088,3.0,844688144 +516,1090,4.0,844688176 +516,1092,3.0,844688162 +516,1094,3.0,844688222 +516,1097,4.0,844687965 +516,1100,3.0,844688234 +516,1101,4.0,844687985 +516,1105,3.0,844688529 +516,1124,4.0,844688451 +516,1129,3.0,844688430 +516,1130,3.0,844688476 +517,2,5.0,846450065 +517,11,5.0,846450066 +517,17,5.0,846450097 +517,19,3.0,846450012 +517,39,4.0,846450026 +517,47,5.0,846449972 +517,95,4.0,846450097 +517,110,5.0,846449954 +517,153,3.0,846449875 +517,160,1.0,846450043 +517,165,4.0,846449875 +517,173,4.0,846450065 +517,185,5.0,846449928 +517,186,5.0,846450111 +517,208,5.0,846449929 +517,231,3.0,846449893 +517,236,5.0,846450097 +517,253,4.0,846449954 +517,266,5.0,846450043 +517,316,4.0,846449892 +517,317,5.0,846450043 +517,329,3.0,846449893 +517,344,4.0,846449875 +517,356,5.0,846449907 +517,357,5.0,846450026 +517,367,4.0,846449972 +517,377,5.0,846449972 +517,380,4.0,846449856 +517,420,4.0,846450026 +517,432,3.0,846450065 +517,434,5.0,846449907 +517,480,4.0,846449907 +517,500,5.0,846449990 +517,527,5.0,846450026 +517,539,4.0,846450011 +517,587,5.0,846449990 +517,588,5.0,846449875 +517,589,4.0,846449954 +517,590,5.0,846449856 +517,592,3.0,846449856 +517,595,5.0,846449893 +517,597,4.0,846449990 +518,1,5.0,945369114 +518,2,4.0,945362514 +518,4,1.0,945365209 +518,5,3.0,945364959 +518,7,3.0,945361906 +518,9,4.0,945369995 +518,11,5.0,945362876 +518,13,5.0,945369411 +518,17,5.0,945362632 +518,19,3.0,945365345 +518,21,1.0,945363877 +518,22,4.0,945367938 +518,24,3.0,945445633 +518,34,5.0,945363618 +518,39,4.0,945362876 +518,47,5.0,945367593 +518,48,1.0,945362044 +518,54,4.0,945364826 +518,64,2.0,945363167 +518,65,3.0,945365606 +518,74,3.0,945362943 +518,87,3.0,945369382 +518,88,3.0,945365379 +518,89,3.0,945368183 +518,95,4.0,945370057 +518,102,3.0,945365111 +518,104,4.0,945364980 +518,122,3.0,945362083 +518,126,3.0,945362544 +518,141,4.0,945364027 +518,153,3.0,945365209 +518,158,4.0,945369320 +518,160,3.0,945369995 +518,165,3.0,945369740 +518,169,4.0,945369439 +518,172,3.0,945368237 +518,173,1.0,945443639 +518,181,2.0,945369411 +518,186,2.0,945364758 +518,195,3.0,945363018 +518,196,3.0,945367039 +518,203,4.0,945364027 +518,207,3.0,945363127 +518,216,3.0,945365164 +518,218,3.0,945363973 +518,222,5.0,945362897 +518,223,5.0,945363835 +518,224,2.0,945361616 +518,225,4.0,945368427 +518,230,5.0,945367613 +518,231,1.0,945365298 +518,234,3.0,945364980 +518,236,3.0,945361957 +518,237,3.0,945362022 +518,239,4.0,945362108 +518,248,3.0,945365164 +518,250,3.0,945365606 +518,252,5.0,945362943 +518,253,5.0,945366856 +518,260,5.0,945362431 +518,265,4.0,945362762 +518,266,2.0,945361428 +518,270,4.0,945361865 +518,273,5.0,945367039 +518,275,3.0,945365229 +518,276,3.0,945362108 +518,282,4.0,945445877 +518,288,4.0,945367967 +518,289,4.0,945361957 +518,292,4.0,945369740 +518,296,5.0,945443754 +518,316,4.0,945369721 +518,317,4.0,945362480 +518,318,5.0,945444158 +518,329,3.0,945369691 +518,337,5.0,945445542 +518,339,5.0,945361690 +518,342,4.0,945361653 +518,344,4.0,945365209 +518,345,4.0,945363852 +518,351,3.0,945362044 +518,353,3.0,945367806 +518,355,1.0,945365250 +518,356,5.0,945361653 +518,360,3.0,945365440 +518,361,4.0,945361906 +518,362,5.0,945362996 +518,364,4.0,945369114 +518,367,4.0,945362455 +518,368,4.0,945364045 +518,372,4.0,945365275 +518,374,3.0,945369382 +518,377,4.0,945362827 +518,378,3.0,945362022 +518,379,3.0,945369721 +518,380,3.0,945361813 +518,381,3.0,945445750 +518,410,3.0,945364902 +518,414,3.0,945364703 +518,415,4.0,945365467 +518,420,3.0,945365135 +518,432,3.0,945365209 +518,434,4.0,945369889 +518,435,1.0,945365044 +518,440,3.0,945362783 +518,441,1.0,945364098 +518,442,3.0,945369663 +518,448,3.0,945445004 +518,450,4.0,945364886 +518,451,1.0,945362022 +518,453,2.0,945365087 +518,455,4.0,945369348 +518,457,5.0,945367538 +518,464,2.0,945443861 +518,466,1.0,945365087 +518,480,5.0,945369663 +518,481,4.0,945445666 +518,485,3.0,945365044 +518,487,3.0,945364863 +518,494,4.0,945367833 +518,498,3.0,945361979 +518,500,4.0,945364061 +518,502,3.0,945369348 +518,508,5.0,945445429 +518,509,1.0,945362876 +518,516,3.0,945364886 +518,518,2.0,945365024 +518,519,2.0,945369025 +518,520,3.0,945365298 +518,529,4.0,945444238 +518,532,3.0,945366895 +518,539,5.0,945361616 +518,542,3.0,945365467 +518,546,1.0,945370191 +518,550,2.0,945361865 +518,551,2.0,945362232 +518,552,4.0,945369783 +518,555,4.0,945361202 +518,558,3.0,945362557 +518,564,3.0,945365440 +518,575,5.0,945369271 +518,585,3.0,945364758 +518,586,5.0,945364758 +518,587,4.0,945361841 +518,588,4.0,945362206 +518,589,4.0,945369564 +518,590,2.0,945443476 +518,592,3.0,945369756 +518,593,5.0,945367407 +518,594,4.0,945362183 +518,595,5.0,945362262 +518,596,4.0,945369114 +518,597,4.0,945361386 +518,605,4.0,945363057 +518,608,5.0,945367520 +518,612,2.0,945365209 +518,616,4.0,945369201 +518,628,4.0,945367631 +518,648,4.0,945369847 +518,653,4.0,945362480 +518,661,4.0,945362294 +518,663,5.0,945365379 +518,673,5.0,945362544 +518,691,3.0,945362108 +518,708,5.0,945362920 +518,709,5.0,945369218 +518,711,4.0,945369411 +518,719,2.0,945365164 +518,733,5.0,945367708 +518,736,4.0,945362996 +518,742,5.0,945367147 +518,762,1.0,945365024 +518,780,5.0,945369663 +518,783,4.0,945369295 +518,786,3.0,945368237 +518,788,4.0,945362022 +518,798,4.0,945367906 +518,799,3.0,945363922 +518,801,3.0,945363852 +518,802,5.0,945361906 +518,805,5.0,945445645 +518,828,4.0,945369320 +518,829,1.0,945362365 +518,830,4.0,945364781 +518,832,3.0,945367875 +518,836,4.0,945369954 +518,837,3.0,945369146 +518,840,3.0,945365323 +518,858,3.0,945369539 +518,885,2.0,945362514 +518,899,5.0,945362183 +518,900,4.0,945362232 +518,902,3.0,945362632 +518,912,3.0,945362586 +518,914,4.0,945362739 +518,919,4.0,945362183 +518,920,4.0,945362805 +518,924,3.0,945444284 +518,932,4.0,945362943 +518,953,5.0,945444939 +518,986,4.0,945369146 +518,998,4.0,945443861 +518,1005,3.0,945365298 +518,1009,3.0,945362514 +518,1010,2.0,945364826 +518,1012,4.0,945369201 +518,1013,5.0,945369295 +518,1014,5.0,945364863 +518,1016,2.0,945364703 +518,1017,4.0,945443569 +518,1020,4.0,945365135 +518,1021,3.0,945364997 +518,1022,5.0,945362262 +518,1025,4.0,945369243 +518,1028,5.0,945362232 +518,1029,4.0,945369243 +518,1030,3.0,945362365 +518,1032,4.0,945362294 +518,1033,4.0,945369271 +518,1035,5.0,945362232 +518,1036,3.0,945367428 +518,1037,3.0,945368494 +518,1042,3.0,945363722 +518,1049,3.0,945369691 +518,1061,5.0,945443806 +518,1064,4.0,945364758 +518,1073,5.0,945362431 +518,1081,5.0,945362262 +518,1088,4.0,945362333 +518,1090,5.0,945445004 +518,1091,2.0,945364937 +518,1093,3.0,945362317 +518,1094,3.0,945361166 +518,1096,3.0,945445702 +518,1097,5.0,945362431 +518,1101,3.0,945363018 +518,1113,3.0,945363898 +518,1124,3.0,945445903 +518,1125,1.0,945363877 +518,1127,4.0,945367631 +518,1129,3.0,945369740 +518,1135,4.0,945364118 +518,1136,4.0,945363582 +518,1186,4.0,945445681 +518,1191,2.0,945444059 +518,1193,3.0,945444158 +518,1194,3.0,945363922 +518,1196,5.0,945362612 +518,1197,5.0,945360964 +518,1198,5.0,945369539 +518,1200,4.0,945369564 +518,1201,5.0,945369663 +518,1210,5.0,945362762 +518,1214,4.0,945366654 +518,1215,4.0,945366714 +518,1219,3.0,945366628 +518,1220,4.0,945362317 +518,1221,3.0,945369539 +518,1222,4.0,945369635 +518,1225,4.0,945444158 +518,1234,3.0,945363564 +518,1235,4.0,945363688 +518,1240,4.0,945367428 +518,1242,5.0,945369564 +518,1247,3.0,945362632 +518,1258,3.0,945366714 +518,1259,5.0,945363635 +518,1261,4.0,945363973 +518,1265,3.0,945361143 +518,1268,4.0,945445666 +518,1270,4.0,945363688 +518,1271,5.0,945445597 +518,1275,5.0,945369721 +518,1278,3.0,945363582 +518,1282,3.0,945362232 +518,1285,4.0,945363835 +518,1286,4.0,945363184 +518,1290,4.0,945363167 +518,1291,5.0,945369608 +518,1297,4.0,945364141 +518,1302,5.0,945445004 +518,1307,5.0,945362612 +518,1321,3.0,945366654 +518,1330,4.0,945364920 +518,1331,3.0,945366945 +518,1333,5.0,945366654 +518,1334,3.0,945366895 +518,1339,3.0,945361616 +518,1342,2.0,945366967 +518,1343,3.0,945367938 +518,1344,3.0,945367520 +518,1345,4.0,945366714 +518,1346,4.0,945366994 +518,1347,4.0,945366812 +518,1350,4.0,945366856 +518,1353,3.0,945362022 +518,1359,3.0,945365275 +518,1366,4.0,945445877 +518,1367,5.0,945369295 +518,1370,3.0,945367986 +518,1371,3.0,945370014 +518,1372,4.0,945369869 +518,1373,3.0,945370127 +518,1374,4.0,945369663 +518,1375,2.0,945369869 +518,1376,4.0,945369691 +518,1377,3.0,945369954 +518,1378,4.0,945364920 +518,1379,3.0,945365229 +518,1380,5.0,945362294 +518,1381,4.0,945362389 +518,1387,3.0,945366628 +518,1391,1.0,945365044 +518,1393,5.0,945361249 +518,1394,5.0,945363835 +518,1407,3.0,945366856 +518,1409,3.0,945361690 +518,1425,3.0,945364002 +518,1431,4.0,945370127 +518,1432,4.0,945370095 +518,1433,3.0,945367279 +518,1440,3.0,945364002 +518,1441,3.0,945361616 +518,1453,3.0,945362083 +518,1457,4.0,945362044 +518,1459,5.0,945368427 +518,1460,4.0,945365440 +518,1473,3.0,945363635 +518,1474,2.0,945364118 +518,1479,3.0,945361935 +518,1485,4.0,945364703 +518,1487,3.0,945362334 +518,1488,4.0,945369995 +518,1489,3.0,945362389 +518,1500,4.0,945363689 +518,1513,4.0,945363973 +518,1515,4.0,945368494 +518,1517,4.0,945363948 +518,1525,1.0,945362544 +518,1526,3.0,945365164 +518,1541,4.0,945361935 +518,1544,4.0,945368544 +518,1552,4.0,945368494 +518,1562,3.0,945370127 +518,1566,5.0,945362365 +518,1569,2.0,945361813 +518,1573,4.0,945367967 +518,1580,5.0,945363689 +518,1584,4.0,945360989 +518,1586,4.0,945369721 +518,1587,4.0,945369907 +518,1588,5.0,945363835 +518,1592,4.0,945365275 +518,1593,3.0,945362108 +518,1595,4.0,945369439 +518,1597,3.0,945361865 +518,1605,5.0,945443696 +518,1606,3.0,945370171 +518,1608,4.0,945367833 +518,1614,3.0,945363877 +518,1620,4.0,945367806 +518,1629,4.0,945363127 +518,1639,4.0,945361249 +518,1641,4.0,945363651 +518,1646,3.0,945365298 +518,1647,2.0,945368237 +518,1653,4.0,945367875 +518,1661,3.0,945367906 +518,1663,3.0,945363835 +518,1672,4.0,945445778 +518,1674,4.0,945362783 +518,1682,4.0,945445542 +518,1688,4.0,945362317 +518,1689,3.0,945364843 +518,1693,5.0,945445903 +518,1702,3.0,945362544 +518,1707,4.0,945369452 +518,1713,3.0,945364141 +518,1721,1.0,945361841 +518,1732,2.0,945363786 +518,1747,4.0,945363922 +518,1760,1.0,945362389 +518,1772,4.0,945362389 +518,1777,5.0,945361720 +518,1779,3.0,945368459 +518,1784,5.0,945363705 +518,1792,4.0,945368713 +518,1799,3.0,945443806 +518,1801,5.0,945363167 +518,1805,4.0,945368041 +518,1812,3.0,945365323 +518,1821,4.0,945362920 +518,1831,3.0,945368615 +518,1835,5.0,945363040 +518,1839,2.0,945365044 +518,1845,4.0,945367806 +518,1854,4.0,945362124 +518,1855,3.0,945365111 +518,1874,3.0,945361884 +518,1876,4.0,945369907 +518,1881,4.0,945362544 +518,1885,4.0,945445028 +518,1888,4.0,945361979 +518,1894,3.0,945362083 +518,1902,1.0,945361143 +518,1907,5.0,945369169 +518,1911,4.0,945364781 +518,1917,5.0,945368615 +518,1919,4.0,945369146 +518,1947,4.0,945362206 +518,1954,4.0,945369635 +518,1955,4.0,945445569 +518,1957,3.0,945444971 +518,1958,5.0,945364758 +518,1959,2.0,945362827 +518,1960,5.0,945445751 +518,1961,5.0,945445409 +518,1962,3.0,945445554 +518,1967,4.0,945362480 +518,1968,5.0,945363806 +518,1969,3.0,945367170 +518,1991,3.0,945366994 +518,1994,4.0,945366812 +518,1995,3.0,945367187 +518,1997,4.0,945366654 +518,2000,4.0,945363898 +518,2001,3.0,945364002 +518,2002,3.0,945364997 +518,2003,4.0,945364781 +518,2005,5.0,945362514 +518,2006,4.0,945361386 +518,2011,3.0,945364806 +518,2012,3.0,945364886 +518,2014,3.0,945369146 +518,2018,3.0,945369114 +518,2020,5.0,945362762 +518,2021,4.0,945362514 +518,2022,5.0,945445932 +518,2028,4.0,945360989 +518,2036,3.0,945369439 +518,2042,3.0,945365024 +518,2044,2.0,945365379 +518,2045,4.0,945369201 +518,2046,4.0,945369114 +518,2050,2.0,945365275 +518,2052,2.0,945364098 +518,2053,3.0,945365323 +518,2054,4.0,945362480 +518,2059,4.0,945369243 +518,2072,2.0,945365467 +518,2076,3.0,945444896 +518,2078,4.0,945362183 +518,2080,3.0,945362206 +518,2081,5.0,945362294 +518,2082,4.0,945364758 +518,2083,3.0,945362294 +518,2085,4.0,945369243 +518,2087,4.0,945362206 +518,2088,3.0,945362365 +518,2089,3.0,945369169 +518,2090,5.0,945369243 +518,2092,2.0,945362365 +518,2094,4.0,945369971 +518,2095,1.0,945365064 +518,2096,5.0,945362294 +518,2097,5.0,945366945 +518,2100,4.0,945362455 +518,2105,3.0,945362480 +518,2108,1.0,945361230 +518,2109,3.0,945364141 +518,2113,3.0,945367147 +518,2114,3.0,945445612 +518,2115,3.0,945369907 +518,2118,5.0,945366654 +518,2119,3.0,945367279 +518,2120,4.0,945366895 +518,2121,5.0,945367147 +518,2122,4.0,945367170 +518,2123,2.0,945369411 +518,2124,4.0,945364781 +518,2125,5.0,945361230 +518,2126,3.0,945368562 +518,2133,4.0,945443494 +518,2134,4.0,945364806 +518,2139,4.0,945369201 +518,2140,3.0,945362514 +518,2141,4.0,945369271 +518,2143,5.0,945362544 +518,2144,5.0,945363973 +518,2145,4.0,945364758 +518,2146,3.0,945363127 +518,2154,3.0,945361979 +518,2160,3.0,945366812 +518,2161,4.0,945360989 +518,2162,3.0,945362514 +518,2168,3.0,945361120 +518,2174,4.0,945362455 +518,2193,5.0,945362480 +518,2194,5.0,945369586 +518,2240,3.0,945445778 +518,2241,2.0,945365250 +518,2243,4.0,945362805 +518,2244,3.0,945365440 +518,2245,3.0,945364027 +518,2247,3.0,945364806 +518,2248,5.0,945362783 +518,2250,3.0,945445845 +518,2253,3.0,945362514 +518,2259,3.0,945363167 +518,2261,4.0,945365467 +518,2262,3.0,945363101 +518,2263,5.0,945368183 +518,2265,3.0,945365606 +518,2266,3.0,945362063 +518,2268,5.0,945443754 +518,2273,4.0,945360989 +518,2291,5.0,945445597 +518,2292,4.0,945362108 +518,2294,3.0,945369146 +518,2296,3.0,945365549 +518,2301,3.0,945364703 +518,2302,3.0,945363768 +518,2310,5.0,945444137 +518,2316,3.0,945363127 +518,2327,3.0,945367064 +518,2331,2.0,945362920 +518,2333,4.0,945444939 +518,2335,5.0,945364980 +518,2340,3.0,945361865 +518,2345,4.0,945445448 +518,2346,3.0,945368459 +518,2354,4.0,945365229 +518,2355,5.0,945363599 +518,2366,3.0,945369564 +518,2367,3.0,945443656 +518,2369,4.0,945363077 +518,2373,3.0,945370171 +518,2375,4.0,945365323 +518,2376,4.0,945369921 +518,2378,3.0,945364980 +518,2379,2.0,945365519 +518,2380,2.0,945365573 +518,2381,2.0,945365606 +518,2382,2.0,945365606 +518,2383,2.0,945365606 +518,2385,1.0,945361935 +518,2394,4.0,945362317 +518,2396,5.0,945361120 +518,2398,4.0,945445045 +518,2402,3.0,945370149 +518,2403,3.0,945369954 +518,2405,4.0,945363101 +518,2406,5.0,945362971 +518,2407,4.0,945364045 +518,2408,3.0,945365183 +518,2409,3.0,945369954 +518,2410,3.0,945370057 +518,2411,3.0,945370149 +518,2412,3.0,945370149 +518,2416,3.0,945364098 +518,2418,3.0,945364826 +518,2420,4.0,945445735 +518,2421,3.0,945370057 +518,2422,2.0,945370214 +518,2423,3.0,945365111 +518,2424,5.0,945361935 +518,2429,4.0,945369271 +518,2430,4.0,945369201 +518,2431,5.0,945365164 +518,2432,5.0,945445932 +518,2450,2.0,945369439 +518,2453,3.0,945362455 +518,2455,4.0,945366812 +518,2456,3.0,945366994 +518,2457,4.0,945364719 +518,2458,3.0,945365379 +518,2459,1.0,945367064 +518,2463,5.0,945364863 +518,2464,3.0,945367258 +518,2468,4.0,945363202 +518,2469,3.0,945363040 +518,2470,4.0,945443529 +518,2471,3.0,945365183 +518,2473,3.0,945365298 +518,2478,4.0,945365111 +518,2485,3.0,945363040 +518,2490,4.0,945368183 +518,2496,4.0,945362943 +518,2504,3.0,945365323 +518,2506,4.0,945361813 +518,2513,3.0,945366895 +518,2514,2.0,945367229 +518,2517,4.0,945366832 +518,2518,4.0,945363973 +518,2529,5.0,945369586 +518,2558,2.0,945362971 +518,2559,3.0,945369348 +518,2565,3.0,945362262 +518,2566,3.0,945369439 +518,2567,4.0,945363898 +518,2572,4.0,945361720 +518,2574,3.0,945365345 +518,2580,3.0,945443773 +518,2581,5.0,945361690 +518,2613,4.0,945366895 +518,2615,4.0,945443696 +518,2616,1.0,945369889 +518,2617,4.0,945366967 +518,2622,5.0,945362431 +518,2628,5.0,945362514 +518,2629,3.0,945362063 +518,2640,4.0,945369608 +518,2641,3.0,945369971 +518,2642,3.0,945370149 +518,2643,2.0,945370191 +518,2657,2.0,945362317 +518,2668,3.0,945367229 +518,2671,5.0,945361428 +518,2687,5.0,945369146 +518,2694,5.0,945365135 +518,2699,3.0,945364844 +518,2701,3.0,945370171 +518,2709,4.0,945364781 +518,2713,4.0,945367064 +518,2716,4.0,945363806 +518,2717,3.0,945365275 +518,2718,3.0,945363668 +518,2720,4.0,945365519 +518,2722,4.0,945368401 +518,2723,4.0,945365087 +518,2724,5.0,945362022 +518,2733,2.0,945364061 +518,2735,3.0,945369847 +518,2736,4.0,945364027 +518,2739,5.0,945445805 +518,2746,5.0,945362334 +518,2751,4.0,945365064 +518,2752,5.0,945365345 +518,2761,5.0,945369114 +518,2786,2.0,945365467 +518,2787,4.0,945366856 +518,2791,2.0,945363618 +518,2794,2.0,945365401 +518,2796,2.0,945365519 +518,2797,5.0,945362431 +518,2798,3.0,945365573 +518,2802,4.0,945363101 +518,2803,3.0,945367967 +518,2804,5.0,945363564 +518,2805,4.0,945362063 +518,2808,3.0,945370127 +518,2815,3.0,945370035 +518,2816,2.0,945370214 +518,2822,4.0,945362022 +518,2828,3.0,945369439 +518,2857,3.0,945362262 +518,2860,4.0,945365209 +518,2861,4.0,945445823 +518,2863,3.0,945362183 +518,2872,4.0,945362848 +518,2875,4.0,945362044 +518,2881,4.0,945368729 +518,2898,3.0,945367094 +518,2900,3.0,945367147 +518,2915,3.0,945363877 +518,2916,4.0,945367669 +518,2917,3.0,945443773 +518,2918,5.0,945363737 +518,2926,4.0,945363948 +518,2941,3.0,945362317 +518,2942,3.0,945363167 +518,2950,2.0,945360964 +518,2951,4.0,945369847 +518,2953,4.0,945365379 +518,2956,3.0,945368459 +518,2968,4.0,945362455 +518,2978,5.0,945365440 +518,2985,4.0,945369721 +518,2986,3.0,945370096 +518,2987,5.0,945369483 +518,2990,3.0,945369847 +518,3004,4.0,945363184 +518,3016,4.0,945366895 +518,3017,4.0,945367039 +518,3029,3.0,945370077 +518,3034,4.0,945369114 +518,3039,4.0,945363835 +518,3040,3.0,945364002 +518,3042,3.0,945365627 +518,3048,3.0,945365627 +518,3063,3.0,945369006 +518,3070,4.0,945363806 +518,3071,5.0,945445845 +518,3072,2.0,945363835 +518,3081,4.0,945362897 +518,3100,3.0,945445409 +518,3101,4.0,945368160 +518,3102,4.0,945367520 +518,3103,3.0,945363127 +518,3104,5.0,945363668 +518,3105,4.0,945445449 +518,3107,5.0,945369756 +518,3108,3.0,945361230 +518,3112,5.0,945445429 +518,3114,5.0,945363517 +518,3130,2.0,945365519 +518,3147,5.0,945367428 +519,50,4.0,1468758676 +519,104,4.0,1469927080 +519,111,4.0,1468758621 +519,216,4.0,1469927082 +519,223,4.5,1468759080 +519,235,4.0,1468758651 +519,260,5.0,1468928013 +519,288,4.5,1468927376 +519,296,4.5,1468927377 +519,318,4.5,1468759064 +519,333,4.0,1469927097 +519,356,4.0,1469181841 +519,441,4.5,1471683093 +519,527,2.0,1469182009 +519,589,4.5,1468759092 +519,593,4.0,1468758652 +519,608,4.0,1468758645 +519,750,4.0,1468758656 +519,858,4.5,1468759032 +519,923,4.5,1468759098 +519,924,5.0,1468927451 +519,1036,4.5,1468759090 +519,1078,4.5,1471685055 +519,1080,5.0,1468759663 +519,1089,5.0,1468927109 +519,1136,4.5,1469182184 +519,1193,4.5,1468759113 +519,1194,5.0,1471150616 +519,1199,5.0,1471150612 +519,1201,4.5,1468927525 +519,1203,5.0,1468927483 +519,1206,5.0,1468758399 +519,1213,5.0,1471150621 +519,1219,3.5,1469181965 +519,1220,4.5,1468927253 +519,1222,4.5,1468758988 +519,1228,4.5,1468758999 +519,1230,4.5,1471685031 +519,1240,4.5,1468758883 +519,1244,4.5,1471685039 +519,1251,5.0,1467009776 +519,1258,4.5,1468758859 +519,1259,4.0,1468758676 +519,1261,4.5,1468927239 +519,1270,5.0,1468927433 +519,1278,4.0,1473235397 +519,1380,4.0,1468926782 +519,1517,4.0,1469927071 +519,1704,4.0,1468767273 +519,1732,5.0,1463339036 +519,1753,4.5,1469926965 +519,1954,5.0,1466851007 +519,2019,5.0,1466850987 +519,2174,4.0,1468758662 +519,2324,5.0,1463338874 +519,2363,4.0,1468927863 +519,2395,4.5,1468927281 +519,2502,4.5,1469927131 +519,2700,4.5,1468758759 +519,2716,4.5,1468927255 +519,2791,4.5,1468758753 +519,2857,5.0,1463338907 +519,2959,5.0,1463338913 +519,2973,5.0,1471685051 +519,3033,4.0,1468760056 +519,3253,4.0,1469927063 +519,3307,5.0,1463338910 +519,3424,3.5,1469182044 +519,3481,4.0,1469366330 +519,3535,5.0,1468758557 +519,3552,3.5,1469927092 +519,3608,4.0,1469927088 +519,3671,4.5,1469927119 +519,3897,4.0,1468758687 +519,4002,5.0,1466850909 +519,4571,4.5,1469927116 +519,4973,5.0,1463338876 +519,4979,4.5,1468927277 +519,4993,4.5,1468927285 +519,5101,5.0,1471685742 +519,5618,5.0,1466950342 +519,5669,4.5,1470072626 +519,5673,4.0,1468758689 +519,5686,4.0,1468758644 +519,5772,5.0,1466960457 +519,6001,4.0,1468758647 +519,6122,5.0,1471685732 +519,6433,4.0,1468758653 +519,6669,5.0,1474422697 +519,6711,5.0,1463338905 +519,6807,3.5,1469182179 +519,6874,4.5,1468927126 +519,6993,4.5,1471685043 +519,7022,5.0,1468755425 +519,7302,5.0,1463338941 +519,7361,4.5,1468758956 +519,7438,4.5,1468927125 +519,7451,4.5,1469927147 +519,8464,2.0,1469182047 +519,8807,4.5,1469927006 +519,8874,4.5,1468758890 +519,8917,4.5,1469927142 +519,26326,5.0,1463339081 +519,27773,5.0,1469190254 +519,30810,4.0,1468758580 +519,32587,5.0,1463338951 +519,35836,4.5,1469927155 +519,38061,3.5,1469181970 +519,42163,5.0,1471685735 +519,44195,3.0,1469181973 +519,46578,4.0,1469960428 +519,48385,4.5,1468758840 +519,50872,3.5,1469182067 +519,51255,4.0,1469927049 +519,54503,5.0,1463338939 +519,61024,4.0,1469926999 +519,61132,4.5,1468758835 +519,67997,4.0,1469619273 +519,68157,4.5,1468928143 +519,71535,4.0,1469927060 +519,71899,5.0,1463338920 +519,72171,4.5,1468758767 +519,72226,3.5,1469927055 +519,78836,5.0,1469269706 +519,79702,4.0,1468758681 +519,86377,5.0,1470072674 +519,86882,4.5,1471685075 +519,89745,3.0,1469182070 +519,89904,5.0,1469177091 +519,97306,4.0,1468758625 +519,97913,4.0,1468758622 +519,99114,4.5,1468928138 +519,99764,5.0,1463339075 +519,102217,5.0,1470072722 +519,102800,4.5,1468758783 +519,103341,4.0,1469927078 +519,105844,4.0,1469190294 +519,106766,4.0,1468758602 +519,106916,3.0,1469182006 +519,106920,5.0,1463338931 +519,108932,4.0,1468758603 +519,109374,5.0,1463338935 +519,112183,4.0,1468758604 +519,115569,4.0,1468758598 +519,118890,5.0,1470072711 +519,120805,5.0,1471685805 +519,122882,3.0,1469181999 +519,122886,4.0,1468758679 +519,122904,4.0,1469927090 +519,127202,4.0,1469960406 +519,128360,4.5,1468928141 +519,128846,5.0,1470075328 +519,129514,5.0,1471686733 +519,130970,5.0,1471686745 +519,134130,4.5,1470041802 +519,134853,3.5,1469181951 +519,136445,5.0,1471686897 +519,136447,5.0,1471686728 +519,140265,5.0,1471686899 +519,140715,4.5,1469366290 +520,1,3.0,1142028487 +520,32,4.5,1142024573 +520,47,5.0,1142025848 +520,48,2.0,1142024211 +520,50,5.0,1142025871 +520,70,1.5,1142444254 +520,111,5.0,1142024764 +520,157,2.0,1143503629 +520,163,3.0,1142024149 +520,231,4.0,1142028927 +520,236,2.0,1142024187 +520,260,5.0,1142025781 +520,292,2.5,1142029728 +520,296,4.0,1142025901 +520,318,5.0,1142025816 +520,457,3.5,1146596079 +520,466,1.5,1142024182 +520,475,3.5,1142024826 +520,480,4.0,1143504870 +520,500,3.0,1142028932 +520,520,2.0,1142024215 +520,527,5.0,1142026274 +520,539,3.0,1143503593 +520,588,4.0,1142028522 +520,593,4.5,1142029975 +520,595,4.5,1142028512 +520,648,3.5,1142028862 +520,733,3.0,1143503503 +520,750,4.5,1142024717 +520,780,2.5,1143503541 +520,858,5.0,1142024599 +520,912,5.0,1142024691 +520,1047,2.0,1143503160 +520,1060,4.0,1142028071 +520,1089,4.0,1142026006 +520,1090,5.0,1142024644 +520,1093,2.5,1143503165 +520,1095,4.5,1142024770 +520,1097,3.5,1143504862 +520,1193,4.5,1142024649 +520,1196,5.0,1142025802 +520,1198,4.0,1142025770 +520,1200,4.0,1146596136 +520,1208,5.0,1142024737 +520,1210,4.0,1142025807 +520,1213,4.0,1142024621 +520,1214,4.0,1143503355 +520,1221,5.0,1142024635 +520,1234,5.0,1142024219 +520,1247,4.0,1142024742 +520,1252,5.0,1142024165 +520,1278,3.5,1142024141 +520,1291,3.0,1142028147 +520,1358,3.5,1142024143 +520,1387,3.0,1143504859 +520,1393,3.5,1142029737 +520,1396,3.0,1142029543 +520,1544,1.5,1143504879 +520,1573,1.5,1143503521 +520,1617,4.5,1142024594 +520,1627,1.5,1143503607 +520,1639,3.5,1142024238 +520,1653,3.5,1142027500 +520,1676,2.5,1143503613 +520,1682,4.0,1143503430 +520,1704,4.0,1142029963 +520,1784,3.5,1142029744 +520,1912,3.5,1142444277 +520,1917,1.0,1143503533 +520,1953,4.0,1142024746 +520,1961,4.5,1142029957 +520,2028,4.0,1143504852 +520,2067,4.5,1142024843 +520,2115,3.5,1143504864 +520,2194,4.0,1142024171 +520,2268,4.0,1142029949 +520,2297,2.5,1142029732 +520,2321,3.0,1142028079 +520,2329,4.5,1142025857 +520,2353,2.0,1142024207 +520,2355,3.5,1142028499 +520,2389,2.0,1143503633 +520,2571,5.0,1142029984 +520,2692,3.5,1142024217 +520,2696,4.0,1142028573 +520,2762,3.5,1142029970 +520,2791,3.0,1142029528 +520,2858,4.5,1142025879 +520,2959,4.5,1142025834 +520,3300,3.5,1143503584 +520,3301,3.0,1143503589 +520,3316,0.5,1142028916 +520,3317,4.0,1142444501 +520,3566,2.5,1143503154 +520,3578,4.5,1146596105 +520,3593,0.5,1143503644 +520,3623,1.0,1142028865 +520,3753,3.0,1143503552 +520,3755,2.5,1142444264 +520,3793,3.5,1142028455 +520,3977,0.5,1142024196 +520,4011,4.0,1146596085 +520,4073,1.0,1143503216 +520,4226,4.0,1142025827 +520,4262,3.5,1146596203 +520,4306,2.0,1142028560 +520,4310,1.0,1142029723 +520,4322,3.5,1146596192 +520,4370,2.0,1143504882 +520,4499,1.0,1143503130 +520,4816,3.0,1142029694 +520,4878,3.0,1146596143 +520,4886,4.5,1142024156 +520,4896,3.5,1142025674 +520,4963,3.5,1142444249 +520,4973,5.0,1142025821 +520,4974,1.0,1142026954 +520,4993,5.0,1142025788 +520,5349,2.5,1142028105 +520,5445,3.5,1143504856 +520,5449,2.0,1142028611 +520,5816,4.5,1142025667 +520,5952,4.0,1142025797 +520,5989,4.0,1143504854 +520,6249,0.5,1142029713 +520,6333,3.0,1142028459 +520,6365,3.5,1143503333 +520,6377,3.5,1142028477 +520,6503,0.5,1142028878 +520,6539,2.5,1142028115 +520,6662,4.0,1142024631 +520,6796,4.5,1142029747 +520,6870,4.5,1142024702 +520,6934,3.0,1143503336 +520,7153,4.0,1142024607 +520,7163,1.0,1143503182 +520,7438,4.0,1146596162 +520,8360,1.5,1142028555 +520,8368,3.5,1142025662 +520,8636,3.5,1142028095 +520,8784,3.0,1143503353 +520,8961,4.0,1142024588 +520,30707,4.5,1146596088 +520,30749,4.5,1142024597 +520,32587,3.5,1146596171 +520,33166,4.5,1142024642 +520,34048,0.5,1143504893 +520,36517,3.5,1142027606 +520,36529,3.5,1142027379 +520,37733,3.0,1143503401 +520,39292,4.5,1142447926 +520,40815,4.0,1142025648 +520,41566,3.5,1142025688 +520,44191,3.5,1143502917 +521,50,4.5,1370072261 +521,236,3.5,1370072069 +521,260,4.5,1370072777 +521,318,4.5,1370072453 +521,333,3.5,1370072102 +521,376,3.5,1370072072 +521,471,3.5,1370072127 +521,527,4.5,1370072270 +521,593,4.5,1370072804 +521,608,5.0,1370072968 +521,805,3.5,1370072058 +521,852,4.0,1370072131 +521,858,5.0,1370072258 +521,904,4.5,1370072317 +521,908,4.5,1370072695 +521,1172,5.0,1370072862 +521,1196,5.0,1370072806 +521,1197,4.0,1370072817 +521,1198,4.0,1370072713 +521,1203,5.0,1370072709 +521,1207,4.5,1370072738 +521,1213,5.0,1370072787 +521,1221,5.0,1370072280 +521,1275,4.0,1370072105 +521,1282,3.5,1370072034 +521,1372,4.0,1370072123 +521,1375,3.0,1370072084 +521,1377,4.0,1370072032 +521,1597,4.0,1370072111 +521,1645,4.0,1370072091 +521,1729,4.5,1370073540 +521,1747,3.5,1370072095 +521,1876,3.0,1370072043 +521,1909,3.0,1370072048 +521,2100,3.0,1370072055 +521,2324,4.5,1370072794 +521,2329,4.5,1370072830 +521,2571,5.0,1370072763 +521,2858,5.0,1370072812 +521,2871,3.5,1370073551 +521,2959,4.0,1370072723 +521,4226,4.0,1370072767 +521,4993,4.5,1370072888 +521,7502,5.0,1370072266 +521,44555,5.0,1370072485 +521,48516,4.0,1370073507 +521,58559,4.5,1370072412 +521,66934,4.5,1370072904 +521,79132,4.0,1370072751 +522,2,2.5,1391353926 +522,19,3.5,1391351897 +522,32,3.0,1391353917 +522,47,4.0,1391350444 +522,50,3.0,1391346849 +522,110,4.0,1391350258 +522,122,2.5,1391353786 +522,165,3.0,1391353890 +522,173,3.0,1391354262 +522,193,2.0,1391346544 +522,231,3.5,1391374553 +522,293,3.0,1391350440 +522,296,4.0,1391350322 +522,344,4.0,1391374544 +522,355,2.0,1391351910 +522,356,4.0,1391350391 +522,364,2.5,1391351469 +522,367,3.0,1391353098 +522,370,3.0,1391352683 +522,420,3.0,1391352264 +522,431,3.5,1391346486 +522,442,3.5,1391354252 +522,466,3.5,1391352616 +522,485,2.5,1391351913 +522,508,3.5,1391375657 +522,527,3.0,1391346845 +522,616,2.0,1391346526 +522,673,2.5,1391351885 +522,733,3.0,1391353194 +522,762,1.5,1391351878 +522,778,3.5,1391350346 +522,784,2.5,1391374587 +522,858,4.5,1391346840 +522,1036,3.0,1391350086 +522,1059,2.0,1391375308 +522,1089,4.0,1391350213 +522,1092,1.5,1391346446 +522,1097,3.0,1391350034 +522,1101,1.5,1391354071 +522,1129,4.0,1391354179 +522,1198,4.0,1391346897 +522,1201,3.5,1391350089 +522,1206,4.0,1391350118 +522,1208,3.5,1391350069 +522,1213,4.0,1391350093 +522,1220,5.0,1391349962 +522,1221,4.5,1391346862 +522,1222,4.0,1391350128 +522,1225,3.0,1391350150 +522,1227,3.0,1391349701 +522,1240,3.5,1391350021 +522,1247,3.5,1391350027 +522,1249,3.5,1391346492 +522,1270,4.5,1391350098 +522,1273,3.5,1391350360 +522,1278,4.0,1391349956 +522,1391,2.5,1391375033 +522,1393,3.5,1391354062 +522,1408,3.5,1391353454 +522,1466,2.5,1391349980 +522,1485,2.0,1391374528 +522,1537,3.0,1391346781 +522,1556,1.5,1391346690 +522,1610,3.5,1391350065 +522,1680,3.0,1391346624 +522,1682,4.0,1391351595 +522,1721,2.5,1391375337 +522,1732,3.5,1391350152 +522,1831,2.0,1391346556 +522,1917,2.5,1391353181 +522,1923,3.0,1391374781 +522,1954,3.0,1391349739 +522,1961,4.0,1391350246 +522,1997,2.5,1391349719 +522,2028,3.0,1391350133 +522,2125,2.5,1391346674 +522,2194,3.0,1391349988 +522,2205,3.5,1391354406 +522,2324,3.5,1391350500 +522,2329,3.5,1391350381 +522,2378,3.5,1391352625 +522,2379,2.5,1391352220 +522,2396,3.0,1391350663 +522,2403,3.5,1391354227 +522,2411,4.0,1391354213 +522,2571,4.0,1391350315 +522,2706,3.0,1391353651 +522,2710,1.0,1391354281 +522,2716,4.0,1391351583 +522,2762,2.5,1391350294 +522,2959,3.5,1391346893 +522,3039,3.5,1391353767 +522,3173,4.0,1391354045 +522,3174,3.5,1391374533 +522,3178,3.5,1391346731 +522,3273,3.0,1391352150 +522,3301,3.0,1391354361 +522,3409,2.5,1391353703 +522,3421,4.0,1391349743 +522,3578,4.5,1391350163 +522,3617,3.5,1391353692 +522,3623,1.5,1391354095 +522,3752,4.0,1391374511 +522,3831,3.0,1391353853 +522,3868,4.0,1391346636 +522,3948,4.0,1391352784 +522,4019,4.0,1391346680 +522,4022,2.5,1391375639 +522,4084,3.0,1391346772 +522,4239,4.5,1391353142 +522,4262,3.0,1391349952 +522,4343,3.5,1391352096 +522,4388,2.5,1391352010 +522,4718,3.5,1391353653 +522,4816,4.5,1391352766 +522,4844,2.5,1391354377 +522,4963,4.0,1391350622 +522,4973,3.0,1391346900 +522,4974,2.5,1391352411 +522,4979,1.5,1391374735 +522,4993,4.0,1391350311 +522,4995,4.5,1391350753 +522,5220,1.5,1391352491 +522,5225,3.0,1391350682 +522,5459,3.0,1391352108 +522,5507,2.5,1391346778 +522,5523,2.5,1391353041 +522,5541,2.5,1391352961 +522,5710,2.5,1391352667 +522,5952,3.5,1391350288 +522,5956,4.0,1391353464 +522,5989,4.5,1391353485 +522,6290,2.0,1391354307 +522,6373,4.0,1391353088 +522,6377,3.0,1391351389 +522,6503,1.5,1391352089 +522,6539,3.5,1391350186 +522,6711,3.0,1391350121 +522,6763,2.0,1391374850 +522,6793,1.5,1391352161 +522,6863,4.0,1391375012 +522,6874,4.0,1391350207 +522,6888,3.0,1391352142 +522,6942,3.0,1391351283 +522,6947,2.5,1391346660 +522,7143,4.0,1391348597 +522,7173,3.5,1391370881 +522,7325,4.0,1391352939 +522,7438,4.0,1391350241 +522,8363,3.0,1391351869 +522,8528,4.0,1391352874 +522,8529,3.0,1391375788 +522,8641,2.5,1391374730 +522,8958,4.0,1391351233 +522,8961,3.0,1391350904 +522,8984,2.5,1391353587 +522,26322,3.5,1391353638 +522,26732,4.0,1391353980 +522,30707,3.0,1391351014 +522,30825,3.5,1391352851 +522,32587,4.0,1391350292 +522,33660,3.5,1391350809 +522,33794,3.5,1391350083 +522,34162,4.0,1391353001 +522,35836,3.5,1391353069 +522,36517,2.5,1391374003 +522,41285,3.5,1391353374 +522,42011,2.0,1391374592 +522,44191,4.0,1391351157 +522,44665,3.5,1391354420 +522,45447,3.0,1391353572 +522,48516,4.5,1391350073 +522,49396,3.0,1391375018 +522,49651,2.0,1391354210 +522,53322,3.5,1391353596 +522,55247,3.5,1391350610 +522,55261,1.0,1391374847 +522,56367,3.0,1391351726 +522,58156,3.5,1391352926 +522,58559,3.5,1391346879 +522,59014,2.0,1391352001 +522,59900,2.0,1391354132 +522,60950,2.5,1391353384 +522,61132,2.5,1391374803 +522,62250,3.0,1391353969 +522,63082,3.0,1391353440 +522,64614,4.0,1391350017 +522,64622,2.5,1391351297 +522,64839,4.5,1391350843 +522,64969,4.0,1391374556 +522,65130,3.0,1391375316 +522,66744,4.0,1391353957 +522,68157,4.5,1391349982 +522,68554,3.0,1391375809 +522,68954,2.5,1391350228 +522,69122,4.5,1391351265 +522,70565,4.5,1391352889 +522,71464,2.5,1391353280 +522,74458,3.5,1391349958 +522,78469,2.5,1391352910 +522,79132,3.5,1391350196 +522,79695,2.0,1391353867 +522,80463,4.0,1391350054 +522,81831,4.0,1391352742 +522,81845,3.5,1391349985 +522,81932,4.5,1391350429 +522,82459,3.5,1391353316 +522,82852,2.5,1391374855 +522,86911,3.5,1391349110 +522,87869,2.0,1391349147 +522,88405,2.5,1391349066 +522,89774,2.5,1391350136 +522,90405,4.0,1391349194 +522,91483,1.5,1391347639 +522,91500,4.0,1391347823 +522,91529,4.5,1391347695 +522,91542,3.5,1391349904 +522,91628,1.5,1391349396 +522,93287,3.5,1391375023 +522,94777,3.0,1391347979 +522,95307,2.0,1391348073 +522,95449,1.5,1391347957 +522,95720,2.5,1391348276 +522,95949,3.5,1391349197 +522,96448,3.5,1391351915 +522,97168,2.5,1391347968 +522,97304,4.5,1391347579 +522,97752,3.0,1391347665 +522,97860,2.0,1391347886 +522,97921,2.5,1391348117 +522,97923,3.0,1391347758 +522,98083,3.0,1391349234 +522,98124,4.0,1391347603 +522,98961,2.5,1391348305 +522,99112,3.0,1391348315 +522,99114,4.0,1391347713 +522,99145,3.5,1391347837 +522,99813,4.5,1391347065 +522,100498,2.0,1391347199 +522,101531,2.0,1391347365 +522,102686,3.5,1391347209 +522,103137,1.5,1391347084 +522,103235,3.0,1391347075 +522,103984,2.0,1391348374 +522,104303,1.5,1391347274 +522,104913,4.0,1391347411 +522,106100,3.5,1391370798 +522,106487,3.5,1391347240 +522,106782,5.0,1391347502 +522,106916,3.0,1391346978 +523,16,1.0,1202235294 +523,48,4.0,1202235506 +523,50,5.0,1202234760 +523,110,5.0,1202234713 +523,141,4.0,1202234912 +523,150,3.5,1202234719 +523,253,4.0,1202234890 +523,260,4.5,1202234710 +523,266,4.5,1202235266 +523,296,3.5,1202234688 +523,318,5.0,1202234699 +523,349,4.0,1202234806 +523,356,4.5,1202234691 +523,364,4.0,1202234802 +523,367,4.5,1202234835 +523,377,4.0,1202234758 +523,380,3.5,1202234733 +523,434,3.5,1202234873 +523,480,4.0,1202234698 +523,500,4.0,1202234821 +523,520,4.0,1202235479 +523,539,5.0,1202234856 +523,555,5.0,1202235485 +523,587,4.5,1202234854 +523,588,4.0,1202234753 +523,589,5.0,1202234726 +523,590,4.5,1202234722 +523,593,4.5,1202234694 +523,595,5.0,1202234793 +523,628,4.5,1202235641 +523,648,4.5,1202234773 +523,733,4.5,1202234818 +523,736,3.0,1202234799 +523,780,3.0,1202234729 +523,783,3.5,1202235691 +523,784,2.5,1202235423 +523,858,4.5,1202234811 +523,1028,4.0,1202235561 +523,1036,4.5,1202234916 +523,1092,4.0,1202235697 +523,1101,4.5,1202235207 +523,1120,3.0,1202235808 +523,1183,4.5,1202235282 +523,1196,5.0,1202234765 +523,1197,5.0,1202234866 +523,1198,5.0,1202234775 +523,1206,1.5,1202235195 +523,1210,4.5,1202234747 +523,1225,4.0,1202235215 +523,1240,4.0,1202234863 +523,1246,4.5,1202235262 +523,1258,4.0,1202235221 +523,1265,5.0,1202234892 +523,1291,5.0,1202234908 +523,1391,3.0,1202235332 +523,1407,3.5,1202235308 +523,1527,3.5,1202234975 +523,1552,4.0,1202235527 +523,1569,3.5,1202235773 +523,1573,4.0,1202235284 +523,1580,4.0,1202234845 +523,1617,5.0,1202234896 +523,1645,4.0,1202235717 +523,1682,4.0,1202235237 +523,1704,4.5,1202234971 +523,1721,5.0,1202234847 +523,1777,3.5,1202235570 +523,1876,3.5,1202235656 +523,1917,3.5,1202235170 +523,1923,4.0,1202234985 +523,2081,5.0,1202235510 +523,2115,4.0,1202235259 +523,2161,4.0,1202235811 +523,2302,2.5,1202235493 +523,2324,4.0,1202235447 +523,2329,4.5,1202235440 +523,2396,4.0,1202234951 +523,2571,4.5,1202234783 +523,2617,3.5,1202235409 +523,2628,3.5,1202234877 +523,2640,4.0,1202235356 +523,2683,4.0,1202234980 +523,2762,4.5,1202234824 +523,2791,4.0,1202235299 +523,2858,4.0,1202234778 +523,2916,4.0,1202235231 +523,2942,3.0,1202233633 +523,2985,4.0,1202235591 +523,3100,4.0,1202233570 +523,3176,4.0,1202235540 +523,3194,4.0,1202233886 +523,3481,3.5,1202235467 +523,3578,5.0,1202234939 +523,3793,4.0,1202234993 +523,3897,3.0,1202235303 +523,4006,4.5,1202233681 +523,4085,4.0,1202235780 +523,4568,4.0,1202234465 +523,4662,4.0,1202234024 +523,4896,4.0,1202235608 +523,4963,4.0,1202235370 +523,4979,2.5,1202235759 +523,4993,4.5,1202234936 +523,4995,4.5,1202235398 +523,5349,4.0,1202235325 +523,5418,4.5,1202235616 +523,5445,4.0,1202235255 +523,5952,4.5,1202234966 +523,5989,4.0,1202235685 +523,6365,4.0,1202235649 +523,6377,4.0,1202235418 +523,6506,4.0,1202234576 +523,6539,4.5,1202235342 +523,6711,4.0,1202235700 +523,6874,4.0,1202235567 +523,7153,4.5,1202235225 +523,7361,3.0,1202235634 +523,7844,4.0,1202234504 +523,8961,4.5,1202235644 +523,26606,4.5,1202234614 +523,36525,3.0,1202234106 +523,46530,3.5,1202233714 +523,48061,4.5,1202234656 +523,49772,4.0,1202234430 +523,51084,3.5,1202234151 +523,53322,3.5,1202233911 +524,32,4.0,1256288131 +524,135,3.0,1256285340 +524,296,3.0,1256287686 +524,303,3.0,1256285308 +524,428,3.5,1256285463 +524,481,3.0,1256285395 +524,648,2.5,1256287786 +524,1020,5.0,1256285353 +524,1186,0.5,1256285276 +524,1206,4.0,1256288143 +524,1717,2.0,1256285325 +524,2013,3.0,1256285414 +524,2116,4.0,1256285429 +524,2231,4.5,1256293058 +524,2329,4.0,1256289301 +524,2333,1.5,1256285478 +524,2421,3.0,1256285383 +524,2485,2.0,1256285403 +524,2542,5.0,1256287500 +524,2596,4.5,1256291557 +524,2662,3.5,1256285454 +524,2959,4.0,1256289304 +524,2991,3.0,1256285490 +524,2997,3.5,1256288096 +524,3285,5.0,1256289575 +524,3578,4.5,1256288061 +524,3698,2.0,1256285360 +524,3793,3.0,1256287705 +524,4011,5.0,1256287527 +524,4226,4.0,1256287751 +524,4239,4.5,1256290483 +524,4878,5.0,1256290743 +524,4896,4.5,1256287622 +524,4963,4.0,1256287748 +524,5151,3.5,1256293014 +524,5225,4.0,1256289641 +524,5816,4.5,1256287604 +524,5956,4.5,1256289607 +524,6502,4.5,1256288187 +524,6539,3.0,1256287723 +524,7438,3.5,1256287702 +524,8368,4.5,1256287620 +524,8873,4.0,1256289656 +524,8874,5.0,1256288213 +524,8961,3.0,1256287691 +524,27831,4.5,1256288260 +524,33794,4.0,1256288157 +524,37731,5.0,1256287408 +524,40815,4.5,1256287607 +524,48780,4.5,1256289542 +524,49272,3.5,1256287711 +524,51662,4.0,1256288083 +524,52606,4.0,1256291980 +524,54001,4.5,1256287614 +524,54997,4.5,1256293001 +524,55282,4.5,1256290996 +524,57669,4.5,1256290750 +524,58559,4.0,1256287776 +524,58803,4.5,1256293070 +524,59721,4.0,1256293088 +524,60857,4.0,1256286384 +524,64957,3.5,1256291306 +524,69844,4.5,1256287611 +524,71810,2.0,1256287730 +525,1,2.0,1024928544 +525,2,2.0,1024929394 +525,6,4.0,1024929782 +525,10,3.0,1024930416 +525,21,4.0,1024929782 +525,31,4.0,1024928582 +525,32,3.0,1024928789 +525,110,5.0,1024929678 +525,126,3.0,1024929518 +525,173,3.0,1024929133 +525,185,4.0,1024929098 +525,260,5.0,1024928693 +525,353,2.0,1024930416 +525,356,3.0,1024928599 +525,367,1.0,1024929394 +525,380,5.0,1024930101 +525,405,1.0,1024928996 +525,442,5.0,1024928940 +525,474,5.0,1024929720 +525,480,3.0,1024928636 +525,493,3.0,1024929828 +525,541,3.0,1024928693 +525,589,5.0,1024929222 +525,592,2.0,1024929828 +525,651,1.0,1024928544 +525,673,1.0,1024929488 +525,733,4.0,1024929806 +525,788,3.0,1024929440 +525,810,2.0,1024929506 +525,858,5.0,1024929565 +525,903,4.0,1024929257 +525,924,5.0,1024928693 +525,1019,3.0,1024928912 +525,1036,5.0,1024929278 +525,1097,3.0,1024928738 +525,1101,3.0,1024930101 +525,1127,5.0,1024929806 +525,1196,5.0,1024929565 +525,1200,4.0,1024928771 +525,1210,5.0,1024928771 +525,1214,4.0,1024929257 +525,1221,5.0,1024928483 +525,1222,4.0,1024929678 +525,1240,5.0,1024929615 +525,1270,4.0,1024928738 +525,1291,3.0,1024929615 +525,1301,5.0,1024928771 +525,1320,4.0,1024929070 +525,1334,4.0,1024928964 +525,1356,5.0,1024929720 +525,1372,5.0,1024928964 +525,1374,5.0,1024929631 +525,1375,5.0,1024929030 +525,1552,5.0,1024928582 +525,1573,5.0,1024928811 +525,1580,5.0,1024928835 +525,1608,3.0,1024930416 +525,1610,5.0,1024929678 +525,1721,3.0,1024928448 +525,1722,4.0,1024930416 +525,1912,4.0,1024929631 +525,1917,4.0,1024928996 +525,1918,5.0,1024929782 +525,1920,1.0,1024929440 +525,1954,3.0,1024929720 +525,1967,4.0,1024929350 +525,2000,5.0,1024929741 +525,2005,2.0,1024929378 +525,2006,3.0,1024929806 +525,2011,4.0,1024928981 +525,2012,4.0,1024928981 +525,2023,5.0,1024928582 +525,2105,4.0,1024929048 +525,2115,3.0,1024929741 +525,2143,4.0,1024929440 +525,2167,5.0,1024929741 +525,2193,4.0,1024929378 +525,2194,4.0,1024929697 +525,2253,3.0,1024929488 +525,2273,4.0,1024930431 +525,2353,4.0,1024929782 +525,2407,2.0,1024928892 +525,2490,4.0,1024929848 +525,2526,3.0,1024928636 +525,2527,5.0,1024928964 +525,2529,4.0,1024929697 +525,2533,4.0,1024928771 +525,2571,5.0,1024929222 +525,2628,4.0,1024928892 +525,2640,3.0,1024929782 +525,2656,3.0,1024929098 +525,2699,3.0,1024928940 +525,2722,4.0,1024929048 +525,2762,5.0,1024929205 +525,2808,3.0,1024929116 +525,2916,5.0,1024929741 +525,2947,4.0,1024929678 +525,2948,4.0,1024929720 +525,2949,3.0,1024929782 +525,2968,4.0,1024928738 +525,2985,4.0,1024928912 +525,3033,3.0,1024929030 +525,3147,3.0,1024929278 +525,3175,2.0,1024928811 +525,3386,4.0,1024928599 +525,3438,1.0,1024929419 +525,3439,1.0,1024929458 +525,3440,1.0,1024929506 +525,3489,3.0,1024929458 +525,3578,5.0,1024929697 +525,3635,5.0,1024929782 +525,3697,4.0,1024928849 +525,3698,4.0,1024928892 +525,3699,4.0,1024928867 +525,3702,2.0,1024928849 +525,3703,2.0,1024928738 +525,3704,2.0,1024929098 +525,3729,5.0,1024929828 +525,3745,4.0,1024928892 +525,3793,5.0,1024928789 +525,3826,1.0,1024929146 +525,3889,1.0,1024929488 +525,3986,4.0,1024929098 +525,4085,3.0,1024929697 +525,4213,4.0,1024928940 +525,4306,5.0,1024929336 +525,4443,5.0,1024928964 +525,4480,3.0,1024929161 +525,4572,4.0,1024929806 +525,4643,4.0,1024928964 +525,4855,4.0,1024929848 +525,4874,1.0,1024929378 +525,4896,4.0,1024929336 +525,4911,3.0,1024929419 +525,4993,5.0,1024929336 +525,5049,4.0,1024930416 +525,5349,4.0,1024929652 +525,5378,5.0,1024928940 +526,1,4.0,1428641074 +526,1653,4.0,1436547029 +526,4226,4.0,1428640859 +526,4370,4.5,1436545295 +526,4720,4.0,1428640860 +526,4973,3.5,1436545283 +526,4995,5.0,1436545465 +526,5445,5.0,1436545933 +526,5502,4.5,1436545288 +526,5679,4.0,1428640718 +526,6333,4.0,1428640832 +526,6373,4.0,1428640730 +526,7153,3.5,1428640705 +526,8368,4.0,1436545245 +526,8644,3.5,1428640719 +526,8961,4.0,1428641077 +526,39427,4.5,1428640892 +526,47099,3.5,1436546773 +526,50872,4.5,1428641066 +526,60069,4.5,1436545199 +526,79132,4.0,1428640790 +526,85414,3.0,1436545875 +526,88744,4.0,1428640857 +526,91658,4.0,1428640873 +526,109487,5.0,1443743830 +526,112556,4.0,1436545263 +526,134853,4.5,1436545257 +527,19,1.5,1281233953 +527,25,3.0,1281233879 +527,32,3.5,1281232477 +527,34,1.0,1281234175 +527,36,2.0,1281233906 +527,39,2.5,1281233840 +527,47,3.5,1281233678 +527,50,3.5,1281233179 +527,62,3.5,1281233910 +527,94,4.5,1281233318 +527,110,3.5,1281233623 +527,165,1.0,1281233689 +527,208,3.0,1281233792 +527,231,1.5,1281233716 +527,260,4.0,1281233619 +527,292,2.0,1281233802 +527,293,4.5,1281233360 +527,296,3.0,1281233603 +527,356,3.5,1281233606 +527,367,0.5,1281233720 +527,372,3.5,1281232053 +527,434,1.0,1281233832 +527,480,2.0,1281233614 +527,500,1.0,1281233710 +527,539,2.5,1281233778 +527,541,4.0,1281233017 +527,585,0.5,1281232014 +527,586,1.0,1281233824 +527,587,1.0,1281233760 +527,590,3.5,1281233638 +527,593,3.5,1281233610 +527,597,2.0,1281233713 +527,608,3.5,1281233281 +527,736,0.5,1281233696 +527,778,3.5,1281233941 +527,858,4.5,1281233686 +527,912,4.0,1281233891 +527,924,3.0,1281233900 +527,1036,3.5,1281233814 +527,1073,4.0,1281234227 +527,1080,2.5,1281234031 +527,1089,3.5,1281233882 +527,1097,3.0,1281233733 +527,1101,3.5,1281233996 +527,1136,4.5,1281233768 +527,1196,3.0,1281233658 +527,1197,5.0,1281233751 +527,1198,4.0,1281233667 +527,1206,2.0,1281233255 +527,1208,3.5,1281232990 +527,1210,3.0,1281233635 +527,1220,4.5,1281234057 +527,1222,3.5,1281232889 +527,1225,2.5,1281234016 +527,1235,4.0,1281232106 +527,1240,3.0,1281234236 +527,1247,2.5,1281233068 +527,1258,3.5,1281233965 +527,1259,3.0,1281233163 +527,1263,4.5,1281233046 +527,1265,4.0,1281233766 +527,1266,3.5,1281233174 +527,1276,4.5,1281233037 +527,1291,1.5,1281233787 +527,1293,2.5,1281232009 +527,1307,3.0,1281233937 +527,1371,4.0,1281232033 +527,1387,2.5,1281233962 +527,1513,1.5,1281232084 +527,1517,2.5,1281233919 +527,1580,3.0,1281233729 +527,1610,2.5,1281233972 +527,1682,3.5,1281233947 +527,1704,4.0,1281233851 +527,1721,2.0,1281233736 +527,1918,1.0,1281232047 +527,1923,3.5,1281234241 +527,1960,4.0,1281232115 +527,1962,3.0,1281232089 +527,1968,4.0,1281233967 +527,2012,1.5,1281234013 +527,2028,4.5,1281233701 +527,2073,4.5,1281232624 +527,2115,3.5,1281234049 +527,2160,4.0,1281232118 +527,2174,3.5,1281234010 +527,2248,4.5,1281232056 +527,2329,4.0,1281232982 +527,2355,0.5,1281234001 +527,2396,3.5,1281233874 +527,2427,4.0,1281232066 +527,2502,4.5,1281234284 +527,2571,4.0,1281234205 +527,2628,1.0,1281233756 +527,2710,3.0,1281234040 +527,2852,3.0,1281233160 +527,2858,4.5,1281233214 +527,2871,4.0,1281232070 +527,2915,2.5,1281232073 +527,2916,3.0,1281234025 +527,2918,4.5,1281233976 +527,2959,4.5,1281233742 +527,3210,3.5,1281232099 +527,3347,3.0,1281233110 +527,3578,4.5,1281233781 +527,3703,3.5,1281232077 +527,3996,4.5,1281234172 +527,4027,3.5,1281234268 +527,4103,3.0,1281233272 +527,4306,3.0,1281233784 +527,4438,4.0,1281233245 +527,4688,3.0,1281233008 +527,4886,1.5,1281233993 +527,4993,4.5,1281233747 +527,5349,2.0,1281234004 +527,5747,4.5,1281232725 +527,5810,1.5,1281232544 +527,5952,3.5,1281233795 +527,6377,2.5,1281234180 +527,6502,5.0,1281232517 +527,6539,3.0,1281233985 +527,7027,5.0,1281232595 +527,7153,3.5,1281233869 +527,7980,3.5,1281233026 +527,8208,5.0,1281232707 +527,25788,3.5,1281232951 +527,26649,4.0,1281232734 +527,33660,4.5,1281233250 +527,35836,4.5,1281232530 +527,48516,5.0,1281232878 +527,51662,2.0,1281234250 +527,55267,5.0,1281232639 +527,58293,1.0,1281232448 +527,60069,2.5,1281234273 +527,68358,4.0,1281234223 +528,19,2.5,1141605315 +528,50,4.0,1141605961 +528,52,3.5,1141605978 +528,111,3.5,1141605268 +528,223,3.5,1141605255 +528,236,3.0,1141606001 +528,260,3.5,1141607126 +528,266,3.5,1141605991 +528,296,3.5,1141607098 +528,368,3.0,1141605556 +528,377,2.0,1141605656 +528,441,4.5,1143758352 +528,442,2.5,1141605550 +528,541,3.0,1141605250 +528,592,3.0,1143757704 +528,608,4.0,1141605640 +528,808,3.5,1143758689 +528,858,4.0,1141607120 +528,899,4.5,1141605927 +528,904,4.5,1141605918 +528,908,4.5,1143757746 +528,1059,3.5,1141605900 +528,1136,4.0,1141605862 +528,1196,4.0,1141607085 +528,1197,3.5,1141605869 +528,1198,3.5,1141607081 +528,1199,3.0,1143757759 +528,1206,4.0,1141605876 +528,1213,4.5,1141605283 +528,1219,3.0,1143757741 +528,1221,5.0,1141605262 +528,1257,3.5,1143758320 +528,1259,4.5,1141605821 +528,1278,4.0,1143757754 +528,1307,4.0,1141605298 +528,1380,3.0,1143757710 +528,1407,3.0,1143757723 +528,1500,5.0,1141605813 +528,1517,2.5,1141605312 +528,1527,4.0,1141605285 +528,1639,4.5,1141605831 +528,1687,2.0,1141607036 +528,1730,3.5,1143758654 +528,1772,2.5,1141607043 +528,1777,3.5,1141605845 +528,1784,3.0,1143757715 +528,1805,2.5,1141607031 +528,1845,3.5,1141607023 +528,1923,3.0,1141605295 +528,2072,3.5,1141606999 +528,2115,3.5,1141605735 +528,2169,2.5,1143758664 +528,2178,4.5,1143758649 +528,2188,2.5,1141607006 +528,2278,3.0,1141606996 +528,2282,3.0,1143758279 +528,2289,3.0,1141605726 +528,2329,3.5,1141691490 +528,2353,3.0,1143757708 +528,2427,3.0,1143758251 +528,2431,2.5,1141607003 +528,2474,4.0,1141606957 +528,2496,2.0,1141606970 +528,2541,4.0,1141606962 +528,2542,4.5,1141605720 +528,2571,3.5,1141605713 +528,2580,3.5,1141606950 +528,2598,3.0,1141606974 +528,2686,4.5,1141606953 +528,2700,3.5,1141605732 +528,2716,3.0,1141605259 +528,2762,4.0,1141605691 +528,2788,3.0,1141607112 +528,2836,4.5,1143758574 +528,2959,3.0,1141691493 +528,2966,3.5,1141606878 +528,2997,3.5,1141605245 +528,3052,3.0,1141605636 +528,3173,3.0,1141606236 +528,3298,4.0,1141606226 +528,3317,3.0,1141606213 +528,3328,2.5,1141606218 +528,3361,3.5,1141606162 +528,3424,3.5,1143758242 +528,3499,3.0,1143758240 +528,3503,4.5,1143758542 +528,3513,3.0,1141606182 +528,3698,4.0,1141606189 +528,3755,3.0,1143758215 +528,3785,3.5,1141606196 +528,3793,4.0,1141605560 +528,3825,2.0,1141606199 +528,3948,2.0,1141605674 +528,3949,4.5,1141606076 +528,3977,1.0,1141605645 +528,3987,4.0,1143758519 +528,3994,3.0,1141605696 +528,3996,4.0,1141605319 +528,4007,4.0,1141606132 +528,4223,4.0,1143758139 +528,4226,3.0,1141607107 +528,4299,0.5,1141606141 +528,4643,2.0,1143758228 +528,4993,4.0,1141605292 +528,5349,3.0,1141605682 +528,5401,2.5,1143758497 +528,5673,5.0,1141606034 +528,5785,3.0,1143758493 +528,5810,3.0,1143758145 +528,5952,3.5,1141607114 +528,6104,3.0,1141691500 +528,6281,2.0,1141606043 +528,6378,4.0,1141606039 +528,6711,3.5,1141606022 +528,6867,3.0,1143758477 +528,7153,3.5,1141607118 +528,8366,3.0,1143758486 +528,8636,4.0,1141606018 +528,8966,3.5,1143758480 +528,8981,2.5,1143758489 +528,27773,4.0,1143758347 +528,30707,3.5,1141605985 +528,33794,3.5,1141691482 +528,34153,4.0,1141607095 +528,34405,4.0,1141607101 +528,39183,3.5,1143758356 +528,40819,4.0,1141691496 +529,1,4.0,959965342 +529,17,4.5,1353370957 +529,24,3.0,960264734 +529,25,4.0,1332171560 +529,28,4.0,1387829869 +529,32,4.0,959965822 +529,34,5.0,959964987 +529,36,4.5,1351225218 +529,52,4.0,1086367263 +529,55,4.0,960265403 +529,57,3.0,960264595 +529,58,4.0,1089218266 +529,62,4.0,960264029 +529,68,2.0,959965942 +529,105,4.0,959966328 +529,111,4.0,959964034 +529,141,3.0,959966607 +529,162,2.5,1386031529 +529,164,3.0,960263147 +529,230,4.0,960264406 +529,232,4.5,1385069940 +529,260,4.0,959965370 +529,261,4.0,959964034 +529,265,5.0,959964731 +529,300,4.5,1385069924 +529,306,4.0,1387829807 +529,307,4.0,1387829811 +529,308,4.0,1395773670 +529,318,4.5,1170799498 +529,337,4.0,959965214 +529,339,3.0,960263973 +529,348,5.0,959966045 +529,356,3.0,960264145 +529,357,4.0,959966328 +529,361,3.0,960264770 +529,363,3.5,1359647327 +529,434,2.0,960265249 +529,448,4.0,959964880 +529,471,4.0,965497394 +529,475,5.0,1385070155 +529,492,5.0,960263873 +529,497,4.0,959965517 +529,506,2.0,960087138 +529,508,3.5,1351225413 +529,509,3.0,959965564 +529,515,4.0,1077989099 +529,527,5.0,960086663 +529,534,4.0,959967051 +529,538,3.0,960087161 +529,549,4.5,1083617679 +529,581,3.5,1137685554 +529,586,3.0,960265168 +529,587,2.0,960264081 +529,588,3.0,1357247314 +529,599,5.0,960085638 +529,608,5.0,996352960 +529,616,4.0,960052735 +529,674,1.0,960085850 +529,685,4.0,959964183 +529,719,2.0,960264973 +529,728,4.0,1070400952 +529,750,4.5,1067316865 +529,780,1.0,960265345 +529,838,4.0,1379734034 +529,858,3.0,959964253 +529,898,2.0,959964543 +529,899,5.0,960086408 +529,900,4.0,959965822 +529,902,3.0,960085661 +529,904,4.0,1137637037 +529,908,3.0,985469555 +529,909,2.0,960085581 +529,910,4.5,1353370952 +529,912,5.0,960086204 +529,914,3.0,959965822 +529,916,4.0,959965310 +529,918,5.0,959966157 +529,919,5.0,959964387 +529,920,4.0,960086894 +529,921,5.0,959964763 +529,922,3.5,1123709075 +529,923,4.0,960086078 +529,924,4.0,959965246 +529,926,5.0,960086287 +529,927,5.0,960151763 +529,932,1.0,959975472 +529,935,5.0,960140386 +529,951,5.0,959964792 +529,952,2.0,959965993 +529,953,3.0,959965606 +529,955,5.0,960086769 +529,968,4.0,1353371055 +529,994,5.0,960087034 +529,1012,3.0,959966468 +529,1013,3.0,960085773 +529,1028,4.0,959975028 +529,1029,3.0,960151613 +529,1030,2.0,959975102 +529,1035,2.0,959975028 +529,1041,4.0,1337380967 +529,1066,3.5,1385958119 +529,1073,4.0,959966485 +529,1077,4.0,959965684 +529,1078,4.0,960052803 +529,1080,4.0,959966401 +529,1082,3.0,959965907 +529,1083,3.0,960085773 +529,1084,5.0,959964763 +529,1096,5.0,959965885 +529,1104,3.0,959964705 +529,1124,1.0,960053405 +529,1125,4.0,960052771 +529,1131,4.0,1273115600 +529,1132,4.0,1268767844 +529,1135,3.0,960053606 +529,1136,4.0,960052682 +529,1148,4.0,1370753689 +529,1150,4.0,1357315830 +529,1177,5.0,960087195 +529,1179,5.0,959964543 +529,1183,4.0,959965536 +529,1189,4.0,1359323829 +529,1192,5.0,959965013 +529,1193,2.0,959964346 +529,1196,3.0,960053160 +529,1198,3.0,960053104 +529,1200,2.0,959966533 +529,1201,3.0,960085581 +529,1206,3.0,960052651 +529,1207,3.0,1045451694 +529,1208,4.0,960052682 +529,1212,4.0,1303321963 +529,1213,1.0,959964679 +529,1219,4.0,959964387 +529,1221,2.0,960052558 +529,1225,2.0,960053081 +529,1230,5.0,960052558 +529,1233,5.0,960086327 +529,1234,3.0,959965370 +529,1235,3.0,959964840 +529,1238,4.0,1363754895 +529,1243,0.5,1350871357 +529,1244,4.0,960052606 +529,1247,5.0,959964705 +529,1248,3.0,959964457 +529,1252,5.0,959964208 +529,1256,4.5,1357247150 +529,1264,3.0,959965585 +529,1265,4.0,959965709 +529,1266,4.0,959965061 +529,1269,3.0,959965517 +529,1270,3.0,959963968 +529,1271,5.0,959966181 +529,1272,3.0,959965862 +529,1273,3.0,1357315578 +529,1276,3.0,960085581 +529,1278,4.0,960052606 +529,1280,4.0,1387830294 +529,1282,3.0,959965013 +529,1287,2.0,960086812 +529,1288,4.0,959965684 +529,1293,4.0,959964792 +529,1303,4.0,959964625 +529,1304,2.0,960085546 +529,1333,3.0,959965822 +529,1339,3.0,960264483 +529,1343,5.0,959966115 +529,1350,2.0,960052839 +529,1353,3.0,960264932 +529,1361,4.0,1366600723 +529,1367,3.0,960264675 +529,1371,2.0,960052916 +529,1380,2.0,959975102 +529,1387,1.0,959964643 +529,1393,4.0,1351571342 +529,1408,2.0,959966381 +529,1409,2.0,960264954 +529,1410,4.0,960265270 +529,1416,3.0,960265224 +529,1449,4.0,1349967676 +529,1535,4.0,960086963 +529,1569,3.0,960264053 +529,1584,4.0,960263244 +529,1614,3.0,960264185 +529,1617,3.0,985469516 +529,1619,3.0,960263429 +529,1625,4.0,1351571315 +529,1635,3.5,1351571373 +529,1641,5.0,959966138 +529,1663,3.0,960053466 +529,1674,3.0,959965647 +529,1678,4.0,960086591 +529,1682,4.0,959966115 +529,1704,4.0,959975246 +529,1747,4.0,960263813 +529,1777,3.0,960264386 +529,1784,4.0,959975276 +529,1810,4.0,959966410 +529,1835,3.0,960264483 +529,1885,3.5,1068909828 +529,1936,3.5,1379733828 +529,1947,3.0,959965907 +529,1948,4.0,1090533331 +529,1951,4.0,959967267 +529,1952,4.0,959964543 +529,1953,3.0,960086408 +529,1954,2.0,959966045 +529,1955,4.0,1380166629 +529,1956,4.0,960053230 +529,1957,3.0,959965271 +529,1958,4.0,959975336 +529,1962,4.0,960053349 +529,1963,3.0,960085693 +529,1964,5.0,1385069999 +529,1997,3.0,959966090 +529,2009,2.0,960052839 +529,2013,3.0,960052891 +529,2015,3.0,960085773 +529,2028,5.0,1049503979 +529,2057,4.0,960085773 +529,2065,5.0,960053260 +529,2067,2.0,960085693 +529,2074,4.0,960052576 +529,2077,4.0,959966182 +529,2078,3.0,959967222 +529,2080,4.0,960140431 +529,2085,3.0,959966625 +529,2112,3.0,960263851 +529,2132,3.0,959965038 +529,2136,2.0,960085824 +529,2145,3.0,959963968 +529,2146,3.0,960054593 +529,2160,3.0,959965310 +529,2174,3.0,960053141 +529,2176,3.0,1386877492 +529,2194,3.0,959967301 +529,2208,4.0,1358450701 +529,2236,2.0,960265307 +529,2243,4.0,959966445 +529,2247,4.0,960053466 +529,2268,4.0,960264428 +529,2272,3.0,959975301 +529,2289,3.0,959965038 +529,2291,3.0,959966045 +529,2297,3.0,960264121 +529,2300,5.0,959964387 +529,2302,5.0,960263554 +529,2303,5.0,959964387 +529,2321,5.0,960263606 +529,2324,4.5,1067316874 +529,2331,4.0,959965564 +529,2346,4.0,960052869 +529,2361,1.0,959965974 +529,2367,1.0,960052942 +529,2369,2.0,959966591 +529,2384,3.0,959965370 +529,2396,3.0,960086622 +529,2406,4.0,960053499 +529,2407,3.0,960053548 +529,2418,4.0,960054460 +529,2431,1.0,960265366 +529,2436,4.0,959966138 +529,2463,4.0,959964034 +529,2469,3.0,960053548 +529,2474,3.0,960053568 +529,2493,3.5,1325220288 +529,2520,1.0,960052839 +529,2528,1.0,960052803 +529,2529,3.0,959967267 +529,2535,1.0,960052942 +529,2565,3.0,959966245 +529,2580,4.0,1385958097 +529,2599,4.0,1083617670 +529,2639,1.0,960054717 +529,2640,3.0,1380166213 +529,2641,5.0,960053548 +529,2642,3.0,960054752 +529,2657,2.0,959975102 +529,2662,1.0,959966045 +529,2671,1.0,985469597 +529,2706,1.0,959966502 +529,2716,4.0,960053260 +529,2721,4.0,960263912 +529,2730,2.0,959967301 +529,2732,4.0,959964543 +529,2739,4.0,960053548 +529,2750,5.0,960053301 +529,2752,3.0,960054539 +529,2762,3.0,959964792 +529,2779,3.0,960052771 +529,2791,4.0,960053369 +529,2795,1.0,960053499 +529,2797,4.0,959965907 +529,2803,1.0,960265123 +529,2804,5.0,959964947 +529,2819,3.0,960052682 +529,2858,5.0,960086266 +529,2863,3.0,959964625 +529,2871,5.0,960052711 +529,2877,3.0,959975102 +529,2908,3.0,1000918582 +529,2915,3.0,960053301 +529,2917,4.0,959965497 +529,2918,2.0,959966090 +529,2921,2.0,959965628 +529,2926,4.0,960053179 +529,2929,5.0,960053326 +529,2932,3.0,960052606 +529,2941,2.0,960140513 +529,2942,2.0,960054631 +529,2943,4.0,960263376 +529,2946,3.0,960085599 +529,2950,1.0,960054697 +529,2966,1.0,959965408 +529,2971,4.0,959975102 +529,2973,3.5,1357315725 +529,2996,4.0,959975139 +529,3011,3.0,960085581 +529,3015,3.0,960052839 +529,3032,1.0,960052803 +529,3037,4.0,960052651 +529,3066,2.0,960052839 +529,3069,4.0,959966245 +529,3072,4.0,1066834850 +529,3074,5.0,959967425 +529,3083,2.0,960262803 +529,3088,4.0,960140406 +529,3089,4.5,1370753213 +529,3093,3.0,959965038 +529,3095,4.0,959964457 +529,3098,4.0,960053326 +529,3099,3.0,959965822 +529,3110,3.0,959966428 +529,3129,4.0,1000918608 +529,3148,4.0,960262978 +529,3152,5.0,959964509 +529,3163,4.0,959965214 +529,3167,3.0,959966223 +529,3168,3.0,959964840 +529,3194,3.0,959964922 +529,3200,3.0,959965885 +529,3201,5.0,959964582 +529,3244,3.0,960052771 +529,3247,4.0,959966064 +529,3251,4.0,960053518 +529,3258,4.0,960264616 +529,3260,4.0,959964625 +529,3284,2.0,959965709 +529,3296,3.0,959965664 +529,3304,3.0,959966468 +529,3317,4.0,1343954048 +529,3341,5.0,959964346 +529,3347,4.0,959966090 +529,3357,5.0,959974786 +529,3358,3.0,959966045 +529,3361,4.0,960053060 +529,3362,5.0,960086812 +529,3363,5.0,960052651 +529,3396,4.0,960052651 +529,3418,2.0,959965447 +529,3421,3.0,959965771 +529,3430,1.0,960052916 +529,3435,4.0,1237934245 +529,3445,3.0,959966401 +529,3448,3.0,960053588 +529,3456,3.5,1241460035 +529,3471,3.0,960052651 +529,3481,4.0,1245597558 +529,3498,3.0,960052803 +529,3504,5.0,960052558 +529,3506,3.0,960052870 +529,3507,3.0,959966363 +529,3508,2.0,960052711 +529,3512,3.0,965497364 +529,3526,4.0,960053200 +529,3529,3.0,960054483 +529,3543,4.0,1385958141 +529,3545,4.0,959975102 +529,3546,4.0,960085773 +529,3548,2.0,960086788 +529,3549,3.0,960140489 +529,3551,3.0,959965038 +529,3606,4.0,959964987 +529,3608,4.0,960087119 +529,3635,3.0,959966549 +529,3653,2.0,959964731 +529,3668,3.0,960085722 +529,3671,4.0,959965342 +529,3682,2.0,959965709 +529,3683,4.0,959964560 +529,3685,2.0,960053301 +529,3702,3.0,959964599 +529,3704,3.0,960054460 +529,3712,4.0,959967033 +529,3719,2.0,967605951 +529,3724,4.0,959964947 +529,3730,4.0,1380166274 +529,3733,3.0,959964387 +529,3735,3.0,959964478 +529,3738,3.0,960052651 +529,3739,4.0,1045451532 +529,3741,3.0,959964408 +529,3742,3.0,959964763 +529,3751,4.0,1055428383 +529,3769,3.0,961607063 +529,3788,3.0,963156943 +529,3806,2.0,963157035 +529,3812,4.0,963156966 +529,3814,4.0,963157035 +529,3897,4.0,996352929 +529,3908,2.0,970718996 +529,3911,4.0,1343954023 +529,3967,3.5,1343954017 +529,3983,3.5,1370840182 +529,3996,3.0,1049503905 +529,4014,4.0,978894362 +529,4021,4.0,982340567 +529,4034,4.5,1353370913 +529,4187,2.5,1067316838 +529,4190,3.0,1400777348 +529,4194,4.0,1369868783 +529,4211,3.0,1351225495 +529,4217,4.0,1122326552 +529,4298,3.5,1306082469 +529,4361,4.0,1049504135 +529,4427,4.0,1045451720 +529,4801,4.5,1123271861 +529,4903,4.0,1332171809 +529,4920,5.0,1049503905 +529,4969,3.0,1082067000 +529,4970,3.0,1045451532 +529,4973,4.0,1059411981 +529,5015,4.0,1016378462 +529,5060,4.0,1049504352 +529,5085,3.0,1049504162 +529,5135,5.0,1016405409 +529,5142,4.0,1152140779 +529,5291,3.5,1154956653 +529,5299,3.0,1027479570 +529,5339,4.0,1351225425 +529,5341,4.0,1380166288 +529,5385,4.0,1366600969 +529,5398,4.5,1082066310 +529,5470,5.0,1063149603 +529,5525,4.0,1208831785 +529,5752,2.5,1106970460 +529,5780,3.0,1170799405 +529,5840,4.0,1264720330 +529,5847,2.0,1083179780 +529,5986,3.5,1080685098 +529,5991,5.0,1045451324 +529,5995,4.0,1114965029 +529,6031,3.0,1332171580 +529,6126,4.0,1250799382 +529,6216,4.0,1130284575 +529,6228,3.5,1146438379 +529,6235,3.0,1123709020 +529,6247,4.0,1353370872 +529,6254,4.5,1082067042 +529,6269,3.5,1325907434 +529,6271,4.0,1245597798 +529,6296,3.0,1349967739 +529,6299,4.5,1137685562 +529,6301,3.0,1380166200 +529,6327,4.5,1105155551 +529,6331,4.0,1140705541 +529,6377,4.0,1354309133 +529,6380,4.0,1150570381 +529,6385,4.0,1343954041 +529,6416,3.5,1082067077 +529,6452,3.5,1077989091 +529,6467,4.0,1250799269 +529,6533,3.5,1083179789 +529,6565,2.5,1062033982 +529,6643,3.5,1237345904 +529,6666,3.5,1241459623 +529,6724,4.0,1353371031 +529,6777,4.0,1146438010 +529,6783,4.5,1092338279 +529,6787,3.5,1067316832 +529,6942,3.5,1357581858 +529,6953,4.5,1337381146 +529,6971,3.0,1098223762 +529,6982,3.5,1241459493 +529,6985,4.0,1303321211 +529,6993,4.0,1363754819 +529,7061,3.5,1099195833 +529,7064,3.5,1307204097 +529,7072,4.5,1075763137 +529,7073,3.0,1099195814 +529,7078,3.5,1363310911 +529,7084,3.5,1073271374 +529,7091,4.0,1122326645 +529,7116,4.0,1145318017 +529,7121,4.0,1141748142 +529,7132,3.0,1101151100 +529,7135,3.0,1303321877 +529,7139,4.5,1107902151 +529,7147,3.5,1343954269 +529,7156,3.5,1169130017 +529,7158,4.5,1343954007 +529,7215,3.5,1141748153 +529,7216,3.5,1130284620 +529,7303,3.5,1130284598 +529,7493,3.5,1099195801 +529,7572,3.5,1085876242 +529,7584,3.5,1113523339 +529,7587,3.0,1241459568 +529,7619,4.0,1106970477 +529,7698,4.5,1380166280 +529,7706,4.0,1119235090 +529,7766,4.0,1155335946 +529,7767,4.0,1241459970 +529,7836,4.0,1109102662 +529,7840,3.5,1332171799 +529,7926,4.5,1160009538 +529,7941,3.0,1303322019 +529,7979,3.5,1308090429 +529,8016,2.5,1380166190 +529,8042,3.5,1241459611 +529,8191,4.0,1089815018 +529,8228,4.0,1090533345 +529,8337,2.5,1115560087 +529,8542,3.5,1119235120 +529,8580,5.0,1123708975 +529,8638,4.0,1357581667 +529,8645,3.5,1357582026 +529,8754,3.5,1092338316 +529,8785,3.5,1245597605 +529,8838,4.0,1095536736 +529,8961,4.5,1131573088 +529,8970,4.5,1343954181 +529,8998,3.5,1105801478 +529,25753,3.5,1285543563 +529,25792,3.5,1385958407 +529,25825,3.5,1303321817 +529,25850,2.5,1221614435 +529,25868,4.0,1230676522 +529,25898,3.5,1250799235 +529,26003,3.5,1268768735 +529,26082,4.0,1226454002 +529,26111,3.0,1237934234 +529,26131,4.0,1123709084 +529,26208,4.0,1308090589 +529,26324,3.5,1253235715 +529,26325,4.0,1303320956 +529,26366,4.0,1241459575 +529,26375,2.5,1105155573 +529,26472,4.0,1241459695 +529,26524,4.0,1253235760 +529,26587,4.0,1300547022 +529,26649,2.0,1273115585 +529,26788,3.5,1303321919 +529,27329,4.0,1300547798 +529,27741,4.0,1141748173 +529,27803,4.0,1146438535 +529,27878,4.0,1157753399 +529,30749,4.0,1146438003 +529,31035,2.0,1119911645 +529,31522,4.0,1264719725 +529,31923,4.0,1123271765 +529,32234,4.5,1245597804 +529,32853,3.5,1230676514 +529,33166,2.0,1343954145 +529,34552,4.0,1273116382 +529,36517,4.5,1130284585 +529,38304,4.0,1169129775 +529,39183,4.5,1139520958 +529,39292,4.0,1133832977 +529,40583,3.5,1343954031 +529,40819,3.5,1349967760 +529,41226,4.0,1248300254 +529,44195,4.5,1343954135 +529,44555,4.0,1185835166 +529,46855,3.5,1268768666 +529,46976,4.0,1370840075 +529,48698,4.0,1237934412 +529,52967,4.0,1241460027 +529,53024,4.0,1273116275 +529,53123,4.5,1357247310 +529,55069,4.5,1264720470 +529,55814,4.5,1343954062 +529,56367,4.0,1343954258 +529,59018,4.0,1351957779 +529,60382,3.5,1349967827 +529,63876,4.0,1343954196 +529,66371,4.5,1307204399 +529,78499,4.0,1371270065 +529,79132,3.5,1280939216 +529,81845,4.0,1371270054 +529,86882,4.5,1378442419 +529,88810,4.0,1378442404 +529,89804,4.0,1408296622 +529,90866,3.5,1378442549 +529,91529,3.5,1346080707 +529,93040,4.0,1349967848 +529,95558,4.5,1346947165 +529,96432,2.5,1346987384 +529,97752,4.5,1351957381 +529,97921,4.5,1363352189 +529,109374,4.5,1401291020 +529,111362,3.0,1404142647 +529,112138,3.5,1404693511 +529,112460,1.5,1405996759 +530,1,5.0,879014231 +530,14,4.0,879014515 +530,17,4.0,877749107 +530,36,5.0,879014382 +530,40,3.0,879014515 +530,48,4.0,882388817 +530,62,4.0,879014459 +530,95,5.0,880081389 +530,158,3.0,882388845 +530,185,3.0,880081413 +530,239,4.0,882388817 +530,260,5.0,880081243 +530,261,4.0,880081361 +530,313,2.0,882388845 +530,356,5.0,880081099 +530,364,5.0,880081158 +530,367,3.0,880081254 +530,480,5.0,880081452 +530,527,5.0,888624385 +530,558,2.0,882388845 +530,588,5.0,880081184 +530,594,5.0,882388791 +530,595,5.0,880081204 +530,608,5.0,879061794 +530,609,2.0,879014767 +530,647,4.0,879014936 +530,661,5.0,879014311 +530,673,1.0,882388845 +530,720,5.0,882388791 +530,733,4.0,879014936 +530,736,4.0,879014967 +530,745,5.0,882388791 +530,780,3.0,879014669 +530,783,5.0,880081225 +530,802,4.0,879014967 +530,804,2.0,879014881 +530,832,5.0,879014545 +530,838,4.0,879014729 +530,991,3.0,880081380 +530,1025,4.0,882388817 +530,1029,4.0,882388817 +530,1032,4.0,882388791 +530,1033,4.0,882388817 +530,1042,4.0,879014588 +530,1064,2.0,880081184 +530,1073,4.0,879014545 +530,1148,5.0,882388791 +530,1183,5.0,877748760 +530,1196,5.0,880081264 +530,1210,5.0,880081286 +530,1223,4.0,882388791 +530,1282,5.0,882388791 +530,1353,3.0,882388908 +530,1357,5.0,882388741 +530,1367,4.0,879014729 +530,1391,4.0,879014353 +530,1409,3.0,879014967 +530,1416,4.0,880081400 +530,1438,1.0,877748865 +530,1485,2.0,879014669 +530,1489,5.0,883714860 +530,1544,2.0,880081452 +530,1556,2.0,879014767 +530,1566,5.0,879014231 +530,1569,4.0,879014588 +530,1573,5.0,879014434 +530,1580,5.0,880081141 +530,1584,5.0,880081420 +530,1586,2.0,882388556 +530,1588,3.0,882388556 +530,1597,3.0,882388503 +530,1605,3.0,883714691 +530,1606,1.0,877748960 +530,1676,1.0,882388522 +530,1690,2.0,882388503 +530,1702,2.0,883714838 +530,1704,5.0,889506538 +530,1721,5.0,883714691 +531,1,3.0,1240402247 +531,2,4.0,1243510104 +531,34,3.0,1240402299 +531,48,3.0,1244063107 +531,158,2.5,1244063176 +531,165,0.5,1240402274 +531,316,2.0,1243509916 +531,356,3.5,1243454685 +531,364,4.0,1240402280 +531,410,3.5,1243510166 +531,480,3.0,1243454738 +531,500,3.0,1240402290 +531,541,2.5,1240402381 +531,586,2.5,1240402378 +531,588,4.0,1240402258 +531,590,2.0,1240402243 +531,594,4.0,1243510262 +531,595,3.0,1243509906 +531,596,3.5,1244063156 +531,661,3.5,1244288305 +531,720,4.0,1240401432 +531,745,3.5,1240402455 +531,788,3.0,1243510146 +531,918,1.5,1240401787 +531,919,4.0,1243510077 +531,1013,4.0,1240401589 +531,1015,2.0,1240401652 +531,1028,5.0,1240401959 +531,1035,3.5,1240402211 +531,1036,0.5,1240402328 +531,1073,3.5,1240402181 +531,1088,5.0,1244288293 +531,1097,3.0,1243509936 +531,1099,1.5,1240401745 +531,1148,4.0,1240402461 +531,1183,0.5,1244062924 +531,1198,1.0,1240402972 +531,1223,4.0,1240401503 +531,1258,0.5,1243454822 +531,1262,1.5,1240403015 +531,1370,0.5,1244063037 +531,1380,4.0,1244062975 +531,1407,1.0,1244062932 +531,1580,3.0,1243509954 +531,1653,3.5,1244062948 +531,1676,1.5,1244063052 +531,1682,4.0,1243510127 +531,1721,2.0,1240402303 +531,1848,4.0,1240401853 +531,1997,0.5,1243454868 +531,2054,3.5,1244062939 +531,2081,3.5,1244063097 +531,2083,2.5,1240402878 +531,2088,3.0,1240401636 +531,2162,3.0,1240401757 +531,2291,4.0,1243510236 +531,2300,2.0,1240401527 +531,2321,3.5,1244063113 +531,2355,3.5,1243510155 +531,2379,2.0,1240401662 +531,2392,3.0,1240401829 +531,2424,2.5,1244288279 +531,2567,3.5,1240401608 +531,2571,3.5,1240402264 +531,2622,3.0,1240401629 +531,2683,3.0,1240402403 +531,2692,4.0,1244063012 +531,2701,2.5,1244288269 +531,2706,3.5,1243510089 +531,2762,2.0,1240403146 +531,2791,0.5,1243510282 +531,2797,4.0,1243510226 +531,2942,4.5,1240730966 +531,2959,3.5,1240402309 +531,3114,2.5,1240403076 +531,3198,2.0,1240403070 +531,3448,3.5,1244288235 +531,3751,1.5,1244062988 +531,3791,4.5,1244308218 +531,3793,3.5,1243454713 +531,3798,0.5,1243454803 +531,3948,3.5,1244063082 +531,3977,2.5,1244062995 +531,4022,3.5,1244062965 +531,4246,4.0,1244288249 +531,4306,4.5,1240401990 +531,4308,3.5,1244580497 +531,4886,3.5,1240402473 +531,4896,1.0,1244063125 +531,4963,4.0,1243510270 +531,4973,4.5,1244062793 +531,4993,0.5,1243509988 +531,5349,2.0,1243454661 +531,5418,2.5,1244063060 +531,5952,1.0,1240403132 +531,5989,2.5,1244288158 +531,6218,3.5,1243509660 +531,6377,4.0,1240402471 +531,6539,4.0,1240402560 +531,6711,1.0,1244288191 +531,6863,5.0,1240402799 +531,6942,4.5,1243454925 +531,7361,0.5,1243455132 +531,8360,4.0,1240401993 +531,8533,1.0,1243455153 +531,8961,3.5,1240402991 +531,8965,1.5,1244062845 +531,30793,4.0,1240402176 +531,30816,4.0,1240402813 +531,31410,3.5,1244062803 +531,35836,2.5,1243454583 +531,38038,3.0,1240403002 +531,41997,1.5,1240731069 +531,42197,3.5,1244288095 +531,43376,3.5,1244062822 +531,45720,3.5,1240402587 +531,53121,3.5,1240401996 +531,54272,3.5,1240402020 +531,56941,2.0,1240402765 +531,59421,3.5,1240402421 +531,59725,4.5,1243454997 +531,61132,3.0,1240401858 +531,61361,3.0,1240402775 +531,62113,3.5,1240731051 +531,63082,4.0,1240402431 +531,63131,3.5,1243509628 +531,63992,4.5,1243455082 +531,64249,3.0,1240401999 +531,64285,3.5,1240402539 +531,64957,4.0,1243455045 +531,64969,3.5,1243454540 +531,68073,5.0,1240731004 +532,19,3.5,1076971607 +532,110,3.5,1076971757 +532,163,3.5,1076971388 +532,344,3.5,1076971621 +532,370,3.0,1076971409 +532,380,3.5,1076971872 +532,457,3.5,1076971863 +532,466,4.0,1076971394 +532,480,4.0,1076971859 +532,589,4.0,1076971610 +532,733,4.0,1076971967 +532,1097,4.0,1076971601 +532,1198,4.5,1076971960 +532,1204,4.0,1076971429 +532,1262,4.5,1076971495 +532,1291,4.0,1076971733 +532,1293,4.5,1076971485 +532,1347,3.5,1076971646 +532,1475,3.5,1076971705 +532,1544,3.0,1076971627 +532,1597,3.5,1076971471 +532,2011,4.0,1076971616 +532,2028,3.5,1076971927 +532,2151,4.5,1076971688 +532,2268,3.5,1076971950 +532,2529,2.0,1076971442 +532,2571,4.5,1076971739 +532,2572,3.0,1076971501 +532,2617,3.5,1076971432 +532,2628,4.0,1076971735 +532,2762,4.5,1076971722 +532,2953,3.5,1076971654 +532,3101,3.0,1076971451 +532,3146,3.5,1076971671 +532,3578,4.0,1076971911 +532,3753,3.0,1076971460 +532,3948,3.0,1076971800 +532,3977,3.0,1076971791 +532,3994,3.5,1076971806 +532,4727,3.0,1076971717 +532,4963,3.5,1076971803 +532,4975,2.5,1076971796 +532,4993,4.5,1076971421 +532,5349,4.5,1076971933 +532,5377,2.5,1076971785 +532,5445,3.0,1076971520 +532,5630,4.0,1076971955 +532,5952,4.5,1076971510 +532,6377,4.5,1076971963 +532,6539,3.5,1076971923 +532,7153,5.0,1076971662 +533,25,1.0,965318357 +533,32,4.0,965316504 +533,36,4.0,965316145 +533,79,2.0,965318627 +533,110,3.0,965316446 +533,111,3.0,965316145 +533,150,4.0,965317882 +533,196,2.0,965315328 +533,230,4.0,965318594 +533,253,3.0,965319436 +533,260,5.0,965314715 +533,266,3.0,965319070 +533,281,3.0,965317961 +533,292,4.0,965319538 +533,316,5.0,965315113 +533,318,4.0,965316060 +533,329,4.0,965315177 +533,361,4.0,965318474 +533,379,4.0,965315328 +533,388,2.0,965318456 +533,436,2.0,965319301 +533,480,4.0,965314929 +533,491,3.0,965318146 +533,509,3.0,965316652 +533,516,3.0,965319228 +533,529,4.0,965316627 +533,531,3.0,965316554 +533,534,4.0,965318191 +533,541,4.0,965314747 +533,589,4.0,965314811 +533,590,3.0,965316589 +533,592,3.0,965318032 +533,593,5.0,965316107 +533,608,4.0,965316088 +533,724,2.0,965318627 +533,780,4.0,965315212 +533,788,3.0,965315073 +533,832,3.0,965318456 +533,899,4.0,965314334 +533,923,4.0,965316039 +533,953,5.0,965316060 +533,969,5.0,965314300 +533,1084,3.0,965316167 +533,1095,3.0,965317904 +533,1097,3.0,965316423 +533,1177,4.0,965319171 +533,1183,3.0,965318540 +533,1193,3.0,965316088 +533,1196,5.0,965314811 +533,1198,5.0,965314300 +533,1203,4.0,965316218 +533,1214,2.0,965314811 +533,1225,4.0,965316167 +533,1240,5.0,965314811 +533,1246,3.0,965318128 +533,1259,4.0,965316218 +533,1263,3.0,965316627 +533,1270,5.0,965314811 +533,1271,3.0,965317961 +533,1276,4.0,965316107 +533,1295,1.0,965318277 +533,1302,2.0,965316339 +533,1356,4.0,965315001 +533,1363,3.0,965319969 +533,1371,3.0,965315212 +533,1373,3.0,965315371 +533,1374,5.0,965314952 +533,1375,3.0,965315177 +533,1376,5.0,965314952 +533,1488,2.0,965320104 +533,1527,4.0,965315141 +533,1573,2.0,965315025 +533,1580,3.0,965314867 +533,1584,3.0,965314867 +533,1620,3.0,965318521 +533,1653,4.0,965315001 +533,1676,4.0,965315141 +533,1678,3.0,965318108 +533,1682,4.0,965318191 +533,1721,4.0,965317920 +533,1726,3.0,965319453 +533,1727,3.0,965318627 +533,1784,4.0,965316749 +533,1807,3.0,965319510 +533,1921,4.0,965315113 +533,1945,4.0,965316218 +533,1954,5.0,965315485 +533,1956,4.0,965316589 +533,1961,4.0,965316395 +533,1962,4.0,965317961 +533,2011,3.0,965315141 +533,2028,4.0,965316313 +533,2094,3.0,965315177 +533,2105,4.0,965315212 +533,2240,3.0,965317882 +533,2268,3.0,965318032 +533,2289,3.0,965316218 +533,2322,4.0,965315248 +533,2352,3.0,965316627 +533,2364,2.0,965315328 +533,2377,2.0,965315401 +533,2392,2.0,965320036 +533,2393,4.0,965315371 +533,2407,4.0,965315073 +533,2429,3.0,965319538 +533,2430,3.0,965319335 +533,2431,3.0,965319301 +533,2433,4.0,965318061 +533,2445,3.0,965319932 +533,2454,4.0,965315073 +533,2455,2.0,965315073 +533,2474,3.0,965319070 +533,2527,4.0,965314838 +533,2529,4.0,965314867 +533,2571,5.0,965314838 +533,2628,4.0,965314334 +533,2640,4.0,965315025 +533,2641,2.0,965315212 +533,2642,2.0,965315371 +533,2657,1.0,965315485 +533,2668,2.0,965315328 +533,2672,4.0,965315348 +533,2688,3.0,965319385 +533,2701,2.0,965315448 +533,2858,2.0,965316263 +533,2906,2.0,965320004 +533,2916,3.0,965314929 +533,2968,3.0,965314929 +533,2985,4.0,965315001 +533,3035,4.0,965316339 +533,3060,4.0,965317774 +533,3098,3.0,965318218 +533,3108,3.0,965317938 +533,3148,3.0,965317979 +533,3156,2.0,965315328 +533,3175,4.0,965314838 +533,3194,3.0,965317882 +533,3196,4.0,965316395 +533,3255,4.0,965317838 +533,3259,3.0,965319070 +533,3260,4.0,965316522 +533,3269,3.0,965315270 +533,3308,3.0,965318108 +533,3362,2.0,965316504 +533,3451,4.0,965317774 +533,3471,4.0,965314300 +533,3504,3.0,965316238 +533,3527,3.0,965314929 +533,3528,3.0,965319301 +533,3591,3.0,965319040 +533,3593,1.0,965315448 +533,3699,4.0,965314867 +533,3701,4.0,965315212 +533,3730,4.0,965316466 +533,3733,4.0,965317938 +533,3766,3.0,965314563 +533,3791,3.0,965314520 +533,3793,5.0,965314660 +533,3807,3.0,965314642 +533,3812,1.0,965314490 +533,3826,2.0,967559142 +533,3831,4.0,967559209 +533,3844,3.0,965314642 +534,1,5.0,973376852 +534,2,4.0,973376511 +534,3,2.0,973374764 +534,6,5.0,973375745 +534,11,3.0,973374582 +534,16,4.0,973440399 +534,17,2.0,973374360 +534,21,2.0,973375818 +534,22,4.0,973377415 +534,23,4.0,973440199 +534,25,3.0,973374165 +534,32,4.0,973377778 +534,34,3.0,973377061 +534,36,4.0,973377621 +534,39,2.0,973374324 +534,42,2.0,973376255 +534,47,5.0,973377326 +534,50,2.0,973377299 +534,60,3.0,973376609 +534,61,4.0,973440645 +534,64,3.0,973375343 +534,69,3.0,973377169 +534,70,2.0,973375918 +534,79,3.0,973440592 +534,81,2.0,973377456 +534,86,5.0,973376511 +534,89,4.0,973440359 +534,95,4.0,973376368 +534,105,2.0,973375193 +534,107,4.0,973376684 +534,110,5.0,973375708 +534,150,5.0,973377664 +534,151,3.0,973374324 +534,153,3.0,973376296 +534,158,5.0,973376684 +534,161,5.0,973377686 +534,163,4.0,973375884 +534,164,3.0,973377415 +534,165,4.0,973375956 +534,168,4.0,973375290 +534,170,3.0,973376368 +534,173,2.0,973376324 +534,185,4.0,973440645 +534,195,2.0,973375142 +534,208,4.0,973376493 +534,224,3.0,973374815 +534,225,4.0,973440359 +534,236,3.0,973375142 +534,239,4.0,973374980 +534,257,4.0,973440263 +534,258,2.0,973375597 +534,259,4.0,973377486 +534,266,4.0,973374360 +534,276,2.0,973375343 +534,280,4.0,973440399 +534,287,2.0,973375193 +534,288,3.0,973440592 +534,291,3.0,973440472 +534,292,4.0,973375852 +534,293,3.0,973374165 +534,296,4.0,973377352 +534,303,3.0,973376255 +534,315,4.0,973376368 +534,318,5.0,973377538 +534,319,3.0,973440160 +534,339,3.0,973374557 +534,349,4.0,973375852 +534,353,5.0,973376196 +534,356,4.0,973374023 +534,361,3.0,973374324 +534,364,5.0,973376883 +534,367,3.0,973377437 +534,368,4.0,973376107 +534,374,3.0,973358252 +534,376,4.0,973376030 +534,377,4.0,973375956 +534,378,3.0,973375142 +534,380,4.0,973375852 +534,387,3.0,973376324 +534,391,3.0,973377486 +534,423,4.0,973376075 +534,431,4.0,973377326 +534,434,4.0,973358231 +534,436,4.0,973440541 +534,442,3.0,973376296 +534,454,5.0,973440238 +534,455,4.0,973376746 +534,457,4.0,973375708 +534,463,4.0,973377486 +534,464,3.0,973376368 +534,474,4.0,973375818 +534,479,4.0,973376255 +534,480,3.0,973375745 +534,481,3.0,973440263 +534,490,4.0,973440263 +534,494,4.0,973376196 +534,500,3.0,973377218 +534,507,4.0,973376255 +534,511,3.0,973376075 +534,517,4.0,973376030 +534,539,4.0,973374360 +534,540,4.0,973440714 +534,543,3.0,973374324 +534,547,4.0,973376804 +534,550,2.0,973374670 +534,552,4.0,973376255 +534,586,4.0,973377218 +534,587,3.0,973374472 +534,588,5.0,973376883 +534,589,3.0,973375708 +534,590,5.0,973376433 +534,593,4.0,973440111 +534,597,3.0,973374165 +534,626,2.0,973376985 +534,628,4.0,973377686 +534,631,4.0,973376946 +534,648,4.0,973376030 +534,673,4.0,973376684 +534,688,2.0,973376804 +534,707,4.0,973377486 +534,731,3.0,973440645 +534,733,5.0,973375818 +534,736,5.0,973374815 +534,742,3.0,973440808 +534,780,5.0,973375884 +534,782,4.0,973440732 +534,785,3.0,973377241 +534,786,3.0,973440592 +534,798,4.0,973376609 +534,799,3.0,973377087 +534,802,5.0,973374472 +534,832,5.0,973440238 +534,836,4.0,973376684 +534,839,2.0,973440862 +534,852,4.0,973374815 +534,992,3.0,973440541 +534,996,4.0,973376255 +534,1015,4.0,973376530 +534,1037,3.0,973376296 +534,1049,5.0,973375956 +534,1061,4.0,973377385 +534,1092,4.0,973440359 +534,1100,4.0,973375491 +534,1213,4.0,973377299 +534,1265,3.0,973374165 +534,1339,4.0,973374815 +534,1343,4.0,973440160 +534,1358,4.0,973377639 +534,1370,3.0,973375852 +534,1377,4.0,973376609 +534,1379,3.0,973376296 +534,1393,4.0,973374023 +534,1396,3.0,973377326 +534,1405,5.0,973376907 +534,1407,4.0,973440444 +534,1408,4.0,973374023 +534,1409,3.0,973374472 +534,1422,4.0,973358204 +534,1427,4.0,973440862 +534,1438,5.0,973440694 +534,1457,3.0,973374980 +534,1459,4.0,973440263 +534,1479,4.0,973375491 +534,1485,4.0,973377169 +534,1488,4.0,973376255 +534,1499,5.0,973376804 +534,1515,4.0,973440732 +534,1517,4.0,973377087 +534,1518,3.0,973376075 +534,1527,3.0,973375918 +534,1552,4.0,973376107 +534,1569,2.0,973375193 +534,1573,4.0,973375818 +534,1580,4.0,973375884 +534,1582,4.0,973376493 +534,1584,5.0,973377576 +534,1586,3.0,973376075 +534,1592,3.0,973358138 +534,1597,4.0,973374324 +534,1605,3.0,973376746 +534,1608,4.0,973440238 +534,1610,4.0,973375745 +534,1615,4.0,973376493 +534,1616,4.0,973376163 +534,1620,4.0,973377437 +534,1625,5.0,973440199 +534,1626,3.0,973440763 +534,1627,3.0,973376368 +534,1631,4.0,973440444 +534,1644,4.0,973440808 +534,1645,4.0,973377352 +534,1673,2.0,973377818 +534,1682,3.0,973378518 +534,1687,5.0,973376324 +534,1717,4.0,973440592 +534,1721,5.0,973377778 +534,1732,2.0,973377415 +534,1744,4.0,973376746 +534,1753,2.0,973377189 +534,1754,5.0,973376107 +534,1769,3.0,973440645 +534,1777,3.0,973374582 +534,1792,4.0,973440472 +534,1801,4.0,973374870 +534,1805,4.0,973377415 +534,1833,4.0,973376163 +534,1835,4.0,973374870 +534,1876,4.0,973440399 +534,1888,2.0,973375257 +534,1892,3.0,973440399 +534,1894,4.0,973375257 +534,1895,3.0,973374764 +534,1917,5.0,973376075 +534,1918,4.0,973376368 +534,1923,4.0,973377117 +534,2002,4.0,973377437 +534,2006,3.0,973375918 +534,2028,5.0,973375709 +534,2045,4.0,973376433 +534,2046,4.0,973376493 +534,2058,4.0,973375818 +534,2089,4.0,973376907 +534,2125,3.0,973374472 +534,2126,4.0,973377486 +534,2142,5.0,973376932 +534,2154,2.0,973375343 +534,2170,3.0,973375709 +534,2231,4.0,973377385 +534,2266,2.0,973375415 +534,2268,4.0,973377326 +534,2273,4.0,973440541 +534,2278,4.0,973375852 +534,2279,4.0,973440645 +534,2291,2.0,973374980 +534,2294,4.0,973376907 +534,2302,3.0,973377218 +534,2321,3.0,973377062 +534,2353,4.0,973375745 +534,2355,4.0,973376883 +534,2424,3.0,973374634 +534,2427,4.0,973376030 +534,2429,4.0,973376684 +534,2485,3.0,973375257 +534,2490,4.0,973376075 +534,2501,4.0,973377664 +534,2502,3.0,973374557 +534,2505,4.0,973440763 +534,2539,2.0,973377241 +534,2561,4.0,973440694 +534,2571,4.0,973375709 +534,2581,3.0,973374815 +534,2687,5.0,973376883 +534,2688,4.0,973440541 +534,2706,4.0,973377218 +534,2707,4.0,973440399 +534,2724,2.0,973375142 +534,2762,5.0,973440111 +534,2763,4.0,973375956 +534,2770,3.0,973377218 +534,2803,4.0,973440444 +534,2806,3.0,973440592 +534,2822,4.0,973375567 +534,2826,4.0,973376196 +534,2827,3.0,973440808 +534,2840,4.0,973440592 +534,2841,4.0,973440239 +534,2875,4.0,973374870 +534,2881,5.0,973376296 +534,2890,3.0,973377778 +534,2906,2.0,973375597 +534,2916,3.0,973375745 +534,2944,3.0,973358175 +534,3005,4.0,973440239 +534,3020,3.0,973376296 +534,3044,4.0,973374472 +534,3063,4.0,973440763 +534,3064,4.0,973440111 +534,3081,3.0,973374870 +534,3147,5.0,973377664 +534,3148,2.0,973377754 +534,3176,4.0,973440399 +534,3178,4.0,973375818 +534,3246,4.0,973377799 +534,3249,4.0,973440694 +534,3250,4.0,973377664 +534,3253,4.0,973377189 +534,3255,3.0,973377169 +534,3256,4.0,973375852 +534,3257,5.0,973375290 +534,3259,4.0,973374634 +534,3261,3.0,973374472 +534,3269,4.0,973374764 +534,3274,3.0,973376075 +534,3386,4.0,973377818 +534,3436,2.0,973375193 +534,3438,4.0,973376324 +534,3489,4.0,973376530 +534,3557,3.0,973440472 +534,3614,3.0,973375455 +534,3686,4.0,973440399 +534,3809,3.0,973377241 +534,3835,3.0,973440862 +534,3916,5.0,973373845 +535,2,3.0,838631374 +535,10,3.0,838630568 +535,11,3.0,838631207 +535,19,1.0,838630825 +535,21,3.0,838630824 +535,44,3.0,838631815 +535,47,3.0,838630807 +535,95,3.0,838631510 +535,104,3.0,838640301 +535,110,4.0,838630736 +535,141,3.0,838631510 +535,153,3.0,838630364 +535,160,3.0,838630867 +535,161,4.0,838630544 +535,165,3.0,838630364 +535,172,2.0,838631510 +535,173,3.0,838631168 +535,185,2.0,838630568 +535,204,3.0,838631510 +535,208,4.0,838630568 +535,225,3.0,838630825 +535,231,3.0,838630391 +535,253,3.0,838630568 +535,288,3.0,838630736 +535,292,3.0,838630544 +535,293,4.0,838631433 +535,296,3.0,838630347 +535,300,3.0,838630735 +535,316,2.0,838630391 +535,318,4.0,838630391 +535,329,2.0,838630391 +535,333,3.0,838631826 +535,344,3.0,838630364 +535,349,4.0,838630364 +535,350,3.0,838631207 +535,356,3.0,838630735 +535,357,1.0,838631207 +535,364,3.0,838630807 +535,367,3.0,838630825 +535,380,3.0,838630347 +535,410,2.0,838630735 +535,434,2.0,838630544 +535,440,3.0,838631168 +535,442,3.0,838631432 +535,454,4.0,838630807 +535,457,4.0,838630544 +535,474,3.0,838631826 +535,480,4.0,838630807 +535,500,3.0,838631168 +535,508,3.0,838632442 +535,539,3.0,838631182 +535,551,5.0,838631849 +535,553,2.0,838631207 +535,586,3.0,838631182 +535,587,3.0,838631182 +535,588,3.0,838630364 +535,589,4.0,838630868 +535,590,3.0,838630347 +535,592,5.0,838630347 +535,593,5.0,838630544 +535,595,1.0,838630391 +535,597,1.0,838631207 +535,799,3.0,838640301 +536,19,2.0,829471719 +536,22,5.0,829471720 +536,23,4.0,829471719 +536,34,5.0,829471719 +536,39,5.0,829471720 +536,45,3.0,829471925 +536,47,4.0,829471721 +536,50,5.0,829471722 +536,57,5.0,829471720 +536,60,4.0,829471720 +536,110,5.0,829471719 +536,122,3.0,829471719 +536,132,3.0,829471720 +536,144,5.0,829471719 +536,150,5.0,829471719 +536,153,4.0,829471719 +536,154,2.0,829471719 +536,158,4.0,829471719 +536,159,5.0,829471720 +536,160,3.0,829471720 +536,161,5.0,829471720 +536,163,5.0,829471720 +536,165,5.0,829471720 +536,177,5.0,829471721 +536,178,5.0,829471721 +536,180,4.0,829471721 +536,181,1.0,829471721 +536,185,4.0,829471721 +536,186,3.0,829471721 +536,188,2.0,829471721 +536,193,3.0,829471722 +536,194,4.0,829471722 +536,195,4.0,829471722 +536,196,4.0,829471722 +536,198,5.0,829471722 +536,204,4.0,829471722 +536,206,4.0,829471722 +536,216,3.0,829471719 +536,222,5.0,829471719 +536,223,5.0,829471719 +536,224,5.0,829471720 +536,225,4.0,829471720 +536,230,5.0,829471720 +536,231,4.0,829471720 +536,233,5.0,829471720 +536,234,3.0,829471720 +536,235,5.0,829471720 +536,236,4.0,829471720 +536,237,4.0,829471720 +536,241,5.0,829471720 +536,246,5.0,829471720 +536,248,2.0,829471720 +536,250,4.0,829471720 +536,252,2.0,829471720 +536,253,4.0,829471720 +536,256,2.0,829471720 +536,257,4.0,829471720 +536,259,4.0,829471720 +536,260,5.0,829471720 +536,261,5.0,829471720 +536,266,3.0,829471720 +536,270,4.0,829471721 +536,273,3.0,829471721 +536,276,3.0,829471721 +536,277,5.0,829471721 +536,278,3.0,829471721 +536,281,4.0,829471721 +536,288,2.0,829471721 +536,289,3.0,829471721 +536,291,3.0,829471721 +536,293,4.0,829471721 +536,294,4.0,829471721 +536,295,3.0,829471721 +536,296,5.0,829471721 +536,300,4.0,829471721 +536,303,3.0,829471721 +536,305,3.0,829471721 +536,315,4.0,829471722 +536,316,4.0,829471722 +536,317,4.0,829471721 +536,318,5.0,829471721 +536,319,3.0,829471721 +536,333,4.0,829471722 +536,337,5.0,829471722 +536,339,4.0,829471722 +536,340,3.0,829471722 +536,344,5.0,829471719 +536,349,4.0,829471719 +536,351,4.0,829471720 +536,352,3.0,829471720 +536,380,4.0,829471722 +536,381,4.0,829471722 +536,416,3.0,829471719 +536,420,3.0,829471719 +536,427,4.0,829471719 +536,431,4.0,829471719 +536,432,2.0,829471719 +536,434,4.0,829471720 +536,435,2.0,829471720 +536,444,1.0,829471720 +536,452,5.0,829471722 +536,468,2.0,829471720 +536,553,5.0,829471722 +536,554,3.0,829471722 +536,555,5.0,829471722 +536,588,5.0,829471719 +536,590,5.0,829471720 +536,592,3.0,829471719 +536,595,5.0,829471719 +537,1,5.0,879502465 +537,2,3.0,879521681 +537,7,5.0,879520683 +537,11,3.0,879502984 +537,17,5.0,879502758 +537,21,5.0,879503236 +537,29,5.0,879502683 +537,32,4.0,879502925 +537,36,4.0,879502514 +537,41,5.0,879503236 +537,43,4.0,879502957 +537,50,5.0,879502683 +537,52,3.0,879521002 +537,57,2.0,879507093 +537,58,5.0,879502641 +537,62,4.0,879503194 +537,89,3.0,879521128 +537,95,2.0,879521715 +537,105,4.0,879521206 +537,125,1.0,879507205 +537,141,4.0,879506811 +537,144,3.0,879520566 +537,150,4.0,879502514 +537,151,4.0,879521639 +537,156,3.0,879507044 +537,161,3.0,879503028 +537,163,5.0,879521495 +537,164,4.0,879520842 +537,171,5.0,879503134 +537,176,4.0,879502488 +537,194,4.0,879503053 +537,195,2.0,879521681 +537,205,5.0,879503263 +537,222,4.0,879520585 +537,229,4.0,879520728 +537,230,4.0,879520728 +537,235,3.0,879506774 +537,236,3.0,879521495 +537,237,3.0,879521620 +537,252,3.0,879521370 +537,253,2.0,879521390 +537,260,5.0,879503350 +537,261,4.0,879503350 +537,265,4.0,879502404 +537,266,4.0,879521370 +537,268,4.0,879520881 +537,270,1.0,879521161 +537,272,5.0,879502901 +537,273,3.0,879521657 +537,277,4.0,879506835 +537,280,4.0,879502829 +537,281,4.0,879520881 +537,282,4.0,879520806 +537,296,4.0,879503194 +537,300,4.0,879503164 +537,314,5.0,879503317 +537,318,5.0,879502851 +537,329,5.0,879521461 +537,334,4.0,879502404 +537,337,4.0,879507044 +537,339,4.0,879503289 +537,342,5.0,879507069 +537,345,4.0,879507069 +537,348,4.0,879502583 +537,349,3.0,879507205 +537,350,2.0,879507166 +537,356,4.0,879502683 +537,357,4.0,879503262 +537,368,4.0,879507224 +537,369,4.0,879521206 +537,371,2.0,879503215 +537,372,2.0,879521657 +537,373,5.0,879506811 +537,380,3.0,879521089 +537,412,5.0,879520668 +537,417,3.0,879503164 +537,440,4.0,879521089 +537,452,4.0,879520774 +537,457,4.0,879502957 +537,471,5.0,879502608 +537,474,3.0,879503164 +537,475,5.0,879502925 +537,480,3.0,879503134 +537,492,4.0,879520881 +537,497,5.0,879502926 +537,500,2.0,879507007 +537,507,3.0,879503350 +537,508,5.0,879506753 +537,509,5.0,879502878 +537,515,5.0,879502660 +537,523,1.0,879502709 +537,527,5.0,879502403 +537,529,4.0,879502735 +537,531,3.0,879503350 +537,534,4.0,879520704 +537,535,1.0,879507166 +537,538,4.0,879502901 +537,539,5.0,879520960 +537,541,5.0,879502806 +537,551,2.0,879521110 +537,553,3.0,879506989 +537,562,5.0,879503317 +537,581,4.0,879502537 +537,587,3.0,879521738 +537,590,5.0,879507116 +537,593,4.0,879502403 +537,608,3.0,879502829 +537,627,2.0,879502709 +537,635,5.0,879521068 +537,648,3.0,879521370 +537,661,4.0,879503289 +537,708,4.0,879521090 +537,714,4.0,879521161 +537,719,2.0,879521351 +537,720,5.0,879502583 +537,736,3.0,879520902 +537,745,5.0,879502537 +537,750,5.0,879502537 +537,761,1.0,879521526 +537,780,5.0,879503369 +537,788,4.0,879521542 +537,800,5.0,879502806 +537,801,3.0,879521771 +537,802,4.0,879521254 +537,830,3.0,879521738 +537,875,4.0,879520704 +537,898,5.0,879502786 +537,899,5.0,879503093 +537,900,4.0,879521003 +537,901,5.0,879503164 +537,902,5.0,879503390 +537,904,5.0,879502957 +537,907,5.0,879502514 +537,908,5.0,879502466 +537,909,3.0,879502984 +537,910,4.0,879502660 +537,911,5.0,879502735 +537,912,5.0,879502559 +537,913,4.0,879502878 +537,914,5.0,879503317 +537,915,5.0,879503317 +537,916,5.0,879502984 +537,918,4.0,879507224 +537,919,5.0,879502984 +537,920,5.0,879503112 +537,921,5.0,879520789 +537,922,4.0,879503215 +537,923,4.0,879502445 +537,924,5.0,879502786 +537,926,5.0,879506811 +537,930,5.0,879506937 +537,932,4.0,879521771 +537,933,5.0,879506733 +537,934,4.0,879503390 +537,935,4.0,879506835 +537,936,4.0,879502829 +537,937,5.0,879506753 +537,938,5.0,879506922 +537,940,4.0,879502851 +537,942,4.0,879502829 +537,943,4.0,879503194 +537,945,5.0,879520984 +537,948,4.0,879507044 +537,949,3.0,879503053 +537,951,4.0,879502559 +537,953,4.0,879503289 +537,954,4.0,879502608 +537,955,5.0,879502641 +537,956,4.0,879521738 +537,969,5.0,879502465 +537,971,5.0,879502901 +537,973,4.0,879502957 +537,994,5.0,879507069 +537,1013,3.0,879521390 +537,1022,3.0,879503317 +537,1023,5.0,879520825 +537,1027,2.0,879521110 +537,1028,3.0,879503194 +537,1032,5.0,879503075 +537,1035,5.0,879503194 +537,1042,4.0,879503350 +537,1047,2.0,879503262 +537,1050,5.0,879506774 +537,1051,2.0,879521254 +537,1061,5.0,879506989 +537,1066,5.0,879502488 +537,1073,5.0,879503075 +537,1077,3.0,879503390 +537,1079,3.0,879502641 +537,1080,4.0,879502957 +537,1081,4.0,879507069 +537,1082,3.0,879502514 +537,1084,4.0,879507183 +537,1086,5.0,879507224 +537,1094,3.0,879503164 +537,1095,4.0,879520984 +537,1096,4.0,879507094 +537,1097,4.0,879506885 +537,1099,5.0,879507116 +537,1103,4.0,879503215 +537,1104,5.0,879502709 +537,1124,5.0,879507094 +537,1125,4.0,879521038 +537,1127,5.0,879521299 +537,1136,5.0,879506811 +537,1148,5.0,879502583 +537,1150,5.0,879507134 +537,1171,4.0,879506962 +537,1172,5.0,879502984 +537,1175,5.0,879503236 +537,1177,4.0,879506852 +537,1179,3.0,879503028 +537,1183,5.0,879502153 +537,1184,5.0,879506922 +537,1185,4.0,879503093 +537,1187,4.0,879521681 +537,1188,5.0,879503093 +537,1193,5.0,879502901 +537,1196,5.0,879502641 +537,1197,5.0,879502445 +537,1198,5.0,879502404 +537,1199,5.0,879502559 +537,1200,2.0,879502608 +537,1203,5.0,879502901 +537,1207,5.0,879502423 +537,1210,5.0,879502709 +537,1211,5.0,879503028 +537,1214,3.0,879502957 +537,1219,4.0,879507116 +537,1220,4.0,879502537 +537,1223,5.0,879506811 +537,1224,4.0,879506989 +537,1225,3.0,879502641 +537,1230,4.0,879503112 +537,1231,4.0,879502806 +537,1234,4.0,879502758 +537,1235,5.0,879520825 +537,1238,5.0,879521022 +537,1240,3.0,879502957 +537,1243,5.0,879502786 +537,1244,2.0,879520902 +537,1246,4.0,879520984 +537,1247,5.0,879507024 +537,1249,4.0,879502786 +537,1250,3.0,879502878 +537,1252,4.0,879502829 +537,1253,5.0,879506989 +537,1256,4.0,879506733 +537,1258,3.0,879503317 +537,1259,4.0,879520960 +537,1265,5.0,879521068 +537,1266,3.0,879502786 +537,1267,5.0,879503075 +537,1269,5.0,879503289 +537,1270,4.0,879502957 +537,1271,4.0,879502514 +537,1273,5.0,879502758 +537,1276,5.0,879502488 +537,1278,4.0,879502758 +537,1282,5.0,879502925 +537,1283,4.0,879502735 +537,1284,4.0,879506885 +537,1285,3.0,879520825 +537,1286,4.0,879503369 +537,1288,4.0,879502758 +537,1289,3.0,879520728 +537,1291,4.0,879502735 +537,1292,4.0,879502583 +537,1296,5.0,879503164 +537,1299,5.0,879503164 +537,1300,5.0,879520925 +537,1302,3.0,879502735 +537,1304,4.0,879502445 +537,1305,5.0,879503028 +537,1306,1.0,879503289 +537,1307,4.0,879503028 +537,1321,3.0,879503262 +537,1333,5.0,879503262 +537,1348,2.0,879502683 +537,1350,2.0,879507094 +537,1356,5.0,879503317 +537,1357,3.0,879503053 +537,1358,5.0,879502404 +537,1365,5.0,879502608 +537,1372,5.0,879520984 +537,1374,5.0,879502660 +537,1376,3.0,879506962 +537,1377,1.0,879521681 +537,1380,5.0,879521022 +537,1387,4.0,879503134 +537,1394,5.0,879520600 +537,1399,4.0,879507069 +537,1408,3.0,879520960 +537,1411,4.0,879502786 +537,1414,4.0,879502215 +537,1422,2.0,881749440 +537,1425,1.0,879521715 +537,1441,3.0,879502878 +537,1479,2.0,879502240 +537,1584,5.0,879502153 +537,1590,1.0,879502313 +537,1597,3.0,879502153 +537,1608,4.0,879502256 +537,1610,5.0,879520881 +537,1614,4.0,879502240 +537,1617,3.0,879502175 +537,5060,5.0,879506902 +538,1,5.0,831835670 +538,110,4.0,831835741 +538,111,5.0,831835877 +538,150,4.0,831835552 +538,153,3.0,831835577 +538,163,3.0,831835835 +538,165,3.0,831835647 +538,185,3.0,831835696 +538,207,3.0,831835877 +538,208,3.0,831835696 +538,246,5.0,831835856 +538,253,3.0,831835696 +538,288,3.0,831835741 +538,296,3.0,831835552 +538,300,5.0,831835696 +538,316,2.0,831835647 +538,318,5.0,831835577 +538,319,5.0,831835877 +538,329,2.0,831835647 +538,380,2.0,831835552 +538,509,5.0,831835835 +538,588,4.0,831835577 +538,590,4.0,831835552 +538,592,3.0,831835552 +538,595,3.0,831835647 +539,17,4.0,956159579 +539,46,3.0,951928750 +539,50,4.0,956159510 +539,265,4.0,956858891 +539,296,4.0,956858825 +539,318,4.0,956159456 +539,326,5.0,956159627 +539,527,4.0,951928689 +539,608,4.0,956159610 +539,1066,4.0,956159553 +539,1172,5.0,956858863 +539,1259,5.0,956858891 +539,1270,3.0,951928751 +539,1293,3.0,956858810 +539,1307,3.0,956159595 +539,1358,5.0,951928751 +539,1704,4.0,956858792 +539,2019,3.0,956159456 +539,2352,4.0,956858792 +539,3072,5.0,951928718 +539,3095,4.0,956159510 +539,3142,5.0,956159323 +539,3158,4.0,956159211 +539,3178,4.0,956159265 +539,3418,4.0,956858720 +539,3424,3.0,956858772 +540,318,5.0,1168076342 +540,1125,4.0,1168074085 +540,2643,4.0,1168075053 +540,2803,3.5,1168074137 +540,4226,4.0,1168076332 +540,4369,3.0,1168074098 +540,4558,4.0,1168075163 +540,4973,4.5,1168076276 +540,4975,4.5,1168074045 +540,5218,4.0,1168073989 +540,5309,4.5,1168075355 +540,5943,2.5,1168075282 +540,7293,4.5,1168075132 +540,7373,4.0,1168075070 +540,8783,4.5,1168075121 +540,8866,1.0,1168075646 +540,8917,1.5,1168075138 +540,34048,4.5,1168075097 +540,48516,4.5,1168076298 +540,48774,2.0,1168076287 +541,356,4.0,976829473 +541,785,3.0,976830103 +541,923,3.0,976829555 +541,1093,4.0,976829992 +541,1127,3.0,976829813 +541,1193,4.0,976829587 +541,2396,2.0,976830241 +541,2490,3.0,976830173 +541,2599,3.0,976830014 +541,2628,2.0,976829508 +541,2657,3.0,976829555 +541,2692,4.0,976830210 +541,2693,4.0,976830283 +541,2707,4.0,976829843 +541,2710,2.0,976829924 +541,2712,4.0,976830039 +541,2716,5.0,976830069 +541,2762,5.0,976830241 +541,2840,2.0,976830264 +541,2841,4.0,976830264 +541,2908,3.0,976829956 +541,2959,5.0,976830039 +541,2997,4.0,976829924 +541,3175,3.0,976830069 +541,3219,4.0,976830173 +541,3354,1.0,976830146 +541,3578,3.0,976830069 +541,3593,1.0,976829843 +541,3977,3.0,976829956 +542,1,4.5,1424965705 +542,329,4.0,1424965248 +542,858,5.0,1424965203 +542,941,3.0,1379198203 +542,1073,3.0,1424965570 +542,1221,5.0,1424965208 +542,1682,4.5,1424965672 +542,1704,3.0,1424965242 +542,1907,4.0,1424965699 +542,2384,1.5,1379197453 +542,2662,2.5,1379197476 +542,3646,2.5,1379197908 +542,3751,4.0,1424965707 +542,3945,4.0,1379198608 +542,4241,2.5,1379198504 +542,4306,4.5,1424965323 +542,4366,4.0,1379197913 +542,4886,5.0,1424965335 +542,4896,4.5,1424965530 +542,4973,5.0,1424965333 +542,4993,4.0,1424965323 +542,5218,2.0,1424966053 +542,5444,5.0,1424966052 +542,5445,4.5,1424965331 +542,5480,3.5,1379198275 +542,5796,4.0,1379198299 +542,5816,3.5,1424965542 +542,5952,4.0,1424965323 +542,6377,5.0,1424965714 +542,6539,4.5,1424965329 +542,7064,2.0,1379198242 +542,7153,4.5,1424965326 +542,8368,3.0,1424965555 +542,8961,3.0,1424965710 +542,26693,4.5,1379198698 +542,27706,2.0,1424965534 +542,33681,3.5,1379198860 +542,40815,4.0,1424965587 +542,46578,1.0,1424966216 +542,50872,5.0,1424965697 +542,51662,3.5,1424966220 +542,54001,2.0,1424965559 +542,58559,5.0,1424965212 +542,59315,4.5,1424966213 +542,59501,3.0,1424965565 +542,60069,4.5,1424965648 +542,62376,4.5,1424965590 +542,68954,5.0,1424965642 +542,69844,4.5,1424965553 +542,74530,4.0,1379198627 +542,74789,2.5,1424965538 +542,76093,5.0,1424965646 +542,78499,5.0,1424965701 +542,81834,5.0,1424965527 +542,82169,4.0,1424965567 +542,88125,5.0,1424965552 +542,89745,3.5,1424965642 +542,90531,3.5,1379198724 +542,91529,5.0,1424965642 +542,99149,2.5,1379198642 +542,109374,5.0,1424965254 +542,109487,3.5,1424965261 +542,116797,4.5,1424965256 +543,1,5.0,866931481 +543,3,5.0,866931510 +543,5,3.0,866931510 +543,7,5.0,866931538 +543,107,5.0,866931807 +543,141,5.0,866932242 +543,260,5.0,866931510 +543,376,4.0,866931538 +543,494,5.0,866932243 +543,608,5.0,866931510 +543,609,3.0,866931838 +543,631,3.0,866931854 +543,647,5.0,866931807 +543,648,5.0,866931482 +543,653,5.0,866931538 +543,661,5.0,866931789 +543,663,4.0,866931868 +543,673,4.0,866931807 +543,708,4.0,866931538 +543,719,5.0,866931789 +543,733,5.0,866931510 +543,736,5.0,866931480 +543,761,4.0,866931824 +543,762,5.0,866931772 +543,780,5.0,866931479 +543,783,4.0,866931789 +543,786,4.0,866931510 +543,788,3.0,866931538 +543,801,5.0,866931981 +543,802,4.0,866931538 +543,810,3.0,866931868 +543,837,4.0,866931883 +543,848,5.0,866931969 +543,852,5.0,866931789 +543,880,3.0,866931854 +543,881,4.0,866931981 +543,1073,3.0,866931510 +543,1210,5.0,866931772 +543,1356,5.0,866931538 +543,1363,4.0,866931930 +543,1367,3.0,866931824 +543,1429,4.0,866931957 +543,1460,4.0,866932056 +543,1485,5.0,866931930 +543,1513,5.0,866932056 +543,1562,4.0,866931657 +544,6,4.5,1442495715 +544,16,4.0,1442495597 +544,25,5.0,1442495673 +544,32,4.5,1435786126 +544,47,5.0,1435790584 +544,110,4.0,1442495635 +544,111,4.5,1435785957 +544,150,5.0,1435786826 +544,223,5.0,1442495824 +544,260,4.0,1435785892 +544,293,4.5,1435785947 +544,296,4.5,1435785870 +544,356,4.0,1435787001 +544,480,4.0,1442495639 +544,527,4.5,1435786179 +544,556,4.5,1435788129 +544,589,4.5,1435786213 +544,593,4.0,1435785913 +544,608,5.0,1435786043 +544,714,5.0,1435786318 +544,750,4.5,1435785884 +544,778,5.0,1435785992 +544,780,3.5,1442495645 +544,858,5.0,1435787291 +544,924,5.0,1435786026 +544,1080,5.0,1435786853 +544,1089,4.5,1435785946 +544,1090,4.5,1435787247 +544,1136,5.0,1435786089 +544,1147,4.0,1435787527 +544,1175,4.5,1435786234 +544,1196,4.0,1435785894 +544,1199,4.5,1435786860 +544,1200,5.0,1435786122 +544,1206,5.0,1435785994 +544,1208,5.0,1435785937 +544,1214,5.0,1435786045 +544,1217,4.5,1435786897 +544,1222,5.0,1435787230 +544,1230,5.0,1435787405 +544,1233,5.0,1435785959 +544,1240,4.5,1435786159 +544,1244,4.5,1435786954 +544,1258,4.5,1435786889 +544,1270,4.5,1435786256 +544,1320,4.0,1435790721 +544,1391,5.0,1442495599 +544,1500,4.5,1442495728 +544,1584,5.0,1435788295 +544,1645,4.0,1442495753 +544,1653,4.5,1435786492 +544,1680,4.5,1435790608 +544,1682,4.5,1435786612 +544,1704,4.0,1435786627 +544,1729,4.5,1442495757 +544,1732,5.0,1435786112 +544,1884,4.5,1435786867 +544,1921,4.0,1435788309 +544,1968,5.0,1435787454 +544,2019,5.0,1435785883 +544,2028,4.5,1435785950 +544,2117,5.0,1435788573 +544,2278,4.5,1442495770 +544,2329,4.0,1435785889 +544,2336,4.5,1435790461 +544,2396,4.0,1435790618 +544,2427,5.0,1435790999 +544,2455,4.5,1435788271 +544,2529,4.5,1435786091 +544,2542,5.0,1442495689 +544,2571,4.0,1435785905 +544,2692,4.5,1435786263 +544,2712,4.5,1435790337 +544,2716,4.5,1435786393 +544,2788,5.0,1435787256 +544,2858,4.0,1435785886 +544,2918,5.0,1435787004 +544,2947,5.0,1435787569 +544,2959,4.5,1435785873 +544,2997,4.5,1435786056 +544,3033,4.0,1435786659 +544,3160,4.5,1435790517 +544,3253,4.0,1435786474 +544,3328,5.0,1435790974 +544,3481,4.5,1435790189 +544,3535,4.5,1442496199 +544,3569,4.0,1435790295 +544,3578,4.0,1442496139 +544,3753,4.0,1442496090 +544,3910,4.0,1435790279 +544,3916,4.0,1435786457 +544,3949,4.5,1435786115 +544,3994,3.5,1442496096 +544,4011,4.5,1435786004 +544,4022,4.0,1442496159 +544,4027,4.5,1435787238 +544,4034,4.5,1435790796 +544,4144,4.5,1435786197 +544,4148,4.0,1442496227 +544,4223,4.5,1435790889 +544,4226,5.0,1442496141 +544,4246,4.0,1442496108 +544,4370,4.0,1442496116 +544,4643,4.0,1442496197 +544,4848,4.5,1442496191 +544,4874,4.0,1442496247 +544,4881,4.5,1442496311 +544,4914,5.0,1435786226 +544,4963,4.5,1435790757 +544,4973,3.5,1442496153 +544,4993,4.0,1442496144 +544,4995,4.5,1441130040 +544,5010,5.0,1442496124 +544,5152,4.0,1442496327 +544,5266,4.5,1435790719 +544,5269,5.0,1435789858 +544,5378,3.5,1442496088 +544,5388,4.5,1442496250 +544,5459,4.0,1442496181 +544,5502,4.5,1442496123 +544,5528,4.5,1442496289 +544,5633,4.5,1435790476 +544,5669,3.5,1435786473 +544,5673,5.0,1442496269 +544,5945,5.0,1442496261 +544,5952,4.0,1442496145 +544,5954,4.5,1435789865 +544,5956,4.5,1442496230 +544,6016,4.5,1435785875 +544,6218,4.0,1442496217 +544,6281,4.5,1442496272 +544,6365,3.5,1442496169 +544,6502,4.0,1435788303 +544,6711,4.0,1442496092 +544,6796,4.0,1435786495 +544,6807,5.0,1435786381 +544,6863,4.0,1442496188 +544,6874,4.5,1435787052 +544,6934,3.5,1442496100 +544,6975,5.0,1435786503 +544,6978,5.0,1442495801 +544,6979,4.0,1435786625 +544,7143,4.0,1435786571 +544,7153,4.0,1442496146 +544,7156,5.0,1435787477 +544,7323,5.0,1442496397 +544,7361,3.5,1435787413 +544,7438,4.5,1435786267 +544,7502,5.0,1435787386 +544,7980,4.0,1435786520 +544,8638,4.5,1435790121 +544,8937,5.0,1435786751 +544,8984,4.0,1435791025 +544,27611,4.0,1435786967 +544,30749,4.0,1435787483 +544,31410,5.0,1435787847 +544,31413,5.0,1442496445 +544,33493,4.0,1442495913 +544,33794,4.5,1442495894 +544,33903,4.5,1442496425 +544,34542,5.0,1435788175 +544,36527,4.0,1435790614 +544,37741,4.0,1442495987 +544,39292,4.5,1435790992 +544,40278,4.5,1441130082 +544,40583,4.5,1435790994 +544,40819,4.5,1442495939 +544,41285,5.0,1442495982 +544,41997,4.5,1442495865 +544,43376,4.5,1441130047 +544,44191,4.5,1435786278 +544,44195,4.0,1435786990 +544,44199,4.5,1435786313 +544,44555,5.0,1435787242 +544,45728,4.0,1435786693 +544,45950,4.5,1442496011 +544,46578,4.0,1442495907 +544,46723,4.0,1435786599 +544,48304,5.0,1442496004 +544,48385,5.0,1442495929 +544,48738,4.5,1442495877 +544,48774,4.5,1442495925 +544,49272,4.0,1442495909 +544,51540,4.5,1435790715 +544,51662,4.0,1442495917 +544,52328,4.0,1441129984 +544,53000,4.0,1442495883 +544,53322,4.0,1435790807 +544,53550,4.0,1441129490 +544,54286,4.0,1435787061 +544,55247,4.5,1435790092 +544,55274,4.5,1435790492 +544,55276,4.5,1442495996 +544,55814,4.0,1435790050 +544,55820,4.5,1435787294 +544,56286,4.5,1435790415 +544,56367,5.0,1435786380 +544,56782,4.0,1441128865 +544,56788,4.5,1435790930 +544,58559,4.5,1435787544 +544,58839,4.0,1435791035 +544,59315,4.0,1442495902 +544,60333,5.0,1435788158 +544,61013,5.0,1442496475 +544,61236,5.0,1435788088 +544,61323,5.0,1435786753 +544,63113,3.5,1442495977 +544,64197,5.0,1435789819 +544,64321,4.5,1442496442 +544,64499,5.0,1435790789 +544,64501,5.0,1435790798 +544,64620,5.0,1442496037 +544,64839,4.0,1442495874 +544,67508,4.5,1441129619 +544,68157,4.0,1435787229 +544,68237,5.0,1435787220 +544,69134,5.0,1435790312 +544,69481,5.0,1435786462 +544,70286,4.5,1435786350 +544,71156,4.0,1435791008 +544,75983,4.0,1441129616 +544,77455,4.5,1435787023 +544,77658,4.5,1435785901 +544,77800,5.0,1435786613 +544,79132,4.0,1435786926 +544,80126,4.5,1435790943 +544,80463,4.0,1435790710 +544,81562,5.0,1435786535 +544,81591,4.5,1435786349 +544,82459,4.0,1435787788 +544,85774,4.5,1435787688 +544,86190,4.5,1435790483 +544,86320,5.0,1435790249 +544,86345,5.0,1435787502 +544,86347,5.0,1435787503 +544,86377,5.0,1435787499 +544,88744,4.5,1435788240 +544,89470,5.0,1435790622 +544,89492,5.0,1435787776 +544,89804,4.5,1435790934 +544,90531,5.0,1435789821 +544,91500,4.0,1435786584 +544,91529,4.5,1435786218 +544,92535,5.0,1435787488 +544,94864,5.0,1435786825 +544,97304,4.5,1435787428 +544,97921,4.0,1435786395 +544,98154,4.5,1435790186 +544,98961,4.5,1435786508 +544,102445,4.0,1435788267 +544,103253,4.0,1435786696 +544,104069,5.0,1435787678 +544,104841,5.0,1435786512 +544,104913,5.0,1435789958 +544,105844,5.0,1435789807 +544,106487,4.0,1435786666 +544,106766,4.5,1435790440 +544,106920,4.5,1435788238 +544,108709,5.0,1441129470 +544,108727,4.5,1439664753 +544,108981,4.5,1439664758 +544,111759,3.5,1435787713 +544,112183,4.5,1441129929 +544,112552,5.0,1450635860 +544,115210,4.0,1435786632 +544,121491,4.5,1442496482 +544,126430,5.0,1441129082 +544,134130,5.0,1450635800 +545,34,4.0,938567928 +545,36,5.0,938567835 +545,47,5.0,938568630 +545,110,1.0,938568473 +545,111,5.0,938567835 +545,125,3.0,938568630 +545,262,1.0,938568368 +545,265,5.0,938568473 +545,296,5.0,938568162 +545,300,5.0,938568260 +545,493,3.0,938568558 +545,497,4.0,938568260 +545,515,5.0,938568040 +545,549,5.0,938568558 +545,555,5.0,938568630 +545,589,3.0,938567928 +545,608,5.0,938568162 +545,1059,1.0,938568260 +545,1060,5.0,938568260 +545,1097,5.0,938566176 +545,1172,5.0,938566437 +545,1173,2.0,938566655 +545,1183,3.0,938568473 +545,1186,5.0,938566655 +545,1193,5.0,938565586 +545,1213,3.0,938567835 +545,1225,5.0,938566176 +545,1228,5.0,938566319 +545,1230,5.0,938565974 +545,1244,5.0,938565586 +545,1246,3.0,938566746 +545,1249,5.0,938568368 +545,1259,5.0,938566437 +545,1273,4.0,938566556 +545,1290,5.0,938566847 +545,1293,5.0,938566319 +545,1296,5.0,938566655 +545,1358,5.0,938568773 +545,1406,5.0,938568040 +545,1572,5.0,938567680 +545,1617,4.0,938568773 +545,1667,1.0,938568773 +545,1673,5.0,938568473 +545,1704,4.0,938568260 +545,1719,4.0,938567928 +545,1721,3.0,938568040 +545,1729,3.0,938568473 +545,1834,4.0,938568162 +545,1885,1.0,938568473 +545,1955,5.0,938565672 +545,1956,5.0,938566176 +545,1958,5.0,938566746 +545,1959,5.0,938566941 +545,1960,5.0,938566655 +545,1961,3.0,938566437 +545,1962,4.0,938566941 +545,1968,5.0,938566941 +545,2000,1.0,938566941 +545,2020,5.0,938567095 +545,2065,3.0,938567188 +545,2069,4.0,938566176 +545,2076,5.0,938566176 +545,2114,4.0,938566847 +545,2145,5.0,938567095 +545,2146,2.0,938567095 +545,2194,4.0,938566655 +545,2239,4.0,938565672 +545,2240,1.0,938567095 +545,2243,5.0,938566176 +545,2245,4.0,938566746 +545,2248,5.0,938566556 +545,2262,2.0,938567095 +545,2290,1.0,938567322 +545,2291,5.0,938568368 +545,2302,1.0,938568040 +545,2312,5.0,938566556 +545,2313,5.0,938566437 +545,2333,4.0,938567835 +545,2345,4.0,938567411 +545,2348,4.0,938566176 +545,2352,5.0,938566437 +545,2702,2.0,938565060 +545,2704,5.0,938565137 +545,2706,2.0,938564775 +545,2710,2.0,938564887 +545,2712,2.0,938565060 +545,2738,1.0,938567411 +545,2750,4.0,938567322 +545,2757,5.0,938566319 +545,2762,3.0,938564775 +545,2858,5.0,938564775 +545,2866,4.0,938565754 +546,32,5.0,1300579659 +546,145,3.0,1300579094 +546,216,5.0,1303006754 +546,231,5.0,1303006753 +546,272,5.0,1300579160 +546,318,5.0,1300579410 +546,356,5.0,1300579552 +546,1214,5.0,1300580100 +546,1235,0.5,1300579191 +546,1246,5.0,1300579579 +546,1270,5.0,1301166348 +546,1291,5.0,1303171865 +546,1371,4.5,1300579118 +546,1376,5.0,1300579069 +546,1527,4.0,1300580106 +546,1586,3.0,1300579239 +546,1653,5.0,1300579881 +546,1704,5.0,1300579547 +546,1887,5.0,1303006760 +546,1918,5.0,1300579148 +546,1961,5.0,1300579584 +546,2011,5.0,1301166384 +546,2012,5.0,1301166493 +546,2294,5.0,1300579124 +546,2325,4.5,1303006095 +546,2407,4.5,1301166498 +546,2455,1.0,1300579129 +546,2529,4.5,1300579985 +546,2571,5.0,1300579975 +546,2617,5.0,1301167086 +546,2692,4.5,1300579968 +546,2761,4.0,1300579202 +546,2762,5.0,1300579558 +546,2959,5.0,1300579612 +546,2968,3.5,1300579138 +546,3147,5.0,1300579542 +546,3176,4.5,1300579051 +546,3471,4.0,1300579057 +546,3555,4.0,1300579233 +546,4370,4.0,1300580095 +546,4492,0.5,1301166589 +546,4571,5.0,1301166397 +546,4816,5.0,1303005823 +546,4980,5.0,1301166579 +546,5401,5.0,1303006745 +546,5445,4.0,1300579959 +546,5481,5.0,1303006090 +546,7153,5.0,1303171870 +546,7254,3.0,1300579952 +546,8622,0.5,1300579213 +546,25971,4.0,1300579425 +546,27611,5.0,1303171860 +546,33004,5.0,1301166503 +546,48780,5.0,1300579643 +546,52245,5.0,1303006740 +546,56251,5.0,1301166343 +546,58559,5.0,1303171678 +546,60161,5.0,1301166370 +546,60756,5.0,1303006748 +546,62956,5.0,1301166379 +546,64957,3.0,1300579566 +546,66297,5.0,1301166338 +546,76093,4.0,1303171687 +546,79008,5.0,1303172131 +546,79132,5.0,1300579920 +547,1,3.5,1053173138 +547,6,2.5,1149462857 +547,7,2.0,1021098817 +547,11,3.0,1418149949 +547,14,3.5,1053171195 +547,16,4.0,986694981 +547,17,5.0,974778941 +547,21,4.0,974809441 +547,25,4.5,1053087861 +547,32,4.0,981314489 +547,34,4.0,974780707 +547,36,4.0,1022958803 +547,39,3.0,974778610 +547,45,4.0,1022959385 +547,47,4.0,978953596 +547,50,4.0,981314122 +547,57,4.0,1135940915 +547,85,3.0,974810752 +547,94,3.5,1053172557 +547,111,5.0,974809870 +547,116,4.5,1135940972 +547,123,4.0,974810704 +547,125,5.0,1370674374 +547,141,1.0,1022680628 +547,144,2.0,978953694 +547,150,4.0,1149297271 +547,153,2.0,1076809491 +547,155,2.0,1022680052 +547,156,2.5,1106433953 +547,161,1.0,1021100453 +547,162,3.0,974779556 +547,164,3.0,974779821 +547,165,4.5,1175959303 +547,176,5.0,974780806 +547,180,0.5,1076968440 +547,186,3.0,1076209872 +547,193,3.5,1076810172 +547,194,5.0,986695368 +547,203,1.5,1076810290 +547,206,1.0,974778941 +547,222,2.5,1093859677 +547,223,0.5,1053173817 +547,232,4.0,974778291 +547,233,4.0,1022958885 +547,235,4.0,974780707 +547,237,1.0,1076810035 +547,246,5.0,974779093 +547,247,4.0,1028130173 +547,253,0.5,1053768893 +547,261,4.0,1022959104 +547,265,4.0,974778345 +547,266,4.0,1023200973 +547,272,4.0,981314441 +547,279,0.5,1106433903 +547,281,3.5,1053171818 +547,288,4.0,1074131478 +547,289,1.5,1076968459 +547,296,5.0,981314122 +547,300,4.5,1053087754 +547,307,3.0,981314355 +547,308,3.0,981314291 +547,318,5.0,1149387505 +547,334,1.0,1021099490 +547,337,4.5,1053087647 +547,342,4.0,986695097 +547,344,0.5,1076809463 +547,345,3.0,986695097 +547,346,3.0,1021100453 +547,349,3.5,1093859470 +547,350,3.0,1032907468 +547,356,2.0,986694882 +547,357,4.5,1175959289 +547,361,1.0,1076209353 +547,365,2.5,1076968737 +547,369,3.0,1160092880 +547,370,4.5,1076809759 +547,371,2.0,1076810351 +547,372,2.0,1076810061 +547,373,3.0,981314249 +547,377,2.0,974810837 +547,380,3.0,1313414054 +547,381,3.0,994152921 +547,390,3.5,1199391961 +547,412,3.0,1010571549 +547,428,3.5,1118499551 +547,434,1.5,1076809439 +547,440,3.5,1053171907 +547,441,4.5,1053087986 +547,448,5.0,981314419 +547,451,3.0,974810752 +547,454,2.5,1076809450 +547,457,4.0,1023200826 +547,461,1.0,1053173353 +547,474,4.0,986694437 +547,475,4.0,1022959018 +547,477,4.5,1053087935 +547,480,3.0,978953638 +547,490,2.0,1022680440 +547,492,2.0,1022680236 +547,495,4.0,981312547 +547,496,3.0,974778561 +547,500,4.0,1031663976 +547,508,3.0,986695770 +547,509,1.0,986694295 +547,515,4.5,1053087612 +547,518,0.5,1076209489 +547,523,3.0,986695128 +547,524,1.0,1022680161 +547,527,5.0,974809897 +547,529,3.5,1053171413 +547,535,3.0,1021100281 +547,536,1.0,1076968705 +547,537,3.5,1076810727 +547,538,4.0,1106434260 +547,539,3.0,986695485 +547,541,3.5,1198816303 +547,549,2.5,1053173122 +547,555,4.5,1053087931 +547,556,3.0,974778314 +547,562,0.5,1053173877 +547,574,2.0,1022680283 +547,581,5.0,974779641 +547,586,3.0,1076809577 +547,587,3.0,1022680570 +547,590,3.0,1022958550 +547,592,1.0,981313125 +547,593,5.0,974778314 +547,594,5.0,1053172631 +547,595,3.5,1230811517 +547,596,4.0,1053171222 +547,597,3.5,1076809426 +547,608,5.0,974778259 +547,628,4.0,986695232 +547,671,4.0,1000729661 +547,674,3.0,1022966133 +547,685,1.5,1053173380 +547,708,2.5,1053172507 +547,720,2.0,1022679501 +547,728,3.0,974809302 +547,736,3.0,1076809407 +547,745,2.0,974778219 +547,746,2.0,1076968846 +547,750,5.0,974850245 +547,766,3.0,986695721 +547,778,4.0,986694323 +547,780,3.5,1076209233 +547,781,4.0,1010571681 +547,800,3.0,974810036 +547,803,4.0,974810725 +547,804,2.0,1145756452 +547,805,2.5,1114272607 +547,824,2.0,1076968814 +547,838,3.0,986694546 +547,848,2.0,1051689027 +547,851,3.0,1022680672 +547,858,4.0,1022958954 +547,866,4.5,1135940990 +547,898,5.0,974780201 +547,899,5.0,974777482 +547,900,3.0,1021572842 +547,902,5.0,974810254 +547,903,5.0,974777443 +547,904,5.0,974777410 +547,905,4.0,1150858036 +547,906,4.0,1119670216 +547,908,5.0,974777109 +547,909,5.0,974780397 +547,910,5.0,974777443 +547,911,2.0,974809373 +547,912,5.0,974781004 +547,913,5.0,974779724 +547,915,3.0,1022676611 +547,917,4.0,1022242420 +547,918,4.0,1022242562 +547,919,5.0,974809870 +547,920,5.0,974810010 +547,921,4.0,974780397 +547,922,5.0,974777443 +547,923,5.0,1022242534 +547,924,5.0,974810010 +547,926,5.0,974777482 +547,927,5.0,974780614 +547,928,5.0,974810654 +547,929,3.0,1022242645 +547,930,4.0,974779771 +547,931,4.0,1022242677 +547,932,2.0,1021572980 +547,933,3.0,974777753 +547,938,4.5,1053088166 +547,942,4.5,1053171784 +547,945,4.0,974780111 +547,947,3.0,1076809271 +547,948,3.5,1053171326 +547,949,4.0,974777410 +547,950,4.5,1135941066 +547,951,3.0,1152411351 +547,952,4.0,1039880724 +547,953,5.0,1022242596 +547,954,4.5,1187141614 +547,955,5.0,974780009 +547,968,4.0,1022959171 +547,969,5.0,974777443 +547,970,3.0,1076213090 +547,971,5.0,974777662 +547,988,3.0,1006759535 +547,994,5.0,981314291 +547,999,2.0,1022957825 +547,1012,3.5,1199574887 +547,1013,3.5,1053087599 +547,1014,3.5,1199573539 +547,1015,1.5,1145756434 +547,1017,3.5,1199573543 +547,1018,2.5,1199392360 +547,1022,3.0,1076810154 +547,1023,3.0,1199391635 +547,1028,5.0,974780614 +547,1029,5.0,1011142236 +547,1030,0.5,1199220570 +547,1032,3.5,1093859775 +547,1035,5.0,986725723 +547,1036,5.0,981312935 +547,1041,3.5,1053171646 +547,1042,2.0,1022680594 +547,1043,1.5,1246886466 +547,1050,2.5,1053173031 +547,1051,4.0,1022959385 +547,1059,4.0,986695232 +547,1060,4.0,986694546 +547,1068,3.5,1089886857 +547,1069,4.0,1118102104 +547,1077,4.5,1135941051 +547,1078,4.0,974809373 +547,1079,2.0,974780642 +547,1080,5.0,974780841 +547,1081,3.0,1079831508 +547,1082,4.0,986725564 +547,1084,4.5,1135940980 +547,1086,3.0,974777662 +547,1088,5.0,1384462255 +547,1089,4.5,1106434167 +547,1090,4.0,974810188 +547,1092,4.0,1039880724 +547,1093,3.5,1053171305 +547,1094,4.5,1135941106 +547,1095,3.5,1053171131 +547,1096,4.0,974810188 +547,1097,4.0,981312902 +547,1099,4.0,1028129929 +547,1103,5.0,974777566 +547,1104,5.0,974777410 +547,1120,3.0,986694437 +547,1124,3.0,981313014 +547,1129,3.5,1073443756 +547,1135,3.0,981313482 +547,1147,5.0,974779123 +547,1148,2.0,974778219 +547,1150,2.0,1021196325 +547,1152,3.0,1101005921 +547,1153,3.0,1196550476 +547,1154,1.0,1190927827 +547,1161,4.0,986725512 +547,1162,4.0,1022959270 +547,1171,3.0,974809441 +547,1172,5.0,1373125067 +547,1173,0.5,1053173820 +547,1177,3.0,986694736 +547,1179,4.5,1053172163 +547,1183,4.5,1175959575 +547,1185,3.0,981312986 +547,1186,4.5,1106434179 +547,1187,3.0,981314334 +547,1188,1.5,1072254457 +547,1189,5.0,974779556 +547,1190,0.5,1053173866 +547,1191,3.5,1076209448 +547,1192,2.5,1053172477 +547,1193,4.0,974809940 +547,1194,2.0,981312606 +547,1196,2.5,1053173114 +547,1198,2.0,981312829 +547,1199,4.0,1022958741 +547,1200,3.5,1076809605 +547,1203,4.0,1028129718 +547,1204,5.0,974850245 +547,1206,3.0,978360653 +547,1207,5.0,974809846 +547,1208,5.0,974810204 +547,1210,2.5,1053173111 +547,1212,5.0,1022242596 +547,1213,5.0,974809988 +547,1214,3.5,1053172823 +547,1217,5.0,974809963 +547,1219,5.0,974850245 +547,1220,2.0,981313273 +547,1221,4.0,1022958954 +547,1222,4.5,1053087703 +547,1223,2.0,974779039 +547,1225,3.0,1047719348 +547,1226,2.5,1093141366 +547,1227,1.0,1055074335 +547,1228,4.0,974809988 +547,1230,5.0,974779878 +547,1231,4.5,1135941152 +547,1233,0.5,1053173745 +547,1234,4.5,1053087910 +547,1235,4.0,1199218246 +547,1236,3.0,974779093 +547,1238,4.0,974780397 +547,1244,5.0,974809189 +547,1246,1.0,1022958592 +547,1247,5.0,974781004 +547,1248,5.0,974779724 +547,1249,3.0,978953537 +547,1250,3.5,1199575001 +547,1251,5.0,974809897 +547,1252,5.0,974779724 +547,1253,4.0,1114226269 +547,1254,5.0,1022242534 +547,1256,5.0,974780009 +547,1258,5.0,981312865 +547,1259,2.0,974780367 +547,1261,2.0,981313206 +547,1263,5.0,974810170 +547,1264,5.0,974810676 +547,1265,5.0,974780741 +547,1266,3.0,981314471 +547,1267,5.0,1002724048 +547,1268,3.0,1022680645 +547,1269,5.0,974809441 +547,1270,3.5,1053172545 +547,1271,4.0,1022958921 +547,1276,4.5,1053088143 +547,1278,5.0,974780672 +547,1279,3.5,1053172004 +547,1280,4.5,1072253880 +547,1282,5.0,978953596 +547,1284,4.0,974779821 +547,1285,3.5,1053171538 +547,1286,2.5,1053172626 +547,1288,4.5,1198815508 +547,1289,3.5,1053171164 +547,1290,3.0,1076209295 +547,1292,4.0,974780672 +547,1293,5.0,981312829 +547,1295,5.0,981313323 +547,1296,5.0,974809917 +547,1299,5.0,974809917 +547,1300,3.0,981312775 +547,1302,4.0,981313155 +547,1303,5.0,978360689 +547,1304,5.0,974780302 +547,1305,4.5,1135941143 +547,1307,5.0,974809247 +547,1321,4.0,1028129810 +547,1331,1.0,981312703 +547,1332,1.5,1308399120 +547,1333,5.0,974850335 +547,1334,2.0,1022676820 +547,1337,3.5,1200873422 +547,1340,4.5,1329536401 +547,1343,4.0,1022958349 +547,1344,2.0,1022958349 +547,1345,3.0,1022958350 +547,1346,2.0,1022678769 +547,1347,3.0,981313598 +547,1348,5.0,1022676127 +547,1357,4.0,974810806 +547,1358,4.0,974778610 +547,1361,5.0,974779556 +547,1370,4.0,1000530142 +547,1371,1.0,1022677648 +547,1374,2.0,981313433 +547,1377,2.5,1076809861 +547,1380,3.0,981312334 +547,1387,4.0,1153015696 +547,1391,0.5,1076809696 +547,1392,3.0,974780707 +547,1393,3.5,1053171948 +547,1394,2.0,974780533 +547,1395,4.5,1053087916 +547,1396,2.5,1059943485 +547,1399,3.5,1053171366 +547,1405,4.0,1076209789 +547,1407,4.0,986694854 +547,1411,5.0,974809897 +547,1413,2.0,1075587876 +547,1416,2.5,1053173224 +547,1419,4.5,1199390422 +547,1441,4.0,1000729826 +547,1449,4.0,978186367 +547,1464,4.0,1032907360 +547,1466,4.5,1053171104 +547,1475,4.5,1096608819 +547,1476,3.0,986695097 +547,1484,3.5,1053172346 +547,1487,2.5,1119491588 +547,1498,2.0,987185186 +547,1500,3.5,1053172366 +547,1517,1.5,1053173789 +547,1569,3.5,1053172000 +547,1573,1.0,986695422 +547,1580,2.0,986695422 +547,1584,4.0,1076809653 +547,1587,1.0,1022679046 +547,1589,3.5,1076968428 +547,1594,4.0,986694295 +547,1596,1.0,1022680129 +547,1600,2.0,978953694 +547,1610,2.5,1053171334 +547,1611,4.0,986694736 +547,1614,4.0,1053172209 +547,1617,4.5,1053088024 +547,1625,3.5,1076809981 +547,1633,3.0,986694949 +547,1635,4.5,1053088018 +547,1639,0.5,1053173814 +547,1641,4.0,974780642 +547,1649,3.0,974779641 +547,1652,4.5,1123252473 +547,1660,3.0,1022679737 +547,1673,2.5,1053173189 +547,1674,3.0,981312902 +547,1678,3.5,1053172220 +547,1680,4.0,986695020 +547,1682,4.5,1053088101 +547,1683,3.0,1106432637 +547,1693,4.0,1386245353 +547,1694,4.0,981314271 +547,1702,3.5,1145755746 +547,1704,3.0,974778291 +547,1711,1.0,1076810577 +547,1719,4.0,974810224 +547,1721,4.5,1053087784 +547,1729,5.0,986695295 +547,1732,5.0,986695368 +547,1734,3.5,1342849917 +547,1747,4.0,1022959422 +547,1757,4.0,1416886588 +547,1777,3.0,1022680161 +547,1784,4.0,986694582 +547,1798,2.0,974777150 +547,1805,3.5,1053172511 +547,1810,4.0,986694981 +547,1834,4.5,1053087777 +547,1836,1.0,1000548657 +547,1856,2.5,1053173023 +547,1865,1.0,982553042 +547,1883,3.0,974809349 +547,1885,4.5,1053087582 +547,1897,3.0,974810773 +547,1909,3.0,1022680545 +547,1912,0.5,1053173420 +547,1913,4.5,1135941146 +547,1914,2.0,974780741 +547,1916,4.0,1053087504 +547,1921,2.0,1022680375 +547,1923,4.0,1000729826 +547,1924,4.0,1135940765 +547,1934,3.5,1106429881 +547,1936,4.0,1022242645 +547,1938,4.0,1022242596 +547,1939,5.0,974810036 +547,1940,2.5,1412348227 +547,1943,3.0,1206759247 +547,1944,3.0,974777662 +547,1945,5.0,974777443 +547,1946,5.0,974777482 +547,1947,5.0,974810634 +547,1948,5.0,974780614 +547,1950,5.0,974810080 +547,1951,3.0,1021195882 +547,1952,5.0,974809963 +547,1953,5.0,1007046673 +547,1954,1.5,1053173532 +547,1955,4.0,1022959041 +547,1956,5.0,974809988 +547,1958,3.0,981312935 +547,1960,4.0,1022677914 +547,1961,3.0,981312902 +547,1962,3.5,1053171514 +547,1963,4.0,974780672 +547,1964,4.0,974810080 +547,1965,4.0,981313273 +547,1966,1.0,986695770 +547,1968,2.5,1109395730 +547,1987,3.0,981313848 +547,1994,4.5,1053087745 +547,1997,3.0,978185575 +547,2011,1.0,1022678537 +547,2012,0.5,1076809750 +547,2013,2.0,981312606 +547,2014,1.0,1076968597 +547,2015,3.5,1199392090 +547,2017,3.0,1119491602 +547,2018,5.0,1041496155 +547,2019,5.0,974777410 +547,2020,4.5,1053087974 +547,2021,2.0,981313620 +547,2023,2.0,1010571657 +547,2025,4.0,1022957435 +547,2043,3.5,1199574304 +547,2049,2.5,1199392175 +547,2056,3.5,1199391553 +547,2057,3.5,1199391556 +547,2064,5.0,974779641 +547,2065,3.0,974780367 +547,2066,4.5,1093832403 +547,2067,5.0,974810676 +547,2070,4.0,981312865 +547,2072,2.0,1022957825 +547,2076,5.0,981312865 +547,2078,4.0,1076810225 +547,2080,3.5,1199575375 +547,2085,3.0,1199391583 +547,2087,3.5,1093859822 +547,2088,2.0,981313828 +547,2096,3.5,1199574337 +547,2108,3.5,1053171359 +547,2110,2.0,1022958592 +547,2111,2.0,981313155 +547,2112,2.0,986694509 +547,2125,3.5,1349549437 +547,2130,4.0,974810100 +547,2132,5.0,974809963 +547,2135,1.0,978953720 +547,2144,2.5,1107835294 +547,2145,3.5,1053172380 +547,2146,2.0,1053173082 +547,2150,4.5,1198815501 +547,2155,2.0,1000729750 +547,2160,4.0,974850297 +547,2165,3.5,1053172050 +547,2166,2.5,1076209422 +547,2171,3.5,1106432907 +547,2174,0.5,1053173806 +547,2176,4.0,986725023 +547,2181,4.0,1021195940 +547,2183,4.0,986725023 +547,2184,4.0,1021572958 +547,2186,5.0,974779724 +547,2188,2.0,994874444 +547,2194,2.0,981313014 +547,2203,5.0,974779724 +547,2204,4.0,987185079 +547,2206,4.0,1022242698 +547,2208,4.0,1053087565 +547,2239,2.0,974780841 +547,2243,4.5,1135941202 +547,2245,4.5,1198813548 +547,2247,4.0,981313206 +547,2248,5.0,974780533 +547,2259,0.5,1053173753 +547,2260,2.0,981313886 +547,2262,1.0,1022678597 +547,2268,3.0,986694651 +547,2271,3.5,1076209613 +547,2272,3.5,1053171204 +547,2283,5.0,1000456190 +547,2285,5.0,986725785 +547,2289,5.0,974779093 +547,2290,4.0,981313410 +547,2291,4.0,974810752 +547,2300,5.0,974780367 +547,2302,3.5,1053171386 +547,2303,5.0,974809897 +547,2313,4.0,981312829 +547,2318,1.0,986694949 +547,2321,4.5,1053171226 +547,2324,5.0,978186309 +547,2329,4.0,994606869 +547,2333,4.0,981314441 +547,2336,4.0,981314227 +547,2348,2.0,974810144 +547,2349,4.5,1053087725 +547,2352,4.5,1053171088 +547,2353,3.5,1053171111 +547,2356,0.5,1053173743 +547,2357,5.0,974778610 +547,2360,3.0,1108846695 +547,2362,4.0,1135940780 +547,2363,4.0,1022676793 +547,2364,3.0,1022678263 +547,2366,4.0,1022242443 +547,2369,4.5,1135940791 +547,2384,4.0,1022680440 +547,2391,4.5,1053088081 +547,2395,2.0,974780868 +547,2396,3.0,974778291 +547,2398,5.0,974810144 +547,2406,3.0,981313125 +547,2416,2.0,1022678444 +547,2424,1.0,1076810074 +547,2441,3.0,1021099595 +547,2446,2.0,998474371 +547,2454,3.5,1199574689 +547,2455,4.0,981313365 +547,2463,2.0,981313206 +547,2474,5.0,981313301 +547,2485,2.0,994874696 +547,2501,3.5,1202821449 +547,2502,2.5,1053173037 +547,2511,4.0,1128298270 +547,2520,2.0,981312606 +547,2535,1.0,981312642 +547,2539,3.0,1047719404 +547,2542,1.0,1106432602 +547,2545,3.0,1076209818 +547,2546,2.0,1010667653 +547,2550,3.0,1131845704 +547,2551,3.0,1022958592 +547,2565,3.0,974777662 +547,2570,0.5,1053173684 +547,2571,3.5,1053171807 +547,2572,2.0,1022957825 +547,2580,4.5,1053087543 +547,2583,1.0,1022958483 +547,2590,4.0,1022680129 +547,2598,3.0,997190749 +547,2599,3.5,1053173008 +547,2600,2.0,986695097 +547,2610,4.0,986694704 +547,2612,5.0,974810080 +547,2616,0.5,1076810622 +547,2617,2.0,1076809795 +547,2621,3.0,1021100077 +547,2631,3.0,1135940828 +547,2633,4.0,1022242444 +547,2634,3.0,1134102745 +547,2635,3.0,1022242801 +547,2639,4.0,981313505 +547,2640,2.0,1021195505 +547,2644,5.0,1022242420 +547,2648,5.0,1022242366 +547,2651,4.0,1022242765 +547,2654,4.0,1022242730 +547,2657,4.0,1022959249 +547,2664,4.0,1022676611 +547,2671,2.0,1000530166 +547,2678,3.0,1041175153 +547,2683,1.0,1022958026 +547,2688,1.0,994874556 +547,2689,3.5,1183502386 +547,2690,4.0,1045398398 +547,2692,4.0,974810704 +547,2696,4.0,1022957170 +547,2697,2.0,1000729685 +547,2699,1.5,1108173501 +547,2700,3.0,974780614 +547,2702,2.0,980633666 +547,2707,3.0,1055595377 +547,2710,2.0,994874467 +547,2712,3.5,1053172141 +547,2716,4.0,981313155 +547,2717,2.0,981313744 +547,2724,2.0,994874696 +547,2726,5.0,1003062907 +547,2727,4.0,1157943887 +547,2728,4.5,1199391614 +547,2729,3.5,1199573127 +547,2731,5.0,974777410 +547,2732,5.0,974809963 +547,2738,1.0,981313385 +547,2739,4.0,981312902 +547,2745,4.0,1022959138 +547,2750,3.0,986725277 +547,2755,2.0,981313642 +547,2757,3.0,994874556 +547,2759,3.5,1053173005 +547,2762,4.0,981314171 +547,2763,4.0,1022680730 +547,2764,4.0,1199391855 +547,2770,4.0,1039881071 +547,2779,3.0,981312334 +547,2780,3.5,1199559991 +547,2782,3.5,1199391598 +547,2788,4.0,1053087483 +547,2791,5.0,974780533 +547,2792,4.0,1028129718 +547,2795,3.5,1432359536 +547,2797,5.0,974809415 +547,2802,2.5,1053172622 +547,2804,3.0,974809897 +547,2809,2.0,1010814504 +547,2819,3.0,978360730 +547,2840,1.5,1053173557 +547,2852,3.0,981313085 +547,2856,3.0,1199391541 +547,2858,5.0,974778291 +547,2859,4.0,1198815522 +547,2863,5.0,1371914224 +547,2866,3.0,981312455 +547,2870,2.0,1199392080 +547,2871,4.5,1053172362 +547,2875,2.0,1145755905 +547,2877,0.5,1053173696 +547,2878,1.0,1022678681 +547,2883,3.0,1022679847 +547,2890,5.0,981314335 +547,2908,4.0,1028129879 +547,2915,2.0,981312935 +547,2916,3.5,1053171447 +547,2917,4.5,1053088432 +547,2918,3.5,1251535667 +547,2919,4.0,974810170 +547,2925,5.0,974810144 +547,2926,4.0,974809441 +547,2928,3.0,981313457 +547,2929,4.0,981312986 +547,2932,3.0,978360689 +547,2935,4.0,1022242562 +547,2937,3.5,1150862708 +547,2939,3.0,1022676711 +547,2940,3.0,974779821 +547,2941,5.0,974777988 +547,2942,4.0,981313684 +547,2946,5.0,974809487 +547,2947,2.5,1053173230 +547,2956,3.0,981313524 +547,2959,3.5,1053171724 +547,2966,3.0,974779039 +547,2967,3.0,974777988 +547,2970,2.0,974810224 +547,2971,5.0,978360689 +547,2973,3.0,974780201 +547,2976,3.5,1053171501 +547,2987,3.5,1053172048 +547,2988,4.0,981312935 +547,2993,3.5,1199391865 +547,2997,5.0,974779039 +547,3005,3.5,1076810524 +547,3006,4.0,974778314 +547,3007,4.5,1148929176 +547,3011,4.0,974850335 +547,3019,4.5,1053088153 +547,3020,2.5,1093859953 +547,3022,4.5,1196123015 +547,3028,3.0,1053171438 +547,3037,4.5,1199390407 +547,3038,5.0,974777753 +547,3039,3.0,981313231 +547,3044,2.0,974810837 +547,3045,2.0,1022680751 +547,3051,3.0,994874444 +547,3052,2.0,986694918 +547,3060,5.0,974809282 +547,3061,2.0,1022242730 +547,3068,3.0,974810254 +547,3069,3.0,981312419 +547,3072,3.5,1053171813 +547,3075,4.0,1199559026 +547,3077,4.5,1148929145 +547,3088,5.0,974777753 +547,3090,2.0,981312829 +547,3093,2.0,981312522 +547,3094,2.0,1022677941 +547,3095,3.5,1053087552 +547,3096,3.0,1126235904 +547,3097,3.0,974779878 +547,3098,2.0,981313046 +547,3099,3.0,974780741 +547,3100,4.5,1135941252 +547,3101,5.0,981313323 +547,3102,3.5,1053171944 +547,3104,5.0,981312902 +547,3105,4.0,986694487 +547,3108,5.0,986695020 +547,3115,2.0,994874556 +547,3118,3.0,1000729110 +547,3121,3.5,1090114983 +547,3125,3.0,986695020 +547,3128,2.0,1010814554 +547,3130,2.0,1076968530 +547,3135,3.5,1053171740 +547,3138,2.0,1022678681 +547,3142,4.0,1021196501 +547,3144,2.0,1021196137 +547,3147,4.0,1000141619 +547,3148,3.0,1022958419 +547,3152,5.0,974809988 +547,3160,4.0,974778541 +547,3167,5.0,978360689 +547,3168,5.0,974850393 +547,3169,3.0,974810119 +547,3174,3.0,1076810388 +547,3175,4.0,1000729773 +547,3176,4.5,1053087630 +547,3182,3.5,1192671757 +547,3183,2.0,1076209698 +547,3186,2.0,1022680413 +547,3188,3.0,1118499520 +547,3194,3.5,1067207663 +547,3199,2.0,1189650561 +547,3200,4.0,981312334 +547,3201,3.0,974777109 +547,3203,4.0,1022958803 +547,3206,3.0,1047719315 +547,3210,2.0,1030464587 +547,3211,4.0,981313457 +547,3219,3.0,994874643 +547,3244,3.5,1053172155 +547,3247,1.0,1076810655 +547,3253,5.0,986694295 +547,3254,4.0,1022959422 +547,3255,3.0,986695368 +547,3260,5.0,974778541 +547,3261,3.0,1022680129 +547,3262,0.5,1109437677 +547,3263,4.0,1076209727 +547,3269,0.5,1076968288 +547,3271,3.5,1053171393 +547,3274,3.0,1022680497 +547,3285,2.0,997190885 +547,3292,3.5,1422800034 +547,3296,4.0,986725674 +547,3301,2.0,998490344 +547,3307,5.0,974779878 +547,3310,5.0,1328537281 +547,3317,4.0,1022966086 +547,3328,4.0,974810355 +547,3330,3.5,1199573433 +547,3334,3.0,974779771 +547,3340,3.5,1199575367 +547,3341,3.0,974777482 +547,3343,1.0,1022957955 +547,3347,3.5,1053171599 +547,3350,3.5,1199391603 +547,3358,1.0,974780868 +547,3359,4.0,974810036 +547,3360,2.5,1111809502 +547,3361,5.0,974780707 +547,3362,5.0,974780201 +547,3363,3.0,974780201 +547,3364,4.0,1109437962 +547,3365,3.0,1127078797 +547,3377,3.5,1186274522 +547,3379,2.0,1135979254 +547,3380,2.5,1089856364 +547,3385,2.0,981313828 +547,3386,5.0,986694736 +547,3395,1.0,981313744 +547,3405,3.0,1336324528 +547,3408,3.0,1131635584 +547,3418,5.0,981314419 +547,3420,1.0,981312606 +547,3422,3.5,1053172254 +547,3424,5.0,974780642 +547,3426,3.0,1053171770 +547,3430,0.5,1053173832 +547,3435,4.0,974779724 +547,3445,3.5,1053171526 +547,3448,2.0,981313482 +547,3450,0.5,1053173838 +547,3451,2.5,1199391817 +547,3457,3.0,1032906047 +547,3461,4.0,974850335 +547,3462,5.0,974779878 +547,3467,4.5,1086010787 +547,3468,5.0,974810010 +547,3469,4.0,1199573572 +547,3471,4.0,978360730 +547,3475,4.5,1053171830 +547,3476,3.5,1053171564 +547,3478,4.0,981313301 +547,3481,4.5,1053171156 +547,3489,1.5,1093859879 +547,3494,3.0,1022677114 +547,3499,3.0,981314355 +547,3504,5.0,974780201 +547,3505,4.0,1022959171 +547,3507,5.0,978953566 +547,3508,3.0,986725564 +547,3512,1.0,1131636082 +547,3516,2.5,1053172977 +547,3521,3.0,974809247 +547,3524,4.0,981313345 +547,3526,2.0,974809466 +547,3528,3.0,1010571613 +547,3536,4.5,1131635466 +547,3537,2.0,986693890 +547,3540,2.0,1010814604 +547,3543,3.0,974780302 +547,3545,4.5,1073215458 +547,3546,5.0,986725757 +547,3551,2.5,1199220228 +547,3565,2.0,974779241 +547,3571,2.5,1145756074 +547,3578,3.0,1053171122 +547,3604,4.0,1022677046 +547,3606,3.0,1022242645 +547,3613,2.0,981313125 +547,3614,0.5,1145755874 +547,3622,4.0,974809373 +547,3649,2.0,981313180 +547,3653,4.0,1021195916 +547,3668,4.0,974810654 +547,3675,1.0,974777988 +547,3676,1.0,1152401476 +547,3682,1.0,1021195577 +547,3683,4.0,1022958185 +547,3684,5.0,981313231 +547,3685,1.0,974780642 +547,3699,4.0,981312986 +547,3700,4.0,1039881097 +547,3706,2.0,974779821 +547,3707,2.5,1053172471 +547,3712,3.5,1053172270 +547,3713,2.0,986694400 +547,3724,5.0,978360689 +547,3728,3.0,974779093 +547,3730,5.0,974809870 +547,3731,4.0,981313180 +547,3734,3.0,981313547 +547,3735,3.5,1053171651 +547,3736,4.0,1189814634 +547,3741,5.0,974810100 +547,3751,2.5,1131635755 +547,3752,1.5,1182395350 +547,3763,4.0,981313125 +547,3788,2.0,974850393 +547,3798,2.0,1076810695 +547,3801,4.0,1022676574 +547,3809,4.5,1182394619 +547,3812,4.5,1106443915 +547,3813,2.0,981312481 +547,3814,4.0,1022959105 +547,3825,1.0,1022958484 +547,3826,0.5,1131636063 +547,3833,3.5,1199573055 +547,3834,1.0,1022678312 +547,3844,3.5,1053172021 +547,3852,2.5,1053172499 +547,3868,5.0,981313085 +547,3869,4.5,1329536356 +547,3871,3.5,1199576012 +547,3872,5.0,974777566 +547,3873,4.0,974780741 +547,3886,3.5,1053171261 +547,3893,2.0,986693508 +547,3897,4.5,1053171486 +547,3911,3.5,1053172684 +547,3916,3.0,1041175023 +547,3925,4.0,1198815601 +547,3927,3.0,986725757 +547,3928,2.5,1157944138 +547,3929,4.0,1022958694 +547,3930,3.0,1022958484 +547,3932,4.0,1022959018 +547,3948,4.0,1010342592 +547,3949,3.5,1078713460 +547,3952,4.0,1022958484 +547,3957,2.0,1022958185 +547,3963,0.5,1182395119 +547,3965,4.0,1189137495 +547,3966,4.5,1094983548 +547,3967,2.5,1131635750 +547,3969,2.5,1053173042 +547,3977,2.0,1022958388 +547,3983,4.0,1022966086 +547,3989,4.5,1183860154 +547,3994,2.0,1027702155 +547,3996,4.0,1131635315 +547,3998,3.0,1010342559 +547,4002,2.5,1053173048 +547,4008,2.0,1022958254 +547,4009,4.0,978953566 +547,4011,0.5,1182395132 +547,4014,4.0,1009855484 +547,4020,3.0,1145756348 +547,4021,4.0,1093141336 +547,4022,4.0,1133584723 +547,4023,1.0,1182395078 +547,4024,3.0,1053768465 +547,4027,5.0,1010451729 +547,4029,3.5,1053171418 +547,4034,4.5,1131635350 +547,4036,2.5,1131635813 +547,4037,5.0,978953537 +547,4041,3.0,1053171604 +547,4043,4.0,978953537 +547,4054,3.0,1001166045 +547,4055,3.5,1053171823 +547,4056,3.5,1053172767 +547,4061,2.0,1021100232 +547,4062,3.5,1053171188 +547,4063,3.0,980609789 +547,4066,4.0,986724989 +547,4067,1.0,1030464418 +547,4080,2.0,1022958026 +547,4085,4.0,1028129848 +547,4086,4.0,1028129848 +547,4098,3.0,980609709 +547,4108,4.0,980609692 +547,4116,4.0,980609672 +547,4121,3.0,980609646 +547,4123,3.0,980609646 +547,4144,4.0,1005922068 +547,4161,2.0,1000653100 +547,4174,3.0,1047719533 +547,4175,3.0,1053171148 +547,4183,3.0,986694020 +547,4185,4.0,1106443092 +547,4187,3.5,1053171574 +547,4188,4.0,1021572916 +547,4190,3.0,986724989 +547,4191,4.0,1028129718 +547,4194,3.0,986724961 +547,4205,2.0,1076968513 +547,4210,3.0,987185079 +547,4211,4.0,986694070 +547,4216,3.5,1053171793 +547,4217,3.5,1181782959 +547,4218,4.5,1053087897 +547,4226,4.5,1053172227 +547,4228,2.0,995799623 +547,4231,1.0,1050243723 +547,4235,4.5,1180756579 +547,4236,3.0,1076889998 +547,4239,3.0,1044093938 +547,4246,2.0,1050243493 +547,4263,4.5,1199572948 +547,4270,2.5,1131635789 +547,4276,2.0,1022678059 +547,4279,2.0,1021196325 +547,4280,4.0,1021196478 +547,4281,3.0,1022958314 +547,4290,4.0,1439310412 +547,4291,1.0,1022957861 +547,4292,4.0,1021195429 +547,4296,2.0,1021195650 +547,4306,3.0,1072634099 +547,4308,4.0,1131635303 +547,4310,0.5,1076810741 +547,4318,1.0,1000729801 +547,4321,2.5,1076810689 +547,4322,3.0,1021196353 +547,4332,2.0,1021196411 +547,4333,2.0,1022678312 +547,4343,3.0,1020287381 +547,4344,3.5,1133584738 +547,4345,4.5,1053171692 +547,4349,4.5,1199390375 +547,4356,4.0,1028130120 +547,4357,2.0,1022676761 +547,4359,3.0,1021572916 +547,4361,4.5,1053087922 +547,4367,1.5,1076968354 +547,4370,3.0,1022957861 +547,4392,2.0,1047719315 +547,4403,3.0,1021196098 +547,4409,1.0,1463811130 +547,4410,5.0,1021196381 +547,4414,3.5,1199560029 +547,4422,5.0,1021195429 +547,4424,3.5,1053171733 +547,4426,4.0,1157849352 +547,4428,5.0,1000530123 +547,4432,5.0,994153145 +547,4433,3.5,1199575110 +547,4447,2.0,1030719427 +547,4448,4.0,1131635628 +547,4464,3.0,1021196523 +547,4465,4.0,1021196447 +547,4474,2.0,1022678648 +547,4487,1.0,1022678838 +547,4489,3.0,1022678488 +547,4495,2.0,1030464554 +547,4496,1.0,1022678597 +547,4499,1.0,1011142290 +547,4503,2.0,995816709 +547,4508,3.0,1022678403 +547,4515,3.0,1342849666 +547,4523,3.0,1021196478 +547,4529,3.0,997543955 +547,4537,4.0,1021196249 +547,4546,4.0,1041430708 +547,4555,2.0,1022677967 +547,4557,1.0,1021196447 +547,4564,2.0,1198813077 +547,4571,1.0,1010571613 +547,4585,4.0,1022678337 +547,4587,1.0,1022678444 +547,4590,3.5,1053171522 +547,4606,2.0,994874368 +547,4621,1.5,1053173391 +547,4623,3.5,1053171583 +547,4627,2.0,1021196759 +547,4628,3.0,1021196585 +547,4639,1.0,1022957922 +547,4641,3.5,1084237789 +547,4654,1.0,1022678878 +547,4659,4.0,1021196759 +547,4661,5.0,1022678016 +547,4667,2.0,1022679016 +547,4674,1.0,1021196759 +547,4679,3.0,1022678444 +547,4684,0.5,1053173682 +547,4690,1.0,1000530218 +547,4692,3.0,1000530270 +547,4699,3.0,998871279 +547,4703,3.5,1076968525 +547,4704,3.0,1021196137 +547,4705,2.0,1022958314 +547,4716,1.0,1022678134 +547,4720,3.0,1041766708 +547,4757,2.0,1046652412 +547,4765,2.0,1075587835 +547,4776,4.5,1131635483 +547,4784,3.0,1002725250 +547,4787,3.0,1000530192 +547,4799,4.0,1003331787 +547,4801,4.5,1117286623 +547,4803,3.0,1145736718 +547,4809,5.0,1021196411 +547,4810,4.0,1002725401 +547,4814,2.5,1053172709 +547,4816,4.0,1131635646 +547,4821,4.5,1131635455 +547,4823,2.0,1053173071 +547,4831,3.0,1022679116 +547,4832,3.0,1082214663 +547,4835,4.0,1028129929 +547,4840,2.0,1021196353 +547,4844,4.0,1394125039 +547,4848,4.0,1017859526 +547,4855,1.0,1002725300 +547,4859,1.0,1022679404 +547,4873,3.0,1174815141 +547,4874,2.5,1053172899 +547,4878,2.5,1081819211 +547,4880,3.5,1053171569 +547,4881,3.5,1053907106 +547,4889,3.0,1072634143 +547,4890,0.5,1053173709 +547,4901,3.0,1025968088 +547,4903,4.0,1041603738 +547,4912,4.5,1199391512 +547,4914,2.0,1021572576 +547,4920,3.5,1134272598 +547,4921,2.0,1011142205 +547,4927,4.5,1053171780 +547,4936,4.0,1021196553 +547,4948,1.5,1186527898 +547,4954,2.5,1106443327 +547,4963,4.5,1053087733 +547,4965,4.5,1131635280 +547,4969,5.0,1021770672 +547,4970,3.0,1022676254 +547,4973,4.5,1133584658 +547,4975,4.0,1030202688 +547,4976,3.0,1030278675 +547,4978,2.5,1053173385 +547,4979,3.5,1053171407 +547,4992,0.5,1131636059 +547,4993,2.5,1053173397 +547,4995,4.0,1010342667 +547,4999,4.0,1137554687 +547,5004,3.0,1021195940 +547,5008,4.0,1199574925 +547,5009,2.5,1053173311 +547,5012,1.5,1198816120 +547,5013,3.5,1053171137 +547,5015,3.0,1039012334 +547,5017,5.0,1094983691 +547,5033,2.0,1022678312 +547,5034,3.0,1022679737 +547,5049,3.0,1022966086 +547,5056,2.0,1022677274 +547,5060,4.5,1053171373 +547,5061,1.5,1053173258 +547,5087,3.0,1022677483 +547,5088,4.5,1199390393 +547,5097,3.0,1022242480 +547,5098,3.0,1022242480 +547,5099,3.0,1022242480 +547,5105,4.0,1021195481 +547,5114,4.0,1199576130 +547,5119,4.0,1199391390 +547,5120,3.0,1021097761 +547,5121,4.0,1072254158 +547,5135,4.0,1120515248 +547,5177,3.0,1021770672 +547,5186,3.0,1022678992 +547,5193,3.0,1022679270 +547,5199,3.0,1022677990 +547,5225,4.0,1110167373 +547,5238,5.0,1021196478 +547,5242,1.5,1113965431 +547,5250,3.5,1053171655 +547,5265,3.0,1017858665 +547,5288,4.0,1021196585 +547,5291,4.0,1150496559 +547,5293,4.0,1040051287 +547,5299,2.5,1131635873 +547,5303,1.0,1021098817 +547,5308,2.0,1053173133 +547,5339,3.5,1175979044 +547,5341,5.0,1021195481 +547,5349,3.0,1054944644 +547,5359,2.0,1022680264 +547,5360,2.0,1198816109 +547,5364,3.5,1053172646 +547,5367,4.0,1053087575 +547,5377,4.0,1031664102 +547,5380,4.0,1045460001 +547,5384,4.0,1082214761 +547,5385,5.0,1053907745 +547,5388,2.5,1085872365 +547,5391,3.5,1076040142 +547,5418,4.0,1190600897 +547,5434,3.5,1094983607 +547,5445,3.0,1045381682 +547,5447,2.5,1088222332 +547,5450,2.5,1146608848 +547,5475,5.0,1032906921 +547,5483,4.0,1061008644 +547,5489,3.0,1471437743 +547,5502,4.0,1031387742 +547,5505,2.0,1052159293 +547,5521,0.5,1198814202 +547,5528,3.5,1131635547 +547,5544,2.0,1031663976 +547,5617,0.5,1131636026 +547,5638,3.0,1199392166 +547,5641,4.0,1106442619 +547,5644,2.0,1115581971 +547,5646,3.0,1032906201 +547,5650,4.0,1106442549 +547,5651,3.5,1199559677 +547,5666,2.5,1131635896 +547,5668,3.5,1067183931 +547,5669,4.0,1112482439 +547,5673,2.5,1131635889 +547,5679,4.0,1131635619 +547,5680,4.0,1041220966 +547,5693,4.5,1135940878 +547,5694,0.5,1119491650 +547,5707,2.5,1106442469 +547,5729,2.0,1357544051 +547,5772,4.5,1053171182 +547,5777,4.0,1119491513 +547,5792,0.5,1131636056 +547,5795,3.5,1182557389 +547,5801,4.0,1106443248 +547,5810,3.0,1415444349 +547,5812,4.0,1080965513 +547,5820,3.0,1106369796 +547,5847,2.0,1038929978 +547,5875,3.0,1074561641 +547,5876,4.0,1138841464 +547,5893,4.0,1038929872 +547,5902,5.0,1050320992 +547,5932,3.0,1038929777 +547,5936,3.0,1038929777 +547,5938,2.0,1038929799 +547,5940,2.5,1106442438 +547,5943,1.5,1182395376 +547,5945,4.0,1131635343 +547,5954,2.5,1053172816 +547,5957,2.0,1051689343 +547,5963,3.5,1124933987 +547,5966,2.5,1158263487 +547,5986,3.0,1039526770 +547,5989,4.0,1044792253 +547,5991,3.0,1048001909 +547,5992,4.5,1133584649 +547,5995,4.0,1131635296 +547,6001,5.0,1043682389 +547,6003,3.5,1131635842 +547,6016,4.0,1472045865 +547,6021,5.0,1043682448 +547,6027,3.0,1043682389 +547,6031,3.5,1114127514 +547,6047,3.5,1191118021 +547,6051,3.0,1053423552 +547,6062,3.5,1079841149 +547,6064,3.5,1176002456 +547,6100,2.5,1198816537 +547,6101,4.5,1053423344 +547,6105,3.0,1082214622 +547,6109,0.5,1076210112 +547,6115,2.5,1053423436 +547,6127,0.5,1053423090 +547,6133,4.5,1125060861 +547,6170,4.0,1106442731 +547,6178,4.0,1137987776 +547,6188,3.5,1085100036 +547,6215,3.5,1079240411 +547,6218,4.0,1089518106 +547,6230,3.5,1053422948 +547,6232,4.0,1053422986 +547,6238,2.0,1053422970 +547,6247,4.0,1053422931 +547,6252,0.5,1131636075 +547,6254,3.5,1136761772 +547,6269,3.0,1107033756 +547,6271,4.5,1053422924 +547,6273,4.5,1084754824 +547,6281,3.5,1081483786 +547,6296,4.0,1081819340 +547,6308,1.5,1053422776 +547,6323,3.0,1131635692 +547,6327,3.5,1124933862 +547,6331,4.0,1074481995 +547,6341,3.0,1131635727 +547,6345,3.0,1053422661 +547,6357,2.5,1119491422 +547,6358,3.5,1089003829 +547,6367,2.5,1135966393 +547,6373,2.0,1099968187 +547,6378,3.5,1334161487 +547,6380,4.0,1131635324 +547,6385,4.0,1061177444 +547,6400,3.0,1198771324 +547,6410,3.0,1055595720 +547,6413,2.0,1055595711 +547,6419,4.0,1055595688 +547,6422,3.0,1199391721 +547,6436,3.0,1089494707 +547,6440,2.0,1055595700 +547,6452,4.0,1055595478 +547,6466,2.5,1055595486 +547,6477,3.5,1055595541 +547,6480,2.5,1106443332 +547,6525,3.0,1198814182 +547,6528,3.5,1059943277 +547,6530,4.5,1059943409 +547,6533,4.0,1059943345 +547,6538,4.5,1062374974 +547,6539,3.0,1060913082 +547,6552,4.5,1062375017 +547,6584,2.5,1200868443 +547,6592,2.5,1131635899 +547,6596,1.5,1319862529 +547,6603,3.0,1088396296 +547,6612,4.0,1059943316 +547,6620,2.5,1099106625 +547,6629,3.5,1064696946 +547,6638,3.0,1064974792 +547,6639,4.5,1064696950 +547,6646,4.0,1064697022 +547,6650,4.0,1062886594 +547,6658,1.5,1064696874 +547,6662,5.0,1064696846 +547,6663,4.0,1106442831 +547,6666,4.0,1200107349 +547,6671,0.5,1064696851 +547,6676,3.0,1064696908 +547,6684,2.5,1064696865 +547,6708,4.0,1071567179 +547,6711,4.0,1073190625 +547,6724,4.5,1199390748 +547,6728,2.5,1064974728 +547,6731,2.0,1064974666 +547,6735,3.0,1063578424 +547,6773,4.5,1076040045 +547,6777,4.5,1064696661 +547,6786,4.0,1064696712 +547,6787,4.5,1064696666 +547,6788,2.5,1064974612 +547,6796,4.0,1064696705 +547,6797,1.0,1064696725 +547,6810,1.0,1064974592 +547,6813,1.5,1199392160 +547,6851,3.5,1064974498 +547,6852,4.5,1089946393 +547,6856,4.0,1066411252 +547,6858,4.0,1120449245 +547,6867,4.0,1144877938 +547,6868,3.5,1095060648 +547,6870,4.0,1104705558 +547,6873,3.0,1131635682 +547,6881,3.5,1108949748 +547,6890,4.0,1146358514 +547,6906,2.5,1071596186 +547,6932,3.0,1131635730 +547,6935,3.5,1071972236 +547,6942,4.0,1131635698 +547,6945,4.0,1109472290 +547,6953,3.0,1168388821 +547,6954,3.5,1181445001 +547,6957,3.5,1072563883 +547,6964,3.5,1071596152 +547,6970,2.5,1071596117 +547,6974,3.5,1175978605 +547,6977,3.5,1071596142 +547,6979,3.0,1071596104 +547,6987,4.5,1434383445 +547,6992,3.0,1071596131 +547,6993,1.5,1071596088 +547,7001,4.0,1071596111 +547,7008,4.5,1199390728 +547,7009,3.0,1071596029 +547,7010,4.0,1071595964 +547,7013,4.5,1071595973 +547,7018,3.0,1072254241 +547,7020,4.0,1071596005 +547,7023,3.0,1071595992 +547,7027,3.5,1071596009 +547,7038,3.5,1071596070 +547,7040,3.0,1071595982 +547,7042,2.0,1072254130 +547,7044,3.0,1071596017 +547,7045,3.5,1106442289 +547,7046,0.5,1071596051 +547,7060,3.5,1071595919 +547,7061,3.5,1188017785 +547,7062,4.0,1071595905 +547,7063,2.0,1199220474 +547,7067,3.0,1071595929 +547,7068,3.0,1071595934 +547,7069,4.0,1313911051 +547,7071,2.5,1072634251 +547,7073,4.5,1071595873 +547,7075,4.5,1072634234 +547,7078,3.0,1131845674 +547,7079,3.0,1082214840 +547,7080,3.0,1082214855 +547,7083,2.5,1076636546 +547,7084,4.5,1071595876 +547,7087,5.0,1071595899 +547,7088,4.5,1071595864 +547,7089,4.5,1071595868 +547,7091,4.5,1071595888 +547,7102,1.5,1072634260 +547,7107,3.0,1199220734 +547,7111,4.5,1076636450 +547,7116,5.0,1071595779 +547,7122,4.0,1072254027 +547,7125,3.5,1174742869 +547,7126,4.5,1343952218 +547,7130,4.0,1199559015 +547,7131,3.5,1199574323 +547,7132,5.0,1071595774 +547,7136,4.0,1199391412 +547,7139,4.5,1111372599 +547,7142,2.0,1080966374 +547,7147,4.0,1118102127 +547,7149,3.0,1131635565 +547,7150,3.0,1102138407 +547,7154,1.5,1378997750 +547,7156,4.0,1140326254 +547,7158,3.0,1106829456 +547,7160,4.0,1073176028 +547,7162,4.5,1133584636 +547,7165,3.0,1284821543 +547,7171,3.5,1105227723 +547,7180,4.0,1125060825 +547,7182,3.0,1192841830 +547,7190,4.0,1106443055 +547,7215,4.5,1076635361 +547,7216,3.5,1114382192 +547,7217,4.0,1153190403 +547,7219,4.0,1084237819 +547,7222,3.0,1076635421 +547,7223,3.0,1126661108 +547,7247,1.5,1073443719 +547,7248,3.0,1076635573 +547,7255,2.5,1106429806 +547,7265,4.0,1111977270 +547,7266,3.5,1078625723 +547,7285,3.5,1097536620 +547,7300,4.5,1199390790 +547,7325,0.5,1131635064 +547,7327,4.0,1079109582 +547,7334,3.0,1079109566 +547,7348,2.5,1109447587 +547,7354,3.0,1078716985 +547,7357,3.5,1199574900 +547,7358,2.5,1129943979 +547,7360,4.5,1080523956 +547,7361,4.5,1114369050 +547,7386,3.5,1206276821 +547,7387,3.0,1081819498 +547,7394,3.0,1199391989 +547,7396,4.0,1342849277 +547,7415,2.5,1115582105 +547,7419,5.0,1084413978 +547,7451,2.5,1133059156 +547,7478,4.5,1084413933 +547,7484,3.5,1084413926 +547,7487,4.5,1084413917 +547,7493,4.0,1199574922 +547,7566,4.5,1148929138 +547,7571,4.0,1165452927 +547,7577,0.5,1084413880 +547,7583,3.5,1142666867 +547,7585,2.0,1120515363 +547,7613,3.0,1084413863 +547,7614,4.0,1084413859 +547,7615,3.5,1106442537 +547,7619,4.0,1084413848 +547,7620,4.0,1084413843 +547,7636,1.0,1084413833 +547,7669,5.0,1246886349 +547,7698,4.5,1084413820 +547,7701,1.0,1084413806 +547,7706,3.5,1096856619 +547,7713,2.5,1084413791 +547,7714,4.0,1084413786 +547,7728,3.0,1084413771 +547,7766,4.0,1295079741 +547,7767,4.0,1184283074 +547,7791,2.0,1084413436 +547,7815,1.5,1084413396 +547,7831,3.0,1085447304 +547,7833,3.0,1096856677 +547,7834,3.5,1085447293 +547,7835,3.5,1085447297 +547,7836,5.0,1084413332 +547,7872,2.5,1084413273 +547,7881,3.5,1085800791 +547,7883,3.0,1101086849 +547,7921,3.0,1199219728 +547,7922,2.5,1084413200 +547,7934,3.5,1084413183 +547,7935,4.0,1199390666 +547,7943,4.5,1084413168 +547,7944,4.0,1127644571 +547,7946,1.5,1182305168 +547,7948,4.0,1257568687 +547,7958,3.5,1180619662 +547,7959,3.5,1199509033 +547,7979,4.0,1199392007 +547,7981,4.0,1173500912 +547,7983,2.0,1085447198 +547,7995,3.0,1179020566 +547,8003,2.0,1201323229 +547,8011,4.0,1279902185 +547,8016,2.0,1292767785 +547,8033,3.0,1085447156 +547,8042,4.5,1085447146 +547,8044,4.0,1177216869 +547,8056,2.5,1179447996 +547,8123,5.0,1085447123 +547,8125,4.0,1199221262 +547,8137,3.5,1349826122 +547,8147,3.0,1117156817 +547,8158,2.5,1085447092 +547,8183,4.0,1085447085 +547,8188,4.0,1114222819 +547,8191,3.5,1096856982 +547,8194,3.0,1085447076 +547,8196,3.0,1199217972 +547,8197,1.5,1085447067 +547,8261,5.0,1085447033 +547,8264,5.0,1085447015 +547,8266,2.5,1085447007 +547,8331,3.5,1195924922 +547,8337,4.0,1087766725 +547,8360,3.5,1252767700 +547,8364,4.0,1127531112 +547,8366,3.0,1165014251 +547,8373,2.5,1096586145 +547,8388,4.0,1199392325 +547,8392,2.0,1088487737 +547,8410,4.0,1087766669 +547,8420,4.0,1268554665 +547,8422,3.0,1087766662 +547,8459,4.0,1119305876 +547,8462,2.5,1138494345 +547,8464,4.5,1131634969 +547,8465,2.5,1190590946 +547,8477,4.0,1189018966 +547,8487,2.5,1199392319 +547,8491,4.5,1094783748 +547,8492,4.5,1199576393 +547,8499,1.5,1087766595 +547,8507,4.0,1434029572 +547,8522,2.5,1136441189 +547,8525,1.5,1199392371 +547,8528,3.5,1432359375 +547,8529,3.0,1119305825 +547,8530,2.0,1146356536 +547,8533,3.5,1132463501 +547,8535,2.0,1087766498 +547,8542,4.5,1087766484 +547,8571,2.5,1199392113 +547,8572,4.5,1087766470 +547,8583,2.5,1088487637 +547,8610,2.5,1088487611 +547,8612,3.5,1195185239 +547,8617,3.0,1088487602 +547,8618,4.0,1191981006 +547,8622,3.5,1131634898 +547,8623,2.5,1094520159 +547,8625,3.0,1131635713 +547,8636,3.5,1096586036 +547,8641,3.5,1432359351 +547,8650,3.5,1199391435 +547,8661,3.5,1199391743 +547,8665,3.5,1190926261 +547,8667,3.5,1126660297 +547,8712,3.5,1444015123 +547,8724,3.5,1199391653 +547,8725,2.5,1199392066 +547,8727,1.5,1199219845 +547,8752,4.0,1189643388 +547,8761,3.5,1199559726 +547,8763,1.5,1093815542 +547,8768,3.5,1090114993 +547,8772,4.0,1106443137 +547,8781,4.0,1131634907 +547,8784,4.0,1125283934 +547,8798,3.0,1104369597 +547,8813,2.5,1149469145 +547,8828,3.0,1118548833 +547,8838,4.0,1093815450 +547,8851,2.0,1093815434 +547,8853,2.5,1093815421 +547,8874,2.5,1149464426 +547,8882,3.5,1094983476 +547,8903,3.5,1199559995 +547,8907,2.5,1103292804 +547,8917,3.5,1147648867 +547,8923,4.0,1097536498 +547,8933,4.0,1097536481 +547,8948,3.5,1145756234 +547,8949,5.0,1131634913 +547,8958,4.5,1131634966 +547,8966,4.0,1136761751 +547,8970,3.5,1104462298 +547,8979,4.5,1105066583 +547,8981,4.0,1131634992 +547,8984,2.5,1132463559 +547,8987,3.0,1132463517 +547,8998,3.0,1101590194 +547,9012,4.0,1199576106 +547,25769,4.0,1434383585 +547,25773,4.0,1140468195 +547,25777,3.5,1126235776 +547,25788,3.0,1187478886 +547,25795,4.0,1117156797 +547,25825,4.0,1149823672 +547,25828,4.0,1132973381 +547,25841,2.5,1117156760 +547,25842,3.5,1247498072 +547,25850,4.0,1161398828 +547,25856,4.0,1124783105 +547,25865,4.0,1128200083 +547,25874,3.0,1273878058 +547,25882,4.5,1277997096 +547,25886,4.0,1128298184 +547,25900,3.5,1226705509 +547,25904,3.5,1116802147 +547,25906,2.5,1149305852 +547,25920,3.5,1268306443 +547,25929,4.0,1189476353 +547,25930,3.5,1196633401 +547,25937,2.5,1118499401 +547,25940,2.5,1143942023 +547,25941,4.0,1222176511 +547,25945,4.5,1169870000 +547,25947,3.5,1200088853 +547,25952,4.0,1126235756 +547,25965,2.0,1262672385 +547,25972,4.0,1231861006 +547,25996,4.5,1199575718 +547,25999,4.5,1131165770 +547,26010,3.0,1255191958 +547,26013,2.5,1307714451 +547,26079,4.0,1225036203 +547,26084,4.5,1119491366 +547,26086,4.0,1368640146 +547,26093,3.5,1276696945 +547,26116,2.5,1125541503 +547,26117,3.5,1163598449 +547,26147,4.5,1223568456 +547,26157,0.5,1303479124 +547,26163,4.0,1196044391 +547,26178,4.5,1142843082 +547,26180,3.5,1291555400 +547,26198,2.5,1159995201 +547,26199,4.0,1196449864 +547,26229,3.5,1276010261 +547,26242,4.0,1134529434 +547,26251,4.0,1215813277 +547,26258,1.5,1156627954 +547,26271,4.0,1167962981 +547,26303,3.0,1163474370 +547,26313,3.5,1341668821 +547,26323,4.5,1223996383 +547,26338,3.0,1266063106 +547,26346,3.0,1252767602 +547,26349,3.5,1138566609 +547,26350,4.5,1141435263 +547,26371,2.5,1181745612 +547,26391,1.5,1182395328 +547,26404,2.5,1104180718 +547,26430,1.0,1244930358 +547,26435,2.5,1248610420 +547,26467,1.0,1247839032 +547,26472,2.5,1167962995 +547,26485,0.5,1129916588 +547,26487,2.0,1198816100 +547,26501,5.0,1249033347 +547,26505,4.5,1261380494 +547,26524,4.0,1222044923 +547,26528,4.0,1265116758 +547,26562,4.0,1193465893 +547,26564,4.0,1173477942 +547,26581,2.0,1268902196 +547,26622,3.5,1245467080 +547,26649,4.0,1230809007 +547,26680,3.0,1119491493 +547,26689,2.0,1246886436 +547,26694,4.0,1168305022 +547,26712,4.0,1232379524 +547,26729,4.5,1165014203 +547,26731,4.0,1242992741 +547,26737,4.0,1248780657 +547,26775,1.5,1231860985 +547,26782,3.0,1127100262 +547,26784,3.0,1234577354 +547,26797,5.0,1265820849 +547,26835,3.5,1354966721 +547,26838,3.5,1163598459 +547,27020,3.0,1156627930 +547,27329,4.0,1360422687 +547,27373,4.0,1274650819 +547,27802,4.0,1252940402 +547,27812,4.5,1154874171 +547,27821,3.5,1148696924 +547,27878,4.0,1137366685 +547,27904,4.0,1154647909 +547,30707,5.0,1109536165 +547,30712,4.5,1192150916 +547,30749,4.5,1176003361 +547,30810,1.5,1147018952 +547,30812,3.5,1280728735 +547,30820,2.5,1175917020 +547,30898,3.5,1140291695 +547,31104,3.0,1103859761 +547,31109,3.0,1183773013 +547,31522,1.5,1161398836 +547,31696,0.5,1131635074 +547,31737,3.5,1206148844 +547,31747,0.5,1111809585 +547,31963,3.5,1248097694 +547,32022,3.0,1132463534 +547,32203,4.0,1325674404 +547,32234,4.0,1195596983 +547,32349,3.0,1115581897 +547,32369,4.0,1117337172 +547,32371,4.0,1191022455 +547,32444,2.5,1227738093 +547,32582,4.0,1183767376 +547,32598,4.0,1182568109 +547,32728,3.5,1238428633 +547,32882,2.5,1170962228 +547,32898,5.0,1434384871 +547,32943,4.0,1257441601 +547,33154,4.0,1186803062 +547,33166,4.0,1175824127 +547,33171,3.5,1187485053 +547,33358,4.0,1140316623 +547,33587,4.0,1254935059 +547,33615,3.5,1175824291 +547,33639,3.0,1168305106 +547,33660,3.5,1143517064 +547,33679,0.5,1143517032 +547,33836,0.5,1182394981 +547,33880,2.5,1132463546 +547,33912,4.0,1244930326 +547,33917,4.0,1281472201 +547,34002,2.5,1170962239 +547,34018,3.0,1170962247 +547,34048,3.5,1132463506 +547,34162,3.0,1165019624 +547,34338,4.5,1131634924 +547,34359,3.5,1357056564 +547,34364,3.0,1256679020 +547,34437,3.0,1132463513 +547,34542,3.0,1139101153 +547,34608,3.0,1122972398 +547,35836,3.5,1181617188 +547,36152,3.0,1181745585 +547,36517,4.0,1143516997 +547,37211,2.5,1170962234 +547,37240,2.5,1198771214 +547,37277,1.0,1286739987 +547,37733,4.0,1167742468 +547,37741,4.5,1131243371 +547,37855,3.0,1183666379 +547,38061,2.5,1167271148 +547,38304,4.5,1159995218 +547,38499,4.5,1223996377 +547,38798,3.5,1168388840 +547,38886,2.5,1198771230 +547,38994,2.0,1207194517 +547,39183,5.0,1334343456 +547,39292,4.0,1143516841 +547,39307,2.5,1148929080 +547,39381,3.5,1197170460 +547,39414,4.0,1200089517 +547,39419,2.5,1187754938 +547,39779,3.5,1234601659 +547,39941,4.0,1252767615 +547,40583,4.0,1213604530 +547,40614,2.5,1198369563 +547,40629,4.5,1164901520 +547,40817,2.5,1164625413 +547,40819,4.5,1132463343 +547,40826,3.5,1135726847 +547,41226,4.0,1246459435 +547,41566,4.0,1136156648 +547,41714,3.5,1281022516 +547,41863,4.0,1175863681 +547,42740,2.5,1179019671 +547,43333,4.0,1148870576 +547,43351,3.0,1234797807 +547,43635,4.0,1245858761 +547,43708,3.5,1149388431 +547,43910,4.0,1196556205 +547,43917,3.0,1168042230 +547,44073,2.0,1167963010 +547,44195,3.5,1145151438 +547,44199,4.0,1145486192 +547,44204,4.0,1180304622 +547,44421,4.0,1314537310 +547,44555,5.0,1198810564 +547,44633,3.0,1199066297 +547,44665,3.0,1156906514 +547,44694,1.5,1200082789 +547,44709,3.5,1199402494 +547,44759,1.5,1186712554 +547,44761,1.5,1199314831 +547,44788,3.5,1175720567 +547,44864,2.5,1175824283 +547,44911,2.0,1230808981 +547,45028,4.0,1149993661 +547,45062,2.5,1156363072 +547,45179,3.5,1277386054 +547,45186,1.5,1156907034 +547,45208,1.0,1156363153 +547,45210,4.5,1198810341 +547,45382,3.0,1175916626 +547,45501,1.0,1213732445 +547,45679,4.0,1200793326 +547,45720,3.0,1152006693 +547,45722,3.5,1154217036 +547,45837,1.5,1244103063 +547,45880,2.5,1174233338 +547,45942,4.0,1248097636 +547,45950,3.5,1168042216 +547,45987,4.0,1285323206 +547,46561,3.0,1256226481 +547,46578,4.5,1197165877 +547,46723,4.0,1163375676 +547,46850,3.5,1194912990 +547,46965,3.0,1169062380 +547,46976,3.0,1174233365 +547,47092,4.5,1251526606 +547,47099,4.0,1199325810 +547,47196,1.5,1248610436 +547,47202,4.0,1209166025 +547,47261,3.0,1190590191 +547,47330,1.0,1226407102 +547,47423,4.0,1202185054 +547,47493,3.0,1476587644 +547,47606,3.0,1354223902 +547,47610,3.0,1170002908 +547,47629,4.5,1170962261 +547,47721,3.0,1224173648 +547,47894,2.0,1203388427 +547,47950,3.5,1198368748 +547,47978,4.0,1195596996 +547,48262,3.5,1204185628 +547,48268,4.0,1313376453 +547,48385,3.5,1175459015 +547,48516,5.0,1198810579 +547,48560,3.0,1191258244 +547,48696,4.5,1197165873 +547,48738,4.0,1206848889 +547,48741,4.0,1201869357 +547,48774,4.5,1196305802 +547,48780,3.0,1168042121 +547,49132,4.0,1173795746 +547,49220,3.5,1195353038 +547,49286,2.0,1214927078 +547,49530,3.5,1168042240 +547,49772,3.5,1301765556 +547,49822,3.0,1167188876 +547,49824,4.5,1168918389 +547,49910,2.5,1270485230 +547,49961,3.5,1198799453 +547,50245,4.5,1242683178 +547,50658,4.0,1221732736 +547,50685,3.0,1270485214 +547,51080,3.5,1197088933 +547,51540,4.0,1192372083 +547,51662,3.0,1191974550 +547,51773,3.0,1245858771 +547,51884,3.0,1253383987 +547,52241,4.0,1202179805 +547,52378,2.5,1269513656 +547,52435,4.0,1227339334 +547,52722,2.5,1197166732 +547,52767,4.5,1224705134 +547,52913,4.0,1251302236 +547,52967,4.0,1294418692 +547,52973,3.0,1322848335 +547,52975,3.5,1194817581 +547,53000,4.0,1199326204 +547,53024,4.5,1402153882 +547,53123,4.0,1181438556 +547,53133,2.5,1179447948 +547,53322,3.0,1194915472 +547,53887,5.0,1201361739 +547,53972,3.5,1185672148 +547,54220,4.0,1265820836 +547,54272,4.5,1194915458 +547,54372,4.0,1309704691 +547,54513,4.0,1197088917 +547,54881,4.0,1277568772 +547,55052,4.5,1199051356 +547,55063,5.0,1222362642 +547,55078,4.0,1268554564 +547,55118,4.0,1337445283 +547,55156,4.0,1270485020 +547,55247,5.0,1376840465 +547,55253,4.5,1472569839 +547,55267,3.0,1270485153 +547,55269,4.0,1319862502 +547,55276,5.0,1260618835 +547,55290,3.5,1257441647 +547,55757,2.5,1341408769 +547,55765,3.0,1270485127 +547,55805,3.5,1238950903 +547,55820,4.5,1198888970 +547,55851,3.5,1248621813 +547,55895,3.5,1228302399 +547,56152,4.0,1198643704 +547,56286,3.5,1314978195 +547,56333,3.5,1270485098 +547,56367,4.5,1202609200 +547,56607,4.5,1201915663 +547,56782,5.0,1206148913 +547,56788,4.0,1201665430 +547,56805,4.5,1202180481 +547,56949,1.5,1209754849 +547,57243,3.5,1208478835 +547,57368,4.0,1312645398 +547,57418,3.5,1248610393 +547,57430,3.5,1297948719 +547,57669,5.0,1407749506 +547,58365,4.0,1246886279 +547,58559,2.5,1217953600 +547,58649,5.0,1235048025 +547,58879,4.5,1230869313 +547,58904,3.5,1244711760 +547,58998,3.5,1300551997 +547,59018,4.0,1310221638 +547,59118,3.5,1230985787 +547,59180,4.0,1242992797 +547,59315,3.5,1236959785 +547,59369,1.0,1345375310 +547,59669,3.0,1345734454 +547,59725,3.5,1215180258 +547,60069,5.0,1372603935 +547,60072,2.0,1215782209 +547,60135,4.0,1263057384 +547,60343,2.5,1231517371 +547,60382,4.0,1321636458 +547,60756,4.0,1312645436 +547,60766,4.0,1372603828 +547,60943,3.0,1335711834 +547,61024,4.0,1259388007 +547,61132,3.5,1224854433 +547,61323,3.5,1270485059 +547,61357,4.5,1222269604 +547,61634,3.5,1221569733 +547,61729,3.0,1307717390 +547,62344,3.0,1270485197 +547,62511,2.5,1325351571 +547,63082,4.5,1236699456 +547,63113,3.0,1226407135 +547,63239,3.5,1226705481 +547,63629,4.0,1248780644 +547,63808,3.5,1242514314 +547,63876,4.0,1236959781 +547,63992,3.5,1236959790 +547,64229,3.5,1303491202 +547,64338,2.5,1229189824 +547,64575,3.0,1270485162 +547,64614,4.0,1250440586 +547,64620,3.5,1273326572 +547,64622,4.0,1251562781 +547,64839,4.5,1236954998 +547,64990,3.0,1230809044 +547,65130,3.5,1234626994 +547,65188,4.0,1439913415 +547,65230,1.5,1241050506 +547,65418,2.5,1333852027 +547,65465,2.0,1262146303 +547,65585,0.5,1242541413 +547,66200,2.5,1273415209 +547,66509,2.5,1407749608 +547,66665,4.0,1255191989 +547,66686,3.5,1236954759 +547,66934,3.0,1260618718 +547,67087,4.0,1274366699 +547,67193,3.5,1291481406 +547,67197,2.5,1238932619 +547,67255,4.0,1280588312 +547,67429,4.0,1240926919 +547,67734,4.0,1309011951 +547,67788,0.5,1242518448 +547,67957,3.0,1240147045 +547,68157,4.0,1253017809 +547,68536,4.0,1242514129 +547,68614,2.5,1242992839 +547,68838,4.5,1402062783 +547,68848,3.5,1291563022 +547,68901,3.5,1260618703 +547,69122,3.5,1262284513 +547,69458,2.5,1295016068 +547,69481,4.5,1309012009 +547,69559,4.0,1249033088 +547,69654,4.0,1331912577 +547,69712,2.0,1270485275 +547,69757,3.5,1298043334 +547,69821,1.5,1247839017 +547,69908,4.0,1248097662 +547,70188,2.5,1249553216 +547,70201,3.5,1249646500 +547,70286,4.5,1255099984 +547,70293,4.0,1260619107 +547,70418,3.0,1257694038 +547,70751,2.5,1344834076 +547,71108,4.0,1373818604 +547,71156,2.5,1407749677 +547,71211,3.0,1270399177 +547,71404,4.0,1254313633 +547,71464,3.5,1294934409 +547,71535,3.0,1467990118 +547,71579,3.5,1270485401 +547,71804,2.5,1256226461 +547,72011,4.0,1267280607 +547,72131,4.0,1260619072 +547,72169,3.0,1418392322 +547,72226,4.0,1443402294 +547,72367,4.5,1388506454 +547,72395,4.0,1270310625 +547,72641,4.0,1342850452 +547,72720,4.5,1323707231 +547,72998,4.0,1263562026 +547,73023,4.0,1284825706 +547,73323,3.5,1373205323 +547,73469,3.0,1268313851 +547,73854,3.5,1264083246 +547,74089,5.0,1265116371 +547,74282,4.0,1277094857 +547,74458,4.0,1301062731 +547,74510,3.5,1304098672 +547,74545,4.0,1276424052 +547,74630,3.0,1267416854 +547,74795,3.5,1296916834 +547,74916,2.0,1407749693 +547,75813,2.5,1312689922 +547,75990,4.5,1271343054 +547,76293,3.5,1285807709 +547,76763,3.0,1351004332 +547,77421,3.5,1290309344 +547,77561,3.0,1273415148 +547,77808,2.5,1273877945 +547,78039,4.5,1299940993 +547,78111,2.0,1275603801 +547,78116,3.5,1285807685 +547,78499,4.5,1350747728 +547,78517,3.0,1410534101 +547,78574,4.0,1289659891 +547,78653,3.5,1292068151 +547,78729,2.5,1278144477 +547,78967,4.0,1278607403 +547,79132,4.0,1279982532 +547,79134,1.5,1288466612 +547,79242,4.5,1299855138 +547,79592,4.0,1470925962 +547,79702,2.5,1354342124 +547,79720,3.0,1372951705 +547,80346,3.5,1284542249 +547,80463,4.0,1287199623 +547,80489,4.5,1322200246 +547,80862,3.5,1321575328 +547,80969,3.5,1304786653 +547,81512,3.5,1357407766 +547,81562,4.0,1300890090 +547,81591,4.0,1298726091 +547,81641,3.5,1305481034 +547,81784,3.0,1307725996 +547,81845,4.0,1296916797 +547,81898,0.5,1414252378 +547,81932,5.0,1322201208 +547,82378,3.0,1446821278 +547,82459,4.5,1299258214 +547,82463,4.0,1400430320 +547,83332,4.0,1349928823 +547,84098,3.5,1296603094 +547,84392,3.0,1366821786 +547,84847,4.0,1299258123 +547,85016,3.5,1418563061 +547,85414,3.5,1371222273 +547,85881,3.5,1332000450 +547,86320,4.5,1344642796 +547,86487,5.0,1351010563 +547,86833,4.0,1316873749 +547,86864,4.0,1305892000 +547,86911,2.0,1340372360 +547,86982,2.0,1307379574 +547,87218,3.5,1307379550 +547,87298,1.5,1322809333 +547,87304,4.5,1319862609 +547,87306,4.0,1308272387 +547,87383,3.0,1307540573 +547,87598,3.0,1308669056 +547,88024,2.5,1309881616 +547,88129,4.0,1345308382 +547,88163,3.0,1322809262 +547,88235,4.0,1320317017 +547,88405,3.5,1319862584 +547,88682,4.0,1312466401 +547,88810,4.0,1322894449 +547,89203,4.0,1333810386 +547,89260,4.0,1319862554 +547,89321,2.0,1333027103 +547,89408,3.0,1315887827 +547,89470,4.0,1322809192 +547,89492,4.0,1328012439 +547,89678,3.5,1375083912 +547,89745,2.0,1446907683 +547,89804,4.5,1331982032 +547,89864,3.5,1331912449 +547,89881,4.0,1318091715 +547,89904,3.5,1331392020 +547,90057,4.0,1398961745 +547,90266,3.0,1340461933 +547,90374,3.5,1340467955 +547,90376,4.0,1351959906 +547,90428,3.0,1446392720 +547,90439,4.0,1345910493 +547,90469,2.5,1347630631 +547,90531,4.0,1339860510 +547,90717,3.0,1321670573 +547,90866,4.5,1330529015 +547,91077,4.5,1329492087 +547,91134,3.0,1420810499 +547,91286,4.0,1322355697 +547,91500,3.5,1386503048 +547,91582,2.5,1323494283 +547,91610,2.0,1323606101 +547,91658,4.5,1372000086 +547,91890,3.5,1374667766 +547,92756,2.5,1342874546 +547,93432,3.0,1341074250 +547,93510,4.0,1403280331 +547,93512,3.0,1348198644 +547,93700,4.0,1338679331 +547,94266,3.0,1347631053 +547,94931,4.5,1361110441 +547,94959,3.5,1356273954 +547,95135,4.5,1374855073 +547,95307,3.5,1364662561 +547,95441,3.0,1362231479 +547,95449,4.0,1356967547 +547,95558,4.0,1348198508 +547,95583,3.0,1368864969 +547,95873,4.0,1439269870 +547,96075,5.0,1344149635 +547,96079,4.0,1403436346 +547,96110,3.5,1381668461 +547,96314,3.5,1388752810 +547,96467,3.5,1369491980 +547,96488,4.0,1373637366 +547,96563,4.0,1361888116 +547,96565,1.5,1346949557 +547,96588,4.0,1372429516 +547,96728,4.0,1356693968 +547,96792,3.5,1348198456 +547,96811,4.0,1388590778 +547,96849,3.0,1374849218 +547,96901,4.0,1348779092 +547,97254,3.5,1349928538 +547,97304,4.0,1364714630 +547,97306,2.5,1371824723 +547,97395,4.0,1417236553 +547,97639,3.5,1387285945 +547,97673,4.5,1375453610 +547,97752,4.0,1356876787 +547,97817,4.0,1351546780 +547,97866,4.0,1405084453 +547,97921,4.0,1364662436 +547,97923,4.5,1362756280 +547,97936,3.0,1375102511 +547,97938,4.5,1356788549 +547,97994,3.5,1354379031 +547,98154,4.5,1367068301 +547,98441,4.0,1354223972 +547,98458,2.0,1354223950 +547,98473,3.5,1354223934 +547,98611,3.0,1354966677 +547,98795,4.0,1355494864 +547,98803,3.0,1355494850 +547,98961,4.5,1359631684 +547,99085,2.5,1356000065 +547,99089,4.0,1356000054 +547,99114,4.0,1371308075 +547,99145,4.5,1457792914 +547,99149,4.0,1359132287 +547,99220,3.0,1396672336 +547,99270,2.5,1356469707 +547,99273,2.5,1356469703 +547,99276,2.5,1356469699 +547,99741,3.5,1371290032 +547,99839,4.0,1408199060 +547,100383,4.0,1363359098 +547,100581,3.0,1446652638 +547,101088,2.0,1384245408 +547,101106,3.0,1411565311 +547,101525,4.0,1368282894 +547,101531,1.5,1369486225 +547,101850,5.0,1366208866 +547,101895,4.5,1375546685 +547,101904,3.5,1366208811 +547,102123,4.5,1386945696 +547,102194,4.0,1384649888 +547,102396,3.5,1386516853 +547,102588,4.0,1380982611 +547,102800,3.5,1396624583 +547,102819,4.0,1409327179 +547,102903,3.5,1373036729 +547,102993,2.5,1384396192 +547,103107,4.0,1396627367 +547,103372,4.0,1383625799 +547,103444,4.0,1373036695 +547,103539,3.5,1441520591 +547,103624,4.0,1400251385 +547,103671,2.5,1374335400 +547,104119,5.0,1376492326 +547,104321,2.5,1441629771 +547,104339,4.0,1397836823 +547,104374,3.5,1403356029 +547,104595,4.0,1383015043 +547,104597,3.5,1378132231 +547,104757,4.0,1444015145 +547,104841,3.5,1383358247 +547,104879,2.0,1401038658 +547,104913,3.0,1449412071 +547,105197,4.5,1409415966 +547,105211,3.5,1400417212 +547,105213,3.5,1390580778 +547,105355,4.5,1409415700 +547,105504,5.0,1383712422 +547,105731,3.5,1382579254 +547,106004,3.5,1383315377 +547,106100,3.5,1395577939 +547,106332,3.5,1432654396 +547,106397,2.5,1396672383 +547,106438,3.5,1402842414 +547,106452,3.5,1421593879 +547,106696,4.0,1417527089 +547,106766,4.0,1389965073 +547,106782,3.5,1397928493 +547,106916,5.0,1388421030 +547,106920,5.0,1392654475 +547,107042,4.0,1415383777 +547,107141,4.5,1393613055 +547,107348,3.0,1417458035 +547,107382,3.0,1415383801 +547,107771,3.5,1469368379 +547,108076,2.0,1396605893 +547,108190,3.5,1410067035 +547,109161,4.0,1392562044 +547,109205,4.0,1392653890 +547,109374,4.5,1402760203 +547,109487,3.0,1443402344 +547,109740,3.0,1428239322 +547,109848,2.0,1441524304 +547,110194,4.0,1444845625 +547,110453,3.0,1407749418 +547,110752,4.5,1399683876 +547,110858,1.5,1398810847 +547,110882,3.5,1409237347 +547,111113,3.0,1417458013 +547,111384,3.5,1404576471 +547,111443,3.0,1423194801 +547,111529,2.5,1426607056 +547,111622,4.0,1420131595 +547,111759,2.0,1411906350 +547,111795,3.5,1415383725 +547,111921,4.0,1411228864 +547,112183,5.0,1416281762 +547,112290,4.5,1416281923 +547,112334,3.5,1431096341 +547,112399,4.5,1444845701 +547,112450,2.0,1414247909 +547,112552,4.0,1425779840 +547,112556,4.0,1415120063 +547,112577,5.0,1404823924 +547,112582,4.0,1409416746 +547,112653,4.0,1471004668 +547,112735,4.5,1405681485 +547,112850,2.5,1457109567 +547,112852,4.0,1407510458 +547,112921,4.0,1409416787 +547,112940,3.0,1420910990 +547,113207,4.0,1420810536 +547,113220,3.0,1441520451 +547,113705,3.5,1426607007 +547,113829,3.0,1418385958 +547,113938,3.5,1444845681 +547,114074,3.5,1428249472 +547,114082,4.0,1410966722 +547,114122,3.5,1410966695 +547,114342,4.0,1422112754 +547,114464,5.0,1411828562 +547,114601,3.5,1428849900 +547,114662,4.0,1423131195 +547,115231,3.5,1417322003 +547,115569,4.5,1431187319 +547,115713,4.5,1454000885 +547,116012,4.0,1415383673 +547,116136,2.5,1416224512 +547,116161,4.0,1421073514 +547,116797,3.5,1426347912 +547,116799,3.5,1428155178 +547,117176,4.0,1423838127 +547,117456,3.5,1430495025 +547,118898,4.0,1474704767 +547,118900,4.0,1433002673 +547,118924,2.5,1432908634 +547,118985,3.0,1433082876 +547,118997,2.5,1471611408 +547,120821,4.5,1420455375 +547,121231,3.5,1446907379 +547,127114,4.0,1454253806 +547,127136,3.0,1443402328 +547,127152,4.5,1429529138 +547,127158,3.5,1453043449 +547,127164,4.5,1473002696 +547,127178,3.5,1467465197 +547,127202,3.0,1444896562 +547,128360,4.5,1468681977 +547,128606,4.5,1468592897 +547,129364,2.0,1468761045 +547,130351,4.0,1428155546 +547,130452,4.0,1443432861 +547,131724,4.0,1440416558 +547,132074,4.0,1433520838 +547,132496,3.5,1443433340 +547,132888,3.5,1430317147 +547,133419,1.5,1443402415 +547,133645,4.0,1468161130 +547,134025,3.0,1432654721 +547,134130,4.5,1446210919 +547,134368,3.0,1434211190 +547,134393,4.0,1447418992 +547,134853,4.0,1443402380 +547,134881,4.0,1452436724 +547,135508,3.5,1435161154 +547,136018,3.5,1444267768 +547,137337,4.0,1441376008 +547,137857,4.0,1473522674 +547,138258,3.0,1457712128 +547,139385,3.5,1455195063 +547,139644,2.5,1464465390 +547,140174,4.0,1457179687 +547,140247,4.0,1457109377 +547,140816,3.5,1472045752 +547,140928,1.5,1457091102 +547,141749,4.0,1468077724 +547,142192,3.5,1442199101 +547,142258,1.5,1466252637 +547,142488,4.0,1452944320 +547,143377,3.5,1449333344 +547,143385,3.5,1446812004 +547,143657,2.0,1471257899 +547,146656,4.0,1458652849 +547,146682,3.5,1452405988 +547,147845,3.5,1458992579 +547,148238,3.0,1457795387 +547,148626,4.5,1454163886 +547,149354,3.5,1463150376 +547,150856,5.0,1454432582 +547,151307,4.5,1472400501 +547,152077,3.5,1466174375 +547,156387,4.0,1467946613 +547,157296,3.0,1466948434 +547,160656,3.5,1471168466 +547,160718,4.0,1469713151 +547,161084,2.5,1468248331 +547,163949,5.0,1476419239 +548,1,4.0,857405395 +548,2,3.0,857406875 +548,3,4.0,857405447 +548,5,3.0,857405447 +548,6,3.0,857405447 +548,10,4.0,857407492 +548,11,3.0,857406576 +548,19,3.0,857407365 +548,21,3.0,857405918 +548,22,3.0,857406991 +548,23,3.0,857407170 +548,32,3.0,857405395 +548,36,3.0,857405447 +548,39,3.0,857405981 +548,44,3.0,857407170 +548,45,3.0,857407272 +548,47,3.0,857407799 +548,50,4.0,857405918 +548,52,4.0,857405496 +548,58,5.0,857405496 +548,62,3.0,857405395 +548,65,3.0,857405620 +548,69,4.0,857406991 +548,76,3.0,857405676 +548,88,3.0,857405723 +548,95,3.0,857405395 +548,105,4.0,857407872 +548,110,5.0,857405917 +548,112,3.0,857405496 +548,141,4.0,857405395 +548,150,3.0,857406114 +548,161,3.0,857405981 +548,162,4.0,857406875 +548,168,3.0,857407661 +548,223,3.0,857405917 +548,225,3.0,857406302 +548,230,3.0,857406875 +548,231,4.0,857406576 +548,234,3.0,857406991 +548,235,3.0,857407720 +548,236,3.0,857407365 +548,246,4.0,857406724 +548,253,3.0,857406114 +548,260,5.0,857405496 +548,265,2.0,857405981 +548,276,3.0,857407365 +548,288,3.0,857407562 +548,292,3.0,857407562 +548,293,4.0,857405981 +548,296,4.0,857405917 +548,300,3.0,857406991 +548,306,3.0,857407098 +548,307,3.0,857407420 +548,308,3.0,857407365 +548,315,3.0,857406082 +548,316,3.0,857406644 +548,318,5.0,857406014 +548,329,3.0,857406302 +548,333,3.0,857406114 +548,337,3.0,857406801 +548,340,3.0,857407799 +548,344,3.0,857405981 +548,345,4.0,857406114 +548,348,4.0,857406644 +548,349,4.0,857405981 +548,350,3.0,857406875 +548,353,3.0,857407217 +548,356,4.0,857405981 +548,357,3.0,857405981 +548,362,3.0,857407492 +548,364,3.0,857406499 +548,368,3.0,857407799 +548,370,3.0,857407170 +548,371,3.0,857407562 +548,372,3.0,857407272 +548,376,3.0,857405496 +548,380,3.0,857407661 +548,383,3.0,857407170 +548,410,3.0,857406945 +548,427,3.0,857406991 +548,434,3.0,857406875 +548,435,3.0,857406499 +548,440,4.0,857406499 +548,442,4.0,857407799 +548,445,3.0,857407562 +548,454,3.0,857406302 +548,457,5.0,857406014 +548,466,3.0,857407961 +548,468,3.0,857407872 +548,471,4.0,857407799 +548,474,4.0,857406082 +548,480,4.0,857406499 +548,481,4.0,857406800 +548,493,3.0,857407720 +548,494,3.0,857405447 +548,497,3.0,857406302 +548,500,3.0,857406724 +548,509,3.0,857405981 +548,514,3.0,857407217 +548,538,3.0,857406644 +548,541,5.0,857406800 +548,542,3.0,857407170 +548,543,3.0,857407365 +548,544,3.0,857407872 +548,552,3.0,857407799 +548,553,4.0,857406014 +548,555,4.0,857406015 +548,586,3.0,857406800 +548,588,3.0,857407562 +548,590,3.0,857406945 +548,593,4.0,857405918 +548,595,3.0,857407060 +548,597,3.0,857406576 +548,608,5.0,857405447 +548,628,4.0,857405542 +548,647,3.0,857406801 +548,648,3.0,857405395 +548,671,4.0,857405676 +548,708,3.0,857405496 +548,719,3.0,857405620 +548,733,4.0,857405447 +548,741,3.0,857407420 +548,778,5.0,857405620 +548,780,4.0,857405395 +548,784,3.0,857405496 +548,785,3.0,857405724 +548,786,3.0,857405447 +548,788,3.0,857405496 +548,802,3.0,857405542 +548,1035,3.0,857407059 +548,1036,4.0,857406576 +548,1073,3.0,857405447 +548,1079,5.0,857406302 +548,1080,4.0,857406991 +548,1084,4.0,857406575 +548,1086,4.0,857407661 +548,1103,3.0,857407799 +548,1356,4.0,857405542 +549,18,1.0,1268782856 +549,50,4.5,1268783169 +549,267,2.0,1268782908 +549,318,3.5,1268783173 +549,671,5.0,1268782761 +549,743,2.0,1268782799 +549,750,5.0,1268783177 +549,858,5.0,1268783180 +549,1095,4.0,1268782836 +549,1221,5.0,1268783183 +549,1245,3.5,1268782842 +549,1680,1.0,1268782806 +549,2716,3.5,1268783189 +549,2795,4.0,1268782830 +549,3019,2.5,1268782915 +549,3087,2.5,1268782862 +549,3396,3.0,1268782808 +549,3555,1.0,1268782810 +549,3698,3.5,1268782824 +549,3740,2.0,1268782880 +549,3798,2.0,1268782833 +549,4019,2.5,1268782847 +550,10,4.0,943372548 +550,11,4.0,943373959 +550,16,5.0,942669563 +550,32,4.0,942668664 +550,34,4.0,943373414 +550,41,5.0,943372388 +550,47,3.0,942669480 +550,110,3.0,943372349 +550,145,4.0,959487219 +550,153,1.0,943372786 +550,161,4.0,942669719 +550,172,2.0,942668764 +550,208,3.0,943372786 +550,293,3.0,943374214 +550,296,5.0,943373825 +550,338,4.0,942669183 +550,353,4.0,959487237 +550,356,4.0,943372349 +550,377,5.0,942669824 +550,380,4.0,943372597 +550,440,3.0,943373616 +550,442,2.0,942669148 +550,457,3.0,942669521 +550,474,4.0,959487071 +550,480,4.0,942669034 +550,494,3.0,942669930 +550,517,3.0,943374568 +550,527,5.0,943372349 +550,588,4.0,943373505 +550,589,4.0,942668665 +550,590,5.0,943372549 +550,593,4.0,942669479 +550,608,5.0,942669521 +550,647,4.0,943372388 +550,648,3.0,943372625 +550,665,5.0,959486824 +550,733,4.0,942669719 +550,736,3.0,943372786 +550,748,5.0,942669183 +550,780,3.0,943372422 +550,788,3.0,959486932 +550,798,3.0,959487179 +550,832,2.0,942669619 +550,861,3.0,942669965 +550,904,5.0,943375474 +550,1036,4.0,943374879 +550,1101,2.0,943375066 +550,1127,4.0,943374728 +550,1183,4.0,943372388 +550,1196,5.0,943374728 +550,1198,5.0,943374979 +550,1200,4.0,943374728 +550,1210,4.0,943374728 +550,1219,4.0,943375684 +550,1240,4.0,943374728 +550,1242,4.0,943375022 +550,1274,4.0,943374763 +550,1291,4.0,943374979 +550,1372,4.0,959486957 +550,1377,2.0,943372719 +550,1391,3.0,943372450 +550,1393,4.0,943373996 +550,1422,3.0,942670431 +550,1427,3.0,942670538 +550,1480,4.0,942670234 +550,1499,2.0,943372819 +550,1515,3.0,942670470 +550,1552,3.0,942670055 +550,1573,4.0,959486906 +550,1580,4.0,942669034 +550,1589,3.0,943373169 +550,1590,1.0,942669224 +550,1601,4.0,943373252 +550,1603,3.0,942669183 +550,1608,3.0,942669782 +550,1610,4.0,942669563 +550,1616,3.0,942670191 +550,1617,5.0,942669563 +550,1620,3.0,942669965 +550,1625,3.0,942669563 +550,1645,2.0,942669619 +550,1653,5.0,942668764 +550,1676,4.0,942669100 +550,1683,5.0,942670470 +550,1704,5.0,943373825 +550,1721,2.0,943373882 +550,1722,3.0,959487134 +550,1744,1.0,943372719 +550,1747,3.0,943374345 +550,1748,5.0,959486882 +550,1769,3.0,942670318 +550,1784,4.0,943373486 +550,1792,3.0,942670191 +550,1833,2.0,942670318 +550,1876,3.0,942668764 +550,1883,4.0,943373616 +550,1917,3.0,942669270 +550,1918,2.0,943373045 +550,1920,2.0,943372476 +550,1921,5.0,959486882 +550,1923,5.0,943373486 +550,2000,4.0,943375022 +550,2002,2.0,943373045 +550,2028,3.0,943372349 +550,2058,4.0,942669848 +550,2115,4.0,943375096 +550,2118,5.0,943374909 +550,2126,4.0,943373200 +550,2167,3.0,943372597 +550,2252,4.0,943373543 +550,2278,4.0,943373068 +550,2302,4.0,943373448 +550,2334,3.0,942669931 +550,2353,3.0,942669674 +550,2391,4.0,942669674 +550,2405,2.0,943375066 +550,2406,4.0,943374979 +550,2542,5.0,942669480 +550,2549,1.0,942669342 +550,2571,5.0,959486882 +550,2580,4.0,943373101 +550,2616,3.0,959487179 +550,2628,2.0,959486957 +550,2707,4.0,948681508 +550,2762,5.0,942669479 +550,2763,4.0,959487096 +550,2822,3.0,943372842 +550,2858,5.0,959486746 +550,2912,3.0,959487048 +550,2987,4.0,943375170 +550,3020,4.0,959487179 +550,3044,5.0,942669479 +550,3052,3.0,942668149 +550,3082,2.0,959487134 +550,3101,4.0,943374909 +551,7,4.0,843274557 +551,12,3.0,843274928 +551,45,3.0,843274426 +551,105,3.0,843274391 +551,126,2.0,843274947 +551,135,3.0,843275050 +551,150,4.0,843273952 +551,191,3.0,843275008 +551,196,3.0,843274220 +551,253,3.0,843274054 +551,273,4.0,843274425 +551,277,3.0,843274321 +551,316,4.0,843274034 +551,328,3.0,843274714 +551,329,3.0,843274005 +551,330,3.0,843275050 +551,332,3.0,843275050 +551,336,3.0,843275128 +551,344,4.0,843273967 +551,364,3.0,843274095 +551,367,4.0,843274095 +551,368,3.0,843274286 +551,370,3.0,843274391 +551,410,3.0,843274114 +551,416,3.0,843274971 +551,419,4.0,843274619 +551,420,4.0,843274136 +551,421,4.0,843274822 +551,426,3.0,843274666 +551,457,4.0,843274005 +551,474,4.0,843274245 +551,480,3.0,843274054 +551,484,3.0,843276128 +551,519,3.0,843274714 +551,520,4.0,843274339 +551,548,3.0,843274694 +551,553,3.0,843274199 +551,575,4.0,843275068 +551,586,4.0,843274136 +551,587,4.0,843274154 +551,589,4.0,843274095 +551,590,3.0,843273952 +551,593,3.0,843274005 +551,594,4.0,843274339 +551,595,3.0,843274005 +551,616,3.0,843274587 +551,637,4.0,843274837 +551,640,3.0,843275977 +551,648,4.0,843274301 +551,667,4.0,843275977 +551,783,5.0,843274990 +551,788,4.0,843274822 +551,835,4.0,843275176 +551,849,3.0,843276068 +551,880,4.0,843275206 +551,997,3.0,843275944 +551,1007,3.0,843275440 +551,1008,4.0,843275652 +551,1009,3.0,843275347 +551,1010,3.0,843275265 +551,1011,3.0,843275347 +551,1012,4.0,843275249 +551,1013,2.0,843275249 +551,1015,5.0,843275347 +551,1016,4.0,843275378 +551,1017,3.0,843275318 +551,1018,3.0,843275551 +551,1019,5.0,843275156 +551,1022,3.0,843275099 +551,1025,4.0,843275176 +551,1027,3.0,843276181 +551,1028,3.0,843276102 +551,1029,4.0,843275099 +551,1031,3.0,843275265 +551,1032,3.0,843275156 +551,1033,4.0,843275285 +551,1035,3.0,843276102 +551,1036,4.0,843274876 +551,1079,3.0,843275249 +551,1081,3.0,843275604 +551,1083,3.0,843275806 +551,1084,4.0,843275634 +551,1085,1.0,843275862 +551,1086,4.0,843275677 +551,1087,3.0,843275944 +552,10,3.0,843322577 +552,97,4.0,843325101 +552,145,3.0,843323102 +552,153,2.0,843322530 +552,155,3.0,843325702 +552,165,3.0,843322530 +552,172,3.0,843322966 +552,185,2.0,843322577 +552,196,3.0,843322943 +552,198,4.0,843323248 +552,296,5.0,843322508 +552,305,2.0,843324474 +552,319,4.0,843323278 +552,355,1.0,843323061 +552,356,1.0,843322561 +552,357,3.0,843322664 +552,365,3.0,843323654 +552,367,2.0,843322607 +552,377,1.0,843322618 +552,466,3.0,843323027 +552,480,2.0,843322577 +552,508,3.0,846647020 +552,527,3.0,843322663 +552,546,1.0,843323390 +552,551,4.0,843322966 +552,586,1.0,843322909 +552,588,3.0,843322530 +552,589,2.0,843322607 +552,590,3.0,846646988 +552,592,3.0,843322507 +552,593,4.0,843322545 +552,597,2.0,843322643 +552,616,4.0,843323230 +552,718,2.0,843325980 +552,1028,3.0,843325882 +552,1036,2.0,843323654 +552,1037,3.0,843323904 +552,1079,3.0,843324065 +553,1,4.0,1423011192 +553,110,5.0,1423009741 +553,260,5.0,1423009619 +553,293,4.0,1423009682 +553,318,5.0,1423010524 +553,457,3.0,1423010013 +553,555,2.5,1423010283 +553,589,2.5,1423009703 +553,736,3.0,1423009927 +553,858,3.5,1423010522 +553,1036,3.0,1423009686 +553,1136,5.0,1423010498 +553,1196,5.0,1423009626 +553,1197,3.0,1423010531 +553,1198,5.0,1423009623 +553,1200,2.5,1423009670 +553,1201,4.0,1423010736 +553,1207,2.0,1423009877 +553,1208,2.5,1423010774 +553,1210,5.0,1423009636 +553,1240,2.5,1423009734 +553,1242,3.5,1423011312 +553,1262,3.5,1423011711 +553,1278,4.0,1423011079 +553,1291,5.0,1423009630 +553,1304,4.0,1423010992 +553,1377,3.0,1423011888 +553,1682,1.5,1423010253 +553,1704,4.0,1423011822 +553,1722,4.0,1423011221 +553,2005,5.0,1423011679 +553,2028,5.0,1423009746 +553,2115,5.0,1423011203 +553,2502,4.0,1423011027 +553,2571,3.5,1423009795 +553,2948,4.5,1423012089 +553,2949,4.5,1423012088 +553,2959,5.0,1423009752 +553,2989,4.5,1423011853 +553,3578,5.0,1423009810 +553,3623,3.5,1423011583 +553,3671,3.5,1423010113 +553,3753,5.0,1423011003 +553,3793,4.0,1423010788 +553,3916,4.0,1423010342 +553,3948,3.5,1423011596 +553,4011,4.0,1423011579 +553,4022,3.5,1423011572 +553,4223,4.5,1423010812 +553,4262,3.0,1423011155 +553,4306,4.0,1423011557 +553,4878,3.5,1423009920 +553,4886,3.5,1423011560 +553,4896,4.5,1423009791 +553,4958,4.0,1423010937 +553,4963,3.5,1423010547 +553,4993,5.0,1423009657 +553,4995,4.5,1423010729 +553,5010,4.0,1423011622 +553,5152,5.0,1423010875 +553,5218,4.0,1423011614 +553,5349,4.0,1423011033 +553,5378,5.0,1423011588 +553,5418,4.0,1423009808 +553,5459,3.5,1423011627 +553,5464,3.5,1423010760 +553,5816,4.5,1423011145 +553,5903,4.5,1423010505 +553,5952,5.0,1423009659 +553,6016,4.0,1423009835 +553,6213,4.0,1423010923 +553,6333,4.0,1423009865 +553,6365,4.0,1423010387 +553,6377,4.5,1423010551 +553,6378,4.0,1423011640 +553,6539,4.0,1423011561 +553,6874,3.5,1423011565 +553,6947,3.0,1423011740 +553,7143,5.0,1423010732 +553,7153,5.0,1423009639 +553,7373,4.5,1423009881 +553,7438,3.5,1423011576 +553,7502,5.0,1423009661 +553,8360,4.0,1423009804 +553,8368,4.0,1423010684 +553,8636,4.0,1423010864 +553,8644,4.0,1423011629 +553,8665,4.0,1423009841 +553,8874,4.0,1423011603 +553,8961,3.5,1423011568 +553,27611,3.5,1423009939 +553,30707,2.5,1423010136 +553,33493,5.0,1423011780 +553,33679,3.5,1423010189 +553,33794,5.0,1423009713 +553,34405,4.0,1423010610 +553,35836,4.0,1423010653 +553,38061,4.5,1423010161 +553,40815,4.5,1423009793 +553,41566,4.5,1423011346 +553,44191,4.0,1423011695 +553,45722,4.0,1423011124 +553,47099,2.5,1423010660 +553,47610,4.0,1423010592 +553,48516,4.5,1423012257 +553,48780,4.5,1423010515 +553,49272,4.0,1423010649 +553,49530,4.0,1423009787 +553,51255,4.0,1423010096 +553,51662,5.0,1423009798 +553,51935,5.0,1423010074 +553,52458,4.0,1423010932 +553,52973,4.0,1423011341 +553,53125,4.0,1423010001 +553,53972,3.5,1423011060 +553,53996,4.0,1423010105 +553,54001,4.0,1423010601 +553,54286,4.0,1423009716 +553,55820,4.5,1423011632 +553,56367,2.0,1423011618 +553,58559,5.0,1423009633 +553,59315,5.0,1423009744 +553,59369,3.0,1423010662 +553,60040,4.0,1423009831 +553,60069,3.5,1423009857 +553,60072,3.0,1423010291 +553,60684,3.5,1423011664 +553,61024,5.0,1423011846 +553,61160,3.0,1423011861 +553,63082,3.5,1423010397 +553,63113,3.5,1423010047 +553,65514,4.0,1423010039 +553,66171,3.5,1423009971 +553,67087,4.0,1423010891 +553,68319,4.5,1423010305 +553,68358,5.0,1423009748 +553,68791,3.0,1423009989 +553,68954,3.5,1423009761 +553,69122,4.5,1423010541 +553,69481,4.0,1423010220 +553,69844,4.5,1423009871 +553,70286,3.5,1423009901 +553,71535,5.0,1423011745 +553,72998,4.0,1423009851 +553,73017,5.0,1423010642 +553,74458,3.5,1423010838 +553,74789,2.0,1423011882 +553,76251,4.5,1423011863 +553,77561,5.0,1423009802 +553,77866,4.0,1423010831 +553,78469,3.0,1423010987 +553,79132,4.0,1423009700 +553,79553,4.0,1423010394 +553,81782,3.0,1423010916 +553,81834,4.0,1423010508 +553,82459,3.0,1423010121 +553,84152,3.5,1423011158 +553,85414,2.5,1423009947 +553,85774,3.0,1423011038 +553,86332,4.5,1423011865 +553,87232,3.5,1423010682 +553,88125,4.0,1423010553 +553,88129,5.0,1423010106 +553,88140,4.5,1423011117 +553,89745,5.0,1423011654 +553,89774,5.0,1423011326 +553,91500,3.5,1423010199 +553,91529,5.0,1423010517 +553,91542,5.0,1423011973 +553,91658,3.0,1423010080 +553,93510,4.0,1423012085 +553,94777,4.0,1423010956 +553,95510,3.5,1423010089 +553,96079,4.5,1423012295 +553,97938,3.5,1423010640 +553,98809,5.0,1423010862 +553,99007,2.5,1423011836 +553,99114,4.0,1423010668 +553,102123,4.5,1423011755 +553,102125,5.0,1423010793 +553,102445,5.0,1423011660 +553,103341,4.0,1423011733 +553,104841,2.5,1423010713 +553,104913,5.0,1423011329 +553,106002,3.0,1423010818 +553,106072,4.5,1423011120 +553,106487,4.0,1423010925 +553,106489,5.0,1423011674 +553,106782,4.0,1423010248 +553,107348,3.5,1423011707 +553,109578,3.0,1423011704 +553,110102,4.5,1423011684 +553,111362,4.5,1423011668 +553,111759,4.0,1423011776 +553,112138,4.0,1423011670 +553,112852,5.0,1423010098 +553,113453,3.5,1423011827 +553,114662,4.0,1423011441 +553,118105,4.0,1423011525 +553,118696,5.0,1423011457 +553,119141,5.0,1423011435 +554,17,5.0,1012750606 +554,495,4.0,1012751170 +554,500,3.0,1012753651 +554,527,5.0,1012750278 +554,541,4.0,1012753390 +554,593,4.0,1012752577 +554,784,1.0,1012750904 +554,858,5.0,1012750465 +554,1096,4.0,1012750728 +554,1136,3.0,1012751434 +554,1193,5.0,1012750517 +554,1196,4.0,1012750499 +554,1200,4.0,1012753261 +554,1228,5.0,1012752226 +554,1230,4.0,1012752624 +554,1240,4.0,1012753112 +554,1320,2.0,1012752274 +554,1333,4.0,1012753453 +554,1344,4.0,1012753664 +554,1556,1.0,1012753636 +554,1610,3.0,1012753349 +554,1676,3.0,1012750278 +554,1734,4.0,1012753154 +554,1959,4.0,1012752997 +554,1968,3.0,1012750439 +554,1974,3.0,1012753758 +554,1975,3.0,1012753261 +554,1977,1.0,1012750606 +554,1996,1.0,1012751093 +554,2012,2.0,1012753028 +554,2029,4.0,1012750499 +554,2114,4.0,1012752908 +554,2243,5.0,1012751296 +554,2324,4.0,1012753566 +554,2355,4.0,1012750634 +554,2384,4.0,1012753418 +554,2396,4.0,1012753540 +554,2411,1.0,1012752492 +554,2431,3.0,1012753173 +554,2470,2.0,1012753190 +554,2471,1.0,1012752256 +554,2521,2.0,1012750606 +554,2522,2.0,1012751122 +554,2568,1.0,1012752639 +554,2713,2.0,1012753283 +554,2762,5.0,1012751351 +554,2918,4.0,1012751138 +554,2942,3.0,1012753718 +554,2971,4.0,1012753507 +554,2997,4.0,1012751122 +554,3068,4.0,1012753059 +554,3252,4.0,1012750984 +554,3309,4.0,1012753566 +554,3361,4.0,1012752150 +554,3450,2.0,1012750278 +554,3551,5.0,1012750499 +554,3649,3.0,1012753155 +554,4025,2.0,1012750465 +554,4103,4.0,1012753333 +554,4179,4.0,1012752793 +554,4447,3.0,1012753173 +554,4489,3.0,1012752997 +554,4521,4.0,1012750517 +554,4993,4.0,1012752624 +555,10,3.0,842288289 +555,17,3.0,842284353 +555,34,4.0,842284498 +555,41,3.0,842283609 +555,45,3.0,832091435 +555,50,4.0,832091086 +555,82,3.0,863625433 +555,95,1.0,857380156 +555,105,2.0,842284753 +555,110,3.0,863626004 +555,114,3.0,857379668 +555,144,4.0,842284740 +555,150,3.0,842288304 +555,151,3.0,832091115 +555,154,4.0,832096969 +555,194,5.0,842283609 +555,196,3.0,832091132 +555,208,3.0,857380017 +555,225,3.0,832091059 +555,232,3.0,832097072 +555,246,3.0,857379970 +555,247,3.0,832091461 +555,249,2.0,832091461 +555,253,3.0,832091040 +555,260,5.0,857379934 +555,272,4.0,832091194 +555,273,3.0,842284661 +555,296,4.0,832090964 +555,300,3.0,832091040 +555,305,3.0,857379970 +555,306,5.0,842288184 +555,307,4.0,832097396 +555,308,5.0,832097395 +555,316,3.0,857379989 +555,318,5.0,832091005 +555,329,3.0,832097219 +555,337,2.0,832091115 +555,342,3.0,842284740 +555,344,3.0,832090980 +555,348,3.0,832091194 +555,357,4.0,842283857 +555,367,3.0,842288224 +555,377,3.0,842284619 +555,380,3.0,832090964 +555,412,3.0,842284725 +555,457,3.0,842284588 +555,480,3.0,842284599 +555,497,3.0,842283909 +555,509,4.0,832091435 +555,515,4.0,832097049 +555,527,4.0,842283755 +555,535,4.0,842283411 +555,537,3.0,842283375 +555,539,2.0,857380017 +555,582,4.0,857380394 +555,587,1.0,842284763 +555,589,4.0,842284579 +555,590,3.0,832090964 +555,592,3.0,832090964 +555,593,3.0,832091247 +555,608,4.0,842283037 +555,648,3.0,857380091 +555,718,3.0,845555757 +555,719,1.0,857380499 +555,780,3.0,857380156 +555,786,3.0,857380190 +555,802,1.0,857380223 +555,852,2.0,857380264 +555,1036,3.0,842284619 +555,1037,2.0,842284674 +555,1041,5.0,857379617 +555,1113,1.0,857379775 +555,1183,4.0,863626054 +555,1210,3.0,863626081 +555,1233,4.0,863626054 +556,50,3.0,842019987 +556,150,5.0,842019335 +556,161,5.0,842019723 +556,165,5.0,842019369 +556,208,4.0,842019988 +556,231,3.0,842019459 +556,292,5.0,842019723 +556,296,3.0,842019987 +556,316,5.0,842019459 +556,318,5.0,842019723 +556,329,5.0,842019723 +556,344,4.0,842019369 +556,349,5.0,842019369 +556,364,4.0,842019864 +556,380,4.0,842019335 +556,434,4.0,842019723 +556,454,5.0,842019988 +556,457,5.0,842019459 +556,474,5.0,842019987 +556,480,5.0,842019864 +556,500,4.0,842019864 +556,586,4.0,842019864 +556,590,5.0,842019335 +556,592,3.0,842019335 +556,593,5.0,842019459 +557,34,2.0,1285963072 +557,239,3.0,1285960614 +557,344,3.0,1285961617 +557,410,2.5,1285961682 +557,588,2.5,1285961987 +557,616,2.5,1285962753 +557,631,2.0,1285960710 +557,934,3.5,1285960493 +557,940,3.0,1285961768 +557,1021,2.0,1285962508 +557,1030,1.0,1285960607 +557,1064,2.5,1285961996 +557,1099,0.5,1285960779 +557,1367,2.5,1285961128 +557,1381,4.0,1285960548 +557,1517,3.5,1285962977 +557,1592,3.5,1285961944 +557,1688,3.0,1285962435 +557,1713,3.0,1285960726 +557,1735,0.5,1285960635 +557,2018,2.0,1285960341 +557,2085,1.5,1285961136 +557,2123,2.0,1285962128 +557,2124,2.5,1285961688 +557,2137,2.5,1285960415 +557,2141,1.0,1285962368 +557,2142,1.0,1285962371 +557,2152,3.5,1285961948 +557,2294,1.5,1285962621 +557,2346,4.0,1285960757 +557,2572,4.0,1285961098 +557,2683,3.5,1285962983 +557,2706,4.0,1285962325 +557,2720,0.5,1285960536 +557,2886,2.0,1285961723 +557,3159,2.0,1285960524 +557,3271,1.5,1285960574 +557,3991,2.0,1285961168 +557,4039,3.5,1285962576 +557,4366,2.0,1285962917 +557,4386,3.5,1285960833 +557,4718,4.0,1285962328 +557,5481,4.0,1285962970 +557,6287,3.0,1285962515 +557,6383,0.5,1285961234 +557,6586,4.0,1285962383 +557,6624,2.0,1285961915 +557,7293,3.5,1285961435 +557,7541,3.5,1285961114 +557,27075,2.5,1285961674 +557,31422,3.0,1285962727 +557,35836,2.0,1285961390 +557,39715,4.0,1285962337 +557,44709,3.5,1285961979 +557,47124,2.5,1285962604 +557,47518,3.5,1285961597 +557,50189,4.0,1285962343 +557,51372,3.0,1285961066 +557,56176,3.5,1285962210 +557,56949,4.5,1285961318 +557,59429,4.0,1285962340 +557,67734,0.5,1285961707 +557,73042,3.0,1285962214 +557,73106,4.0,1285962347 +557,74789,2.0,1285962087 +557,80748,4.5,1285962079 +558,111,5.0,965485573 +558,121,4.0,965485415 +558,290,4.0,965485792 +558,327,1.0,965433767 +558,593,5.0,965485844 +558,608,4.0,965485792 +558,615,4.0,965485844 +558,648,4.0,976042500 +558,678,5.0,965485844 +558,806,4.0,965433767 +558,846,4.0,965485954 +558,858,5.0,965485233 +558,903,4.0,965485415 +558,904,5.0,965485358 +558,908,5.0,965485358 +558,912,5.0,965485358 +558,920,5.0,965485639 +558,924,5.0,965434027 +558,949,4.0,965485747 +558,969,5.0,965485844 +558,999,4.0,965434027 +558,1019,5.0,965434027 +558,1034,4.0,965485200 +558,1056,5.0,965485320 +558,1080,4.0,965433767 +558,1084,5.0,965486018 +558,1089,5.0,965485990 +558,1090,5.0,965485927 +558,1094,5.0,965485901 +558,1097,5.0,965433821 +558,1131,5.0,965485927 +558,1193,5.0,965433767 +558,1203,5.0,965433965 +558,1206,5.0,965485672 +558,1212,5.0,965485457 +558,1213,5.0,965485844 +558,1219,5.0,965485505 +558,1221,5.0,965485257 +558,1230,5.0,965485505 +558,1231,5.0,965485990 +558,1233,5.0,965485868 +558,1247,5.0,965485703 +558,1249,4.0,965485320 +558,1250,5.0,965486019 +558,1254,5.0,965485573 +558,1256,4.0,965485545 +558,1267,5.0,965485610 +558,1282,5.0,965485545 +558,1299,5.0,965485610 +558,1413,5.0,965485792 +558,1446,4.0,965485844 +558,1503,3.0,965434122 +558,1516,4.0,965485545 +558,1594,3.0,965485610 +558,1609,3.0,965434027 +558,1699,4.0,965485505 +558,1945,5.0,965485990 +558,1946,5.0,965485672 +558,1952,5.0,965485505 +558,2015,3.0,965434122 +558,2019,5.0,965485415 +558,2085,4.0,965433965 +558,2132,5.0,965485901 +558,2300,4.0,965485703 +558,2311,3.0,965434027 +558,2357,5.0,965485358 +558,2475,4.0,965434075 +558,2492,2.0,965434027 +558,2504,4.0,965434027 +558,2505,4.0,965434122 +558,2599,5.0,965485747 +558,2648,5.0,965485928 +558,2662,4.0,965486019 +558,2664,5.0,965485990 +558,2692,5.0,965485200 +558,2858,5.0,965861667 +558,2889,4.0,965861707 +558,2908,4.0,965485457 +558,2944,4.0,965433821 +558,2966,5.0,965861667 +558,2976,3.0,965861782 +558,2998,4.0,966518787 +558,3018,4.0,965485792 +558,3055,3.0,965861707 +558,3077,4.0,965434075 +558,3078,4.0,965861667 +558,3079,4.0,965861667 +558,3081,4.0,965861749 +558,3082,4.0,965861749 +558,3083,5.0,965485415 +558,3089,5.0,965485639 +558,3095,5.0,965485703 +558,3112,5.0,965433965 +558,3116,4.0,965861749 +558,3117,3.0,966518787 +558,3128,4.0,965485233 +558,3129,4.0,965861749 +558,3147,5.0,965861667 +558,3148,4.0,970409446 +558,3150,4.0,970409446 +558,3159,3.0,976042422 +558,3160,4.0,970409446 +558,3163,5.0,965861707 +558,3173,3.0,976042500 +558,3174,4.0,965861707 +558,3176,4.0,965861707 +558,3183,4.0,965861667 +558,3185,4.0,965861782 +558,3186,4.0,965861749 +558,3196,5.0,965485505 +558,3201,5.0,965485990 +558,3298,4.0,970409485 +558,3300,5.0,976042461 +558,3301,3.0,965861782 +558,3317,5.0,987266889 +558,3328,5.0,970409485 +558,3363,5.0,965485747 +558,3408,5.0,970409446 +558,3420,4.0,965433965 +558,3457,4.0,976042559 +558,3467,4.0,965485610 +558,3468,5.0,965485672 +558,3470,3.0,965485142 +558,3481,5.0,970409446 +558,3509,4.0,976042559 +558,3510,3.0,976042422 +558,3512,5.0,976042559 +558,3534,4.0,976042500 +558,3578,5.0,976042422 +558,3624,4.0,976042461 +558,3683,5.0,965485901 +558,3728,5.0,965485415 +558,3735,5.0,965485573 +558,3741,4.0,965485415 +558,3747,5.0,976042500 +558,3751,5.0,976042422 +558,3753,4.0,976042422 +558,3760,3.0,965572784 +558,3763,5.0,965572711 +558,3788,5.0,965572644 +558,3789,5.0,965572848 +558,3791,4.0,965572741 +558,3792,5.0,965572711 +558,3798,4.0,987266918 +558,3801,5.0,967385405 +558,3802,3.0,965572741 +558,3809,4.0,967385373 +558,3811,4.0,965485792 +558,3813,5.0,967385373 +558,3816,3.0,965485142 +558,3834,4.0,967385235 +558,3844,4.0,967385207 +558,3852,5.0,992358451 +558,3855,4.0,987266889 +558,3863,3.0,967385167 +558,3865,2.0,987266889 +558,3868,4.0,967385167 +558,3869,3.0,967385125 +558,3871,5.0,967385125 +558,3872,4.0,967385125 +558,3873,5.0,967385125 +558,3886,4.0,967385082 +558,3893,5.0,987266889 +558,3897,5.0,987266889 +558,3903,3.0,992358451 +558,3911,5.0,992358451 +558,3949,5.0,992358425 +558,3952,5.0,987266918 +558,3967,5.0,992358425 +558,3983,5.0,994686701 +558,3994,5.0,994686726 +558,3996,5.0,993912887 +558,4014,4.0,1000133359 +558,4017,5.0,1002808994 +558,4018,3.0,994686726 +558,4021,5.0,992358425 +558,4022,4.0,993912887 +558,4023,4.0,998058305 +558,4024,4.0,992788160 +558,4027,4.0,993912887 +558,4029,5.0,993912887 +558,4034,5.0,992358425 +558,4056,4.0,1000133389 +558,4131,4.0,986655167 +558,4132,3.0,986655167 +558,4148,5.0,1000133389 +558,4153,3.0,996160338 +558,4174,5.0,986655083 +558,4178,4.0,986655083 +558,4186,3.0,986655058 +558,4187,5.0,986655058 +558,4190,5.0,986655058 +558,4191,5.0,986655032 +558,4201,5.0,986655015 +558,4210,4.0,986655015 +558,4211,3.0,986654994 +558,4220,5.0,986654994 +558,4226,5.0,1000653692 +558,4234,4.0,1000653736 +558,4239,4.0,1000653714 +558,4246,5.0,1005058642 +558,4306,5.0,1005750198 +558,4345,4.0,1019744771 +558,4370,5.0,1019744816 +558,4378,4.0,1019744792 +558,4641,5.0,1019744771 +558,4720,3.0,1026053698 +558,4743,3.0,1019744792 +558,4844,5.0,1019744816 +558,4848,5.0,1019744731 +558,4881,3.0,1026053672 +558,4889,4.0,1019744816 +558,4995,5.0,1026053672 +558,5015,4.0,1026053672 +558,6184,5.0,967385374 +559,1,4.0,903143238 +559,3,3.0,883675744 +559,17,4.0,903144535 +559,34,4.0,883676604 +559,79,4.0,883676273 +559,95,4.0,883675795 +559,104,4.0,903143278 +559,110,5.0,903143929 +559,135,3.0,883676143 +559,150,5.0,903143360 +559,260,5.0,883675417 +559,300,4.0,903144943 +559,316,5.0,903144987 +559,318,5.0,883676743 +559,349,5.0,903144323 +559,356,5.0,903144451 +559,364,4.0,903144894 +559,376,4.0,883675716 +559,380,5.0,903143885 +559,457,5.0,883676807 +559,474,5.0,903144114 +559,494,4.0,903144987 +559,497,5.0,917732299 +559,527,5.0,883676893 +559,541,5.0,903144572 +559,588,5.0,903144600 +559,589,5.0,903144248 +559,590,5.0,903144248 +559,593,5.0,903143793 +559,608,5.0,883676893 +559,637,3.0,883676321 +559,648,4.0,883675771 +559,671,4.0,883675605 +559,673,3.0,883676351 +559,719,4.0,883675991 +559,733,4.0,883675824 +559,765,3.0,903143360 +559,780,4.0,883675744 +559,785,2.0,903143562 +559,788,4.0,883675992 +559,802,4.0,903143562 +559,805,5.0,883675535 +559,830,3.0,883676303 +559,852,4.0,903143645 +559,858,5.0,903143929 +559,903,5.0,903143985 +559,904,5.0,903144080 +559,913,5.0,903143929 +559,919,3.0,903220452 +559,926,5.0,903144451 +559,953,5.0,903143418 +559,986,5.0,895844564 +559,991,5.0,883676893 +559,1028,4.0,903143515 +559,1036,4.0,903143515 +559,1042,4.0,883675565 +559,1086,5.0,903144858 +559,1193,5.0,903143757 +559,1196,5.0,903143793 +559,1197,5.0,883676720 +559,1198,5.0,903144323 +559,1204,5.0,903144393 +559,1210,5.0,883675664 +559,1214,4.0,903144080 +559,1220,3.0,903144858 +559,1221,5.0,903143958 +559,1228,5.0,903144894 +559,1231,5.0,903144451 +559,1234,5.0,903143360 +559,1240,5.0,903143610 +559,1247,5.0,903144248 +559,1250,5.0,883676958 +559,1252,5.0,903144894 +559,1262,5.0,903143929 +559,1266,5.0,903144692 +559,1270,5.0,903143360 +559,1272,5.0,903144080 +559,1276,5.0,903144248 +559,1286,5.0,903145090 +559,1287,5.0,903145235 +559,1291,5.0,903144048 +559,1292,5.0,903144572 +559,1304,4.0,903144114 +559,1307,5.0,903144572 +559,1356,4.0,903143238 +559,1393,5.0,903143418 +559,1409,4.0,903143611 +559,1414,4.0,883674941 +559,1453,3.0,903143360 +559,1479,4.0,883674941 +559,1485,4.0,883674859 +559,1500,4.0,903143238 +559,1517,2.0,903143278 +559,1518,4.0,903143238 +559,1527,3.0,883675535 +559,1544,3.0,903143681 +559,1569,3.0,903145235 +559,1573,4.0,903143562 +559,1580,5.0,883676893 +559,1584,5.0,883676893 +559,1610,5.0,903144393 +559,1617,5.0,903144248 +559,1653,4.0,903145196 +559,1667,4.0,903145090 +559,1674,5.0,903144452 +559,1682,4.0,903144201 +559,1721,5.0,903143885 +559,1784,5.0,903144048 +559,1876,4.0,903142945 +559,1931,5.0,903143885 +559,1952,5.0,903145196 +559,1961,5.0,903144014 +559,1962,5.0,903144201 +559,1997,5.0,903144894 +559,2018,5.0,903145235 +559,2019,5.0,903144630 +559,2028,5.0,903142945 +559,2078,4.0,903143831 +559,2080,4.0,903144750 +559,2081,4.0,903144481 +559,2194,4.0,917732091 +559,2268,5.0,917732299 +559,2294,3.0,917730910 +559,2353,5.0,917730876 +559,2355,5.0,917730876 +559,2423,4.0,917732299 +559,2424,4.0,917730910 +559,2431,4.0,917730929 +559,2433,4.0,917730876 +560,1,4.5,1452849340 +560,10,4.0,1452848962 +560,19,3.5,1452849471 +560,34,3.5,1452849376 +560,150,4.5,1452849346 +560,165,4.0,1452848918 +560,231,3.5,1452852280 +560,296,4.0,1452848799 +560,318,5.0,1452848501 +560,344,3.5,1452849362 +560,356,4.0,1452848616 +560,364,4.0,1452851226 +560,455,3.5,1452849944 +560,480,4.0,1452849333 +560,519,3.0,1452850276 +560,527,4.5,1452849283 +560,586,4.0,1452848698 +560,589,4.0,1452848389 +560,593,3.5,1452848804 +560,596,4.0,1452851243 +560,597,3.5,1452852760 +560,648,4.0,1452848916 +560,778,3.5,1452849438 +560,780,4.0,1452848439 +560,858,4.0,1452851203 +560,1033,3.5,1452850443 +560,1036,4.0,1452849388 +560,1059,4.0,1452852346 +560,1200,4.0,1452849409 +560,1214,4.0,1452849382 +560,1222,4.0,1452849465 +560,1240,4.0,1452848655 +560,1258,3.5,1452849431 +560,1270,5.0,1452848729 +560,1320,4.5,1452849616 +560,1339,3.0,1452849763 +560,1370,4.0,1452849568 +560,1407,4.0,1452850825 +560,1515,4.5,1452850473 +560,1544,4.0,1452849594 +560,1566,4.0,1452850254 +560,1573,4.5,1452849092 +560,1580,3.0,1452850789 +560,1608,4.0,1452849591 +560,1665,4.0,1452851869 +560,1676,4.0,1452849563 +560,1690,4.0,1452849699 +560,1702,4.5,1452850891 +560,1717,4.0,1452850051 +560,1722,3.5,1452848668 +560,1882,4.0,1452850005 +560,1917,4.5,1452848397 +560,2011,5.0,1452849491 +560,2012,5.0,1452849483 +560,2085,3.5,1452850009 +560,2294,4.0,1452852260 +560,2329,4.0,1452852071 +560,2335,3.0,1452850147 +560,2355,4.0,1452849475 +560,2384,3.5,1452850218 +560,2394,4.0,1452850085 +560,2420,3.5,1452849963 +560,2421,3.0,1452850130 +560,2422,3.0,1452850590 +560,2455,4.0,1452851582 +560,2456,3.5,1452851583 +560,2470,4.0,1452850916 +560,2471,3.5,1452850917 +560,2513,4.0,1452851841 +560,2514,3.5,1452851843 +560,2571,3.5,1452849335 +560,2687,4.0,1452850214 +560,2761,4.0,1452849940 +560,2797,5.0,1452849068 +560,2858,4.0,1452848879 +560,2947,4.0,1452849696 +560,2953,4.0,1452848642 +560,2959,5.0,1452848895 +560,2985,3.5,1452849601 +560,2986,3.5,1452850272 +560,2990,4.0,1452850427 +560,3034,3.5,1452850362 +560,3082,4.0,1452848679 +560,3114,4.0,1452849440 +560,3147,5.0,1452849039 +560,3157,3.5,1452850282 +560,3273,4.0,1452850099 +560,3527,4.0,1452852824 +560,3535,4.5,1452851095 +560,3623,4.0,1452848476 +560,3697,4.0,1452850227 +560,3752,3.5,1452849955 +560,3785,4.0,1452849805 +560,3793,3.5,1452852179 +560,3826,4.0,1452850038 +560,3882,3.0,1452850356 +560,3949,3.5,1452849128 +560,4022,5.0,1452849066 +560,4254,3.0,1452850920 +560,116977,3.0,1452852281 +561,1,3.0,1172695347 +561,2,3.0,1172766441 +561,10,3.5,1172696467 +561,32,3.5,1172695179 +561,39,2.5,1172696829 +561,48,3.0,1172735128 +561,62,4.0,1172696487 +561,104,4.0,1172696470 +561,141,4.0,1172734877 +561,150,4.0,1172696363 +561,153,3.0,1172734836 +561,160,2.5,1172766203 +561,163,4.0,1172735075 +561,173,1.0,1172766335 +561,180,4.5,1172696115 +561,208,2.5,1172696710 +561,216,3.0,1172696508 +561,223,5.0,1172696101 +561,231,3.0,1172734849 +561,235,5.0,1172695438 +561,236,3.5,1172735137 +561,260,4.5,1172695175 +561,293,4.0,1172696171 +561,296,4.5,1172694828 +561,317,3.0,1172734981 +561,327,2.5,1172694648 +561,329,3.0,1172695285 +561,355,1.5,1172694579 +561,356,3.5,1172696276 +561,364,4.0,1172696434 +561,367,3.5,1172734851 +561,368,4.0,1172766139 +561,370,3.5,1172735044 +561,377,3.0,1172696473 +561,380,3.0,1172696464 +561,410,3.0,1172734918 +561,466,4.0,1172735067 +561,480,4.0,1172695258 +561,500,3.0,1172734846 +561,527,4.0,1172734820 +561,551,4.0,1172734973 +561,552,4.0,1172735183 +561,586,3.0,1172696521 +561,588,3.5,1172696432 +561,592,4.0,1172696301 +561,593,4.5,1172695985 +561,594,2.0,1172766005 +561,595,3.5,1172696436 +561,596,1.5,1172694531 +561,648,3.5,1172734825 +561,733,4.0,1172695602 +561,780,3.0,1172695279 +561,783,3.0,1172694552 +561,802,3.0,1172735152 +561,832,2.0,1172766452 +561,908,3.5,1172735036 +561,919,3.0,1172734905 +561,923,4.0,1172696205 +561,924,3.5,1172695223 +561,1020,3.5,1172696514 +561,1022,1.0,1172694602 +561,1028,3.5,1172735241 +561,1031,2.0,1172696505 +561,1035,2.5,1172696454 +561,1042,3.5,1172696494 +561,1059,3.5,1172766557 +561,1073,4.0,1172696380 +561,1079,3.5,1172734939 +561,1084,5.0,1172766480 +561,1089,5.0,1172694831 +561,1097,3.0,1172695251 +561,1101,4.0,1172696448 +561,1136,4.5,1172696178 +561,1196,5.0,1172695167 +561,1197,4.5,1172696180 +561,1198,4.0,1172695997 +561,1200,4.0,1172695189 +561,1207,3.5,1172766196 +561,1210,4.5,1172695197 +561,1214,4.5,1172695186 +561,1215,4.0,1172694545 +561,1247,4.5,1172696220 +561,1265,3.5,1172695336 +561,1270,4.0,1172695218 +561,1274,3.5,1172734409 +561,1275,4.0,1172734462 +561,1278,4.5,1172735063 +561,1282,3.0,1172694549 +561,1285,4.0,1172696817 +561,1288,3.0,1172766172 +561,1291,4.5,1172696005 +561,1302,4.5,1172696365 +561,1307,4.0,1172696372 +561,1345,3.0,1172696827 +561,1377,3.0,1172766491 +561,1380,3.0,1172696834 +561,1391,3.0,1172696559 +561,1517,4.0,1172696400 +561,1527,3.0,1172695229 +561,1552,3.5,1172695608 +561,1562,2.5,1172694877 +561,1573,4.0,1172695575 +561,1580,3.0,1172695262 +561,1608,3.0,1172735144 +561,1610,4.0,1172696231 +561,1617,4.0,1172734871 +561,1639,4.0,1172696117 +561,1645,3.5,1172696764 +561,1653,4.0,1172694870 +561,1676,3.5,1172735107 +561,1682,4.5,1172696336 +561,1722,3.0,1172766467 +561,1747,3.5,1172696410 +561,1777,3.5,1172696416 +561,1784,4.0,1172696371 +561,1835,3.5,1172695572 +561,1917,3.0,1172695820 +561,1968,4.0,1172695785 +561,2006,3.0,1172735249 +561,2012,3.5,1172695372 +561,2028,3.5,1172696746 +561,2054,4.0,1172696555 +561,2081,2.5,1172735147 +561,2105,4.5,1172694596 +561,2115,4.0,1172734985 +561,2174,4.0,1172734969 +561,2273,3.5,1172766420 +561,2291,5.0,1172695436 +561,2294,2.5,1172695424 +561,2324,3.5,1172735070 +561,2353,3.5,1172696450 +561,2355,3.5,1172695421 +561,2396,3.5,1172695696 +561,2502,4.0,1172766249 +561,2571,4.5,1172695054 +561,2605,3.0,1172694616 +561,2617,3.0,1172696722 +561,2628,3.5,1172695305 +561,2657,4.0,1172735172 +561,2683,3.5,1172696500 +561,2692,4.0,1172695331 +561,2700,3.0,1172696296 +561,2701,3.5,1172766135 +561,2706,3.0,1172695723 +561,2710,2.0,1172696885 +561,2716,4.5,1172696903 +561,2746,3.5,1172766597 +561,2770,3.0,1172766232 +561,2791,3.0,1172766216 +561,2797,4.0,1172696442 +561,2804,3.0,1172766088 +561,2916,3.0,1172766029 +561,2918,4.0,1172696801 +561,2947,4.0,1172694582 +561,2953,2.5,1172696571 +561,2959,4.5,1172695028 +561,2971,4.0,1172736431 +561,2993,4.0,1172734452 +561,2997,4.0,1172696187 +561,3000,4.5,1172734348 +561,3033,5.0,1172766409 +561,3034,4.5,1172696345 +561,3052,4.0,1172696119 +561,3081,4.0,1172695444 +561,3107,2.0,1172694630 +561,3114,3.0,1172695416 +561,3175,3.0,1172694522 +561,3275,4.5,1172695142 +561,3301,3.0,1172695763 +561,3361,3.5,1172694634 +561,3438,4.5,1172696566 +561,3439,4.5,1172696568 +561,3552,4.0,1172736400 +561,3578,3.5,1172696218 +561,3623,3.0,1172696694 +561,3671,4.5,1172734423 +561,3686,5.0,1173150744 +561,3717,3.0,1172695577 +561,3793,4.0,1172695232 +561,3911,3.5,1172696268 +561,3948,3.0,1172696677 +561,3977,3.0,1172696549 +561,3994,1.5,1172694561 +561,3996,4.5,1172696201 +561,4018,3.5,1172766183 +561,4025,3.0,1172766108 +561,4226,3.0,1172696679 +561,4270,3.0,1172766258 +561,4306,3.5,1172696334 +561,4308,4.0,1172696315 +561,4367,3.5,1172766294 +561,4446,1.0,1172766285 +561,4545,3.5,1172696540 +561,4643,2.5,1172766051 +561,4734,3.0,1172696121 +561,4844,4.5,1172695799 +561,4878,4.5,1172695328 +561,4896,4.0,1172696890 +561,4963,5.0,1172735102 +561,4973,3.5,1172696175 +561,4974,3.0,1172696843 +561,4993,5.0,1172736311 +561,5066,3.0,1172696839 +561,5218,3.0,1172766387 +561,5299,3.0,1172696492 +561,5349,4.0,1172696349 +561,5378,3.0,1172695290 +561,5418,3.5,1172734414 +561,5502,2.0,1172766239 +561,5528,3.5,1172736425 +561,5617,2.5,1172696248 +561,5618,4.0,1172695042 +561,5630,4.0,1172766362 +561,5785,3.0,1172696525 +561,5816,4.0,1172696376 +561,5872,3.0,1172766277 +561,5952,5.0,1172736312 +561,5956,4.0,1172766102 +561,5971,4.0,1172734541 +561,5991,4.5,1172766072 +561,6157,2.5,1172696127 +561,6333,3.5,1172695200 +561,6365,3.0,1172696692 +561,6373,3.5,1172696511 +561,6502,4.0,1172696873 +561,6503,3.0,1172696551 +561,6539,4.5,1172695413 +561,6541,3.5,1172766373 +561,6709,4.0,1172695501 +561,6711,2.0,1172696239 +561,6857,3.5,1172734407 +561,6863,4.0,1172695246 +561,6874,4.5,1172694555 +561,6934,2.5,1172696767 +561,6942,4.0,1172695670 +561,6979,3.0,1172766327 +561,7022,4.5,1172734381 +561,7090,4.0,1172734378 +561,7099,5.0,1172695213 +561,7153,5.0,1172695107 +561,7254,3.0,1172695353 +561,7324,4.0,1172736335 +561,7361,4.0,1172695171 +561,7366,3.5,1172696123 +561,7373,4.0,1172766495 +561,7438,4.5,1172694833 +561,7451,4.0,1172696419 +561,7458,3.5,1172766244 +561,8368,4.0,1172695342 +561,8376,2.0,1172696822 +561,8464,3.5,1172696252 +561,8528,4.0,1172696459 +561,8622,1.0,1172696308 +561,8636,3.5,1172696328 +561,8641,4.0,1172696395 +561,8784,3.5,1172696697 +561,8874,4.0,1172734393 +561,8961,4.5,1172695405 +561,8972,4.0,1172695569 +561,8984,4.0,1172766397 +561,27660,4.0,1172766562 +561,27801,3.5,1172734420 +561,30707,3.0,1172696742 +561,30793,3.5,1172696683 +561,31878,4.0,1172734402 +561,32587,3.5,1172695135 +561,33004,3.5,1172695268 +561,33493,3.5,1172695238 +561,33679,4.0,1172766064 +561,33794,4.5,1172696018 +561,34405,4.5,1172695192 +561,35836,4.5,1172695676 +561,37386,4.0,1172695297 +561,37729,3.5,1172766413 +561,37733,4.5,1172736346 +561,39292,4.0,1172766019 +561,41566,4.0,1172696687 +561,43928,2.5,1172695310 +561,44191,4.0,1172695184 +561,44195,4.0,1172766180 +561,44665,4.5,1172695119 +561,45431,3.5,1172695788 +561,45499,4.0,1172695254 +561,45722,4.5,1172695487 +561,45728,4.5,1172696103 +561,46530,3.5,1172696383 +561,46965,2.5,1172696050 +561,46972,4.0,1172694996 +561,48385,2.0,1172696738 +561,48516,4.0,1172694895 +561,49272,4.5,1172696024 +561,49396,4.0,1172694907 +561,49651,4.0,1172694791 +561,51077,4.0,1172695581 +561,51662,4.5,1173621733 +561,52245,4.0,1177213836 +562,1,4.5,1167426662 +562,5,3.5,1167429218 +562,6,4.0,1167428869 +562,11,4.0,1167428952 +562,16,3.5,1167429084 +562,19,3.0,1167428979 +562,21,4.0,1167428843 +562,32,4.0,1167428738 +562,34,4.0,1167428772 +562,36,4.0,1167428880 +562,39,3.5,1167428851 +562,47,4.5,1167428764 +562,50,5.0,1167428236 +562,95,3.5,1167428859 +562,110,4.0,1167426634 +562,141,4.0,1167428848 +562,150,4.5,1167428713 +562,163,4.0,1167429222 +562,165,3.5,1167428752 +562,180,4.0,1167428442 +562,185,3.5,1167428832 +562,186,3.5,1167429316 +562,208,3.0,1167428828 +562,223,5.0,1167428926 +562,235,4.0,1167429082 +562,253,4.5,1167428824 +562,260,5.0,1167426712 +562,282,3.0,1167429320 +562,288,4.0,1167428886 +562,292,4.0,1167428802 +562,293,4.5,1167428946 +562,296,5.0,1167426694 +562,300,4.0,1167428894 +562,317,3.0,1167429068 +562,318,5.0,1167428239 +562,339,3.5,1167428854 +562,344,3.0,1167428749 +562,353,4.5,1167429104 +562,356,4.0,1167428696 +562,357,4.0,1167428810 +562,364,4.5,1167428432 +562,367,3.0,1167428792 +562,377,4.0,1167428743 +562,380,4.0,1167428721 +562,410,3.5,1167428959 +562,420,3.5,1167429109 +562,457,4.0,1167428707 +562,480,5.0,1167426630 +562,485,3.0,1167429343 +562,500,3.5,1167428780 +562,527,4.0,1167428732 +562,539,4.0,1167428807 +562,541,4.0,1167428281 +562,553,4.0,1167429112 +562,555,4.0,1167429211 +562,586,3.5,1167428873 +562,589,5.0,1167426657 +562,590,4.0,1167428716 +562,592,4.5,1167428526 +562,593,5.0,1167426702 +562,597,4.5,1167428775 +562,608,4.5,1167428740 +562,678,3.5,1167429832 +562,733,4.0,1167428488 +562,736,3.5,1167428767 +562,778,4.0,1167429026 +562,780,4.0,1167426626 +562,784,3.0,1167429166 +562,786,3.5,1167429007 +562,858,4.0,1167428653 +562,1036,4.5,1167428310 +562,1073,4.5,1167428813 +562,1089,5.0,1167428965 +562,1092,4.0,1167429422 +562,1097,4.5,1167428796 +562,1101,4.0,1167429010 +562,1196,5.0,1167428244 +562,1197,5.0,1167428254 +562,1198,5.0,1167428242 +562,1208,4.0,1167429012 +562,1210,5.0,1167426710 +562,1213,4.5,1167428942 +562,1215,5.0,1167428438 +562,1220,3.5,1167429020 +562,1221,4.0,1167428911 +562,1240,4.0,1167428346 +562,1246,4.5,1167429075 +562,1261,4.0,1167428399 +562,1265,4.0,1167428846 +562,1266,4.0,1167429308 +562,1270,3.5,1167426685 +562,1291,5.0,1167428257 +562,1307,4.0,1167428937 +562,1339,3.5,1167429524 +562,1358,3.5,1167429845 +562,1370,3.5,1167429230 +562,1391,3.5,1167429137 +562,1393,4.0,1167428939 +562,1407,4.0,1167428562 +562,1500,4.0,1167429173 +562,1517,5.0,1167426681 +562,1573,3.5,1167429092 +562,1580,4.0,1167426647 +562,1584,4.0,1167428991 +562,1610,4.5,1167428374 +562,1617,4.0,1167428840 +562,1639,4.5,1167429244 +562,1673,4.0,1167429286 +562,1676,4.0,1167429239 +562,1682,3.5,1167429066 +562,1704,4.5,1167428303 +562,1721,4.0,1167426660 +562,1729,4.0,1167429468 +562,1777,4.0,1167429329 +562,1784,3.0,1167428963 +562,1909,4.5,1167429399 +562,1917,3.5,1167426677 +562,1923,4.0,1167426718 +562,2001,4.0,1167429297 +562,2011,3.5,1167429096 +562,2012,3.0,1167429060 +562,2023,3.5,1167429456 +562,2028,5.0,1167428298 +562,2058,4.5,1167429564 +562,2115,4.5,1167428505 +562,2194,4.5,1167429195 +562,2268,4.5,1167429197 +562,2291,4.0,1167429099 +562,2294,4.0,1167429519 +562,2302,4.0,1167429237 +562,2355,4.0,1167429015 +562,2395,3.5,1167429334 +562,2396,4.0,1167428889 +562,2406,4.0,1167429182 +562,2502,4.5,1167429151 +562,2571,5.0,1167426644 +562,2599,4.0,1167429205 +562,2617,3.5,1167429185 +562,2628,5.0,1167426651 +562,2671,4.0,1167429387 +562,2683,4.5,1167428922 +562,2700,4.5,1167429131 +562,2706,4.5,1167428998 +562,2710,3.5,1167429045 +562,2716,5.0,1167428407 +562,2762,3.0,1167426705 +562,2791,4.0,1167429094 +562,2797,4.0,1167429047 +562,2804,5.0,1167429360 +562,2858,4.0,1167426675 +562,2890,4.0,1167429407 +562,2916,4.0,1167429032 +562,2918,4.5,1167429050 +562,2959,4.5,1167428248 +562,2985,4.5,1167429348 +562,2987,3.5,1167428981 +562,2997,4.0,1167428909 +562,3052,4.5,1167429260 +562,3098,3.5,1167428368 +562,3114,4.0,1167428326 +562,3147,4.0,1167429853 +562,3255,4.0,1167429500 +562,3408,3.5,1167429201 +562,3481,4.0,1167427386 +562,3578,4.0,1167426622 +562,3751,4.0,1167427757 +562,3755,3.0,1167429549 +562,3793,5.0,1167426720 +562,3948,4.0,1167427809 +562,3949,3.0,1167427210 +562,3994,3.5,1167429412 +562,3996,4.0,1167426616 +562,4014,4.0,1167427500 +562,4022,3.5,1167427706 +562,4027,4.5,1167427347 +562,4034,4.0,1167427367 +562,4085,4.5,1167428492 +562,4105,4.0,1167428454 +562,4226,4.5,1167427033 +562,4246,4.0,1167427909 +562,4262,4.0,1167428323 +562,4306,4.0,1167426649 +562,4308,3.5,1167429497 +562,4370,2.5,1167429576 +562,4499,4.0,1167428513 +562,4720,3.5,1167427352 +562,4734,4.5,1167428017 +562,4874,2.5,1167428033 +562,4886,4.0,1167427063 +562,4896,4.5,1167427515 +562,4963,5.0,1167427256 +562,4973,4.0,1167427042 +562,4993,5.0,1167426638 +562,5349,5.0,1167426707 +562,5378,5.0,1167427847 +562,5418,4.0,1167428353 +562,5445,4.0,1167426690 +562,5502,3.5,1167427842 +562,5816,4.5,1167427568 +562,5952,5.0,1167426640 +562,5956,4.0,1167427940 +562,5989,4.0,1167427195 +562,5991,4.0,1167427788 +562,6188,4.0,1167427767 +562,6333,4.5,1167427075 +562,6365,4.0,1167427826 +562,6377,4.0,1167427053 +562,6539,4.5,1167426700 +562,6711,3.5,1167427587 +562,6863,4.0,1167427740 +562,6874,3.5,1167427135 +562,6947,4.0,1167427525 +562,7143,3.0,1167427203 +562,7147,4.0,1167427186 +562,7153,5.0,1167426687 +562,7158,3.5,1167427580 +562,7254,3.0,1167427559 +562,7361,3.5,1167427084 +562,7458,4.0,1167427972 +562,8360,4.0,1167427298 +562,8368,4.5,1167427244 +562,8528,4.0,1167427993 +562,8529,4.0,1167427852 +562,8636,4.5,1167427112 +562,8641,4.5,1167428068 +562,8644,4.0,1167427721 +562,8784,3.5,1167427155 +562,8949,3.5,1167427537 +562,8961,4.5,1167427021 +562,8983,4.0,1167427286 +562,27660,3.5,1167427309 +562,30793,4.0,1167427674 +562,31420,3.5,1167428086 +562,32587,4.0,1167427145 +562,33004,4.0,1167428013 +562,33154,2.5,1167427277 +562,33162,4.0,1167427953 +562,33493,5.0,1167427358 +562,33679,4.0,1167428000 +562,33794,4.5,1167427011 +562,34072,4.0,1167427338 +562,34162,4.0,1167427609 +562,34338,3.0,1167428079 +562,35836,4.5,1167427489 +562,40815,4.5,1167427242 +562,40819,4.0,1167427119 +562,41566,4.0,1167427470 +562,41997,3.5,1167427166 +562,44191,4.0,1167427095 +562,45499,4.0,1167427746 +562,45722,4.5,1167427735 +562,49013,1.0,1167426941 +562,49649,2.5,1167426953 +563,111,4.5,1410035958 +563,150,2.5,1380354913 +563,267,3.0,1378589734 +563,293,4.0,1415559572 +563,296,5.0,1378623670 +563,356,4.5,1380229120 +563,364,3.0,1400968161 +563,442,3.5,1400872840 +563,527,3.0,1400967753 +563,541,4.0,1378623698 +563,608,4.0,1400967714 +563,741,4.5,1380301036 +563,750,5.0,1382202174 +563,778,4.5,1403101722 +563,924,5.0,1438026839 +563,1036,4.0,1401210443 +563,1080,4.5,1401210453 +563,1136,4.5,1378623628 +563,1196,3.5,1378623553 +563,1206,4.5,1400967640 +563,1208,4.5,1378623764 +563,1213,5.0,1397077128 +563,1214,3.5,1408297778 +563,1222,5.0,1380229178 +563,1232,4.0,1400968387 +563,1274,3.5,1402915744 +563,1527,4.0,1379438988 +563,1704,4.0,1405772331 +563,2028,4.0,1378623852 +563,2542,4.0,1380228682 +563,2571,4.5,1378623596 +563,2762,4.0,1401012292 +563,2944,4.0,1401210370 +563,2959,5.0,1378623522 +563,3000,4.5,1400968082 +563,3105,4.0,1408538856 +563,3593,2.0,1378589724 +563,3677,2.5,1378590165 +563,4011,4.0,1380300872 +563,4223,4.5,1380354479 +563,4226,3.5,1378623620 +563,4306,5.0,1380354258 +563,4734,4.0,1400872890 +563,4901,3.5,1378589658 +563,4973,2.5,1380301081 +563,5010,4.5,1400967823 +563,5445,4.0,1415559316 +563,5618,4.5,1415559689 +563,5952,3.5,1400967841 +563,6059,3.0,1400873303 +563,6283,4.0,1402998955 +563,6350,4.0,1400872634 +563,7022,4.0,1380353921 +563,7099,4.5,1415559688 +563,7143,4.0,1400967811 +563,8874,3.5,1401012132 +563,8916,2.5,1401012354 +563,27156,5.0,1400872477 +563,27611,4.5,1380229402 +563,27793,1.5,1378591354 +563,31410,3.5,1380228649 +563,31658,4.5,1415559547 +563,32596,4.0,1401012302 +563,33166,4.5,1401012020 +563,33794,4.0,1380302577 +563,36529,3.5,1400882107 +563,38061,4.0,1401012063 +563,44191,4.0,1400968604 +563,44199,4.0,1400967784 +563,44665,4.0,1380302531 +563,48394,4.0,1400968203 +563,48774,3.5,1400968266 +563,51255,4.0,1380302636 +563,51662,3.5,1380354380 +563,53996,3.0,1400873236 +563,54259,4.0,1401303527 +563,57669,4.5,1380354238 +563,58306,3.0,1378590980 +563,58559,4.0,1378623491 +563,59315,4.5,1403101719 +563,59369,3.5,1400967763 +563,60069,4.0,1378623955 +563,60684,2.5,1397077190 +563,61132,4.0,1380228997 +563,62331,4.5,1438373715 +563,68157,4.5,1380354087 +563,68954,4.0,1378623913 +563,69122,4.0,1404158293 +563,70286,4.0,1403260316 +563,70533,4.0,1403260308 +563,71535,4.5,1380354507 +563,72226,4.5,1417295090 +563,72998,3.0,1380354402 +563,73017,4.0,1400967891 +563,74458,4.0,1438374877 +563,77561,3.5,1380354825 +563,79132,4.0,1378623610 +563,79702,4.0,1400968283 +563,80463,3.5,1401012123 +563,80906,4.0,1380354253 +563,84187,4.0,1401051415 +563,88129,4.5,1380353954 +563,88744,4.0,1404158031 +563,88932,1.0,1410035473 +563,89492,4.0,1400968336 +563,89840,3.5,1378591475 +563,91529,4.0,1380354607 +563,92210,5.0,1404364412 +563,92259,4.0,1378623534 +563,92954,3.0,1419798719 +563,93838,4.5,1438026818 +563,94959,4.5,1401012146 +563,95441,3.5,1378590713 +563,95510,3.0,1378590217 +563,95558,3.5,1391161318 +563,96079,4.5,1400968177 +563,96610,4.5,1380354126 +563,96821,4.5,1405772395 +563,97304,4.0,1380354188 +563,97306,5.0,1378591012 +563,97752,3.5,1378590584 +563,97860,4.0,1380315202 +563,97921,3.5,1380354324 +563,97923,4.0,1401210634 +563,97938,3.5,1378590370 +563,98491,4.0,1438374656 +563,99114,4.5,1378623664 +563,100383,4.5,1380389665 +563,101864,2.0,1380228836 +563,103048,3.0,1391161225 +563,104841,3.5,1382201685 +563,104913,4.5,1438374417 +563,104925,4.0,1397077150 +563,105504,4.5,1401012023 +563,105755,1.5,1397076951 +563,105844,3.5,1400873135 +563,106489,4.0,1391161064 +563,106766,4.0,1402246478 +563,106782,4.0,1391160938 +563,106873,3.5,1401121610 +563,106916,4.5,1391161163 +563,107069,4.0,1408298557 +563,107314,4.0,1397076879 +563,108190,1.5,1400872426 +563,108928,2.5,1397077064 +563,108979,5.0,1438374671 +563,109374,3.5,1402856376 +563,109487,5.0,1415559249 +563,109578,3.5,1407336954 +563,109742,4.5,1400872682 +563,110873,5.0,1408743990 +563,111759,4.0,1402214608 +563,112552,4.0,1438374590 +563,112911,3.5,1406562760 +563,115210,4.0,1438375150 +563,115713,3.5,1438376118 +563,116797,5.0,1438373164 +563,122882,4.5,1438375869 +564,1,4.0,974712079 +564,2,4.0,974839862 +564,3,3.0,974838162 +564,5,3.0,974837992 +564,6,1.0,974838752 +564,7,3.0,974837728 +564,10,3.0,974838889 +564,11,3.0,974833372 +564,12,1.0,974709821 +564,13,4.0,974790534 +564,15,1.0,974839652 +564,16,4.0,974841269 +564,17,3.0,974841452 +564,18,2.0,974715602 +564,19,3.0,974838427 +564,21,4.0,974832987 +564,22,5.0,974715698 +564,25,5.0,974712574 +564,30,5.0,974840718 +564,32,4.0,974712401 +564,34,3.0,974711349 +564,35,2.0,974843294 +564,36,5.0,974711403 +564,39,5.0,974714239 +564,41,3.0,974713477 +564,42,3.0,974839143 +564,43,4.0,974715515 +564,44,2.0,974839306 +564,45,5.0,974713644 +564,46,5.0,974843382 +564,47,4.0,974844454 +564,48,1.0,974839955 +564,49,5.0,974712958 +564,50,5.0,974710590 +564,52,5.0,974714756 +564,55,4.0,974842510 +564,57,4.0,974842470 +564,60,1.0,974839888 +564,61,3.0,974843382 +564,62,1.0,974842721 +564,66,1.0,974844872 +564,68,4.0,974713920 +564,70,2.0,974708918 +564,71,2.0,974839391 +564,73,2.0,974841398 +564,74,3.0,974842967 +564,76,4.0,974715792 +564,77,4.0,974715861 +564,78,4.0,974842547 +564,81,3.0,974716258 +564,85,4.0,974842470 +564,86,4.0,974843206 +564,87,1.0,974838063 +564,88,2.0,974838134 +564,89,3.0,974715602 +564,92,5.0,974842216 +564,93,2.0,974838350 +564,94,4.0,974842510 +564,95,3.0,974839108 +564,99,4.0,974712184 +564,102,4.0,974838601 +564,103,5.0,974844826 +564,104,2.0,974833057 +564,105,4.0,974716299 +564,107,4.0,974837418 +564,108,4.0,974713920 +564,110,1.0,974711555 +564,111,3.0,974840746 +564,112,3.0,974714526 +564,113,4.0,974841992 +564,116,5.0,974714920 +564,118,4.0,974838315 +564,121,4.0,974832475 +564,122,4.0,974837051 +564,125,5.0,974832624 +564,126,1.0,974839930 +564,131,2.0,974842775 +564,132,4.0,974844767 +564,137,1.0,974840424 +564,141,4.0,974832931 +564,145,2.0,974838971 +564,147,2.0,974842510 +564,149,5.0,974842655 +564,150,3.0,974712574 +564,151,5.0,974713031 +564,152,4.0,974712704 +564,153,3.0,974838189 +564,155,2.0,974842015 +564,156,5.0,974833716 +564,157,3.0,974837992 +564,158,3.0,974839862 +564,160,1.0,974839511 +564,161,4.0,974714878 +564,162,5.0,974712107 +564,165,4.0,974839108 +564,166,4.0,974838288 +564,169,1.0,974842687 +564,170,4.0,974839269 +564,171,4.0,974714778 +564,172,1.0,974839453 +564,173,4.0,974839620 +564,174,1.0,974838063 +564,175,1.0,974841802 +564,176,4.0,974832646 +564,177,2.0,974709466 +564,180,4.0,974713614 +564,181,1.0,974839680 +564,183,5.0,974715995 +564,184,5.0,974715756 +564,185,4.0,974844826 +564,186,3.0,974838315 +564,188,5.0,974709135 +564,189,4.0,974838288 +564,193,5.0,974843549 +564,194,4.0,974714337 +564,196,4.0,974709821 +564,198,4.0,974715454 +564,202,1.0,974843463 +564,203,4.0,974838026 +564,205,3.0,974716383 +564,206,5.0,974840462 +564,207,3.0,974842775 +564,208,1.0,974839481 +564,211,3.0,974715515 +564,216,1.0,974791643 +564,217,3.0,974842918 +564,218,3.0,974837728 +564,219,4.0,974843485 +564,220,2.0,974709519 +564,222,4.0,974716363 +564,223,5.0,974710675 +564,225,4.0,974843009 +564,229,5.0,974715293 +564,230,5.0,974715996 +564,231,5.0,974715698 +564,233,5.0,974842687 +564,234,4.0,974837728 +564,235,5.0,974711243 +564,236,3.0,974837325 +564,237,2.0,974837697 +564,239,5.0,974790987 +564,240,5.0,974844797 +564,241,5.0,974840300 +564,244,3.0,974790987 +564,247,5.0,974711049 +564,248,5.0,974716363 +564,250,1.0,974837788 +564,252,3.0,974837728 +564,253,5.0,974708959 +564,255,2.0,974838456 +564,256,4.0,974838097 +564,257,2.0,974843964 +564,260,2.0,974710704 +564,261,4.0,974842510 +564,265,1.0,974844006 +564,266,2.0,974842687 +564,267,2.0,974838218 +564,271,5.0,974843064 +564,273,4.0,974709734 +564,277,3.0,974843527 +564,278,5.0,974837231 +564,282,4.0,974843182 +564,287,4.0,974837615 +564,288,3.0,974839143 +564,291,2.0,974844797 +564,292,1.0,974839204 +564,295,4.0,974837543 +564,296,5.0,974711078 +564,299,5.0,974841420 +564,302,4.0,974841654 +564,303,3.0,974839108 +564,304,2.0,974838641 +564,312,5.0,974837788 +564,313,1.0,974839888 +564,314,2.0,974711555 +564,315,1.0,974839511 +564,317,3.0,974837509 +564,319,5.0,974713563 +564,320,3.0,974844545 +564,324,3.0,974837128 +564,325,3.0,974838134 +564,326,5.0,974710334 +564,327,5.0,974838315 +564,328,4.0,974709294 +564,329,3.0,974839108 +564,330,4.0,974709577 +564,332,4.0,974709734 +564,333,3.0,974715727 +564,335,3.0,974714599 +564,337,3.0,974841162 +564,338,2.0,974844797 +564,339,4.0,974837080 +564,341,5.0,974712958 +564,342,5.0,974833372 +564,344,3.0,974716258 +564,345,4.0,974711197 +564,347,4.0,974714264 +564,348,4.0,974712445 +564,349,4.0,974716125 +564,350,5.0,974842721 +564,351,2.0,974715952 +564,352,3.0,974836927 +564,353,4.0,974715003 +564,355,4.0,974838189 +564,356,3.0,974713872 +564,357,3.0,974835183 +564,360,1.0,974838491 +564,361,3.0,974843009 +564,362,3.0,974715825 +564,363,5.0,974840424 +564,364,4.0,974790436 +564,365,3.0,974843009 +564,366,5.0,974716031 +564,367,4.0,974715454 +564,368,4.0,974833752 +564,369,3.0,974842655 +564,371,3.0,974837418 +564,372,4.0,974715792 +564,373,5.0,974713644 +564,374,1.0,974838134 +564,375,4.0,974843091 +564,376,4.0,974708506 +564,377,2.0,974714838 +564,378,1.0,974838218 +564,379,4.0,974839391 +564,380,5.0,974715727 +564,381,4.0,974841601 +564,382,2.0,974842838 +564,384,5.0,974839204 +564,387,4.0,974716383 +564,388,4.0,974713786 +564,390,4.0,974714838 +564,391,3.0,974715224 +564,392,2.0,974711164 +564,405,1.0,974839652 +564,407,4.0,974709294 +564,410,5.0,974715792 +564,413,4.0,974837418 +564,415,3.0,974837959 +564,416,5.0,974845025 +564,417,3.0,974835342 +564,419,2.0,974838491 +564,420,3.0,974838097 +564,421,5.0,974840300 +564,422,5.0,974844711 +564,423,5.0,974839235 +564,425,4.0,974841162 +564,426,5.0,974709423 +564,427,2.0,974843964 +564,429,3.0,974837753 +564,431,2.0,974714165 +564,432,3.0,974838350 +564,434,4.0,974839204 +564,435,2.0,974837960 +564,436,1.0,974843041 +564,437,3.0,974838189 +564,440,2.0,974833104 +564,441,3.0,974714756 +564,442,3.0,974839143 +564,443,2.0,974840555 +564,444,2.0,974837450 +564,445,3.0,974715861 +564,446,4.0,974844064 +564,447,4.0,974837361 +564,448,4.0,974710392 +564,450,3.0,974837361 +564,451,4.0,974716220 +564,452,4.0,974714878 +564,454,4.0,974715727 +564,455,1.0,974839955 +564,457,4.0,974713196 +564,461,4.0,974842308 +564,465,3.0,974839307 +564,468,2.0,974837201 +564,469,3.0,974842605 +564,472,3.0,974843382 +564,473,1.0,974837960 +564,475,2.0,974712704 +564,477,4.0,974713310 +564,480,5.0,974838889 +564,481,4.0,974842216 +564,485,4.0,974837886 +564,488,3.0,974842887 +564,489,3.0,974838026 +564,490,3.0,974844604 +564,491,3.0,974842887 +564,492,5.0,974833104 +564,493,1.0,974715293 +564,495,4.0,974711674 +564,497,3.0,974832897 +564,500,5.0,974716189 +564,501,5.0,974713196 +564,502,1.0,974839652 +564,505,3.0,974838491 +564,506,3.0,974842721 +564,507,4.0,974838921 +564,508,3.0,974713872 +564,509,5.0,974715488 +564,512,3.0,974709378 +564,513,4.0,974832815 +564,514,5.0,974832897 +564,517,2.0,974843964 +564,518,2.0,974837728 +564,519,2.0,974844889 +564,521,5.0,974844684 +564,523,5.0,974716403 +564,526,1.0,974843320 +564,527,4.0,974711125 +564,529,5.0,974712989 +564,532,5.0,974709177 +564,533,4.0,974839071 +564,534,4.0,974715348 +564,535,4.0,974712294 +564,536,1.0,974842369 +564,537,4.0,974842547 +564,538,5.0,974841338 +564,539,5.0,974716220 +564,540,4.0,974844847 +564,541,4.0,974711049 +564,542,4.0,974837886 +564,543,4.0,974715952 +564,544,1.0,974839453 +564,547,3.0,974839511 +564,548,2.0,974839235 +564,550,5.0,974837661 +564,551,5.0,974790116 +564,552,4.0,974837325 +564,553,1.0,974844985 +564,555,5.0,974838921 +564,556,4.0,974714208 +564,558,4.0,974790913 +564,561,3.0,974712445 +564,562,3.0,974713136 +564,565,4.0,974715792 +564,567,5.0,974843463 +564,571,4.0,974714165 +564,574,3.0,974715454 +564,575,2.0,974838259 +564,577,1.0,974839862 +564,580,4.0,974841420 +564,581,5.0,974711282 +564,585,4.0,974715488 +564,586,1.0,974837450 +564,587,1.0,974716318 +564,588,4.0,974713412 +564,589,5.0,974838752 +564,590,2.0,974715570 +564,592,4.0,974712727 +564,593,5.0,974711049 +564,594,4.0,974712361 +564,595,4.0,974713031 +564,596,4.0,974790392 +564,597,4.0,974837167 +564,606,4.0,974709466 +564,608,5.0,974840657 +564,610,4.0,974709336 +564,611,1.0,974709917 +564,612,4.0,974838456 +564,614,2.0,974842721 +564,616,4.0,974715003 +564,621,5.0,974712896 +564,627,4.0,974713375 +564,628,5.0,974841904 +564,631,2.0,974790987 +564,633,4.0,974833716 +564,637,1.0,974838427 +564,639,4.0,974837231 +564,640,4.0,974843463 +564,648,2.0,974839071 +564,653,4.0,974839108 +564,661,4.0,974790436 +564,662,1.0,974844627 +564,663,3.0,974714461 +564,664,4.0,974711403 +564,670,1.0,974840633 +564,671,4.0,974713166 +564,673,1.0,974838259 +564,674,4.0,974716031 +564,678,4.0,974710675 +564,680,4.0,974715570 +564,691,4.0,974837853 +564,695,4.0,974791183 +564,697,2.0,974842918 +564,705,2.0,974715602 +564,707,5.0,974843722 +564,708,4.0,974715756 +564,709,3.0,974715425 +564,719,2.0,974837361 +564,720,4.0,974790351 +564,722,4.0,974710704 +564,724,5.0,974709091 +564,728,5.0,974837167 +564,731,2.0,974843945 +564,733,4.0,974838889 +564,735,4.0,974708665 +564,736,5.0,974839235 +564,737,2.0,974839511 +564,741,4.0,974790392 +564,743,3.0,974838218 +564,745,4.0,974790351 +564,748,4.0,974839071 +564,750,5.0,974710675 +564,753,4.0,974842510 +564,754,4.0,974839911 +564,765,2.0,974837886 +564,766,5.0,974842308 +564,775,2.0,974708813 +564,778,4.0,974711893 +564,779,3.0,974843613 +564,780,2.0,974839108 +564,782,4.0,974844847 +564,783,3.0,974790436 +564,784,3.0,974837018 +564,785,4.0,974833434 +564,786,4.0,974839143 +564,788,4.0,974843646 +564,798,4.0,974839307 +564,799,4.0,974709091 +564,800,5.0,974843874 +564,801,4.0,974837450 +564,802,4.0,974716125 +564,804,4.0,974715792 +564,806,3.0,974842369 +564,810,1.0,974838491 +564,818,4.0,974838390 +564,830,4.0,974837418 +564,831,4.0,974841398 +564,835,2.0,974843253 +564,836,2.0,974844826 +564,838,3.0,974715861 +564,840,4.0,974837992 +564,841,4.0,974708761 +564,842,3.0,974709519 +564,846,4.0,974714461 +564,849,5.0,974839365 +564,851,3.0,974842216 +564,858,2.0,974708446 +564,861,3.0,974714410 +564,864,3.0,974834896 +564,866,5.0,974712609 +564,875,4.0,974840798 +564,879,5.0,974709644 +564,880,4.0,974844847 +564,881,2.0,974837853 +564,882,2.0,974843182 +564,888,3.0,974790987 +564,891,3.0,974709577 +564,892,3.0,974833434 +564,893,5.0,974715379 +564,896,4.0,974712924 +564,901,4.0,974714165 +564,903,5.0,974711439 +564,904,5.0,974710779 +564,905,4.0,974710422 +564,908,5.0,974710848 +564,910,5.0,974710675 +564,912,4.0,974711125 +564,914,3.0,974713988 +564,919,3.0,974711517 +564,920,5.0,974712545 +564,921,5.0,974832595 +564,922,5.0,974710675 +564,923,3.0,974840633 +564,924,3.0,974840746 +564,926,5.0,974711317 +564,928,4.0,974711756 +564,930,4.0,974711481 +564,931,4.0,974713279 +564,934,4.0,974715003 +564,942,4.0,974843691 +564,949,3.0,974841162 +564,953,5.0,974712478 +564,955,5.0,974832744 +564,968,5.0,974708813 +564,971,3.0,974841162 +564,980,1.0,974839143 +564,988,5.0,974837661 +564,991,3.0,974842279 +564,997,2.0,974841370 +564,998,3.0,974839175 +564,1003,4.0,974842547 +564,1004,2.0,974839620 +564,1005,1.0,974839862 +564,1007,4.0,974837418 +564,1009,3.0,974716258 +564,1010,4.0,974836927 +564,1011,4.0,974837584 +564,1012,5.0,974713310 +564,1013,3.0,974716156 +564,1014,3.0,974837293 +564,1015,3.0,974716091 +564,1016,4.0,974837386 +564,1017,4.0,974839803 +564,1018,4.0,974837231 +564,1019,4.0,974714756 +564,1020,3.0,974837201 +564,1021,1.0,974838427 +564,1022,4.0,974790392 +564,1023,4.0,974713920 +564,1024,4.0,974790534 +564,1025,4.0,974714374 +564,1028,4.0,974833372 +564,1029,5.0,974790392 +564,1030,4.0,974790762 +564,1031,5.0,974839830 +564,1032,4.0,974790436 +564,1033,4.0,974790534 +564,1034,5.0,974711403 +564,1035,3.0,974843786 +564,1036,4.0,974713031 +564,1037,4.0,974839204 +564,1041,3.0,974711517 +564,1043,2.0,974843527 +564,1046,4.0,974712668 +564,1047,5.0,974839071 +564,1049,3.0,974716189 +564,1051,3.0,974841318 +564,1053,2.0,974715825 +564,1055,1.0,974844872 +564,1057,4.0,974837418 +564,1060,3.0,974711674 +564,1063,4.0,974843527 +564,1064,2.0,974790534 +564,1073,5.0,974712868 +564,1077,5.0,974712635 +564,1078,3.0,974713673 +564,1079,5.0,974711197 +564,1080,5.0,974832624 +564,1081,5.0,974714807 +564,1082,4.0,974713252 +564,1084,3.0,974712044 +564,1086,5.0,974712763 +564,1087,4.0,974843823 +564,1088,2.0,974844186 +564,1089,5.0,974710822 +564,1091,4.0,974837293 +564,1092,5.0,974843945 +564,1093,4.0,974715348 +564,1094,5.0,974712896 +564,1095,3.0,974840851 +564,1096,5.0,974712184 +564,1097,4.0,974712668 +564,1100,1.0,974839511 +564,1104,4.0,974840851 +564,1111,3.0,974712545 +564,1120,5.0,974713988 +564,1125,5.0,974832931 +564,1126,3.0,974837992 +564,1127,4.0,974713342 +564,1128,5.0,974709044 +564,1129,4.0,974713673 +564,1130,5.0,974708857 +564,1135,5.0,974837450 +564,1136,4.0,974710521 +564,1148,4.0,974790351 +564,1151,4.0,974790351 +564,1161,4.0,974712924 +564,1168,3.0,974709577 +564,1171,4.0,974712609 +564,1173,2.0,974714165 +564,1175,5.0,974711197 +564,1177,5.0,974842918 +564,1179,5.0,974841137 +564,1183,3.0,974714291 +564,1185,3.0,974710334 +564,1186,5.0,974712764 +564,1187,5.0,974712107 +564,1188,3.0,974832570 +564,1189,4.0,974710779 +564,1190,4.0,974714685 +564,1191,5.0,974840462 +564,1192,5.0,974840401 +564,1193,5.0,974710779 +564,1194,4.0,974836927 +564,1196,5.0,974711078 +564,1197,4.0,974832595 +564,1198,5.0,974710616 +564,1199,4.0,974711349 +564,1200,4.0,974711756 +564,1206,4.0,974711555 +564,1207,4.0,974711125 +564,1208,4.0,974708506 +564,1210,3.0,974712401 +564,1211,3.0,974715666 +564,1213,3.0,974840684 +564,1214,5.0,974708713 +564,1215,3.0,974708996 +564,1219,5.0,974708713 +564,1220,4.0,974835183 +564,1221,2.0,974710496 +564,1222,4.0,974838704 +564,1223,4.0,974832646 +564,1225,3.0,974711164 +564,1228,5.0,974711197 +564,1230,5.0,974711439 +564,1231,2.0,974711756 +564,1233,4.0,974711555 +564,1234,5.0,974712016 +564,1235,5.0,974711243 +564,1236,5.0,974716189 +564,1237,4.0,974710455 +564,1238,3.0,974711318 +564,1240,5.0,974712223 +564,1243,3.0,974832679 +564,1244,5.0,974712401 +564,1246,3.0,974712401 +564,1247,4.0,974840798 +564,1248,4.0,974843691 +564,1249,4.0,974711517 +564,1251,4.0,974710590 +564,1252,5.0,974843691 +564,1255,4.0,974708918 +564,1256,4.0,974711893 +564,1257,3.0,974713920 +564,1258,5.0,974708713 +564,1259,5.0,974712223 +564,1260,4.0,974710849 +564,1261,4.0,974790116 +564,1263,4.0,974713166 +564,1264,4.0,974711318 +564,1266,5.0,974844953 +564,1268,4.0,974714374 +564,1270,3.0,974832715 +564,1271,5.0,974713786 +564,1272,4.0,974712401 +564,1273,2.0,974713707 +564,1274,5.0,974712478 +564,1275,1.0,974838752 +564,1278,5.0,974708761 +564,1279,5.0,974715602 +564,1280,4.0,974712727 +564,1282,4.0,974790392 +564,1284,4.0,974710822 +564,1285,5.0,974712609 +564,1286,4.0,974842576 +564,1288,4.0,974711481 +564,1289,4.0,974840424 +564,1290,4.0,974842605 +564,1291,4.0,974838725 +564,1292,5.0,974711644 +564,1293,4.0,974712668 +564,1295,1.0,974715698 +564,1297,4.0,974833015 +564,1298,4.0,974713786 +564,1299,5.0,974711580 +564,1300,4.0,974711756 +564,1301,4.0,974713252 +564,1302,5.0,974714731 +564,1304,5.0,974834981 +564,1305,5.0,974841318 +564,1306,3.0,974715639 +564,1312,5.0,974841726 +564,1320,4.0,974709423 +564,1321,5.0,974708918 +564,1322,3.0,974710228 +564,1323,3.0,974710228 +564,1325,1.0,974710177 +564,1326,5.0,974710177 +564,1329,3.0,974709135 +564,1330,4.0,974709044 +564,1331,3.0,974709378 +564,1332,5.0,974709177 +564,1333,5.0,974708761 +564,1334,4.0,974716125 +564,1335,4.0,974710127 +564,1336,4.0,974709779 +564,1337,3.0,974709044 +564,1339,3.0,974709044 +564,1341,5.0,974709423 +564,1342,5.0,974709177 +564,1343,4.0,974844528 +564,1345,5.0,974708813 +564,1347,4.0,974708857 +564,1348,5.0,974708665 +564,1349,4.0,974709972 +564,1350,3.0,974708813 +564,1351,4.0,974713512 +564,1352,3.0,974844684 +564,1353,5.0,974838427 +564,1354,5.0,974713412 +564,1355,1.0,974844684 +564,1356,4.0,974714461 +564,1357,3.0,974712016 +564,1358,3.0,974840851 +564,1361,5.0,974791060 +564,1366,4.0,974715318 +564,1367,3.0,974837509 +564,1369,2.0,974844566 +564,1370,4.0,974714731 +564,1371,4.0,974839269 +564,1372,4.0,974714599 +564,1373,3.0,974839453 +564,1374,5.0,974714563 +564,1375,4.0,974715996 +564,1376,4.0,974714165 +564,1377,4.0,974838971 +564,1378,1.0,974838999 +564,1379,1.0,974837931 +564,1380,4.0,974836231 +564,1381,4.0,974838512 +564,1387,5.0,974708761 +564,1388,4.0,974709779 +564,1389,3.0,974710177 +564,1390,4.0,974837931 +564,1391,4.0,974837231 +564,1392,5.0,974832766 +564,1394,4.0,974711243 +564,1396,4.0,974713477 +564,1399,3.0,974715996 +564,1405,4.0,974716363 +564,1406,4.0,974840609 +564,1407,4.0,974708857 +564,1408,3.0,974713786 +564,1409,3.0,974844218 +564,1410,3.0,974838288 +564,1411,4.0,974711783 +564,1414,4.0,974713512 +564,1415,4.0,974710334 +564,1416,3.0,974843041 +564,1419,4.0,974711845 +564,1425,3.0,974716220 +564,1438,1.0,974839481 +564,1442,2.0,974840657 +564,1445,1.0,974838427 +564,1458,3.0,974843990 +564,1459,2.0,974843945 +564,1460,4.0,974837167 +564,1461,3.0,974838063 +564,1463,5.0,974837293 +564,1464,5.0,974713614 +564,1465,4.0,974842216 +564,1466,4.0,974841269 +564,1474,2.0,974838288 +564,1475,4.0,974844342 +564,1476,4.0,974833057 +564,1479,3.0,974839391 +564,1480,5.0,974713920 +564,1482,3.0,974713375 +564,1483,5.0,974843294 +564,1485,2.0,974715224 +564,1487,3.0,974842401 +564,1488,2.0,974838921 +564,1493,4.0,974844094 +564,1495,1.0,974839652 +564,1498,3.0,974842838 +564,1499,2.0,974839341 +564,1500,5.0,974832744 +564,1503,2.0,974838390 +564,1504,4.0,974842887 +564,1508,2.0,974842401 +564,1513,5.0,974837509 +564,1515,3.0,974842948 +564,1516,5.0,974715184 +564,1517,2.0,974832744 +564,1518,4.0,974714563 +564,1526,3.0,974837853 +564,1527,5.0,974838799 +564,1529,4.0,974843182 +564,1531,5.0,974843382 +564,1535,4.0,974712838 +564,1541,4.0,974844238 +564,1543,5.0,974841778 +564,1544,2.0,974839365 +564,1546,1.0,974712764 +564,1549,2.0,974715756 +564,1550,3.0,974838259 +564,1552,4.0,974838971 +564,1554,5.0,974840825 +564,1562,3.0,974839551 +564,1566,3.0,974715861 +564,1569,5.0,974716032 +564,1572,3.0,974842216 +564,1573,4.0,974715379 +564,1580,4.0,974714491 +564,1581,4.0,974838545 +564,1582,3.0,974840300 +564,1583,1.0,974840300 +564,1587,4.0,974716060 +564,1588,4.0,974837615 +564,1590,5.0,974839620 +564,1591,3.0,974839422 +564,1592,1.0,974837992 +564,1595,1.0,974843382 +564,1597,1.0,974844164 +564,1598,3.0,974842948 +564,1600,2.0,974844295 +564,1602,1.0,974715293 +564,1603,4.0,974844684 +564,1605,1.0,974844295 +564,1606,3.0,974839620 +564,1608,2.0,974839071 +564,1610,4.0,974838833 +564,1611,4.0,974842443 +564,1612,4.0,974833716 +564,1614,5.0,974835622 +564,1615,5.0,974715488 +564,1616,3.0,974839108 +564,1617,5.0,974711001 +564,1619,3.0,974715003 +564,1620,3.0,974715293 +564,1623,2.0,974709779 +564,1625,4.0,974713412 +564,1627,2.0,974715318 +564,1629,5.0,974835760 +564,1633,3.0,974713136 +564,1635,4.0,974711197 +564,1639,5.0,974713066 +564,1640,1.0,974791150 +564,1641,5.0,974832795 +564,1642,4.0,974715897 +564,1643,4.0,974841942 +564,1644,4.0,974709821 +564,1645,4.0,974709177 +564,1648,4.0,974833372 +564,1649,5.0,974711049 +564,1653,2.0,974714685 +564,1655,5.0,974709336 +564,1657,3.0,974716125 +564,1661,3.0,974844649 +564,1663,5.0,974832897 +564,1667,3.0,974715515 +564,1668,1.0,974843041 +564,1673,4.0,974841212 +564,1674,4.0,974841117 +564,1676,1.0,974838971 +564,1678,5.0,974713583 +564,1681,2.0,974839236 +564,1682,3.0,974712184 +564,1688,4.0,974790534 +564,1690,4.0,974709378 +564,1693,2.0,974842308 +564,1696,2.0,974841758 +564,1699,3.0,974840633 +564,1701,5.0,974837361 +564,1702,2.0,974838390 +564,1703,3.0,974837931 +564,1704,2.0,974841137 +564,1707,1.0,974838512 +564,1711,5.0,974715488 +564,1713,4.0,974837260 +564,1715,3.0,974713786 +564,1717,4.0,974716220 +564,1719,3.0,974713443 +564,1721,4.0,974715602 +564,1722,4.0,974715454 +564,1726,1.0,974843527 +564,1728,4.0,974842967 +564,1729,3.0,974712798 +564,1730,4.0,974711517 +564,1731,1.0,974838456 +564,1732,5.0,974832864 +564,1746,1.0,974837260 +564,1747,3.0,974714563 +564,1748,4.0,974712821 +564,1753,3.0,974715727 +564,1754,5.0,974715756 +564,1762,3.0,974708506 +564,1771,5.0,974709378 +564,1772,3.0,974838390 +564,1777,4.0,974715103 +564,1779,4.0,974844767 +564,1783,1.0,974843708 +564,1784,4.0,974714491 +564,1791,4.0,974842775 +564,1794,3.0,974833400 +564,1798,2.0,974844767 +564,1801,1.0,974839341 +564,1805,5.0,974714026 +564,1812,3.0,974832548 +564,1816,3.0,974837615 +564,1822,3.0,974837788 +564,1831,1.0,974839365 +564,1833,4.0,974839108 +564,1834,2.0,974712361 +564,1837,2.0,974838545 +564,1841,3.0,974842443 +564,1844,4.0,974712924 +564,1845,4.0,974713644 +564,1848,1.0,974839862 +564,1855,2.0,974838390 +564,1856,2.0,974840462 +564,1863,1.0,974838134 +564,1865,3.0,974712361 +564,1873,3.0,974713707 +564,1875,5.0,974832931 +564,1876,3.0,974843253 +564,1881,4.0,974790913 +564,1882,2.0,974839453 +564,1883,4.0,974713066 +564,1884,3.0,974716156 +564,1885,5.0,974832987 +564,1888,3.0,974836101 +564,1889,2.0,974844473 +564,1891,2.0,974710228 +564,1892,3.0,974716032 +564,1894,3.0,974838063 +564,1895,2.0,974833642 +564,1897,3.0,974715224 +564,1904,5.0,974714061 +564,1907,3.0,974715103 +564,1911,4.0,974837080 +564,1912,5.0,974712016 +564,1914,4.0,974712294 +564,1916,2.0,974716403 +564,1917,1.0,974839341 +564,1918,3.0,974716363 +564,1920,5.0,974790762 +564,1921,4.0,974712079 +564,1923,4.0,974832679 +564,1924,3.0,974709294 +564,1947,4.0,974712868 +564,1952,4.0,974712223 +564,1953,4.0,974838704 +564,1954,4.0,974838773 +564,1956,5.0,974714599 +564,1957,1.0,974841137 +564,1958,4.0,974715897 +564,1959,5.0,974844218 +564,1961,3.0,974712635 +564,1962,4.0,974713707 +564,1963,4.0,974832624 +564,1965,3.0,974714208 +564,1967,3.0,974714208 +564,1968,4.0,974711783 +564,1969,4.0,974709734 +564,1970,3.0,974709577 +564,1971,2.0,974709779 +564,1972,4.0,974710019 +564,1973,2.0,974709294 +564,1974,4.0,974709091 +564,1975,3.0,974709466 +564,1976,4.0,974709821 +564,1977,3.0,974709644 +564,1978,4.0,974709972 +564,1979,3.0,974710019 +564,1980,3.0,974710019 +564,1981,3.0,974710071 +564,1982,5.0,974708813 +564,1983,5.0,974709378 +564,1984,4.0,974710177 +564,1985,4.0,974709779 +564,1986,4.0,974709917 +564,1987,1.0,974709577 +564,1988,3.0,974709821 +564,1989,2.0,974710127 +564,1990,3.0,974710071 +564,1991,5.0,974709336 +564,1993,3.0,974710071 +564,1994,5.0,974708918 +564,1995,3.0,974709519 +564,1996,1.0,974710177 +564,1997,4.0,974708761 +564,1998,4.0,974710228 +564,1999,2.0,974709245 +564,2000,3.0,974712635 +564,2001,2.0,974714374 +564,2002,2.0,974837051 +564,2003,4.0,974708959 +564,2004,3.0,974709336 +564,2005,4.0,974839778 +564,2009,4.0,974714807 +564,2011,3.0,974833400 +564,2012,3.0,974837051 +564,2013,4.0,974839039 +564,2014,4.0,974839862 +564,2015,4.0,974837293 +564,2016,3.0,974838259 +564,2018,5.0,974711555 +564,2019,4.0,974838704 +564,2020,5.0,974840876 +564,2021,3.0,974715258 +564,2023,3.0,974716258 +564,2024,5.0,974841529 +564,2026,2.0,974709577 +564,2027,2.0,974837697 +564,2028,5.0,974711893 +564,2029,4.0,974837697 +564,2031,3.0,974838218 +564,2033,3.0,974790534 +564,2037,4.0,974837992 +564,2038,4.0,974837584 +564,2040,3.0,974837260 +564,2041,4.0,974838350 +564,2042,1.0,974837931 +564,2043,4.0,974843646 +564,2044,2.0,974837201 +564,2047,4.0,974839862 +564,2048,4.0,974790436 +564,2050,4.0,974838259 +564,2051,4.0,974838134 +564,2052,4.0,974837450 +564,2053,3.0,974838189 +564,2054,4.0,974837260 +564,2055,4.0,974838427 +564,2059,1.0,974839862 +564,2060,4.0,974837960 +564,2064,4.0,974832715 +564,2068,3.0,974842443 +564,2069,3.0,974842055 +564,2070,4.0,974712868 +564,2071,1.0,974841293 +564,2072,3.0,974837080 +564,2076,4.0,974711893 +564,2077,4.0,974713342 +564,2078,3.0,974712924 +564,2080,4.0,974713673 +564,2081,5.0,974713988 +564,2082,1.0,974837509 +564,2083,4.0,974839803 +564,2084,1.0,974843838 +564,2085,5.0,974790436 +564,2087,4.0,974714337 +564,2088,3.0,974843823 +564,2089,4.0,974715293 +564,2090,4.0,974790534 +564,2091,4.0,974839977 +564,2092,3.0,974790987 +564,2093,5.0,974715038 +564,2095,4.0,974837543 +564,2096,4.0,974713739 +564,2097,4.0,974715515 +564,2098,3.0,974837584 +564,2099,4.0,974714026 +564,2100,4.0,974714644 +564,2104,3.0,974841370 +564,2105,4.0,974716363 +564,2106,2.0,974843416 +564,2107,5.0,974710019 +564,2108,5.0,974714526 +564,2109,5.0,974715379 +564,2110,4.0,974714618 +564,2111,5.0,974836980 +564,2113,4.0,974709860 +564,2114,3.0,974715698 +564,2115,4.0,974838833 +564,2116,4.0,974715861 +564,2117,4.0,974841529 +564,2118,4.0,974708857 +564,2119,4.0,974710177 +564,2120,4.0,974709577 +564,2121,4.0,974709644 +564,2122,4.0,974709821 +564,2123,4.0,974790762 +564,2124,4.0,974713988 +564,2125,4.0,974714644 +564,2126,5.0,974839365 +564,2130,5.0,974712446 +564,2131,5.0,974841452 +564,2132,5.0,974713166 +564,2133,4.0,974837167 +564,2134,4.0,974836897 +564,2135,3.0,974843801 +564,2136,4.0,974716091 +564,2137,5.0,974713988 +564,2138,5.0,974790351 +564,2139,5.0,974712545 +564,2140,4.0,974713872 +564,2141,4.0,974790534 +564,2142,4.0,974837661 +564,2143,4.0,974843646 +564,2144,5.0,974714461 +564,2145,4.0,974715952 +564,2146,4.0,974843253 +564,2148,4.0,974709423 +564,2149,1.0,974709860 +564,2150,3.0,974713988 +564,2151,2.0,974836897 +564,2152,1.0,974837931 +564,2153,1.0,974839652 +564,2154,4.0,974843416 +564,2159,2.0,974708713 +564,2160,5.0,974708857 +564,2161,4.0,974716299 +564,2162,2.0,974839977 +564,2163,3.0,974837615 +564,2165,5.0,974715515 +564,2166,5.0,974841529 +564,2167,4.0,974709044 +564,2170,3.0,974839269 +564,2174,4.0,974712446 +564,2176,4.0,974712401 +564,2177,5.0,974716318 +564,2178,2.0,974844528 +564,2181,3.0,974715425 +564,2184,4.0,974843920 +564,2186,3.0,974711001 +564,2187,4.0,974715996 +564,2188,3.0,974843416 +564,2189,4.0,974715184 +564,2193,4.0,974716189 +564,2194,3.0,974713375 +564,2195,2.0,974835687 +564,2203,5.0,974711164 +564,2215,4.0,974844313 +564,2232,5.0,974714526 +564,2236,2.0,974842655 +564,2240,4.0,974715897 +564,2241,3.0,974837509 +564,2245,5.0,974837080 +564,2247,4.0,974836231 +564,2248,4.0,974712574 +564,2249,4.0,974837325 +564,2250,4.0,974843226 +564,2252,2.0,974843041 +564,2255,4.0,974838026 +564,2256,4.0,974709135 +564,2257,4.0,974837386 +564,2259,4.0,974838026 +564,2260,2.0,974839481 +564,2261,4.0,974833434 +564,2262,4.0,974837128 +564,2263,4.0,974844767 +564,2266,4.0,974837661 +564,2267,5.0,974843945 +564,2268,3.0,974712838 +564,2269,3.0,974843382 +564,2271,5.0,974715258 +564,2272,4.0,974715379 +564,2279,5.0,974709294 +564,2282,3.0,974712704 +564,2283,3.0,974716032 +564,2286,3.0,974838063 +564,2287,4.0,974844566 +564,2288,5.0,974708761 +564,2289,4.0,974711125 +564,2290,5.0,974837543 +564,2291,3.0,974790116 +564,2294,4.0,974715318 +564,2295,4.0,974837450 +564,2297,2.0,974843206 +564,2300,4.0,974711197 +564,2301,4.0,974833057 +564,2302,4.0,974714165 +564,2303,4.0,974711125 +564,2304,4.0,974715224 +564,2313,5.0,974713583 +564,2315,5.0,974709044 +564,2316,4.0,974842888 +564,2318,5.0,974832715 +564,2320,3.0,974715425 +564,2321,4.0,974832766 +564,2322,2.0,974839453 +564,2325,3.0,974837361 +564,2327,5.0,974709519 +564,2328,2.0,974709423 +564,2333,4.0,974712258 +564,2335,4.0,974837128 +564,2336,3.0,974711481 +564,2337,5.0,974715952 +564,2338,3.0,974710071 +564,2344,4.0,974838833 +564,2346,5.0,974716156 +564,2347,4.0,974716363 +564,2348,5.0,974712609 +564,2349,5.0,974714599 +564,2350,3.0,974837886 +564,2351,3.0,974713563 +564,2353,4.0,974715103 +564,2355,4.0,974713786 +564,2359,3.0,974713136 +564,2361,5.0,974710392 +564,2362,2.0,974843159 +564,2363,4.0,974713563 +564,2364,4.0,974839341 +564,2365,5.0,974839204 +564,2366,4.0,974708713 +564,2367,5.0,974709177 +564,2368,3.0,974710019 +564,2369,4.0,974716156 +564,2370,2.0,974839176 +564,2373,3.0,974839551 +564,2374,4.0,974837853 +564,2375,4.0,974838134 +564,2376,4.0,974839071 +564,2377,3.0,974708959 +564,2378,4.0,974837128 +564,2379,2.0,974838189 +564,2380,1.0,974838390 +564,2381,1.0,974838315 +564,2382,1.0,974838601 +564,2383,1.0,974838545 +564,2384,5.0,974712798 +564,2385,3.0,974844359 +564,2386,3.0,974843613 +564,2387,3.0,974836231 +564,2389,2.0,974709779 +564,2390,3.0,974713279 +564,2391,3.0,974844473 +564,2392,1.0,974838491 +564,2393,3.0,974839071 +564,2395,4.0,974708446 +564,2396,3.0,974710822 +564,2397,4.0,974841704 +564,2398,5.0,974841550 +564,2402,2.0,974839176 +564,2404,1.0,974839551 +564,2405,4.0,974837260 +564,2406,4.0,974715038 +564,2407,3.0,974833752 +564,2408,3.0,974838390 +564,2409,3.0,974839236 +564,2410,2.0,974839236 +564,2411,1.0,974839453 +564,2412,1.0,974839680 +564,2413,4.0,974838162 +564,2414,3.0,974716403 +564,2415,4.0,974843091 +564,2416,3.0,974836980 +564,2417,3.0,974837853 +564,2418,4.0,974837128 +564,2419,5.0,974843294 +564,2420,1.0,974842547 +564,2421,1.0,974839422 +564,2422,1.0,974839680 +564,2423,4.0,974714563 +564,2424,4.0,974716299 +564,2428,3.0,974709135 +564,2429,2.0,974839830 +564,2430,4.0,974715003 +564,2431,1.0,974842605 +564,2439,3.0,974713443 +564,2440,4.0,974841601 +564,2442,5.0,974714756 +564,2446,1.0,974844826 +564,2448,3.0,974710071 +564,2449,1.0,974839955 +564,2450,2.0,974840213 +564,2451,4.0,974709644 +564,2455,5.0,974708918 +564,2456,1.0,974709644 +564,2457,3.0,974716091 +564,2458,3.0,974838350 +564,2459,5.0,974708959 +564,2460,4.0,974709577 +564,2462,1.0,974709917 +564,2463,5.0,974832864 +564,2464,2.0,974709917 +564,2465,5.0,974709917 +564,2467,5.0,974712635 +564,2468,5.0,974838350 +564,2469,5.0,974837167 +564,2470,3.0,974837051 +564,2471,1.0,974837992 +564,2472,4.0,974837293 +564,2473,1.0,974838218 +564,2475,5.0,974838858 +564,2478,3.0,974715996 +564,2479,2.0,974842279 +564,2483,5.0,974709779 +564,2491,3.0,974837325 +564,2495,5.0,974714807 +564,2496,4.0,974714685 +564,2499,3.0,974832864 +564,2500,1.0,974837231 +564,2504,4.0,974837788 +564,2505,2.0,974844797 +564,2513,5.0,974709466 +564,2514,1.0,974709860 +564,2515,2.0,974710071 +564,2516,1.0,974710228 +564,2517,5.0,974709378 +564,2518,4.0,974836231 +564,2519,2.0,974708665 +564,2520,3.0,974843294 +564,2521,4.0,974843527 +564,2522,3.0,974843463 +564,2523,3.0,974843416 +564,2524,5.0,974839341 +564,2525,3.0,974709245 +564,2527,4.0,974714756 +564,2528,4.0,974716032 +564,2529,4.0,974711674 +564,2530,4.0,974839143 +564,2531,4.0,974839269 +564,2532,4.0,974715258 +564,2533,4.0,974714807 +564,2534,3.0,974715184 +564,2535,5.0,974838889 +564,2536,4.0,974843549 +564,2539,4.0,974714838 +564,2541,4.0,974842687 +564,2545,5.0,974838390 +564,2548,2.0,974710177 +564,2550,5.0,974708918 +564,2551,4.0,974713533 +564,2553,5.0,974708996 +564,2555,1.0,974838134 +564,2560,5.0,974842655 +564,2561,4.0,974716258 +564,2567,4.0,974715952 +564,2571,3.0,974712259 +564,2574,4.0,974837584 +564,2577,3.0,974841370 +564,2580,4.0,974711243 +564,2583,4.0,974843921 +564,2586,4.0,974836980 +564,2594,5.0,974841452 +564,2596,4.0,974713166 +564,2597,2.0,974836897 +564,2599,4.0,974711439 +564,2600,5.0,974838999 +564,2606,5.0,974709245 +564,2607,3.0,974840609 +564,2611,3.0,974841370 +564,2612,5.0,974712327 +564,2613,5.0,974709135 +564,2616,4.0,974839236 +564,2617,4.0,974709245 +564,2622,4.0,974837231 +564,2626,4.0,974834922 +564,2628,2.0,974708506 +564,2633,3.0,974716258 +564,2634,3.0,974709091 +564,2639,4.0,974843041 +564,2640,4.0,974715258 +564,2641,4.0,974716220 +564,2642,2.0,974839453 +564,2643,1.0,974839706 +564,2644,4.0,974708665 +564,2648,5.0,974711481 +564,2654,4.0,974708959 +564,2655,3.0,974709972 +564,2656,4.0,974710071 +564,2657,5.0,974709135 +564,2659,4.0,974833079 +564,2662,5.0,974714337 +564,2664,5.0,974708713 +564,2668,5.0,974709734 +564,2672,1.0,974842838 +564,2682,5.0,974715258 +564,2683,4.0,974837167 +564,2687,3.0,974714264 +564,2689,4.0,974712989 +564,2690,3.0,974712798 +564,2692,5.0,974838725 +564,2693,5.0,974715639 +564,2694,2.0,974837361 +564,2696,5.0,974832795 +564,2699,5.0,974715570 +564,2700,5.0,974711243 +564,2701,1.0,974839551 +564,2702,2.0,974842547 +564,2706,3.0,974832987 +564,2710,5.0,974709091 +564,2712,5.0,974714461 +564,2713,1.0,974709294 +564,2715,4.0,974713614 +564,2716,3.0,974708761 +564,2717,3.0,974709644 +564,2718,3.0,974714026 +564,2719,3.0,974709644 +564,2720,2.0,974838545 +564,2721,5.0,974844147 +564,2722,3.0,974839422 +564,2725,5.0,974711581 +564,2730,2.0,974713166 +564,2733,4.0,974838601 +564,2734,4.0,974842241 +564,2735,4.0,974837584 +564,2736,4.0,974716189 +564,2738,5.0,974837128 +564,2739,5.0,974715454 +564,2741,3.0,974839422 +564,2745,3.0,974714644 +564,2746,5.0,974709294 +564,2747,2.0,974708918 +564,2748,2.0,974839706 +564,2749,4.0,974842471 +564,2750,4.0,974714685 +564,2751,3.0,974837753 +564,2752,5.0,974837080 +564,2753,4.0,974844604 +564,2754,3.0,974710071 +564,2755,5.0,974843463 +564,2757,4.0,974715348 +564,2759,5.0,974712016 +564,2761,4.0,974711921 +564,2762,5.0,974710822 +564,2766,4.0,974833716 +564,2767,2.0,974832987 +564,2772,4.0,974716060 +564,2774,4.0,974832795 +564,2779,4.0,974837018 +564,2781,3.0,974709519 +564,2786,3.0,974838026 +564,2787,3.0,974709519 +564,2788,4.0,974834922 +564,2789,3.0,974709378 +564,2790,3.0,974709860 +564,2791,5.0,974790116 +564,2792,4.0,974837418 +564,2793,1.0,974709135 +564,2794,4.0,974837886 +564,2795,5.0,974715038 +564,2796,4.0,974837018 +564,2797,3.0,974713478 +564,2798,1.0,974838491 +564,2799,1.0,974838641 +564,2800,3.0,974839911 +564,2801,3.0,974716060 +564,2802,4.0,974839039 +564,2803,4.0,974844711 +564,2804,3.0,974832595 +564,2806,1.0,974837728 +564,2808,2.0,974839620 +564,2826,1.0,974709423 +564,2827,2.0,974844797 +564,2829,2.0,974837661 +564,2840,1.0,974844797 +564,2841,3.0,974844545 +564,2844,2.0,974842308 +564,2850,2.0,974842443 +564,2851,4.0,974844767 +564,2853,4.0,974715952 +564,2855,4.0,974710228 +564,2857,4.0,974713988 +564,2858,5.0,974710822 +564,2860,4.0,974837509 +564,2862,4.0,974843382 +564,2863,3.0,974712609 +564,2866,4.0,974715756 +564,2867,5.0,974708813 +564,2868,2.0,974709972 +564,2870,4.0,974714165 +564,2871,4.0,974844528 +564,2872,4.0,974712446 +564,2875,4.0,974843009 +564,2876,2.0,974714026 +564,2877,3.0,974842838 +564,2878,3.0,974710127 +564,2881,3.0,974839176 +564,2890,4.0,974713066 +564,2898,4.0,974709336 +564,2899,4.0,974790392 +564,2900,3.0,974709336 +564,2901,5.0,974709044 +564,2902,5.0,974709466 +564,2903,1.0,974710127 +564,2907,4.0,974833434 +564,2908,5.0,974712958 +564,2912,5.0,974712079 +564,2915,4.0,974833015 +564,2916,2.0,974838799 +564,2917,4.0,974713252 +564,2918,4.0,974832864 +564,2919,5.0,974712184 +564,2926,5.0,974712574 +564,2928,4.0,974843009 +564,2929,4.0,974713563 +564,2942,4.0,974843320 +564,2945,5.0,974843898 +564,2946,3.0,974713563 +564,2947,4.0,974838725 +564,2948,4.0,974838752 +564,2949,4.0,974838773 +564,2950,3.0,974843416 +564,2952,3.0,974844505 +564,2953,1.0,974838350 +564,2956,4.0,974839269 +564,2959,5.0,974712327 +564,2961,3.0,974837661 +564,2966,5.0,974840718 +564,2967,3.0,974842401 +564,2968,3.0,974712764 +564,2971,5.0,974843768 +564,2973,5.0,974832679 +564,2974,1.0,974710177 +564,2976,5.0,974709519 +564,2982,5.0,974709821 +564,2985,4.0,974714374 +564,2986,2.0,974839620 +564,2987,5.0,974712327 +564,2988,5.0,974714208 +564,2989,5.0,974838921 +564,2990,2.0,974714061 +564,2991,3.0,974838858 +564,2992,4.0,974709972 +564,2995,3.0,974709734 +564,2997,4.0,974710734 +564,3005,4.0,974844684 +564,3006,2.0,974840746 +564,3013,3.0,974709336 +564,3015,5.0,974844604 +564,3016,5.0,974709177 +564,3018,5.0,974708665 +564,3019,4.0,974712764 +564,3020,3.0,974839039 +564,3021,5.0,974709972 +564,3024,5.0,974709821 +564,3028,4.0,974712505 +564,3029,4.0,974714026 +564,3033,4.0,974837167 +564,3034,4.0,974790436 +564,3036,5.0,974716189 +564,3039,5.0,974832897 +564,3040,4.0,974713443 +564,3041,3.0,974838601 +564,3042,3.0,974838601 +564,3044,4.0,974843898 +564,3045,4.0,974837853 +564,3048,4.0,974838189 +564,3051,3.0,974708506 +564,3052,5.0,974711581 +564,3060,4.0,974833079 +564,3063,4.0,974844649 +564,3064,1.0,974844585 +564,3067,5.0,974832570 +564,3068,5.0,974711243 +564,3070,2.0,974715861 +564,3072,5.0,974713136 +564,3075,3.0,974711808 +564,3081,4.0,974709044 +564,3082,4.0,974716125 +564,3083,5.0,974710590 +564,3086,4.0,974714291 +564,3087,3.0,974715258 +564,3089,3.0,974840798 +564,3094,3.0,974841475 +564,3098,2.0,974712147 +564,3101,5.0,974715640 +564,3102,5.0,974715003 +564,3103,4.0,974844218 +564,3105,4.0,974712727 +564,3106,4.0,974842605 +564,3107,2.0,974838921 +564,3108,4.0,974713412 +564,3111,3.0,974841452 +564,3112,5.0,974710675 +564,3113,1.0,974839269 +564,3115,5.0,974711845 +564,3125,5.0,974842443 +564,3128,3.0,974840851 +564,3130,4.0,974838162 +564,3135,5.0,974713310 +564,3141,4.0,974843041 +564,3145,4.0,974842838 +564,3146,1.0,974837728 +564,3147,5.0,974712259 +564,3152,5.0,974713310 +564,3153,5.0,974838858 +564,3156,3.0,974843064 +564,3157,3.0,974713412 +564,3160,5.0,974712478 +564,3167,5.0,974713786 +564,3169,4.0,974714127 +564,3174,2.0,974713279 +564,3175,5.0,974714165 +564,3176,2.0,974842216 +564,3178,3.0,974714061 +564,3179,3.0,974840798 +564,3183,4.0,974840825 +564,3185,3.0,974841802 +564,3186,4.0,974714967 +564,3190,1.0,974839740 +564,3194,5.0,974840876 +564,3197,4.0,974715425 +564,3198,5.0,974715488 +564,3200,5.0,974833434 +564,3203,4.0,974713279 +564,3204,4.0,974712609 +564,3210,5.0,974832795 +564,3211,4.0,974841654 +564,3213,5.0,974713512 +564,3218,3.0,974711349 +564,3223,3.0,974842626 +564,3239,4.0,974838641 +564,3243,4.0,974837931 +564,3244,5.0,974714618 +564,3246,3.0,974713166 +564,3247,4.0,974836980 +564,3248,3.0,974838427 +564,3249,4.0,974844649 +564,3250,3.0,974714239 +564,3251,4.0,974842369 +564,3252,4.0,974716220 +564,3253,3.0,974714526 +564,3254,3.0,974836927 +564,3255,3.0,974714264 +564,3256,4.0,974714685 +564,3257,1.0,974839551 +564,3258,5.0,974837476 +564,3259,3.0,974842860 +564,3261,4.0,974837293 +564,3262,4.0,974715825 +564,3263,3.0,974837201 +564,3264,1.0,974709378 +564,3266,3.0,974710822 +564,3268,3.0,974838545 +564,3269,3.0,974844186 +564,3270,3.0,974842279 +564,3271,4.0,974712147 +564,3272,5.0,974842775 +564,3273,4.0,974709466 +564,3274,5.0,974839039 +564,3281,5.0,974840462 +564,3282,4.0,974712446 +564,3304,4.0,974842576 +564,3313,4.0,974837886 +564,3324,1.0,974837661 +564,3325,4.0,974838545 +564,3331,4.0,974843502 +564,3339,3.0,974713342 +564,3341,4.0,974710822 +564,3342,5.0,974712259 +564,3343,4.0,974837386 +564,3351,3.0,974709336 +564,3355,4.0,974844711 +564,3358,5.0,974713988 +564,3359,5.0,974840684 +564,3360,3.0,974713196 +564,3361,5.0,974712044 +564,3362,4.0,974711921 +564,3363,5.0,974835075 +564,3386,4.0,974841338 +564,3387,4.0,974837697 +564,3388,3.0,974837584 +564,3391,5.0,974838641 +564,3392,4.0,974838026 +564,3394,4.0,974837992 +564,3396,4.0,974712924 +564,3397,4.0,974833434 +564,3398,3.0,974715570 +564,3402,4.0,974715602 +564,3404,3.0,974839039 +564,3409,4.0,974713196 +564,3412,4.0,974714337 +564,3418,5.0,974713673 +564,3420,5.0,974844585 +564,3421,4.0,974711756 +564,3422,3.0,974833400 +564,3424,3.0,974832715 +564,3428,1.0,974843587 +564,3429,4.0,974790351 +564,3430,4.0,974838889 +564,3431,3.0,974839579 +564,3435,4.0,974710521 +564,3436,2.0,974843348 +564,3438,2.0,974839307 +564,3439,1.0,974839579 +564,3440,1.0,974839652 +564,3442,3.0,974839551 +564,3445,3.0,974843921 +564,3448,5.0,974716220 +564,3449,4.0,974843416 +564,3450,4.0,974836927 +564,3457,5.0,974843570 +564,3459,4.0,974709466 +564,3461,4.0,974713920 +564,3465,4.0,974843348 +564,3466,4.0,974837361 +564,3471,5.0,974711921 +564,3476,5.0,974708813 +564,3478,1.0,974842443 +564,3479,2.0,974715293 +564,3480,4.0,974715666 +564,3481,4.0,974712446 +564,3489,2.0,974843646 +564,3490,5.0,974791150 +564,3491,4.0,974791183 +564,3494,3.0,974716189 +564,3495,4.0,974838641 +564,3496,4.0,974841704 +564,3497,4.0,974836927 +564,3498,4.0,974713786 +564,3499,5.0,974713093 +564,3500,2.0,974837697 +564,3501,4.0,974715003 +564,3503,2.0,974711581 +564,3504,4.0,974711001 +564,3505,4.0,974714291 +564,3506,4.0,974833716 +564,3507,4.0,974714778 +564,3508,4.0,974844968 +564,3510,4.0,974715666 +564,3516,4.0,974716060 +564,3518,2.0,974841529 +564,3521,4.0,974712764 +564,3524,5.0,974837128 +564,3525,4.0,974837231 +564,3526,4.0,974713478 +564,3527,4.0,974714061 +564,3528,4.0,974843206 +564,3529,5.0,974844711 +564,3534,4.0,974833752 +564,3535,4.0,974708918 +564,3543,4.0,974711517 +564,3544,3.0,974837018 +564,3545,5.0,974843752 +564,3546,5.0,974713512 +564,3547,5.0,974840876 +564,3548,3.0,974713786 +564,3551,3.0,974711125 +564,3552,4.0,974713311 +564,3557,5.0,974844737 +564,3564,2.0,974838545 +564,3565,3.0,974837128 +564,3572,2.0,974709519 +564,3573,4.0,974710127 +564,3574,1.0,974710252 +564,3576,5.0,974708761 +564,3577,4.0,974843549 +564,3584,4.0,974839551 +564,3587,4.0,974708959 +564,3590,4.0,974837853 +564,3591,4.0,974837051 +564,3604,4.0,974843786 +564,3605,1.0,974843320 +564,3608,5.0,974832897 +564,3614,4.0,974715792 +564,3619,3.0,974714778 +564,3623,1.0,974708506 +564,3627,4.0,974713031 +564,3633,4.0,974838833 +564,3635,5.0,974713614 +564,3638,5.0,974716299 +564,3639,3.0,974713872 +564,3649,4.0,974842687 +564,3658,4.0,974711845 +564,3659,3.0,974844473 +564,3660,3.0,974709294 +564,3661,3.0,974709779 +564,3662,3.0,974709734 +564,3663,3.0,974710019 +564,3664,3.0,974710019 +564,3665,4.0,974710019 +564,3671,5.0,974712545 +564,3672,5.0,974839862 +564,3673,3.0,974840213 +564,3674,3.0,974840213 +564,3676,4.0,974708665 +564,3677,3.0,974715640 +564,3679,5.0,974714061 +564,3680,3.0,974712327 +564,3683,5.0,974710704 +564,3684,4.0,974842308 +564,3685,5.0,974713136 +564,3688,4.0,974837584 +564,3689,3.0,974838350 +564,3690,2.0,974838456 +564,3691,3.0,974838315 +564,3692,4.0,974710127 +564,3693,4.0,974708996 +564,3694,3.0,974709423 +564,3695,3.0,974709577 +564,3696,4.0,974709091 +564,3697,2.0,974839391 +564,3698,3.0,974839204 +564,3699,3.0,974714685 +564,3701,4.0,974841992 +564,3702,3.0,974712401 +564,3703,2.0,974712016 +564,3704,2.0,974838921 +564,3705,4.0,974839680 +564,3706,4.0,974713872 +564,3707,4.0,974843226 +564,3708,4.0,974709466 +564,3709,4.0,974709779 +564,3712,5.0,974837293 +564,3713,4.0,974713739 +564,3714,2.0,974842918 +564,3715,4.0,974837960 +564,3716,4.0,974839579 +564,3723,4.0,974842055 +564,3724,5.0,974714239 +564,3725,5.0,974790534 +564,3727,4.0,974832864 +564,3728,5.0,974713252 +564,3729,4.0,974839071 +564,3730,5.0,974710334 +564,3731,4.0,974842655 +564,3732,3.0,974709177 +564,3733,4.0,974713644 +564,3734,5.0,974714208 +564,3738,5.0,974716156 +564,3740,3.0,974713920 +564,3742,3.0,974711164 +564,3745,4.0,974790436 +564,3753,1.0,974844914 +564,3754,2.0,974840213 +564,3755,5.0,974838971 +564,3757,5.0,974708857 +564,3758,4.0,974842576 +564,3759,4.0,974790534 +564,3760,5.0,974714374 +564,3763,4.0,974715698 +564,3764,1.0,974839307 +564,3769,3.0,974838799 +564,3770,5.0,974844627 +564,3771,4.0,974713375 +564,3773,1.0,974837661 +564,3774,1.0,974838601 +564,3777,1.0,974709245 +564,3785,3.0,974708959 +564,3786,3.0,974714599 +564,3788,4.0,974714491 +564,3791,4.0,974842401 +564,3798,4.0,974716156 +564,3802,2.0,974839511 +564,3804,5.0,974838456 +564,3805,4.0,974839621 +564,3807,5.0,974714374 +564,3809,4.0,974714685 +564,3810,4.0,974842838 +564,3811,4.0,974840798 +564,3812,4.0,974833015 +564,3813,5.0,974715038 +564,3814,5.0,974711644 +564,3820,1.0,974839888 +564,3826,4.0,974709821 +564,3832,3.0,974713944 +564,3833,5.0,974709973 +564,3834,3.0,974843348 +564,3835,3.0,974844737 +564,3837,5.0,974709644 +564,3838,2.0,974709860 +564,3839,1.0,974709860 +564,3840,5.0,974709860 +564,3841,5.0,974837853 +564,3844,4.0,974842721 +564,3851,5.0,974712668 +564,3857,1.0,974844889 +564,3863,4.0,974844425 +564,3865,1.0,974713412 +564,3868,4.0,974712821 +564,3869,4.0,974837018 +564,3877,2.0,974839621 +564,3889,1.0,974716125 +564,3908,5.0,974709917 +564,3917,5.0,974708996 +564,3918,3.0,974708813 +564,3919,3.0,974709734 +564,3920,2.0,974712223 +564,3921,2.0,976224804 +564,3923,4.0,974709519 +564,3925,3.0,974715602 +564,3927,4.0,974713375 +564,3928,4.0,974709245 +564,3930,4.0,974709091 +564,3932,3.0,974708761 +564,3936,4.0,974714208 +564,3937,2.0,974844797 +564,3938,4.0,974710127 +564,3939,3.0,974710127 +564,3940,3.0,974708446 +564,3941,4.0,974710177 +564,3942,3.0,974710071 +564,3946,4.0,974839579 +564,3948,4.0,974713196 +564,3956,3.0,974709520 +564,3957,2.0,974843206 +564,3959,3.0,974712958 +564,3960,3.0,976224747 +564,3961,3.0,974709779 +564,3962,2.0,974709917 +564,3968,4.0,974837615 +564,3970,4.0,974709973 +564,3971,4.0,974711403 +564,3973,5.0,974791435 +564,3984,4.0,974714685 +564,4002,3.0,976224647 +564,4003,3.0,976224647 +564,4005,3.0,976224647 +564,4006,2.0,976224647 +564,4008,4.0,976224647 +564,4009,5.0,976224647 +564,4010,1.0,976224647 +564,5060,4.0,974711674 +564,5649,3.0,974708665 +565,150,3.0,954602761 +565,300,3.0,954602795 +565,337,2.0,954602576 +565,480,4.0,954601950 +565,589,4.0,954602676 +565,608,5.0,954602419 +565,994,2.0,954602516 +565,1196,3.0,954601868 +565,1213,3.0,954602576 +565,1233,3.0,954602464 +565,1266,2.0,954602647 +565,1358,3.0,954602647 +565,1537,4.0,954602846 +565,1721,4.0,954601826 +565,1748,4.0,954602647 +565,2324,5.0,954602795 +565,2359,5.0,954602535 +565,2396,5.0,954602516 +565,2571,5.0,954602535 +565,2779,3.0,954601950 +565,2826,2.0,954602761 +565,2858,4.0,954602516 +565,2916,5.0,954601911 +565,3072,5.0,954601911 +565,3100,3.0,954602761 +565,3148,4.0,954603056 +565,3186,5.0,954602398 +566,318,5.0,1386910312 +566,1792,4.0,1386909786 +566,2296,3.5,1386909949 +566,3177,3.5,1386910089 +566,4255,3.5,1386910019 +566,6156,5.0,1386909909 +566,6541,4.0,1386910296 +566,6754,5.0,1386909822 +566,8937,4.0,1386910058 +566,26614,5.0,1386909885 +566,31420,5.0,1386910136 +566,47640,3.0,1386910200 +566,54286,5.0,1386910314 +566,55282,3.5,1386910069 +566,58559,5.0,1386910355 +566,59315,5.0,1386910292 +566,60756,5.0,1386910076 +566,61024,4.0,1386909927 +566,89745,4.5,1386910327 +566,97304,4.5,1386910037 +566,102125,5.0,1386910166 +566,102445,5.0,1386910321 +567,50,3.0,1436823334 +567,260,3.5,1436823318 +567,318,5.0,1436823311 +567,356,4.0,1436823505 +567,589,5.0,1436823417 +567,593,4.0,1436823369 +567,750,4.0,1436823395 +567,858,5.0,1436823288 +567,924,4.0,1436823531 +567,1089,5.0,1436823378 +567,1136,3.0,1436823361 +567,1175,4.0,1436823436 +567,1193,3.0,1436823549 +567,1198,4.0,1436823323 +567,1206,5.0,1436823456 +567,1208,3.0,1436823513 +567,1213,4.5,1436823374 +567,1221,5.0,1436823524 +567,1258,5.0,1436823420 +567,1265,5.0,1436823450 +567,1732,5.0,1436823520 +567,2502,5.0,1436823281 +567,2858,5.0,1436823508 +567,2959,5.0,1436823313 +567,4011,5.0,1436823499 +567,4262,3.5,1436823537 +567,4878,2.5,1436828875 +567,7153,3.5,1436823350 +567,44191,4.5,1436823453 +567,44555,5.0,1436823567 +567,48516,5.0,1436823553 +567,89759,5.0,1436823459 +567,122882,5.0,1436823589 +567,134853,3.5,1436823594 +568,1,3.0,835002305 +568,10,4.0,835002274 +568,47,5.0,835002428 +568,150,3.0,835002195 +568,153,5.0,835002219 +568,161,4.0,835002275 +568,165,4.0,835002219 +568,231,3.0,835002248 +568,253,3.0,835002305 +568,288,4.0,835002326 +568,292,4.0,835002274 +568,293,4.0,835002428 +568,296,4.0,835002195 +568,300,4.0,835002326 +568,316,5.0,835002248 +568,318,5.0,835002248 +568,329,5.0,835002248 +568,344,3.0,835002219 +568,349,5.0,835002219 +568,353,4.0,835002462 +568,356,1.0,835002400 +568,377,5.0,835002363 +568,380,5.0,835002195 +568,410,3.0,835002326 +568,434,5.0,835002275 +568,442,5.0,835002462 +568,457,5.0,835002326 +568,474,5.0,835002428 +568,480,5.0,835002400 +568,588,4.0,835002219 +568,589,5.0,835002363 +568,590,2.0,835002195 +568,592,5.0,835002194 +568,593,5.0,835002305 +568,595,4.0,835002248 +568,733,4.0,835002363 +568,736,4.0,835002363 +569,11,5.0,965068407 +569,39,4.0,965068081 +569,110,3.0,965070746 +569,151,4.0,965070759 +569,164,4.0,965080902 +569,318,5.0,965070662 +569,349,5.0,965070900 +569,356,5.0,965068229 +569,377,4.0,965068186 +569,440,4.0,965068229 +569,474,5.0,965070825 +569,593,4.0,965070678 +569,800,2.0,965071191 +569,858,5.0,965070650 +569,899,5.0,965068067 +569,902,3.0,965067745 +569,903,5.0,965071054 +569,904,5.0,965071054 +569,905,5.0,965070015 +569,908,5.0,965070604 +569,909,5.0,965069244 +569,910,5.0,965080412 +569,911,5.0,965069187 +569,912,5.0,965067984 +569,913,3.0,965067745 +569,914,5.0,965069372 +569,915,4.0,965068186 +569,916,5.0,965068027 +569,919,5.0,965070061 +569,920,5.0,965068067 +569,922,5.0,965070547 +569,924,2.0,965071191 +569,928,5.0,965068002 +569,931,4.0,965068027 +569,932,3.0,965069413 +569,933,4.0,965068229 +569,942,4.0,965071191 +569,943,5.0,965069973 +569,969,5.0,965068002 +569,1035,5.0,965070490 +569,1193,3.0,965144227 +569,1198,5.0,965068700 +569,1207,5.0,965070662 +569,1225,4.0,965068700 +569,1247,4.0,965068027 +569,1278,1.0,965080429 +569,1307,4.0,965068094 +569,1357,4.0,965070791 +569,1358,5.0,965143871 +569,1393,4.0,965068186 +569,1608,4.0,965070810 +569,1617,5.0,965070566 +569,1674,4.0,965068081 +569,1721,4.0,965068128 +569,1873,4.0,965070778 +569,1918,3.0,965071013 +569,1944,3.0,965068027 +569,1946,4.0,965069413 +569,1947,3.0,965069372 +569,1956,3.0,965068700 +569,2000,4.0,965071013 +569,2001,4.0,965071013 +569,2002,3.0,965071013 +569,2006,4.0,965068186 +569,2028,5.0,965067636 +569,2109,3.0,965067672 +569,2324,4.0,965144282 +569,2359,5.0,965144265 +569,2396,4.0,965068027 +569,2770,3.0,965070839 +569,2791,3.0,965067745 +569,2804,5.0,965068455 +569,2858,5.0,965067900 +569,2919,3.0,965068067 +569,3082,3.0,965067928 +569,3095,5.0,965070678 +569,3147,5.0,965067900 +569,3176,2.0,965067900 +569,3196,5.0,965070531 +569,3210,3.0,965069104 +569,3256,4.0,965070991 +569,3414,4.0,965069422 +569,3512,4.0,965144249 +569,3654,5.0,965070531 +569,3801,2.0,965071191 +570,1,1.5,1475783711 +570,36,4.0,1475784355 +570,104,3.5,1475806221 +570,110,3.0,1475783266 +570,150,3.5,1475783700 +570,165,5.0,1475783692 +570,260,2.0,1475783233 +570,296,5.0,1475783781 +570,356,5.0,1475783279 +570,457,4.0,1475783286 +570,474,4.0,1475783718 +570,508,5.0,1475783671 +570,527,2.5,1475783261 +570,589,1.5,1475783263 +570,593,5.0,1475783864 +570,608,4.0,1475784300 +570,648,5.0,1475783787 +570,733,4.5,1475783698 +570,780,4.0,1475783835 +570,1027,4.0,1475784352 +570,1036,5.0,1475783259 +570,1047,3.0,1475784384 +570,1196,2.0,1475783047 +570,1198,4.0,1475783030 +570,1210,1.5,1475783247 +570,1213,2.0,1475784311 +570,1258,5.0,1475784306 +570,1291,4.0,1475783038 +570,1370,5.0,1475783716 +570,1544,3.0,1475783815 +570,1584,2.0,1475784351 +570,1608,4.5,1475783707 +570,1625,4.5,1475784302 +570,1704,5.0,1475783687 +570,1882,1.5,1475783741 +570,1917,4.0,1475783809 +570,1997,4.5,1475806206 +570,2000,4.0,1475783744 +570,2028,2.5,1475783269 +570,2115,5.0,1475783793 +570,2268,2.5,1475784363 +570,2403,4.0,1475784326 +570,2404,5.0,1475783760 +570,2411,3.0,1475784369 +570,2571,3.0,1475783033 +570,2617,1.5,1475783850 +570,2916,2.5,1475783739 +570,2959,3.0,1475783757 +570,2990,2.5,1475784375 +570,3623,5.0,1475783736 +570,3624,3.0,1475783848 +570,3916,4.0,1475784345 +570,3977,2.5,1475783775 +570,4306,1.5,1475783783 +570,4369,3.0,1475783817 +570,4701,4.0,1475783762 +570,4896,4.0,1475806371 +570,4901,4.0,1475784409 +570,4993,5.0,1475783252 +570,5064,4.0,1475784417 +570,5218,3.0,1475783676 +570,5254,4.0,1475783811 +570,5378,2.0,1475806378 +570,5445,5.0,1475783680 +570,5449,4.5,1475783779 +570,5621,4.0,1475783863 +570,5952,5.0,1475783236 +570,6156,3.5,1475783800 +570,6333,2.5,1475783685 +570,6365,2.5,1475783790 +570,6378,4.5,1475783724 +570,6539,4.0,1475783674 +570,6664,3.0,1475784370 +570,6874,4.0,1475783669 +570,7143,3.5,1475783679 +570,7153,5.0,1475783036 +570,7438,3.5,1475783668 +570,7445,4.0,1475784344 +570,8368,4.5,1475783753 +570,8533,3.5,1475806361 +570,8644,3.5,1475783867 +570,8961,2.0,1475783710 +570,32029,4.0,1475784376 +570,33794,2.0,1475783271 +570,34534,3.5,1475806226 +570,36519,5.0,1475783803 +570,37727,2.5,1475784380 +570,40815,4.5,1475783754 +570,41566,3.5,1475783720 +570,44199,4.0,1475784330 +570,45186,5.0,1475786244 +570,47099,5.0,1475784304 +570,48516,3.5,1475783853 +570,48774,4.0,1475786239 +570,49272,5.0,1475783813 +570,53972,5.0,1475783842 +570,54286,5.0,1475783284 +570,55765,3.5,1475784365 +570,57528,4.5,1475784313 +570,58559,1.5,1475783249 +570,59315,3.0,1475783273 +570,59501,3.5,1475783807 +570,60072,3.0,1475783690 +570,64716,4.0,1475806356 +570,64957,4.5,1475806239 +570,68358,1.5,1475783281 +570,72641,4.0,1475806209 +570,73017,5.0,1475783857 +570,78469,2.0,1475783858 +570,79185,4.5,1475786238 +570,79293,5.0,1475783831 +570,80363,4.0,1475786242 +570,81229,4.5,1475783845 +570,81834,4.5,1475783785 +570,84392,4.0,1475806215 +570,91630,5.0,1475783832 +570,95167,3.5,1475783821 +570,97304,4.0,1475783714 +570,98809,4.0,1475783796 +570,103141,1.5,1475783819 +570,105504,4.0,1475784360 +570,106489,4.0,1475783702 +570,112171,2.0,1475784309 +570,112852,1.5,1475783289 +570,116797,5.0,1475784320 +570,122886,2.0,1475783291 +570,142488,4.0,1475806253 +570,148626,4.0,1475806416 +571,18,5.0,1334342436 +571,32,4.5,1334342690 +571,88,3.5,1334342448 +571,150,4.0,1334343718 +571,413,4.0,1334342410 +571,546,2.5,1334342420 +571,1208,3.5,1334343715 +571,1347,3.0,1334342371 +571,1517,2.5,1334344224 +571,1608,3.5,1334343175 +571,1917,4.0,1334343789 +571,2094,2.0,1334342384 +571,2124,4.0,1334343027 +571,2329,4.0,1334343457 +571,2572,3.5,1334342657 +571,2683,3.0,1334344226 +571,2706,3.5,1334343473 +571,2858,4.0,1334343413 +571,3273,2.5,1334342405 +571,3354,4.0,1334342394 +571,3535,4.5,1334343490 +571,3745,3.5,1334342433 +571,3981,3.5,1334342533 +571,4159,4.5,1334342819 +571,4238,3.5,1334343353 +571,4343,4.5,1334342491 +571,4718,2.5,1334343476 +571,4792,3.5,1334342710 +571,4865,4.0,1334342502 +571,4973,4.5,1334343394 +571,5015,3.0,1334342453 +571,5400,3.5,1334342539 +571,5481,2.5,1334344220 +571,5872,3.5,1334342465 +571,6287,3.0,1334343605 +571,6502,3.5,1334342776 +571,7173,2.0,1334343358 +571,7293,2.5,1334342864 +571,8641,4.0,1334343546 +571,8977,4.0,1334343221 +571,27251,3.0,1334342676 +571,27660,4.0,1334343643 +571,34338,4.5,1334343776 +571,39715,3.5,1334343478 +571,45440,4.0,1334343817 +571,47518,3.5,1334342967 +571,50923,3.0,1334343924 +571,51662,4.0,1334342810 +571,52462,4.0,1334343745 +571,52973,4.5,1334342495 +571,53953,4.5,1334342721 +571,54997,4.0,1334342828 +571,55363,3.5,1334343895 +571,55765,4.5,1334343427 +571,68554,4.0,1334343585 +571,72378,4.0,1334342752 +571,74789,4.0,1334343259 +571,84954,4.0,1334343045 +571,88812,4.5,1334342806 +572,50,4.0,1436465509 +572,145,4.5,1436885174 +572,163,2.5,1436885100 +572,296,4.0,1436465836 +572,318,4.5,1436465513 +572,337,4.0,1436885117 +572,356,4.0,1436466692 +572,381,3.0,1436936149 +572,527,4.0,1436465512 +572,593,3.5,1436465703 +572,858,4.0,1436465503 +572,912,4.0,1436465688 +572,1203,4.5,1436465476 +572,1213,3.5,1436465983 +572,1704,4.5,1436465993 +572,2028,4.5,1436466597 +572,2268,5.0,1436885095 +572,2329,4.0,1436465690 +572,2571,4.0,1436465485 +572,2858,4.0,1436465717 +572,2959,4.5,1436465710 +572,3147,4.0,1436466628 +572,3252,4.0,1436885248 +572,4993,4.5,1436465642 +572,5066,4.0,1436465358 +572,5219,3.5,1436465076 +572,5459,3.5,1436464849 +572,5464,4.0,1436464884 +572,5507,3.5,1436465083 +572,5574,3.0,1436465183 +572,5679,3.0,1436464861 +572,5872,3.5,1436464944 +572,5952,4.5,1436465663 +572,6281,3.5,1436464954 +572,6378,4.0,1436464859 +572,6564,3.0,1436465215 +572,6586,3.0,1436465263 +572,6754,3.0,1436465100 +572,6934,3.0,1436464814 +572,7143,3.5,1436464852 +572,7153,4.0,1436465655 +572,7162,3.0,1436465161 +572,7163,3.5,1436465256 +572,7293,3.5,1436464926 +572,7346,3.5,1436465278 +572,7454,4.0,1436465124 +572,8533,3.0,1436465103 +572,8644,3.0,1436464846 +572,8798,4.0,1436464890 +572,30707,3.0,1436464873 +572,31685,3.0,1436465097 +572,31696,3.5,1436465089 +572,33162,3.5,1436779905 +572,33615,4.0,1436465147 +572,34048,3.5,1436464919 +572,34150,3.0,1436465120 +572,34435,4.5,1436466688 +572,36519,3.0,1436465367 +572,38061,3.5,1436464956 +572,40815,3.5,1436464842 +572,41566,3.0,1436464908 +572,42723,3.0,1436780041 +572,42738,4.0,1436779961 +572,44022,4.0,1436779896 +572,44195,3.5,1436464897 +572,45186,4.0,1436779852 +572,45668,4.0,1436780116 +572,45672,3.0,1436779923 +572,47099,4.0,1436779820 +572,48516,4.5,1436465765 +572,48780,4.5,1436466014 +572,48997,4.0,1436780025 +572,49286,3.5,1436779990 +572,51077,2.5,1436780007 +572,52458,3.5,1436780064 +572,52722,3.5,1436779789 +572,53322,4.0,1436779815 +572,55232,3.5,1436780055 +572,55276,3.5,1436779862 +572,55908,4.0,1436779994 +572,56775,3.5,1436779950 +572,56941,3.5,1436780130 +572,56949,3.5,1436779939 +572,57640,2.5,1436779919 +572,58295,3.5,1436779976 +572,58559,5.0,1436465480 +572,58803,3.5,1436779929 +572,59501,3.5,1436780017 +572,59784,3.5,1436779769 +572,59900,2.5,1436780120 +572,60069,3.0,1436466435 +572,60072,3.0,1436779892 +572,61024,4.0,1436779885 +572,62999,4.0,1436780164 +572,63992,3.5,1436779913 +572,64716,4.0,1436780035 +572,64957,3.5,1436779780 +572,65514,3.0,1436780109 +572,68954,4.5,1436466030 +572,71379,3.5,1436780145 +572,73881,3.5,1436466607 +572,81845,3.5,1436465743 +572,99114,4.0,1436465847 +572,104913,4.5,1436466508 +572,109487,4.5,1436466015 +572,132952,4.0,1436466718 +573,36,5.0,946616367 +573,80,4.0,946616810 +573,105,2.0,946616709 +573,260,3.0,946616209 +573,480,3.0,946616709 +573,527,5.0,946616781 +573,538,4.0,946616709 +573,595,4.0,946616177 +573,596,4.0,946616412 +573,1080,3.0,946616441 +573,1094,5.0,946616885 +573,1097,2.0,946616900 +573,1197,3.0,946616177 +573,1256,3.0,946616745 +573,1280,4.0,946616679 +573,1367,3.0,946616177 +573,1408,4.0,946616441 +573,1485,3.0,946616596 +573,1617,3.0,946616764 +573,1641,4.0,946616487 +573,1907,4.0,946616472 +573,2003,2.0,946616709 +573,2028,5.0,946616396 +573,2080,4.0,946616542 +573,2081,4.0,946616558 +573,2087,4.0,946616527 +573,2095,1.0,946616209 +573,2324,5.0,946616527 +573,2355,4.0,946616472 +573,2390,3.0,946616840 +573,2797,2.0,946616412 +573,2871,4.0,946616472 +573,2947,3.0,946616504 +573,2969,3.0,946616854 +573,2987,4.0,946616573 +573,2991,3.0,946616573 +573,2997,5.0,946616641 +573,3100,3.0,946616472 +574,1,4.0,1232811316 +574,3,3.5,1232815004 +574,6,5.0,1232810973 +574,10,3.0,1232810621 +574,16,4.5,1232821065 +574,19,3.0,1232810913 +574,25,4.5,1232810542 +574,32,4.5,1232810098 +574,47,4.5,1232810186 +574,50,5.0,1232810368 +574,70,4.0,1232815545 +574,104,3.0,1232810986 +574,111,5.0,1232810609 +574,141,4.0,1232810831 +574,145,3.5,1232914790 +574,150,3.0,1232810662 +574,153,2.0,1232810237 +574,163,3.5,1232815235 +574,165,3.5,1232810241 +574,173,2.5,1232915065 +574,193,1.0,1232809285 +574,196,3.0,1232815475 +574,208,2.0,1232810525 +574,215,4.5,1232820704 +574,223,4.0,1232914651 +574,231,2.5,1232915082 +574,260,4.0,1232914577 +574,293,5.0,1232810780 +574,296,5.0,1232811585 +574,316,2.5,1232811359 +574,318,5.0,1232914580 +574,329,2.5,1232810443 +574,344,2.5,1232811339 +574,356,4.5,1232821038 +574,357,2.5,1232810572 +574,364,3.5,1232811355 +574,367,3.0,1232810271 +574,370,2.5,1232815435 +574,374,2.0,1232809349 +574,377,3.0,1232914840 +574,420,3.0,1232811079 +574,435,3.0,1232815348 +574,442,3.5,1232811659 +574,466,2.5,1232915070 +574,471,3.5,1232817270 +574,480,3.5,1232810183 +574,500,3.0,1232914882 +574,517,4.0,1232907142 +574,539,3.0,1232811376 +574,541,4.0,1232810489 +574,586,3.0,1232914930 +574,589,4.0,1232810207 +574,592,3.0,1232811311 +574,597,3.0,1232810362 +574,608,5.0,1232810285 +574,648,3.0,1232810389 +574,673,2.5,1232915027 +574,733,3.0,1232810378 +574,736,3.0,1232915017 +574,762,0.5,1232809235 +574,780,3.5,1232810115 +574,858,5.0,1232810023 +574,1036,4.5,1232810365 +574,1088,3.0,1232817137 +574,1089,4.5,1232914545 +574,1092,3.5,1232817134 +574,1097,4.0,1232811619 +574,1196,4.0,1232810140 +574,1198,3.5,1232815950 +574,1201,4.5,1232813246 +574,1208,4.0,1232810791 +574,1210,3.5,1232810095 +574,1212,4.0,1232815721 +574,1213,4.5,1232810580 +574,1221,4.5,1232810479 +574,1222,3.0,1232914936 +574,1227,4.0,1232815840 +574,1234,4.5,1232812690 +574,1240,3.5,1232810563 +574,1245,4.5,1232812093 +574,1247,4.5,1232811017 +574,1265,4.5,1232810429 +574,1270,4.5,1232914533 +574,1291,4.0,1232810454 +574,1370,3.0,1232914950 +574,1371,3.0,1232809252 +574,1373,1.0,1232809279 +574,1374,4.0,1232811037 +574,1375,3.5,1232817066 +574,1391,3.5,1232810806 +574,1407,4.0,1232810879 +574,1517,2.0,1232810465 +574,1527,2.5,1232810510 +574,1556,2.5,1232915025 +574,1562,3.0,1232817341 +574,1573,3.5,1232810558 +574,1580,3.5,1232810305 +574,1589,4.5,1232809334 +574,1617,4.5,1232810179 +574,1639,4.5,1232811111 +574,1676,3.0,1232914822 +574,1682,3.5,1232914692 +574,1687,4.0,1232819185 +574,1704,4.0,1232914627 +574,1717,3.0,1232914846 +574,1721,3.0,1232810148 +574,1722,3.0,1232815366 +574,1729,4.5,1232812223 +574,1732,4.5,1232914537 +574,1805,4.0,1232817468 +574,1909,2.5,1232915007 +574,1911,2.5,1232915085 +574,1917,3.0,1232810434 +574,1918,4.0,1232817410 +574,1923,3.5,1232914700 +574,1953,4.0,1245603895 +574,1968,4.0,1232811800 +574,2000,4.5,1232810759 +574,2001,4.0,1232811113 +574,2011,3.5,1232914794 +574,2012,3.5,1232914792 +574,2082,3.0,1232915123 +574,2115,3.0,1232810478 +574,2167,3.0,1232815226 +574,2174,3.5,1232810512 +574,2194,4.0,1232810750 +574,2232,3.0,1232818623 +574,2278,4.5,1232812237 +574,2324,4.0,1232815780 +574,2338,3.0,1232820235 +574,2340,3.5,1232818758 +574,2353,3.5,1232810860 +574,2378,3.0,1232914872 +574,2380,1.0,1232809462 +574,2381,2.0,1232907256 +574,2382,0.5,1232809493 +574,2383,0.5,1232809499 +574,2395,3.5,1232810904 +574,2411,3.0,1232818909 +574,2423,3.5,1232818546 +574,2539,3.0,1232914990 +574,2541,4.5,1232817395 +574,2542,4.0,1232810965 +574,2571,3.5,1232810265 +574,2617,3.0,1244102603 +574,2628,3.0,1232810080 +574,2683,2.5,1232810522 +574,2706,3.0,1232810341 +574,2716,4.0,1232810355 +574,2717,4.0,1232817428 +574,2762,2.5,1232915030 +574,2806,3.5,1232809526 +574,2858,5.0,1232810317 +574,2918,4.5,1232810514 +574,2953,3.0,1232914928 +574,2959,4.5,1232811378 +574,3000,3.0,1232914867 +574,3052,3.5,1232810604 +574,3082,2.5,1232915008 +574,3114,3.5,1232914696 +574,3176,4.0,1232914570 +574,3257,3.0,1232914970 +574,3273,2.5,1232915039 +574,3452,3.0,1232914859 +574,3489,4.0,1232817141 +574,3617,3.0,1232914861 +574,3623,3.5,1232810463 +574,3683,4.5,1232812121 +574,3697,3.5,1232817836 +574,3698,2.5,1232809313 +574,3745,3.0,1232914816 +574,3785,3.0,1232914851 +574,3793,3.0,1232810109 +574,3825,3.5,1232819007 +574,3863,2.5,1232815503 +574,3948,4.0,1232812254 +574,4011,4.0,1232810642 +574,4015,3.0,1232818510 +574,4022,3.5,1232810274 +574,4027,3.5,1232810428 +574,4034,4.5,1232810294 +574,4084,3.0,1232914974 +574,4085,4.0,1232811005 +574,4226,3.5,1232810170 +574,4306,3.0,1232914843 +574,4369,3.0,1232817099 +574,4388,2.5,1232915043 +574,4448,3.5,1232812243 +574,4643,3.0,1232811059 +574,4701,2.5,1232915046 +574,4734,3.0,1232914914 +574,4816,3.5,1232817095 +574,4881,3.5,1232812107 +574,4886,4.0,1232815868 +574,4963,3.5,1232810219 +574,4979,4.0,1232810546 +574,4993,4.0,1232810530 +574,5151,3.0,1232820594 +574,5218,3.5,1232810761 +574,5254,3.0,1232914972 +574,5349,3.0,1232914839 +574,5378,3.0,1232810303 +574,5400,2.5,1232809413 +574,5418,4.0,1232810314 +574,5419,2.5,1232915040 +574,5459,3.0,1232811068 +574,5481,2.0,1232811082 +574,5507,3.0,1232914809 +574,5541,3.0,1232914926 +574,5618,3.0,1232914837 +574,5872,3.0,1232817121 +574,5944,3.5,1232818572 +574,5952,3.5,1232815826 +574,5956,3.5,1232915077 +574,6016,4.5,1232809901 +574,6157,3.0,1232914956 +574,6333,3.0,1232810227 +574,6365,2.5,1232810174 +574,6373,3.0,1232810891 +574,6377,4.0,1232810495 +574,6378,3.5,1232810644 +574,6440,3.5,1232812095 +574,6537,3.0,1232810765 +574,6539,3.5,1232810203 +574,6548,3.0,1232914987 +574,6586,3.0,1232819109 +574,6595,3.0,1232914853 +574,6711,4.5,1232811825 +574,6870,4.5,1232810882 +574,6874,4.0,1232812322 +574,6881,4.0,1244102558 +574,6888,2.5,1232915041 +574,7090,3.5,1232810917 +574,7137,4.0,1232820496 +574,7153,3.5,1232815953 +574,7173,3.0,1232819201 +574,7293,3.5,1232914803 +574,7317,3.0,1232820803 +574,7346,3.5,1232820521 +574,7361,3.5,1232810205 +574,7373,4.0,1232815355 +574,7438,4.0,1232810215 +574,7444,3.0,1232914991 +574,7451,3.5,1232914725 +574,8360,2.5,1232915036 +574,8528,3.5,1232815386 +574,8529,3.5,1232815415 +574,8533,4.5,1245604448 +574,8636,2.5,1232810167 +574,8638,4.0,1232809973 +574,8644,3.0,1232914921 +574,8665,4.0,1232810348 +574,8784,4.5,1232812507 +574,8798,4.5,1232810919 +574,8807,4.0,1232817972 +574,8874,3.5,1232810632 +574,8961,3.5,1232810156 +574,8981,4.5,1232812509 +574,8983,3.5,1232817281 +574,8984,3.0,1232914878 +574,27611,4.0,1232915239 +574,30707,4.0,1244102568 +574,30825,3.5,1232812255 +574,31878,3.0,1232914910 +574,32587,4.0,1232810320 +574,33166,4.0,1232810489 +574,33493,3.5,1232810221 +574,33615,3.5,1234564083 +574,33679,3.5,1232810989 +574,33794,3.5,1232810312 +574,34162,3.5,1245604068 +574,36529,4.5,1232815222 +574,38061,4.0,1232815448 +574,38499,4.5,1232813518 +574,40583,4.0,1232914574 +574,40819,4.5,1232815801 +574,41285,4.0,1246141621 +574,44022,3.0,1232818439 +574,44191,4.0,1232810150 +574,44665,3.0,1232809430 +574,45186,4.0,1232817344 +574,45499,2.5,1232914998 +574,45517,4.0,1232815444 +574,45728,3.5,1232817903 +574,46337,2.0,1232811564 +574,46578,4.5,1232810243 +574,47044,3.5,1232812776 +574,47200,3.5,1232914765 +574,48516,4.5,1232810136 +574,48774,3.5,1232914771 +574,48780,3.5,1232810421 +574,49272,4.0,1232810087 +574,49530,4.0,1232810927 +574,50872,4.0,1232810812 +574,51255,3.5,1232810517 +574,51540,4.0,1232815408 +574,52281,3.0,1232812305 +574,52328,3.5,1232818415 +574,52722,2.5,1232811063 +574,53322,3.0,1232812049 +574,53996,3.0,1232914815 +574,54259,3.5,1232812410 +574,54286,4.0,1232914664 +574,54503,4.0,1232915180 +574,54997,4.0,1232811058 +574,55052,4.0,1232817312 +574,55118,4.0,1232813436 +574,55247,4.5,1232813444 +574,55269,3.5,1232817524 +574,55276,4.0,1232914589 +574,55290,4.0,1232813362 +574,55765,4.0,1232811019 +574,55805,4.0,1232819217 +574,55820,4.5,1232810402 +574,56152,3.5,1232809638 +574,56367,4.5,1232914522 +574,56782,4.5,1232810855 +574,56788,4.0,1232914660 +574,56921,3.5,1232809970 +574,57640,4.0,1232813685 +574,57669,4.5,1232813441 +574,58295,3.5,1232914785 +574,58559,4.0,1232809909 +574,58998,4.0,1232914635 +574,59315,4.0,1233441492 +574,59369,4.0,1233586784 +574,59784,4.0,1232914491 +574,60069,4.0,1232810370 +574,60072,3.5,1232816438 +574,60074,3.5,1232813694 +574,60950,3.5,1232877553 +574,61024,4.0,1232811573 +574,61132,3.5,1232915338 +574,61323,3.5,1232811577 +574,62344,4.0,1242077078 +574,62434,4.0,1232812882 +574,62999,3.5,1234564085 +574,63082,4.0,1241984052 +574,63113,3.0,1232914865 +574,63131,3.5,1241983855 +574,64614,4.0,1247347819 +574,68358,4.0,1244102540 +575,1,3.0,1012595781 +575,2,4.0,1012598088 +575,7,4.0,1012593981 +575,11,3.0,1012593826 +575,17,5.0,1012593374 +575,28,5.0,1012593423 +575,34,5.0,1012595891 +575,36,3.0,1012604566 +575,39,3.0,1012596049 +575,48,2.0,1012594230 +575,57,3.0,1012606184 +575,62,3.0,1012605059 +575,107,4.0,1012594949 +575,112,4.0,1012598425 +575,148,4.0,1012605106 +575,153,4.0,1012609130 +575,185,2.0,1012607558 +575,207,4.0,1012594088 +575,224,4.0,1018056908 +575,236,3.0,1012593961 +575,237,2.0,1012596984 +575,252,3.0,1012593961 +575,260,5.0,1018057899 +575,261,4.0,1012605465 +575,276,3.0,1018057457 +575,282,3.0,1012606205 +575,303,3.0,1018057676 +575,316,2.0,1018057899 +575,317,3.0,1012596653 +575,318,4.0,1012598899 +575,329,5.0,1018057867 +575,337,3.0,1012604674 +575,339,5.0,1012593894 +575,349,3.0,1012597737 +575,350,3.0,1012606053 +575,351,3.0,1018056791 +575,355,1.0,1018057025 +575,356,2.0,1012596248 +575,357,2.0,1012593616 +575,361,4.0,1012605731 +575,364,3.0,1012594819 +575,377,4.0,1018057832 +575,423,3.0,1012598440 +575,432,2.0,1018056749 +575,440,4.0,1012596375 +575,457,5.0,1018057072 +575,468,4.0,1018056955 +575,490,4.0,1012592163 +575,491,4.0,1012605972 +575,494,4.0,1012598425 +575,497,5.0,1012593579 +575,500,4.0,1012596768 +575,509,3.0,1012593497 +575,515,5.0,1012605299 +575,516,3.0,1012606112 +575,539,3.0,1012593690 +575,541,4.0,1018059066 +575,543,2.0,1018059818 +575,587,2.0,1012596868 +575,588,4.0,1012594819 +575,590,3.0,1012594600 +575,592,3.0,1012597667 +575,594,3.0,1012594748 +575,595,5.0,1012594766 +575,596,4.0,1012606799 +575,608,4.0,1018056990 +575,613,4.0,1012594056 +575,700,4.0,1018056523 +575,708,2.0,1012593894 +575,750,5.0,1018056909 +575,765,2.0,1012606437 +575,830,3.0,1012597024 +575,838,5.0,1018056955 +575,848,4.0,1012605150 +575,861,4.0,1012607272 +575,898,5.0,1012593423 +575,899,5.0,1012593307 +575,900,5.0,1012594766 +575,901,4.0,1012594925 +575,902,3.0,1012593334 +575,905,4.0,1012595762 +575,907,4.0,1012593754 +575,908,4.0,1012592127 +575,909,3.0,1018059066 +575,910,5.0,1012595721 +575,911,4.0,1012593636 +575,912,5.0,1012593307 +575,913,5.0,1012593062 +575,914,4.0,1012593423 +575,915,4.0,1018059588 +575,916,5.0,1012593307 +575,918,4.0,1012594748 +575,919,4.0,1012594748 +575,920,4.0,1012592163 +575,921,3.0,1012596017 +575,924,2.0,1018060119 +575,928,4.0,1018057676 +575,930,4.0,1012593424 +575,932,5.0,1018059772 +575,933,4.0,1012593497 +575,935,3.0,1012594876 +575,937,3.0,1012593961 +575,938,3.0,1012594794 +575,940,5.0,1018060271 +575,941,4.0,1012597684 +575,942,4.0,1012595064 +575,943,3.0,1018057102 +575,945,5.0,1012593334 +575,947,3.0,1012595781 +575,948,3.0,1012604878 +575,952,3.0,1012597648 +575,953,5.0,1012598971 +575,954,4.0,1012604449 +575,963,3.0,1012594925 +575,964,3.0,1012594627 +575,969,5.0,1012593519 +575,971,4.0,1018059392 +575,991,4.0,1012605797 +575,994,5.0,1012599066 +575,1007,1.0,1018056552 +575,1009,3.0,1012598076 +575,1014,2.0,1018057638 +575,1022,4.0,1012594848 +575,1027,3.0,1012606184 +575,1028,2.0,1012594819 +575,1029,4.0,1018056909 +575,1031,3.0,1018056629 +575,1032,4.0,1012606819 +575,1035,2.0,1012594794 +575,1036,4.0,1012598183 +575,1042,3.0,1012596357 +575,1049,4.0,1012597810 +575,1066,5.0,1012593616 +575,1073,4.0,1012595850 +575,1077,4.0,1018057794 +575,1079,3.0,1012595941 +575,1080,4.0,1012595827 +575,1081,2.0,1018058033 +575,1082,3.0,1012604762 +575,1083,3.0,1012594900 +575,1084,2.0,1012598699 +575,1088,3.0,1012594149 +575,1090,3.0,1012604530 +575,1095,3.0,1012604566 +575,1113,3.0,1012597024 +575,1124,3.0,1012605465 +575,1127,3.0,1012592859 +575,1135,2.0,1018057638 +575,1136,5.0,1018059066 +575,1171,4.0,1012595850 +575,1193,3.0,1012604329 +575,1196,4.0,1012597606 +575,1197,5.0,1012593446 +575,1198,5.0,1012597606 +575,1201,5.0,1012594455 +575,1203,4.0,1012604509 +575,1207,5.0,1012604297 +575,1210,4.0,1012592188 +575,1220,5.0,1012594794 +575,1225,3.0,1012598956 +575,1226,4.0,1012595762 +575,1230,4.0,1012593307 +575,1231,3.0,1012604762 +575,1234,4.0,1012595736 +575,1235,5.0,1012595705 +575,1237,4.0,1012604546 +575,1244,4.0,1012604566 +575,1246,3.0,1012605042 +575,1250,3.0,1012599046 +575,1252,4.0,1012595064 +575,1254,5.0,1012597623 +575,1256,5.0,1012595762 +575,1262,4.0,1012597606 +575,1265,2.0,1012593334 +575,1269,4.0,1012595493 +575,1270,3.0,1012595891 +575,1271,5.0,1012605331 +575,1272,3.0,1012604464 +575,1276,5.0,1018056791 +575,1277,4.0,1012593446 +575,1278,4.0,1012595869 +575,1282,5.0,1012594819 +575,1284,4.0,1012595493 +575,1286,4.0,1012593938 +575,1287,3.0,1018056629 +575,1291,3.0,1012598207 +575,1293,4.0,1012604686 +575,1302,5.0,1018056990 +575,1304,4.0,1012594537 +575,1307,2.0,1018058059 +575,1339,4.0,1012594057 +575,1353,3.0,1012594057 +575,1356,5.0,1018057867 +575,1357,4.0,1012593519 +575,1367,2.0,1012596919 +575,1371,1.0,1018057867 +575,1374,4.0,1018057867 +575,1380,3.0,1012594900 +575,1387,4.0,1012598152 +575,1391,1.0,1012597049 +575,1395,1.0,1018057964 +575,1401,3.0,1012605629 +575,1408,3.0,1012593719 +575,1409,2.0,1012594106 +575,1411,5.0,1012604741 +575,1429,4.0,1012598455 +575,1441,4.0,1012596494 +575,1459,5.0,1012595616 +575,1479,2.0,1012594286 +575,1480,2.0,1012605645 +575,1500,5.0,1012595941 +575,1555,4.0,1012598916 +575,1569,2.0,1012593894 +575,1580,1.0,1012596248 +575,1584,2.0,1012604971 +575,1597,4.0,1012594028 +575,1614,5.0,1012596768 +575,1617,3.0,1018057321 +575,1619,3.0,1012605372 +575,1621,3.0,1012606151 +575,1626,1.0,1018056990 +575,1633,4.0,1012604993 +575,1641,3.0,1012596082 +575,1663,4.0,1012596068 +575,1674,5.0,1012593636 +575,1688,3.0,1012595000 +575,1704,3.0,1012604937 +575,1711,3.0,1012595616 +575,1713,3.0,1012596512 +575,1721,1.0,1018057964 +575,1784,5.0,1012596357 +575,1835,2.0,1018056749 +575,1848,2.0,1012596801 +575,1894,3.0,1012594125 +575,1907,3.0,1012606819 +575,1923,1.0,1012596215 +575,1928,3.0,1012594455 +575,1937,3.0,1012596314 +575,1943,3.0,1012606205 +575,1945,4.0,1012598665 +575,1947,3.0,1012593374 +575,1948,5.0,1012596168 +575,1949,3.0,1012599026 +575,1950,4.0,1012604530 +575,1951,3.0,1018060716 +575,1952,2.0,1012598956 +575,1954,3.0,1012598207 +575,1955,3.0,1012604914 +575,1956,4.0,1012604864 +575,1957,5.0,1012604786 +575,1959,3.0,1012593099 +575,1961,4.0,1012604509 +575,1968,3.0,1012596017 +575,2015,3.0,1012596601 +575,2017,2.0,1012595000 +575,2018,3.0,1012606799 +575,2040,3.0,1012597161 +575,2043,3.0,1012597831 +575,2069,5.0,1012605207 +575,2078,4.0,1012595998 +575,2080,5.0,1012593579 +575,2081,3.0,1012593754 +575,2082,2.0,1012597061 +575,2083,5.0,1012594925 +575,2085,4.0,1012606837 +575,2087,3.0,1018060716 +575,2088,4.0,1018057639 +575,2096,4.0,1012594848 +575,2099,3.0,1012594848 +575,2100,3.0,1012593675 +575,2105,4.0,1012597811 +575,2114,3.0,1012605260 +575,2115,2.0,1012598274 +575,2118,2.0,1012607321 +575,2120,3.0,1012605761 +575,2132,2.0,1018059152 +575,2136,3.0,1012596478 +575,2146,3.0,1012594057 +575,2150,4.0,1012596332 +575,2174,2.0,1012596332 +575,2176,2.0,1012607201 +575,2184,2.0,1018058000 +575,2193,5.0,1012597751 +575,2245,4.0,1012596389 +575,2247,2.0,1012596527 +575,2253,4.0,1012598101 +575,2273,4.0,1012607378 +575,2278,2.0,1012598312 +575,2287,1.0,1018057933 +575,2291,4.0,1012593579 +575,2300,5.0,1012595912 +575,2303,3.0,1018060690 +575,2322,2.0,1012597953 +575,2333,3.0,1018058460 +575,2352,4.0,1012595941 +575,2355,4.0,1012592927 +575,2359,5.0,1012595998 +575,2371,3.0,1012596446 +575,2392,1.0,1018057262 +575,2398,4.0,1012598993 +575,2400,2.0,1018057639 +575,2406,4.0,1012593690 +575,2413,1.0,1012596734 +575,2431,2.0,1012597383 +575,2467,2.0,1018060146 +575,2470,3.0,1012592163 +575,2471,2.0,1012597275 +575,2478,3.0,1012594648 +575,2496,4.0,1012594006 +575,2520,3.0,1012606027 +575,2521,2.0,1012606578 +575,2524,2.0,1018057964 +575,2528,3.0,1012597763 +575,2529,3.0,1012598251 +575,2539,3.0,1012596479 +575,2565,3.0,1012594848 +575,2612,2.0,1018058939 +575,2616,3.0,1012598494 +575,2617,2.0,1012597850 +575,2640,4.0,1012598274 +575,2641,4.0,1012597737 +575,2670,4.0,1012593146 +575,2690,5.0,1018058482 +575,2701,2.0,1018058688 +575,2713,3.0,1018058497 +575,2716,5.0,1012593003 +575,2724,4.0,1012593146 +575,2728,3.0,1012604429 +575,2746,3.0,1018060733 +575,2749,4.0,1018060206 +575,2762,4.0,1018057794 +575,2779,5.0,1012596257 +575,2797,4.0,1012595964 +575,2802,2.0,1012594028 +575,2804,5.0,1012595705 +575,2819,3.0,1012607105 +575,2857,3.0,1012594876 +575,2863,3.0,1018057201 +575,2875,3.0,1012594165 +575,2882,4.0,1012593044 +575,2889,4.0,1012596701 +575,2918,4.0,1012595964 +575,2919,3.0,1012593540 +575,2921,3.0,1012594573 +575,2940,2.0,1012608144 +575,2941,4.0,1012594876 +575,2944,3.0,1012598251 +575,2946,3.0,1018060733 +575,2968,5.0,1012597696 +575,2973,5.0,1012595912 +575,2987,5.0,1012593226 +575,3011,2.0,1018058846 +575,3025,3.0,1018060067 +575,3033,2.0,1012596801 +575,3035,5.0,1012596017 +575,3037,4.0,1012594573 +575,3039,1.0,1018058000 +575,3044,5.0,1012595534 +575,3045,3.0,1012596668 +575,3052,3.0,1012596299 +575,3061,4.0,1012596460 +575,3071,4.0,1012604705 +575,3072,4.0,1012596129 +575,3074,3.0,1012594627 +575,3087,4.0,1012596446 +575,3088,5.0,1018057201 +575,3093,2.0,1012594600 +575,3095,4.0,1012599066 +575,3098,5.0,1012604479 +575,3108,5.0,1012593520 +575,3111,5.0,1018057605 +575,3114,5.0,1012593212 +575,3156,2.0,1012606417 +575,3157,5.0,1012593193 +575,3175,5.0,1018057072 +575,3196,4.0,1012604409 +575,3244,4.0,1012596068 +575,3247,2.0,1012596938 +575,3255,5.0,1012596375 +575,3256,3.0,1012598324 +575,3260,5.0,1012604817 +575,3269,2.0,1018057025 +575,3284,5.0,1012593616 +575,3330,3.0,1012604971 +575,3334,4.0,1012598699 +575,3341,4.0,1018059499 +575,3359,5.0,1012604719 +575,3360,4.0,1012604705 +575,3361,3.0,1012595869 +575,3363,4.0,1012605027 +575,3365,5.0,1012594455 +575,3368,5.0,1012593867 +575,3379,4.0,1012604660 +575,3405,3.0,1012605182 +575,3417,3.0,1012597648 +575,3418,3.0,1012598251 +575,3421,3.0,1012595812 +575,3427,2.0,1012598790 +575,3430,1.0,1018056865 +575,3445,2.0,1012595581 +575,3448,3.0,1012596168 +575,3451,4.0,1012596112 +575,3469,4.0,1012604546 +575,3479,2.0,1012593754 +575,3487,3.0,1012594627 +575,3489,2.0,1012597904 +575,3494,2.0,1018058000 +575,3504,2.0,1012598942 +575,3507,4.0,1012595891 +575,3510,4.0,1012593003 +575,3516,3.0,1018056630 +575,3519,4.0,1012607953 +575,3524,3.0,1012593908 +575,3545,2.0,1012607870 +575,3546,2.0,1012605602 +575,3548,3.0,1012595941 +575,3549,4.0,1012594766 +575,3552,4.0,1012596098 +575,3591,4.0,1012596701 +575,3599,4.0,1012594876 +575,3600,4.0,1012595000 +575,3602,2.0,1018057072 +575,3604,3.0,1012594949 +575,3605,2.0,1018060774 +575,3606,5.0,1012593099 +575,3638,2.0,1012598521 +575,3654,3.0,1018057161 +575,3671,4.0,1012594537 +575,3675,5.0,1012594925 +575,3682,2.0,1018057402 +575,3684,5.0,1012605027 +575,3699,3.0,1012593675 +575,3701,3.0,1012598826 +575,3724,4.0,1012605220 +575,3735,3.0,1012604606 +575,3740,3.0,1012598337 +575,3742,3.0,1012605150 +575,3754,1.0,1012592859 +575,3769,3.0,1012598351 +575,3793,1.0,1018058696 +575,3801,3.0,1012595508 +575,3806,3.0,1012594700 +575,3827,3.0,1012598494 +575,3836,5.0,1012596068 +575,3844,3.0,1012605713 +575,3870,3.0,1012605559 +575,3871,4.0,1012594573 +575,3873,4.0,1012594600 +575,3957,1.0,1012606302 +575,3959,3.0,1018060432 +575,3963,3.0,1012594976 +575,3969,4.0,1012605988 +575,3985,3.0,1012606028 +575,3996,3.0,1018059092 +575,4010,2.0,1012596938 +575,4019,4.0,1012604834 +575,4039,3.0,1012594976 +575,4042,2.0,1012605559 +575,4046,5.0,1012604449 +575,4062,3.0,1012593754 +575,4080,3.0,1012596984 +575,4085,2.0,1018060318 +575,4178,4.0,1012605075 +575,4184,3.0,1012596215 +575,4186,4.0,1012593616 +575,4187,4.0,1012604509 +575,4188,3.0,1012594848 +575,4189,4.0,1012605242 +575,4212,3.0,1012598813 +575,4220,3.0,1012595998 +575,4263,4.0,1012604530 +575,4274,2.0,1012606205 +575,4291,4.0,1012596653 +575,4292,3.0,1012604971 +575,4296,2.0,1012606302 +575,4306,5.0,1012598043 +575,4319,3.0,1018060044 +575,4324,3.0,1012594700 +575,4326,3.0,1012604660 +575,4329,3.0,1012594537 +575,4337,3.0,1012593923 +575,4356,4.0,1012593867 +575,4357,4.0,1012596146 +575,4360,3.0,1018060716 +575,4361,5.0,1018057965 +575,4394,1.0,1018056584 +575,4401,4.0,1012596653 +575,4406,4.0,1012594455 +575,4411,3.0,1012594648 +575,4495,3.0,1012593497 +575,4506,3.0,1012595600 +575,4557,3.0,1018058033 +575,4572,2.0,1012598584 +575,4603,3.0,1018057201 +575,4610,3.0,1012595600 +575,4623,3.0,1012596168 +575,4639,2.0,1018056493 +575,4654,1.0,1012606331 +575,4664,3.0,1012595977 +575,4700,3.0,1012597255 +575,4704,4.0,1012592188 +575,4709,4.0,1012594573 +575,4710,3.0,1012594456 +575,4787,4.0,1012605106 +575,4795,4.0,1012595941 +575,4798,4.0,1012593497 +575,4799,5.0,1012596129 +575,4802,5.0,1012592163 +575,4803,2.0,1012607241 +575,4804,3.0,1012596229 +575,4835,4.0,1012605331 +575,4836,3.0,1012593579 +575,4854,2.0,1018060810 +575,4855,2.0,1012598183 +575,4857,3.0,1018060690 +575,4896,5.0,1012597648 +575,4912,3.0,1012605645 +575,4925,1.0,1012596749 +575,4936,4.0,1012594900 +575,4969,3.0,1012595064 +575,4993,5.0,1012597606 +575,5008,4.0,1012595493 +575,5021,3.0,1018060177 +575,5034,5.0,1012593616 +575,5039,2.0,1012598312 +575,5048,3.0,1018061705 +575,5049,2.0,1012592408 +575,5057,2.0,1018060067 +575,5060,3.0,1012607870 +575,5063,2.0,1018060044 +575,5079,3.0,1012592355 +575,5167,4.0,1018059066 +575,5168,4.0,1018059651 +575,5187,4.0,1018059111 +575,5214,4.0,1018058300 +575,5227,1.0,1018058280 +575,5230,4.0,1018058280 +575,5231,4.0,1018058280 +575,5232,4.0,1018058258 +575,5233,4.0,1018058258 +575,5234,4.0,1018058258 +575,5247,1.0,1018058240 +575,5250,3.0,1018058240 +575,5292,3.0,1018058158 +575,5301,5.0,1018058158 +575,5303,2.0,1018058137 +575,5308,3.0,1018058137 +576,260,4.0,1005451404 +576,435,1.0,1005426349 +576,480,4.0,1005451445 +576,541,4.0,1005449771 +576,552,3.0,1005426498 +576,924,4.0,1005450435 +576,1036,3.0,1005450706 +576,1175,4.0,1005451464 +576,1196,4.0,1005426383 +576,1199,3.0,1005451429 +576,1206,4.0,1005426731 +576,1210,4.0,1005426321 +576,1249,4.0,1005450706 +576,1270,4.0,1005426519 +576,1289,4.0,1005450536 +576,1293,5.0,1005426731 +576,1537,5.0,1005451650 +576,1580,4.0,1005451480 +576,1797,4.0,1005426654 +576,1900,4.0,1005450919 +576,1960,4.0,1005426383 +576,2006,4.0,1005426749 +576,2336,4.0,1005451001 +576,2357,4.0,1005450890 +576,2571,4.0,1005450668 +576,2677,5.0,1005450567 +576,2739,4.0,1005426448 +576,2858,5.0,1005450819 +576,2985,3.0,1005426820 +576,3101,2.0,1005426349 +576,3386,5.0,1005450452 +576,3471,4.0,1005451429 +576,3545,5.0,1005426349 +576,3996,4.0,1005426698 +576,4034,2.0,1005449880 +576,4445,3.0,1005426654 +576,4453,3.0,1005426654 +576,4643,3.0,1005426448 +577,1,5.0,1111475159 +577,6,4.0,1111475446 +577,10,3.5,1111475285 +577,17,5.0,1111475431 +577,22,3.0,1111474816 +577,29,5.0,1111476835 +577,32,4.5,1111475206 +577,34,5.0,1111475261 +577,47,4.0,1111475257 +577,48,3.5,1111474754 +577,95,3.5,1111475421 +577,110,4.5,1111475136 +577,111,5.0,1111475492 +577,150,4.5,1111475130 +577,158,1.5,1111474812 +577,161,4.5,1111475331 +577,165,4.5,1111475226 +577,173,4.0,1112854685 +577,208,2.5,1111475419 +577,231,3.5,1111475287 +577,236,4.0,1112854641 +577,247,4.5,1111475786 +577,260,4.5,1111475138 +577,296,5.0,1111475105 +577,316,3.5,1111475236 +577,318,4.5,1111475134 +577,329,4.0,1111475269 +577,342,4.0,1111474751 +577,349,3.5,1111475214 +577,356,4.0,1111475114 +577,357,4.5,1111475347 +577,364,4.0,1111475259 +577,367,3.0,1111475315 +577,368,4.0,1111551385 +577,377,3.5,1111475211 +577,380,4.5,1111475142 +577,434,3.5,1111475327 +577,440,4.0,1111475488 +577,454,3.5,1111475346 +577,457,4.5,1111475122 +577,480,4.0,1111475117 +577,497,5.0,1111550558 +577,500,3.5,1111475291 +577,520,2.5,1111474830 +577,541,5.0,1111475487 +577,585,4.0,1111550561 +577,586,3.5,1111550572 +577,587,3.0,1111475320 +577,588,4.0,1111475203 +577,589,4.5,1111475145 +577,590,3.5,1111475129 +577,593,4.0,1111475109 +577,595,4.5,1111475230 +577,596,4.0,1111474825 +577,597,3.0,1111475282 +577,648,3.5,1111475220 +577,736,3.0,1111475256 +577,780,3.5,1111475148 +577,786,4.0,1112853847 +577,849,3.5,1111550904 +577,858,5.0,1111475278 +577,902,5.0,1111550908 +577,912,5.0,1111550563 +577,919,4.5,1111476558 +577,953,5.0,1111476452 +577,1029,4.5,1111551075 +577,1036,5.0,1111477126 +577,1073,4.0,1111475348 +577,1079,5.0,1111551518 +577,1090,3.5,1111474706 +577,1097,5.0,1111475317 +577,1126,3.5,1111475819 +577,1127,4.0,1111476748 +577,1131,5.0,1111550861 +577,1132,5.0,1111550870 +577,1136,5.0,1111475494 +577,1148,5.0,1111474870 +577,1179,4.0,1111475576 +577,1188,5.0,1111551099 +577,1196,5.0,1111475239 +577,1197,5.0,1111475427 +577,1198,5.0,1111475263 +577,1199,5.0,1111551470 +577,1200,5.0,1112853860 +577,1203,5.0,1111476456 +577,1204,5.0,1111474821 +577,1210,4.5,1111475201 +577,1213,4.5,1111550502 +577,1215,5.0,1111476822 +577,1222,5.0,1111551128 +577,1223,5.0,1111550866 +577,1234,4.5,1111476482 +577,1240,5.0,1111475442 +577,1242,5.0,1111477138 +577,1259,5.0,1111476702 +577,1262,5.0,1111476318 +577,1263,5.0,1111550856 +577,1265,4.5,1111475470 +577,1266,4.0,1111474763 +577,1270,5.0,1111475271 +577,1274,5.0,1111476819 +577,1275,5.0,1111476749 +577,1282,5.0,1111476598 +577,1287,5.0,1111476684 +577,1290,4.5,1111550876 +577,1291,5.0,1111475489 +577,1302,4.0,1111551125 +577,1307,4.5,1127368620 +577,1350,4.0,1127368614 +577,1356,4.5,1111551108 +577,1370,4.5,1111550518 +577,1374,5.0,1111476732 +577,1378,4.0,1111550815 +577,1380,4.0,1112853777 +577,1408,3.0,1111474848 +577,1425,4.0,1111551525 +577,1485,4.0,1111551149 +577,1527,5.0,1111551437 +577,1588,4.0,1111551529 +577,1597,4.0,1111551141 +577,1610,5.0,1111550506 +577,1641,4.5,1127368635 +577,1674,5.0,1111476440 +577,1676,4.0,1111551152 +577,1682,5.0,1111550522 +577,1702,3.5,1111475874 +577,1704,5.0,1111551157 +577,1707,1.5,1111551899 +577,1721,3.5,1111475437 +577,1748,5.0,1111475520 +577,1907,4.5,1127368655 +577,1920,4.0,1111475915 +577,1954,5.0,1111551182 +577,1955,4.5,1127368642 +577,1957,5.0,1111550817 +577,1960,4.5,1127368648 +577,1967,5.0,1111475776 +577,2000,4.5,1127368650 +577,2001,3.5,1111474851 +577,2005,4.5,1111475721 +577,2021,4.0,1111475980 +577,2028,4.5,1111475323 +577,2053,2.5,1111551972 +577,2054,3.5,1111474818 +577,2078,5.0,1111550822 +577,2081,4.5,1111474854 +577,2087,4.5,1111475705 +577,2105,4.0,1111475982 +577,2116,4.0,1111550776 +577,2137,4.5,1111476604 +577,2138,4.5,1111475711 +577,2140,4.5,1111475760 +577,2161,4.5,1111550782 +577,2174,4.5,1111475757 +577,2194,4.5,1127368660 +577,2253,3.5,1111475871 +577,2288,5.0,1111550770 +577,2353,3.5,1111474840 +577,2355,4.5,1127368675 +577,2380,1.5,1111551946 +577,2382,0.5,1111551906 +577,2396,4.5,1111475477 +577,2405,4.0,1111550797 +577,2470,4.0,1111550512 +577,2571,4.5,1111475335 +577,2617,4.0,1111550493 +577,2628,4.0,1111475472 +577,2692,5.0,1111550489 +577,2716,4.5,1111475496 +577,2728,5.0,1111476399 +577,2762,5.0,1111475439 +577,2788,5.0,1111476460 +577,2797,4.5,1111475686 +577,2858,5.0,1111475276 +577,2872,5.0,1111475708 +577,2918,5.0,1111476325 +577,2942,4.0,1111550730 +577,2947,5.0,1111550743 +577,2968,5.0,1111475660 +577,2987,4.5,1111475566 +577,2991,4.5,1111550734 +577,3000,5.0,1111476720 +577,3034,5.0,1111476546 +577,3062,5.0,1111550723 +577,3101,4.0,1111550497 +577,3105,4.5,1111550679 +577,3108,5.0,1111550701 +577,3114,5.0,1111476316 +577,3174,4.5,1111551313 +577,3175,5.0,1111476814 +577,3247,4.5,1111550675 +577,3252,4.5,1111550663 +577,3396,4.5,1111476555 +577,3479,4.5,1111475721 +577,3489,2.0,1111475939 +577,3505,5.0,1111550685 +577,3526,5.0,1111550662 +577,3552,5.0,1111550628 +577,3654,5.0,1111476391 +577,3686,4.5,1111550640 +577,3698,4.0,1111550646 +577,3702,5.0,1111551371 +577,3723,4.5,1111551379 +577,3751,5.0,1111476592 +577,3977,4.0,1111550499 +577,3996,5.0,1111476682 +577,3997,3.0,1111475817 +577,4016,5.0,1111550650 +577,4027,5.0,1111476748 +577,4275,4.0,1111475955 +577,4299,4.0,1111550630 +577,4306,5.0,1111475674 +577,4467,5.0,1111475779 +577,4571,4.0,1111475772 +577,4673,3.0,1111551024 +577,4776,4.0,1111551033 +577,4886,5.0,1111477112 +577,4896,4.5,1111475690 +577,4911,4.0,1111551486 +577,4915,3.5,1111475908 +577,4941,4.0,1111475950 +577,4963,4.5,1111550525 +577,4981,4.5,1111551522 +577,4993,5.0,1111475671 +577,5040,4.0,1111475906 +577,5146,4.5,1111475753 +577,5152,5.0,1111551377 +577,5182,3.5,1111475926 +577,5218,4.5,1118023303 +577,5349,4.5,1111476691 +577,5378,4.5,1111550593 +577,5444,5.0,1111476589 +577,5502,4.0,1111551392 +577,5540,4.5,1111475979 +577,5597,1.0,1111551889 +577,5618,5.0,1111475644 +577,5705,2.0,1111475890 +577,5816,4.5,1111475687 +577,5952,5.0,1111474857 +577,5971,5.0,1111475652 +577,6104,5.0,1111551833 +577,6333,4.5,1111476707 +577,6350,5.0,1111475647 +577,6373,4.5,1111551309 +577,6377,5.0,1111476533 +577,6405,5.0,1111476736 +577,6539,5.0,1111476327 +577,6743,5.0,1111475699 +577,6807,5.0,1111551469 +577,6936,4.5,1111475750 +577,6947,5.0,1111476730 +577,6951,2.5,1111551247 +577,7007,4.0,1111551448 +577,7045,4.5,1111475748 +577,7153,5.0,1111475667 +577,7247,4.0,1111475945 +577,7256,5.0,1111551681 +577,7355,5.0,1111551552 +577,7361,5.0,1111476454 +577,7386,5.0,1111476699 +577,7454,4.0,1111475902 +577,7569,5.0,1111476697 +577,7720,5.0,1111476320 +577,8360,5.0,1111476539 +577,8368,4.5,1111475640 +577,8387,1.0,1111551856 +577,8622,3.5,1111551742 +577,8665,5.0,1111476692 +577,8783,4.0,1111551415 +577,8949,5.0,1111476687 +577,8961,5.0,1111476312 +577,8970,5.0,1111476333 +577,26555,4.5,1112854747 +577,27721,5.0,1127368993 +577,27790,5.0,1127368939 +577,30812,4.5,1111476706 +577,32596,4.0,1120088726 +577,33004,5.0,1120088585 +577,33493,5.0,1117863966 +578,17,3.0,1418984606 +578,50,0.5,1418984412 +578,318,3.0,1418984381 +578,356,2.0,1418984486 +578,381,2.5,1418984960 +578,527,3.0,1418984384 +578,593,4.0,1418984464 +578,858,4.0,1418984467 +578,1028,4.0,1418984779 +578,1196,0.5,1418984415 +578,1198,1.0,1418984393 +578,1246,3.0,1418984521 +578,1259,4.0,1418984474 +578,1262,0.5,1418984409 +578,2028,0.5,1418984418 +578,2324,4.0,1418984387 +578,2959,3.5,1418984545 +578,3545,1.5,1418984662 +578,3949,2.5,1418984571 +578,5014,3.0,1418984950 +578,6377,4.0,1418984966 +578,6870,3.0,1418984676 +578,7154,3.0,1418984891 +578,8533,3.0,1418984717 +578,30707,2.5,1418984549 +578,33660,3.0,1418984529 +578,63082,5.0,1418984551 +578,63876,2.5,1418984658 +578,74458,5.0,1418984633 +578,79132,2.0,1418984505 +578,89388,0.5,1418985038 +578,90376,2.0,1418985032 +578,91500,3.0,1418985052 +578,92259,4.0,1418984470 +579,65,0.5,1325550979 +579,88,0.5,1325550977 +579,1013,2.0,1325551011 +579,1687,0.5,1325550995 +579,1892,0.5,1325551013 +579,2082,0.5,1325550999 +579,2139,0.5,1325551004 +579,2141,0.5,1325551002 +579,2193,0.5,1325550911 +579,2402,0.5,1325550987 +579,2571,3.0,1325551184 +579,2664,0.5,1325551015 +579,2694,2.0,1325550929 +579,3298,0.5,1325551007 +579,3827,0.5,1325550972 +579,3991,2.5,1325551081 +579,4016,0.5,1325550974 +579,4226,3.5,1325551191 +579,5015,0.5,1325550976 +579,55250,3.5,1325551085 +579,91104,4.5,1325551251 +580,1,4.0,1155616380 +580,2,3.5,1165900696 +580,6,3.5,1156473327 +580,12,3.0,1276095731 +580,16,3.5,1167158213 +580,19,1.5,1167157922 +580,21,3.0,1167157502 +580,22,1.5,1167161268 +580,24,2.5,1167162836 +580,29,4.0,1155618177 +580,32,4.5,1155616561 +580,39,4.0,1155875901 +580,44,2.0,1167162169 +580,47,4.0,1155616730 +580,48,2.5,1167159829 +580,50,4.0,1155616536 +580,52,2.5,1167161304 +580,60,3.0,1167163380 +580,69,3.5,1273518992 +580,70,2.5,1165292373 +580,85,4.0,1155485539 +580,101,4.0,1165900819 +580,104,3.0,1165900726 +580,110,4.5,1155485834 +580,111,4.5,1155485961 +580,112,3.5,1155484637 +580,141,2.5,1165899805 +580,145,2.0,1167161239 +580,147,4.5,1156127875 +580,152,3.5,1165292250 +580,153,2.0,1165899265 +580,159,4.0,1156128494 +580,160,1.5,1155484508 +580,162,3.0,1167163237 +580,164,3.0,1156127872 +580,172,2.5,1247074413 +580,173,2.5,1155484586 +580,175,3.5,1273518810 +580,180,3.0,1156127390 +580,186,1.0,1167160136 +580,193,1.5,1167163050 +580,196,3.0,1156127374 +580,203,2.0,1167163468 +580,208,2.0,1165899846 +580,216,2.5,1167162881 +580,223,2.5,1155616451 +580,231,3.0,1164328548 +580,235,3.5,1167158336 +580,249,3.5,1167163527 +580,253,3.0,1165291982 +580,260,4.0,1220561536 +580,282,2.5,1167160158 +580,288,4.5,1165900133 +580,292,3.0,1165899527 +580,293,3.0,1165900495 +580,296,4.5,1155616328 +580,316,2.5,1165899218 +580,317,1.5,1167162476 +580,318,4.0,1155616320 +580,329,2.0,1248183692 +580,337,4.0,1156128975 +580,342,3.0,1167160191 +580,344,3.0,1164328494 +580,345,2.0,1167161595 +580,353,4.0,1155484518 +580,356,3.5,1220561614 +580,357,3.5,1167157127 +580,364,3.5,1164328528 +580,367,2.5,1155484801 +580,368,1.5,1167158317 +580,370,2.5,1156128966 +580,372,4.0,1217951351 +580,377,2.5,1155616938 +580,380,2.5,1165899479 +580,407,2.0,1165292442 +580,410,2.5,1165900566 +580,412,3.5,1156127831 +580,434,2.0,1245423895 +580,435,2.5,1167158760 +580,441,4.0,1167163149 +580,442,3.5,1269895001 +580,444,3.5,1156128478 +580,454,3.0,1167157098 +580,466,3.0,1167162508 +580,480,3.0,1155616549 +580,500,3.5,1164328541 +580,502,1.5,1168658737 +580,508,2.0,1165900665 +580,520,1.5,1167159629 +580,527,4.0,1155485728 +580,538,3.0,1167163496 +580,539,1.5,1165899681 +580,540,1.5,1167163583 +580,541,4.0,1155616398 +580,551,4.0,1156127349 +580,553,4.0,1156127346 +580,555,3.5,1167159391 +580,585,3.0,1167164575 +580,587,2.5,1165899633 +580,588,2.5,1164328485 +580,589,4.5,1155616775 +580,590,4.0,1155485871 +580,592,3.5,1164328460 +580,593,4.0,1155485714 +580,594,4.0,1165900718 +580,595,3.0,1156127222 +580,596,3.5,1246469356 +580,597,3.0,1164328536 +580,608,4.5,1155616640 +580,610,3.5,1165292379 +580,616,3.5,1165291186 +580,648,2.5,1244827122 +580,653,2.0,1155484561 +580,661,4.0,1165291053 +580,671,4.0,1156127811 +580,673,1.0,1167162720 +580,674,3.5,1217951064 +580,704,2.0,1168658729 +580,708,2.5,1156128944 +580,725,2.5,1155616618 +580,733,2.5,1155616903 +580,735,3.0,1165292010 +580,736,2.0,1164328519 +580,741,3.5,1155617895 +580,750,4.5,1155616283 +580,762,1.0,1167161140 +580,778,4.5,1155485120 +580,780,3.0,1155616407 +580,785,3.5,1167160783 +580,788,3.0,1155485044 +580,802,2.0,1155485029 +580,832,2.5,1167158112 +580,849,1.5,1167163030 +580,858,5.0,1155485717 +580,861,3.0,1217951422 +580,866,2.5,1155485150 +580,880,2.5,1167163510 +580,899,4.0,1167162203 +580,902,2.5,1167161939 +580,903,3.5,1245426611 +580,905,4.0,1217950312 +580,908,4.0,1202071687 +580,912,4.0,1155485764 +580,913,3.5,1245159255 +580,919,4.0,1165899963 +580,920,2.5,1155484536 +580,923,3.0,1155484522 +580,924,3.0,1165900014 +580,940,3.0,1156127777 +580,953,3.5,1165900802 +580,968,3.0,1165291901 +580,969,3.5,1167160946 +580,1022,3.5,1167162871 +580,1025,3.5,1156127762 +580,1027,2.5,1156127756 +580,1028,3.5,1167159336 +580,1032,4.0,1165291033 +580,1033,3.5,1156127751 +580,1034,4.5,1250522647 +580,1035,3.0,1155485887 +580,1036,3.0,1165899710 +580,1059,3.5,1167161452 +580,1060,4.5,1155617960 +580,1073,3.5,1155484793 +580,1077,2.5,1167163119 +580,1079,3.5,1155616304 +580,1080,3.5,1155616736 +580,1084,3.5,1167160970 +580,1088,3.0,1167161194 +580,1089,4.0,1155616496 +580,1090,4.0,1167158352 +580,1091,3.0,1156127745 +580,1092,3.5,1155485673 +580,1093,3.5,1167163169 +580,1094,2.5,1155616876 +580,1097,4.0,1165899201 +580,1101,3.0,1165900368 +580,1120,3.5,1155485018 +580,1127,3.5,1165900541 +580,1129,2.0,1167162787 +580,1130,3.0,1165292407 +580,1136,4.0,1155616657 +580,1172,4.0,1167162822 +580,1175,4.0,1155617337 +580,1183,4.0,1155485903 +580,1186,2.5,1167163228 +580,1190,3.0,1156128413 +580,1193,4.0,1155484788 +580,1194,3.0,1156128393 +580,1196,4.0,1220561546 +580,1197,4.0,1155616622 +580,1198,3.5,1244826940 +580,1199,4.5,1155616882 +580,1200,3.5,1155616949 +580,1204,4.0,1167159343 +580,1206,4.5,1155616739 +580,1207,3.5,1167158831 +580,1208,4.5,1155616352 +580,1210,3.5,1220561547 +580,1213,3.5,1165899864 +580,1214,4.0,1155616566 +580,1215,4.5,1165291920 +580,1217,4.5,1155618021 +580,1219,3.0,1165291724 +580,1220,4.0,1155485004 +580,1221,4.0,1155485722 +580,1222,4.5,1155616241 +580,1225,3.5,1155485742 +580,1228,3.5,1155616747 +580,1230,4.0,1155484573 +580,1234,3.5,1167158363 +580,1235,3.0,1167163097 +580,1240,3.5,1155616334 +580,1241,3.0,1165292093 +580,1242,3.5,1167159816 +580,1246,3.5,1165900324 +580,1247,4.0,1155485000 +580,1249,4.0,1155618433 +580,1250,4.0,1167158815 +580,1252,4.0,1155616461 +580,1257,4.0,1155618153 +580,1258,3.5,1165900292 +580,1259,4.5,1155616832 +580,1261,4.0,1165291857 +580,1265,3.5,1155616344 +580,1266,2.5,1155484988 +580,1268,4.0,1155485402 +580,1270,3.0,1155616690 +580,1271,2.0,1167162794 +580,1272,4.0,1155485751 +580,1273,2.0,1156128371 +580,1274,4.0,1155618314 +580,1275,3.0,1155616494 +580,1281,4.0,1220646568 +580,1282,3.5,1167160410 +580,1284,4.0,1155618084 +580,1285,4.0,1167160481 +580,1288,4.0,1165900779 +580,1291,3.5,1244826932 +580,1296,4.0,1167163216 +580,1300,4.0,1199492033 +580,1304,3.0,1165900480 +580,1307,3.0,1167157198 +580,1320,3.5,1165292674 +580,1321,3.5,1165292156 +580,1333,4.0,1165291888 +580,1339,3.0,1167162076 +580,1342,3.0,1165292827 +580,1343,3.5,1155484991 +580,1347,3.0,1273517678 +580,1348,4.0,1165291739 +580,1356,2.5,1273517190 +580,1358,4.0,1167158244 +580,1367,3.0,1167162893 +580,1370,2.0,1167162521 +580,1371,2.5,1247147420 +580,1372,3.0,1245426686 +580,1373,3.0,1245158072 +580,1374,3.5,1244826709 +580,1375,3.0,1244826711 +580,1376,3.5,1245158069 +580,1377,3.5,1167159316 +580,1378,3.5,1273517822 +580,1380,3.5,1156127284 +580,1387,3.5,1155616411 +580,1391,2.5,1155616478 +580,1393,3.5,1155616356 +580,1394,4.0,1155616517 +580,1396,2.5,1167158389 +580,1405,1.5,1167162249 +580,1407,2.5,1167157850 +580,1408,3.5,1245426601 +580,1441,3.0,1167163606 +580,1464,3.0,1155485458 +580,1476,3.5,1155485385 +580,1485,3.5,1155484596 +580,1500,3.0,1167157885 +580,1513,3.0,1167161951 +580,1517,3.5,1165899664 +580,1527,3.5,1155616836 +580,1541,2.0,1156128355 +580,1544,2.5,1165900672 +580,1562,1.5,1167161829 +580,1569,2.0,1167160045 +580,1573,2.5,1155616633 +580,1580,2.5,1155616422 +580,1587,3.5,1167163489 +580,1617,4.5,1155616665 +580,1619,3.5,1273518804 +580,1625,4.0,1167162544 +580,1635,4.0,1155875971 +580,1639,3.5,1155616705 +580,1641,3.0,1165900143 +580,1645,3.0,1155484976 +580,1653,3.0,1155484591 +580,1663,3.0,1155485128 +580,1673,4.0,1155485154 +580,1674,3.5,1156128890 +580,1676,3.5,1155484971 +580,1680,1.5,1167163368 +580,1682,4.5,1155616465 +580,1690,3.5,1155484966 +580,1701,3.0,1156127718 +580,1704,3.5,1155616457 +580,1721,3.5,1155485661 +580,1729,3.0,1155484960 +580,1732,4.0,1155616693 +580,1748,1.5,1167159980 +580,1777,4.0,1167158019 +580,1784,4.5,1155616253 +580,1801,2.0,1273518177 +580,1805,2.5,1167164389 +580,1809,3.5,1168658352 +580,1831,1.5,1167163195 +580,1876,3.0,1167158282 +580,1882,1.5,1167163244 +580,1884,3.5,1273517935 +580,1907,3.0,1167163202 +580,1909,4.0,1165291405 +580,1911,1.5,1167163348 +580,1912,2.5,1220647154 +580,1917,3.0,1165899614 +580,1920,1.0,1156127706 +580,1923,4.0,1155616931 +580,1945,4.0,1155485768 +580,1952,4.0,1155616867 +580,1954,4.5,1155485841 +580,1961,4.0,1155485772 +580,1965,4.0,1167163330 +580,1967,3.5,1167163137 +580,1968,4.0,1165900843 +580,1994,2.5,1167160770 +580,1997,3.5,1155484956 +580,2001,3.5,1245424504 +580,2003,3.0,1165292365 +580,2004,2.5,1156127689 +580,2005,2.5,1269895353 +580,2006,1.5,1167158414 +580,2010,4.0,1165900757 +580,2011,2.5,1165899836 +580,2012,1.5,1167162463 +580,2018,3.5,1165291121 +580,2019,4.5,1155484937 +580,2021,3.0,1167160865 +580,2023,3.5,1167159549 +580,2027,2.0,1156128270 +580,2028,4.0,1155616237 +580,2033,3.0,1165291197 +580,2054,2.0,1167157701 +580,2064,4.0,1217951579 +580,2076,4.0,1155485280 +580,2078,3.5,1269895517 +580,2080,3.5,1155484949 +580,2081,3.5,1155484931 +580,2085,3.5,1165291304 +580,2089,3.0,1156128261 +580,2094,2.5,1167163265 +580,2100,3.0,1165900676 +580,2105,4.0,1167160214 +580,2108,4.0,1167161278 +580,2109,4.0,1167163354 +580,2115,2.0,1244826935 +580,2116,4.0,1165291278 +580,2119,3.0,1156128256 +580,2124,3.0,1165292247 +580,2134,3.5,1273518162 +580,2138,3.5,1165291022 +580,2139,3.5,1156127678 +580,2140,3.5,1156127672 +580,2141,3.5,1273518901 +580,2144,4.0,1167161399 +580,2145,3.5,1217950576 +580,2150,3.5,1167160981 +580,2161,4.0,1167160082 +580,2167,3.0,1156128872 +580,2174,3.5,1155484914 +580,2193,3.5,1167160343 +580,2194,4.0,1155616723 +580,2195,2.0,1156128233 +580,2248,4.5,1155617271 +580,2273,3.5,1167160376 +580,2275,4.0,1244826643 +580,2287,3.0,1156128214 +580,2289,4.0,1167162771 +580,2291,4.0,1155484912 +580,2294,3.0,1165291170 +580,2297,3.5,1156127666 +580,2302,3.5,1156127255 +580,2324,4.0,1155484909 +580,2329,4.5,1155617431 +580,2335,3.0,1273518145 +580,2352,4.0,1167161729 +580,2355,3.5,1165291126 +580,2363,3.0,1217951014 +580,2366,4.0,1165291877 +580,2371,3.5,1273517868 +580,2373,3.0,1156128197 +580,2378,2.5,1273518129 +580,2394,2.5,1273517919 +580,2395,4.0,1165900586 +580,2396,3.5,1155485203 +580,2405,3.0,1167163455 +580,2406,3.5,1155484631 +580,2420,3.0,1167163160 +580,2421,2.5,1156127658 +580,2422,1.5,1168658732 +580,2467,4.0,1155485192 +580,2470,3.0,1155484901 +580,2478,3.5,1273517882 +580,2502,4.5,1155616917 +580,2529,3.0,1165900550 +580,2540,2.5,1156128165 +580,2541,1.5,1167161511 +580,2542,4.0,1165900980 +580,2571,4.5,1220561591 +580,2572,2.0,1167159571 +580,2580,1.0,1155616848 +580,2582,3.0,1156128848 +580,2596,3.0,1217950812 +580,2599,4.0,1165900078 +580,2600,1.5,1273518537 +580,2609,4.0,1168658443 +580,2617,1.5,1165900206 +580,2628,2.0,1165899163 +580,2640,3.0,1167157348 +580,2641,3.0,1167161359 +580,2657,3.0,1165292571 +580,2662,4.0,1165292204 +580,2683,3.0,1165899727 +580,2687,2.0,1273518662 +580,2693,3.5,1248118078 +580,2694,3.5,1167160424 +580,2699,3.0,1165292693 +580,2700,4.0,1165291037 +580,2701,2.5,1156127238 +580,2706,3.5,1155485649 +580,2710,2.0,1165292714 +580,2716,3.5,1155616539 +580,2717,2.0,1167162116 +580,2720,2.0,1273519233 +580,2722,2.5,1269895650 +580,2723,3.0,1167162916 +580,2762,4.0,1155616829 +580,2770,3.5,1155484890 +580,2787,3.0,1165292856 +580,2789,2.0,1165292887 +580,2791,3.0,1155616543 +580,2793,2.0,1168657891 +580,2797,3.5,1155616231 +580,2804,4.0,1155617750 +580,2826,3.5,1165292654 +580,2858,4.5,1155485102 +580,2862,4.0,1156128825 +580,2872,3.5,1167163408 +580,2890,4.0,1155484884 +580,2905,4.0,1155617834 +580,2916,4.0,1244827901 +580,2918,4.0,1155616686 +580,2924,4.5,1168658537 +580,2947,3.5,1155618092 +580,2959,5.0,1155616676 +580,2968,3.0,1155484878 +580,2976,4.5,1156127613 +580,2985,3.5,1155484872 +580,2986,3.0,1273518679 +580,2987,3.0,1155616490 +580,2997,2.5,1155484868 +580,3000,4.0,1155617735 +580,3005,2.0,1167163458 +580,3016,3.0,1165292312 +580,3018,3.0,1155485289 +580,3019,4.0,1273519272 +580,3020,3.0,1167163594 +580,3022,4.0,1164328870 +580,3030,4.5,1155617490 +580,3033,3.5,1167158607 +580,3039,3.5,1167159895 +580,3052,3.5,1165900331 +580,3071,3.0,1220647175 +580,3081,3.0,1167158160 +580,3087,3.5,1156127597 +580,3091,4.0,1156128814 +580,3107,3.5,1167161709 +580,3108,4.5,1167160755 +580,3113,3.0,1273518562 +580,3114,4.0,1155484863 +580,3134,4.0,1156128147 +580,3168,3.5,1155617383 +580,3175,3.0,1250522843 +580,3210,3.5,1155485111 +580,3253,3.0,1155616387 +580,3254,3.0,1156127585 +580,3256,3.0,1167159367 +580,3257,1.5,1167163600 +580,3263,4.0,1273518138 +580,3267,4.0,1273519042 +580,3275,3.5,1273517965 +580,3300,3.5,1249399202 +580,3307,3.5,1156128119 +580,3310,4.0,1168658398 +580,3317,4.0,1220647079 +580,3328,4.5,1244826684 +580,3340,3.5,1165292811 +580,3355,3.0,1156127576 +580,3396,4.0,1220647149 +580,3408,2.5,1165899841 +580,3421,3.5,1155484853 +580,3424,3.5,1165900785 +580,3448,4.0,1156128762 +580,3462,4.0,1155617947 +580,3471,3.5,1269895172 +580,3476,4.0,1155617381 +580,3479,3.0,1273519210 +580,3481,4.5,1155616671 +580,3489,3.0,1167160453 +580,3499,3.0,1156127229 +580,3521,3.0,1156128100 +580,3527,3.5,1155616662 +580,3535,4.0,1269895633 +580,3550,3.0,1165292434 +580,3552,3.5,1167159596 +580,3578,4.0,1155485851 +580,3593,1.0,1273519247 +580,3615,3.0,1165291208 +580,3624,3.5,1167160548 +580,3671,4.0,1155617921 +580,3676,3.5,1165292097 +580,3686,3.0,1165292342 +580,3692,3.0,1168657941 +580,3698,3.0,1167162043 +580,3703,3.5,1167159416 +580,3740,3.5,1273518844 +580,3745,2.0,1273518578 +580,3751,3.5,1165291025 +580,3793,4.0,1155616907 +580,3809,3.0,1167162058 +580,3826,2.0,1167160639 +580,3863,3.0,1167159645 +580,3868,3.5,1167160320 +580,3897,4.0,1155485097 +580,3911,4.0,1165900811 +580,3916,4.0,1167160475 +580,3917,3.5,1165292389 +580,3948,2.5,1269895083 +580,3969,1.5,1167164408 +580,3972,4.5,1168658500 +580,3977,2.5,1165899372 +580,3986,3.0,1246034723 +580,3988,2.5,1273518532 +580,3993,4.0,1155485244 +580,3994,4.0,1155484849 +580,3996,3.0,1155616626 +580,3997,0.5,1156128034 +580,4002,3.0,1167159797 +580,4011,3.5,1155616697 +580,4015,3.5,1156127548 +580,4016,3.5,1156127499 +580,4025,2.0,1167162947 +580,4027,4.0,1155616613 +580,4036,3.5,1165291955 +580,4069,2.5,1156127492 +580,4085,3.5,1156127216 +580,4101,4.5,1167160932 +580,4102,4.0,1220647226 +580,4103,4.5,1155618489 +580,4105,4.0,1218138552 +580,4128,4.0,1165292211 +580,4213,2.5,1165292898 +580,4214,3.0,1155485667 +580,4247,4.0,1156128007 +580,4262,4.0,1155617753 +580,4275,3.0,1247491395 +580,4306,4.0,1155616668 +580,4308,4.0,1165900174 +580,4321,2.5,1167159161 +580,4344,2.0,1156127481 +580,4370,3.5,1165900431 +580,4387,2.0,1156128001 +580,4438,4.0,1168657915 +580,4440,4.0,1168658706 +580,4467,2.5,1217950669 +580,4499,3.5,1167163635 +580,4541,3.0,1156128673 +580,4571,3.0,1165900887 +580,4614,3.0,1168658724 +580,4624,2.5,1156128668 +580,4638,1.5,1167159528 +580,4641,3.5,1156127450 +580,4642,3.5,1155617375 +580,4643,2.5,1165900904 +580,4701,3.5,1273518616 +580,4718,3.0,1167163360 +580,4720,2.0,1167158505 +580,4734,2.5,1167159681 +580,4816,4.5,1167159723 +580,4846,4.0,1168658567 +580,4855,3.0,1167160252 +580,4865,3.5,1165291434 +580,4878,5.0,1155616414 +580,4881,4.0,1167162272 +580,4886,4.0,1155484618 +580,4887,2.0,1217951339 +580,4896,3.5,1168657822 +580,4911,2.0,1217950687 +580,4963,1.5,1167156856 +580,4973,4.5,1155616952 +580,4979,4.0,1155617364 +580,4993,4.5,1155616593 +580,4995,4.0,1155485813 +580,5002,2.0,1165291225 +580,5010,3.5,1156127435 +580,5041,3.0,1165291244 +580,5042,1.0,1217951137 +580,5047,4.5,1156128633 +580,5064,2.5,1167160889 +580,5128,2.0,1156128623 +580,5135,3.0,1156127970 +580,5146,3.5,1165291006 +580,5218,2.5,1245424335 +580,5219,2.5,1276525178 +580,5254,3.0,1165292281 +580,5299,4.0,1167157261 +580,5349,4.5,1155616434 +580,5378,2.5,1165899173 +580,5445,3.0,1155484601 +580,5459,3.0,1165900423 +580,5477,3.0,1217951042 +580,5481,3.0,1167157998 +580,5489,3.5,1165291842 +580,5500,3.5,1220647292 +580,5502,0.5,1165291382 +580,5507,0.5,1167161334 +580,5540,3.5,1156127933 +580,5618,4.5,1155617194 +580,5669,4.0,1165899592 +580,5673,4.0,1165900838 +580,5690,4.0,1155617198 +580,5782,4.0,1155617165 +580,5810,3.5,1167161309 +580,5816,3.0,1168657783 +580,5902,4.5,1155485100 +580,5952,4.0,1202071639 +580,6013,1.0,1168658139 +580,6016,3.0,1155617143 +580,6062,3.0,1217950965 +580,6095,2.5,1167159297 +580,6156,2.5,1217951273 +580,6283,3.5,1165290947 +580,6333,4.5,1202071483 +580,6350,3.5,1155617729 +580,6365,3.0,1165899503 +580,6377,4.0,1155617745 +580,6440,4.0,1155617357 +580,6502,4.0,1165291933 +580,6503,2.0,1156127415 +580,6537,3.5,1165900518 +580,6539,3.0,1155616473 +580,6565,3.5,1165900855 +580,6618,4.0,1156127921 +580,6620,4.0,1155617916 +580,6659,2.5,1165292225 +580,6711,4.5,1155484808 +580,6713,3.0,1165290929 +580,6721,4.0,1155618194 +580,6722,4.0,1168658363 +580,6731,3.0,1165292143 +580,6754,3.0,1165292621 +580,6755,4.0,1217951093 +580,6773,3.0,1218138240 +580,6796,4.0,1155617668 +580,6807,4.0,1155617853 +580,6820,2.5,1165292170 +580,6857,3.5,1155618124 +580,6863,3.0,1218137186 +580,6874,3.5,1155617217 +580,6889,2.5,1156128567 +580,6934,2.0,1156129136 +580,6936,3.5,1165291448 +580,6942,3.0,1273517753 +580,6947,4.0,1165900254 +580,6961,4.0,1155485620 +580,6966,2.5,1156128550 +580,6979,3.5,1273518956 +580,6987,3.0,1168658242 +580,6991,3.5,1156129109 +580,7004,3.0,1167161995 +580,7036,3.0,1168657950 +580,7056,4.0,1155618262 +580,7090,4.5,1155617235 +580,7099,3.5,1155617264 +580,7123,4.0,1218138283 +580,7147,4.0,1167157050 +580,7153,4.5,1155485733 +580,7156,4.0,1155617844 +580,7160,4.0,1167160712 +580,7192,2.0,1165899928 +580,7236,2.0,1244827086 +580,7266,3.0,1280336865 +580,7307,4.0,1155485418 +580,7361,4.5,1155617159 +580,7373,3.0,1165292237 +580,7411,1.0,1167161742 +580,7438,3.5,1155617679 +580,7481,3.0,1156128543 +580,7482,4.0,1155617797 +580,7738,3.5,1167158678 +580,7766,4.0,1155617773 +580,7844,3.0,1168658309 +580,7892,2.0,1217950866 +580,7899,3.0,1220561822 +580,7925,3.5,1155617555 +580,7951,2.5,1165292538 +580,8138,3.0,1165900169 +580,8157,3.0,1155617998 +580,8360,3.0,1165291014 +580,8368,4.0,1168657819 +580,8370,4.0,1199493111 +580,8371,3.5,1276095753 +580,8376,4.5,1167158182 +580,8528,4.0,1156129061 +580,8607,3.0,1165290913 +580,8622,2.0,1165899695 +580,8636,4.0,1155618201 +580,8641,3.5,1218137171 +580,8644,2.5,1269895628 +580,8665,3.0,1218136881 +580,8784,3.5,1165290750 +580,8810,2.5,1244826548 +580,8861,2.5,1277325470 +580,8874,4.0,1217951314 +580,8917,4.5,1165291150 +580,8961,4.5,1155617153 +580,8983,2.0,1167160116 +580,25995,3.5,1244826658 +580,26005,3.5,1244826650 +580,26012,3.5,1246469482 +580,26084,3.5,1156129026 +580,26317,2.0,1269893687 +580,26413,4.0,1220646586 +580,26494,3.5,1245424630 +580,26662,3.5,1155617953 +580,26702,4.0,1269894324 +580,26840,4.5,1155618112 +580,26865,4.5,1155617523 +580,26886,3.0,1269894198 +580,27109,3.0,1246469864 +580,27441,3.0,1269893791 +580,27478,2.0,1249399246 +580,27611,3.5,1246469681 +580,27660,3.5,1269895819 +580,27741,4.5,1155617572 +580,27790,3.5,1218138262 +580,27801,3.5,1156128530 +580,27831,3.0,1217951590 +580,27904,3.0,1217951253 +580,30707,4.5,1245424226 +580,30810,4.0,1156127887 +580,30812,3.5,1165900911 +580,31658,4.0,1165290909 +580,31660,3.0,1165291078 +580,31878,4.0,1155617988 +580,32031,3.0,1165291315 +580,32395,3.0,1165292257 +580,32587,3.0,1155485094 +580,33004,3.0,1165900458 +580,33166,4.0,1156129017 +580,33171,4.0,1155618136 +580,33437,3.5,1220561805 +580,33493,2.5,1220561531 +580,33615,3.0,1165291293 +580,33794,4.5,1155617424 +580,34048,2.5,1218137259 +580,34162,4.0,1156127883 +580,34405,4.5,1155617620 +580,34542,3.5,1246470019 +580,35836,4.0,1155616928 +580,36517,3.0,1217951615 +580,36535,4.0,1220646919 +580,37729,3.0,1167159746 +580,38038,4.0,1165290942 +580,39292,4.0,1155617605 +580,40339,2.0,1156129006 +580,40583,2.0,1167158780 +580,40629,4.0,1167160694 +580,40815,3.0,1168657808 +580,40819,3.5,1167157534 +580,41566,2.0,1217950598 +580,41569,2.0,1217951370 +580,41571,3.0,1217950891 +580,41997,4.0,1165900387 +580,42738,2.5,1249399232 +580,42946,3.0,1245424216 +580,43832,3.0,1245701435 +580,44022,2.5,1165291269 +580,44191,3.5,1164328625 +580,44555,4.0,1199492003 +580,44761,2.0,1217950765 +580,45431,3.5,1155875951 +580,45447,3.0,1217951110 +580,45499,3.0,1217951491 +580,45666,4.0,1269893534 +580,45722,2.0,1245423719 +580,45950,4.0,1155617109 +580,46322,4.5,1217950330 +580,46578,4.0,1168657741 +580,46772,2.0,1217951387 +580,46948,3.0,1165291065 +580,46970,2.5,1217950951 +580,46976,5.0,1273519072 +580,47124,2.5,1165291177 +580,47629,3.0,1199492979 +580,47810,1.0,1277325483 +580,48385,4.0,1164328609 +580,48394,4.0,1199492973 +580,48516,3.5,1217950777 +580,48696,4.0,1199492025 +580,48780,4.0,1199493086 +580,48982,3.5,1220561766 +580,48997,1.5,1244826960 +580,49272,3.0,1245423800 +580,49530,4.0,1273518980 +580,50005,2.0,1217950801 +580,50601,3.5,1218138536 +580,50872,4.0,1199635409 +580,51255,4.0,1199493081 +580,51277,4.5,1245159139 +580,51540,4.0,1217950648 +580,51662,3.0,1218138455 +580,51709,4.0,1278941599 +580,52435,4.0,1246469848 +580,52722,4.0,1245159970 +580,52885,3.0,1244826992 +580,52973,3.5,1220647095 +580,53996,0.5,1245424344 +580,54001,3.0,1217950848 +580,54272,4.0,1245424172 +580,54286,3.0,1218136883 +580,54503,3.5,1199491763 +580,54881,3.5,1244827028 +580,55118,4.0,1217950706 +580,55269,4.0,1199491889 +580,55280,4.0,1220646352 +580,55282,3.0,1249482684 +580,55442,4.0,1217949460 +580,55820,4.0,1244827010 +580,55830,2.5,1248704195 +580,56152,3.0,1220647131 +580,56174,2.5,1244827177 +580,56367,4.0,1245423655 +580,56757,3.5,1249482649 +580,57640,3.5,1220561779 +580,57669,4.0,1220561655 +580,58306,3.0,1217949486 +580,58559,5.0,1217949542 +580,59315,4.0,1245423763 +580,59615,3.0,1244826928 +580,59784,2.5,1217949513 +580,59935,3.5,1245424139 +580,60037,3.0,1218136760 +580,60069,4.0,1269895801 +580,60072,2.0,1248183663 +580,60684,4.0,1245424638 +580,60756,3.0,1269893603 +580,60760,3.5,1218137336 +580,61024,4.0,1220647379 +580,61026,4.0,1269893473 +580,61132,3.0,1220561739 +580,61210,2.5,1269893563 +580,61323,4.0,1245159916 +580,62394,2.0,1226601078 +580,62733,1.0,1246469112 +580,63113,3.0,1245424367 +580,64497,2.0,1244826575 +580,64575,4.0,1244826834 +580,65126,3.5,1279028985 +580,65682,3.0,1269893832 +580,65982,2.5,1246998327 +580,66097,4.0,1245265202 +580,66427,3.5,1249399287 +580,66934,4.0,1246469705 +580,67252,3.5,1271173718 +580,67665,4.0,1280336825 +580,68159,3.5,1276700154 +580,68319,3.5,1244826594 +580,68358,4.5,1244826705 +580,68486,4.0,1269893476 +580,68791,2.5,1244826612 +580,68848,3.5,1271173792 +580,68952,3.5,1269895814 +580,68954,4.0,1271173766 +580,69844,4.0,1248439806 +580,69951,4.5,1274117644 +580,70286,3.0,1250521877 +580,71156,4.0,1269894664 +580,71211,3.5,1271173780 +580,71530,3.0,1269894771 +580,71535,4.0,1269894610 +580,71732,3.0,1269894660 +580,72165,2.5,1269893622 +580,72169,3.5,1279199526 +580,72171,3.5,1269894635 +580,72224,4.0,1269893512 +580,72226,3.0,1271173750 +580,72378,2.5,1278433985 +580,72489,2.0,1269893491 +580,72630,3.5,1277991653 +580,72998,2.5,1269893714 +580,73017,4.0,1271173700 +580,73266,3.0,1277512972 +580,73268,3.5,1274117618 +580,73321,4.0,1276870801 +580,73488,2.5,1269893786 +580,73741,2.0,1274792834 +580,73929,1.5,1276095711 +580,74438,2.0,1269894511 +580,74452,2.5,1276525124 +580,74458,4.0,1276700136 +580,74789,3.5,1276608137 +580,74795,3.5,1280152650 +580,76077,3.5,1279199576 +580,76175,3.5,1280336813 +580,79132,3.5,1280152635 +581,493,4.5,1259725109 +581,502,4.0,1259725133 +581,552,3.0,1259724938 +581,750,0.5,1259725846 +581,785,0.5,1259724958 +581,924,0.5,1259725482 +581,1126,3.0,1259725154 +581,1194,5.0,1259725208 +581,1203,4.0,1259725477 +581,1311,0.5,1259726022 +581,1642,0.5,1259726072 +581,1918,4.0,1259724986 +581,2078,4.0,1259725000 +581,2191,0.5,1259726073 +581,2412,3.5,1259725143 +581,2478,3.5,1259725041 +581,2522,0.5,1259725942 +581,2720,2.5,1259725119 +581,2892,0.5,1259726084 +581,3256,4.5,1259724978 +581,3307,0.5,1259725929 +581,3590,0.5,1259725920 +581,3617,3.0,1259725032 +581,3721,0.5,1259726065 +581,3883,0.5,1259726069 +581,4445,0.5,1259725946 +581,4753,0.5,1259726016 +581,4973,0.5,1259725892 +581,5117,0.5,1259725915 +581,5278,0.5,1259726059 +581,5413,0.5,1259725433 +581,5832,0.5,1259726087 +581,5864,0.5,1259725939 +581,7204,0.5,1259726098 +581,7283,0.5,1259725943 +581,7312,0.5,1259725922 +581,8935,0.5,1259726063 +581,26700,0.5,1259726057 +581,27032,0.5,1259726026 +581,27478,0.5,1259725969 +581,31374,0.5,1259725891 +581,32153,0.5,1259726094 +581,33615,4.0,1259725214 +581,46574,0.5,1259726062 +581,53125,2.0,1259725163 +581,54768,0.5,1259725978 +581,61465,0.5,1259726000 +581,65802,0.5,1259725965 +581,66246,0.5,1259725840 +582,34,3.0,1122167376 +582,48,4.0,1122167280 +582,62,3.5,1122167595 +582,158,3.5,1122167292 +582,253,5.0,1122168133 +582,337,4.5,1122167203 +582,339,1.0,1122170323 +582,356,3.0,1122170213 +582,364,4.0,1122169666 +582,377,4.0,1122167578 +582,551,5.0,1122169461 +582,588,4.5,1122169670 +582,594,4.0,1122167177 +582,595,4.0,1122169669 +582,596,3.5,1122167308 +582,631,1.5,1122170073 +582,653,4.0,1122167221 +582,661,2.5,1122169851 +582,720,1.0,1122167413 +582,783,4.0,1122169915 +582,858,3.5,1122167716 +582,899,4.5,1122169986 +582,914,4.0,1122169761 +582,952,3.0,1122170774 +582,1022,3.5,1122169679 +582,1028,4.0,1122169754 +582,1029,4.0,1122169804 +582,1030,4.0,1122170027 +582,1031,4.0,1122169895 +582,1035,2.5,1122169684 +582,1059,3.5,1122168200 +582,1073,3.0,1122170714 +582,1088,3.5,1122169870 +582,1101,4.5,1122167200 +582,1196,4.0,1122167537 +582,1197,5.0,1122169410 +582,1204,3.0,1122170506 +582,1221,3.0,1122170493 +582,1307,5.0,1122169397 +582,1380,3.5,1122169712 +582,1441,4.0,1122168151 +582,1580,4.0,1122170754 +582,1704,4.5,1122168009 +582,1760,3.0,1122170103 +582,1917,3.5,1122167189 +582,1947,4.0,1122169801 +582,1951,4.0,1122169704 +582,1967,4.0,1122168055 +582,2006,4.0,1122170283 +582,2054,1.0,1122167252 +582,2080,4.0,1122169751 +582,2081,4.5,1122169521 +582,2084,4.0,1122169890 +582,2092,3.5,1122170096 +582,2096,5.0,1122169502 +582,2114,2.5,1122167810 +582,2125,4.5,1122167745 +582,2144,4.0,1122167985 +582,2167,4.5,1122168351 +582,2294,2.0,1122167425 +582,2394,4.0,1122169771 +582,2413,2.5,1122167431 +582,2565,4.0,1122169677 +582,2571,3.5,1122167565 +582,2572,4.5,1122170253 +582,2628,2.0,1122167389 +582,2657,5.0,1122167317 +582,2746,4.0,1122170014 +582,2857,2.0,1122169998 +582,2863,4.5,1122169995 +582,2924,4.5,1122170871 +582,2946,4.5,1122169813 +582,2987,2.0,1122167182 +582,3052,1.0,1122168223 +582,3114,2.5,1122167209 +582,3255,3.5,1122170691 +582,3450,4.0,1122170802 +582,3477,4.5,1122170810 +582,3489,5.0,1122167401 +582,3594,4.5,1122169565 +582,3751,1.5,1122167245 +582,3793,4.5,1122167212 +582,3910,4.5,1122169863 +582,3916,3.5,1122167788 +582,3980,4.5,1122168142 +582,4014,5.0,1122168071 +582,4016,3.5,1122170671 +582,4019,4.5,1122167792 +582,4039,1.5,1122169883 +582,4054,5.0,1122169541 +582,4188,5.0,1122167800 +582,4205,4.0,1122169199 +582,4238,4.0,1122169277 +582,4246,1.0,1122170225 +582,4294,4.0,1122169955 +582,4306,4.0,1122167174 +582,4308,5.0,1122169793 +582,4734,4.0,1122167619 +582,4857,3.0,1122169742 +582,4890,4.0,1122167631 +582,4993,4.0,1122167499 +582,4994,4.0,1122170310 +582,4995,4.0,1122170203 +582,5014,4.5,1122167719 +582,5064,5.0,1122167813 +582,5254,4.5,1122169140 +582,5299,3.5,1122170196 +582,5349,4.0,1122167653 +582,5377,1.0,1122167657 +582,5445,3.5,1122167313 +582,5502,4.0,1122167661 +582,5629,4.0,1122170021 +582,5952,4.0,1122167236 +582,5991,4.5,1122169757 +582,6297,3.5,1122170652 +582,6316,4.0,1122170062 +582,6345,4.0,1122169884 +582,6378,4.0,1122168103 +582,6539,4.5,1122170641 +582,6593,1.5,1122170779 +582,6732,5.0,1122168065 +582,6753,2.5,1122170645 +582,7060,0.5,1122167928 +582,7153,4.0,1122167603 +582,7320,5.0,1122169436 +582,7614,3.0,1122169834 +582,7738,4.0,1122169632 +582,8366,1.0,1122168490 +582,8376,1.0,1122168692 +582,8529,2.5,1122170267 +582,8641,4.5,1122169251 +582,8880,5.0,1122167453 +582,8972,2.5,1122167911 +582,8983,1.5,1122168375 +582,26084,1.0,1122168118 +582,27706,3.5,1122167468 +582,30793,4.5,1122169482 +582,30816,4.5,1122168481 +583,296,5.0,1430526215 +583,318,5.0,1430526116 +583,858,5.0,1430526121 +583,1198,3.5,1430526209 +583,1213,4.5,1430526137 +583,1221,4.5,1430526133 +583,1704,4.0,1430526263 +583,2329,4.0,1430526237 +583,2858,4.0,1430526233 +583,2959,4.0,1430526211 +583,6016,4.5,1430526200 +583,49530,3.5,1430526153 +583,54503,3.0,1430526155 +583,56174,2.5,1430526161 +583,58559,5.0,1430526316 +583,79132,4.5,1430526241 +583,91529,4.0,1430526279 +583,99114,4.0,1430526265 +583,109487,4.5,1430526174 +583,112552,4.0,1430526178 +584,1,5.0,1276156510 +584,47,3.5,1276156718 +584,60,3.5,1271759947 +584,104,3.5,1276157226 +584,110,5.0,1271762454 +584,163,3.5,1276157463 +584,231,3.0,1276156746 +584,253,4.0,1276156861 +584,293,4.0,1276157057 +584,296,4.0,1271762443 +584,318,5.0,1271762150 +584,344,2.0,1277587207 +584,356,5.0,1271762270 +584,364,3.5,1277587236 +584,367,1.5,1276156750 +584,377,3.5,1276156596 +584,434,2.5,1276156876 +584,519,2.0,1271760003 +584,527,5.0,1271762696 +584,541,3.0,1271762232 +584,575,3.0,1271760285 +584,586,2.5,1276156889 +584,593,5.0,1271762449 +584,595,4.0,1277587234 +584,648,3.5,1276156701 +584,750,2.0,1273167108 +584,780,4.0,1276156525 +584,829,1.0,1271760557 +584,912,3.5,1276157018 +584,924,3.0,1276157033 +584,1036,2.0,1271884901 +584,1061,4.5,1273516287 +584,1073,3.5,1271763454 +584,1136,3.5,1276156819 +584,1193,4.0,1273166475 +584,1196,3.5,1273166557 +584,1197,5.0,1276156785 +584,1203,5.0,1273166595 +584,1206,1.5,1276157074 +584,1213,3.5,1273166604 +584,1214,4.0,1277759442 +584,1258,3.0,1276157105 +584,1270,3.5,1276156708 +584,1527,3.5,1276156941 +584,1573,3.5,1273564913 +584,1580,4.0,1276156765 +584,1608,2.5,1276157501 +584,1625,5.0,1273564789 +584,1682,5.0,1271763182 +584,1704,5.0,1276156946 +584,1721,5.0,1276156769 +584,2028,5.0,1271762702 +584,2054,2.5,1276157271 +584,2167,1.5,1271763401 +584,2329,4.0,1276157204 +584,2355,3.5,1276157141 +584,2541,1.0,1271763278 +584,2542,3.0,1273516964 +584,2571,5.0,1271762353 +584,2706,1.5,1276157062 +584,2762,5.0,1271884893 +584,2858,3.0,1273167006 +584,2959,3.5,1271763972 +584,2997,3.5,1277836742 +584,3147,5.0,1271762725 +584,3156,5.0,1273352813 +584,3285,2.5,1271763721 +584,3578,3.0,1271884906 +584,3623,3.0,1276157307 +584,3717,3.0,1273564837 +584,3793,3.5,1276156968 +584,3809,5.0,1271759977 +584,3949,5.0,1271762274 +584,3996,3.5,1276156994 +584,4011,3.0,1276157555 +584,4155,3.0,1271763850 +584,4226,5.0,1273166386 +584,4239,4.0,1273517055 +584,4299,5.0,1271763225 +584,4306,5.0,1273165682 +584,4699,4.0,1271760982 +584,4718,2.5,1273352918 +584,4886,5.0,1276157119 +584,4963,5.0,1276157189 +584,4993,5.0,1271762209 +584,4995,4.0,1271885018 +584,5225,1.0,1273352898 +584,5254,0.5,1271763403 +584,5349,4.0,1276157155 +584,5418,5.0,1271884897 +584,5952,5.0,1271762204 +584,5989,4.0,1276157525 +584,5995,5.0,1271763205 +584,6016,4.5,1273166378 +584,6365,3.0,1276157492 +584,6377,5.0,1273165641 +584,6539,4.0,1273165651 +584,6771,1.0,1271764048 +584,6870,4.0,1271762767 +584,6951,0.5,1271761004 +584,7153,5.0,1271762244 +584,7361,5.0,1271762634 +584,8368,3.5,1273165760 +584,8665,5.0,1273563819 +584,8807,4.0,1271763479 +584,8874,3.0,1271763146 +584,8957,5.0,1271763862 +584,8961,3.5,1271885000 +584,8985,0.5,1271763407 +584,26172,4.0,1271763833 +584,26528,3.0,1273172184 +584,27724,5.0,1273564719 +584,27871,3.0,1273152283 +584,30707,5.0,1273565239 +584,32666,1.0,1271764090 +584,33794,5.0,1271762914 +584,34319,4.0,1271760167 +584,34552,3.5,1273352829 +584,36931,5.0,1271763027 +584,38061,3.5,1276156145 +584,39446,2.5,1271763865 +584,39715,2.5,1273352918 +584,42718,3.0,1271761282 +584,44199,3.0,1273167182 +584,44555,5.0,1276156229 +584,44665,5.0,1271764023 +584,45186,3.0,1276156107 +584,45722,3.5,1273517182 +584,46972,2.5,1271760578 +584,46976,3.5,1273165635 +584,47518,4.0,1271760949 +584,48043,4.0,1273563510 +584,48394,2.5,1271763261 +584,48516,4.0,1271764463 +584,48780,5.0,1271762228 +584,49272,4.0,1271885033 +584,49530,4.0,1273164638 +584,50189,2.5,1273352921 +584,50872,5.0,1271763067 +584,51255,5.0,1271763133 +584,51662,3.0,1271763008 +584,51927,3.0,1273565176 +584,52245,2.5,1271763412 +584,52458,5.0,1271763245 +584,52973,3.0,1271763942 +584,53125,3.5,1273517179 +584,53972,3.0,1271760246 +584,53993,1.5,1271760878 +584,53996,5.0,1271763368 +584,54004,2.5,1271763998 +584,54286,5.0,1271832615 +584,54997,5.0,1271760185 +584,55995,2.5,1271763669 +584,58559,5.0,1271762939 +584,58998,2.0,1271764374 +584,59016,3.0,1271763688 +584,59315,4.0,1271762638 +584,59369,5.0,1271762780 +584,59429,2.5,1273352919 +584,60069,5.0,1271762404 +584,62081,4.5,1271763326 +584,62374,5.0,1271762952 +584,63062,2.5,1273164661 +584,63082,5.0,1271762263 +584,64497,2.5,1271761033 +584,64614,5.0,1271762708 +584,65514,4.0,1271762731 +584,66203,3.5,1273564695 +584,67087,5.0,1271763164 +584,68157,3.5,1273166629 +584,68358,5.0,1271762629 +584,68954,5.0,1271763098 +584,69122,4.5,1271763924 +584,69481,4.0,1271764108 +584,69526,5.0,1271763367 +584,69757,5.0,1271762821 +584,70286,5.0,1271762400 +584,71429,4.5,1276156067 +584,71838,5.0,1271762970 +584,72378,4.0,1271762675 +584,72731,4.0,1273565094 +584,72998,5.0,1271762358 +584,73017,5.0,1276155969 +584,73321,5.0,1276156172 +584,74450,4.0,1276156202 +584,74458,5.0,1271762835 +584,74532,3.5,1273353272 +584,74946,5.0,1276159649 +584,75805,3.0,1271762988 +584,76077,3.0,1276156338 +584,76093,5.0,1277499389 +584,76251,4.0,1273563486 +584,77561,4.0,1276155920 +585,1,4.0,974607482 +585,21,4.0,974607643 +585,34,4.0,974607482 +585,39,4.0,974607516 +585,45,4.0,974607674 +585,50,5.0,975365404 +585,110,4.0,975365641 +585,125,4.0,975363505 +585,235,4.0,974607610 +585,247,3.0,975365500 +585,260,4.0,975364936 +585,266,3.0,975361825 +585,296,5.0,975365117 +585,318,4.0,975363941 +585,334,4.0,975365311 +585,345,3.0,974607733 +585,348,4.0,974607610 +585,356,4.0,974607571 +585,357,4.0,975363105 +585,417,4.0,974607762 +585,441,4.0,974607733 +585,467,4.0,975362548 +585,471,4.0,975363578 +585,480,3.0,975361581 +585,490,3.0,975361786 +585,492,3.0,974607702 +585,527,5.0,975364725 +585,541,5.0,975364896 +585,551,3.0,975361581 +585,589,3.0,975361460 +585,593,5.0,975365053 +585,648,2.0,975361825 +585,720,4.0,975365187 +585,745,4.0,975362059 +585,750,5.0,975365246 +585,838,4.0,975363236 +585,858,5.0,975363898 +585,892,4.0,975362967 +585,898,5.0,975362294 +585,901,4.0,975363236 +585,903,5.0,975364936 +585,904,5.0,975364725 +585,905,5.0,975362136 +585,907,5.0,975363505 +585,908,5.0,975361291 +585,909,5.0,975362330 +585,910,5.0,975362104 +585,911,4.0,975363199 +585,912,5.0,975364936 +585,913,5.0,975365117 +585,915,5.0,975363105 +585,916,5.0,975362136 +585,919,5.0,975364936 +585,920,4.0,975365604 +585,921,4.0,975362967 +585,922,5.0,975363941 +585,923,5.0,975364725 +585,924,5.0,975365117 +585,926,5.0,975365187 +585,929,4.0,975365311 +585,933,5.0,975363199 +585,936,4.0,975362136 +585,940,5.0,975365053 +585,945,5.0,975362294 +585,946,5.0,975362294 +585,947,5.0,975362059 +585,950,5.0,975364685 +585,951,5.0,975361291 +585,954,4.0,975365053 +585,955,5.0,975362330 +585,965,5.0,975365246 +585,973,5.0,975365500 +585,1028,5.0,975363073 +585,1035,4.0,975361460 +585,1041,4.0,975365404 +585,1042,4.0,975363316 +585,1060,3.0,975363073 +585,1066,5.0,975362967 +585,1077,5.0,975363032 +585,1078,5.0,975363404 +585,1079,4.0,975362381 +585,1080,4.0,975362330 +585,1083,4.0,975363541 +585,1089,4.0,975365187 +585,1104,4.0,975365088 +585,1129,3.0,975361710 +585,1136,5.0,975362198 +585,1148,4.0,975362104 +585,1162,4.0,975362104 +585,1171,4.0,975363282 +585,1172,5.0,975363282 +585,1178,5.0,975365053 +585,1179,4.0,974607128 +585,1180,5.0,975363166 +585,1188,3.0,974607441 +585,1193,5.0,975365117 +585,1196,3.0,975365404 +585,1197,4.0,975362925 +585,1198,5.0,975365088 +585,1203,4.0,975365524 +585,1204,5.0,975364685 +585,1206,5.0,975365117 +585,1207,5.0,975365246 +585,1208,5.0,975365404 +585,1209,4.0,975365187 +585,1210,4.0,974607078 +585,1212,5.0,975364725 +585,1213,4.0,975365524 +585,1214,5.0,975365311 +585,1217,5.0,975364960 +585,1219,5.0,975365187 +585,1220,4.0,975363282 +585,1223,4.0,975362381 +585,1225,4.0,975365023 +585,1226,5.0,975363199 +585,1228,5.0,975365311 +585,1230,5.0,975362381 +585,1231,4.0,975365641 +585,1233,5.0,975364896 +585,1234,4.0,975362548 +585,1235,5.0,975362925 +585,1238,5.0,975362198 +585,1240,5.0,975365500 +585,1242,4.0,975365311 +585,1244,5.0,975362381 +585,1247,5.0,975365311 +585,1248,4.0,975361291 +585,1249,3.0,975361364 +585,1250,5.0,975361291 +585,1252,5.0,975364896 +585,1254,5.0,975365023 +585,1256,5.0,975362198 +585,1260,5.0,975364725 +585,1262,5.0,975365438 +585,1263,4.0,975365604 +585,1265,4.0,974607441 +585,1266,4.0,975365641 +585,1267,4.0,975364896 +585,1269,4.0,975361364 +585,1270,3.0,975362925 +585,1276,5.0,975362381 +585,1278,5.0,975362925 +585,1281,5.0,975363236 +585,1282,4.0,975361460 +585,1284,5.0,975361364 +585,1286,3.0,975361761 +585,1287,5.0,974607128 +585,1288,4.0,975363032 +585,1292,5.0,975362484 +585,1297,4.0,975363404 +585,1299,5.0,975365088 +585,1307,5.0,975362484 +585,1354,4.0,975365188 +585,1358,3.0,975365246 +585,1387,5.0,975365641 +585,1446,3.0,975363105 +585,1537,4.0,975362381 +585,1544,2.0,975361927 +585,1580,3.0,975361679 +585,1617,5.0,975365188 +585,1641,4.0,974607610 +585,1663,4.0,975363348 +585,1694,4.0,975365220 +585,1784,4.0,974607762 +585,1831,1.0,974607078 +585,1873,3.0,974607128 +585,1883,4.0,974607674 +585,1885,4.0,974607610 +585,1914,4.0,975363578 +585,1923,3.0,974607643 +585,1927,5.0,975364725 +585,1929,4.0,975365404 +585,1934,5.0,975362484 +585,1945,5.0,975364936 +585,1948,5.0,975363236 +585,1952,5.0,975365438 +585,1953,5.0,975365438 +585,1958,4.0,975363316 +585,1963,5.0,975363282 +585,1965,4.0,975361497 +585,2000,4.0,975363282 +585,2019,5.0,975363792 +585,2053,3.0,974607078 +585,2064,4.0,975363105 +585,2065,4.0,975363404 +585,2078,4.0,975363316 +585,2108,4.0,975363505 +585,2174,4.0,975363578 +585,2203,4.0,975364661 +585,2208,5.0,975363374 +585,2238,4.0,975362198 +585,2243,4.0,975363316 +585,2248,4.0,975363032 +585,2289,4.0,974607516 +585,2291,4.0,975361460 +585,2300,5.0,975362925 +585,2321,4.0,974607482 +585,2324,3.0,975362967 +585,2349,4.0,975363505 +585,2352,5.0,975363236 +585,2355,4.0,974607516 +585,2359,5.0,975363236 +585,2384,4.0,974607571 +585,2395,4.0,974607702 +585,2396,5.0,974607408 +585,2511,4.0,975365053 +585,2599,5.0,974607408 +585,2648,4.0,975365220 +585,2657,3.0,975361620 +585,2716,5.0,975363316 +585,2746,4.0,975363348 +585,2779,4.0,975363578 +585,2791,4.0,975361460 +585,2797,4.0,975363541 +585,2804,5.0,975362381 +585,2858,4.0,974607365 +585,2863,4.0,975362330 +585,2870,4.0,975363541 +585,2889,3.0,975363348 +585,2915,5.0,975363374 +585,2932,5.0,975365438 +585,2935,5.0,975362104 +585,2936,4.0,975362198 +585,2937,4.0,975362104 +585,2946,4.0,975362330 +585,2948,4.0,975361497 +585,2973,4.0,975362484 +585,2997,5.0,975362294 +585,3022,5.0,975362104 +585,3035,5.0,975362925 +585,3037,5.0,975362548 +585,3052,4.0,974607643 +585,3060,5.0,974607516 +585,3061,4.0,975363282 +585,3067,4.0,975362198 +585,3072,5.0,975363236 +585,3076,4.0,975363606 +585,3083,4.0,974607365 +585,3088,5.0,975362548 +585,3095,5.0,975364725 +585,3096,5.0,975362136 +585,3097,4.0,975362330 +585,3104,4.0,975362967 +585,3108,3.0,974607643 +585,3114,4.0,974607441 +585,3133,3.0,975362104 +585,3134,5.0,975364936 +585,3160,4.0,975361497 +585,3175,4.0,975363606 +585,3196,5.0,975365641 +585,3210,4.0,975363404 +585,3244,4.0,975363374 +585,3253,4.0,974607643 +585,3307,5.0,975362104 +585,3341,5.0,975362548 +585,3349,4.0,975363578 +585,3358,4.0,974607674 +585,3371,4.0,975365220 +585,3396,4.0,975363282 +585,3421,4.0,975362548 +585,3424,4.0,975363073 +585,3429,4.0,975362198 +585,3435,5.0,975364685 +585,3451,5.0,975363578 +585,3462,5.0,975362198 +585,3469,5.0,975365500 +585,3481,4.0,975361364 +585,3504,4.0,975362484 +585,3521,4.0,975363282 +585,3534,3.0,975361761 +585,3545,4.0,975365500 +585,3588,4.0,975365500 +585,3608,4.0,975362484 +585,3627,4.0,975361497 +585,3629,5.0,975362059 +585,3671,4.0,975363032 +585,3675,4.0,975361581 +585,3683,5.0,975365188 +585,3712,3.0,974607571 +585,3730,5.0,975365023 +585,3735,5.0,975365220 +585,3751,4.0,975361460 +585,3814,5.0,975363166 +585,3819,4.0,975362294 +585,3836,4.0,975363199 +585,3861,5.0,975363578 +585,3873,4.0,975363541 +585,3911,4.0,974607219 +585,3926,2.0,975361847 +585,3927,3.0,975361710 +585,3929,3.0,975361291 +585,3936,4.0,975361291 +585,3957,2.0,975361877 +585,3959,4.0,975361364 +585,3963,3.0,975361825 +585,3969,3.0,974607195 +585,3984,3.0,975361581 +585,4002,3.0,975361364 +585,4008,4.0,975361364 +585,5060,5.0,975362294 +586,1,4.0,1214234202 +586,110,1.0,1214234005 +586,165,3.5,1214234296 +586,260,3.0,1214234111 +586,296,5.0,1214234266 +586,318,4.0,1214234014 +586,344,1.5,1214234260 +586,356,4.0,1214233961 +586,480,5.0,1214234118 +586,527,4.0,1214234222 +586,590,3.0,1214234001 +586,592,1.0,1214233942 +586,593,2.0,1214233972 +586,608,5.0,1214234331 +586,780,4.0,1214234070 +586,849,1.5,1214225502 +586,1196,4.0,1214234177 +586,1210,4.0,1214233957 +586,1270,4.5,1214234238 +586,1405,4.0,1214225451 +586,1617,3.5,1214234327 +586,1721,2.0,1214234285 +586,1918,2.0,1214225463 +586,1952,2.0,1214225577 +586,1957,4.0,1214225565 +586,1962,3.0,1214225496 +586,2076,2.5,1214225492 +586,2109,0.5,1214225571 +586,2490,3.5,1214225478 +586,2571,5.0,1214233975 +586,2716,4.5,1214234249 +586,2762,5.0,1214234045 +586,2944,2.5,1214225536 +586,2949,2.5,1214225568 +586,2968,5.0,1214225484 +586,3006,4.5,1214225458 +586,3256,1.0,1214225471 +586,3363,5.0,1214225525 +586,3386,1.5,1214225539 +586,3578,3.5,1214234085 +586,3996,2.0,1214234128 +586,4306,4.0,1214234181 +586,4963,4.5,1214234148 +586,4993,5.0,1214234082 +586,4995,5.0,1214234192 +586,5349,1.0,1214234017 +586,5445,5.0,1214233997 +586,5952,5.0,1214234290 +586,6539,1.0,1214234154 +586,6711,4.0,1214234275 +586,6874,5.0,1214234041 +586,7153,5.0,1214234172 +586,33493,1.0,1214234313 +586,48516,4.0,1214234135 +586,49272,2.5,1214234169 +586,54286,5.0,1214234316 +586,57353,4.5,1214234227 +587,25,4.0,1111348887 +587,34,3.5,1112036128 +587,45,4.0,1111086063 +587,47,3.5,1111348809 +587,50,4.5,1111102828 +587,52,4.0,1111796480 +587,58,4.5,1112399554 +587,111,4.0,1111102724 +587,123,3.0,1112457155 +587,125,4.5,1112457007 +587,150,4.5,1111347514 +587,154,4.0,1112632389 +587,162,3.0,1112117935 +587,194,4.5,1112453946 +587,199,3.0,1111367950 +587,231,0.5,1111348842 +587,246,5.0,1111085928 +587,247,3.5,1131819606 +587,265,3.5,1111102715 +587,272,4.0,1112892763 +587,296,3.5,1111347136 +587,306,3.5,1112055652 +587,318,4.5,1111347521 +587,321,4.5,1112892286 +587,345,4.0,1111086045 +587,377,3.5,1111347541 +587,457,4.5,1111347351 +587,475,4.0,1112399089 +587,495,3.0,1111086556 +587,509,4.0,1111348946 +587,515,4.0,1122546321 +587,527,5.0,1111336613 +587,541,4.0,1284472769 +587,593,4.0,1112033425 +587,599,3.5,1111363457 +587,608,4.0,1111336675 +587,659,4.5,1112633355 +587,668,3.5,1111798699 +587,718,4.0,1111626662 +587,750,4.0,1111336475 +587,778,4.0,1118421322 +587,800,3.5,1111368143 +587,858,5.0,1111102589 +587,899,5.0,1284472748 +587,902,4.0,1284473762 +587,903,5.0,1111086035 +587,904,4.0,1111360687 +587,905,4.0,1111362828 +587,906,4.0,1112034471 +587,908,5.0,1111336484 +587,909,4.0,1112055609 +587,910,4.0,1111362892 +587,911,5.0,1131823340 +587,912,5.0,1111086507 +587,913,5.0,1111102657 +587,919,4.5,1117557051 +587,920,5.0,1284473202 +587,922,4.5,1111336491 +587,923,5.0,1111336547 +587,924,4.0,1111102649 +587,926,5.0,1111362370 +587,928,4.5,1111799608 +587,929,4.0,1112053099 +587,930,4.0,1111360673 +587,933,4.0,1112034078 +587,936,4.0,1112033650 +587,942,4.0,1111799826 +587,946,5.0,1112034840 +587,947,4.0,1116100203 +587,951,3.5,1111363082 +587,953,4.0,1111085978 +587,954,4.0,1112055564 +587,955,4.0,1112056367 +587,965,4.0,1111799733 +587,969,3.5,1111799836 +587,970,3.5,1111626615 +587,1035,5.0,1111102602 +587,1041,4.5,1112315588 +587,1073,3.5,1111348876 +587,1079,5.0,1111349012 +587,1080,4.0,1111102586 +587,1084,4.5,1112056038 +587,1089,4.0,1111102626 +587,1094,4.0,1111085923 +587,1095,4.0,1112318395 +587,1096,5.0,1112456711 +587,1097,3.5,1111348860 +587,1103,4.0,1112309250 +587,1111,3.5,1160393817 +587,1131,4.5,1112055598 +587,1132,4.5,1112056021 +587,1136,4.0,1111336962 +587,1172,4.5,1111368127 +587,1178,4.0,1111336510 +587,1179,4.0,1112036243 +587,1183,4.5,1112533030 +587,1185,4.5,1112315600 +587,1189,3.5,1111363225 +587,1193,4.5,1111336459 +587,1197,4.5,1111102462 +587,1198,4.5,1111348820 +587,1203,4.0,1111336542 +587,1204,5.0,1111085983 +587,1206,4.0,1111102635 +587,1207,4.0,1111102435 +587,1208,5.0,1111336942 +587,1212,5.0,1111288845 +587,1213,4.0,1111336550 +587,1214,3.5,1121548963 +587,1217,4.0,1111362236 +587,1219,4.0,1111336572 +587,1221,4.5,1111287930 +587,1225,4.0,1111336993 +587,1226,3.5,1112036138 +587,1228,5.0,1217326285 +587,1230,5.0,1112056017 +587,1231,4.0,1112118450 +587,1233,5.0,1111362375 +587,1234,4.5,1111336661 +587,1235,4.0,1112317798 +587,1242,4.0,1112118774 +587,1244,4.5,1111086637 +587,1248,4.0,1111362254 +587,1250,5.0,1111086005 +587,1251,3.5,1111370759 +587,1252,4.0,1111085919 +587,1254,4.0,1111336696 +587,1256,5.0,1131823067 +587,1259,4.0,1111102441 +587,1260,4.5,1111336948 +587,1262,4.0,1111361411 +587,1263,5.0,1284472804 +587,1266,4.5,1148223437 +587,1267,4.0,1111336531 +587,1269,4.5,1112052419 +587,1272,5.0,1112056263 +587,1276,3.5,1111086050 +587,1280,4.5,1111362899 +587,1284,4.0,1111336600 +587,1287,5.0,1112036073 +587,1288,4.5,1111363250 +587,1292,4.0,1111626637 +587,1293,5.0,1112313979 +587,1299,4.0,1111337010 +587,1302,4.5,1111799374 +587,1304,4.0,1111362855 +587,1307,4.0,1111348931 +587,1340,4.0,1112035495 +587,1354,4.0,1111368105 +587,1358,4.0,1111102424 +587,1365,4.0,1111367994 +587,1380,3.5,1111085955 +587,1387,4.0,1111349009 +587,1393,4.0,1111367965 +587,1394,4.5,1112052935 +587,1537,5.0,1112056086 +587,1610,4.0,1284473273 +587,1617,4.5,1284472754 +587,1625,4.0,1111086012 +587,1641,4.5,1122546435 +587,1673,4.0,1112399897 +587,1674,4.0,1111346955 +587,1683,3.5,1148222180 +587,1704,3.5,1111348954 +587,1719,4.0,1112118476 +587,1784,4.0,1111796367 +587,1794,3.5,1111796461 +587,1834,4.0,1112035454 +587,1883,4.0,1111367921 +587,1923,5.0,1111102358 +587,1927,5.0,1112055433 +587,1929,3.5,1112318228 +587,1931,4.0,1111800012 +587,1944,4.5,1112313975 +587,1945,4.0,1111336608 +587,1946,4.0,1111798518 +587,1950,4.0,1111336700 +587,1952,5.0,1111423804 +587,1953,4.0,1111799720 +587,1959,5.0,1284473402 +587,1960,5.0,1117560438 +587,1961,4.0,1111348943 +587,1963,4.5,1112052091 +587,2019,5.0,1111336560 +587,2020,4.0,1112315408 +587,2028,4.5,1116098991 +587,2064,4.0,1112317870 +587,2065,4.5,1131835150 +587,2070,3.5,1111363411 +587,2076,4.0,1112634713 +587,2132,4.5,1112118801 +587,2186,4.0,1111336568 +587,2194,4.0,1111085996 +587,2243,4.5,1111103687 +587,2248,3.5,1146241582 +587,2289,4.0,1131823276 +587,2295,4.0,1112206404 +587,2300,5.0,1111103892 +587,2313,4.5,1111363275 +587,2342,3.0,1111363343 +587,2352,3.5,1111103670 +587,2366,5.0,1112036149 +587,2396,5.0,1111102399 +587,2467,4.0,1111103624 +587,2571,3.5,1111102325 +587,2612,4.0,1112052548 +587,2657,3.0,1111085992 +587,2677,4.0,1112398715 +587,2682,3.5,1160394052 +587,2686,4.0,1112633367 +587,2708,4.0,1284474778 +587,2712,4.0,1111102330 +587,2731,3.5,1111626455 +587,2734,4.0,1111103440 +587,2746,4.0,1112453780 +587,2762,4.0,1111348898 +587,2788,3.5,1111103448 +587,2791,3.5,1112036058 +587,2858,4.5,1112206831 +587,2871,4.0,1111103292 +587,2915,3.5,1111103298 +587,2917,4.5,1112034877 +587,2920,5.0,1122546230 +587,2927,5.0,1112315538 +587,2936,5.0,1284472455 +587,2937,3.5,1111799974 +587,2940,4.0,1111796126 +587,2951,3.5,1111103282 +587,2959,2.5,1111370861 +587,2966,3.5,1111103187 +587,2973,5.0,1112206177 +587,2997,4.0,1111348935 +587,3006,4.0,1111368210 +587,3008,3.5,1111796078 +587,3019,4.0,1112315627 +587,3030,4.5,1284483302 +587,3039,3.5,1111103285 +587,3068,4.0,1112315414 +587,3072,4.5,1112036270 +587,3089,3.5,1111363212 +587,3091,4.0,1112056248 +587,3095,3.5,1111363287 +587,3101,4.0,1111086053 +587,3134,4.0,1129405138 +587,3148,4.0,1111103175 +587,3152,4.0,1111103165 +587,3168,4.0,1123001592 +587,3196,4.0,1111361521 +587,3198,4.0,1112034183 +587,3201,4.0,1112315611 +587,3210,3.0,1111103150 +587,3246,4.0,1112318386 +587,3307,4.0,1112055110 +587,3361,3.5,1111103159 +587,3362,4.0,1111336983 +587,3363,3.5,1112034670 +587,3365,4.5,1111368091 +587,3384,3.5,1112317779 +587,3408,4.0,1111368261 +587,3435,5.0,1111287926 +587,3448,3.5,1111102956 +587,3462,5.0,1284472363 +587,3468,5.0,1284472441 +587,3471,4.5,1112318390 +587,3481,3.5,1111370798 +587,3498,4.0,1116099496 +587,3503,3.5,1111625672 +587,3504,3.5,1111102967 +587,3507,4.0,1111799957 +587,3546,4.0,1112891663 +587,3547,3.5,1112315770 +587,3551,4.5,1112117848 +587,3671,4.0,1112034902 +587,3679,4.5,1111800003 +587,3681,3.5,1111363242 +587,3683,3.5,1111362162 +587,3685,3.5,1111103124 +587,3730,5.0,1111336652 +587,3733,4.0,1112317876 +587,3735,4.5,1111102936 +587,3783,4.0,1111086590 +587,3801,5.0,1284472479 +587,3814,4.0,1112034373 +587,3816,4.0,1111368227 +587,3819,4.0,1112033898 +587,3855,3.5,1123001882 +587,3871,5.0,1112036067 +587,3910,3.5,1111368059 +587,3911,3.5,1112313972 +587,3929,3.5,1111363437 +587,3949,4.5,1131819438 +587,3976,4.0,1122546260 +587,3983,4.5,1160394090 +587,3996,5.0,1111363281 +587,4012,3.5,1116099972 +587,4022,3.5,1111370835 +587,4034,4.0,1111086032 +587,4173,3.5,1112313939 +587,4179,5.0,1217326267 +587,4216,4.0,1112634441 +587,4217,4.0,1284474480 +587,4218,3.5,1112892606 +587,4225,4.0,1116099327 +587,4226,3.5,1111102338 +587,4246,3.5,1111102884 +587,4262,3.0,1111795708 +587,4280,3.5,1111102897 +587,4298,4.0,1284474373 +587,4306,4.0,1112892341 +587,4361,4.0,1111102891 +587,4424,4.5,1112633533 +587,4495,3.5,1284473161 +587,4523,4.0,1123001336 +587,4612,5.0,1112313794 +587,4664,4.0,1122546868 +587,4705,5.0,1112891876 +587,4806,3.5,1112401005 +587,4809,4.0,1112399548 +587,4848,3.0,1111626373 +587,4855,4.0,1111102846 +587,4914,4.5,1112055580 +587,4973,3.5,1111361451 +587,4993,2.5,1113928291 +587,4995,3.5,1111796036 +587,4999,4.0,1284474519 +587,5008,5.0,1111336467 +587,5013,5.0,1160393838 +587,5015,3.5,1111627075 +587,5056,4.0,1284474523 +587,5120,4.5,1111336933 +587,5147,4.0,1112036762 +587,5222,4.0,1117556959 +587,5225,4.0,1131819493 +587,5291,4.0,1120496086 +587,5292,3.5,1112456701 +587,5339,4.0,1112318158 +587,5341,4.0,1112118584 +587,5349,2.5,1111796407 +587,5365,3.0,1111796057 +587,5367,4.5,1112399903 +587,5404,4.0,1131819622 +587,5418,4.0,1111796383 +587,5464,4.0,1111796504 +587,5481,0.5,1111368401 +587,5603,4.0,1111799493 +587,5618,3.0,1111336974 +587,5693,2.5,1111370674 +587,5772,4.0,1112399570 +587,5812,4.0,1112317640 +587,5902,4.0,1112314043 +587,5940,3.5,1112453819 +587,5945,3.5,1117556873 +587,5952,4.0,1116099075 +587,5989,4.0,1120496118 +587,5992,4.5,1111627120 +587,5995,4.5,1122546371 +587,6001,3.5,1111799969 +587,6008,4.0,1111796022 +587,6016,4.5,1111336436 +587,6035,4.5,1284475077 +587,6056,4.0,1118713876 +587,6073,4.0,1148222967 +587,6101,4.0,1112317505 +587,6115,3.0,1131818834 +587,6216,4.5,1117556850 +587,6230,3.5,1284473053 +587,6244,3.5,1112055556 +587,6296,4.0,1112634180 +587,6339,3.5,1111795831 +587,6370,3.5,1111368281 +587,6380,3.5,1160394071 +587,6385,3.5,1111363207 +587,6440,4.0,1111370704 +587,6538,4.0,1114296013 +587,6539,3.5,1111423743 +587,6620,3.5,1111337018 +587,6643,4.0,1111796350 +587,6662,4.0,1284473106 +587,6663,4.0,1112052912 +587,6666,3.5,1111625996 +587,6669,4.5,1111336988 +587,6711,3.5,1116099017 +587,6724,4.5,1111799997 +587,6772,1.0,1111363268 +587,6779,4.0,1112532693 +587,6783,5.0,1133113375 +587,6786,5.0,1112052930 +587,6787,4.0,1111968470 +587,6791,5.0,1112056004 +587,6807,4.0,1112056045 +587,6828,4.0,1146588279 +587,6858,3.5,1160393891 +587,6870,4.0,1123000544 +587,6890,3.5,1111796440 +587,6954,4.5,1111626037 +587,6978,3.5,1160393937 +587,6982,4.0,1284473483 +587,6987,4.0,1111086823 +587,6993,4.5,1111362842 +587,7042,4.0,1112892347 +587,7063,4.5,1111367888 +587,7064,4.5,1111423706 +587,7068,2.5,1111370972 +587,7084,4.0,1111361738 +587,7089,3.5,1111796530 +587,7091,5.0,1111288854 +587,7121,3.5,1111363404 +587,7132,5.0,1111336499 +587,7136,4.0,1284475114 +587,7139,3.0,1111367865 +587,7153,4.0,1117556941 +587,7156,4.0,1284472661 +587,7160,4.0,1122546354 +587,7208,5.0,1112036277 +587,7209,3.0,1111627102 +587,7210,4.0,1111625926 +587,7215,4.0,1111968788 +587,7234,3.5,1111367908 +587,7256,5.0,1148222119 +587,7299,4.0,1111796115 +587,7327,3.0,1131818748 +587,7361,4.0,1130021718 +587,7396,4.0,1284475015 +587,7478,4.0,1111336680 +587,7487,4.0,1111845608 +587,7560,3.0,1111086741 +587,7566,4.5,1284474443 +587,7669,4.0,1284483407 +587,7700,4.5,1112033905 +587,7706,4.0,1112453799 +587,7728,4.5,1111363198 +587,7767,5.0,1284474083 +587,7792,3.5,1131819458 +587,7840,4.0,1112205888 +587,7943,4.5,1160393996 +587,8044,3.5,1112055394 +587,8121,5.0,1112117944 +587,8128,3.0,1112117545 +587,8143,3.5,1111626155 +587,8154,2.0,1111370782 +587,8183,4.0,1111968960 +587,8188,4.0,1284473731 +587,8207,3.5,1111086731 +587,8228,5.0,1111287916 +587,8337,4.0,1111337061 +587,8341,4.0,1112056029 +587,8499,3.0,1148223063 +587,8542,5.0,1111288848 +587,8571,3.5,1112532676 +587,8582,4.0,1112634964 +587,8591,3.5,1111845601 +587,8610,4.0,1112034895 +587,8618,4.0,1284474221 +587,8620,4.0,1284474527 +587,8623,4.0,1112633930 +587,8650,5.0,1112318381 +587,8724,4.0,1148223046 +587,8754,4.5,1111799751 +587,8779,4.0,1111796427 +587,8873,4.5,1118419673 +587,8933,5.0,1112457242 +587,8938,4.0,1131819589 +587,8949,4.0,1111336448 +587,8954,3.5,1160393864 +587,8958,4.0,1284473297 +587,8983,4.0,1160394113 +587,25805,4.0,1284473819 +587,25827,3.5,1116100454 +587,25852,5.0,1284472666 +587,26472,5.0,1284472384 +587,26649,3.5,1284473721 +587,26663,4.0,1160393770 +587,26712,4.5,1284474394 +587,27721,4.0,1160394039 +587,27768,3.5,1113928372 +587,30707,4.5,1116099143 +587,30749,4.0,1284472712 +587,32525,5.0,1284473442 +587,32591,4.0,1148222148 +587,33880,3.5,1146157466 +587,37733,3.5,1148222199 +587,37741,4.0,1148222163 +587,38384,3.5,1284473489 +587,39183,5.0,1148222225 +587,41285,2.5,1148222079 +587,44555,4.5,1284472419 +587,44587,3.5,1284473652 +587,47610,4.0,1160393957 +587,47728,5.0,1284472635 +587,48696,4.5,1284473098 +587,49272,4.0,1284473283 +587,50658,4.5,1284474770 +587,50740,4.5,1284475020 +587,50742,4.5,1284472326 +587,52435,4.0,1284475240 +587,52767,4.5,1284474391 +587,55069,4.5,1284475037 +587,56367,3.5,1217326303 +587,58303,5.0,1284483441 +587,60382,4.0,1284483448 +587,68194,4.0,1284472630 +587,68838,4.5,1284472777 +587,70846,3.5,1284474541 +587,71462,4.5,1284475056 +588,6,4.0,842298338 +588,10,3.0,842298158 +588,14,3.0,842298642 +588,19,2.0,842298252 +588,21,4.0,842298252 +588,25,4.0,842298338 +588,32,4.0,842298592 +588,47,5.0,842298216 +588,50,5.0,842298338 +588,62,3.0,842298422 +588,110,5.0,842298189 +588,150,4.0,842298010 +588,153,4.0,842298045 +588,161,4.0,842298158 +588,165,3.0,842298045 +588,185,3.0,842298158 +588,208,3.0,842298158 +588,223,3.0,842298526 +588,231,3.0,842298082 +588,253,2.0,842298158 +588,288,3.0,842298189 +588,296,5.0,842298010 +588,300,4.0,842298252 +588,316,3.0,842298126 +588,318,5.0,842298126 +588,329,3.0,842298082 +588,339,3.0,842298189 +588,344,4.0,842298045 +588,349,3.0,842298045 +588,356,5.0,842298126 +588,364,3.0,842298216 +588,367,3.0,842298252 +588,368,3.0,842298526 +588,377,4.0,842298216 +588,380,5.0,842298010 +588,428,4.0,842298484 +588,434,3.0,842298126 +588,454,3.0,842298189 +588,457,5.0,842298083 +588,471,3.0,842298526 +588,475,4.0,842298484 +588,480,3.0,842298189 +588,514,3.0,842298422 +588,527,5.0,842298392 +588,589,3.0,842298216 +588,590,4.0,842298010 +588,592,4.0,842298010 +588,593,5.0,842298082 +588,648,3.0,842298392 +588,733,5.0,842298392 +588,786,3.0,842298526 +588,1036,4.0,842298484 +589,10,4.0,836109734 +589,44,3.0,838902719 +589,47,5.0,838902404 +589,95,4.0,838902719 +589,110,3.0,838902121 +589,145,3.0,838903038 +589,150,4.0,836109171 +589,153,3.0,838902121 +589,165,3.0,836109522 +589,173,3.0,838902625 +589,204,3.0,838902719 +589,227,4.0,838902887 +589,231,3.0,836109554 +589,292,4.0,836109588 +589,296,3.0,836109171 +589,315,3.0,838902625 +589,316,4.0,836109554 +589,329,4.0,836109554 +589,344,3.0,836109522 +589,349,4.0,838902121 +589,353,4.0,838902761 +589,377,5.0,838902625 +589,380,4.0,836109171 +589,383,3.0,838903289 +589,405,4.0,838903346 +589,434,3.0,836109588 +589,442,4.0,838902625 +589,457,4.0,836109734 +589,464,3.0,838903466 +589,474,4.0,838902761 +589,480,5.0,838902404 +589,485,3.0,838902887 +589,533,3.0,838903346 +589,544,3.0,838903466 +589,548,3.0,838903466 +589,552,4.0,838903038 +589,588,4.0,836109522 +589,589,4.0,838902404 +589,590,4.0,836109171 +589,592,3.0,836109171 +589,593,3.0,836109588 +589,733,4.0,838903141 +589,780,4.0,838903141 +590,2,3.0,848677637 +590,5,3.0,848677907 +590,6,4.0,848677809 +590,10,3.0,848677459 +590,22,3.0,848677877 +590,25,5.0,848677760 +590,31,3.0,848677861 +590,32,3.0,848677590 +590,34,4.0,848677547 +590,47,4.0,848677525 +590,50,5.0,848677567 +590,110,5.0,848677459 +590,141,4.0,848677687 +590,150,5.0,848677295 +590,151,4.0,848677713 +590,153,3.0,848677376 +590,160,3.0,848677616 +590,161,4.0,848677459 +590,163,3.0,848677890 +590,165,4.0,848677375 +590,168,3.0,848677787 +590,172,3.0,848677787 +590,173,3.0,848677636 +590,185,3.0,848677459 +590,186,3.0,848677713 +590,193,3.0,848677837 +590,196,3.0,848677686 +590,204,4.0,848677742 +590,208,3.0,848677459 +590,223,5.0,848677877 +590,225,4.0,848677590 +590,231,3.0,848677408 +590,235,4.0,848677742 +590,253,3.0,848677496 +590,256,3.0,848677787 +590,265,4.0,848677787 +590,266,4.0,848677616 +590,276,3.0,848677890 +590,288,4.0,848677496 +590,292,4.0,848677432 +590,293,4.0,848677742 +590,296,4.0,848677295 +590,315,3.0,848677654 +590,316,3.0,848677408 +590,317,4.0,848677616 +590,318,5.0,848677432 +590,329,3.0,848677432 +590,333,3.0,848677809 +590,337,4.0,848677686 +590,339,3.0,848677496 +590,342,4.0,848677907 +590,344,3.0,848677376 +590,349,3.0,848677408 +590,350,3.0,848677616 +590,353,3.0,848677760 +590,356,4.0,848677408 +590,357,3.0,848677590 +590,364,3.0,848677525 +590,367,3.0,848677525 +590,368,4.0,848677742 +590,370,3.0,848677809 +590,377,4.0,848677525 +590,380,4.0,848677295 +590,420,3.0,848677590 +590,432,3.0,848677637 +590,434,4.0,848677432 +590,435,3.0,848677637 +590,440,3.0,848677616 +590,442,3.0,848677654 +590,454,3.0,848677496 +590,457,5.0,848677375 +590,466,3.0,848677837 +590,468,3.0,848677890 +590,474,3.0,848677654 +590,480,4.0,848677432 +590,485,4.0,848677808 +590,500,3.0,848677525 +590,508,3.0,848677670 +590,520,3.0,848677861 +590,527,4.0,848677567 +590,551,4.0,848677742 +590,588,3.0,848677375 +590,589,4.0,848677496 +590,590,3.0,848677295 +590,592,3.0,848677295 +590,595,3.0,848677408 +590,597,3.0,848677547 +590,736,3.0,848677686 +590,780,3.0,848677713 +591,48,3.0,1112415483 +591,158,2.0,1112415860 +591,370,3.5,1112415434 +591,592,3.5,1112415767 +591,596,3.0,1112415520 +591,720,3.0,1112415994 +591,783,4.0,1112415569 +591,953,4.5,1112415502 +591,1073,1.5,1112415847 +591,1097,3.5,1112415830 +591,1250,3.5,1112415541 +591,1282,4.0,1112415592 +591,1380,2.0,1112415824 +591,2006,3.5,1112415574 +591,2100,3.5,1112415530 +591,2321,3.5,1112415549 +591,2406,2.5,1112415442 +591,2407,4.0,1112415777 +591,2502,4.0,1112415512 +591,2657,3.0,1112415527 +591,2683,1.5,1112415773 +591,2918,4.5,1112415803 +591,2949,2.5,1112415903 +591,2987,3.0,1112415787 +591,3052,2.5,1112415565 +591,3088,3.5,1112415922 +591,3868,4.0,1112415912 +591,5060,3.5,1112415428 +591,5299,4.5,1112415869 +591,8917,2.5,1112416055 +592,10,4.0,995420467 +592,104,5.0,995420003 +592,110,4.0,995419352 +592,150,4.0,995420234 +592,158,2.0,995422382 +592,165,5.0,995421850 +592,223,5.0,995420188 +592,260,5.0,995419094 +592,329,2.0,995421702 +592,349,3.0,995418869 +592,353,4.0,995421074 +592,356,4.0,995422609 +592,364,2.0,995420684 +592,367,4.0,995420787 +592,380,5.0,995419929 +592,480,4.0,995420250 +592,527,4.0,995419405 +592,588,4.0,995420443 +592,589,5.0,995419470 +592,592,3.0,995421917 +592,596,2.0,995420826 +592,736,4.0,995422133 +592,780,5.0,995421917 +592,783,1.0,995420733 +592,785,5.0,995420733 +592,919,2.0,995422335 +592,1017,4.0,995422413 +592,1032,2.0,995420565 +592,1033,2.0,995420217 +592,1036,5.0,995419494 +592,1059,3.0,995420905 +592,1073,2.0,995422387 +592,1101,3.0,995420298 +592,1136,5.0,995419650 +592,1148,3.0,995419306 +592,1194,2.0,995421737 +592,1196,5.0,995418869 +592,1197,4.0,995418841 +592,1198,5.0,995419385 +592,1200,5.0,995421118 +592,1206,4.0,995420202 +592,1210,5.0,995418908 +592,1214,5.0,995420373 +592,1240,4.0,995419754 +592,1263,2.0,995419210 +592,1282,1.0,995420615 +592,1291,4.0,995419713 +592,1298,2.0,995419537 +592,1320,4.0,995421161 +592,1356,4.0,995421702 +592,1370,5.0,995421934 +592,1371,1.0,995421702 +592,1372,4.0,995421702 +592,1373,2.0,995421702 +592,1374,4.0,995421702 +592,1375,2.0,995421702 +592,1376,4.0,995420588 +592,1387,3.0,995421863 +592,1517,4.0,995420684 +592,1552,5.0,995422320 +592,1580,4.0,995419125 +592,1682,4.0,995420188 +592,1690,5.0,995421161 +592,1693,3.0,995420698 +592,1722,5.0,995422066 +592,1735,3.0,995420188 +592,1917,5.0,995422055 +592,1941,5.0,995419617 +592,1954,4.0,995419975 +592,2028,4.0,995418893 +592,2080,2.0,995420684 +592,2096,2.0,995420314 +592,2115,5.0,995420650 +592,2124,3.0,995421042 +592,2167,3.0,995420467 +592,2273,5.0,995421876 +592,2302,5.0,995419176 +592,2353,5.0,995421955 +592,2355,3.0,995420629 +592,2376,5.0,995420629 +592,2423,5.0,995419701 +592,2571,5.0,995419337 +592,2617,3.0,995421967 +592,2628,5.0,995419094 +592,2671,3.0,995420250 +592,2694,4.0,995420935 +592,2762,5.0,995419897 +592,2772,4.0,995420935 +592,2804,3.0,995419991 +592,2916,5.0,995420601 +592,2918,3.0,995419482 +592,2947,5.0,995419405 +592,2948,4.0,995420234 +592,2949,5.0,995421888 +592,2959,5.0,995419071 +592,2987,4.0,995422335 +592,2989,5.0,995420787 +592,2990,5.0,995421030 +592,2991,5.0,995420921 +592,2993,5.0,995421850 +592,3082,5.0,995420852 +592,3175,4.0,995420534 +592,3253,4.0,995420274 +592,3271,3.0,995420565 +592,3397,4.0,995419537 +592,3404,3.0,995422106 +592,3452,4.0,995421319 +592,3510,4.0,995421303 +592,3527,5.0,995421850 +592,3578,5.0,995421850 +592,3617,4.0,995420049 +592,3635,5.0,995419650 +592,3638,5.0,995422133 +592,3717,5.0,995420037 +592,3744,4.0,995421368 +592,3752,4.0,995421352 +592,3798,4.0,995421439 +592,3821,5.0,995421536 +592,3826,3.0,995421519 +592,3897,4.0,995419650 +592,3916,4.0,995419883 +592,3948,5.0,995421289 +592,3977,2.0,995421330 +592,3979,3.0,995421536 +592,3984,5.0,995422133 +592,4214,4.0,995420750 +592,4247,5.0,995421498 +592,4270,2.0,995421391 +592,4299,4.0,995421405 +592,4340,3.0,995421433 +592,4344,5.0,995421094 +592,4369,5.0,995419146 +592,4453,1.0,995421593 +593,2,3.0,835464130 +593,10,2.0,835463471 +593,20,4.0,840996449 +593,25,5.0,835465034 +593,32,5.0,835463824 +593,47,4.0,835463672 +593,95,4.0,835464565 +593,122,3.0,840996303 +593,141,5.0,835464565 +593,150,4.0,835462855 +593,165,4.0,835462904 +593,172,5.0,835464635 +593,173,3.0,835463878 +593,185,5.0,835463560 +593,196,4.0,835464162 +593,225,4.0,835463672 +593,227,4.0,835465650 +593,231,3.0,840995397 +593,246,4.0,835465650 +593,273,3.0,835465650 +593,277,4.0,835465163 +593,288,5.0,835463581 +593,292,4.0,835463471 +593,296,5.0,835462855 +593,306,4.0,840996303 +593,307,4.0,840996339 +593,316,3.0,835463235 +593,319,5.0,840996278 +593,329,3.0,835463235 +593,337,3.0,835463908 +593,344,4.0,835462904 +593,353,5.0,835466240 +593,356,5.0,840995512 +593,357,5.0,835465163 +593,362,3.0,840996099 +593,367,4.0,835463878 +593,370,3.0,840995929 +593,377,5.0,835464671 +593,380,2.0,835462855 +593,382,4.0,840996381 +593,420,3.0,835463824 +593,434,3.0,835463471 +593,442,5.0,835464776 +593,454,5.0,835463847 +593,457,4.0,835463560 +593,466,3.0,840995953 +593,480,3.0,835464163 +593,485,3.0,840995909 +593,497,5.0,840995910 +593,500,4.0,835465034 +593,508,5.0,840995839 +593,509,5.0,840995807 +593,519,3.0,840996369 +593,520,3.0,840995953 +593,531,3.0,840996303 +593,533,4.0,840996381 +593,543,5.0,840996257 +593,552,4.0,840995972 +593,555,5.0,835464671 +593,586,3.0,835465990 +593,587,4.0,835465255 +593,589,4.0,835464565 +593,592,3.0,835462855 +593,593,4.0,835463560 +593,597,4.0,835465650 +593,616,4.0,840996226 +593,648,4.0,840995888 +593,708,5.0,844753626 +593,780,5.0,840995995 +593,1104,3.0,844753453 +594,1,4.0,938948878 +594,21,5.0,938961252 +594,110,5.0,938962157 +594,162,5.0,938960414 +594,206,4.0,938960243 +594,246,4.0,938960116 +594,260,5.0,938961252 +594,296,5.0,938949135 +594,474,3.0,938961491 +594,527,5.0,938962048 +594,541,4.0,938961093 +594,549,5.0,938960161 +594,608,5.0,938949190 +594,778,2.0,938962048 +594,858,5.0,938948387 +594,913,5.0,938961093 +594,1079,4.0,938947869 +594,1089,5.0,938949136 +594,1147,5.0,938960074 +594,1148,5.0,938948789 +594,1196,5.0,938961301 +594,1197,3.0,938947985 +594,1198,5.0,938961252 +594,1200,4.0,938948241 +594,1210,4.0,938961373 +594,1213,5.0,938949281 +594,1214,3.0,938961373 +594,1220,5.0,938962080 +594,1221,5.0,938948387 +594,1223,5.0,938948789 +594,1230,5.0,955037203 +594,1234,4.0,938948387 +594,1288,5.0,938947869 +594,1304,4.0,938961491 +594,1321,3.0,938948287 +594,1358,5.0,938962157 +594,1387,5.0,938961373 +594,1394,4.0,938947869 +594,1584,4.0,939034456 +594,1610,3.0,938961373 +594,1617,5.0,938949281 +594,1729,3.0,938949280 +594,1784,3.0,938948831 +594,1909,4.0,939034456 +594,1953,5.0,938948387 +594,1965,5.0,938947985 +594,2000,2.0,938961301 +594,2028,4.0,938961252 +594,2064,5.0,938947985 +594,2081,3.0,938960925 +594,2150,4.0,938947985 +594,2243,3.0,938947985 +594,2248,4.0,938947985 +594,2262,2.0,938948241 +594,2268,3.0,938949190 +594,2289,5.0,938948878 +594,2311,2.0,938948241 +594,2366,5.0,938961373 +594,2375,2.0,938962080 +594,2406,4.0,938961373 +594,2542,5.0,938948622 +594,2571,3.0,938961301 +594,2599,5.0,938948789 +594,2628,4.0,938961301 +594,2706,3.0,938947368 +594,2710,4.0,938947397 +594,2716,3.0,938947985 +594,2723,3.0,938947574 +594,2726,4.0,938961136 +594,2759,4.0,938947494 +594,2791,3.0,938947985 +594,3362,4.0,955037203 +594,3363,5.0,955037203 +594,3421,4.0,955037203 +594,5060,5.0,955037203 +595,1,5.0,965077903 +595,2,2.0,965230397 +595,13,5.0,965230121 +595,17,4.0,965077977 +595,34,3.0,965077143 +595,48,4.0,965230500 +595,111,5.0,965162852 +595,150,4.0,965078298 +595,162,5.0,965077016 +595,164,4.0,965077903 +595,176,5.0,965077977 +595,206,5.0,965230839 +595,235,4.0,965077977 +595,262,5.0,965078078 +595,265,4.0,965077878 +595,272,5.0,965076996 +595,296,5.0,965077067 +595,313,1.0,965230326 +595,318,4.0,965076996 +595,334,2.0,965077926 +595,348,3.0,965078096 +595,357,4.0,965078041 +595,364,4.0,965230086 +595,509,5.0,965078017 +595,531,5.0,965230203 +595,535,5.0,965077067 +595,549,4.0,965078374 +595,556,5.0,965230906 +595,558,4.0,965230453 +595,562,4.0,965077092 +595,581,3.0,965230797 +595,586,4.0,965230453 +595,588,3.0,965230182 +595,590,5.0,965078374 +595,593,5.0,965077188 +595,594,3.0,965230086 +595,595,2.0,965230086 +595,596,4.0,965230086 +595,608,5.0,965077800 +595,661,4.0,965230022 +595,766,3.0,965076608 +595,778,5.0,965077092 +595,899,5.0,965230967 +595,900,4.0,965231022 +595,904,5.0,965162827 +595,908,5.0,965162852 +595,912,3.0,965076586 +595,914,4.0,965231048 +595,917,5.0,965230500 +595,919,5.0,965230602 +595,1013,4.0,965230233 +595,1022,4.0,965230182 +595,1023,5.0,965230615 +595,1028,5.0,965230022 +595,1031,3.0,965230182 +595,1032,4.0,965230182 +595,1033,3.0,965230150 +595,1035,5.0,965231048 +595,1059,5.0,965078283 +595,1073,5.0,965230634 +595,1081,4.0,965230997 +595,1089,5.0,965077170 +595,1094,5.0,965078150 +595,1097,5.0,965230022 +595,1120,4.0,965078240 +595,1148,4.0,965077143 +595,1171,4.0,965078341 +595,1179,4.0,965077977 +595,1183,3.0,965078374 +595,1188,5.0,965077188 +595,1189,5.0,965230754 +595,1191,4.0,965230839 +595,1192,5.0,965077016 +595,1198,4.0,965076608 +595,1213,5.0,965077027 +595,1220,4.0,965231048 +595,1223,4.0,965077878 +595,1230,4.0,965076623 +595,1264,5.0,965162892 +595,1265,4.0,965077828 +595,1266,2.0,965077926 +595,1282,3.0,965230022 +595,1288,5.0,965230997 +595,1289,1.0,965230819 +595,1358,4.0,965077067 +595,1367,3.0,965230266 +595,1380,4.0,965231022 +595,1449,5.0,965078283 +595,1500,2.0,965077949 +595,1537,4.0,965077977 +595,1566,4.0,965230295 +595,1610,3.0,965078263 +595,1617,5.0,965162852 +595,1641,4.0,965077878 +595,1648,1.0,965078263 +595,1673,5.0,965077208 +595,1694,4.0,965077949 +595,1713,1.0,965230121 +595,1734,5.0,965078133 +595,1806,2.0,965230654 +595,1883,4.0,965078374 +595,1907,3.0,965230150 +595,1916,5.0,965077854 +595,1921,4.0,965078170 +595,1923,4.0,965077854 +595,1947,5.0,965230997 +595,1966,4.0,965077828 +595,2005,4.0,965230266 +595,2014,4.0,965230266 +595,2015,3.0,965230326 +595,2018,4.0,965230086 +595,2028,1.0,965077092 +595,2033,1.0,965230150 +595,2059,3.0,965230500 +595,2064,5.0,965230777 +595,2078,4.0,965230043 +595,2080,4.0,965230086 +595,2081,3.0,965230266 +595,2085,3.0,965230233 +595,2087,4.0,965230086 +595,2096,4.0,965230150 +595,2102,5.0,965230121 +595,2137,5.0,965230043 +595,2138,5.0,965230022 +595,2139,1.0,965230086 +595,2141,5.0,965230266 +595,2186,5.0,965162892 +595,2284,5.0,965078170 +595,2289,5.0,965077115 +595,2294,1.0,965230182 +595,2303,5.0,965230997 +595,2324,4.0,965078017 +595,2355,5.0,965078150 +595,2391,5.0,965078263 +595,2396,5.0,965077926 +595,2571,4.0,965077067 +595,2599,5.0,965077115 +595,2677,4.0,965230839 +595,2687,3.0,965230326 +595,2692,5.0,965077903 +595,2700,1.0,965078041 +595,2716,3.0,965076608 +595,2762,3.0,965077170 +595,2858,5.0,965077208 +595,2859,4.0,965230819 +595,2890,4.0,965077903 +595,2908,4.0,965077067 +595,2971,5.0,965231022 +595,3006,5.0,965077067 +595,3061,4.0,965230997 +595,3114,5.0,965230022 +595,3182,2.0,965076706 +595,3246,5.0,965078059 +595,3400,1.0,965230121 +595,3545,5.0,965230967 +595,3549,4.0,965230967 +595,3578,5.0,965076734 +595,3606,3.0,965230967 +595,3615,2.0,965076706 +595,3623,2.0,965076872 +595,3672,4.0,965230397 +595,3751,3.0,965076706 +595,3793,2.0,965076872 +596,1,3.5,1145034973 +596,6,4.0,1138659551 +596,10,3.5,1142088563 +596,16,5.0,1138658329 +596,18,3.5,1139403101 +596,19,2.5,1138658273 +596,23,3.5,1140797926 +596,25,4.0,1138658441 +596,31,3.0,1138705152 +596,32,5.0,1138659546 +596,36,3.5,1142088573 +596,47,4.0,1138659444 +596,50,4.5,1138659441 +596,69,4.0,1147972002 +596,70,4.0,1138659867 +596,92,3.0,1139334630 +596,110,4.0,1138660509 +596,111,5.0,1138658397 +596,141,4.0,1138658777 +596,145,4.5,1142088861 +596,147,3.5,1138661955 +596,150,3.5,1138662118 +596,156,5.0,1139092457 +596,163,3.5,1140797899 +596,165,3.5,1142088523 +596,172,3.5,1138705156 +596,194,5.0,1139092479 +596,223,4.0,1138659553 +596,231,3.0,1142088550 +596,247,4.0,1139143221 +596,253,4.0,1138902768 +596,259,3.5,1138732383 +596,260,3.0,1138659800 +596,266,3.0,1140784454 +596,282,3.0,1142088795 +596,288,4.5,1138661857 +596,292,3.5,1138877013 +596,293,4.0,1138659480 +596,296,5.0,1138658558 +596,300,3.5,1138729358 +596,316,3.5,1142088535 +596,318,5.0,1138659437 +596,327,1.5,1139334643 +596,329,3.5,1138729373 +596,337,3.5,1140797876 +596,339,3.5,1138661870 +596,344,3.5,1140785813 +596,350,3.5,1138877007 +596,353,4.5,1138729365 +596,355,3.0,1138658758 +596,356,5.0,1138658566 +596,357,3.5,1138902774 +596,364,3.0,1139307601 +596,367,3.0,1138729370 +596,370,3.0,1138658745 +596,373,3.0,1138732361 +596,377,4.0,1138902779 +596,380,3.0,1138729340 +596,428,4.5,1138659400 +596,431,4.0,1138659358 +596,434,3.0,1138877018 +596,440,3.0,1138705128 +596,441,3.5,1138729874 +596,442,4.0,1139307591 +596,443,5.0,1138659264 +596,454,4.0,1138729339 +596,455,3.0,1139403109 +596,457,4.0,1138662101 +596,466,3.0,1139402969 +596,474,3.5,1138658249 +596,480,4.0,1138658585 +596,481,4.0,1139403068 +596,485,3.5,1138658762 +596,493,3.5,1138729837 +596,500,3.5,1138705133 +596,508,3.5,1140798130 +596,527,4.5,1138658580 +596,532,2.5,1139403076 +596,535,4.0,1139403086 +596,539,3.0,1138661829 +596,541,3.5,1139316022 +596,543,1.0,1138705109 +596,553,3.5,1138658343 +596,555,4.0,1138658735 +596,586,3.5,1139402961 +596,587,3.5,1140797887 +596,589,4.0,1138662141 +596,590,4.0,1138658562 +596,593,4.0,1138659461 +596,595,3.0,1139402926 +596,597,3.5,1138658725 +596,608,3.5,1138660461 +596,628,4.0,1138660479 +596,648,3.5,1142088527 +596,733,4.0,1138659195 +596,736,3.5,1142088549 +596,778,4.5,1138658715 +596,780,3.5,1138662154 +596,783,2.5,1139307579 +596,784,3.5,1138705121 +596,786,3.0,1142088659 +596,788,3.0,1142088641 +596,858,5.0,1138659368 +596,902,4.0,1139143144 +596,903,4.5,1138660389 +596,904,4.5,1138660382 +596,910,3.5,1138658720 +596,912,4.5,1138729762 +596,924,3.5,1138705101 +596,931,4.0,1139403071 +596,953,4.0,1138705097 +596,1036,4.0,1138876991 +596,1042,3.0,1139143205 +596,1080,4.0,1139307556 +596,1086,4.5,1138875194 +596,1089,4.0,1138659499 +596,1090,3.5,1138660310 +596,1092,3.5,1139307571 +596,1093,4.5,1139403031 +596,1097,3.5,1140785802 +596,1101,3.0,1139307563 +596,1120,3.5,1138729833 +596,1129,3.5,1142088998 +596,1136,3.5,1138658711 +596,1171,3.0,1139092426 +596,1183,0.5,1138661846 +596,1193,5.0,1138658708 +596,1196,3.5,1142088479 +596,1199,3.5,1138876981 +596,1206,4.0,1138659827 +596,1208,4.5,1138658311 +596,1209,5.0,1138659425 +596,1210,3.5,1142088482 +596,1211,5.0,1138729155 +596,1213,5.0,1138658243 +596,1219,4.5,1138660399 +596,1221,5.0,1138659369 +596,1222,4.0,1138659491 +596,1227,4.5,1138659414 +596,1233,4.0,1138661848 +596,1240,3.5,1138705083 +596,1246,4.0,1138658692 +596,1258,4.0,1138658338 +596,1259,3.5,1138659473 +596,1265,4.0,1138732315 +596,1267,2.5,1138660005 +596,1270,3.5,1139092271 +596,1279,4.5,1138732104 +596,1281,3.0,1138660009 +596,1287,4.0,1145034956 +596,1288,4.5,1138658687 +596,1302,2.5,1138705079 +596,1333,4.0,1138729865 +596,1343,3.5,1140797841 +596,1347,2.5,1147971936 +596,1356,3.5,1142088626 +596,1370,3.5,1138732555 +596,1387,4.5,1138705039 +596,1388,3.5,1139092413 +596,1391,3.0,1142088710 +596,1407,4.0,1138876965 +596,1408,4.0,1138659841 +596,1461,3.5,1139307740 +596,1466,4.0,1138658646 +596,1479,3.5,1139403049 +596,1485,3.5,1140785825 +596,1517,3.5,1138658277 +596,1527,3.0,1138658667 +596,1552,3.5,1138705055 +596,1573,3.5,1138732341 +596,1580,3.0,1138658670 +596,1584,3.0,1138705044 +596,1608,2.5,1138658678 +596,1617,4.0,1138660432 +596,1619,4.5,1139403035 +596,1625,4.5,1138659506 +596,1627,3.5,1139092405 +596,1644,2.5,1147971922 +596,1645,4.0,1139307544 +596,1653,4.5,1138660597 +596,1671,3.5,1142905481 +596,1672,3.5,1138659169 +596,1676,3.5,1138659792 +596,1682,4.0,1138658655 +596,1704,4.5,1138659458 +596,1721,4.0,1138660612 +596,1722,3.5,1138659783 +596,1729,4.0,1138658661 +596,1732,5.0,1138659217 +596,1747,5.0,1138876957 +596,1827,4.0,1138729826 +596,1835,4.0,1138732377 +596,1884,4.5,1139092395 +596,1892,4.0,1138660016 +596,1912,3.5,1142088991 +596,1917,3.0,1139402917 +596,1923,4.0,1138658262 +596,1961,4.5,1138659521 +596,1968,3.5,1142905460 +596,1982,3.5,1138729521 +596,1997,3.5,1138658653 +596,2003,3.5,1138660611 +596,2004,3.5,1138660053 +596,2011,3.5,1140785783 +596,2012,3.5,1138876971 +596,2023,4.0,1138659371 +596,2028,4.0,1138660306 +596,2054,3.0,1138705029 +596,2064,4.0,1142089063 +596,2067,4.0,1139307701 +596,2081,2.0,1138659774 +596,2160,3.5,1138658478 +596,2161,3.0,1139143175 +596,2167,4.0,1140785777 +596,2178,4.0,1142905527 +596,2194,3.5,1138659778 +596,2231,3.5,1140784370 +596,2321,3.5,1138658663 +596,2324,4.5,1138660348 +596,2329,5.0,1138658627 +596,2338,3.0,1138661936 +596,2340,3.5,1139307711 +596,2353,3.5,1138658673 +596,2355,3.0,1142088672 +596,2378,3.0,1139307694 +596,2389,3.5,1140050384 +596,2424,3.0,1138705022 +596,2427,4.0,1138659057 +596,2467,4.0,1138659053 +596,2474,4.0,1138659981 +596,2485,3.5,1139307690 +596,2505,3.5,1138659068 +596,2529,3.5,1138658606 +596,2541,3.5,1138659063 +596,2542,3.5,1138659753 +596,2571,4.5,1138660295 +596,2572,3.0,1142088973 +596,2596,4.0,1138660571 +596,2628,4.0,1138658620 +596,2671,3.5,1138658615 +596,2672,4.0,1139307684 +596,2677,4.0,1138661902 +596,2683,3.5,1138661824 +596,2692,4.0,1138659604 +596,2706,3.5,1138658307 +596,2707,4.5,1139307677 +596,2710,4.0,1138658328 +596,2722,2.0,1138659047 +596,2762,4.5,1138658596 +596,2797,3.5,1138658324 +596,2803,4.0,1138659036 +596,2805,3.0,1138659039 +596,2858,5.0,1138659468 +596,2861,3.0,1138661923 +596,2908,4.0,1139307661 +596,2912,3.5,1141003791 +596,2918,1.0,1138705003 +596,2944,3.0,1138659029 +596,2947,3.5,1140785792 +596,2953,3.5,1138875126 +596,2959,5.0,1138658240 +596,2966,4.0,1138729888 +596,2997,3.5,1138661826 +596,3006,1.0,1138659533 +596,3020,5.0,1138659013 +596,3033,3.0,1138732561 +596,3081,3.5,1142088874 +596,3113,2.5,1139092360 +596,3147,4.0,1138660492 +596,3176,4.5,1138704977 +596,3177,3.5,1147972020 +596,3186,3.5,1138659973 +596,3198,4.5,1138659595 +596,3253,4.0,1138658600 +596,3267,3.5,1138658998 +596,3275,4.0,1138660355 +596,3285,5.0,1138660195 +596,3386,4.0,1138658993 +596,3408,3.5,1138704983 +596,3409,3.0,1138729445 +596,3448,3.5,1138660584 +596,3481,5.0,1138658587 +596,3499,3.5,1138659515 +596,3510,3.0,1138729436 +596,3535,4.5,1139307898 +596,3556,4.5,1138661896 +596,3578,4.5,1140797838 +596,3614,3.5,1138658976 +596,3617,3.0,1138729441 +596,3623,3.0,1138704970 +596,3653,5.0,1138659266 +596,3681,3.5,1210534664 +596,3686,4.0,1139402984 +596,3706,3.5,1139092333 +596,3717,3.0,1138658985 +596,3791,3.0,1138729450 +596,3793,3.5,1138658296 +596,3825,3.0,1139092347 +596,3826,3.0,1139402994 +596,3869,4.0,1138658979 +596,3896,3.5,1139307904 +596,3897,4.5,1138658543 +596,3948,3.5,1138658570 +596,3949,4.0,1138659561 +596,3977,3.0,1140797960 +596,3986,2.5,1138658932 +596,3994,1.0,1139092242 +596,3999,2.5,1139334653 +596,4011,4.5,1138659454 +596,4015,3.0,1139307645 +596,4022,3.5,1138729385 +596,4025,3.5,1138729399 +596,4027,4.0,1138729684 +596,4033,3.5,1138658918 +596,4146,4.0,1149788293 +596,4161,3.5,1138658927 +596,4223,3.0,1138658915 +596,4226,5.0,1138659449 +596,4262,5.0,1138659467 +596,4306,3.0,1138658253 +596,4310,3.5,1138658939 +596,4343,2.0,1138729417 +596,4344,3.5,1138729395 +596,4351,4.5,1139092339 +596,4361,3.0,1139307623 +596,4369,3.5,1138659946 +596,4388,0.5,1138658967 +596,4639,3.5,1138705217 +596,4640,2.5,1139307883 +596,4643,3.0,1139143164 +596,4718,3.5,1139307632 +596,4776,2.0,1148666807 +596,4848,3.5,1138658466 +596,4855,3.5,1138729654 +596,4878,4.5,1138658869 +596,4901,4.0,1146406806 +596,4963,4.5,1138704988 +596,4967,3.5,1138660343 +596,4973,5.0,1138658590 +596,4975,3.5,1139092297 +596,4979,4.0,1138705201 +596,4993,3.0,1138658287 +596,4995,4.0,1138659786 +596,5010,4.0,1138705210 +596,5152,2.0,1138658878 +596,5218,3.5,1138705206 +596,5266,3.0,1139402950 +596,5349,3.5,1138658577 +596,5378,3.5,1138729134 +596,5418,3.5,1138661834 +596,5445,3.5,1138704963 +596,5452,2.5,1139143267 +596,5459,3.0,1139404326 +596,5464,3.5,1138659877 +596,5481,3.5,1138902784 +596,5502,2.0,1138659173 +596,5505,3.5,1142174021 +596,5507,1.5,1138658907 +596,5528,3.0,1138705179 +596,5608,4.0,1138660336 +596,5620,3.0,1138658863 +596,5630,3.5,1139307838 +596,5655,4.0,1139334623 +596,5669,4.5,1138659541 +596,5679,4.0,1138729383 +596,5682,4.0,1141003816 +596,5784,3.5,1139403124 +596,5785,3.0,1139143257 +596,5810,4.0,1139092304 +596,5872,3.5,1138705190 +596,5902,3.5,1138729659 +596,5903,4.0,1139307854 +596,5945,3.5,1138658829 +596,5952,3.0,1138658336 +596,5954,3.0,1140784342 +596,5956,3.5,1138659861 +596,5989,4.5,1138659853 +596,5995,5.0,1138658838 +596,6003,4.5,1138729859 +596,6016,5.0,1138660279 +596,6058,2.0,1145139399 +596,6157,0.5,1138729405 +596,6187,4.5,1139307892 +596,6188,3.5,1139402945 +596,6218,4.0,1138661854 +596,6281,3.5,1139092294 +596,6323,4.0,1139307857 +596,6331,3.5,1138729731 +596,6365,2.5,1138661876 +596,6370,4.0,1138729167 +596,6373,2.0,1140297087 +596,6377,3.5,1138658547 +596,6378,3.5,1138658852 +596,6502,4.0,1138658846 +596,6534,2.0,1138705193 +596,6537,2.5,1138658858 +596,6539,4.5,1138659789 +596,6708,4.0,1138659526 +596,6709,4.0,1138659420 +596,6711,5.0,1138659849 +596,6787,4.0,1138729115 +596,6796,4.0,1138659531 +596,6863,3.5,1138705173 +596,6868,4.0,1158765184 +596,6870,4.5,1138658832 +596,6874,5.0,1138659493 +596,6934,2.5,1138661881 +596,6936,3.0,1138658855 +596,6953,3.5,1138660469 +596,6979,4.0,1138660654 +596,7022,4.0,1140050306 +596,7090,3.0,1139092193 +596,7143,3.5,1138659858 +596,7160,4.0,1138659588 +596,7254,4.5,1138705164 +596,7318,3.5,1141841715 +596,7323,3.5,1138660255 +596,7352,4.0,1141583206 +596,7361,5.0,1138659510 +596,7438,4.5,1138659484 +596,7445,3.0,1139307832 +596,7458,3.5,1138705182 +596,7460,3.0,1138732071 +596,8070,3.5,1140374287 +596,8132,5.0,1138659189 +596,8360,3.0,1138705170 +596,8361,2.0,1138661970 +596,8368,3.0,1138729137 +596,8370,3.5,1146386261 +596,8376,4.5,1138659864 +596,8464,4.0,1138658834 +596,8528,3.0,1138658818 +596,8529,3.5,1140798114 +596,8622,4.0,1138705162 +596,8665,2.0,1138705144 +596,8713,3.5,1138902818 +596,8784,4.0,1142625112 +596,8798,4.0,1142088218 +596,8873,4.5,1138729637 +596,8927,3.0,1139334603 +596,8949,4.0,1138660681 +596,8950,3.5,1144857237 +596,8957,3.5,1140296940 +596,8958,3.5,1138660452 +596,8961,4.0,1138658774 +596,8972,3.5,1142043104 +596,8977,3.0,1140025848 +596,8984,3.5,1140784441 +596,8985,0.5,1138660166 +596,27022,3.5,1139833908 +596,27773,3.5,1147471590 +596,27788,4.0,1138659329 +596,27821,3.5,1138732018 +596,27876,3.0,1138732051 +596,30707,4.5,1141583266 +596,30749,4.5,1144790585 +596,30810,3.5,1140296990 +596,30812,4.0,1138659578 +596,31410,4.5,1138660285 +596,32019,1.0,1138732495 +596,32029,3.5,1139307922 +596,32587,3.5,1138659481 +596,33124,3.5,1146645097 +596,33162,2.0,1138875218 +596,33166,5.0,1144615341 +596,33437,4.0,1142088197 +596,33493,3.5,1138658785 +596,33679,3.5,1140784447 +596,34048,3.0,1142125035 +596,34319,3.5,1142353181 +596,34437,3.5,1146265483 +596,37386,0.5,1139307795 +596,37720,3.5,1140315106 +596,37741,3.5,1158765270 +596,38061,3.5,1147471547 +596,39446,3.5,1140466477 +596,40583,4.0,1147471642 +596,40819,4.5,1158765340 +596,41569,4.0,1138809915 +596,41997,3.0,1139505587 +596,44555,5.0,1183906550 +596,48394,4.5,1183906582 +596,48516,4.0,1183906557 +596,55247,4.0,1210534623 +596,55820,3.5,1210534579 +596,56782,4.0,1210534655 +596,58351,4.5,1217600199 +597,1,5.0,940708550 +597,11,4.0,940707935 +597,29,3.0,940707179 +597,32,4.0,940707179 +597,34,5.0,940708603 +597,39,5.0,940707935 +597,160,3.0,940708918 +597,164,4.0,940706921 +597,185,3.0,940707571 +597,196,3.0,940707609 +597,198,3.0,940707355 +597,260,5.0,940709043 +597,293,4.0,940707879 +597,350,3.0,940708760 +597,356,4.0,940707703 +597,451,5.0,940708840 +597,480,4.0,940707511 +597,492,5.0,940708761 +597,497,4.0,940707828 +597,513,3.0,940708840 +597,517,3.0,940708761 +597,541,5.0,940706721 +597,588,5.0,940708456 +597,589,5.0,940707355 +597,610,2.0,940707571 +597,648,3.0,940708799 +597,671,4.0,940707571 +597,745,5.0,940708400 +597,750,5.0,940707179 +597,800,5.0,940708672 +597,898,4.0,940707703 +597,899,5.0,940707778 +597,903,5.0,940708672 +597,904,5.0,940708672 +597,906,4.0,940708761 +597,907,5.0,940707985 +597,908,5.0,940709146 +597,909,5.0,940708511 +597,910,5.0,940708456 +597,911,4.0,940708800 +597,912,4.0,940707778 +597,913,5.0,940706721 +597,916,4.0,940707828 +597,923,5.0,940709146 +597,924,4.0,940707124 +597,928,4.0,940707778 +597,931,4.0,940708718 +597,933,4.0,940707985 +597,942,4.0,940706859 +597,943,4.0,940707837 +597,945,5.0,940707879 +597,946,5.0,940708603 +597,950,5.0,940708718 +597,951,5.0,940708400 +597,968,4.0,940707412 +597,969,5.0,940707828 +597,1018,3.0,940708840 +597,1019,4.0,940707571 +597,1066,4.0,940707711 +597,1069,4.0,940706859 +597,1077,5.0,940707300 +597,1079,4.0,940708124 +597,1086,4.0,940708718 +597,1097,4.0,940707230 +597,1127,4.0,940707412 +597,1129,4.0,940707230 +597,1136,5.0,940708400 +597,1148,5.0,940708081 +597,1178,5.0,940709043 +597,1193,4.0,940709044 +597,1196,3.0,940707124 +597,1197,5.0,940707778 +597,1199,5.0,940707355 +597,1200,4.0,940707355 +597,1210,3.0,940707300 +597,1212,5.0,940708718 +597,1214,5.0,940707179 +597,1215,3.0,940707511 +597,1220,4.0,940708400 +597,1223,5.0,940708252 +597,1238,4.0,940708124 +597,1240,5.0,940707124 +597,1247,4.0,940707828 +597,1248,5.0,940706721 +597,1252,5.0,940706921 +597,1264,5.0,940708718 +597,1265,5.0,940707828 +597,1267,3.0,940706859 +597,1269,5.0,940708400 +597,1270,4.0,940707300 +597,1274,2.0,940707511 +597,1281,4.0,940708212 +597,1284,5.0,940708672 +597,1285,3.0,940708511 +597,1288,3.0,940708252 +597,1301,4.0,940707300 +597,1304,5.0,940708081 +597,1307,4.0,940707879 +597,1334,3.0,940707609 +597,1358,5.0,940709146 +597,1394,5.0,940708212 +597,1396,4.0,940707571 +597,1422,2.0,940708918 +597,1460,2.0,940708840 +597,1527,4.0,940707230 +597,1580,5.0,940707179 +597,1584,4.0,940707300 +597,1590,2.0,940708918 +597,1597,4.0,940708761 +597,1617,5.0,940706721 +597,1644,3.0,940708918 +597,1653,3.0,940707300 +597,1663,3.0,940708511 +597,1674,5.0,940707985 +597,1689,3.0,940708799 +597,1711,4.0,940708918 +597,1721,4.0,940707778 +597,1732,4.0,940708511 +597,1748,3.0,940706921 +597,1784,4.0,940709156 +597,1845,5.0,940708511 +597,1883,4.0,940708603 +597,1909,4.0,940707511 +597,1917,2.0,940707435 +597,1921,4.0,940707355 +597,1924,2.0,940707571 +597,1950,4.0,940708718 +597,1964,4.0,940708718 +597,1982,4.0,940709043 +597,2000,2.0,940708550 +597,2009,3.0,940707300 +597,2010,5.0,940707124 +597,2011,3.0,940707473 +597,2015,4.0,940709088 +597,2028,4.0,940709088 +597,2046,3.0,940707230 +597,2064,5.0,940708603 +597,2076,5.0,940708718 +597,2078,4.0,940708212 +597,2080,4.0,940707778 +597,2094,4.0,940707609 +597,2108,5.0,940708400 +597,2117,3.0,940707571 +597,2126,3.0,940708866 +597,2136,2.0,940708124 +597,2140,4.0,940707230 +597,2141,3.0,940708550 +597,2150,5.0,940708265 +597,2173,3.0,940707412 +597,2184,5.0,940708866 +597,2206,4.0,940708799 +597,2208,5.0,940707778 +597,2252,4.0,940708081 +597,2273,4.0,940709088 +597,2287,5.0,940707179 +597,2288,3.0,940707124 +597,2291,4.0,940707879 +597,2322,3.0,940707300 +597,2338,3.0,940708973 +597,2349,4.0,940708252 +597,2352,4.0,940709088 +597,2355,5.0,940708603 +597,2363,4.0,940707179 +597,2395,5.0,940708456 +597,2396,5.0,940707703 +597,2406,4.0,940707985 +597,2413,3.0,940708918 +597,2414,4.0,940708761 +597,2428,3.0,940707473 +597,2454,4.0,940707412 +597,2458,2.0,940708603 +597,2467,5.0,940708672 +597,2470,5.0,940708603 +597,2475,2.0,940708918 +597,2525,3.0,940707511 +597,2527,3.0,940707230 +597,2528,3.0,940707179 +597,2529,4.0,940707230 +597,2554,3.0,940707412 +597,2571,5.0,940707124 +597,2572,3.0,940707828 +597,2613,3.0,940707355 +597,2657,4.0,940707124 +597,2661,4.0,940707609 +597,2662,3.0,940707473 +597,2664,5.0,940707473 +597,2668,3.0,940707473 +597,2699,4.0,940707412 +597,2716,5.0,940708124 +597,2720,2.0,940706200 +597,2761,5.0,940705799 +597,2762,4.0,940705799 +597,2770,4.0,940709261 +597,2791,4.0,940708081 +597,2797,4.0,940708124 +597,2807,3.0,940705987 +597,2923,4.0,940708144 +597,2935,5.0,940707703 +597,2937,5.0,940708212 +597,2985,4.0,940707571 +597,2987,5.0,940706921 +597,5060,5.0,940708456 +598,1,4.5,1057554797 +598,11,4.0,1008571467 +598,15,2.0,1007344372 +598,17,2.0,1009415293 +598,39,3.0,1008571296 +598,50,5.0,1008572131 +598,69,4.0,1008571397 +598,70,2.0,1007344460 +598,88,4.0,1014589144 +598,104,5.0,1008571412 +598,110,4.0,1008571627 +598,161,4.0,1008657959 +598,180,4.0,1057554799 +598,216,5.0,1014589172 +598,223,5.0,1008570454 +598,260,5.0,1008572312 +598,296,5.0,1008571588 +598,318,5.0,1008571588 +598,333,5.0,1014589130 +598,356,4.0,1008571199 +598,364,4.0,1008572199 +598,440,4.0,1008571325 +598,527,4.0,1007344372 +598,539,2.0,1008571467 +598,551,4.0,1008571338 +598,588,4.0,1008571159 +598,589,4.0,1057555099 +598,590,4.0,1008572384 +598,594,4.0,1008572180 +598,780,3.0,1008658011 +598,785,4.0,1008570619 +598,838,2.0,1009415275 +598,858,4.0,1057554666 +598,919,4.0,1008572180 +598,923,4.0,1009080786 +598,924,4.0,1008572325 +598,1028,4.0,1008572199 +598,1032,5.0,1008572199 +598,1035,3.0,1008572180 +598,1042,3.0,1008571437 +598,1060,5.0,1008571228 +598,1079,4.0,1008571093 +598,1093,3.0,1008570482 +598,1097,4.0,1008572325 +598,1127,4.0,1008570363 +598,1196,4.0,1008572161 +598,1197,5.0,1008571885 +598,1198,4.0,1008572359 +598,1210,5.0,1007344437 +598,1213,4.0,1008571608 +598,1222,5.0,1008657971 +598,1225,4.0,1008572437 +598,1235,4.0,1057554982 +598,1242,5.0,1008657949 +598,1259,4.0,1008571133 +598,1270,4.0,1008571072 +598,1278,3.5,1057554943 +598,1287,4.0,1008572384 +598,1288,5.0,1008571199 +598,1291,4.0,1008572370 +598,1297,3.0,1008571242 +598,1298,4.0,1008572199 +598,1485,4.0,1008571540 +598,1500,3.5,1057555053 +598,1513,2.0,1008570743 +598,1517,4.0,1008571412 +598,1580,3.0,1008571285 +598,1610,3.5,1057555097 +598,1617,5.0,1008572131 +598,1619,4.0,1008657991 +598,1641,4.0,1057554926 +598,1676,2.0,1008657991 +598,1682,4.0,1058140764 +598,1704,4.0,1008571627 +598,1732,4.0,1008571385 +598,1777,4.0,1008571296 +598,1784,5.0,1008571255 +598,1883,3.0,1008571385 +598,1884,4.0,1011389855 +598,1895,3.0,1008571437 +598,1911,3.0,1008658180 +598,1923,4.0,1057554759 +598,1961,4.0,1007344460 +598,1967,4.0,1008572498 +598,1968,3.5,1057555051 +598,2000,3.0,1057554815 +598,2003,4.0,1008571526 +598,2028,4.0,1008572161 +598,2064,4.0,1008571901 +598,2078,4.0,1008571176 +598,2080,4.0,1008571210 +598,2081,4.0,1008571310 +598,2087,4.0,1008572199 +598,2093,4.0,1008570720 +598,2109,4.0,1057554783 +598,2145,3.0,1007344437 +598,2174,4.0,1008571265 +598,2324,4.0,1008571627 +598,2329,5.0,1007344372 +598,2355,4.0,1008570431 +598,2380,3.0,1019347635 +598,2392,1.0,1008570619 +598,2394,4.0,1008570720 +598,2395,4.0,1014588999 +598,2396,4.0,1008570775 +598,2423,4.0,1057554918 +598,2445,2.0,1007344437 +598,2471,2.0,1007344401 +598,2485,2.0,1008570775 +598,2502,4.0,1008570681 +598,2541,3.0,1008570454 +598,2542,4.0,1008571176 +598,2571,4.0,1008572131 +598,2572,3.0,1008570363 +598,2581,3.0,1008570681 +598,2599,4.0,1008570510 +598,2605,3.0,1008658180 +598,2622,2.0,1008570663 +598,2628,4.0,1008657817 +598,2683,4.0,1008570378 +598,2692,4.0,1008570743 +598,2693,4.0,1008570817 +598,2694,4.0,1008570413 +598,2699,3.0,1008658112 +598,2700,4.0,1008570775 +598,2701,1.0,1008570839 +598,2702,2.0,1008570798 +598,2706,3.0,1008570378 +598,2710,3.0,1008570413 +598,2712,4.0,1008570538 +598,2713,2.0,1008570619 +598,2714,3.0,1008570839 +598,2716,4.0,1008570565 +598,2718,3.0,1008570510 +598,2719,3.0,1008570596 +598,2722,1.0,1008570454 +598,2723,1.0,1008570681 +598,2724,3.0,1008658276 +598,2747,4.0,1008571325 +598,2762,4.0,1008570775 +598,2763,3.0,1008570798 +598,2770,2.0,1008570413 +598,2771,2.0,1008570413 +598,2772,3.0,1008570482 +598,2791,5.0,1008571118 +598,2795,4.0,1057555049 +598,2797,4.0,1008571133 +598,2804,4.0,1008571151 +598,2805,3.0,1008570663 +598,2840,2.0,1008570775 +598,2841,3.0,1008570775 +598,2857,4.0,1008572199 +598,2858,5.0,1008570363 +598,2861,3.0,1008570538 +598,2863,5.0,1008571228 +598,2881,3.0,1008570482 +598,2888,2.0,1008570510 +598,2889,3.0,1008571478 +598,2890,4.0,1008657979 +598,2907,3.0,1008658319 +598,2918,5.0,1008571107 +598,2946,4.0,1008572209 +598,2959,5.0,1008570538 +598,2961,2.0,1008570775 +598,2987,4.0,1008570839 +598,2995,2.0,1008570596 +598,2997,4.0,1008570396 +598,3005,3.0,1008658137 +598,3033,5.0,1057554947 +598,3039,4.0,1057555056 +598,3051,3.0,1014589064 +598,3052,4.0,1008571325 +598,3064,3.0,1007344437 +598,3081,4.0,1008570776 +598,3098,4.0,1058140766 +598,3114,3.0,1008570817 +598,3147,4.0,1008571635 +598,3160,4.0,1008570638 +598,3175,4.0,1008658216 +598,3176,3.0,1008570798 +598,3177,4.0,1007344460 +598,3210,3.0,1008571228 +598,3238,2.0,1008570538 +598,3253,4.5,1057554807 +598,3255,3.0,1008571357 +598,3256,3.5,1057555133 +598,3273,2.0,1008570743 +598,3285,3.0,1008570396 +598,3328,1.0,1008572708 +598,3361,4.0,1008571107 +598,3386,4.0,1008571627 +598,3388,3.0,1037851609 +598,3408,4.0,1008570510 +598,3421,4.0,1008571118 +598,3481,4.0,1008571277 +598,3512,3.0,1008570720 +598,3534,3.0,1008570363 +598,3552,5.0,1008571449 +598,3564,1.0,1008570538 +598,3578,4.0,1008570565 +598,3593,1.0,1008658112 +598,3608,3.0,1008571357 +598,3617,4.0,1008570743 +598,3623,2.0,1008570663 +598,3671,4.0,1008571310 +598,3751,4.0,1008570431 +598,3752,4.0,1008570638 +598,3753,3.0,1008570700 +598,3760,4.0,1008657765 +598,3786,3.0,1008570431 +598,3793,3.0,1008570839 +598,3798,3.0,1008570817 +598,3825,2.0,1008571830 +598,3826,2.0,1008570596 +598,3863,3.0,1008570431 +598,3868,4.0,1008571133 +598,3897,4.0,1008571680 +598,3911,4.0,1057554779 +598,3948,4.0,1008571478 +598,3952,4.0,1008571721 +598,3977,2.0,1008570431 +598,3988,4.0,1008570596 +598,3994,3.0,1008571721 +598,3996,4.0,1008572359 +598,4008,3.0,1008657971 +598,4011,4.0,1014589019 +598,4022,3.0,1008570431 +598,4027,3.0,1058140813 +598,4033,4.0,1008571721 +598,4054,3.0,1008571775 +598,4066,3.0,1008571176 +598,4102,4.0,1009415243 +598,4223,3.0,1008571762 +598,4226,5.0,1008571660 +598,4246,3.0,1008571733 +598,4306,4.0,1008572660 +598,4308,4.0,1009080767 +598,4310,2.0,1008571775 +598,4322,4.0,1058140768 +598,4370,3.0,1017349824 +598,4452,4.0,1008572437 +598,4489,5.0,1057554801 +598,4571,3.0,1008571467 +598,4619,4.0,1032720665 +598,4623,5.0,1008571385 +598,4643,3.0,1008571775 +598,4718,3.0,1008571553 +598,4734,4.0,1008571151 +598,4774,3.0,1019347540 +598,4776,4.0,1017349557 +598,4816,2.0,1008571242 +598,4846,2.0,1009415331 +598,4865,3.0,1009415331 +598,4886,4.0,1008571151 +598,4890,3.0,1009237565 +598,4896,4.0,1008572370 +598,4958,2.0,1009415331 +598,4963,4.0,1009237534 +598,4975,4.0,1009237565 +598,4979,4.0,1009237565 +598,4992,3.0,1009237565 +598,4993,5.0,1009080735 +598,4995,4.0,1025925076 +598,5013,3.0,1025925093 +598,5048,1.0,1014588958 +598,5064,4.0,1014588918 +598,5103,4.0,1017349615 +598,5106,1.0,1014588958 +598,5141,3.0,1019347635 +598,5151,3.0,1017349663 +598,5219,2.0,1019347596 +598,5220,2.0,1017349663 +598,5223,1.0,1017349743 +598,5255,1.0,1017349663 +598,5265,3.0,1019347613 +598,5266,2.0,1019347576 +598,5292,4.0,1057554811 +598,5313,3.0,1019347520 +598,5377,4.5,1057554766 +598,5417,1.0,1031461928 +598,5445,3.5,1058140750 +598,5458,1.0,1031461883 +598,5459,4.0,1025925135 +598,5462,2.0,1031461883 +598,5464,4.0,1031461928 +598,5466,1.0,1031461883 +598,5477,1.0,1031461928 +598,5481,4.0,1031461786 +598,5502,4.0,1031461799 +598,5503,1.0,1031461883 +598,5516,1.0,1031461928 +598,5517,1.0,1031461928 +598,5528,3.0,1032720620 +598,5530,1.0,1031461883 +598,5535,1.0,1031461962 +598,5575,1.0,1031461928 +598,5649,3.0,1007344372 +598,5669,5.0,1037851625 +598,5816,4.0,1037851609 +598,5952,4.5,1058140738 +598,5989,4.5,1058140743 +598,6188,4.5,1057554761 +598,6218,2.0,1058140819 +598,6296,4.5,1057554706 +598,6333,4.0,1057554686 +598,6365,3.5,1057554690 +598,6373,2.0,1057554713 +598,6377,4.5,1057554688 +598,6461,3.5,1057555106 +598,6534,2.0,1057554710 +598,6537,4.0,1057555152 +598,6539,5.0,1057555166 +599,39,5.0,1329892886 +599,150,1.5,1329892590 +599,260,5.0,1329891654 +599,356,4.0,1329891795 +599,502,2.5,1306107922 +599,551,4.5,1344134498 +599,745,1.5,1329891638 +599,892,3.5,1306108929 +599,923,1.0,1329891692 +599,1028,3.5,1344134311 +599,1136,4.0,1329891664 +599,1148,1.5,1329891644 +599,1196,4.5,1329891673 +599,1198,4.5,1329891634 +599,1251,3.0,1306107965 +599,1270,4.5,1329892667 +599,1968,5.0,1329893128 +599,2011,4.5,1344134223 +599,2115,4.0,1329892609 +599,2136,2.5,1306107948 +599,2144,5.0,1329893907 +599,2145,5.0,1329893854 +599,2248,2.5,1306107780 +599,2291,4.5,1344134507 +599,2455,3.5,1306107766 +599,2485,4.5,1329893083 +599,2497,1.5,1306108798 +599,2572,5.0,1344133838 +599,2581,5.0,1329893078 +599,2671,4.0,1344134819 +599,2788,5.0,1344134442 +599,2795,3.5,1344133960 +599,2888,4.5,1329893861 +599,2915,4.5,1306107788 +599,2918,5.0,1329892689 +599,2942,3.5,1306107914 +599,3225,4.0,1329893565 +599,3396,4.5,1306107811 +599,3454,4.0,1329893771 +599,3991,2.5,1306108908 +599,4069,3.5,1344133741 +599,4246,5.0,1329893408 +599,4447,4.5,1344136070 +599,4700,5.0,1329893849 +599,4816,4.0,1344134437 +599,4878,3.5,1344134445 +599,4896,5.0,1329893666 +599,4973,0.5,1329892839 +599,4993,4.0,1329891707 +599,5283,3.5,1344135702 +599,5349,3.5,1344134349 +599,5377,4.0,1344134486 +599,5620,4.0,1344133768 +599,5667,4.0,1344136000 +599,5816,5.0,1329893663 +599,5942,4.0,1344135764 +599,5943,3.5,1344133737 +599,6155,5.0,1329893932 +599,6266,5.0,1329893810 +599,6331,3.5,1344134211 +599,6332,5.0,1344133745 +599,6373,3.5,1329891789 +599,6385,2.0,1306107934 +599,6539,3.5,1329892681 +599,6753,1.5,1306108807 +599,7153,4.0,1329891702 +599,7316,4.0,1329893798 +599,7375,5.0,1344136057 +599,7380,4.5,1344134566 +599,7444,4.0,1344136063 +599,7451,4.5,1329893104 +599,7453,3.0,1329893507 +599,8368,5.0,1329893669 +599,8376,3.5,1344134417 +599,8533,4.0,1344136263 +599,8642,3.0,1329893781 +599,8643,4.5,1329893650 +599,8808,4.0,1329893602 +599,8969,4.0,1344133724 +599,27706,3.0,1344134412 +599,30793,4.0,1344134404 +599,31193,5.0,1306109530 +599,31433,3.5,1344134843 +599,31685,3.5,1344134868 +599,33296,3.0,1344135700 +599,33669,4.0,1344135990 +599,37384,3.5,1344135691 +599,40581,4.5,1344136116 +599,40815,5.0,1329892606 +599,41566,3.5,1329893658 +599,43930,4.5,1329893545 +599,44004,4.5,1344136145 +599,44193,4.5,1329893735 +599,44225,4.0,1344136015 +599,45720,4.0,1344134590 +599,46062,4.5,1344134900 +599,47122,4.0,1329893836 +599,49286,4.0,1344134878 +599,50954,4.0,1344136024 +599,51834,4.0,1344134584 +599,52975,4.0,1344134894 +599,53125,4.0,1344134726 +599,54001,5.0,1329892583 +599,54259,4.0,1344134037 +599,54503,4.5,1344135097 +599,54734,4.5,1329893789 +599,55100,4.0,1329893926 +599,55451,4.0,1344135201 +599,56367,3.5,1329891784 +599,56941,4.0,1344135652 +599,56949,3.5,1344135168 +599,58047,4.5,1329893248 +599,59333,3.5,1329893339 +599,59985,3.5,1344135685 +599,60069,4.0,1329891586 +599,61071,4.5,1344136006 +599,61123,4.0,1344134902 +599,61250,5.0,1344135773 +599,62155,4.0,1344135090 +599,62912,4.5,1344134903 +599,63082,3.5,1329891594 +599,65585,3.0,1329893431 +599,66203,5.0,1344134741 +599,66934,4.0,1329891657 +599,67087,4.0,1306108934 +599,67734,4.5,1344135687 +599,67788,4.5,1344135226 +599,68135,5.0,1329893826 +599,68319,4.0,1344135696 +599,68554,3.5,1306108927 +599,68659,4.0,1344136382 +599,69069,4.0,1329893760 +599,69122,4.0,1329891776 +599,69406,4.5,1344135693 +599,69606,4.0,1344136337 +599,69757,4.5,1344133836 +599,69844,5.0,1329892579 +599,70183,4.0,1344135177 +599,70898,4.5,1344136097 +599,71033,0.5,1329892834 +599,74154,4.0,1329893373 +599,74450,3.5,1344136331 +599,74458,3.0,1329891626 +599,74789,4.0,1344134598 +599,76093,5.0,1329891577 +599,76251,4.0,1344134240 +599,77364,5.0,1344135122 +599,77414,4.0,1344135148 +599,78041,3.0,1344135182 +599,78209,4.5,1344136374 +599,78499,5.0,1306108013 +599,79132,3.5,1329891603 +599,79588,3.5,1344134887 +599,79702,4.0,1329891609 +599,80166,3.0,1306109460 +599,80463,4.0,1329891620 +599,80549,5.0,1344135659 +599,80858,2.0,1344136049 +599,80860,4.0,1344135187 +599,80906,2.5,1306109415 +599,81537,4.0,1306109444 +599,81562,4.5,1306108963 +599,81591,4.0,1306108980 +599,81834,5.0,1306109429 +599,81845,5.0,1306109409 +599,81847,5.0,1306109438 +599,82152,3.5,1306109304 +599,82167,3.0,1306109454 +599,82499,4.0,1306109470 +599,83349,4.0,1306109447 +599,84374,3.5,1306109457 +599,86293,4.5,1306109270 +599,86817,5.0,1344134615 +599,87232,5.0,1329891588 +599,87430,4.0,1344135714 +599,88125,5.0,1329891574 +599,88140,4.5,1344134282 +599,88163,5.0,1344136245 +599,88179,4.5,1344134600 +599,88672,4.5,1344135214 +599,88810,4.0,1344133761 +599,89745,5.0,1344133770 +599,89864,4.0,1329891591 +599,90576,5.0,1344134770 +599,91500,3.0,1344135155 +599,91529,4.0,1344133782 +599,93326,4.5,1344134540 +599,93510,4.5,1344134303 +599,95199,4.0,1344136106 +599,95449,4.5,1344136156 +599,95510,5.0,1344133801 +599,95567,4.5,1344134527 +600,588,5.0,1431956328 +600,2081,5.0,1431957361 +600,2085,3.0,1431958408 +600,2096,3.0,1431958441 +600,4886,5.0,1431956114 +600,4995,3.0,1431956337 +600,5618,4.5,1431956362 +600,6377,4.0,1431956125 +600,8368,3.0,1431956139 +600,50872,4.5,1431956320 +600,58559,3.0,1431956335 +600,68954,5.0,1431956316 +600,72737,4.0,1431958440 +600,72998,2.5,1431956131 +600,73290,5.0,1431956210 +600,76093,5.0,1431956421 +600,79132,5.0,1431956095 +600,81845,4.5,1431956086 +600,81847,5.0,1431956365 +600,88744,3.5,1431956185 +600,90866,5.0,1431958854 +600,91500,3.5,1431956171 +600,91542,3.0,1431958441 +600,95167,4.0,1431957372 +600,96821,4.0,1431956151 +600,97913,4.0,1431956420 +600,104374,3.5,1431956153 +600,104841,3.5,1431956215 +600,106782,2.5,1431956197 +600,111529,4.0,1431956202 +600,111913,3.0,1431956287 +600,111921,3.5,1431956259 +600,112552,4.0,1431958850 +600,112556,3.0,1431956147 +600,116797,4.5,1431958995 +601,31,3.0,1270253462 +601,193,1.5,1270253539 +601,493,4.0,1270253740 +601,1274,3.5,1270254552 +601,1293,4.5,1270253469 +601,1831,2.5,1270253564 +601,2567,3.0,1270253718 +601,2605,3.0,1270253510 +601,3210,3.0,1270253541 +601,3243,3.0,1270253892 +601,3386,4.0,1270253555 +601,3439,3.5,1270253870 +601,3755,3.5,1270253459 +601,4148,3.0,1270253595 +601,4226,4.5,1270254385 +601,4235,4.5,1270254353 +601,4878,3.5,1270254378 +601,5294,2.5,1270253938 +601,6016,4.5,1270254271 +601,6283,3.5,1270254547 +601,6502,4.0,1270254588 +601,6870,4.0,1270254455 +601,6953,4.0,1270254348 +601,7022,3.5,1270254542 +601,7254,2.5,1270254256 +601,7361,5.0,1270254531 +601,8914,4.0,1270254595 +601,27611,4.0,1270254528 +601,27773,5.0,1270254394 +601,34405,4.0,1270254582 +601,44191,3.5,1270254555 +601,46723,4.0,1270254367 +601,48516,4.5,1270254429 +601,48774,5.0,1270254534 +601,48780,4.5,1270254457 +601,52885,4.0,1270254592 +601,55290,3.5,1270254463 +601,58559,4.5,1270254671 +601,59315,3.5,1270254544 +601,59615,2.0,1270253859 +601,63082,4.0,1270254640 +601,68237,4.0,1270254452 +601,68358,4.0,1270254536 +601,69757,4.0,1270254221 +601,70286,3.5,1270254469 +601,72998,2.5,1270254359 +602,2,4.0,842360098 +602,10,3.0,842359419 +602,11,3.0,842358525 +602,21,2.0,842358017 +602,25,5.0,842357252 +602,29,5.0,842358084 +602,32,3.0,842357534 +602,34,4.0,842357252 +602,36,5.0,842357428 +602,45,4.0,842358826 +602,47,4.0,842356712 +602,50,5.0,842356111 +602,60,3.0,842359168 +602,85,5.0,842359533 +602,97,5.0,842359168 +602,107,4.0,842358299 +602,110,3.0,842356080 +602,144,1.0,842359298 +602,147,3.0,842359924 +602,150,3.0,842355955 +602,153,3.0,842356033 +602,155,3.0,842360072 +602,156,5.0,842359483 +602,162,5.0,842357278 +602,164,4.0,842357664 +602,177,3.0,842360283 +602,180,3.0,842358887 +602,188,2.0,842358394 +602,194,4.0,842357534 +602,208,3.0,842358692 +602,215,4.0,842357604 +602,223,5.0,842357559 +602,229,4.0,842358670 +602,231,3.0,842358354 +602,235,4.0,842357428 +602,246,4.0,842357486 +602,247,5.0,842357664 +602,253,4.0,842360266 +602,260,4.0,842359298 +602,261,3.0,842359924 +602,265,4.0,842358985 +602,268,4.0,842358985 +602,272,4.0,842359274 +602,273,3.0,842360266 +602,280,3.0,842358610 +602,282,3.0,842359985 +602,288,3.0,842359438 +602,292,1.0,842358116 +602,296,5.0,842355957 +602,300,5.0,842357604 +602,316,1.0,842359483 +602,318,5.0,842356712 +602,319,2.0,842357985 +602,329,3.0,842357696 +602,337,3.0,842358164 +602,344,3.0,842356033 +602,348,3.0,842360049 +602,349,3.0,842356033 +602,353,4.0,842358552 +602,354,4.0,842359446 +602,356,4.0,842356712 +602,357,4.0,842359274 +602,362,3.0,842356111 +602,364,5.0,842356080 +602,367,3.0,842359403 +602,371,3.0,842358638 +602,372,3.0,842359373 +602,373,4.0,842358214 +602,376,1.0,842358671 +602,380,3.0,842355959 +602,382,2.0,842360060 +602,417,3.0,842359403 +602,418,3.0,842357923 +602,434,1.0,842358610 +602,448,3.0,842357428 +602,457,3.0,842357604 +602,461,4.0,842358249 +602,471,3.0,842357922 +602,474,5.0,842357723 +602,475,5.0,842357534 +602,477,4.0,842358826 +602,480,4.0,842357696 +602,481,3.0,842359225 +602,493,2.0,842357696 +602,497,5.0,842358610 +602,500,4.0,842359086 +602,501,3.0,842357428 +602,508,4.0,842357723 +602,509,4.0,842357985 +602,515,4.0,842358116 +602,527,5.0,842356712 +602,531,4.0,842359340 +602,534,5.0,842358249 +602,535,5.0,842357749 +602,538,5.0,842357985 +602,539,3.0,842359924 +602,551,5.0,842357723 +602,555,4.0,842358017 +602,562,4.0,842356974 +602,587,4.0,842359403 +602,588,5.0,842356034 +602,589,4.0,842357428 +602,590,4.0,842355954 +602,592,3.0,842355954 +602,593,5.0,842356111 +602,595,5.0,842356080 +602,596,3.0,842356080 +602,597,3.0,842360115 +602,608,4.0,842356870 +602,647,3.0,842356837 +602,653,1.0,842357061 +602,661,5.0,842356780 +602,736,3.0,842356896 +602,764,5.0,842356896 +602,778,5.0,842356111 +602,783,4.0,842356111 +602,799,3.0,842357074 +602,802,3.0,842356752 +602,805,3.0,842356805 +602,1009,4.0,842358985 +602,1023,4.0,842357749 +602,1025,3.0,842359469 +602,1029,3.0,842358046 +602,1031,4.0,842358887 +602,1032,3.0,842358525 +602,1033,4.0,842360129 +602,1035,5.0,842359006 +602,1036,4.0,842357724 +602,1037,3.0,842360314 +603,1,4.0,868354978 +603,2,4.0,868355874 +603,3,2.0,868355076 +603,6,4.0,868355017 +603,32,5.0,868354978 +603,44,3.0,868356377 +603,60,3.0,868355519 +603,62,5.0,868354978 +603,88,3.0,868481896 +603,104,4.0,868355076 +603,110,5.0,868356124 +603,150,4.0,868355405 +603,163,4.0,868356125 +603,231,2.0,868482315 +603,260,5.0,868355017 +603,277,4.0,868355683 +603,296,5.0,868356122 +603,300,3.0,868802320 +603,316,4.0,868356197 +603,317,2.0,868355630 +603,333,3.0,868482531 +603,355,2.0,868356024 +603,364,5.0,868355683 +603,367,3.0,868482315 +603,370,4.0,868482531 +603,380,5.0,868356123 +603,419,2.0,868356024 +603,442,5.0,868356767 +603,457,4.0,868356197 +603,466,4.0,868482450 +603,480,5.0,868355683 +603,500,4.0,868355630 +603,527,5.0,868802321 +603,543,3.0,868482419 +603,551,5.0,868355800 +603,552,3.0,868355519 +603,586,3.0,868356000 +603,588,5.0,868355630 +603,589,5.0,868356124 +603,592,4.0,868356298 +603,594,4.0,868355800 +603,595,5.0,868355748 +603,596,4.0,868355800 +603,608,5.0,868355017 +603,648,3.0,868354978 +603,653,3.0,868356298 +603,661,3.0,868355683 +603,673,3.0,868355874 +603,733,5.0,868355017 +603,736,3.0,868354978 +603,743,3.0,868482098 +603,748,3.0,868356298 +603,761,3.0,868482025 +603,780,4.0,868354978 +603,783,5.0,868355800 +603,784,5.0,868481795 +603,832,3.0,868481695 +603,1008,3.0,868355683 +603,1010,3.0,868355748 +603,1011,3.0,868355938 +603,1012,4.0,868355466 +603,1013,3.0,868355683 +603,1014,3.0,868355800 +603,1016,3.0,868355800 +603,1017,4.0,868355519 +603,1021,3.0,868355683 +603,1022,4.0,868355519 +603,1025,5.0,868355466 +603,1027,5.0,868355466 +603,1028,3.0,868355519 +603,1029,4.0,868355630 +603,1030,3.0,868355748 +603,1031,3.0,868355630 +603,1032,5.0,868355519 +603,1033,3.0,868355519 +603,1035,5.0,868355466 +603,1073,3.0,868355017 +603,1097,4.0,868355466 +603,1101,3.0,868356251 +603,1126,3.0,868355938 +603,1136,5.0,868482292 +603,1196,5.0,868355405 +603,1197,5.0,868355405 +603,1198,4.0,868355405 +603,1200,3.0,868356197 +603,1207,4.0,868355405 +603,1210,5.0,868355405 +603,1214,3.0,868356197 +603,1220,4.0,868482331 +603,1240,5.0,868356196 +603,1242,5.0,868356152 +603,1243,5.0,868482350 +603,1265,3.0,868482450 +603,1275,5.0,868356151 +603,1278,5.0,868482433 +603,1282,5.0,868355466 +603,1291,4.0,868356225 +603,1320,3.0,868356377 +603,1367,3.0,868355970 +603,1374,3.0,868356316 +603,1377,4.0,868356767 +603,1391,5.0,868481575 +603,1393,3.0,868481647 +603,1394,5.0,868482350 +603,1396,4.0,868482484 +603,1408,5.0,868356251 +603,1517,5.0,868481695 +603,1526,3.0,868481986 +603,1527,3.0,868481621 +603,1544,3.0,868481755 +603,1562,3.0,868481924 +603,1566,5.0,868355164 +603,1573,4.0,868355164 +603,1580,5.0,868355164 +604,19,2.5,1277533255 +604,32,3.5,1277533126 +604,344,2.0,1277533253 +604,524,4.5,1277532667 +604,2161,1.0,1277532580 +604,2193,1.0,1277532603 +604,2278,5.0,1277532589 +604,2539,4.0,1277532606 +604,2717,1.5,1277532674 +604,2949,2.0,1277532707 +604,2953,1.0,1277532716 +604,2990,3.0,1277532839 +604,3256,4.0,1277532610 +604,3450,4.0,1277532751 +604,3526,2.0,1277532805 +604,3552,3.0,1277532620 +604,3671,3.5,1277532575 +604,4623,1.5,1277532871 +604,4792,3.5,1277533108 +604,5300,4.0,1277533213 +605,3,2.0,980194114 +605,11,3.0,980174746 +605,19,4.0,980174457 +605,21,2.0,980177887 +605,25,3.0,980196749 +605,34,5.0,980175025 +605,36,1.0,980176545 +605,39,4.0,980176168 +605,87,1.0,980176907 +605,95,3.0,980175720 +605,99,1.0,980194873 +605,104,4.0,980194759 +605,105,2.0,980174106 +605,110,3.0,980175636 +605,118,1.0,980195404 +605,125,2.0,980177469 +605,146,4.0,980174717 +605,150,4.0,980174894 +605,164,3.0,980176647 +605,165,3.0,980176703 +605,170,3.0,980194141 +605,172,3.0,980195844 +605,173,1.0,980195869 +605,216,3.0,980175410 +605,224,3.0,980176775 +605,230,3.0,980176775 +605,231,3.0,980176884 +605,234,1.0,980177097 +605,237,2.0,980177649 +605,238,4.0,980177182 +605,246,3.0,980195223 +605,247,3.0,980194842 +605,248,2.0,980195283 +605,253,3.0,980195635 +605,254,2.0,980195780 +605,255,1.0,980195812 +605,258,2.0,980195940 +605,261,4.0,980197670 +605,262,4.0,980197670 +605,344,5.0,980174457 +605,345,3.0,980174525 +605,350,3.0,980176141 +605,353,3.0,980176412 +605,357,3.0,980177649 +605,361,2.0,980195677 +605,405,2.0,980194978 +605,421,3.0,980175435 +605,423,3.0,980175498 +605,428,3.0,980175720 +605,429,3.0,980175794 +605,440,3.0,980176493 +605,442,2.0,980176606 +605,457,4.0,980177763 +605,468,4.0,980177012 +605,474,3.0,980195477 +605,480,3.0,980195889 +605,484,3.0,980196307 +605,541,3.0,980175465 +605,585,3.0,980175615 +605,586,4.0,980195004 +605,587,3.0,980177887 +605,588,4.0,980174631 +605,590,3.0,980176475 +605,592,4.0,980175162 +605,608,3.0,980177205 +605,609,3.0,980195075 +605,616,4.0,980174934 +605,648,4.0,980174247 +605,661,3.0,980195740 +605,700,3.0,980174852 +605,724,2.0,980176365 +605,745,4.0,980176187 +605,779,3.0,980174326 +605,780,4.0,980195477 +605,783,3.0,980195325 +605,800,3.0,980197731 +605,801,2.0,980194776 +605,808,3.0,980174631 +605,829,1.0,980195844 +605,830,3.0,980177421 +605,838,3.0,980176990 +605,858,5.0,980177999 +605,900,4.0,980174773 +605,902,3.0,980175656 +605,903,3.0,980199622 +605,904,4.0,980199622 +605,905,5.0,980195677 +605,906,3.0,980177795 +605,911,5.0,980175912 +605,912,5.0,980175843 +605,913,5.0,980199622 +605,917,3.0,980197670 +605,920,5.0,980174106 +605,923,4.0,980176080 +605,924,1.0,980174353 +605,926,4.0,980174659 +605,932,3.0,980174525 +605,934,4.0,980177221 +605,938,5.0,980177926 +605,940,5.0,980174525 +605,942,5.0,980196541 +605,943,4.0,980177887 +605,951,4.0,980194978 +605,952,4.0,980174954 +605,953,5.0,980195678 +605,955,4.0,980175700 +605,965,3.0,980174373 +605,969,5.0,980174557 +605,986,4.0,980177494 +605,1009,3.0,980177052 +605,1015,4.0,980195075 +605,1020,4.0,980176322 +605,1021,5.0,980174852 +605,1022,4.0,980176061 +605,1029,4.0,980176907 +605,1031,3.0,980175264 +605,1032,5.0,980174659 +605,1033,3.0,980177649 +605,1044,3.0,980174106 +605,1054,1.0,980177887 +605,1078,4.0,980175106 +605,1079,4.0,980177421 +605,1082,4.0,980175815 +605,1084,4.0,980175550 +605,1086,4.0,980176678 +605,1088,2.0,980176703 +605,1093,3.0,980176812 +605,1097,3.0,980176907 +605,1099,5.0,980176044 +605,1100,3.0,980176519 +605,1136,3.0,980174106 +605,1177,3.0,980176990 +605,1183,2.0,980177012 +605,1196,3.0,980176990 +605,1203,5.0,980174353 +605,1204,3.0,980196541 +605,1212,5.0,980199622 +605,1213,3.0,980180616 +605,1214,3.0,980174659 +605,1220,3.0,980175530 +605,1221,4.0,980177975 +605,1225,4.0,980174717 +605,1230,3.0,980174875 +605,1242,3.0,980177946 +605,1246,3.0,980176545 +605,1247,3.0,980180633 +605,1256,4.0,980176884 +605,1262,3.0,980180924 +605,1265,3.0,980194114 +605,1269,5.0,980174954 +605,1270,4.0,980175048 +605,1271,4.0,980177728 +605,1275,3.0,980194919 +605,1282,4.0,980177182 +605,1284,2.0,980199622 +605,1285,2.0,980194842 +605,1287,4.0,980175307 +605,1291,3.0,980195500 +605,1302,3.0,980177386 +605,1304,4.0,980175777 +605,1321,3.0,980174773 +605,1327,3.0,980174773 +605,1333,4.0,980175435 +605,1334,3.0,980175480 +605,1340,2.0,980175677 +605,1343,3.0,980175815 +605,1344,4.0,980175815 +605,1345,3.0,980175843 +605,1359,2.0,980195812 +605,1380,4.0,980180654 +605,1387,5.0,980195740 +605,1388,2.0,980195780 +605,1389,1.0,980195780 +605,1393,4.0,980195812 +605,1401,2.0,980177907 +605,1405,3.0,980175208 +605,1429,3.0,980195704 +605,1453,3.0,980175208 +605,1459,3.0,980174457 +605,1466,3.0,980176812 +605,1474,2.0,980195889 +605,1485,3.0,980197284 +605,1498,2.0,980195635 +605,1500,2.0,980194114 +605,1517,4.0,980174990 +605,1541,2.0,980174486 +605,1542,2.0,980174067 +605,1562,2.0,980175162 +605,1573,3.0,980177141 +605,1588,3.0,980177829 +605,1592,4.0,980174606 +605,1594,3.0,980195452 +605,1608,3.0,980174606 +605,1617,3.0,980196094 +605,1625,2.0,980177795 +605,1635,2.0,980195404 +605,1639,2.0,980175931 +605,1641,3.0,980177763 +605,1644,2.0,980195359 +605,1645,4.0,980176647 +605,1654,3.0,980177141 +605,1665,3.0,980175184 +605,1673,3.0,980175550 +605,1678,2.0,980195844 +605,1688,5.0,980174793 +605,1693,1.0,980174773 +605,1702,2.0,980177494 +605,1703,2.0,980177603 +605,1704,4.0,980180616 +605,1727,3.0,980195241 +605,1797,4.0,980177052 +605,1855,1.0,980196063 +605,1875,2.0,980176141 +605,1883,1.0,980175761 +605,1888,2.0,980195223 +605,1895,3.0,980174106 +605,1929,3.0,980180654 +605,1935,3.0,980195283 +605,1937,4.0,980178503 +605,1938,3.0,980174106 +605,1944,4.0,980177763 +605,1953,4.0,980177697 +605,1955,3.0,980196063 +605,1957,4.0,980175912 +605,1962,3.0,980176866 +605,1968,3.0,980175656 +605,1974,3.0,980177713 +605,1975,1.0,980177713 +605,1997,4.0,980174183 +605,2000,3.0,980196811 +605,2011,3.0,980175072 +605,2012,2.0,980175072 +605,2014,3.0,980177669 +605,2015,4.0,980174457 +605,2017,3.0,980175025 +605,2022,1.0,980196521 +605,2028,3.0,980174067 +605,2032,3.0,980175138 +605,2033,3.0,980175435 +605,2038,4.0,980175863 +605,2043,4.0,980176475 +605,2050,2.0,980194889 +605,2054,2.0,980195075 +605,2057,4.0,980195477 +605,2077,3.0,980195844 +605,2078,3.0,980195869 +605,2080,3.0,980196094 +605,2081,4.0,980197649 +605,2085,4.0,980174326 +605,2108,2.0,980196094 +605,2109,3.0,980195780 +605,2115,4.0,980195500 +605,2125,4.0,980177052 +605,2133,2.0,980174486 +605,2135,3.0,980176746 +605,2137,4.0,980175931 +605,2150,3.0,980177975 +605,2154,1.0,980195283 +605,2163,3.0,980174990 +605,2169,3.0,980176545 +605,2184,2.0,980200112 +605,2208,4.0,980196094 +605,2239,3.0,980174106 +605,2243,3.0,980175700 +605,2262,3.0,980174457 +605,2280,4.0,980176098 +605,2312,3.0,980176025 +605,2336,3.0,980176964 +605,2352,3.0,980175377 +605,2353,3.0,980177012 +605,2366,3.0,980196005 +605,2367,2.0,980196005 +605,2369,2.0,980176621 +605,2374,2.0,980194141 +605,2384,4.0,980175025 +605,2405,3.0,980195812 +605,2407,3.0,980176168 +605,2413,3.0,980176168 +605,2420,3.0,980195915 +605,2421,2.0,980195915 +605,2422,1.0,980195915 +605,2428,2.0,980177141 +605,2454,3.0,980177494 +605,2468,1.0,980195869 +605,2470,4.0,980176395 +605,2471,2.0,980176395 +605,2520,5.0,980174606 +605,2522,2.0,980174606 +605,2535,3.0,980176922 +605,2541,2.0,980176412 +605,2546,2.0,980176584 +605,2559,2.0,980196005 +605,2565,3.0,980196005 +605,2567,2.0,980176907 +605,2572,3.0,980174326 +605,2599,4.0,980176964 +605,2661,3.0,980195653 +605,2683,2.0,980174990 +605,2688,1.0,980177814 +605,2690,4.0,980195416 +605,2706,2.0,980174746 +605,2707,3.0,980174934 +605,2716,3.0,980177907 +605,2720,2.0,980195610 +605,2736,2.0,980175700 +605,2753,3.0,980175264 +605,2759,1.0,980176678 +605,2779,4.0,980194842 +605,2788,3.0,980174814 +605,2789,2.0,980176456 +605,2791,5.0,980174606 +605,2792,4.0,980174606 +605,2797,4.0,980175361 +605,2804,5.0,980176044 +605,2846,5.0,980174525 +605,2858,1.0,980174717 +605,2866,4.0,980175761 +605,2870,4.0,980175138 +605,2871,3.0,980176606 +605,2881,3.0,980176812 +605,2882,1.0,980195740 +605,2886,3.0,980174525 +605,2899,3.0,980194141 +605,2918,3.0,980177365 +605,2926,3.0,980194676 +605,2942,3.0,980177451 +605,2948,4.0,980177763 +605,2949,4.0,980176834 +605,2950,2.0,980175515 +605,2971,2.0,980174680 +605,2989,3.0,980177624 +605,2990,3.0,980197284 +605,2991,3.0,980197716 +605,2997,4.0,980175286 +605,3013,1.0,980175677 +605,3044,3.0,980176519 +605,3052,1.0,980176775 +605,3060,3.0,980176226 +605,3061,4.0,980194978 +605,3074,3.0,980195780 +605,3088,5.0,980194797 +605,3101,3.0,980177205 +605,3102,3.0,980195704 +605,3107,3.0,980175072 +605,3110,4.0,980176341 +605,3136,3.0,980195740 +605,3145,3.0,980176365 +605,3146,1.0,980176647 +605,3159,4.0,980174183 +605,3175,3.0,980177795 +605,3179,3.0,980174852 +605,3203,3.0,980176519 +605,3210,3.0,980177205 +605,3244,2.0,980180616 +605,3249,3.0,980194692 +605,3260,2.0,980195303 +605,3264,3.0,980175761 +605,3334,4.0,980195940 +605,3340,1.0,980175677 +605,3341,4.0,980175569 +605,3358,2.0,980176606 +605,3359,3.0,980175656 +605,3360,5.0,980195223 +605,3361,3.0,980175761 +605,3363,4.0,980174746 +605,3412,4.0,980175184 +605,3420,2.0,980174326 +605,3421,4.0,980174852 +605,3430,4.0,980176566 +605,3431,2.0,980176566 +605,3435,4.0,980176812 +605,3445,3.0,980177120 +605,3450,3.0,980194114 +605,3451,4.0,980194114 +605,3460,3.0,980194978 +605,3471,3.0,980176187 +605,3478,3.0,980175089 +605,3483,3.0,980174247 +605,3510,5.0,980174205 +605,3516,4.0,980175286 +605,3520,3.0,980195303 +605,3537,1.0,980174247 +605,3543,3.0,980176703 +605,3548,5.0,980174990 +605,3549,4.0,980194141 +605,3579,1.0,980195341 +605,3594,3.0,980174183 +605,3599,4.0,980174814 +605,3600,3.0,980175515 +605,3614,3.0,980195075 +605,3649,3.0,980174746 +605,3671,4.0,980175465 +605,3672,5.0,980175307 +605,3674,3.0,980177624 +605,3684,2.0,980177120 +605,3700,3.0,980175736 +605,3701,3.0,980174659 +605,3715,1.0,980175761 +605,3717,1.0,980174247 +605,3724,2.0,980176226 +605,3751,5.0,980174184 +605,3753,1.0,980174184 +605,3755,3.0,980174184 +605,3763,3.0,980177120 +605,3785,1.0,980174247 +605,3791,4.0,980177604 +605,3793,2.0,980174184 +605,3813,1.0,980195610 +605,3841,2.0,980174606 +605,3861,3.0,980174247 +605,3890,3.0,980175048 +605,3913,3.0,980175138 +605,3922,3.0,980175410 +605,3927,3.0,980177182 +605,3967,4.0,980175410 +605,3977,3.0,980175913 +605,3984,4.0,980176678 +605,3988,2.0,980195283 +605,4001,2.0,980174067 +605,4008,2.0,980175569 +605,4019,4.0,980177403 +605,4021,2.0,980175264 +605,4023,4.0,980177159 +605,4039,4.0,980174875 +605,4040,2.0,980176812 +605,4047,3.0,980177887 +605,4080,3.0,980175025 +605,4081,4.0,980175048 +605,4084,2.0,980175345 +605,4085,4.0,980175345 +605,4086,5.0,980175377 +605,4090,4.0,980175615 +605,4091,3.0,980175815 +605,4098,3.0,980176545 +605,4117,2.0,980195223 +605,4124,1.0,980195780 +605,4126,2.0,980196811 +606,175,5.0,1380349824 +606,235,4.0,1380350132 +606,296,5.0,1380350548 +606,441,3.0,1380431874 +606,593,3.5,1380350020 +606,661,3.0,1380349705 +606,778,5.0,1380350514 +606,858,5.0,1380350440 +606,904,5.0,1380349948 +606,908,5.0,1380349954 +606,911,4.5,1380349865 +606,1089,5.0,1380350538 +606,1103,5.0,1380349779 +606,1136,3.5,1380350017 +606,1148,2.5,1380349995 +606,1203,5.0,1380349977 +606,1207,4.5,1380349938 +606,1219,5.0,1380349930 +606,1221,5.0,1380350463 +606,1247,4.0,1380349927 +606,1285,3.0,1380349698 +606,1405,3.0,1380349725 +606,1562,3.5,1380349728 +606,1729,5.0,1380350557 +606,1916,4.5,1380350207 +606,1968,4.0,1380431895 +606,2145,4.5,1380349749 +606,2186,5.0,1380349923 +606,2395,5.0,1380350305 +606,2455,2.0,1380349715 +606,2571,5.0,1380349999 +606,2858,4.5,1380350024 +606,2863,5.0,1380349849 +606,2918,4.0,1380431905 +606,2959,4.0,1380349984 +606,3089,5.0,1380350037 +606,3100,5.0,1380349785 +606,3210,3.5,1380431899 +606,3246,3.5,1380349833 +606,3254,4.0,1380349811 +606,3477,3.5,1380431805 +606,3608,3.0,1380349787 +606,3740,2.5,1380349817 +606,3897,3.5,1380431888 +606,4128,3.0,1380431909 +606,4878,4.0,1380419676 +606,4979,5.0,1380350283 +606,5971,4.0,1380350047 +606,6711,4.5,1380409217 +606,6874,5.0,1380350336 +606,7438,5.0,1380350339 +606,27664,5.0,1380350218 +606,30810,5.0,1380350318 +606,55269,4.5,1380350261 +606,62336,4.0,1380409270 +606,68073,3.0,1380431932 +606,72226,5.0,1380350252 +606,73860,3.0,1380431943 +606,79132,4.0,1380350008 +606,94959,4.5,1380350244 +607,1,4.5,1113319531 +607,2,3.0,1118247388 +607,3,3.5,1118247469 +607,7,3.5,1118247500 +607,10,3.5,1144790933 +607,16,3.5,1113319432 +607,18,4.0,1148587665 +607,19,1.5,1148585618 +607,21,3.5,1118247250 +607,31,3.5,1118248028 +607,32,3.5,1113319713 +607,47,4.0,1113319779 +607,50,4.5,1113319758 +607,62,3.5,1148586492 +607,69,4.0,1144790547 +607,93,3.0,1113404955 +607,95,2.0,1148585841 +607,104,3.0,1113319389 +607,110,4.5,1113319478 +607,141,3.0,1144790824 +607,150,4.0,1113319685 +607,153,3.0,1113319747 +607,161,4.0,1113319853 +607,163,3.5,1118246506 +607,165,3.5,1113319752 +607,180,3.5,1113405918 +607,185,3.0,1113319866 +607,193,2.5,1118246785 +607,208,2.5,1148585644 +607,223,2.5,1153513758 +607,224,4.5,1118247934 +607,231,3.0,1113319810 +607,253,4.0,1113319863 +607,260,4.5,1113319693 +607,266,0.5,1113319347 +607,277,3.5,1148586470 +607,282,3.5,1118247647 +607,288,4.0,1118247315 +607,292,3.5,1113319832 +607,293,4.5,1113405924 +607,296,5.0,1148586998 +607,303,3.5,1148586427 +607,316,3.5,1113319766 +607,317,2.0,1113319359 +607,318,5.0,1113319688 +607,329,3.5,1113319794 +607,333,3.5,1118246528 +607,339,0.5,1153513656 +607,344,2.5,1113319726 +607,349,4.0,1118247217 +607,353,3.0,1148586696 +607,355,3.0,1148586057 +607,356,5.0,1118246433 +607,362,3.5,1118248319 +607,364,3.0,1144791031 +607,367,3.0,1113319825 +607,368,4.5,1113319350 +607,370,3.5,1118247586 +607,377,3.5,1113319723 +607,380,4.5,1113319695 +607,383,0.5,1148585495 +607,410,3.5,1118247375 +607,420,3.0,1118247523 +607,423,3.5,1113405106 +607,431,4.0,1148587599 +607,432,2.5,1148585849 +607,434,3.5,1113319845 +607,440,4.0,1144790507 +607,441,3.5,1148586631 +607,442,2.0,1113319337 +607,454,4.0,1113319857 +607,457,4.0,1113319672 +607,466,3.5,1118247589 +607,471,4.0,1118247731 +607,480,3.0,1118246435 +607,485,3.5,1118247676 +607,500,2.5,1148585800 +607,520,3.5,1113404649 +607,524,3.0,1113405852 +607,543,4.0,1118247663 +607,551,4.0,1118247448 +607,553,4.0,1113319395 +607,586,2.0,1148585778 +607,587,2.5,1148586071 +607,588,4.0,1113319707 +607,589,3.5,1113319578 +607,590,2.5,1118246446 +607,592,3.5,1118246441 +607,593,4.0,1113319659 +607,595,2.0,1148585574 +607,597,3.0,1144791081 +607,608,3.5,1113319721 +607,647,4.0,1118248012 +607,648,3.5,1148586487 +607,653,3.0,1113319436 +607,661,3.5,1113404666 +607,720,4.0,1144790749 +607,733,4.0,1113319798 +607,736,3.5,1144791139 +607,737,1.0,1148585606 +607,762,2.0,1148585681 +607,778,4.0,1118247439 +607,780,3.5,1113319699 +607,783,4.0,1144790631 +607,784,3.0,1118247561 +607,785,3.5,1118247837 +607,786,3.0,1118247412 +607,788,2.5,1118247383 +607,802,3.5,1118247552 +607,832,4.0,1113408654 +607,852,3.5,1118247719 +607,858,4.5,1118247224 +607,996,4.5,1148587330 +607,1027,4.0,1148587456 +607,1029,3.0,1118248288 +607,1035,0.5,1148585489 +607,1036,4.0,1113319492 +607,1042,3.0,1148586369 +607,1060,4.5,1143500466 +607,1073,3.0,1148586261 +607,1079,4.0,1144790544 +607,1080,4.0,1113319438 +607,1088,2.0,1148586162 +607,1089,4.5,1118247427 +607,1090,2.5,1153426671 +607,1092,3.5,1148586737 +607,1097,4.0,1113319836 +607,1100,3.5,1118246754 +607,1101,4.5,1113406624 +607,1125,4.0,1113408448 +607,1127,4.5,1113406159 +607,1136,5.0,1113406235 +607,1148,4.0,1144790751 +607,1196,4.5,1113319762 +607,1197,4.5,1143500580 +607,1198,4.0,1113319785 +607,1200,4.0,1144790389 +607,1208,0.5,1153513594 +607,1210,4.5,1113319523 +607,1213,3.5,1148666485 +607,1214,4.0,1144790386 +607,1215,4.0,1144790396 +607,1220,3.5,1144790831 +607,1221,4.0,1148666646 +607,1222,4.5,1148587795 +607,1240,4.0,1144790737 +607,1246,3.0,1113405909 +607,1257,4.0,1118247033 +607,1258,2.5,1148587162 +607,1261,4.0,1118246748 +607,1265,4.5,1113406374 +607,1266,3.5,1148587540 +607,1267,4.5,1118248124 +607,1270,4.0,1113319567 +607,1271,2.5,1148585724 +607,1275,4.0,1113406226 +607,1291,4.5,1113319472 +607,1293,3.5,1148586860 +607,1302,3.5,1144790919 +607,1343,3.0,1144790844 +607,1356,4.5,1113406822 +607,1358,4.0,1148587490 +607,1370,3.5,1118247567 +607,1371,4.0,1118248008 +607,1372,3.5,1118247777 +607,1374,4.0,1113319442 +607,1375,3.5,1118247857 +607,1376,4.0,1118247693 +607,1377,3.5,1118247827 +607,1391,4.0,1118247506 +607,1393,2.5,1148585782 +607,1396,4.5,1113406135 +607,1405,3.5,1118248134 +607,1408,4.0,1113404655 +607,1461,3.5,1148585650 +607,1466,4.0,1143500517 +607,1479,4.0,1118248260 +607,1485,2.5,1118246475 +607,1500,4.5,1148586890 +607,1517,3.5,1113319375 +607,1527,5.0,1113405985 +607,1552,3.5,1118247808 +607,1573,3.5,1118247493 +607,1580,4.5,1113406636 +607,1584,2.5,1113319332 +607,1597,5.0,1118247901 +607,1610,4.0,1113319340 +607,1625,5.0,1113405607 +607,1645,3.5,1148586640 +607,1653,2.5,1148585749 +607,1682,3.5,1113405946 +607,1689,4.0,1113404896 +607,1704,5.0,1113405671 +607,1713,3.5,1113404887 +607,1722,4.0,1118247870 +607,1729,3.5,1144790954 +607,1732,3.5,1118247614 +607,1747,3.5,1118247918 +607,1748,3.5,1148586706 +607,1777,3.5,1118247798 +607,1784,3.5,1118247409 +607,1907,4.0,1113405770 +607,1917,3.0,1113319421 +607,1923,4.0,1113406606 +607,1954,4.0,1113406668 +607,1961,3.5,1148586789 +607,1967,4.5,1118246723 +607,1968,3.5,1113405964 +607,2000,4.0,1113319464 +607,2003,3.5,1148586611 +607,2005,4.0,1113406620 +607,2006,4.0,1113408610 +607,2011,3.5,1118246496 +607,2012,4.0,1118246483 +607,2019,4.5,1118248090 +607,2021,4.0,1118248273 +607,2054,3.5,1118247604 +607,2058,4.0,1113406657 +607,2072,3.5,1113405134 +607,2083,4.5,1118246708 +607,2100,3.5,1118247706 +607,2108,3.0,1144790979 +607,2109,3.5,1118246714 +607,2115,4.5,1118247541 +607,2139,3.5,1144791100 +607,2140,3.0,1148586714 +607,2161,3.5,1144791070 +607,2167,4.0,1113408583 +607,2174,3.5,1113408533 +607,2193,4.5,1118248163 +607,2194,4.0,1148585423 +607,2231,4.5,1113405883 +607,2268,3.5,1150394070 +607,2273,3.0,1118248307 +607,2278,4.5,1118248158 +607,2294,3.5,1118248165 +607,2302,3.5,1113406794 +607,2353,4.0,1118247710 +607,2355,4.0,1144790407 +607,2371,4.0,1113406955 +607,2393,3.5,1118248449 +607,2396,3.5,1144791106 +607,2406,4.0,1113406936 +607,2407,1.0,1153513700 +607,2408,3.5,1113404871 +607,2424,2.0,1118246681 +607,2470,4.0,1118247890 +607,2490,4.5,1113408541 +607,2501,5.0,1113405686 +607,2502,4.5,1113405977 +607,2539,3.5,1118248228 +607,2542,4.5,1113406199 +607,2571,4.5,1113319536 +607,2605,2.5,1148586171 +607,2617,4.0,1118247601 +607,2628,3.5,1118247305 +607,2640,4.0,1118247558 +607,2683,4.0,1118247392 +607,2699,3.5,1118247652 +607,2700,4.0,1113408510 +607,2701,2.5,1148585631 +607,2706,4.0,1118247456 +607,2710,4.0,1118247473 +607,2716,3.5,1113319527 +607,2717,2.5,1148585749 +607,2723,4.0,1118248313 +607,2762,4.0,1113405527 +607,2763,4.5,1113408360 +607,2791,3.5,1118246486 +607,2797,3.0,1118247478 +607,2804,4.0,1118247787 +607,2819,3.5,1148666553 +607,2916,3.5,1113406929 +607,2918,3.5,1144790916 +607,2926,0.5,1118246661 +607,2944,4.0,1113405788 +607,2947,4.0,1144790584 +607,2959,4.5,1113405992 +607,2985,3.5,1118247737 +607,2987,3.0,1113319366 +607,3033,4.0,1144790716 +607,3052,3.5,1113406471 +607,3082,4.0,1144790791 +607,3098,4.5,1113405572 +607,3114,4.0,1113319401 +607,3146,3.0,1118246604 +607,3147,5.0,1113319482 +607,3210,3.5,1113406599 +607,3253,3.5,1118247874 +607,3255,0.5,1148585552 +607,3256,4.0,1118248248 +607,3301,4.0,1113408777 +607,3360,4.0,1148586838 +607,3361,3.5,1113406500 +607,3396,4.0,1143500576 +607,3397,4.0,1118248883 +607,3408,3.0,1148586198 +607,3421,4.0,1144790393 +607,3448,4.0,1113406122 +607,3499,3.5,1144791051 +607,3527,3.5,1144791078 +607,3578,4.5,1113319507 +607,3617,3.5,1118246585 +607,3623,3.5,1118247741 +607,3681,4.0,1118248641 +607,3702,4.0,1113408558 +607,3735,3.5,1158466890 +607,3751,4.0,1144790497 +607,3763,2.0,1148585716 +607,3793,4.5,1113319404 +607,3809,3.5,1144791148 +607,3868,3.5,1113406896 +607,3896,4.5,1148588127 +607,3911,3.5,1118248173 +607,3948,3.5,1113406889 +607,3977,4.0,1118247755 +607,3994,3.5,1148586243 +607,3996,4.0,1144790501 +607,4011,4.5,1113405796 +607,4016,3.5,1148586653 +607,4018,3.0,1118246575 +607,4022,4.0,1118247637 +607,4027,4.5,1118247660 +607,4085,3.0,1113319510 +607,4105,3.5,1118248896 +607,4128,4.0,1144790654 +607,4161,4.0,1148588020 +607,4226,4.5,1113406117 +607,4306,4.5,1113319392 +607,4321,3.5,1144790885 +607,4344,3.0,1118246553 +607,4489,3.0,1144790867 +607,4499,4.5,1113406269 +607,4544,3.0,1118246864 +607,4557,3.5,1113408502 +607,4623,4.0,1113406708 +607,4816,3.5,1118246541 +607,4844,3.5,1113404739 +607,4886,4.5,1113319497 +607,4896,4.5,1113405742 +607,4901,4.5,1113405761 +607,4963,4.5,1113319563 +607,4975,1.5,1153513833 +607,4979,3.5,1118248269 +607,4980,1.5,1148585598 +607,4993,4.5,1144790368 +607,5064,4.0,1151425776 +607,5103,3.0,1113406092 +607,5218,4.0,1144790635 +607,5254,3.5,1113405140 +607,5299,4.0,1148588039 +607,5309,2.5,1148585662 +607,5349,4.5,1113319581 +607,5378,3.5,1118246535 +607,5388,3.5,1113408336 +607,5418,4.5,1113405524 +607,5444,4.0,1113405168 +607,5445,4.0,1144790667 +607,5459,3.5,1118246545 +607,5464,4.5,1113405712 +607,5507,2.5,1148585894 +607,5574,4.0,1148587096 +607,5816,4.5,1113405683 +607,5872,4.0,1144790526 +607,5903,4.0,1144790538 +607,5944,4.0,1113404877 +607,5952,4.5,1113405588 +607,5989,4.0,1113405737 +607,6005,4.0,1144790401 +607,6157,2.5,1118246559 +607,6188,4.0,1113405059 +607,6218,3.5,1118248865 +607,6333,4.5,1113319466 +607,6365,4.0,1118248257 +607,6377,4.5,1113405663 +607,6378,4.5,1113406023 +607,6539,5.0,1113319571 +607,6659,3.5,1113408682 +607,6709,3.5,1118246852 +607,6753,4.5,1143499914 +607,6807,4.5,1118248766 +607,6863,3.5,1113406440 +607,6870,3.5,1148587407 +607,6874,4.5,1113406175 +607,6936,4.5,1113406913 +607,6947,4.0,1148587996 +607,6979,3.5,1118247089 +607,7000,3.5,1148587360 +607,7090,5.0,1118248663 +607,7143,4.0,1113319551 +607,7153,4.5,1144790370 +607,7156,3.5,1150081984 +607,7317,4.0,1148587637 +607,7324,4.5,1113408476 +607,7373,4.5,1113408763 +607,7438,4.5,1113406147 +607,7445,4.0,1118247053 +607,8360,4.0,1113405612 +607,8368,4.5,1113405701 +607,8371,3.5,1118246808 +607,8376,0.5,1148585544 +607,8633,3.5,1148586534 +607,8636,4.5,1113405549 +607,8641,3.0,1148588165 +607,8644,4.0,1113404833 +607,8665,4.0,1113405251 +607,8781,4.0,1113404688 +607,8798,4.0,1113404933 +607,8807,4.0,1148587203 +607,8961,4.5,1144790365 +607,8984,3.5,1148588062 +607,26555,4.0,1113406798 +607,30793,3.5,1143500416 +607,30812,2.5,1148585904 +607,31696,3.5,1148588186 +607,32587,5.0,1143500291 +607,33004,4.0,1148587860 +607,33166,3.5,1158466773 +607,33493,4.5,1118246995 +607,33679,4.0,1148588092 +607,33794,5.0,1143499639 +607,34162,3.5,1154372790 +607,34405,5.0,1157590005 +607,36519,3.0,1148587098 +607,38038,4.0,1143500472 +607,40815,4.0,1143499665 +607,41566,2.5,1148585435 +608,1,4.0,939461651 +608,6,5.0,939362594 +608,10,3.0,939362773 +608,16,4.0,939362594 +608,17,3.0,939461523 +608,22,3.0,939362773 +608,25,4.0,939461869 +608,30,4.0,939461712 +608,32,4.0,939461122 +608,34,4.0,939362108 +608,36,4.0,939461768 +608,47,5.0,939362390 +608,50,5.0,939361516 +608,59,3.0,958824728 +608,70,3.0,939362862 +608,81,3.0,958825252 +608,95,3.0,939363985 +608,111,5.0,939360997 +608,112,3.0,958825015 +608,117,2.0,958824838 +608,123,5.0,958825441 +608,149,4.0,958824947 +608,153,1.0,958825275 +608,164,3.0,958824948 +608,176,3.0,939360997 +608,190,5.0,939362862 +608,198,5.0,958825051 +608,229,3.0,939362289 +608,235,5.0,958825904 +608,247,4.0,939362390 +608,290,5.0,939361439 +608,293,3.0,939362529 +608,296,5.0,939361579 +608,300,4.0,939461122 +608,302,4.0,939461651 +608,306,5.0,939461599 +608,307,4.0,939461651 +608,319,3.0,939362529 +608,320,4.0,939362773 +608,322,3.0,939461523 +608,348,5.0,958825935 +608,356,3.0,939461225 +608,367,3.0,958825015 +608,373,4.0,939362773 +608,431,4.0,958824969 +608,457,3.0,939362460 +608,474,3.0,939362390 +608,490,3.0,939363985 +608,494,3.0,939363985 +608,509,4.0,939362289 +608,527,4.0,939361439 +608,532,4.0,958825110 +608,541,4.0,939361579 +608,549,3.0,958825791 +608,589,4.0,939362460 +608,592,4.0,958825015 +608,593,5.0,939362593 +608,599,5.0,958824585 +608,608,5.0,939362289 +608,627,3.0,939362594 +608,632,4.0,939461599 +608,696,1.0,939362460 +608,707,3.0,958825252 +608,750,5.0,939361157 +608,757,4.0,958825872 +608,778,4.0,958825809 +608,787,4.0,958825850 +608,800,4.0,939361635 +608,831,3.0,958824763 +608,841,4.0,958824367 +608,850,5.0,958825110 +608,858,5.0,958824554 +608,865,4.0,958825618 +608,866,4.0,939362773 +608,903,5.0,939361516 +608,904,5.0,939361373 +608,908,5.0,939361917 +608,910,5.0,939361373 +608,912,5.0,958824763 +608,913,5.0,939361635 +608,924,5.0,939361917 +608,931,4.0,939362289 +608,951,5.0,939361157 +608,955,5.0,939361316 +608,994,4.0,939362172 +608,1036,4.0,939462104 +608,1041,4.0,939361516 +608,1061,3.0,958825073 +608,1084,4.0,958824917 +608,1089,4.0,939362529 +608,1094,4.0,958825872 +608,1131,3.0,939361316 +608,1171,4.0,939461122 +608,1175,4.0,939461532 +608,1176,4.0,939461651 +608,1178,4.0,939362041 +608,1183,3.0,939461344 +608,1188,4.0,939362108 +608,1193,5.0,939360997 +608,1198,4.0,939362108 +608,1200,5.0,939462104 +608,1212,5.0,939362228 +608,1213,5.0,939361157 +608,1214,4.0,958824367 +608,1217,4.0,939462271 +608,1218,5.0,939462104 +608,1219,4.0,939361707 +608,1220,3.0,939462045 +608,1221,5.0,939361065 +608,1227,5.0,958824948 +608,1228,5.0,939361316 +608,1230,5.0,939361579 +608,1232,5.0,958824708 +608,1234,4.0,958824917 +608,1241,4.0,958824400 +608,1248,5.0,939362172 +608,1252,5.0,939362172 +608,1255,4.0,958824367 +608,1258,5.0,939462104 +608,1259,4.0,939462104 +608,1265,4.0,939461225 +608,1266,5.0,939461344 +608,1267,4.0,958824451 +608,1274,4.0,939462045 +608,1281,4.0,939361373 +608,1284,5.0,939361635 +608,1291,4.0,939361157 +608,1333,5.0,958824400 +608,1354,5.0,939461599 +608,1361,4.0,939461712 +608,1377,3.0,958825252 +608,1394,4.0,939462271 +608,1406,3.0,939461444 +608,1407,4.0,939363985 +608,1466,4.0,939362172 +608,1473,1.0,958825252 +608,1500,4.0,958824969 +608,1537,4.0,958825887 +608,1584,3.0,939461711 +608,1589,3.0,958825051 +608,1594,4.0,939362228 +608,1611,4.0,939461768 +608,1612,2.0,939461173 +608,1617,5.0,939361065 +608,1625,4.0,939362862 +608,1627,3.0,958825073 +608,1635,5.0,958825904 +608,1639,3.0,939461768 +608,1645,3.0,958825051 +608,1653,4.0,939362529 +608,1658,3.0,939361316 +608,1673,3.0,958825850 +608,1674,5.0,939462045 +608,1682,4.0,939461344 +608,1683,4.0,939362529 +608,1699,4.0,939461444 +608,1701,4.0,939361635 +608,1704,3.0,958825954 +608,1711,3.0,958825110 +608,1719,4.0,939361707 +608,1721,4.0,939461050 +608,1729,4.0,939461344 +608,1730,4.0,939461050 +608,1732,4.0,939362529 +608,1734,4.0,939361516 +608,1784,3.0,939461173 +608,1788,5.0,939361707 +608,1805,3.0,939362594 +608,1809,5.0,939362108 +608,1834,4.0,939362529 +608,1841,2.0,939362773 +608,1844,4.0,958825374 +608,1846,5.0,958825954 +608,1858,3.0,939362108 +608,1859,5.0,958824689 +608,1865,3.0,939361373 +608,1883,5.0,939361219 +608,1901,3.0,958824655 +608,1912,4.0,958824969 +608,1916,4.0,939362041 +608,1918,4.0,958825086 +608,1921,3.0,939362041 +608,1923,3.0,939461932 +608,1953,5.0,939361439 +608,1957,3.0,939361316 +608,1961,3.0,939462271 +608,1997,4.0,939361439 +608,2000,4.0,958825015 +608,2006,3.0,939361579 +608,2010,3.0,939361065 +608,2019,5.0,939361917 +608,2028,4.0,939361157 +608,2064,4.0,939361984 +608,2076,5.0,939462045 +608,2110,3.0,958825073 +608,2126,3.0,958825252 +608,2160,5.0,958824381 +608,2165,4.0,939461050 +608,2186,4.0,939361219 +608,2194,4.0,939462045 +608,2203,5.0,939361157 +608,2231,3.0,939461225 +608,2268,2.0,958825015 +608,2273,3.0,939362862 +608,2278,3.0,939362460 +608,2282,4.0,939361373 +608,2288,5.0,939462045 +608,2289,4.0,939361065 +608,2294,4.0,939362228 +608,2300,4.0,939360997 +608,2303,4.0,958824775 +608,2304,5.0,958825919 +608,2318,4.0,939361516 +608,2324,2.0,958824879 +608,2329,4.0,939461651 +608,2334,4.0,939362594 +608,2336,4.0,958825935 +608,2340,3.0,939461932 +608,2346,4.0,939360997 +608,2353,4.0,939363985 +608,2360,5.0,939361373 +608,2384,5.0,939461599 +608,2387,3.0,958825051 +608,2389,4.0,958825275 +608,2391,4.0,939362460 +608,2395,4.0,939461444 +608,2396,3.0,939461173 +608,2401,4.0,958824598 +608,2425,4.0,958825030 +608,2427,5.0,939362228 +608,2439,4.0,939361707 +608,2488,5.0,958824367 +608,2490,5.0,939362594 +608,2540,4.0,958825252 +608,2557,3.0,958825618 +608,2561,3.0,958825110 +608,2571,5.0,939362460 +608,2575,4.0,939461122 +608,2580,4.0,939361635 +608,2585,5.0,958825618 +608,2599,4.0,939362041 +608,2600,4.0,939362460 +608,2617,3.0,939363985 +608,2628,2.0,939361316 +608,2673,5.0,939361065 +608,2676,1.0,939362594 +608,2682,5.0,958825935 +608,2700,4.0,939461651 +608,2701,3.0,939361917 +608,2707,4.0,939357956 +608,2712,4.0,939358656 +608,2726,4.0,958824948 +608,2731,4.0,958824743 +608,2762,4.0,958824170 +608,2763,3.0,939357852 +608,2810,4.0,958825791 +608,2832,3.0,939358747 +608,2858,4.0,958825542 +608,2890,4.0,958825850 +608,2908,4.0,958824170 +608,2912,4.0,958824202 +608,2917,4.0,958824986 +608,2921,4.0,958824598 +608,2959,5.0,958824170 +608,2964,4.0,958825954 +608,2966,4.0,958825791 +608,2997,5.0,958824170 +608,3002,4.0,958824655 +608,3006,5.0,958824170 +608,3008,5.0,958825809 +608,3055,4.0,958824203 +608,3083,5.0,958825542 +608,3114,4.0,958825417 +608,3117,4.0,958825670 +608,3125,4.0,958824170 +608,3160,4.0,958825772 +608,3175,4.0,958824203 +608,3178,3.0,958824986 +608,3218,5.0,958824838 +608,3265,5.0,958824554 +608,3266,4.0,958824554 +608,3272,3.0,958825015 +608,3285,3.0,958824298 +608,3298,3.0,958824282 +608,3307,5.0,958824728 +608,3328,4.0,958824243 +608,3408,4.0,958825346 +608,3435,5.0,958824763 +608,3508,5.0,958824585 +608,3535,4.0,958824414 +608,3538,4.0,958824255 +608,3555,2.0,958824298 +608,3556,4.0,958824243 +608,3569,5.0,958824243 +608,3578,4.0,958824282 +608,4970,4.0,939361065 +609,81,5.0,1029869519 +609,117,1.0,1029870084 +609,188,5.0,1029870084 +609,215,1.0,1029870161 +609,290,5.0,1029869716 +609,296,1.0,1029870084 +609,320,1.0,1029870367 +609,334,1.0,1029870161 +609,390,5.0,1029870367 +609,436,1.0,1029869519 +609,443,1.0,1029869863 +609,456,1.0,1029869813 +609,483,1.0,1029870119 +609,501,5.0,1029869813 +609,565,5.0,1029870040 +609,569,1.0,1029869675 +609,593,5.0,1029869771 +609,614,1.0,1029869863 +609,617,1.0,1029870119 +609,621,1.0,1029870367 +609,678,1.0,1029870262 +609,720,1.0,1029869989 +609,735,5.0,1029870084 +609,839,1.0,1029869771 +609,858,5.0,1029869771 +609,912,1.0,1029870161 +609,923,5.0,1029870262 +609,936,1.0,1029870367 +609,1164,1.0,1029870040 +609,1202,1.0,1029870161 +609,1210,1.0,1029869519 +609,1224,1.0,1029869914 +609,1256,3.0,1029870084 +609,1352,5.0,1029869519 +609,1361,1.0,1029869989 +609,1365,1.0,1029870119 +609,1419,1.0,1029870262 +609,1447,1.0,1029870119 +609,1450,5.0,1029869863 +609,1537,1.0,1029870262 +609,1539,1.0,1029869914 +609,1563,5.0,1029869914 +609,1571,1.0,1029870084 +609,1819,5.0,1029869519 +609,1902,1.0,1029870161 +609,1929,1.0,1029870084 +609,2008,1.0,1029870084 +609,2063,1.0,1029870040 +609,2066,1.0,1029869813 +609,2237,1.0,1029870119 +609,2238,1.0,1029869863 +609,2267,5.0,1029869914 +609,2304,4.0,1029869771 +609,2348,1.0,1029870119 +609,2419,1.0,1029869863 +609,2434,1.0,1029869914 +609,2482,4.0,1029870119 +609,2563,5.0,1029870040 +609,2678,1.0,1029869675 +609,2767,1.0,1029870161 +609,2791,5.0,1029870040 +609,2824,1.0,1029869813 +609,2869,1.0,1029870262 +609,2905,1.0,1029869813 +609,2964,1.0,1029870161 +609,3003,1.0,1029869615 +609,3019,5.0,1029869519 +609,3030,1.0,1029869615 +609,3047,1.0,1029869989 +609,3076,1.0,1029869675 +609,3090,1.0,1029870161 +609,3196,1.0,1029869914 +609,3266,1.0,1029869989 +609,3303,1.0,1029869716 +609,3338,1.0,1029869675 +609,3341,1.0,1029869989 +609,3342,1.0,1029869989 +609,3362,1.0,1029870084 +609,3494,1.0,1029869914 +609,3547,1.0,1029869989 +609,3649,1.0,1029870262 +609,3672,5.0,1029869519 +609,3718,1.0,1029869615 +609,3728,1.0,1029870040 +609,3736,1.0,1029869813 +609,3813,1.0,1029870119 +609,3822,1.0,1029869989 +609,3892,5.0,1029870262 +609,3936,1.0,1029869519 +609,3965,1.0,1029869863 +609,3973,5.0,1029869771 +609,4026,1.0,1029869615 +609,4076,5.0,1029869716 +609,4166,1.0,1029869863 +609,4208,1.0,1029869813 +609,4271,1.0,1029869813 +609,4278,1.0,1029869813 +609,4334,1.0,1029870119 +609,4352,5.0,1029869914 +609,4387,1.0,1029870084 +609,4399,1.0,1029869771 +609,4433,1.0,1029870367 +609,4441,1.0,1029869716 +609,4467,5.0,1029869519 +609,4482,1.0,1029869675 +609,4518,5.0,1029870262 +609,4538,1.0,1029869771 +609,4562,1.0,1029869615 +609,4591,5.0,1029869675 +609,4592,1.0,1029869675 +609,4605,1.0,1029870161 +609,4768,1.0,1029870040 +609,4769,1.0,1029869863 +609,4782,1.0,1029870262 +609,4784,1.0,1029869716 +609,4796,5.0,1029870367 +609,4837,1.0,1029869771 +609,4865,5.0,1029869519 +609,4930,5.0,1029870262 +609,4965,5.0,1029869863 +609,4984,1.0,1029869675 +609,5114,5.0,1029869989 +609,5179,1.0,1029870040 +609,5202,1.0,1029870040 +609,5224,1.0,1029869813 +609,5236,1.0,1029870119 +609,5237,1.0,1029869914 +609,5241,1.0,1029869675 +609,5294,1.0,1029870040 +609,5304,1.0,1029869989 +609,5339,1.0,1029869863 +609,5352,1.0,1029870367 +609,5395,1.0,1029869716 +609,5410,1.0,1029869716 +609,5427,5.0,1029869675 +609,5470,1.0,1029869716 +609,5481,3.0,1029869771 +609,5504,1.0,1029869771 +609,5527,1.0,1029869914 +609,6531,1.0,1029869716 +610,538,4.0,1348595260 +610,1556,2.5,1348595245 +610,1590,4.0,1348595190 +610,1653,5.0,1349427910 +610,1894,3.0,1348595241 +610,2717,2.5,1348595057 +610,2761,2.0,1348595063 +610,2881,2.5,1348595126 +610,3020,3.0,1348595207 +610,3481,3.0,1348596057 +610,3510,3.0,1348595112 +610,3752,4.0,1348595166 +610,3863,1.0,1348595140 +610,3911,3.5,1348596045 +610,3949,3.5,1349428736 +610,4011,4.0,1348595682 +610,4027,3.0,1348596075 +610,4306,2.5,1348596053 +610,4641,3.5,1349428795 +610,4848,4.0,1349428080 +610,4878,3.5,1349428797 +610,4973,4.5,1348595696 +610,4979,4.5,1348595778 +610,5013,3.0,1348595214 +610,5015,3.5,1348595256 +610,5225,4.0,1349428669 +610,5617,3.5,1348595917 +610,5673,4.0,1348595932 +610,5902,3.5,1348595775 +610,5954,2.5,1349428723 +610,5989,4.0,1349428738 +610,5995,4.0,1349428670 +610,6016,4.5,1349428702 +610,6620,3.5,1348595928 +610,6711,5.0,1348595800 +610,6870,4.0,1349428689 +610,6942,2.0,1348596064 +610,6953,3.0,1349428681 +610,7139,4.0,1349428742 +610,7361,4.5,1349428800 +610,8622,3.0,1348595169 +610,8784,3.5,1348595781 +610,8874,4.0,1348595804 +610,8910,4.0,1348596157 +610,8949,3.5,1348596037 +610,27611,1.0,1349428781 +610,27773,5.0,1349428075 +610,30707,3.0,1349428083 +610,30749,4.0,1349428699 +610,30810,3.5,1348595923 +610,30812,5.0,1348595262 +610,31410,4.0,1349428814 +610,32587,3.5,1349428807 +610,34437,3.0,1348596047 +610,36535,4.0,1348596208 +610,38038,1.0,1349428755 +610,38061,3.5,1348595807 +610,41997,4.0,1349428709 +610,44195,4.0,1348595785 +610,44555,4.0,1349428650 +610,46578,4.5,1348595690 +610,46976,3.5,1348596111 +610,48516,4.0,1349428784 +610,48738,3.0,1349428665 +610,48780,4.0,1349428792 +610,49530,3.5,1349428745 +610,50872,3.5,1348596171 +610,54503,3.0,1348596123 +610,55269,3.5,1348595919 +610,55280,3.5,1348595930 +610,55820,3.0,1349428788 +610,56367,4.0,1348595792 +610,56782,5.0,1349428068 +610,57669,5.0,1348596107 +610,61240,4.0,1349428693 +610,63082,4.0,1349428724 +610,67997,4.0,1348596202 +610,68954,3.5,1348595680 +610,69757,4.0,1348596189 +610,71535,3.5,1348596163 +610,72011,3.0,1348596161 +610,84847,4.0,1348595710 +611,260,2.0,1471521325 +611,356,5.0,1471524463 +611,588,5.0,1471524718 +611,1721,4.0,1471521709 +611,1722,4.5,1471521496 +611,1882,1.5,1471521570 +611,2167,1.0,1471524250 +611,2294,3.0,1471521519 +611,2571,4.5,1471521299 +611,3404,4.0,1471521667 +611,3623,4.0,1471521448 +611,4369,4.0,1471522157 +611,4963,4.0,1471524042 +611,5254,1.0,1471524228 +611,5349,3.0,1471521873 +611,5418,3.0,1471524050 +611,6539,5.0,1471522941 +611,8533,3.5,1471521665 +611,8984,3.5,1471524096 +611,8985,1.0,1471524317 +611,45722,5.0,1471522875 +611,47099,4.5,1471521954 +611,53125,4.0,1471522849 +611,53322,3.5,1471524137 +611,73290,5.0,1471522055 +611,79132,3.5,1471521317 +611,86880,3.5,1471522820 +611,97304,4.0,1471521230 +611,98000,4.0,1471523753 +611,105504,4.0,1471521195 +611,108514,4.5,1471523535 +611,149606,4.5,1471523461 +611,150548,4.0,1471521899 +611,162542,5.0,1471520667 +611,162672,3.0,1471523986 +612,223,2.5,1455642746 +612,349,3.0,1455642720 +612,362,3.5,1455638487 +612,364,4.0,1455638876 +612,551,3.0,1455642716 +612,673,3.5,1455638412 +612,1097,4.5,1455638867 +612,1136,3.0,1455638864 +612,1198,3.5,1455642709 +612,1246,5.0,1455638856 +612,1485,3.0,1455642688 +612,1608,3.0,1455642853 +612,1682,4.0,1455642692 +612,1722,3.0,1455638347 +612,1777,2.5,1455642849 +612,2011,2.0,1455638646 +612,2078,4.0,1455638442 +612,2273,3.5,1455638428 +612,2278,4.0,1455638402 +612,2335,3.0,1455642831 +612,2502,3.0,1455642683 +612,2571,4.0,1455642680 +612,2683,4.0,1455638637 +612,2706,3.0,1455638633 +612,2918,4.0,1455642676 +612,2947,2.5,1455638381 +612,3033,2.5,1455642822 +612,3481,3.0,1455642814 +612,3552,4.0,1455642811 +612,3624,3.0,1455642809 +612,3755,3.0,1455642806 +612,4022,3.5,1455638629 +612,4085,3.5,1455638392 +612,4239,3.5,1455642799 +612,4369,4.0,1455642793 +612,4896,3.5,1455638625 +612,4963,4.0,1455638621 +612,4993,4.5,1455638619 +612,5378,4.0,1455638614 +612,5679,4.0,1455638420 +612,6333,3.0,1455642788 +612,7445,3.5,1455642988 +612,8784,2.5,1455638434 +612,30793,3.5,1455642782 +612,33679,2.5,1455642770 +612,34048,3.0,1455642766 +612,40278,4.0,1455642979 +612,40815,4.0,1455638367 +612,45447,3.0,1455642757 +612,45720,3.5,1455642974 +612,46578,3.5,1455642759 +612,47099,3.5,1455642972 +612,49530,4.5,1455638474 +612,50872,3.5,1455638373 +612,61024,2.0,1455642959 +612,62434,2.5,1455642956 +612,63082,4.5,1455642750 +612,63113,3.5,1455642952 +612,69122,4.5,1455638424 +612,72011,3.5,1455642947 +612,73321,4.0,1455642945 +612,74458,3.5,1455642741 +612,80463,4.0,1455642739 +612,91500,4.0,1455642736 +612,94959,4.0,1455642933 +612,99114,4.0,1455638449 +613,50,5.0,1208297864 +613,260,5.0,1208297872 +613,272,3.0,1208297635 +613,318,4.0,1208297827 +613,593,5.0,1208297831 +613,719,1.5,1208297648 +613,745,4.5,1208297909 +613,750,3.5,1208297916 +613,858,5.0,1208297869 +613,904,3.5,1208297936 +613,1042,4.5,1208297665 +613,1093,2.5,1208297716 +613,1148,4.0,1208297906 +613,1193,4.0,1208297854 +613,1198,5.0,1208297823 +613,1203,4.0,1208297838 +613,1271,3.5,1208298382 +613,1321,4.5,1208297759 +613,1343,4.0,1208297623 +613,1663,2.5,1208297692 +613,1831,2.5,1208297769 +613,1960,2.5,1208297765 +613,1962,3.5,1208297700 +613,2243,3.5,1208297751 +613,2329,5.0,1208297814 +613,2571,4.0,1208297894 +613,2723,3.0,1208297705 +613,2858,4.0,1208297836 +613,2871,4.0,1208297681 +613,2959,4.5,1208297891 +613,2968,4.0,1208297670 +613,3107,2.5,1208297714 +613,3510,3.0,1208297727 +613,3578,4.5,1208298112 +613,3811,4.0,1208298294 +613,3996,3.0,1208298137 +613,4361,3.0,1208297744 +613,4993,4.5,1208298063 +613,5952,4.5,1208298065 +613,6333,4.0,1208298122 +613,6539,3.0,1208298094 +613,6650,4.0,1208297961 +613,6874,4.0,1208298054 +613,7153,4.5,1208297852 +613,7360,3.5,1208298126 +613,7438,4.0,1208298052 +613,8798,3.5,1208298101 +613,8961,5.0,1208298141 +613,48774,3.0,1208298135 +613,48780,3.5,1208298348 +613,49272,4.0,1208298083 +613,51255,3.5,1208298073 +613,54286,3.5,1208298145 +614,3,2.0,1003253691 +614,8,1.0,1003254119 +614,28,4.0,1003253973 +614,48,3.0,1003253691 +614,52,4.0,1010620180 +614,195,3.0,1010620148 +614,236,5.0,1003253736 +614,260,4.0,1003254048 +614,261,4.0,1010620275 +614,296,5.0,1010620205 +614,309,5.0,1010620205 +614,500,4.0,1010620090 +614,513,2.0,1010620225 +614,515,5.0,1010620148 +614,527,3.0,1003253994 +614,540,2.0,1010620205 +614,589,3.0,1003254086 +614,593,4.0,1003254147 +614,608,5.0,1003253918 +614,780,1.0,1003253712 +614,838,3.0,1010620036 +614,858,5.0,1003253843 +614,899,5.0,1003254006 +614,902,3.0,1003253691 +614,905,5.0,1003253918 +614,910,5.0,1003254175 +614,913,5.0,1003254102 +614,919,1.0,1003253933 +614,923,5.0,1003253862 +614,928,5.0,1010620157 +614,933,5.0,1010620259 +614,942,5.0,1003254048 +614,945,4.0,1003253795 +614,947,4.0,1003254048 +614,950,5.0,1003253933 +614,951,5.0,1003253918 +614,955,5.0,1003254086 +614,965,4.0,1003253973 +614,994,5.0,1010620111 +614,1013,4.0,1010620073 +614,1198,5.0,1003254086 +614,1203,4.0,1003254147 +614,1212,5.0,1003253933 +614,1218,4.0,1003254175 +614,1219,5.0,1003253712 +614,1221,4.0,1003253853 +614,1225,4.0,1003253955 +614,1231,4.0,1003254032 +614,1234,4.0,1003254006 +614,1244,3.0,1003254175 +614,1247,3.0,1003253896 +614,1250,5.0,1003253982 +614,1252,5.0,1003253874 +614,1256,5.0,1003253896 +614,1260,5.0,1003253973 +614,1262,5.0,1010620290 +614,1267,5.0,1003253896 +614,1280,5.0,1010620127 +614,1339,4.0,1010620148 +614,1358,2.0,1003253933 +614,1370,1.0,1010620090 +614,1377,2.0,1010620090 +614,1387,3.0,1003254086 +614,1411,5.0,1003254157 +614,1544,1.0,1010620180 +614,1556,1.0,1010620225 +614,1594,5.0,1010620243 +614,1653,2.0,1010620111 +614,1821,4.0,1010620111 +614,1858,4.0,1010620243 +614,1968,4.0,1003253736 +614,2134,2.0,1003253736 +614,2165,5.0,1010620225 +614,2243,4.0,1003254185 +614,2301,4.0,1010620036 +614,2396,3.0,1003254016 +614,2398,2.0,1003253973 +614,2424,3.0,1010620290 +614,2803,3.0,1010620243 +614,2849,2.0,1010620036 +614,2879,4.0,1010620090 +614,2935,4.0,1003254032 +614,3004,1.0,1010620205 +614,3148,2.0,1010620148 +614,3173,2.0,1010620049 +614,3185,1.0,1010620111 +614,3270,4.0,1003253736 +614,3341,3.0,1003253918 +614,3555,4.0,1010620225 +614,3623,4.0,1010620205 +614,3683,4.0,1003253955 +614,3983,4.0,1003254049 +614,3996,4.0,1003253955 +614,4212,4.0,1010620127 +614,4226,5.0,1003253691 +614,4355,1.0,1010620036 +614,4469,4.0,1010620275 +614,4835,2.0,1003253884 +614,5060,4.0,1003253994 +615,1,4.0,1425504992 +615,6,3.5,1463685875 +615,32,3.0,1408779743 +615,47,4.5,1425505006 +615,60,3.5,1408779602 +615,260,3.5,1457590934 +615,293,4.5,1441987461 +615,296,5.0,1425504532 +615,344,3.0,1425505013 +615,356,4.0,1408778740 +615,364,4.0,1425505009 +615,367,2.5,1425505038 +615,442,4.5,1463685687 +615,466,4.0,1408780287 +615,480,4.0,1425504991 +615,520,4.0,1408780341 +615,527,4.5,1408778593 +615,541,4.0,1408778818 +615,555,4.5,1454914001 +615,589,4.0,1408779769 +615,593,4.0,1425504990 +615,608,4.0,1454913730 +615,733,3.5,1425505045 +615,736,3.0,1425505096 +615,745,4.0,1408778654 +615,778,3.5,1454913734 +615,780,3.5,1425504995 +615,786,3.5,1457590958 +615,858,4.0,1408778570 +615,1036,4.0,1425505062 +615,1079,4.0,1408780130 +615,1080,5.0,1425503869 +615,1089,4.0,1425506722 +615,1091,3.5,1408778226 +615,1136,4.5,1408778643 +615,1193,3.0,1425505047 +615,1198,4.0,1408778790 +615,1200,4.0,1408779693 +615,1201,4.0,1408779999 +615,1206,3.5,1455473518 +615,1208,4.5,1463685843 +615,1213,4.0,1408778633 +615,1214,4.5,1408779685 +615,1215,2.5,1408778876 +615,1222,4.5,1463685882 +615,1240,4.0,1408778768 +615,1258,4.5,1454913517 +615,1261,3.0,1408778867 +615,1265,3.5,1425505050 +615,1270,3.5,1425505003 +615,1291,4.0,1425505057 +615,1345,2.5,1408780843 +615,1391,3.5,1457590953 +615,1407,3.0,1457590960 +615,1425,3.5,1408780105 +615,1517,4.0,1408780244 +615,1527,4.5,1425506721 +615,1580,3.5,1425505098 +615,1625,4.0,1408779313 +615,1653,3.5,1454873849 +615,1687,3.5,1408778262 +615,1721,3.5,1425505095 +615,1732,4.5,1425504611 +615,2027,3.0,1408780339 +615,2028,4.5,1425505102 +615,2134,2.0,1408778212 +615,2167,3.5,1473015342 +615,2268,3.5,1463685839 +615,2329,4.0,1408778711 +615,2384,3.5,1408778218 +615,2402,3.0,1408778252 +615,2502,3.5,1457590919 +615,2571,4.5,1408778656 +615,2713,1.5,1408778330 +615,2762,4.0,1425505010 +615,2791,4.5,1408780189 +615,2792,4.0,1408780287 +615,2858,4.0,1408778712 +615,2890,4.0,1468174931 +615,2959,4.5,1408778695 +615,2993,3.0,1408778301 +615,2997,3.5,1408779865 +615,3147,5.0,1454913966 +615,3246,4.0,1408778265 +615,3275,3.5,1454914011 +615,3462,4.5,1454913954 +615,3481,4.0,1425504855 +615,3578,4.5,1425504745 +615,3593,1.5,1408778321 +615,3623,3.5,1454913442 +615,3624,3.5,1454873950 +615,3671,3.5,1468174876 +615,3751,3.5,1425504835 +615,3793,4.0,1425504875 +615,3863,3.5,1441988820 +615,3868,4.0,1408780229 +615,3869,3.5,1408780253 +615,3948,3.0,1425504856 +615,3969,2.5,1408778240 +615,3977,2.0,1425504837 +615,4008,4.0,1408778327 +615,4011,4.5,1425504773 +615,4025,2.5,1454913349 +615,4027,4.0,1454874091 +615,4084,3.0,1408778308 +615,4226,4.0,1408778628 +615,4246,3.0,1454913461 +615,4306,4.0,1425504747 +615,4308,4.0,1454913399 +615,4310,1.5,1441988812 +615,4370,4.0,1454913355 +615,4447,2.5,1454913386 +615,4865,2.5,1408778296 +615,4878,3.5,1408779675 +615,4886,4.5,1425504753 +615,4896,3.0,1425504863 +615,4963,3.5,1425504871 +615,4975,4.0,1441988814 +615,4979,3.0,1454913454 +615,4993,3.5,1408778797 +615,4995,4.0,1425504870 +615,5010,5.0,1454874135 +615,5218,3.0,1454874022 +615,5349,3.5,1425504765 +615,5418,4.0,1425504868 +615,5421,3.5,1455473606 +615,5445,4.0,1425504750 +615,5459,3.5,1454913336 +615,5463,3.5,1473015400 +615,5500,3.5,1408780214 +615,5541,4.5,1408780211 +615,5902,3.5,1454913804 +615,5903,3.0,1455473674 +615,5952,4.0,1408778803 +615,5989,4.0,1425504775 +615,6016,4.5,1408778532 +615,6333,3.5,1425504846 +615,6365,3.5,1425504780 +615,6377,4.5,1425504757 +615,6378,3.0,1454913341 +615,6502,5.0,1408778967 +615,6534,3.0,1408780654 +615,6537,3.0,1441988817 +615,6539,3.5,1425504796 +615,6541,3.0,1473015355 +615,6711,4.0,1425504839 +615,6807,4.0,1457590921 +615,6874,4.5,1408778714 +615,6934,3.5,1454874021 +615,6942,4.0,1454913390 +615,7143,3.5,1454913354 +615,7153,4.0,1408778800 +615,7254,3.5,1454913343 +615,7360,4.0,1408779009 +615,7361,4.0,1408779622 +615,7373,3.5,1473015313 +615,7438,4.0,1408778718 +615,7454,3.0,1473015338 +615,7502,5.0,1408778457 +615,8360,3.5,1425504848 +615,8368,3.0,1441987591 +615,8371,3.0,1408780790 +615,8636,1.5,1441987598 +615,8784,2.0,1454913381 +615,8874,5.0,1408778825 +615,8910,3.5,1408779806 +615,8914,3.5,1408779845 +615,8961,4.0,1425504785 +615,8984,3.0,1441987480 +615,27660,4.0,1463685880 +615,27773,4.0,1408779998 +615,30707,4.0,1455473516 +615,30793,2.0,1463685753 +615,31696,3.5,1473015317 +615,32587,4.5,1408780540 +615,33004,4.0,1441987480 +615,33679,4.0,1463685775 +615,33794,4.0,1425504777 +615,34048,2.5,1463685782 +615,34162,3.0,1463685780 +615,34405,4.0,1408778904 +615,35836,3.0,1463685748 +615,36529,4.5,1454913694 +615,40815,3.5,1463685756 +615,40819,3.5,1463685785 +615,42738,3.0,1473015334 +615,44191,3.0,1441987595 +615,44195,4.5,1425503927 +615,44665,2.5,1441987475 +615,45447,2.0,1463685789 +615,45722,3.0,1454913359 +615,46578,4.5,1441987587 +615,46976,4.0,1408779837 +615,48385,3.5,1463685750 +615,48394,5.0,1454873935 +615,48516,4.0,1408778729 +615,48738,3.5,1454874046 +615,48774,4.5,1408778944 +615,48780,5.0,1454874107 +615,49272,4.5,1441987588 +615,49530,3.5,1463685772 +615,50872,3.5,1454874126 +615,51255,4.0,1408778862 +615,51662,4.0,1408781193 +615,52281,3.5,1463685850 +615,52328,4.0,1408779609 +615,52606,2.5,1408780860 +615,52722,1.5,1454873879 +615,52885,3.5,1408779845 +615,52973,2.5,1454873877 +615,53000,4.0,1408779427 +615,53129,4.0,1408779313 +615,53322,2.5,1408779488 +615,53996,3.0,1463685799 +615,54256,3.0,1408780812 +615,54272,3.5,1454873871 +615,54286,3.5,1463685760 +615,54503,3.0,1463685777 +615,55118,3.5,1454874055 +615,55247,3.0,1463685791 +615,55765,3.0,1454914058 +615,55820,4.0,1408778938 +615,55995,2.0,1473015402 +615,56367,4.0,1454913452 +615,57640,3.5,1425503902 +615,57669,5.0,1454873869 +615,58025,2.5,1454913820 +615,58293,1.5,1454913835 +615,58559,4.5,1408778535 +615,59315,3.5,1454874099 +615,59369,4.5,1463685795 +615,59387,3.5,1454913842 +615,60040,3.5,1408780676 +615,60069,5.0,1425504599 +615,60684,4.0,1408779694 +615,60756,3.0,1454913932 +615,60937,2.5,1473015561 +615,60950,4.0,1454913855 +615,62394,1.0,1473015372 +615,62434,2.0,1454913845 +615,63859,3.5,1454913836 +615,64614,3.5,1463685771 +615,64839,4.0,1408778978 +615,64957,3.0,1454873874 +615,64969,2.0,1454913752 +615,65682,3.5,1473015332 +615,66171,3.0,1455473632 +615,66934,4.0,1408779709 +615,68157,4.5,1408778686 +615,68237,5.0,1408778902 +615,68358,3.5,1408779740 +615,68554,1.5,1454913867 +615,68791,3.0,1454913747 +615,68954,4.5,1425504608 +615,69122,3.0,1454913374 +615,69481,4.0,1425503866 +615,69757,4.5,1454913573 +615,70286,4.0,1408779649 +615,70336,1.0,1473015550 +615,71057,3.0,1454913907 +615,71211,3.0,1408779472 +615,71464,4.0,1408779807 +615,71535,4.5,1408778861 +615,71745,3.5,1408779910 +615,72011,4.0,1463685873 +615,72226,4.0,1408778967 +615,72998,4.0,1454913449 +615,73268,3.0,1473015326 +615,73321,3.5,1454913750 +615,74458,3.0,1408779333 +615,76251,3.0,1408778915 +615,77455,3.5,1454913833 +615,78499,4.5,1425504542 +615,79132,4.0,1408778644 +615,79293,3.0,1454913852 +615,79695,3.0,1454913900 +615,79702,4.5,1408778908 +615,81229,3.0,1454913830 +615,81562,3.5,1454913597 +615,81564,3.0,1454913863 +615,81845,4.0,1454913562 +615,82459,4.5,1408778810 +615,82461,3.5,1454913755 +615,83134,4.0,1408778864 +615,84152,4.0,1425503888 +615,84392,3.5,1425504555 +615,84954,3.0,1454913872 +615,86190,4.0,1425504561 +615,86504,5.0,1454913558 +615,86835,1.5,1473015329 +615,87232,3.5,1473015566 +615,87306,3.0,1408779733 +615,87869,3.5,1454913890 +615,88140,3.0,1425503895 +615,89470,4.0,1408779470 +615,89745,4.0,1408780636 +615,90405,3.0,1454913928 +615,90866,3.0,1454913850 +615,90888,2.5,1473015356 +615,91485,2.5,1473015558 +615,91529,3.5,1408778685 +615,91658,3.0,1425503890 +615,91974,2.0,1473015336 +615,92008,3.5,1408779468 +615,92420,4.0,1408779738 +615,93838,4.5,1408780021 +615,93840,4.5,1408778872 +615,94959,4.5,1408778510 +615,95309,4.0,1408779681 +615,95441,2.0,1425504567 +615,95761,4.0,1408780699 +615,96610,3.5,1408779672 +615,96811,4.0,1408778523 +615,96821,4.0,1463685887 +615,97304,3.5,1408779648 +615,97306,4.0,1463685831 +615,99007,3.5,1408780941 +615,99114,4.5,1408778568 +615,100163,2.0,1473015318 +615,100383,4.5,1408779299 +615,100745,3.5,1408778578 +615,102194,3.0,1455473677 +615,102819,3.5,1408779463 +615,103228,4.0,1425504558 +615,103249,2.5,1473015399 +615,103253,3.5,1408780551 +615,103341,4.0,1408778907 +615,104243,3.5,1408780790 +615,104374,4.5,1408778485 +615,104879,4.5,1408778512 +615,104881,4.0,1408780759 +615,105213,2.5,1408779150 +615,105504,4.0,1408779041 +615,105731,3.5,1408780840 +615,105844,5.0,1408778485 +615,105954,3.5,1408779123 +615,106002,3.0,1408779148 +615,106072,3.0,1408779126 +615,106100,3.5,1408778515 +615,106487,3.5,1408779049 +615,106489,3.5,1408779104 +615,106696,3.0,1408779072 +615,106782,4.0,1408779043 +615,106916,3.0,1408779068 +615,106918,3.0,1408779064 +615,106920,4.5,1408778473 +615,107069,3.5,1408779119 +615,107141,2.5,1408779050 +615,107348,1.5,1408779204 +615,107406,4.0,1454913599 +615,108583,5.0,1425504620 +615,108932,4.5,1408779056 +615,108945,1.5,1408779170 +615,109187,0.5,1454913681 +615,109374,5.0,1408778476 +615,109673,3.0,1408779173 +615,109848,3.0,1408780927 +615,110127,3.5,1408779162 +615,110501,4.0,1408780045 +615,110591,4.0,1454913486 +615,110730,2.0,1408779167 +615,111364,2.5,1455473628 +615,111384,4.0,1408780953 +615,111759,4.5,1455473620 +615,111931,2.0,1408780887 +615,112183,3.0,1441988803 +615,112515,3.5,1457591037 +615,112552,4.0,1457590911 +615,112556,5.0,1425503863 +615,112852,4.5,1425503912 +615,115122,4.5,1463685885 +615,115149,4.5,1463685829 +615,115569,4.5,1425503913 +615,115713,4.5,1441987490 +615,119145,4.5,1454874052 +615,120466,2.0,1455473662 +615,122882,5.0,1441987461 +615,122886,4.5,1454873889 +615,122904,4.5,1455473577 +615,128360,4.5,1463685695 +615,134130,4.5,1454873887 +615,134853,5.0,1454873781 +615,139385,4.0,1457590980 +615,139644,3.5,1454914061 +615,152081,5.0,1473015032 +616,1,4.0,860572913 +616,3,3.0,860572960 +616,6,3.0,860572959 +616,7,3.0,860572960 +616,17,3.0,860572913 +616,18,4.0,860573132 +616,25,4.0,860572913 +616,32,3.0,860572913 +616,36,4.0,860572959 +616,62,3.0,860572913 +616,79,3.0,860573029 +616,140,4.0,860573066 +616,141,3.0,860572913 +616,260,5.0,860572988 +616,376,4.0,860572988 +616,494,3.0,860572960 +616,608,4.0,860572959 +616,635,3.0,860573287 +616,637,3.0,860573029 +616,647,4.0,860573132 +616,719,3.0,860573066 +616,724,3.0,860573086 +616,726,3.0,860573303 +616,733,4.0,860572959 +616,736,4.0,860572913 +616,762,3.0,860573029 +616,765,4.0,860573168 +616,778,3.0,860573066 +616,780,4.0,860572913 +616,788,4.0,860572988 +616,802,4.0,860573029 +616,805,4.0,860573029 +616,832,5.0,860573066 +616,852,4.0,860573066 +616,858,4.0,860573133 +616,1073,4.0,860572960 +616,1183,5.0,860573168 +616,1357,4.0,860573222 +616,1393,4.0,860573106 +616,1409,4.0,860573222 +617,39,3.0,944893754 +617,70,1.0,944893444 +617,188,3.0,944893410 +617,216,3.0,944893754 +617,253,4.0,944893298 +617,296,3.0,944894013 +617,356,4.0,944893837 +617,357,2.0,944893703 +617,364,4.0,944894072 +617,367,3.0,944893779 +617,457,2.0,944893010 +617,480,3.0,944892771 +617,500,4.0,944893920 +617,527,5.0,944893957 +617,551,2.0,944893896 +617,562,3.0,944893604 +617,587,3.0,944893837 +617,588,3.0,944893703 +617,593,5.0,944892846 +617,799,3.0,944893858 +617,838,3.0,944893676 +617,919,4.0,944894191 +617,1125,1.0,944892771 +617,1188,2.0,944893604 +617,1210,1.0,944892739 +617,1225,4.0,944892771 +617,1258,5.0,944893142 +617,1265,2.0,944893755 +617,1333,3.0,944893142 +617,1339,4.0,944893298 +617,1345,4.0,944893176 +617,1347,3.0,944893216 +617,1387,3.0,944893107 +617,1392,2.0,944893703 +617,1405,2.0,944893896 +617,1407,4.0,944892739 +617,1476,3.0,944893646 +617,1485,4.0,944893804 +617,1580,4.0,944893779 +617,1617,3.0,944892924 +617,1645,3.0,944893254 +617,1717,3.0,944893410 +617,1777,1.0,944893896 +617,1784,3.0,944893646 +617,1883,3.0,944893755 +617,1885,3.0,944893604 +617,1923,5.0,944893676 +617,1982,3.0,944893216 +617,1991,3.0,944893376 +617,1994,5.0,944893176 +617,1997,5.0,944892873 +617,2122,2.0,944893298 +617,2155,3.0,944893804 +617,2160,4.0,944893142 +617,2188,4.0,944894298 +617,2302,2.0,944893676 +617,2315,3.0,944893351 +617,2321,2.0,944893896 +617,2355,3.0,944893703 +617,2395,1.0,944893676 +617,2396,5.0,944894038 +617,2428,3.0,944893444 +617,2433,3.0,944894321 +617,2447,5.0,944893837 +617,2459,1.0,944893298 +617,2541,5.0,944894340 +617,2554,2.0,944892951 +617,2572,5.0,944894141 +617,2683,4.0,944894298 +617,2694,3.0,944894321 +617,2699,3.0,944894298 +617,2710,3.0,944893351 +617,3052,3.0,944893896 +617,3063,3.0,944893042 +617,3108,1.0,944893604 +618,50,5.0,1009556335 +618,111,5.0,1009556353 +618,172,2.0,1009556066 +618,319,4.0,1009555175 +618,541,5.0,1009556247 +618,593,5.0,1009555263 +618,780,2.0,1009555303 +618,912,5.0,1009555118 +618,1208,5.0,1009556476 +618,1219,5.0,1009556335 +618,1339,4.0,1009555928 +618,1446,4.0,1009555263 +618,1617,4.0,1009555141 +618,2160,4.0,1009555216 +618,2553,5.0,1009556353 +618,2641,2.0,1009555216 +618,2677,4.0,1009556802 +618,3101,3.0,1009555175 +618,3127,2.0,1009557039 +618,3462,5.0,1009555242 +618,3676,5.0,1009556503 +618,3996,5.0,1009555697 +618,4103,5.0,1009555902 +618,4273,5.0,1009555837 +618,4300,2.0,1009556141 +618,4306,4.0,1009555865 +618,4308,4.0,1009555777 +618,4811,4.0,1009555966 +618,4928,5.0,1009555714 +618,4970,5.0,1009555675 +618,4973,4.0,1009555486 +619,21,3.0,831921914 +619,31,3.0,831923897 +619,47,4.0,831923570 +619,50,5.0,831923679 +619,111,5.0,831923679 +619,150,5.0,831921736 +619,153,2.0,831921795 +619,160,3.0,831923679 +619,161,4.0,831921853 +619,165,3.0,831921829 +619,168,5.0,831923847 +619,172,3.0,831923875 +619,173,2.0,831923824 +619,185,4.0,831921879 +619,196,4.0,831923824 +619,204,3.0,831923847 +619,208,3.0,831921879 +619,225,2.0,831921914 +619,237,4.0,831923927 +619,246,5.0,831923897 +619,252,3.0,831923750 +619,253,3.0,831921879 +619,256,3.0,831923897 +619,276,3.0,831923927 +619,288,3.0,831921914 +619,293,4.0,831923875 +619,296,5.0,831921736 +619,300,3.0,831921878 +619,315,1.0,831923750 +619,316,3.0,831921829 +619,318,5.0,831921795 +619,329,3.0,831921829 +619,337,5.0,831923790 +619,349,4.0,831921795 +619,380,4.0,831921736 +619,410,2.0,831921914 +619,432,3.0,831923679 +619,434,3.0,831921853 +619,553,4.0,831923790 +619,588,5.0,831921795 +619,590,4.0,831921736 +619,592,3.0,831921736 +619,595,3.0,831921829 +620,50,4.0,1455532785 +620,260,4.0,1455532809 +620,296,4.0,1455532055 +620,901,3.5,1455532934 +620,902,5.0,1455532854 +620,912,3.5,1455532789 +620,914,4.5,1455532924 +620,915,3.5,1455532881 +620,916,4.0,1455532921 +620,919,4.0,1455533087 +620,924,4.0,1457890184 +620,937,3.0,1455532937 +620,1028,4.0,1457890244 +620,1196,3.5,1455532816 +620,1206,3.5,1455533067 +620,1247,3.5,1455533039 +620,1732,4.0,1455532050 +620,2324,2.5,1455531550 +620,3409,1.5,1455532318 +620,3578,3.0,1455532086 +620,3785,1.0,1455532205 +620,3825,2.5,1455532398 +620,3988,3.0,1455532298 +620,4014,2.5,1455532181 +620,4016,5.0,1455532311 +620,4022,2.5,1455532458 +620,4027,3.0,1455532465 +620,4069,3.0,1455532400 +620,4232,2.5,1455532412 +620,4239,2.0,1455532257 +620,4246,3.0,1455532009 +620,4306,1.5,1455532444 +620,4308,4.0,1455532162 +620,4310,2.5,1455532217 +620,4367,4.0,1455532248 +620,4369,0.5,1455532567 +620,4447,2.5,1455532195 +620,4718,0.5,1455532530 +620,4878,2.5,1455532104 +620,4886,3.0,1455532035 +620,4896,3.0,1455532450 +620,4973,4.5,1455532092 +620,4979,4.0,1455532479 +620,4993,0.5,1455532440 +620,5299,0.5,1455532511 +620,5378,4.0,1455532125 +620,5444,3.5,1455532362 +620,5816,4.5,1455532133 +620,5952,1.0,1455532081 +620,5991,3.0,1455532535 +620,6365,3.0,1455532456 +620,6377,1.0,1455532109 +620,6503,2.0,1455532651 +620,6593,2.5,1455532748 +620,6711,4.5,1455532127 +620,6863,4.0,1455532201 +620,6874,3.5,1455532098 +620,6942,1.5,1455532199 +620,7147,3.0,1455532483 +620,7153,1.0,1455532082 +620,7254,3.5,1455532188 +620,7293,0.5,1455532272 +620,7361,4.5,1455532096 +620,7444,1.5,1455532693 +620,7451,3.0,1455532333 +620,7458,1.0,1455532571 +620,8033,3.0,1455532918 +620,8360,3.5,1455532140 +620,8368,4.5,1455532136 +620,8533,0.5,1455532352 +620,8957,0.5,1455532598 +620,8961,4.0,1455532102 +620,26776,4.0,1455533133 +620,30707,1.5,1455532516 +620,30793,4.0,1455532239 +620,30810,4.0,1455532064 +620,33493,3.5,1455532495 +620,33615,1.5,1455532419 +620,33679,4.0,1455532547 +620,34150,2.0,1455532647 +620,37729,3.5,1455532349 +620,40629,3.0,1455532660 +620,40815,4.0,1455532171 +620,40819,4.0,1455532272 +620,41566,4.0,1455532233 +620,44022,0.5,1455532736 +620,44191,4.0,1455532451 +620,45720,4.5,1455531996 +620,45722,0.5,1455532504 +620,46578,4.0,1455532142 +620,50872,5.0,1455532029 +620,51662,1.5,1455532167 +620,54272,2.0,1455532300 +620,54780,2.5,1455532002 +620,55274,4.5,1455532963 +620,56174,3.0,1455532553 +620,56757,1.5,1455532404 +620,59725,2.5,1455532005 +620,59784,4.0,1455532302 +620,60069,2.5,1455532038 +620,61236,4.0,1455533156 +620,61323,4.0,1455532062 +620,65585,1.5,1455531827 +620,66297,0.5,1455531788 +620,67788,4.5,1455531834 +620,68157,3.0,1455532155 +620,68269,4.0,1455531872 +620,68954,4.5,1455532026 +620,69712,2.5,1455531904 +620,69844,4.0,1455532585 +620,71264,4.5,1455531676 +620,71464,3.0,1455531694 +620,72226,4.5,1455531564 +620,72294,4.0,1455531907 +620,72378,1.5,1455531625 +620,72998,2.0,1455532475 +620,73017,4.0,1455532548 +620,73106,0.5,1455531951 +620,74458,0.5,1455532210 +620,74688,1.5,1455531910 +620,74789,4.0,1455532675 +620,75341,0.5,1455531913 +620,78174,3.0,1455531888 +620,78316,3.0,1455531893 +620,78499,3.5,1455532031 +620,78574,3.0,1455531688 +620,78637,3.0,1455531757 +620,79091,0.5,1455532645 +620,80463,2.5,1455532557 +620,80549,4.0,1455531618 +620,80551,4.0,1455531849 +620,81591,4.0,1455532250 +620,81834,4.0,1455532293 +620,81847,4.0,1455531567 +620,82169,4.0,1455531795 +620,82202,3.0,1455531765 +620,84152,3.0,1455532410 +620,84374,3.5,1455531759 +620,84637,1.5,1455531971 +620,86833,2.0,1455531647 +620,86880,1.0,1455531639 +620,86882,4.0,1455531570 +620,87222,4.0,1455531684 +620,87485,3.5,1455531760 +620,87876,0.5,1455531854 +620,88125,4.0,1455532588 +620,88179,4.0,1455531928 +620,88267,2.0,1457890198 +620,88405,2.5,1455531727 +620,88810,4.0,1455531606 +620,91104,0.5,1455531797 +620,91500,2.0,1455532612 +620,91529,3.0,1455532222 +620,92259,3.0,1455531543 +620,93721,4.0,1455531778 +620,94466,3.5,1455532807 +620,94777,2.0,1455531650 +620,94959,3.5,1455532681 +620,95167,3.0,1455531663 +620,95441,1.5,1455531643 +620,96588,4.0,1455531733 +620,96821,4.0,1455531609 +620,97921,3.0,1455532678 +620,98491,4.5,1457890234 +620,98809,3.0,1455532357 +620,99149,4.0,1455531744 +620,106487,1.0,1455532684 +620,109374,4.0,1455532329 +620,112556,3.5,1455532321 +620,115617,4.0,1455532414 +620,116797,3.5,1455532596 +620,122886,2.5,1455531583 +621,5,4.5,1116476167 +621,253,3.5,1116476158 +621,277,1.0,1116476028 +621,296,4.5,1116476361 +621,344,3.5,1116476134 +621,345,5.0,1116475866 +621,356,4.0,1116476365 +621,440,4.0,1116476374 +621,527,5.0,1116476681 +621,551,4.5,1116476370 +621,589,1.5,1116476119 +621,783,1.0,1116475893 +621,914,3.5,1116476074 +621,919,4.5,1116476342 +621,920,4.5,1116476353 +621,954,5.0,1116476794 +621,1032,4.5,1116476833 +621,1073,3.5,1116476845 +621,1088,3.5,1116476035 +621,1136,4.5,1116476774 +621,1197,5.0,1116477262 +621,1210,4.0,1116476649 +621,1246,4.5,1116476345 +621,1269,4.0,1116476840 +621,1270,4.0,1116476348 +621,1372,3.0,1116475874 +621,1375,4.5,1116475982 +621,1580,5.0,1116476327 +621,1641,4.0,1116476944 +621,1674,4.0,1116475988 +621,1682,4.0,1116476713 +621,1704,4.0,1116476332 +621,1909,4.5,1116476004 +621,1967,5.0,1116476906 +621,1968,3.5,1116476693 +621,2003,2.0,1116476038 +621,2073,3.5,1116477344 +621,2134,4.5,1116477404 +621,2137,3.0,1116476732 +621,2138,3.5,1116476899 +621,2144,4.0,1116477311 +621,2145,3.5,1116477364 +621,2147,2.5,1116476233 +621,2174,4.0,1116476321 +621,2407,2.5,1116476019 +621,2470,3.5,1116477415 +621,2473,4.0,1116477537 +621,2478,3.5,1116477421 +621,2502,4.5,1116476789 +621,2571,5.0,1116476312 +621,2686,5.0,1116476181 +621,2716,4.5,1116476307 +621,2752,4.0,1116477478 +621,2770,4.5,1116475994 +621,2794,3.5,1116477454 +621,2918,4.5,1116477283 +621,2926,5.0,1116477390 +621,3052,4.0,1116476884 +621,3101,3.0,1116475888 +621,3255,3.0,1116476068 +621,3385,4.0,1116477529 +621,3418,5.0,1116475985 +621,3548,4.5,1116476958 +621,3591,5.0,1116477376 +621,3671,5.0,1116476740 +621,3751,4.5,1116476912 +621,4010,4.5,1116477433 +621,4085,4.5,1116477302 +621,4104,0.5,1116477808 +621,4280,4.0,1116477273 +621,4306,4.0,1116476674 +621,4361,5.0,1116477296 +621,4478,5.0,1116477357 +621,4502,0.5,1116477806 +621,4571,5.0,1116477331 +621,4676,2.5,1116477564 +621,4678,4.0,1116477324 +621,4696,4.5,1116477460 +621,4980,4.0,1116476164 +621,4993,5.0,1116476252 +621,5568,3.5,1116477379 +621,5780,4.0,1116477349 +621,5952,4.5,1116476636 +621,6039,4.0,1116477506 +621,6104,4.5,1116476756 +621,6122,4.0,1116476798 +621,6125,3.5,1116476408 +621,6184,3.5,1116476200 +621,6718,4.5,1116477485 +621,6807,5.0,1116476143 +621,7062,3.0,1116476933 +621,7153,5.0,1116476044 +621,7340,4.5,1116477466 +621,8610,4.5,1116477268 +621,8961,1.0,1116476669 +622,260,5.0,1424224962 +622,318,5.0,1424225031 +622,593,4.0,1424225062 +622,1196,5.0,1424224964 +622,1198,5.0,1424224961 +622,1234,5.0,1424225077 +622,1291,5.0,1424224968 +622,1704,5.0,1424225370 +622,2571,5.0,1424224965 +622,2762,5.0,1424225107 +622,2959,5.0,1424225089 +622,4226,5.0,1424225047 +622,4993,5.0,1424225045 +622,7153,5.0,1424224969 +622,7438,2.0,1424224984 +622,7502,5.0,1424225034 +622,8360,4.5,1424224993 +622,8636,5.0,1424224988 +622,8961,5.0,1424224981 +622,32587,3.0,1424224991 +622,33794,5.0,1424224986 +622,44191,5.0,1424224996 +622,48394,5.0,1424225321 +622,58559,5.0,1424224970 +622,64614,5.0,1424225333 +622,95858,5.0,1424225068 +622,99114,4.5,1424225358 +622,100553,5.0,1424225101 +622,108979,3.5,1424225074 +622,109487,5.0,1424225001 +622,112852,5.0,1424225012 +623,1,4.5,1225256593 +623,34,4.0,1225256510 +623,110,4.0,1225255881 +623,150,4.0,1225255893 +623,153,3.0,1225256302 +623,231,3.0,1225256527 +623,296,5.0,1225255825 +623,318,4.5,1225256582 +623,344,3.5,1225258429 +623,356,5.0,1225255827 +623,364,4.0,1225258445 +623,367,3.5,1225256514 +623,377,4.0,1225258426 +623,480,4.0,1225255846 +623,527,4.5,1225256584 +623,588,4.0,1225258419 +623,589,3.5,1225255959 +623,595,3.5,1225256480 +623,648,4.0,1225256173 +623,733,4.0,1225256499 +623,736,4.0,1225258449 +623,780,3.5,1225256057 +623,1042,5.0,1225258023 +623,1089,5.0,1225258253 +623,1210,3.5,1225255836 +623,1265,3.5,1225256456 +623,1270,4.0,1225256369 +623,1438,3.0,1225255417 +623,1580,3.5,1225256122 +623,1588,3.0,1225255522 +623,1681,2.5,1225255721 +623,1801,3.0,1225255440 +623,1923,4.0,1225256422 +623,2329,4.5,1225258158 +623,2382,4.0,1225255694 +623,2384,3.5,1225255459 +623,2542,5.0,1225258201 +623,2571,4.5,1225256068 +623,2683,2.0,1225256351 +623,2692,4.5,1225258138 +623,2706,3.5,1225257700 +623,2716,3.5,1225256353 +623,2723,4.5,1225257987 +623,2762,4.5,1225258458 +623,2827,1.5,1225255569 +623,2858,3.5,1225256020 +623,2997,5.0,1225256232 +623,3114,4.5,1225256547 +623,3146,1.5,1225255555 +623,3697,2.0,1225255469 +623,3793,4.0,1225256234 +623,3869,4.5,1225256561 +623,3972,4.5,1225255588 +623,3977,3.5,1225257755 +623,3996,4.5,1225256085 +623,4011,5.0,1225258189 +623,4306,4.5,1225256595 +623,4816,4.5,1225258001 +623,4878,5.0,1225258173 +623,4896,3.5,1225256527 +623,4963,4.5,1225256138 +623,4973,5.0,1225258328 +623,5349,4.0,1225256036 +623,5418,4.0,1225256335 +623,5628,4.5,1225258230 +623,5952,5.0,1225255925 +623,5989,4.0,1225256351 +623,6016,5.0,1225258320 +623,6333,3.5,1225256277 +623,6377,4.0,1225256023 +623,6539,4.5,1225255863 +623,6874,4.0,1225255995 +623,7090,5.0,1225258041 +623,7153,5.0,1225255859 +623,7361,4.5,1225256119 +623,7438,4.0,1225256098 +623,8636,3.5,1225256240 +623,8665,4.0,1225257823 +623,8961,4.0,1225255895 +623,9010,5.0,1225258357 +623,26842,4.0,1225256098 +623,27544,4.0,1225256035 +623,31685,3.5,1225255617 +623,33794,5.0,1225255949 +623,44195,5.0,1225258221 +623,45517,3.5,1225255682 +623,45722,4.0,1225256527 +623,46578,5.0,1225256302 +623,48385,4.5,1225256573 +623,48516,4.5,1225256568 +623,49957,5.0,1225257963 +623,50872,4.0,1225257836 +623,51662,4.0,1225256384 +623,51705,4.0,1225258296 +623,52952,4.5,1225257954 +623,53956,5.0,1225258519 +623,56367,3.5,1225256014 +623,57243,4.5,1225257936 +623,57669,5.0,1225257896 +623,58559,5.0,1225256609 +623,59315,4.5,1225256041 +623,59615,3.5,1225257821 +623,60069,4.0,1225257771 +624,1,5.0,1019126661 +624,2,3.0,1019125424 +624,3,3.0,1019128536 +624,5,3.0,1019128415 +624,10,4.0,1019124400 +624,12,2.0,1019563753 +624,16,5.0,1019138531 +624,19,2.0,1019132168 +624,20,3.0,1019124922 +624,21,2.0,1019124231 +624,32,2.0,1019132949 +624,38,3.0,1019227804 +624,47,4.0,1019132386 +624,50,4.0,1064741727 +624,65,1.0,1028111080 +624,66,2.0,1019133230 +624,95,2.0,1019124644 +624,101,3.5,1076328586 +624,104,3.0,1221250916 +624,107,4.0,1019125396 +624,122,2.0,1019128536 +624,135,2.0,1178982000 +624,145,4.0,1019124465 +624,150,3.0,1019137611 +624,153,2.5,1118166852 +624,158,3.0,1019125583 +624,161,4.0,1019137754 +624,163,3.5,1074420419 +624,165,4.0,1019142324 +624,170,3.0,1019132497 +624,172,2.0,1080549606 +624,180,3.5,1058089154 +624,185,2.5,1206217384 +624,208,2.0,1019124858 +624,216,3.0,1034506007 +624,223,4.0,1059407171 +624,231,3.0,1019128257 +624,260,5.0,1019124071 +624,288,3.0,1019124575 +624,296,5.0,1019132316 +624,300,4.0,1019137717 +624,303,3.0,1057592358 +624,316,3.0,1028110820 +624,329,4.0,1092829881 +624,339,3.0,1104840673 +624,344,3.0,1019128536 +624,348,4.0,1019127381 +624,349,4.0,1019124455 +624,350,2.5,1061899719 +624,355,2.0,1019127065 +624,356,3.0,1019127614 +624,357,3.0,1019127559 +624,367,3.0,1019127943 +624,370,3.0,1032164700 +624,376,3.0,1019124675 +624,377,4.0,1019124324 +624,380,3.0,1019124334 +624,383,2.0,1324313611 +624,410,4.0,1019128484 +624,413,2.0,1039945532 +624,420,2.0,1019124939 +624,428,3.0,1019137647 +624,432,3.0,1019128694 +624,434,3.0,1019124800 +624,435,3.0,1019128846 +624,437,2.0,1019128946 +624,440,3.0,1019127444 +624,445,3.0,1019128877 +624,454,3.0,1164743063 +624,457,4.0,1019142214 +624,466,3.0,1019124703 +624,471,4.0,1178980875 +624,474,4.0,1019124231 +624,480,3.0,1019124292 +624,485,4.0,1019124939 +624,492,4.0,1019127800 +624,494,3.0,1019124621 +624,500,4.0,1019128140 +624,507,3.0,1019123928 +624,519,2.0,1019133230 +624,520,3.0,1019128680 +624,528,2.0,1080752851 +624,533,3.0,1019124632 +624,539,3.0,1019127800 +624,541,4.0,1019123960 +624,543,4.0,1019127814 +624,552,3.0,1019125749 +624,553,3.5,1088933661 +624,555,4.0,1079688049 +624,585,4.0,1019128185 +624,586,3.0,1019126928 +624,587,3.0,1019127900 +624,589,3.0,1019124194 +624,590,3.0,1019125259 +624,592,3.0,1118166857 +624,593,5.0,1019132717 +624,594,4.0,1019126687 +624,596,4.0,1019126674 +624,597,3.0,1019127874 +624,599,5.0,1265660460 +624,608,4.0,1059899864 +624,616,4.0,1019126749 +624,619,1.0,1057222213 +624,637,2.0,1019128616 +624,648,3.0,1019125129 +624,663,3.0,1019127733 +624,671,5.0,1059321444 +624,673,3.0,1019125666 +624,688,2.0,1019125022 +624,700,3.0,1019127943 +624,720,4.0,1019126661 +624,733,3.0,1019124354 +624,736,3.0,1019124675 +624,743,3.0,1019128906 +624,745,4.0,1028110529 +624,761,3.0,1019125583 +624,780,3.0,1019133014 +624,785,4.0,1019128243 +624,788,3.0,1019128497 +624,802,3.0,1028215249 +624,805,3.0,1019138615 +624,818,3.5,1178981107 +624,858,5.0,1019124147 +624,870,1.0,1034616569 +624,880,1.5,1170357662 +624,912,4.5,1113129247 +624,919,4.0,1019125217 +624,923,4.5,1459083402 +624,924,4.0,1019132961 +624,941,4.0,1092830001 +624,952,4.5,1127643381 +624,1009,3.0,1019125424 +624,1010,4.0,1019126928 +624,1011,4.0,1019125583 +624,1017,3.0,1019125340 +624,1019,3.0,1028110632 +624,1020,4.0,1092829992 +624,1021,2.0,1178982112 +624,1022,4.0,1019126704 +624,1023,3.0,1028110848 +624,1027,3.0,1019138960 +624,1028,5.0,1019126866 +624,1030,4.0,1164622199 +624,1031,5.0,1019125292 +624,1032,4.0,1019126843 +624,1035,4.0,1019140874 +624,1036,5.0,1019124211 +624,1037,4.0,1019133161 +624,1057,3.5,1073143143 +624,1073,4.0,1019125228 +624,1077,4.0,1028790319 +624,1079,5.0,1019127244 +624,1080,5.0,1019131169 +624,1083,4.0,1019128060 +624,1089,5.0,1019132326 +624,1090,4.0,1019137594 +624,1091,3.0,1164622075 +624,1092,4.0,1019141359 +624,1097,4.0,1019123941 +624,1100,3.0,1019141934 +624,1101,2.5,1178981120 +624,1125,4.0,1019127479 +624,1129,3.0,1019125369 +624,1135,3.0,1019127916 +624,1136,5.0,1019130885 +624,1147,5.0,1019132603 +624,1148,4.0,1028110632 +624,1171,4.0,1178980929 +624,1188,3.0,1019127229 +624,1193,5.0,1019123928 +624,1196,5.0,1019124147 +624,1198,5.0,1019124147 +624,1200,2.0,1113129252 +624,1201,5.0,1019124194 +624,1206,4.0,1034616598 +624,1208,4.0,1036695762 +624,1209,5.0,1062423064 +624,1210,5.0,1019123866 +624,1213,5.0,1019132316 +624,1214,3.0,1019124174 +624,1220,3.0,1019563582 +624,1221,5.0,1019124147 +624,1223,4.0,1019126661 +624,1227,5.0,1019130838 +624,1228,5.0,1324744267 +624,1230,5.0,1029135309 +624,1234,4.0,1019127145 +624,1240,3.0,1019124194 +624,1244,4.0,1028529850 +624,1250,5.0,1019132735 +624,1256,5.0,1019127163 +624,1262,5.0,1019125205 +624,1265,4.0,1164622262 +624,1266,4.0,1087644177 +624,1270,5.0,1019127202 +624,1275,5.0,1019124306 +624,1276,5.0,1019130913 +624,1278,3.0,1113129256 +624,1283,4.0,1019133301 +624,1288,5.0,1019127258 +624,1291,4.0,1019124231 +624,1302,3.0,1019137559 +624,1304,4.0,1019127202 +624,1307,3.0,1019127163 +624,1343,5.0,1019139911 +624,1356,4.0,1019124400 +624,1370,3.0,1019142275 +624,1371,3.0,1019124621 +624,1372,3.0,1019124575 +624,1373,1.5,1156619857 +624,1374,3.0,1019123880 +624,1375,3.0,1019125396 +624,1376,2.0,1178981694 +624,1377,3.0,1019124094 +624,1378,3.0,1019124528 +624,1379,4.0,1019124632 +624,1380,3.0,1019128158 +624,1387,4.0,1019124160 +624,1388,3.0,1019124822 +624,1389,1.0,1019140749 +624,1391,4.0,1019124675 +624,1393,4.0,1019132804 +624,1394,3.0,1019127258 +624,1396,4.0,1019132397 +624,1405,4.0,1019126773 +624,1408,2.0,1019124306 +624,1409,3.0,1019128400 +624,1425,2.0,1072546987 +624,1432,2.0,1037296402 +624,1438,2.0,1019124858 +624,1459,2.0,1275824371 +624,1461,2.0,1023961104 +624,1476,5.0,1019127982 +624,1479,3.0,1019125110 +624,1485,2.5,1198865886 +624,1515,2.0,1019139399 +624,1517,4.0,1019127505 +624,1527,3.0,1019132995 +624,1544,2.0,1032164659 +624,1552,0.5,1075117988 +624,1556,1.0,1019125085 +624,1562,1.5,1208620099 +624,1573,3.0,1019133014 +624,1580,4.0,1019124455 +624,1588,3.0,1019127005 +624,1591,1.0,1019125633 +624,1604,3.0,1046960166 +624,1608,3.0,1019132896 +624,1610,4.0,1019124211 +624,1614,4.0,1019127832 +624,1617,4.0,1019132316 +624,1620,4.0,1019132477 +624,1639,4.5,1058089200 +624,1641,4.0,1019127396 +624,1645,3.0,1019132423 +624,1646,3.0,1019128658 +624,1665,3.0,1178981412 +624,1676,4.0,1019124600 +624,1680,3.0,1019141513 +624,1682,3.0,1019137845 +624,1704,4.0,1081171097 +624,1722,4.0,1019124292 +624,1729,4.0,1019132386 +624,1747,2.0,1143893778 +624,1755,4.0,1019141562 +624,1760,1.0,1019132044 +624,1784,4.0,1019137522 +624,1831,1.5,1117446465 +624,1833,2.0,1019139324 +624,1837,3.0,1019132194 +624,1839,3.0,1019128846 +624,1856,4.0,1019141117 +624,1863,3.0,1019128877 +624,1876,3.0,1019133056 +624,1882,3.0,1019124974 +624,1884,2.5,1444051656 +624,1911,3.0,1019128431 +624,1917,3.0,1019124725 +624,1918,3.0,1019124750 +624,1920,4.0,1019127005 +624,1923,4.0,1019127456 +624,1953,5.0,1019124211 +624,1954,4.0,1019124244 +624,1955,3.0,1019137845 +624,1961,3.0,1019123894 +624,1965,2.0,1019132980 +624,1967,3.0,1019126914 +624,1968,3.0,1019127229 +624,1982,1.5,1161526179 +624,2000,4.0,1019127319 +624,2001,3.5,1164622247 +624,2002,3.0,1019124575 +624,2003,4.0,1019127916 +624,2004,3.0,1019128386 +624,2005,3.0,1028110699 +624,2006,3.0,1019124400 +624,2011,3.0,1019128039 +624,2012,4.0,1019128140 +624,2013,5.0,1019124481 +624,2014,2.0,1072012999 +624,2018,4.0,1019126704 +624,2019,5.0,1019132771 +624,2023,3.0,1082281251 +624,2027,2.0,1178981888 +624,2034,3.0,1019133126 +624,2038,3.0,1019127044 +624,2040,3.0,1019126952 +624,2041,4.0,1019125595 +624,2046,3.0,1019125353 +624,2050,3.0,1019125449 +624,2051,4.0,1019125633 +624,2053,2.0,1019563932 +624,2054,4.0,1019125435 +624,2060,4.0,1019128577 +624,2083,4.0,1019126899 +624,2087,4.0,1019126704 +624,2088,3.0,1028110796 +624,2090,4.0,1019126736 +624,2094,3.0,1019133056 +624,2100,3.0,1019127641 +624,2105,4.0,1019124493 +624,2108,3.0,1019127430 +624,2109,3.0,1019127711 +624,2110,4.0,1019128140 +624,2111,4.0,1019128158 +624,2115,4.0,1164622254 +624,2124,3.0,1019563464 +624,2126,2.0,1057649467 +624,2134,3.0,1019128119 +624,2139,3.0,1019126719 +624,2140,3.0,1019126914 +624,2141,3.0,1019126749 +624,2142,3.0,1019126790 +624,2146,3.0,1019141823 +624,2153,1.0,1019125065 +624,2169,3.0,1019128468 +624,2174,3.0,1019127479 +624,2194,4.0,1019132349 +624,2231,4.0,1019137951 +624,2243,4.0,1100099775 +624,2247,3.0,1019131482 +624,2249,2.0,1019128185 +624,2253,1.0,1019124908 +624,2264,3.0,1019139281 +624,2268,4.0,1019132349 +624,2269,3.0,1019139281 +624,2289,5.0,1019127129 +624,2291,3.0,1019137680 +624,2300,4.0,1019140840 +624,2302,3.0,1019127559 +624,2335,4.0,1164622080 +624,2349,2.0,1019123880 +624,2353,3.0,1019142275 +624,2355,4.0,1040756375 +624,2366,5.0,1019124231 +624,2367,3.0,1148466797 +624,2368,2.0,1019140795 +624,2369,3.0,1019128415 +624,2371,3.0,1019127748 +624,2372,2.0,1019563833 +624,2375,3.0,1019125813 +624,2376,2.5,1173560581 +624,2378,4.5,1164622167 +624,2379,3.0,1019132168 +624,2380,2.0,1028111003 +624,2381,2.0,1028111003 +624,2382,2.0,1028111003 +624,2383,2.0,1019132277 +624,2393,4.0,1019124546 +624,2402,2.0,1028111004 +624,2403,2.0,1019124400 +624,2404,1.0,1019124948 +624,2405,3.0,1019124481 +624,2406,3.0,1019124279 +624,2407,4.0,1019127727 +624,2408,2.0,1019124094 +624,2409,3.0,1019139281 +624,2410,3.0,1019124750 +624,2411,3.0,1019124800 +624,2412,2.0,1019124908 +624,2413,3.0,1019128107 +624,2414,3.0,1019125322 +624,2420,2.0,1019138730 +624,2421,2.0,1021567112 +624,2455,3.0,1019133014 +624,2463,4.0,1019127850 +624,2470,4.0,1049015553 +624,2471,3.0,1019125633 +624,2472,3.0,1019127763 +624,2474,4.0,1019125813 +624,2478,3.0,1028110820 +624,2502,3.0,1270312997 +624,2518,3.0,1019127974 +624,2520,3.0,1019139031 +624,2521,3.0,1019139712 +624,2522,3.0,1019139729 +624,2523,2.0,1019133272 +624,2524,5.0,1019138858 +624,2529,3.0,1041617295 +624,2530,2.0,1064426223 +624,2533,2.0,1041617295 +624,2537,3.0,1164622446 +624,2539,3.0,1127157795 +624,2542,4.0,1019127343 +624,2567,4.0,1019127600 +624,2571,2.0,1162753923 +624,2580,3.0,1119106113 +624,2587,4.0,1019460299 +624,2598,3.0,1019128447 +624,2616,2.0,1019124714 +624,2617,2.0,1041272707 +624,2628,2.0,1119469513 +624,2640,3.0,1019124354 +624,2641,3.0,1019125353 +624,2642,3.0,1019124858 +624,2643,2.0,1019125096 +624,2657,4.0,1019128050 +624,2683,4.5,1092562805 +624,2693,4.0,1032771794 +624,2694,4.0,1164622318 +624,2699,3.0,1019124655 +624,2700,4.0,1092830272 +624,2701,3.0,1028110848 +624,2706,3.5,1164622334 +624,2709,4.0,1019126888 +624,2713,2.0,1039177465 +624,2716,5.0,1019127163 +624,2717,3.0,1019128616 +624,2718,3.0,1045480175 +624,2723,4.0,1019125424 +624,2735,2.0,1019124736 +624,2746,3.0,1019564316 +624,2759,2.5,1318679277 +624,2762,4.0,1019142152 +624,2763,3.0,1045161657 +624,2769,2.0,1041941619 +624,2770,4.0,1019127874 +624,2779,3.0,1019127916 +624,2788,4.0,1178980946 +624,2791,5.0,1019125935 +624,2792,3.0,1041438705 +624,2794,3.0,1019128447 +624,2796,3.0,1019128447 +624,2797,4.0,1019127363 +624,2803,3.0,1019142353 +624,2805,2.0,1035811807 +624,2806,3.5,1062677841 +624,2822,2.0,1019141991 +624,2829,3.0,1021877802 +624,2857,4.0,1019126704 +624,2858,4.0,1043776610 +624,2860,3.0,1019128214 +624,2881,4.0,1019124621 +624,2883,3.0,1040237267 +624,2887,1.0,1042049388 +624,2889,4.0,1019127695 +624,2890,3.0,1019132837 +624,2915,4.0,1019127343 +624,2916,3.0,1019125292 +624,2918,4.0,1019127308 +624,2922,4.0,1019133316 +624,2942,2.0,1019563833 +624,2947,4.5,1091450131 +624,2948,4.5,1091351489 +624,2949,4.0,1091351325 +624,2951,5.0,1019124231 +624,2953,1.0,1117446468 +624,2959,4.0,1019137594 +624,2968,5.0,1019125273 +624,2973,4.0,1028529865 +624,2978,2.0,1019125784 +624,2985,4.5,1164622139 +624,2986,3.0,1019132552 +624,2987,4.0,1019125273 +624,2989,4.5,1092309194 +624,2990,4.5,1092829543 +624,2991,5.0,1019124279 +624,2993,4.5,1091450158 +624,2997,4.0,1039515852 +624,3005,1.0,1019142393 +624,3020,4.0,1019124575 +624,3024,3.0,1019133161 +624,3030,5.0,1019124045 +624,3031,3.0,1019132044 +624,3033,4.0,1019128107 +624,3034,4.0,1019126674 +624,3039,4.0,1019228504 +624,3044,4.0,1019141327 +624,3052,4.0,1058206489 +624,3057,4.0,1042220824 +624,3072,3.0,1019127505 +624,3082,3.5,1173560585 +624,3087,3.0,1019127748 +624,3101,3.0,1019142324 +624,3104,4.0,1019124279 +624,3107,4.0,1019138711 +624,3108,3.0,1019127516 +624,3114,5.0,1019126661 +624,3130,2.0,1019132194 +624,3146,4.0,1038736356 +624,3156,2.0,1019563582 +624,3168,4.0,1019125259 +624,3173,3.0,1019139010 +624,3174,3.0,1019127614 +624,3175,4.0,1019125340 +624,3198,4.0,1019137809 +624,3208,3.0,1019124750 +624,3247,4.0,1019128431 +624,3248,2.0,1019132117 +624,3249,4.0,1019142353 +624,3253,4.5,1092830346 +624,3254,4.0,1019128372 +624,3255,4.0,1019127695 +624,3256,4.0,1019124365 +624,3257,1.0,1019124836 +624,3258,3.0,1019128734 +624,3262,3.0,1019138978 +624,3263,4.0,1019131482 +624,3264,1.5,1059899816 +624,3267,3.5,1064153466 +624,3268,1.0,1028111170 +624,3274,4.0,1019124481 +624,3276,1.0,1052647528 +624,3284,3.0,1476384001 +624,3286,2.0,1038486297 +624,3301,4.0,1023692566 +624,3317,4.0,1054546273 +624,3327,4.0,1019132624 +624,3361,4.0,1019127308 +624,3386,3.0,1019137698 +624,3388,2.0,1019563896 +624,3390,2.0,1019125722 +624,3396,4.0,1164622214 +624,3397,4.0,1019126875 +624,3398,4.0,1092830342 +624,3401,2.0,1019125648 +624,3418,3.0,1019137875 +624,3421,4.0,1019130925 +624,3422,3.0,1019128089 +624,3448,4.0,1019127559 +624,3450,4.0,1019127777 +624,3471,4.0,1019132949 +624,3489,3.0,1019125583 +624,3494,5.0,1019125369 +624,3507,4.0,1019123866 +624,3508,5.0,1019133316 +624,3511,3.0,1040643593 +624,3524,3.0,1019141834 +624,3526,4.0,1019127569 +624,3527,1.0,1189358111 +624,3534,2.0,1040065052 +624,3536,4.0,1039177544 +624,3537,3.0,1019125813 +624,3552,4.5,1323105296 +624,3555,2.0,1039794524 +624,3564,2.0,1143894549 +624,3578,4.0,1019124292 +624,3591,2.0,1019138595 +624,3593,1.0,1173725692 +624,3596,1.0,1044272089 +624,3608,1.0,1028111136 +624,3614,4.0,1019128089 +624,3617,4.0,1033996657 +624,3618,4.0,1019127727 +624,3623,2.0,1019124703 +624,3624,2.0,1052647614 +624,3633,3.5,1091701887 +624,3635,4.0,1173560529 +624,3638,3.0,1173560567 +624,3639,4.5,1092044346 +624,3646,3.0,1178981400 +624,3671,5.0,1019127174 +624,3681,5.0,1019125154 +624,3688,5.0,1019128536 +624,3689,3.0,1164622468 +624,3690,3.0,1164622491 +624,3698,2.0,1019133043 +624,3701,3.0,1019563464 +624,3705,2.0,1019125666 +624,3707,2.0,1019139031 +624,3717,2.0,1178981944 +624,3740,3.0,1019128386 +624,3744,1.5,1057481948 +624,3751,3.0,1019126687 +624,3752,4.0,1023205489 +624,3754,1.0,1032772474 +624,3755,3.0,1019124588 +624,3760,2.5,1085749829 +624,3763,4.5,1164622290 +624,3764,3.0,1019124939 +624,3785,2.0,1034505956 +624,3791,3.0,1019563833 +624,3793,4.0,1019125762 +624,3802,2.0,1019133161 +624,3812,3.0,1043577943 +624,3821,3.0,1041155796 +624,3826,2.0,1038486175 +624,3827,3.0,1021877820 +624,3833,1.0,1035119788 +624,3841,3.0,1097751894 +624,3861,3.0,1028529886 +624,3868,5.0,1019127430 +624,3869,4.0,1032164700 +624,3877,3.0,1019125044 +624,3882,3.0,1038736408 +624,3897,4.0,1038594345 +624,3911,3.0,1040379687 +624,3916,3.0,1033287500 +624,3933,0.5,1191614594 +624,3948,4.0,1024902820 +624,3949,4.0,1296299329 +624,3950,3.0,1061919692 +624,3967,4.0,1041504329 +624,3968,3.0,1021276640 +624,3977,2.0,1023205435 +624,3978,3.0,1037641774 +624,3979,4.0,1023260776 +624,3980,2.0,1034096623 +624,3984,3.5,1173560541 +624,3986,3.0,1023692589 +624,3994,2.0,1025507603 +624,3996,3.0,1026118147 +624,4002,4.0,1019127415 +624,4005,3.5,1092655873 +624,4010,4.0,1019128227 +624,4011,4.0,1035980807 +624,4015,2.0,1036086140 +624,4022,4.0,1028529781 +624,4025,2.0,1056199601 +624,4027,2.0,1034700847 +624,4034,3.0,1019137522 +624,4039,3.0,1019563504 +624,4040,3.0,1019128616 +624,4051,0.5,1263237066 +624,4053,2.0,1064153348 +624,4066,2.0,1019563932 +624,4068,3.0,1046198627 +624,4084,3.0,1019124686 +624,4085,5.0,1019127444 +624,4104,1.0,1028111115 +624,4121,4.0,1019127998 +624,4124,1.0,1019140763 +624,4128,4.0,1164622228 +624,4132,4.0,1019128804 +624,4133,3.0,1019124986 +624,4148,3.0,1040065117 +624,4153,2.0,1068491368 +624,4156,2.0,1063909113 +624,4158,0.5,1074776936 +624,4159,2.0,1070185956 +624,4161,3.0,1052647694 +624,4167,2.0,1036612424 +624,4168,3.0,1066069447 +624,4198,3.0,1019226921 +624,4203,2.0,1019124546 +624,4212,3.0,1019132407 +624,4221,3.0,1019128072 +624,4225,4.0,1037531806 +624,4226,4.0,1026978102 +624,4229,3.0,1052647653 +624,4232,2.0,1045826816 +624,4233,2.5,1062524267 +624,4234,3.0,1046111054 +624,4238,3.0,1038683557 +624,4254,1.0,1049015553 +624,4255,0.5,1061212887 +624,4262,4.5,1367761882 +624,4267,3.0,1044649729 +624,4268,2.0,1041504276 +624,4270,1.0,1041272707 +624,4280,3.0,1019127489 +624,4291,2.0,1019563464 +624,4299,4.0,1049015459 +624,4321,5.0,1019127641 +624,4322,4.0,1019137717 +624,4327,5.0,1019133301 +624,4333,3.0,1019128257 +624,4339,4.0,1019665475 +624,4340,2.0,1084272528 +624,4343,2.0,1045222339 +624,4344,2.0,1045072144 +624,4351,1.0,1160936767 +624,4361,3.0,1019127202 +624,4367,1.0,1041761553 +624,4368,3.0,1041155227 +624,4369,2.0,1044649616 +624,4370,2.5,1054546199 +624,4388,2.0,1049015662 +624,4396,5.0,1019124644 +624,4397,3.0,1019125022 +624,4409,3.5,1089029542 +624,4447,1.5,1063369190 +624,4448,3.0,1053249671 +624,4471,0.5,1164622587 +624,4477,1.0,1028111080 +624,4483,2.0,1019132117 +624,4487,1.0,1157273661 +624,4489,3.0,1019127850 +624,4492,3.0,1019128846 +624,4499,4.0,1019124005 +624,4502,1.0,1028111115 +624,4526,2.0,1019133189 +624,4544,2.0,1019132130 +624,4545,3.0,1019128484 +624,4558,3.0,1019128257 +624,4563,2.0,1019128718 +624,4564,3.0,1019141546 +624,4571,5.0,1019125322 +624,4585,4.0,1019128279 +624,4587,3.0,1019128600 +624,4602,3.0,1019128894 +624,4621,2.0,1178981891 +624,4623,5.0,1019131273 +624,4630,1.0,1028717134 +624,4634,3.0,1028110767 +624,4638,4.0,1019124789 +624,4643,1.5,1054455565 +624,4654,1.5,1154785482 +624,4660,4.0,1019127974 +624,4662,3.0,1178981173 +624,4673,2.0,1019124774 +624,4677,3.0,1019128521 +624,4678,3.5,1178981100 +624,4679,3.0,1019127943 +624,4681,4.0,1019128243 +624,4686,2.0,1178981559 +624,4709,3.0,1019128600 +624,4718,3.0,1178981442 +624,4728,2.5,1059899724 +624,4732,1.5,1053362146 +624,4734,4.5,1055609997 +624,4756,1.0,1019125749 +624,4775,0.5,1183909175 +624,4776,3.0,1059899914 +624,4799,5.0,1019127444 +624,4812,3.0,1019125648 +624,4814,2.0,1074711220 +624,4816,3.0,1060601459 +624,4844,2.0,1061555032 +624,4848,3.0,1069097404 +624,4855,4.0,1019124244 +624,4866,3.5,1061467606 +624,4874,2.0,1019563961 +624,4878,4.0,1126548392 +624,4881,3.0,1061899745 +624,4886,4.0,1071935179 +624,4890,2.5,1064137470 +624,4896,3.0,1205164753 +624,4901,2.5,1053249262 +624,4915,2.0,1019124822 +624,4936,3.0,1074888974 +624,4941,5.0,1019124675 +624,4952,2.0,1178981850 +624,4963,4.0,1019124380 +624,4978,3.0,1080652891 +624,4979,3.5,1070384303 +624,4980,3.0,1019125449 +624,4981,4.0,1019127669 +624,4993,4.0,1041438979 +624,5009,2.5,1057147888 +624,5010,4.0,1074854977 +624,5025,2.0,1088413319 +624,5027,3.0,1019132541 +624,5049,4.0,1019127415 +624,5055,3.0,1171627869 +624,5060,4.0,1019127145 +624,5094,1.5,1079632810 +624,5099,3.0,1019126914 +624,5106,0.5,1158491366 +624,5110,4.0,1082793481 +624,5151,3.0,1080810039 +624,5220,3.0,1070186007 +624,5246,2.0,1178981711 +624,5247,4.0,1164622121 +624,5248,1.5,1178981709 +624,5250,4.0,1019125920 +624,5293,3.0,1083488090 +624,5299,4.0,1033033106 +624,5303,3.0,1019125877 +624,5308,4.0,1019125869 +624,5309,2.0,1019125869 +624,5334,1.0,1019125851 +624,5339,4.0,1019127244 +624,5349,4.0,1026288001 +624,5356,0.5,1261243271 +624,5378,3.0,1119469511 +624,5382,4.0,1021307899 +624,5388,3.5,1082885201 +624,5400,3.0,1030693516 +624,5401,1.0,1178982196 +624,5414,2.0,1027666620 +624,5418,3.0,1042827236 +624,5419,1.5,1072963561 +624,5420,2.0,1084800144 +624,5438,2.0,1028110227 +624,5445,4.0,1026715888 +624,5449,3.5,1084272507 +624,5459,2.0,1028529803 +624,5462,2.0,1071155500 +624,5463,2.0,1171203561 +624,5464,4.0,1034790010 +624,5478,2.5,1089029593 +624,5479,2.0,1086082505 +624,5481,4.0,1028185558 +624,5490,5.0,1028110147 +624,5500,4.0,1028110163 +624,5502,2.5,1076235449 +624,5507,1.0,1158491351 +624,5522,5.0,1029240597 +624,5523,2.0,1087571213 +624,5528,4.0,1143893757 +624,5530,2.5,1085130850 +624,5540,4.0,1029240574 +624,5541,4.0,1029240574 +624,5548,3.0,1029240574 +624,5553,3.0,1029240574 +624,5573,2.5,1106409885 +624,5582,2.0,1031132337 +624,5621,2.5,1091351409 +624,5630,3.0,1087807823 +624,5636,3.0,1110041723 +624,5669,4.0,1178981006 +624,5673,1.5,1123436800 +624,5700,0.5,1074801350 +624,5752,3.0,1074715109 +624,5779,2.0,1082282242 +624,5785,4.0,1093768355 +624,5803,2.0,1087149734 +624,5872,2.5,1173560547 +624,5881,1.5,1106484042 +624,5900,1.5,1127157797 +624,5915,5.0,1087150869 +624,5942,2.5,1268569904 +624,5944,3.0,1092829876 +624,5945,3.5,1094375921 +624,5952,4.0,1042547681 +624,5954,4.0,1105617299 +624,5956,4.5,1055107857 +624,5957,2.5,1110109045 +624,5989,4.0,1071155545 +624,6016,5.0,1313254231 +624,6039,3.0,1041963284 +624,6059,3.5,1100169060 +624,6104,4.0,1168120566 +624,6143,2.0,1143894768 +624,6157,1.5,1178982323 +624,6188,3.5,1098963762 +624,6212,1.5,1104245150 +624,6218,2.0,1059305279 +624,6249,2.0,1086005209 +624,6281,3.0,1104484674 +624,6296,4.0,1111752338 +624,6302,1.0,1054455977 +624,6314,2.0,1051433057 +624,6315,2.0,1049817300 +624,6331,3.5,1113580318 +624,6333,4.0,1053503950 +624,6348,2.0,1054457691 +624,6349,2.0,1054457689 +624,6365,1.5,1206302799 +624,6373,3.0,1104918778 +624,6375,5.0,1071935208 +624,6377,3.5,1104061834 +624,6378,3.0,1066204686 +624,6410,3.0,1054457536 +624,6424,1.0,1054457487 +624,6427,4.0,1082282303 +624,6428,3.0,1054457422 +624,6476,3.0,1064154633 +624,6503,1.0,1105009312 +624,6514,0.5,1262200449 +624,6534,1.0,1079084740 +624,6537,1.5,1175972047 +624,6539,3.5,1066291868 +624,6541,1.5,1143894028 +624,6550,2.0,1098963715 +624,6564,1.5,1107689602 +624,6582,2.0,1190622002 +624,6595,1.5,1063909065 +624,6618,4.0,1166303478 +624,6645,2.5,1064154408 +624,6658,3.5,1064154385 +624,6659,2.5,1064154371 +624,6662,4.0,1064154376 +624,6663,3.0,1064154379 +624,6708,3.5,1121590454 +624,6711,3.5,1117446460 +624,6760,3.0,1405887477 +624,6764,2.5,1121515014 +624,6798,3.0,1064153909 +624,6807,3.0,1066069801 +624,6812,2.5,1066069810 +624,6814,3.0,1066069812 +624,6862,3.5,1065030178 +624,6863,4.0,1123436756 +624,6874,4.0,1067427681 +624,6888,1.5,1124010443 +624,6893,4.5,1066069477 +624,6936,3.5,1388070781 +624,6944,3.5,1074424277 +624,6947,3.0,1113128608 +624,6957,4.0,1229376515 +624,6979,3.0,1074423739 +624,6993,4.0,1074420683 +624,6996,1.5,1074423673 +624,7000,2.0,1074423579 +624,7007,3.5,1074423573 +624,7016,1.0,1178980613 +624,7036,2.5,1074423460 +624,7046,3.0,1074423410 +624,7076,4.0,1074423312 +624,7084,3.0,1143894736 +624,7091,4.5,1074423252 +624,7101,3.0,1074423259 +624,7102,2.5,1074423256 +624,7104,2.0,1074423194 +624,7132,5.0,1143894362 +624,7137,4.0,1157300800 +624,7143,4.0,1111924609 +624,7150,3.5,1125857591 +624,7153,4.5,1074121330 +624,7173,2.5,1137926409 +624,7245,1.0,1263060377 +624,7247,5.0,1074422250 +624,7257,2.0,1119778206 +624,7258,1.5,1328987046 +624,7319,3.0,1145127030 +624,7325,3.0,1137926432 +624,7372,3.0,1082793500 +624,7373,3.0,1359988244 +624,7438,3.5,1083742391 +624,7454,2.0,1084951203 +624,7458,3.0,1143893844 +624,7569,3.0,1173560543 +624,7570,2.5,1173560573 +624,7573,2.5,1173560570 +624,7706,4.5,1097752197 +624,7757,4.0,1168120709 +624,7894,4.5,1087722064 +624,7895,3.5,1358694176 +624,8136,0.5,1262267722 +624,8137,0.5,1221415770 +624,8138,0.5,1101557729 +624,8169,2.5,1087571812 +624,8290,0.5,1087571692 +624,8361,2.0,1086005141 +624,8376,3.0,1227300647 +624,8387,1.5,1087571564 +624,8447,1.0,1087150729 +624,8464,3.5,1122228632 +624,8493,3.0,1087150615 +624,8526,1.5,1127643384 +624,8528,4.0,1139138166 +624,8529,3.0,1140952575 +624,8542,5.0,1087571380 +624,8596,3.0,1088862829 +624,8614,2.0,1088862670 +624,8622,3.5,1111503792 +624,8623,3.5,1143894336 +624,8633,3.0,1088862483 +624,8636,5.0,1089029480 +624,8641,4.0,1103897903 +624,8644,3.0,1154957003 +624,8665,3.5,1091273400 +624,8743,2.5,1091720265 +624,8781,3.5,1103897760 +624,8784,3.5,1144263537 +624,8798,3.0,1151348983 +624,8807,3.0,1289220292 +624,8865,3.5,1095688150 +624,8874,4.0,1118566433 +624,8879,3.5,1099048295 +624,8880,2.0,1178981879 +624,8910,3.5,1146503208 +624,8917,4.5,1149412996 +624,8947,2.0,1163440367 +624,8949,4.0,1346003978 +624,8957,2.5,1224341045 +624,8961,4.5,1148466855 +624,8972,2.0,1210007903 +624,8983,4.0,1145042155 +624,8984,1.5,1154868241 +624,26133,3.5,1224340974 +624,26152,3.0,1136651990 +624,26386,3.5,1136651983 +624,26409,1.0,1263728519 +624,26464,3.0,1171203513 +624,26700,2.5,1182417809 +624,26750,3.0,1177618482 +624,26870,2.0,1136651997 +624,27478,3.5,1260727330 +624,27831,3.5,1182417918 +624,27904,3.5,1214056192 +624,30707,4.5,1425842922 +624,30793,3.0,1293386484 +624,30810,3.0,1151348999 +624,30812,4.0,1145298010 +624,30825,2.5,1183206154 +624,31000,2.5,1104245514 +624,32019,2.0,1152437420 +624,32031,3.5,1154202643 +624,32291,2.5,1234381331 +624,32587,4.0,1120075344 +624,33004,3.0,1149412972 +624,33166,4.0,1205147908 +624,33493,3.5,1119469509 +624,33615,4.0,1230326215 +624,33679,2.0,1168196708 +624,33794,3.5,1119106052 +624,33830,2.0,1261909117 +624,34018,3.0,1171203494 +624,34048,3.0,1164491787 +624,34150,2.0,1160317577 +624,34162,4.0,1159096044 +624,34520,2.0,1162131898 +624,34542,3.5,1239464894 +624,35836,4.0,1148466824 +624,36401,3.0,1332087753 +624,36708,4.5,1160317629 +624,37211,3.0,1171203485 +624,37386,1.0,1176028700 +624,37727,2.0,1312122143 +624,38038,3.5,1293908134 +624,38061,4.5,1205700017 +624,39183,3.0,1171748674 +624,39444,3.0,1184426926 +624,40278,3.5,1169333691 +624,41566,3.5,1261691062 +624,41569,4.0,1148466801 +624,43558,2.0,1338652131 +624,43871,1.5,1166824406 +624,44191,3.0,1183289054 +624,44665,3.5,1144951458 +624,45062,2.0,1232228520 +624,45186,2.5,1146931490 +624,45221,2.0,1269179392 +624,45431,3.0,1261691072 +624,45447,2.0,1185655622 +624,45499,3.5,1149709081 +624,45517,3.0,1215636437 +624,45666,2.0,1200170816 +624,45722,2.5,1179061367 +624,45728,5.0,1158950611 +624,46062,3.5,1223742855 +624,46530,2.5,1189284657 +624,46578,4.0,1406660764 +624,46970,2.0,1192085518 +624,46972,3.0,1199735040 +624,46974,2.0,1252187976 +624,47044,1.5,1180296227 +624,47640,2.5,1191104574 +624,47810,1.0,1180460260 +624,47950,3.0,1205597681 +624,48262,4.0,1205154152 +624,48322,4.0,1206877207 +624,48385,4.0,1199222485 +624,48516,4.0,1192374218 +624,48783,4.0,1202674166 +624,49220,2.5,1205610364 +624,49272,4.5,1168196899 +624,49278,3.0,1202594209 +624,49530,3.0,1205618429 +624,49649,1.0,1192302220 +624,49688,4.0,1226505232 +624,49822,3.0,1205014676 +624,50005,2.5,1205959513 +624,50064,3.0,1218827311 +624,50068,4.0,1172235963 +624,50601,1.5,1231536791 +624,50792,2.5,1211142711 +624,50872,3.0,1325961893 +624,51255,4.5,1177618474 +624,51412,1.0,1199121390 +624,51540,4.0,1234700472 +624,51662,3.0,1196096451 +624,52245,3.0,1209924436 +624,52722,3.0,1178305601 +624,52730,2.5,1232207756 +624,52975,3.5,1183072734 +624,53125,2.0,1179784344 +624,53322,3.0,1218574183 +624,53464,1.5,1200155399 +624,53996,2.0,1200758109 +624,54272,4.0,1198524288 +624,54286,3.5,1198524298 +624,54503,3.5,1227390691 +624,54997,4.0,1209924449 +624,55250,2.0,1292688589 +624,55294,2.5,1311527441 +624,55765,4.0,1223742872 +624,55768,3.5,1234617873 +624,55830,3.0,1261996702 +624,55995,2.0,1215875639 +624,56174,3.0,1232207806 +624,56251,3.0,1262543180 +624,57368,2.0,1229198927 +624,57640,3.0,1374940238 +624,57669,4.0,1261909103 +624,58025,1.5,1262258700 +624,58156,3.0,1262517028 +624,58351,4.0,1408799638 +624,58559,3.5,1232881338 +624,58803,4.0,1262337884 +624,59315,4.0,1274020860 +624,59369,2.5,1476562414 +624,59615,2.0,1230847506 +624,59784,3.0,1248638757 +624,59900,2.0,1262200436 +624,60040,2.5,1243238059 +624,60069,2.5,1293908110 +624,60072,2.0,1242564720 +624,60074,2.0,1252866333 +624,60126,3.0,1257528802 +624,60161,3.0,1262543188 +624,60487,3.0,1224340978 +624,60756,3.0,1262290001 +624,60950,3.0,1290872729 +624,61123,2.0,1223742842 +624,61132,3.5,1254335419 +624,61289,2.5,1309461632 +624,61352,3.5,1314445026 +624,62434,4.5,1226505092 +624,62849,3.0,1262433902 +624,62956,3.0,1262543184 +624,62999,3.5,1261909136 +624,63113,3.5,1231681819 +624,63131,3.0,1261909094 +624,63393,1.0,1230396701 +624,64285,3.5,1293908132 +624,64839,4.0,1290877044 +624,64969,3.5,1261258589 +624,64983,3.5,1264947081 +624,65133,3.0,1231537081 +624,65135,3.0,1232207748 +624,66297,3.0,1262543185 +624,66785,4.0,1291482540 +624,67255,4.0,1356808249 +624,67361,2.0,1317148553 +624,67408,3.5,1278848449 +624,67695,2.0,1294072975 +624,67734,3.5,1311517164 +624,68157,3.5,1279364152 +624,68319,2.5,1288018890 +624,68358,3.5,1259155084 +624,68554,2.0,1322404945 +624,68659,3.0,1297715970 +624,68793,3.0,1259155095 +624,68954,3.0,1323022889 +624,69069,3.0,1312122155 +624,69118,1.5,1314616111 +624,69122,3.0,1285449098 +624,69306,2.5,1291738010 +624,69481,4.0,1364559000 +624,69526,1.0,1289837015 +624,69604,3.0,1256322001 +624,69640,3.0,1289145810 +624,69757,2.5,1325520450 +624,69784,3.0,1276341252 +624,69951,3.5,1314564585 +624,70286,3.5,1288640726 +624,70545,2.0,1309892195 +624,70565,2.5,1291653638 +624,70984,3.5,1317496659 +624,71033,4.0,1324744291 +624,71211,3.0,1292088078 +624,71248,3.0,1324315002 +624,71464,3.0,1313949654 +624,71466,4.0,1312658574 +624,71518,3.0,1328551831 +624,71520,3.0,1284236888 +624,71530,1.5,1319885998 +624,71535,4.0,1290891795 +624,71732,1.5,1318679257 +624,71823,2.5,1328962391 +624,72011,3.0,1321712791 +624,72224,1.0,1311102175 +624,72378,1.5,1291399456 +624,72405,2.0,1444058854 +624,72694,2.0,1315003118 +624,72998,3.0,1311011549 +624,73015,2.0,1328979270 +624,73017,4.0,1310216014 +624,73266,3.0,1309892157 +624,73321,3.5,1317496647 +624,73323,3.5,1356808318 +624,73386,1.5,1312049946 +624,74458,4.0,1311444922 +624,74510,3.5,1356808252 +624,74532,1.5,1306009221 +624,74789,3.0,1293886761 +624,74795,3.0,1312638561 +624,74916,2.0,1328470996 +624,75803,1.5,1329074250 +624,75805,2.0,1328471152 +624,75816,2.0,1340478819 +624,76077,2.0,1306781262 +624,76175,1.0,1308418362 +624,76251,4.0,1305405174 +624,77191,2.5,1309605307 +624,77421,2.5,1320489018 +624,77561,3.0,1308502687 +624,77866,2.0,1311505084 +624,78034,3.5,1320594057 +624,78041,1.5,1310215995 +624,78105,1.0,1310497290 +624,78116,3.5,1313949876 +624,78467,2.0,1315467254 +624,78469,2.5,1310153678 +624,78499,5.0,1293654824 +624,78893,1.0,1315753825 +624,79132,4.0,1316888022 +624,79134,3.5,1327255410 +624,79185,1.0,1314458431 +624,79224,1.0,1321202997 +624,79242,3.0,1328375812 +624,79259,2.5,1345837301 +624,79293,1.5,1310238823 +624,79428,1.5,1311505062 +624,79590,2.5,1346527752 +624,79592,2.0,1315154579 +624,79702,3.0,1310228058 +624,79879,3.0,1345980025 +624,79946,3.5,1310066785 +624,80126,2.5,1323638811 +624,80219,4.0,1322927917 +624,80241,2.5,1322333467 +624,80463,4.0,1316888101 +624,80489,4.0,1318095629 +624,80549,2.0,1321720454 +624,80590,2.0,1322329754 +624,80693,4.5,1329575519 +624,80727,2.5,1325420433 +624,80864,3.5,1335116204 +624,81156,4.0,1306762590 +624,81537,1.5,1322942446 +624,81564,3.5,1324744251 +624,81591,3.5,1325533270 +624,81782,3.0,1302714531 +624,81784,2.5,1325367521 +624,81845,4.5,1328370855 +624,81932,4.0,1323097089 +624,81949,3.0,1314564596 +624,82093,1.5,1328371086 +624,82095,0.5,1322404967 +624,82202,1.5,1325083670 +624,82378,2.5,1384621717 +624,82459,4.0,1327257756 +624,82461,2.0,1314387349 +624,82499,2.5,1338743542 +624,82527,4.0,1325083025 +624,82852,2.0,1324218176 +624,82854,1.5,1327259661 +624,83177,2.0,1333998886 +624,83349,2.0,1329060255 +624,83374,3.5,1323114261 +624,83613,1.5,1348347405 +624,83910,2.5,1325096888 +624,84152,3.0,1329590016 +624,84374,2.0,1346521626 +624,84392,3.0,1336227603 +624,84615,2.5,1335702885 +624,84696,4.0,1316201594 +624,84772,3.0,1328542457 +624,84944,4.0,1329575435 +624,84950,2.5,1338824816 +624,84954,3.5,1332595368 +624,85022,3.0,1339331562 +624,85025,2.0,1338657549 +624,85056,2.5,1322927898 +624,85131,1.0,1335706779 +624,85367,2.0,1334515088 +624,85399,1.0,1338652134 +624,85401,2.0,1335719753 +624,85510,2.0,1340560807 +624,85774,4.5,1338824711 +624,85881,3.5,1352038070 +624,86028,2.0,1332090711 +624,86142,3.0,1342380490 +624,86190,3.5,1338720202 +624,86293,2.0,1342280329 +624,86298,2.0,1341165882 +624,86332,2.5,1339338836 +624,86548,3.5,1340537139 +624,86593,2.5,1349117163 +624,86833,4.0,1342352504 +624,86880,1.5,1333998916 +624,86882,3.5,1358793434 +624,86911,3.0,1306601361 +624,87222,3.0,1339331309 +624,87232,4.0,1347303112 +624,87298,3.0,1342211700 +624,87306,3.0,1341321041 +624,87430,1.5,1308418333 +624,87444,1.5,1316261764 +624,87483,2.0,1346610995 +624,87485,1.5,1341142100 +624,87520,0.5,1309285921 +624,87529,1.5,1338827195 +624,87785,2.0,1316371475 +624,87869,3.0,1356510643 +624,87876,3.0,1340478836 +624,88140,3.0,1341142078 +624,88163,3.5,1358608911 +624,88356,2.0,1341260290 +624,88405,2.5,1348167893 +624,88672,3.0,1403449194 +624,88744,2.5,1351976991 +624,88785,2.0,1348777053 +624,88812,2.5,1340537120 +624,89087,2.0,1350761819 +624,89305,4.0,1472497292 +624,89343,3.0,1437765410 +624,89388,1.5,1355602518 +624,89427,1.5,1354367391 +624,89470,4.0,1318450117 +624,89492,4.0,1355584097 +624,89745,3.5,1368209995 +624,89840,1.5,1350834941 +624,89904,4.0,1367695291 +624,90249,2.5,1348917778 +624,90343,2.5,1345574423 +624,90374,3.0,1362238078 +624,90439,3.0,1368990175 +624,90522,2.0,1356205855 +624,90717,3.0,1357041435 +624,90719,2.5,1364138940 +624,90738,1.5,1373743906 +624,90746,3.5,1359491177 +624,90866,4.0,1359284029 +624,90890,2.0,1358614782 +624,91077,4.5,1359307126 +624,91094,3.5,1357071568 +624,91126,3.5,1357403679 +624,91128,3.0,1356880002 +624,91273,1.5,1347100087 +624,91323,1.5,1357893762 +624,91325,2.0,1328370503 +624,91470,1.5,1412446645 +624,91529,3.5,1342728332 +624,91535,2.0,1377951757 +624,91542,2.5,1359988215 +624,91628,2.0,1394377404 +624,91630,2.5,1359301585 +624,91653,4.0,1369680698 +624,91658,4.0,1356194044 +624,91688,1.5,1373227853 +624,91842,2.0,1366485592 +624,91873,1.5,1371302167 +624,91935,2.5,1355595506 +624,91976,1.0,1364052723 +624,92008,2.5,1356729800 +624,92048,2.5,1348315049 +624,92198,2.0,1350245861 +624,92264,1.0,1367060712 +624,92420,3.5,1364590802 +624,92439,2.0,1351539673 +624,92507,2.5,1359218818 +624,92665,2.5,1382815064 +624,93242,1.5,1371925097 +624,93270,1.5,1359231612 +624,93287,3.0,1357029139 +624,93326,2.0,1362231181 +624,93363,2.0,1369596924 +624,93510,4.5,1334514953 +624,93563,1.5,1367780373 +624,93766,1.5,1378653084 +624,93980,1.5,1387886171 +624,93982,2.0,1369660878 +624,94011,1.5,1433704205 +624,94018,1.0,1368282328 +624,94070,2.5,1361039399 +624,94266,2.5,1372006763 +624,94323,2.0,1369655625 +624,94478,2.0,1377963360 +624,94494,2.5,1397303036 +624,94672,2.0,1347105028 +624,94677,3.5,1359992764 +624,94777,2.5,1338145121 +624,94780,2.0,1371983752 +624,94833,3.5,1361119355 +624,94864,2.5,1374940194 +624,94896,3.0,1400437446 +624,94919,2.5,1346065679 +624,94953,2.0,1364126046 +624,94959,3.5,1367699194 +624,95067,2.5,1359200781 +624,95105,2.5,1374356300 +624,95167,3.0,1370110263 +624,95201,3.0,1375631165 +624,95207,2.0,1377289915 +624,95307,2.0,1371309742 +624,95441,4.0,1353855417 +624,95508,3.5,1364059114 +624,95510,3.5,1342380479 +624,95583,2.5,1383479112 +624,95720,2.0,1381672365 +624,95744,2.5,1374873073 +624,95875,1.5,1375631183 +624,96079,4.0,1361711769 +624,96110,4.0,1348315017 +624,96114,2.0,1377516263 +624,96281,3.0,1378584502 +624,96417,2.0,1374399916 +624,96448,1.5,1373199417 +624,96530,2.5,1392570740 +624,96588,3.0,1472411722 +624,96616,1.5,1376847471 +624,96726,1.5,1378554396 +624,96737,2.0,1382793786 +624,96861,1.0,1348777036 +624,97225,2.5,1381666482 +624,97304,4.0,1388597590 +624,97328,3.0,1353855482 +624,97470,1.5,1433704214 +624,97742,1.5,1388835576 +624,97752,3.0,1392467584 +624,97836,2.5,1387055788 +624,97858,2.0,1387894354 +624,97860,2.5,1384612498 +624,97870,4.0,1399232826 +624,97913,3.5,1394385374 +624,97921,4.0,1388249677 +624,97923,3.5,1388565429 +624,97936,3.0,1387643304 +624,97938,3.0,1386269567 +624,98154,3.5,1399742901 +624,98160,1.5,1398082810 +624,98175,1.5,1384016631 +624,98230,3.5,1377355019 +624,98243,2.5,1384026816 +624,98279,3.0,1371921150 +624,98296,1.5,1367270204 +624,98585,3.0,1398539219 +624,98809,2.5,1451566774 +624,98836,2.0,1393782241 +624,98908,1.5,1369655614 +624,98961,4.0,1393149574 +624,99005,1.5,1396094584 +624,99106,2.5,1391960604 +624,99112,2.5,1377355043 +624,99114,3.0,1356183614 +624,99117,2.0,1393156808 +624,99415,2.0,1395502530 +624,99574,3.0,1411853981 +624,99728,2.5,1391943738 +624,99846,3.0,1361017948 +624,99992,3.0,1374953846 +624,100226,1.5,1396794908 +624,100304,3.0,1391975427 +624,100326,2.5,1401914096 +624,100390,1.5,1394367924 +624,100487,2.0,1392480189 +624,100498,1.5,1395514136 +624,101025,2.5,1399469265 +624,101283,2.5,1394918217 +624,101360,1.5,1415532900 +624,101415,1.5,1377355598 +624,101529,2.0,1401540479 +624,101577,1.0,1399147624 +624,101612,2.0,1408818164 +624,101864,2.0,1400416461 +624,101884,1.5,1378633987 +624,101895,4.0,1409509515 +624,102033,3.0,1408300457 +624,102123,4.0,1401540496 +624,102125,3.0,1380312379 +624,102165,2.0,1396789784 +624,102278,2.0,1442492538 +624,102378,1.5,1412426313 +624,102407,3.5,1401128048 +624,102445,3.0,1380312400 +624,102481,3.0,1407579407 +624,102686,2.5,1386235249 +624,102720,2.5,1405112286 +624,102880,1.5,1401128019 +624,103042,2.5,1386235185 +624,103141,4.0,1401651916 +624,103221,2.5,1382796664 +624,103228,1.0,1373135820 +624,103235,3.5,1431811714 +624,103249,2.0,1371921120 +624,103253,2.5,1408991160 +624,103339,1.0,1408799647 +624,103341,4.0,1407011635 +624,103384,1.0,1406660742 +624,103502,1.5,1380569623 +624,103543,2.0,1406660751 +624,103596,1.5,1376739104 +624,103655,1.5,1412012574 +624,103755,2.5,1412018143 +624,103772,2.5,1409428197 +624,103819,3.0,1405881505 +624,103865,2.0,1442092243 +624,104076,1.5,1402162552 +624,104078,4.0,1439154367 +624,104129,2.0,1430057625 +624,104211,2.5,1409509528 +624,104218,1.5,1404662557 +624,104241,3.0,1408908578 +624,104245,2.5,1402155479 +624,104760,1.0,1419173382 +624,104841,4.0,1415470298 +624,104906,2.5,1408962245 +624,105037,2.0,1408809332 +624,105121,1.0,1415740266 +624,105197,4.5,1413740600 +624,105211,3.5,1412437686 +624,105213,2.5,1415645706 +624,105254,3.0,1411243546 +624,105351,1.5,1412012554 +624,105504,4.5,1410033778 +624,105755,1.5,1383863088 +624,105954,3.0,1420150263 +624,106062,4.0,1409392084 +624,106072,2.0,1414963234 +624,106330,2.0,1426362065 +624,106438,4.5,1418744545 +624,106491,2.0,1420388390 +624,106542,1.5,1446898911 +624,106782,4.5,1420909802 +624,106839,3.5,1422209104 +624,106883,1.5,1422125150 +624,106916,4.0,1419784104 +624,106918,3.0,1421520824 +624,106920,3.5,1423924867 +624,107141,4.0,1414261428 +624,107348,4.0,1387638835 +624,107702,1.5,1422808248 +624,107945,2.0,1442162036 +624,108156,2.0,1425237473 +624,108188,2.5,1419788002 +624,108601,2.0,1438624811 +624,108715,1.5,1445716817 +624,108729,2.0,1445199005 +624,108928,2.5,1422904330 +624,108932,4.0,1424032074 +624,108949,2.5,1433093709 +624,109042,2.0,1430765988 +624,109187,2.0,1431182418 +624,109191,1.5,1424020656 +624,109295,2.0,1405881635 +624,109317,2.5,1401128029 +624,109372,1.5,1426446817 +624,109374,3.5,1430051891 +624,109487,3.0,1446324494 +624,109576,1.5,1430758387 +624,109673,1.5,1430653744 +624,109853,2.0,1420392949 +624,109864,2.0,1429534829 +624,109895,3.0,1465151268 +624,110102,3.5,1426353299 +624,110127,2.0,1425142320 +624,110297,3.0,1422814063 +624,110553,2.5,1428076525 +624,110611,2.5,1438542786 +624,110655,2.5,1433082356 +624,110730,1.5,1432467245 +624,110771,2.0,1440358879 +624,110826,1.5,1434915641 +624,111113,3.5,1421005442 +624,111360,2.5,1442056298 +624,111362,3.0,1437851922 +624,111364,2.5,1434299815 +624,111617,2.0,1435505091 +624,111659,2.5,1431189563 +624,111663,1.5,1441024592 +624,111680,1.5,1446485804 +624,111743,3.5,1436040172 +624,111759,3.5,1436003724 +624,111781,2.0,1437765440 +624,111795,3.0,1437926422 +624,112138,4.0,1417546798 +624,112171,2.5,1440870535 +624,112183,3.5,1449501174 +624,112290,3.5,1444051599 +624,112303,1.5,1440358927 +624,112370,1.5,1433790679 +624,112460,2.5,1430048135 +624,112497,1.0,1439918833 +624,112552,4.5,1449351903 +624,112556,3.0,1445112193 +624,112623,3.0,1440358908 +624,112749,2.0,1444075104 +624,112788,1.5,1437939241 +624,112804,2.0,1454778777 +624,112818,2.0,1441481958 +624,112852,3.5,1417546776 +624,113186,3.0,1436022177 +624,113225,3.0,1417546920 +624,113378,2.0,1441562929 +624,113416,1.5,1461440907 +624,113453,2.5,1443263800 +624,113532,3.5,1472584520 +624,114028,4.0,1446293357 +624,114060,3.0,1447603253 +624,114074,3.0,1441569356 +624,114180,1.0,1445688797 +624,114601,2.0,1445711660 +624,114662,4.0,1450196550 +624,114762,1.5,1468076788 +624,114818,2.5,1461411036 +624,114925,2.0,1463239504 +624,114935,4.0,1460142912 +624,115149,3.0,1459265693 +624,115151,2.0,1433082348 +624,115170,2.5,1445682180 +624,115210,2.5,1444484278 +624,115216,3.0,1462122852 +624,115231,4.0,1447529477 +624,115617,4.0,1454251411 +624,115680,3.5,1422882861 +624,115713,3.0,1450298411 +624,116207,1.5,1461356501 +624,116413,3.0,1437769085 +624,116419,1.5,1421591835 +624,116799,2.5,1451567453 +624,116849,2.5,1448816824 +624,116887,2.0,1454184194 +624,116977,1.5,1447594766 +624,116985,1.5,1435998508 +624,117107,2.5,1448310216 +624,117176,3.5,1449334366 +624,117511,3.0,1441225425 +624,117529,2.5,1462209122 +624,117590,2.0,1446908340 +624,117895,1.0,1476616373 +624,118248,1.5,1466434602 +624,118326,2.0,1436700869 +624,118354,3.0,1453137366 +624,118702,2.5,1448739411 +624,118814,2.0,1441045203 +624,118900,3.0,1449951679 +624,118924,3.0,1455983626 +624,118985,3.5,1447864532 +624,118997,2.5,1449604930 +624,119068,2.0,1445682187 +624,119141,3.5,1448050198 +624,119145,3.5,1456167046 +624,119155,2.5,1453059806 +624,119655,1.0,1459186712 +624,120466,2.0,1453584364 +624,120635,1.0,1449576688 +624,120637,2.0,1451579985 +624,120783,2.5,1461945772 +624,120799,2.0,1435700222 +624,122490,1.5,1474301155 +624,122882,3.0,1460909750 +624,122886,3.5,1450464170 +624,122892,3.0,1454948403 +624,122900,3.5,1473446107 +624,122902,1.0,1472294219 +624,122932,2.0,1463332542 +624,123947,3.0,1451681053 +624,124859,2.0,1448298599 +624,125916,0.5,1448552452 +624,126420,1.5,1447856998 +624,127096,2.5,1448976148 +624,127136,2.5,1467660810 +624,127194,2.0,1472404409 +624,127198,2.5,1471463552 +624,127204,3.0,1465156246 +624,127319,1.5,1457787868 +624,128520,3.0,1450210315 +624,128592,1.0,1459258497 +624,129250,0.5,1447868930 +624,129354,3.0,1451771581 +624,129428,2.5,1459192248 +624,129657,1.0,1462213497 +624,129659,3.5,1473508483 +624,129737,2.0,1455989380 +624,129937,2.0,1458423103 +624,130083,2.0,1465066042 +624,130450,1.5,1474979005 +624,131013,2.0,1456147797 +624,131714,1.5,1460395876 +624,132046,2.0,1460208835 +624,132157,1.5,1459517655 +624,132333,5.0,1436031040 +624,132462,1.0,1454257367 +624,132488,2.0,1448121361 +624,132618,1.5,1475668755 +624,132796,1.5,1461954152 +624,133281,2.0,1467568187 +624,133365,2.0,1465066061 +624,133377,1.5,1474972054 +624,133419,3.0,1460403925 +624,133545,1.0,1459512439 +624,133782,2.0,1467482303 +624,133798,1.5,1468076797 +624,134130,4.0,1475668748 +624,134158,1.5,1459596384 +624,134368,3.0,1471809278 +624,134393,4.0,1468095409 +624,134859,3.5,1467458600 +624,134881,4.0,1472153260 +624,135137,2.5,1463242723 +624,135518,2.0,1470249128 +624,135536,3.0,1470416022 +624,135569,2.5,1469050657 +624,135861,4.0,1466434592 +624,135887,2.5,1473969899 +624,136020,3.0,1456147804 +624,136305,1.0,1443283700 +624,136598,1.5,1472294254 +624,136654,1.5,1459164933 +624,136666,1.0,1462023798 +624,136800,1.5,1462127826 +624,136816,2.5,1451771590 +624,136864,2.0,1458847358 +624,138036,2.0,1474657854 +624,138208,3.5,1443733663 +624,138546,1.5,1450297616 +624,139415,3.0,1467397459 +624,139642,3.0,1465727277 +624,139915,2.0,1468319799 +624,140237,2.0,1472294240 +624,140725,3.0,1462187665 +624,141422,2.5,1475668765 +624,142448,3.0,1472492996 +624,142536,2.0,1473962172 +624,142997,2.5,1476465026 +624,143255,1.5,1474309547 +624,143257,2.5,1461356507 +624,143410,2.0,1474224802 +624,143472,1.5,1459171686 +624,144714,1.5,1474972061 +624,145150,3.0,1476465033 +624,146688,2.0,1472820632 +624,149590,2.5,1464975088 +624,149612,2.0,1472845892 +624,150401,3.0,1471897318 +624,157407,1.5,1476469445 +624,160440,1.5,1470510722 +624,161830,1.0,1472493010 +624,161918,1.5,1472929873 +625,337,4.0,1452848472 +625,509,3.5,1452848603 +625,527,5.0,1452849310 +625,1197,4.0,1452849332 +625,1544,4.0,1452848690 +625,1682,4.5,1452828156 +625,1721,3.5,1452828678 +625,1873,3.5,1452828466 +625,2710,1.5,1452828184 +625,3000,4.5,1452849063 +625,3160,4.0,1452848900 +625,3785,0.5,1452849199 +625,4638,3.5,1452828343 +625,4816,1.5,1452850416 +625,4878,4.0,1452848448 +625,4973,4.0,1452828160 +625,4995,5.0,1452828156 +625,5617,4.0,1452852354 +625,5618,4.0,1452828193 +625,5989,5.0,1452848468 +625,8368,4.0,1452848656 +625,33004,4.0,1452850907 +625,41566,4.0,1452849727 +625,44191,5.0,1452848602 +625,48774,4.0,1452849099 +625,50872,4.0,1452848984 +625,63082,4.0,1452848899 +625,66097,4.5,1452852786 +625,68358,4.5,1452849101 +625,68954,4.0,1452848731 +625,69529,4.0,1452849692 +625,69844,4.0,1452851762 +625,71462,4.5,1452850059 +625,72641,4.5,1452850057 +625,72998,4.0,1452848733 +625,73017,4.5,1452849705 +625,74458,4.5,1452849282 +625,79132,5.0,1452848437 +625,81562,4.0,1452852963 +625,81591,5.0,1452850861 +625,85414,4.5,1452852046 +625,85774,5.0,1452849976 +625,88140,4.5,1452852818 +625,88744,4.0,1452852820 +625,88810,5.0,1452849344 +625,89864,4.0,1452853276 +625,91500,5.0,1452851891 +625,91542,4.5,1452849690 +625,96610,4.5,1452852220 +625,96821,5.0,1452849430 +625,97938,4.5,1452853018 +625,98491,4.5,1452849344 +625,99114,4.0,1452849662 +625,102445,4.0,1452852959 +625,102993,4.5,1452850054 +625,104841,4.0,1452852050 +625,106642,4.0,1452849332 +625,109374,4.5,1452850935 +625,109487,5.0,1452849202 +625,110102,4.0,1452853116 +625,112552,5.0,1452850052 +625,115617,4.5,1452849308 +625,115713,4.5,1452858146 +625,116797,5.0,1452849308 +625,117895,4.0,1452858189 +625,121231,2.5,1452858177 +625,134853,4.5,1452828036 +626,217,2.0,974769992 +626,223,4.0,974768972 +626,247,4.0,974769992 +626,260,3.0,974770072 +626,366,4.0,974769880 +626,377,5.0,974777959 +626,380,5.0,974778132 +626,593,4.0,974769992 +626,785,4.0,974769294 +626,799,3.0,974769880 +626,858,5.0,974770048 +626,891,2.0,974778174 +626,928,4.0,974769992 +626,968,4.0,974769446 +626,1036,4.0,974770141 +626,1073,5.0,974778019 +626,1197,4.0,974770141 +626,1198,4.0,974768616 +626,1210,4.0,974768558 +626,1258,4.0,974769824 +626,1407,5.0,974769880 +626,1513,5.0,974769544 +626,1556,4.0,974777959 +626,1623,2.0,974769655 +626,1682,5.0,974778511 +626,1833,3.0,974768558 +626,1911,2.0,974769117 +626,1916,5.0,974778396 +626,1968,5.0,974778372 +626,1982,5.0,974778174 +626,1983,4.0,974778174 +626,1984,1.0,974778174 +626,1985,3.0,974778174 +626,1986,3.0,974778174 +626,1994,4.0,974769824 +626,2028,4.0,974768616 +626,2107,4.0,974778174 +626,2186,5.0,974769992 +626,2188,3.0,974768839 +626,2194,4.0,974770072 +626,2288,3.0,974769824 +626,2355,2.0,974768972 +626,2376,4.0,974768581 +626,2394,3.0,974769510 +626,2395,2.0,974769544 +626,2396,4.0,974769544 +626,2428,4.0,974769159 +626,2433,2.0,974768972 +626,2455,3.0,974769824 +626,2485,4.0,974769544 +626,2490,4.0,974769476 +626,2491,3.0,974769585 +626,2502,4.0,974769446 +626,2546,2.0,974769003 +626,2572,3.0,974768839 +626,2574,3.0,974769446 +626,2580,5.0,974769229 +626,2581,4.0,974769446 +626,2599,5.0,974769159 +626,2600,2.0,974769672 +626,2605,4.0,974769159 +626,2606,2.0,974769265 +626,2676,3.0,974769265 +626,2683,3.0,974768877 +626,2688,4.0,974769196 +626,2694,4.0,974768907 +626,2699,3.0,974768877 +626,2700,4.0,974769585 +626,2701,3.0,974769655 +626,2706,4.0,974768839 +626,2707,3.0,974768877 +626,2710,3.0,974768907 +626,2712,5.0,974769159 +626,2713,2.0,974769294 +626,2716,4.0,974769229 +626,2718,2.0,974769117 +626,2719,4.0,974769229 +626,2720,2.0,974769265 +626,2722,3.0,974769003 +626,2723,1.0,974769446 +626,2724,3.0,974769544 +626,2739,5.0,974778476 +626,2759,3.0,974769003 +626,2761,4.0,974769265 +626,2762,5.0,974769585 +626,2770,5.0,974768907 +626,2806,4.0,974769621 +626,2840,2.0,974769585 +626,2841,4.0,974769585 +626,2858,5.0,974768779 +626,2881,3.0,974769117 +626,2888,1.0,974769117 +626,2906,2.0,974769510 +626,2907,1.0,974769621 +626,2908,4.0,974768907 +626,2947,5.0,974770185 +626,2959,4.0,974769196 +626,2976,2.0,974768972 +626,2987,4.0,974769655 +626,2995,2.0,974769229 +626,2997,4.0,974768877 +626,3005,2.0,974768907 +626,3016,4.0,974769003 +626,3051,3.0,974768877 +626,3081,4.0,974769585 +626,3113,3.0,974769159 +626,3114,4.0,974769621 +626,3160,4.0,974769294 +626,3174,4.0,974769294 +626,3175,5.0,974769196 +626,3176,3.0,974769621 +626,3203,4.0,974769003 +626,3238,3.0,974769159 +626,3273,5.0,974769544 +626,3285,4.0,974768877 +626,3298,3.0,974768907 +626,3300,3.0,974769476 +626,3325,2.0,974769446 +626,3354,2.0,974769369 +626,3358,5.0,974778268 +626,3408,5.0,974769159 +626,3409,3.0,974769196 +626,3451,5.0,974778341 +626,3499,5.0,974769880 +626,3510,4.0,974769196 +626,3511,3.0,974768616 +626,3534,4.0,974768839 +626,3564,3.0,974769196 +626,3565,5.0,974769655 +626,3578,2.0,974769229 +626,3593,1.0,974768877 +626,3615,3.0,974769117 +626,3623,1.0,974769369 +626,3717,2.0,974769229 +626,3745,3.0,974769621 +626,3752,3.0,974769369 +626,3753,4.0,974769476 +626,3754,4.0,974768839 +626,3793,5.0,974769672 +626,3798,5.0,974769655 +626,3930,4.0,974777872 +626,3946,2.0,974777825 +626,3948,4.0,974777825 +626,3968,2.0,974777499 +626,3969,5.0,974777499 +626,3973,3.0,974777499 +626,3975,3.0,974777499 +626,3977,4.0,974770048 +626,3979,4.0,974777463 +626,3981,2.0,974769510 +627,6,4.0,1201381361 +627,19,1.0,1201389367 +627,36,4.0,1201383202 +627,47,4.0,1201380839 +627,50,4.0,1201378634 +627,95,2.0,1201381346 +627,110,4.0,1201381096 +627,147,4.0,1201378051 +627,150,3.0,1201381127 +627,165,3.5,1201380769 +627,185,2.5,1201381250 +627,208,3.0,1201381484 +627,231,1.5,1201381241 +627,260,4.0,1201380786 +627,266,4.0,1201389538 +627,288,3.5,1201381398 +627,292,3.0,1201381104 +627,293,3.5,1201389394 +627,296,3.5,1201380894 +627,318,4.5,1201378628 +627,339,2.5,1201382052 +627,344,1.0,1201381026 +627,353,3.5,1201389862 +627,356,3.0,1201381067 +627,357,3.0,1201381184 +627,364,2.5,1201380972 +627,367,1.0,1201389458 +627,380,3.0,1201381049 +627,442,2.5,1201389469 +627,480,2.5,1201380753 +627,508,3.5,1201389413 +627,527,4.0,1201378616 +627,539,1.5,1201381160 +627,553,2.5,1201389716 +627,586,1.5,1201381286 +627,587,3.0,1201381480 +627,589,4.0,1201380869 +627,590,2.5,1201380792 +627,593,4.0,1201380949 +627,597,3.5,1201381004 +627,608,3.5,1201381961 +627,648,3.5,1201381033 +627,733,2.0,1201380954 +627,736,2.5,1201380911 +627,778,3.5,1201389753 +627,780,0.5,1201380890 +627,784,1.0,1201389692 +627,786,1.5,1201389309 +627,832,3.5,1201389878 +627,839,3.5,1201378012 +627,858,5.0,1201378600 +627,920,1.0,1201389563 +627,1036,3.5,1201389376 +627,1047,3.0,1201377822 +627,1214,4.0,1201381756 +627,1221,5.0,1201378867 +627,1240,3.5,1201381279 +627,1246,2.5,1201382017 +627,1258,3.5,1201381767 +627,1307,1.5,1201389286 +627,1370,3.5,1201389520 +627,1380,3.0,1201389499 +627,1387,3.0,1201381347 +627,1391,1.0,1201389667 +627,1393,3.0,1201381256 +627,1407,3.5,1201389407 +627,1485,1.0,1201389246 +627,1515,1.0,1201378082 +627,1527,3.0,1201381053 +627,1552,1.0,1201389454 +627,1573,1.0,1201381493 +627,1580,3.0,1201381100 +627,1586,4.0,1201389112 +627,1608,1.0,1201389326 +627,1617,4.0,1201380992 +627,1625,4.5,1201389319 +627,1641,1.0,1201381760 +627,1645,3.5,1201389785 +627,1682,3.5,1201381464 +627,1704,4.0,1201381180 +627,1721,3.5,1201381301 +627,1722,2.0,1201377772 +627,1779,2.5,1201377942 +627,1876,1.0,1201389720 +627,1917,0.5,1201381086 +627,1923,1.0,1201380981 +627,1997,4.0,1201389671 +627,2023,4.0,1201378868 +627,2028,1.5,1201380977 +627,2167,2.5,1201389793 +627,2231,4.0,1201389060 +627,2232,4.0,1201379633 +627,2329,4.0,1201381749 +627,2353,3.5,1201389339 +627,2387,3.5,1201378439 +627,2470,2.5,1201389514 +627,2542,4.0,1201389800 +627,2571,5.0,1201379937 +627,2640,4.0,1201382045 +627,2671,3.5,1201389610 +627,2683,1.5,1201381060 +627,2699,2.5,1201381904 +627,2706,2.5,1201381782 +627,2707,4.0,1201377891 +627,2710,4.0,1201381651 +627,2712,4.0,1201381970 +627,2762,4.0,1201381076 +627,2858,3.5,1201380749 +627,2959,4.0,1201379986 +627,3147,3.5,1201381326 +627,3249,3.0,1201378226 +627,3253,1.0,1201389707 +627,3408,3.0,1201381258 +627,3418,3.0,1201389236 +627,3484,3.0,1201378460 +627,3578,4.0,1201380897 +627,3717,2.5,1201389873 +627,3755,1.0,1201389803 +627,3977,1.5,1201382056 +627,3980,2.5,1201378201 +627,3994,1.5,1201381352 +627,3996,4.5,1201379908 +627,4011,3.5,1201381403 +627,4022,3.0,1201381134 +627,4025,2.0,1201389763 +627,4027,3.0,1201380874 +627,4034,4.0,1201380811 +627,4226,4.5,1201380771 +627,4246,3.0,1201382026 +627,4306,3.5,1201381253 +627,4447,3.5,1201389840 +627,4720,4.0,1201389675 +627,4848,3.5,1201389548 +627,4896,4.0,1201381043 +627,4963,4.0,1201380776 +627,4993,4.5,1201380737 +627,5010,2.0,1201389436 +627,5218,4.0,1201377835 +627,5349,2.5,1201381189 +627,5418,4.0,1201380996 +627,5464,2.5,1201389434 +627,5669,4.0,1201378976 +627,5816,4.0,1201381779 +627,5952,4.5,1201380823 +627,5989,3.5,1201380806 +627,6365,2.5,1201379948 +627,6373,3.5,1201389621 +627,6539,4.0,1201381233 +627,6863,2.0,1201381598 +627,6934,2.5,1201379951 +627,6942,4.0,1201389360 +627,6953,4.0,1201378803 +627,7153,2.5,1201379112 +627,7254,5.0,1201389705 +627,7361,3.5,1201381156 +627,7458,3.5,1201379644 +627,8132,4.5,1201378734 +627,8368,4.0,1201381357 +627,8464,3.0,1201382014 +627,8622,4.5,1201378994 +627,8798,4.0,1201382040 +627,8957,4.5,1201379541 +627,26462,3.0,1201378688 +627,30707,2.0,1201381412 +627,33004,1.5,1201389524 +627,33166,5.0,1201378921 +627,33794,4.0,1201377803 +627,34048,1.0,1201381981 +627,39183,4.0,1201389229 +627,39446,4.0,1201379544 +627,40815,4.0,1201381388 +627,43921,4.0,1201389164 +627,44191,4.5,1201379563 +627,45722,2.5,1201381208 +627,46723,4.0,1201389747 +627,47610,3.5,1201389711 +627,48385,3.5,1201380931 +627,48516,4.0,1201381176 +627,48774,3.0,1201381238 +627,48877,4.0,1201379546 +627,49272,4.0,1201379865 +627,49530,4.0,1201389661 +627,51255,4.0,1201390028 +627,51662,4.5,1201378218 +627,52952,4.0,1201381395 +627,53125,2.5,1201389483 +627,53322,3.5,1201389542 +627,53894,4.0,1201378548 +627,54272,4.0,1201380900 +627,55290,4.0,1201379056 +627,55577,4.0,1201379548 +627,55765,4.0,1201380193 +627,56174,4.0,1202932159 +627,57368,0.5,1202932028 +628,16,3.0,1357725723 +628,29,4.0,1357725108 +628,32,3.5,1357725317 +628,58,3.5,1357725016 +628,110,1.5,1413103944 +628,236,0.5,1357725019 +628,293,5.0,1357725619 +628,342,4.0,1357725010 +628,356,2.5,1413103901 +628,555,3.5,1357725727 +628,589,3.0,1413103741 +628,914,2.0,1357725084 +628,924,2.5,1357725368 +628,1093,2.5,1357725119 +628,1148,2.5,1413103753 +628,1175,4.0,1413103793 +628,1188,4.0,1357725147 +628,1197,1.5,1413103918 +628,1209,2.5,1413103802 +628,1262,3.0,1413103940 +628,1276,4.0,1357725035 +628,1321,2.5,1357725139 +628,1610,2.0,1413103823 +628,1653,4.5,1413103779 +628,1682,3.0,1413103760 +628,1747,2.5,1357725029 +628,1748,3.0,1413103798 +628,1884,2.5,1413103904 +628,1950,4.0,1413103827 +628,2020,2.5,1357725135 +628,2100,1.5,1357724999 +628,2145,2.0,1357725133 +628,2289,2.5,1357725150 +628,2692,3.5,1413103928 +628,2763,2.0,1357725006 +628,2951,3.0,1413103936 +628,3006,3.0,1357725093 +628,3039,3.0,1357725096 +628,3068,2.5,1413103858 +628,3198,4.0,1357725713 +628,3363,4.0,1357725143 +628,3507,2.5,1413103841 +628,3508,2.5,1413103846 +628,3551,3.5,1413103836 +628,3681,4.0,1413103787 +628,4011,3.0,1357725684 +628,4262,4.0,1357725716 +628,4327,2.5,1413103833 +628,4855,3.0,1413103813 +628,4878,4.0,1357725655 +628,4973,3.0,1413103911 +628,5618,3.0,1413103933 +628,5690,3.0,1413103713 +628,5782,5.0,1413103729 +628,5945,4.0,1357725515 +628,5954,3.0,1357725720 +628,6502,3.5,1357725406 +628,6658,1.5,1357725280 +628,6807,2.0,1413103907 +628,6870,2.5,1357725737 +628,7090,3.0,1413103756 +628,8014,2.0,1413103718 +628,8874,4.0,1413103852 +628,27773,5.0,1357725631 +628,27803,3.5,1413103848 +628,31410,4.0,1413103725 +628,44555,4.0,1357725616 +628,44694,3.5,1413103878 +628,48394,4.0,1357725644 +628,48872,4.0,1357725335 +628,52767,4.0,1357725386 +628,54997,1.5,1357725441 +628,55069,3.5,1357725444 +628,55118,3.0,1413103914 +628,57669,2.0,1413103925 +628,58303,3.0,1413103810 +628,61240,4.0,1413103766 +628,68237,3.0,1413103899 +628,69757,2.0,1357725270 +628,70286,3.5,1413103922 +628,71033,4.0,1357725669 +628,73344,4.5,1413103737 +628,77846,4.0,1357725313 +628,79132,3.5,1357725622 +628,86142,2.5,1357725326 +628,88129,2.5,1413103750 +628,97304,3.0,1357725693 +629,24,1.0,841414132 +629,34,2.0,841414132 +629,110,5.0,841414056 +629,150,3.0,841414022 +629,208,5.0,841414087 +629,224,3.0,841414227 +629,266,3.0,841414056 +629,293,1.0,841414108 +629,296,3.0,841414023 +629,340,1.0,841414175 +629,356,5.0,841414056 +629,364,2.0,841414206 +629,368,5.0,841414287 +629,380,4.0,841414175 +629,383,3.0,841414108 +629,440,3.0,841414272 +629,457,5.0,841414132 +629,458,5.0,841414272 +629,480,2.0,841414087 +629,491,5.0,841414227 +629,500,5.0,841414227 +629,527,3.0,841414056 +629,539,5.0,841414287 +629,555,3.0,841414206 +629,586,5.0,841414108 +629,587,5.0,841414132 +629,588,3.0,841414250 +629,589,1.0,841414087 +629,590,5.0,841414021 +629,593,5.0,841414206 +629,596,3.0,841414227 +629,597,4.0,841414272 +629,610,3.0,841414108 +629,786,1.0,841414316 +630,1,4.0,1443807734 +630,356,4.5,1443807710 +630,593,2.0,1443807719 +630,858,5.0,1443807838 +630,904,5.0,1443807884 +630,908,4.0,1443808019 +630,912,5.0,1443807875 +630,916,4.0,1443808383 +630,1207,4.5,1443808144 +630,1213,4.0,1443808037 +630,1221,5.0,1443807841 +630,1247,5.0,1443808345 +630,1252,4.5,1443808059 +630,1270,3.0,1443807707 +630,2571,3.0,1443807727 +630,2712,5.0,1443808790 +630,3052,3.5,1443808800 +630,3948,3.0,1443808804 +630,4262,3.5,1443808884 +630,4973,5.0,1443808746 +630,58559,3.0,1443808760 +630,79132,3.5,1443808768 +630,131724,4.5,1443807954 +631,47,5.0,897771523 +631,318,5.0,897771545 +631,953,4.0,897771576 +631,1183,4.0,897771039 +631,1196,5.0,897771523 +631,1198,4.0,897771576 +631,1387,5.0,897771576 +631,1407,5.0,897771039 +631,1414,2.0,897771069 +631,1422,3.0,897771245 +631,1438,4.0,897771245 +631,1479,2.0,897771245 +631,1485,3.0,897771175 +631,1488,3.0,897771271 +631,1515,2.0,897771271 +631,1584,4.0,897771131 +631,1586,3.0,897771157 +631,1597,4.0,897771175 +631,1608,3.0,897771131 +631,1614,3.0,897771069 +631,1616,3.0,897771157 +631,1617,5.0,897770993 +631,1619,4.0,897771107 +631,1625,5.0,897771039 +631,1672,4.0,897771069 +631,1673,3.0,897771107 +631,1686,3.0,897771069 +631,1687,3.0,897771383 +631,1689,4.0,897771340 +631,1704,5.0,897770993 +631,1722,3.0,897771194 +632,65,3.0,1263846190 +632,88,4.5,1263846185 +632,110,5.0,1263871078 +632,150,4.0,1263871174 +632,296,5.0,1263871101 +632,318,4.5,1263871159 +632,344,4.0,1264547511 +632,480,4.5,1264547283 +632,589,5.0,1264547427 +632,593,5.0,1263871107 +632,609,3.0,1264547562 +632,780,4.0,1263871096 +632,1015,4.5,1263846283 +632,1100,4.0,1263846141 +632,1198,4.0,1264547463 +632,1431,3.5,1263846317 +632,1461,4.0,1263846366 +632,1721,2.5,1264547476 +632,2028,4.5,1264547280 +632,2501,5.0,1263845994 +632,2513,3.5,1264547578 +632,2571,4.5,1264547440 +632,2948,4.0,1263846104 +632,2959,4.5,1264547533 +632,2991,4.0,1263846202 +632,3360,4.0,1263846207 +632,3555,3.5,1263846098 +632,3861,3.5,1263846359 +632,4008,4.0,1263846240 +632,4306,5.0,1263871067 +632,4623,4.0,1263846259 +632,4963,4.5,1264547522 +632,8961,4.0,1264547324 +632,33794,4.0,1264547446 +632,54736,4.5,1264547190 +632,58559,5.0,1263871057 +632,59315,5.0,1264547506 +632,68157,4.5,1263870832 +632,69640,3.0,1264547094 +633,6,3.0,848518408 +633,21,4.0,848518247 +633,36,3.0,848518247 +633,47,3.0,848518278 +633,62,3.0,848518358 +633,150,4.0,848517899 +633,161,3.0,848518115 +633,185,2.0,848518430 +633,277,3.0,848518496 +633,292,3.0,848518310 +633,296,3.0,848517899 +633,316,2.0,848518430 +633,318,4.0,848517977 +633,329,3.0,848518115 +633,356,4.0,848517977 +633,357,3.0,848518513 +633,364,3.0,848518278 +633,377,3.0,848518358 +633,380,2.0,848517899 +633,410,3.0,848518581 +633,440,3.0,848518358 +633,457,4.0,848518114 +633,480,3.0,848518115 +633,500,3.0,848518377 +633,508,3.0,848518115 +633,539,3.0,848518278 +633,587,3.0,848518496 +633,588,3.0,848518247 +633,589,3.0,848518278 +633,590,4.0,848517899 +633,592,3.0,848517899 +633,1073,4.0,848518536 +634,180,3.5,1309492375 +634,256,1.0,1309492258 +634,318,5.0,1309492538 +634,355,1.5,1309492267 +634,585,1.0,1309492291 +634,858,5.0,1309492488 +634,1129,3.0,1309492321 +634,1221,5.0,1309492491 +634,1293,3.0,1309492274 +634,1371,3.5,1309492279 +634,1405,3.0,1309492306 +634,1663,4.0,1309492338 +634,2002,2.0,1309492309 +634,2021,2.0,1309492312 +634,2023,2.5,1309492493 +634,2427,4.0,1309492342 +634,2641,2.0,1309492346 +634,3255,1.5,1309492282 +634,3552,2.0,1309492352 +634,3671,3.5,1309492285 +634,4085,3.0,1309492251 +634,86781,2.5,1309492532 +635,50,3.0,1448301664 +635,111,3.5,1448301764 +635,296,3.5,1448301729 +635,318,3.0,1448301659 +635,527,2.0,1448301669 +635,593,5.0,1448301726 +635,608,4.5,1448301753 +635,903,4.0,1448301807 +635,1089,4.0,1448301756 +635,1193,4.0,1448301675 +635,1201,2.5,1448301738 +635,1206,4.0,1448301850 +635,1219,5.0,1448301810 +635,1222,3.5,1448301802 +635,1485,2.0,1448301703 +635,1732,2.5,1448301858 +635,2329,4.0,1448301744 +635,2918,2.5,1448301864 +635,2959,3.5,1448301725 +635,3994,4.0,1448301917 +635,8874,3.5,1448301885 +635,112552,3.0,1448301797 +636,1,3.0,855227186 +636,17,3.0,855227188 +636,18,3.0,855227364 +636,25,4.0,855227188 +636,29,4.0,855227415 +636,30,4.0,855227524 +636,32,4.0,855227184 +636,36,4.0,855227232 +636,52,2.0,855227262 +636,65,2.0,855227321 +636,68,4.0,855227547 +636,85,5.0,855227416 +636,88,3.0,855227385 +636,102,3.0,855227385 +636,141,3.0,855227186 +636,260,3.0,855227294 +636,562,4.0,855227547 +636,608,5.0,855227232 +636,639,3.0,855227547 +636,640,4.0,855227364 +636,648,4.0,855227187 +636,663,3.0,855227415 +636,724,3.0,855227339 +636,736,3.0,855227186 +636,762,3.0,855227294 +636,766,5.0,855227523 +636,778,5.0,855227321 +636,781,3.0,855227547 +636,788,3.0,855227262 +636,1073,5.0,855227232 +637,24,3.5,1231346461 +637,32,5.0,1343142621 +637,50,5.0,1343134397 +637,60,3.0,1231346573 +637,135,2.5,1231346553 +637,276,3.0,1231346581 +637,318,5.0,1343134386 +637,524,5.0,1231346519 +637,750,5.0,1343134420 +637,849,4.0,1231346495 +637,858,5.0,1343134393 +637,1203,4.5,1343142617 +637,1221,5.0,1343134402 +637,1409,4.0,1231346565 +637,1586,4.0,1231346547 +637,1947,2.5,1231346476 +637,2231,5.0,1231346568 +637,2580,3.5,1231346453 +637,2605,4.0,1231346486 +637,2746,3.5,1231346491 +637,2944,5.0,1231346534 +637,3107,4.5,1231346504 +637,3361,5.0,1231346509 +637,3421,3.5,1343134381 +637,3489,3.5,1231346518 +638,327,4.0,1307558400 +638,898,3.5,1307558493 +638,1019,4.5,1307558479 +638,1188,3.0,1307558409 +638,1223,4.5,1307558406 +638,1378,4.0,1307558438 +638,1882,1.0,1307558388 +638,2094,3.0,1307558444 +638,2359,3.5,1307558441 +638,2391,1.0,1307558499 +638,2478,4.5,1307558482 +638,2501,2.0,1307558393 +638,2572,4.5,1307558996 +638,3148,2.5,1307558420 +638,3247,3.5,1307558423 +638,3354,1.5,1307558486 +638,3396,3.5,1307558426 +638,3826,0.5,1307558429 +638,4792,3.5,1307559221 +638,58293,2.0,1307559001 +639,11,4.0,832450629 +639,24,3.0,832450630 +639,31,3.0,832451040 +639,39,4.0,833991986 +639,46,3.0,832765088 +639,47,3.0,832450970 +639,110,4.0,832450943 +639,111,5.0,832450970 +639,150,4.0,832450891 +639,151,4.0,832451002 +639,160,2.0,833991986 +639,161,4.0,833991762 +639,165,3.0,833991717 +639,170,3.0,832451150 +639,185,2.0,833991819 +639,191,3.0,832765146 +639,193,3.0,832451071 +639,196,3.0,833992054 +639,198,2.0,832764230 +639,208,3.0,833991819 +639,225,4.0,832450943 +639,231,3.0,833991717 +639,246,5.0,832451071 +639,254,3.0,832765321 +639,277,4.0,832451070 +639,280,4.0,832451121 +639,282,4.0,832451003 +639,288,3.0,833991819 +639,292,3.0,832450943 +639,296,4.0,833991650 +639,299,4.0,832764308 +639,300,4.0,832450943 +639,318,5.0,832450891 +639,329,3.0,832450943 +639,339,3.0,833991762 +639,344,3.0,833991650 +639,350,3.0,832764136 +639,364,3.0,833992054 +639,371,4.0,832765045 +639,380,3.0,833991650 +639,381,3.0,832451093 +639,410,4.0,833991819 +639,427,3.0,832451150 +639,432,3.0,833991985 +639,440,4.0,832764103 +639,454,3.0,832451121 +639,457,4.0,833991879 +639,515,4.0,832764230 +639,553,2.0,832764038 +639,588,3.0,833991650 +639,590,4.0,832450891 +639,592,2.0,832450890 +639,593,4.0,833991879 +639,595,3.0,833991717 +639,736,3.0,832450630 +640,3,4.0,860950973 +640,5,3.0,860950972 +640,9,3.0,860951277 +640,12,3.0,860951390 +640,14,2.0,860951181 +640,17,4.0,860950846 +640,36,5.0,860950972 +640,52,2.0,860951083 +640,62,5.0,860950846 +640,74,4.0,860951390 +640,95,3.0,860950846 +640,99,1.0,860951719 +640,104,3.0,860951083 +640,107,3.0,860951390 +640,116,5.0,860952793 +640,140,3.0,860951277 +640,141,5.0,860950846 +640,260,5.0,860950973 +640,494,4.0,860950973 +640,608,5.0,860950972 +640,609,3.0,860951513 +640,631,5.0,860951513 +640,648,3.0,860950846 +640,671,3.0,860951513 +640,708,3.0,860951083 +640,711,3.0,860951390 +640,736,3.0,860950846 +640,761,5.0,860951513 +640,762,3.0,860951181 +640,780,5.0,860950845 +640,783,2.0,860951277 +640,784,3.0,860951083 +640,788,3.0,860951083 +640,830,4.0,860952019 +640,858,5.0,860951513 +640,1042,4.0,860952310 +640,1059,4.0,860951719 +640,1073,3.0,860950972 +640,1183,5.0,860951719 +640,1210,3.0,860951277 +640,1356,5.0,860951181 +640,1357,4.0,860952454 +640,1363,4.0,860952867 +640,1367,4.0,860951619 +640,1393,4.0,860951513 +640,1398,3.0,860954769 +640,1401,4.0,860954538 +640,1416,4.0,860952580 +640,1476,3.0,860953577 +641,1,4.0,850021197 +641,2,4.0,834636796 +641,3,3.0,833955544 +641,5,4.0,834636108 +641,6,4.0,851304369 +641,7,4.0,834636169 +641,10,3.0,834636305 +641,11,4.0,834636769 +641,19,3.0,841551413 +641,22,4.0,841551328 +641,27,4.0,834802130 +641,31,4.0,841551303 +641,32,4.0,834636631 +641,34,4.0,834636605 +641,36,4.0,850021177 +641,39,5.0,834636664 +641,46,4.0,835844739 +641,52,4.0,851304179 +641,61,4.0,856747998 +641,62,4.0,834984635 +641,64,3.0,834802028 +641,74,4.0,834802130 +641,79,3.0,836882146 +641,94,4.0,850021227 +641,95,3.0,834636796 +641,102,3.0,851304419 +641,113,3.0,850021361 +641,116,5.0,835844561 +641,135,3.0,850023534 +641,140,4.0,835844812 +641,141,5.0,834802101 +641,150,4.0,834636219 +641,153,3.0,834636246 +641,165,4.0,834636246 +641,185,4.0,834636332 +641,186,3.0,834636769 +641,196,3.0,834636769 +641,203,3.0,834984635 +641,204,3.0,834636796 +641,207,3.0,841551362 +641,208,3.0,834636332 +641,216,2.0,841551232 +641,218,4.0,834984687 +641,219,4.0,841551453 +641,224,4.0,839397349 +641,231,5.0,834636276 +641,236,4.0,834636741 +641,252,4.0,834636769 +641,253,4.0,834636332 +641,261,5.0,836533682 +641,262,5.0,834984658 +641,277,3.0,836533724 +641,282,4.0,834636740 +641,289,4.0,841551362 +641,292,4.0,834636305 +641,296,3.0,834636219 +641,300,4.0,834636572 +641,317,3.0,834636631 +641,318,5.0,834636276 +641,337,4.0,834636740 +641,339,5.0,834636305 +641,342,4.0,834984607 +641,344,5.0,834636246 +641,345,5.0,834802101 +641,349,4.0,834636246 +641,350,4.0,841551453 +641,351,4.0,841551438 +641,356,5.0,834984620 +641,357,5.0,834984745 +641,361,3.0,841551303 +641,364,4.0,834636704 +641,367,3.0,834636740 +641,370,3.0,839397316 +641,372,4.0,839397316 +641,377,5.0,836533780 +641,380,4.0,834636219 +641,381,5.0,841551394 +641,410,4.0,834636605 +641,432,3.0,834636664 +641,434,3.0,834636305 +641,435,3.0,834636704 +641,440,5.0,836533765 +641,454,3.0,834636704 +641,457,4.0,834636572 +641,466,3.0,839397316 +641,474,5.0,836533752 +641,475,4.0,834984547 +641,480,4.0,836533780 +641,494,3.0,850021242 +641,500,5.0,836533738 +641,514,3.0,841551362 +641,536,4.0,834984699 +641,539,5.0,834984763 +641,543,3.0,841551244 +641,562,5.0,853994125 +641,585,3.0,841551257 +641,587,4.0,841551394 +641,588,4.0,834636246 +641,589,4.0,841551303 +641,590,3.0,834636219 +641,592,3.0,834636219 +641,593,5.0,834636572 +641,597,4.0,841551413 +641,608,4.0,853994141 +641,627,3.0,855981007 +641,628,4.0,850021197 +641,638,4.0,850021377 +641,647,4.0,839397349 +641,648,3.0,850021212 +641,705,4.0,861415895 +641,708,4.0,839397283 +641,724,3.0,850023465 +641,733,3.0,839397283 +641,736,5.0,834636485 +641,780,5.0,839397283 +641,786,4.0,850021242 +641,802,4.0,855980932 +641,804,3.0,850023601 +641,805,5.0,850023756 +641,830,3.0,850021197 +641,832,5.0,850021197 +641,837,4.0,850023643 +641,838,5.0,850021177 +641,852,4.0,850023720 +641,986,3.0,851304214 +641,1020,4.0,841551346 +641,1028,4.0,841551346 +641,1032,4.0,841551377 +641,1042,3.0,861415917 +641,1057,5.0,861415976 +641,1059,5.0,853994107 +641,1061,4.0,861415933 +641,1073,4.0,850021177 +641,1183,5.0,861415917 +641,1366,5.0,855980942 +641,1380,5.0,850023798 +641,1381,3.0,850023798 +641,1391,3.0,856748022 +641,1407,5.0,856747910 +641,1416,4.0,856747883 +642,162,5.0,881526314 +642,457,2.0,881526366 +642,549,4.0,881526337 +642,800,4.0,881526394 +642,899,5.0,881526394 +642,906,3.0,881526314 +642,913,5.0,881526314 +642,924,4.0,881526314 +642,933,4.0,881526314 +642,942,4.0,881526394 +642,950,5.0,881526394 +642,954,5.0,881526314 +642,969,4.0,881526394 +642,1057,4.0,881526071 +642,1079,4.0,881526394 +642,1084,5.0,881526394 +642,1199,5.0,881526337 +642,1218,5.0,881526366 +642,1228,4.0,881526337 +642,1230,5.0,881526314 +642,1251,3.0,881526366 +642,1254,4.0,881526337 +642,1414,4.0,881526029 +642,1594,5.0,881526049 +642,1597,2.0,881526029 +642,1600,4.0,881526221 +642,1601,4.0,881526098 +642,1617,4.0,881526003 +642,1633,3.0,881526003 +642,1639,3.0,881526029 +642,1643,3.0,881526098 +642,1644,2.0,881526118 +642,1649,5.0,881526098 +642,1658,2.0,881526160 +642,1673,3.0,881526071 +642,1676,4.0,881526137 +643,50,5.0,1372518445 +643,204,2.0,1372517894 +643,260,5.0,1372518503 +643,318,5.0,1372518439 +643,858,5.0,1372518442 +643,1196,5.0,1372518513 +643,1221,5.0,1372518457 +643,1385,2.0,1372517946 +643,1681,2.0,1372518189 +643,1687,3.5,1372518013 +643,1792,3.5,1372518007 +643,1918,2.5,1372517865 +643,2379,2.0,1372518074 +643,2381,2.5,1372518131 +643,2571,4.5,1372518501 +643,2959,5.0,1372518483 +643,3452,2.0,1372518033 +643,4673,3.0,1372518210 +643,4701,2.0,1372517973 +643,5541,2.0,1372518145 +643,8387,0.5,1372518405 +643,53322,3.0,1372518079 +643,58559,5.0,1372518465 +643,98809,4.5,1372518318 +644,4,1.0,944934385 +644,24,3.0,944933494 +644,235,5.0,944934104 +644,348,5.0,944934313 +644,527,5.0,944928937 +644,608,5.0,944934043 +644,785,3.0,944933418 +644,1230,5.0,944929008 +644,1247,5.0,944933908 +644,1354,5.0,944934250 +644,1513,3.0,944933494 +644,1836,5.0,944934001 +644,1911,2.0,944933297 +644,2089,3.0,944928937 +644,2093,4.0,944933494 +644,2108,5.0,944934198 +644,2174,4.0,944928937 +644,2188,2.0,944933227 +644,2336,3.0,944933351 +644,2337,4.0,944933583 +644,2394,4.0,944933495 +644,2395,5.0,944933544 +644,2396,5.0,944933544 +644,2428,3.0,944933351 +644,2580,4.0,944933386 +644,2581,3.0,944933449 +644,2599,5.0,944933352 +644,2606,3.0,944933386 +644,2628,3.0,944929275 +644,2683,2.0,944933227 +644,2699,2.0,944933227 +644,2706,4.0,944933227 +644,2709,2.0,944933418 +644,2710,5.0,944933263 +644,2712,5.0,944933352 +644,2716,4.0,944933352 +644,2762,3.0,944933544 +644,2858,4.0,944933227 +644,2987,3.0,944933583 +645,158,3.0,1053419964 +645,266,3.5,1053420717 +645,277,3.5,1053420036 +645,316,4.0,1053420714 +645,543,3.0,1053420348 +645,596,2.0,1053419972 +645,913,3.5,1053419937 +645,1302,4.0,1053420019 +645,1380,4.5,1053420310 +645,1619,3.0,1053420739 +645,2006,4.0,1053420022 +645,2011,4.0,1053420321 +645,2012,3.5,1053419925 +645,2054,3.5,1053420328 +645,2617,4.0,1053419989 +645,2770,3.0,1053420011 +645,2987,4.5,1053420729 +645,3101,4.5,1053420025 +645,3176,1.0,1053420001 +645,3408,4.5,1053419953 +645,3897,5.0,1053420007 +645,5464,4.0,1053420918 +645,5630,5.0,1053420923 +645,5810,4.0,1053420726 +645,5816,4.0,1053420719 +645,6249,3.0,1053420261 +645,6252,1.5,1053420239 +645,6263,4.0,1053420229 +645,6287,5.0,1053420249 +645,6333,4.5,1053420314 +646,1,5.0,953449518 +646,3,5.0,953451056 +646,48,5.0,953704122 +646,186,4.0,953703866 +646,231,4.0,953450678 +646,258,4.0,953448643 +646,260,5.0,953448040 +646,316,4.0,953448248 +646,317,4.0,953450545 +646,356,5.0,953449488 +646,364,5.0,953704051 +646,368,4.0,953450325 +646,379,4.0,953448443 +646,432,4.0,953450940 +646,435,4.0,953448718 +646,466,4.0,953450789 +646,480,4.0,953448111 +646,500,5.0,953450112 +646,519,4.0,953448748 +646,552,4.0,953450545 +646,575,4.0,953450940 +646,586,5.0,953450606 +646,587,4.0,953450030 +646,588,5.0,953449561 +646,594,4.0,953704020 +646,595,5.0,953704020 +646,596,4.0,953703974 +646,673,2.0,953450886 +646,719,4.0,953450606 +646,720,5.0,953703937 +646,780,5.0,953448281 +646,783,5.0,953704051 +646,785,1.0,953447703 +646,788,5.0,953448407 +646,813,4.0,953450886 +646,837,4.0,953450492 +646,880,2.0,953448670 +646,881,4.0,953450545 +646,888,4.0,953704122 +646,952,4.0,953450283 +646,955,1.0,953449460 +646,1010,4.0,953450492 +646,1014,5.0,953451083 +646,1016,4.0,953450434 +646,1018,5.0,953450886 +646,1019,5.0,953448368 +646,1021,5.0,953450706 +646,1022,4.0,953704020 +646,1025,5.0,953704086 +646,1028,5.0,953449763 +646,1029,4.0,953704051 +646,1064,4.0,953450852 +646,1148,5.0,953449346 +646,1196,5.0,953447145 +646,1210,5.0,953448077 +646,1265,5.0,953449421 +646,1270,5.0,953448040 +646,1282,4.0,953703974 +646,1297,5.0,953449636 +646,1304,4.0,953449604 +646,1356,4.0,953448248 +646,1372,4.0,953448327 +646,1373,4.0,953448643 +646,1376,5.0,953448175 +646,1380,2.0,953450136 +646,1387,5.0,953448821 +646,1388,4.0,953449094 +646,1389,2.0,953449190 +646,1390,5.0,953449940 +646,1391,4.0,953448559 +646,1414,5.0,953450545 +646,1517,3.0,953449940 +646,1527,5.0,953448216 +646,1544,3.0,953448559 +646,1566,3.0,953450357 +646,1580,5.0,953448175 +646,1584,5.0,953448077 +646,1588,4.0,953450653 +646,1688,3.0,953704086 +646,1689,5.0,953451027 +646,1702,3.0,953450972 +646,1777,4.0,953449986 +646,1784,4.0,953449715 +646,1831,3.0,953448443 +646,1834,4.0,953447082 +646,1848,4.0,953450385 +646,1855,5.0,953451083 +646,1858,3.0,953447173 +646,1862,3.0,953448718 +646,1876,5.0,953448407 +646,1894,4.0,953450570 +646,1911,4.0,953447573 +646,1917,5.0,953448496 +646,2010,3.0,953448040 +646,2011,5.0,953448148 +646,2012,5.0,953448281 +646,2013,3.0,953447810 +646,2014,4.0,953450940 +646,2015,4.0,953450208 +646,2018,4.0,953704020 +646,2034,3.0,953448593 +646,2038,4.0,953447533 +646,2040,4.0,953450972 +646,2041,2.0,953447533 +646,2053,4.0,953448718 +646,2054,4.0,953448527 +646,2078,4.0,953449822 +646,2080,4.0,953449794 +646,2081,5.0,953449715 +646,2085,5.0,953704020 +646,2087,5.0,953704020 +646,2089,4.0,953704051 +646,2090,5.0,953704122 +646,2094,5.0,953448527 +646,2096,4.0,953704086 +646,2108,5.0,953449685 +646,2110,4.0,953450434 +646,2136,4.0,953449561 +646,2141,4.0,953450631 +646,2150,5.0,953449636 +646,2170,4.0,953450789 +646,2174,4.0,953449685 +646,2252,5.0,953447117 +646,2294,4.0,953704086 +646,2336,3.0,953447613 +646,2355,5.0,953447486 +646,2359,5.0,953703840 +646,2393,4.0,953448368 +646,2394,4.0,953447844 +646,2396,4.0,953447878 +646,2413,4.0,953451126 +646,2424,4.0,953450208 +646,2431,5.0,953450789 +646,2433,4.0,953447533 +646,2478,4.0,953451056 +646,2552,3.0,953451027 +646,2558,4.0,953450789 +646,2567,2.0,953449912 +646,2571,5.0,953448077 +646,2574,4.0,953447777 +646,2581,1.0,953447777 +646,2605,5.0,953447613 +646,2617,4.0,953448991 +646,2640,3.0,953448111 +646,2683,3.0,953447443 +646,2699,1.0,953447443 +646,2701,2.0,953447966 +646,2716,5.0,953447656 +646,2746,5.0,953448966 +646,2747,5.0,953448917 +646,2761,5.0,953447703 +646,2762,5.0,953447878 +646,2770,5.0,953447486 +646,2791,5.0,953449488 +646,2792,4.0,953451027 +646,2805,4.0,953447738 +646,2860,4.0,953450164 +646,2879,4.0,953450056 +646,2949,4.0,953447207 +646,2987,4.0,953703974 +646,3033,4.0,953448496 +646,3087,3.0,953450492 +646,3114,5.0,953447916 +646,3157,4.0,953450995 +646,3159,5.0,953447656 +646,3253,5.0,953449912 +646,3255,5.0,953450030 +646,3354,4.0,953703792 +646,3450,5.0,953450706 +647,1,4.0,947292218 +647,6,4.0,947292853 +647,16,4.0,947292732 +647,34,5.0,947292940 +647,47,5.0,947292784 +647,50,5.0,947292654 +647,70,3.0,947292818 +647,111,5.0,947292570 +647,112,4.0,947293302 +647,149,3.0,947292818 +647,161,3.0,947292784 +647,170,3.0,947292818 +647,190,5.0,947292692 +647,229,5.0,947292753 +647,232,4.0,947292450 +647,245,3.0,947292322 +647,247,5.0,947292692 +647,259,4.0,947293233 +647,260,5.0,947292545 +647,265,4.0,947292184 +647,290,4.0,947293128 +647,293,5.0,947292692 +647,296,5.0,947292921 +647,300,5.0,947292218 +647,306,4.0,947292940 +647,319,5.0,947292853 +647,349,4.0,947292853 +647,373,4.0,947292692 +647,377,5.0,947292784 +647,431,4.0,947293102 +647,457,4.0,947292692 +647,474,4.0,947292818 +647,481,3.0,947292753 +647,482,1.0,947292373 +647,521,3.0,947293233 +647,527,5.0,947292940 +647,541,5.0,947292496 +647,555,4.0,947293233 +647,589,4.0,947292692 +647,590,3.0,947292218 +647,593,5.0,947292570 +647,608,5.0,947292391 +647,621,4.0,947292304 +647,640,4.0,947292692 +647,745,5.0,947292654 +647,858,5.0,947292218 +647,866,5.0,947292732 +647,896,4.0,947292304 +647,912,5.0,947292474 +647,922,5.0,947292545 +647,923,5.0,947292545 +647,926,5.0,947292496 +647,930,4.0,947292450 +647,949,4.0,947292304 +647,999,4.0,947293233 +647,1034,5.0,947293128 +647,1041,4.0,947292570 +647,1061,4.0,947293302 +647,1079,5.0,947293361 +647,1089,4.0,947292654 +647,1136,5.0,947292474 +647,1148,5.0,947292600 +647,1193,5.0,947292450 +647,1207,5.0,947292422 +647,1211,5.0,947293332 +647,1213,5.0,947292521 +647,1217,5.0,947292422 +647,1219,5.0,947292545 +647,1221,4.0,947292521 +647,1225,4.0,947292496 +647,1227,5.0,947292450 +647,1233,4.0,947292921 +647,1238,4.0,947293332 +647,1249,5.0,947292654 +647,1259,5.0,947293361 +647,1260,5.0,947292521 +647,1263,5.0,947292600 +647,1267,4.0,947292373 +647,1270,2.0,947293361 +647,1273,5.0,947293361 +647,1280,4.0,947292545 +647,1283,5.0,947292570 +647,1284,2.0,947292304 +647,1288,5.0,947293332 +647,1343,4.0,947292784 +647,1348,4.0,947292184 +647,1354,5.0,947292957 +647,1394,4.0,947293332 +647,1396,3.0,947293233 +647,1466,5.0,947293102 +647,1500,5.0,947293146 +647,1523,4.0,947293128 +647,1589,4.0,947293302 +647,1610,3.0,947292732 +647,1617,5.0,947292654 +647,1620,3.0,947293302 +647,1625,3.0,947292818 +647,1635,5.0,947292957 +647,1645,4.0,947292853 +647,1729,1.0,947293102 +647,1732,5.0,947292218 +647,1748,5.0,947292818 +647,1805,5.0,947292818 +647,1824,1.0,947292391 +647,1834,5.0,947292732 +647,1866,5.0,947292373 +647,1912,5.0,947293102 +647,1914,5.0,947292974 +647,1921,4.0,947292732 +647,1945,5.0,947292600 +647,1952,5.0,947292521 +647,1997,5.0,947292570 +647,2010,5.0,947292304 +647,2019,4.0,947292600 +647,2028,2.0,947292184 +647,2064,5.0,947293332 +647,2111,3.0,947293361 +647,2126,2.0,947293302 +647,2186,5.0,947292474 +647,2203,4.0,947292570 +647,2231,4.0,947293233 +647,2278,3.0,947292818 +647,2280,4.0,947293128 +647,2283,4.0,947292184 +647,2289,5.0,947292921 +647,2303,4.0,947292422 +647,2310,5.0,947292422 +647,2336,5.0,947292957 +647,2349,4.0,947293332 +647,2353,4.0,947292853 +647,2391,4.0,947292732 +647,2571,4.0,947292218 +647,2580,4.0,947293102 +647,2648,4.0,947292304 +647,2692,5.0,947293128 +647,2715,3.0,947292451 +647,2745,5.0,947292474 +647,2762,5.0,947292654 +647,2858,5.0,947292898 +647,2908,5.0,947292600 +647,2912,5.0,947293102 +647,2916,3.0,947292853 +647,2925,5.0,947292521 +647,2946,5.0,947292304 +647,2973,4.0,947293332 +647,3011,5.0,947292451 +647,3037,5.0,947292422 +647,3067,5.0,947293361 +647,3075,3.0,947292451 +647,3129,5.0,947292373 +648,6,4.0,1204413633 +648,47,3.0,1138477818 +648,48,1.0,1138477466 +648,70,2.0,1140872227 +648,97,4.5,1182033732 +648,104,3.0,1138479600 +648,111,3.0,1138477880 +648,175,4.0,1278769948 +648,288,4.5,1138487531 +648,293,4.5,1138487533 +648,296,5.0,1138487519 +648,318,4.5,1205021727 +648,344,3.0,1140221841 +648,356,4.5,1176754950 +648,364,2.0,1138477825 +648,367,3.5,1140221864 +648,377,2.0,1138477797 +648,480,2.0,1138477701 +648,500,4.0,1138477832 +648,552,3.5,1138487538 +648,555,3.5,1138479358 +648,586,2.0,1140221898 +648,588,2.0,1138477792 +648,590,2.0,1140221817 +648,608,4.0,1279713124 +648,733,2.0,1138487841 +648,750,4.0,1184360319 +648,778,5.0,1138487522 +648,780,2.0,1138477779 +648,785,3.5,1140872042 +648,852,3.0,1140872153 +648,858,3.5,1138477822 +648,912,4.0,1183325856 +648,923,2.5,1183068262 +648,1080,3.5,1140221620 +648,1089,4.0,1141508104 +648,1136,4.0,1138477872 +648,1201,4.0,1184449576 +648,1206,3.5,1138477987 +648,1208,2.0,1169941061 +648,1213,4.0,1263684704 +648,1221,3.5,1138477898 +648,1222,4.0,1140823367 +648,1228,3.5,1183670308 +648,1246,4.0,1168121690 +648,1263,2.0,1169327892 +648,1274,2.0,1141144877 +648,1281,4.5,1176069418 +648,1288,3.0,1138477436 +648,1394,4.0,1319315839 +648,1466,3.5,1138477584 +648,1580,1.5,1138477860 +648,1704,4.5,1138487524 +648,1721,1.0,1138477862 +648,1732,5.0,1138487508 +648,1777,3.0,1140872042 +648,1827,3.5,1138479478 +648,1884,4.5,1280014860 +648,1909,2.5,1138477539 +648,1921,3.0,1138487473 +648,1923,3.0,1140221913 +648,1961,4.0,1155424240 +648,2023,3.5,1140872407 +648,2028,3.0,1138477815 +648,2064,3.0,1138479420 +648,2167,1.5,1138477565 +648,2324,4.5,1175726033 +648,2329,4.0,1138477518 +648,2338,1.0,1138478833 +648,2353,2.0,1138477461 +648,2360,4.0,1139098829 +648,2420,3.5,1153434060 +648,2542,4.5,1138477556 +648,2571,1.5,1138477810 +648,2594,3.5,1151620964 +648,2596,4.0,1279440095 +648,2671,3.5,1140871965 +648,2677,2.5,1191621076 +648,2700,4.0,1138478243 +648,2706,2.0,1138477996 +648,2843,4.0,1172268394 +648,2959,2.5,1138477960 +648,3052,4.5,1138477493 +648,3083,4.0,1138479539 +648,3148,4.0,1151351965 +648,3235,4.0,1176241208 +648,3263,4.0,1162755323 +648,3267,4.0,1326531025 +648,3306,4.0,1176328041 +648,3307,4.5,1176754888 +648,3310,3.5,1177190151 +648,3448,4.0,1138477572 +648,3456,4.5,1230416514 +648,3462,4.5,1177190204 +648,3481,3.5,1138477705 +648,3559,4.0,1176421721 +648,3629,4.0,1176155318 +648,3632,3.5,1176625753 +648,3640,3.5,1176504562 +648,3897,3.0,1140872459 +648,3949,4.0,1138478292 +648,4011,4.0,1138478117 +648,4027,3.5,1138999720 +648,4034,4.5,1280012075 +648,4235,4.5,1138487552 +648,4262,3.5,1138999404 +648,4306,3.5,1138477913 +648,4369,3.5,1140992012 +648,4388,2.0,1138479624 +648,4741,4.5,1138487574 +648,4816,3.5,1185137669 +648,4834,4.0,1138479012 +648,4878,3.5,1138479187 +648,4896,2.0,1138477552 +648,4973,4.0,1140303296 +648,4993,1.5,1138477918 +648,4995,4.5,1138487557 +648,5051,4.0,1140307821 +648,5225,4.5,1138487555 +648,5515,3.0,1263677276 +648,5632,4.0,1141155820 +648,5669,4.0,1138478301 +648,5785,3.5,1175716739 +648,5818,4.0,1257029800 +648,5878,4.0,1138479536 +648,5913,3.0,1138478475 +648,5952,1.5,1138477693 +648,6016,4.5,1138478138 +648,6022,4.0,1175638550 +648,6051,4.0,1138489121 +648,6091,3.5,1248206931 +648,6291,3.5,1138478439 +648,6377,4.5,1138477547 +648,6440,3.0,1319315858 +648,6539,4.0,1152207935 +648,6618,4.5,1138487568 +648,6679,3.5,1138478296 +648,6690,3.5,1138479546 +648,6711,4.0,1327184129 +648,6807,3.5,1138478686 +648,6869,4.0,1279400703 +648,6874,3.5,1138999399 +648,6884,4.0,1187816389 +648,6898,4.0,1251061999 +648,6935,4.0,1256500277 +648,6957,4.0,1215550907 +648,7011,3.5,1313877449 +648,7034,3.5,1138478407 +648,7323,4.0,1138478318 +648,7361,4.0,1138478129 +648,7438,3.0,1138478144 +648,7459,4.5,1152207751 +648,7990,3.0,1138479051 +648,8012,4.0,1138478336 +648,8273,4.0,1258231473 +648,8376,4.0,1138479560 +648,8464,4.0,1138478508 +648,8511,4.0,1176571215 +648,8576,4.5,1138487584 +648,8577,4.0,1175459933 +648,8622,3.5,1138478357 +648,8641,3.5,1151356104 +648,8645,4.0,1189807401 +648,8873,4.0,1138478695 +648,8949,2.5,1156717376 +648,8961,4.0,1148160678 +648,8973,4.0,1138478760 +648,26131,4.0,1140307902 +648,26494,3.5,1279440177 +648,26947,4.5,1278769972 +648,27416,4.0,1138478437 +648,27700,4.0,1145743964 +648,27773,2.5,1147555000 +648,27803,4.0,1257630220 +648,27846,4.0,1165614492 +648,27850,4.0,1280606222 +648,27875,4.0,1199049186 +648,30749,5.0,1138487517 +648,30793,4.0,1138487876 +648,31878,3.5,1138479113 +648,32587,4.0,1138478152 +648,32853,1.5,1171744826 +648,33166,4.0,1255174791 +648,33750,4.0,1256415707 +648,36527,4.0,1138478635 +648,36529,4.0,1138999349 +648,38038,4.0,1138478655 +648,39183,4.0,1145743924 +648,40819,4.0,1152229107 +648,41527,4.5,1149372445 +648,41912,4.5,1276452635 +648,44195,4.0,1162668701 +648,44555,2.5,1174253095 +648,44694,4.0,1165614471 +648,45666,4.0,1165703663 +648,45722,4.0,1167091045 +648,45950,3.0,1174689194 +648,46972,2.5,1174170254 +648,47423,4.0,1254683022 +648,47997,2.0,1171391067 +648,47999,3.5,1173213056 +648,48032,4.0,1279464800 +648,48385,4.5,1165703654 +648,48394,2.0,1174773455 +648,48593,4.0,1168121642 +648,48738,4.0,1173568944 +648,48856,3.5,1255810132 +648,49265,4.0,1201993174 +648,49530,4.0,1173481752 +648,51255,4.5,1200348660 +648,51662,2.5,1175725718 +648,52952,4.5,1201391983 +648,53894,4.0,1279464951 +648,54272,4.5,1187027148 +648,55247,3.5,1276455430 +648,55721,4.0,1279400736 +648,55820,3.5,1205622156 +648,57845,4.5,1276454991 +648,58029,4.0,1251062769 +648,59126,4.5,1248903438 +648,61323,5.0,1276451560 +648,61646,4.0,1252183880 +648,62250,3.0,1248124054 +648,63082,4.0,1241951859 +648,63808,4.0,1353261012 +648,64197,3.5,1241951834 +648,64499,4.0,1279400522 +648,64501,4.0,1279400525 +648,65259,4.0,1251579667 +648,67267,4.0,1263684635 +648,68347,4.5,1279400198 +648,69784,3.0,1281821753 +648,71156,4.5,1350594264 +648,71429,4.0,1302383728 +648,71640,4.5,1257029813 +648,72011,3.0,1283028006 +648,72386,4.0,1266704148 +648,73101,4.0,1266620609 +648,74275,4.0,1284238492 +648,74677,4.0,1280617196 +648,74740,3.5,1316896911 +648,77800,4.5,1298843951 +648,77810,4.0,1325887937 +648,79008,4.0,1279713091 +648,81819,4.0,1311934652 +648,87485,3.0,1327100797 +648,92004,4.0,1356551710 +648,93693,4.0,1343424336 +648,96488,4.5,1367274152 +648,98913,4.0,1355387817 +648,99675,4.0,1357597698 +648,102995,2.0,1370509191 +648,128616,4.0,1426357951 +648,140152,4.0,1460757570 +648,142488,4.5,1457736015 +648,155611,4.0,1458482965 +649,1,4.0,834424768 +649,4,3.0,834425135 +649,10,5.0,834424744 +649,19,3.0,834424836 +649,21,3.0,834424805 +649,32,4.0,834424836 +649,39,4.0,834424854 +649,44,4.0,834424947 +649,45,3.0,834425077 +649,50,4.0,834424836 +649,58,4.0,834425077 +649,112,3.0,834425102 +649,141,3.0,834424931 +649,150,4.0,834424671 +649,151,3.0,834424903 +649,153,4.0,834424696 +649,160,1.0,834424854 +649,161,4.0,834424744 +649,165,3.0,834424696 +649,172,3.0,834424930 +649,186,2.0,834424903 +649,196,2.0,834424884 +649,198,2.0,834425160 +649,208,1.0,834424768 +649,218,3.0,834425029 +649,223,4.0,834424973 +649,235,3.0,834424903 +649,236,4.0,834424868 +649,247,3.0,834425209 +649,249,3.0,834425125 +649,252,3.0,834424884 +649,261,5.0,834424930 +649,265,5.0,834424931 +649,266,3.0,834424836 +649,272,4.0,834424995 +649,282,3.0,834424869 +649,288,5.0,834424768 +649,293,4.0,834424917 +649,296,5.0,834424671 +649,307,4.0,834425181 +649,316,1.0,834424723 +649,317,3.0,834424805 +649,319,4.0,834425125 +649,327,3.0,834425102 +649,329,2.0,834424723 +649,333,4.0,834424960 +649,339,4.0,834424744 +649,344,5.0,834424696 +649,349,3.0,834424696 +649,350,5.0,834424985 +649,353,3.0,834425046 +649,356,3.0,834424985 +649,357,3.0,834425091 +649,364,3.0,834424884 +649,368,3.0,834425249 +649,371,4.0,834425221 +649,377,4.0,834425046 +649,380,3.0,834424671 +649,417,3.0,834425221 +649,434,4.0,834424744 +649,440,4.0,834424947 +649,454,4.0,834424884 +649,457,4.0,834424789 +649,468,3.0,834425004 +649,471,3.0,834425145 +649,474,5.0,834425160 +649,477,5.0,834425091 +649,480,4.0,834425016 +649,491,4.0,834425192 +649,497,4.0,834425221 +649,500,3.0,834425091 +649,508,4.0,834425192 +649,509,5.0,834424985 +649,520,3.0,834425455 +649,527,4.0,834425066 +649,531,4.0,834425281 +649,539,3.0,834425125 +649,551,3.0,834425016 +649,555,3.0,834424947 +649,586,3.0,834425160 +649,587,3.0,834425145 +649,588,3.0,834424696 +649,589,4.0,834425029 +649,590,3.0,834424671 +649,592,4.0,834424671 +649,593,5.0,834424789 +649,595,3.0,834424723 +649,597,4.0,834425135 +649,608,5.0,834425016 +649,648,3.0,834425230 +650,3,3.0,844883753 +650,4,1.0,844883753 +650,5,3.0,844883711 +650,10,4.0,844883616 +650,11,5.0,844883616 +650,15,2.0,844883798 +650,17,4.0,844883654 +650,32,3.0,844883616 +650,36,5.0,844883683 +650,42,1.0,844883925 +650,45,3.0,844883711 +650,62,5.0,844883683 +650,76,3.0,844883925 +650,79,3.0,844883822 +650,86,5.0,844884124 +650,89,4.0,844883864 +650,92,3.0,844884000 +650,95,4.0,844883654 +650,105,3.0,844883711 +650,140,4.0,844883843 +650,141,1.0,844883654 +650,191,4.0,844883843 +650,494,4.0,844883726 +650,637,3.0,844883864 +650,694,4.0,844884074 +650,704,1.0,844884020 +650,707,2.0,844883941 +650,736,4.0,844883654 +650,780,5.0,844883683 +651,260,5.0,945030304 +651,318,4.0,945031247 +651,381,3.0,945029770 +651,765,2.0,945030790 +651,919,3.0,945030304 +651,1196,5.0,945031162 +651,1197,5.0,945029770 +651,1198,5.0,945030334 +651,1250,4.0,945030304 +651,1268,3.0,945031033 +651,1270,4.0,945029725 +651,1387,4.0,945031374 +651,1513,4.0,945030790 +651,1907,5.0,945029695 +651,1923,3.0,945029904 +651,1954,5.0,945031470 +651,2028,4.0,945031219 +651,2145,3.0,945029695 +651,2416,4.0,945029904 +651,2671,3.0,945029904 +652,22,4.0,1439584210 +652,24,5.0,1322813211 +652,71,4.0,1439581733 +652,94,4.0,1439585348 +652,125,4.0,1439589051 +652,140,4.0,1439584906 +652,179,4.0,1440271840 +652,185,4.0,1439583878 +652,194,4.0,1439584823 +652,223,4.0,1439584038 +652,293,4.0,1439486552 +652,299,4.0,1440028872 +652,316,5.0,1439489896 +652,319,4.0,1439584570 +652,338,4.0,1439585068 +652,339,4.0,1439583904 +652,358,4.0,1440270441 +652,377,4.0,1439489490 +652,378,4.0,1440270420 +652,388,4.0,1440029042 +652,422,3.5,1440271647 +652,442,4.0,1439492048 +652,477,4.0,1439585232 +652,494,4.5,1447364733 +652,539,4.0,1442692427 +652,550,5.0,1440269836 +652,588,4.0,1439489918 +652,592,4.0,1442692543 +652,597,3.5,1439583820 +652,627,4.0,1440271139 +652,628,4.0,1439584168 +652,708,4.0,1439584086 +652,719,4.0,1322812264 +652,780,5.0,1439489966 +652,984,4.0,1439586161 +652,988,4.5,1440273288 +652,998,4.0,1440272460 +652,1046,4.0,1442691494 +652,1064,4.0,1440270019 +652,1197,4.0,1442692438 +652,1265,4.0,1439583823 +652,1377,5.0,1439490547 +652,1497,3.0,1439581777 +652,1527,5.0,1439486571 +652,1562,4.0,1439580116 +652,1573,3.5,1439490039 +652,1586,3.5,1439584574 +652,1603,4.0,1440270050 +652,1612,5.0,1442690774 +652,1653,4.0,1439585922 +652,1678,4.0,1439585040 +652,1748,4.0,1442691503 +652,1767,4.0,1442084902 +652,1845,5.0,1439589294 +652,1885,4.0,1440269649 +652,1903,5.0,1439586120 +652,1907,4.0,1439584547 +652,1961,4.0,1439493382 +652,2001,3.5,1439489537 +652,2011,4.0,1439584062 +652,2029,5.0,1439586255 +652,2058,4.0,1326149512 +652,2081,4.0,1439584109 +652,2092,3.5,1440271108 +652,2094,5.0,1439581090 +652,2096,4.0,1440269017 +652,2100,5.0,1439581086 +652,2115,4.0,1442694300 +652,2133,5.0,1439586746 +652,2247,3.5,1440270472 +652,2264,4.0,1440272926 +652,2268,4.0,1439493384 +652,2273,4.0,1439489571 +652,2318,4.0,1439585255 +652,2340,4.0,1440269519 +652,2374,3.5,1440271398 +652,2390,3.5,1440270353 +652,2405,4.5,1322811942 +652,2424,4.0,1439584163 +652,2443,4.5,1440271826 +652,2468,4.0,1440270097 +652,2469,4.0,1440269763 +652,2491,4.0,1440272335 +652,2502,4.0,1439584052 +652,2545,5.0,1439586283 +652,2549,4.0,1439580452 +652,2600,5.0,1439584894 +652,2607,5.0,1439488179 +652,2626,5.0,1439586307 +652,2671,3.5,1439584131 +652,2672,4.0,1439585340 +652,2690,5.0,1439589086 +652,2721,5.0,1439487885 +652,2797,5.0,1439587361 +652,2864,3.0,1451789942 +652,2887,4.0,1439581759 +652,2997,4.0,1439583857 +652,3004,4.0,1440271210 +652,3044,4.0,1322812476 +652,3087,4.0,1322812422 +652,3104,4.0,1440269528 +652,3213,4.0,1440027747 +652,3252,5.0,1439490330 +652,3264,4.0,1439584966 +652,3270,4.0,1440271439 +652,3282,4.0,1442084000 +652,3408,4.0,1439584078 +652,3418,4.0,1439586050 +652,3453,4.0,1439581842 +652,3457,5.0,1440272991 +652,3466,4.5,1440272001 +652,3512,4.0,1440267003 +652,3575,5.0,1449535091 +652,3793,4.0,1439489542 +652,3825,4.0,1439585312 +652,3914,5.0,1439586299 +652,3952,5.0,1439587510 +652,4006,5.0,1440270028 +652,4014,4.0,1439584250 +652,4054,4.5,1440266964 +652,4085,4.0,1439486623 +652,4090,5.0,1439587348 +652,4116,4.0,1440273522 +652,4121,4.0,1442693746 +652,4132,4.5,1440271172 +652,4141,4.0,1447366672 +652,4223,4.0,1439581986 +652,4246,4.0,1439584153 +652,4342,5.0,1440029079 +652,4372,4.0,1440265818 +652,4496,4.0,1440273038 +652,4545,4.0,1440269827 +652,4616,5.0,1439589243 +652,4673,3.5,1439580345 +652,4722,5.0,1439586240 +652,4724,5.0,1442084916 +652,4929,4.0,1440272625 +652,5064,4.0,1439581981 +652,5106,4.5,1440272217 +652,5229,5.0,1442083277 +652,5264,5.0,1439587442 +652,5271,4.0,1447791242 +652,5349,4.0,1439489897 +652,5377,5.0,1439584403 +652,5530,4.0,1440265823 +652,5812,4.0,1440265513 +652,6033,5.0,1439586809 +652,6059,5.0,1440265362 +652,6060,4.0,1440273293 +652,6294,4.0,1440265712 +652,6295,4.0,1442083823 +652,6333,3.5,1439489461 +652,6341,4.0,1439586128 +652,6342,5.0,1442083245 +652,6367,4.0,1440265671 +652,6369,5.0,1442083304 +652,6762,4.0,1442085456 +652,6769,5.0,1442082519 +652,6770,5.0,1439589129 +652,6881,4.0,1440265884 +652,6966,4.5,1440271768 +652,7036,3.5,1440271954 +652,7260,5.0,1440029050 +652,7380,4.0,1440272069 +652,7625,4.0,1442084290 +652,7627,4.5,1449535341 +652,7782,4.0,1439581641 +652,8256,4.0,1442693293 +652,8453,4.0,1442083596 +652,8533,4.0,1439585307 +652,8636,3.5,1439490169 +652,8699,5.0,1439587538 +652,8969,5.0,1440265465 +652,8972,4.5,1439490287 +652,8981,4.0,1439490693 +652,26791,5.0,1439588577 +652,26843,5.0,1440269953 +652,26854,4.0,1442085190 +652,27700,5.0,1440273163 +652,27826,5.0,1442690765 +652,31408,4.0,1442085302 +652,36527,4.0,1440272274 +652,45732,4.0,1440272039 +652,49286,4.0,1440265591 +652,49957,4.0,1442085420 +652,53138,4.0,1439495707 +652,54251,5.0,1439586346 +652,55451,5.0,1439493339 +652,56775,4.0,1440270458 +652,57669,4.0,1439584921 +652,59549,5.0,1439487924 +652,60086,4.0,1439587482 +652,63876,4.0,1440027546 +652,63992,4.0,1440267021 +652,68835,4.5,1442082655 +652,69495,3.0,1442085805 +652,69805,4.0,1439495757 +652,70762,5.0,1439587524 +652,72947,4.0,1439587026 +652,79163,4.0,1442083900 +652,80584,4.5,1442085352 +652,81229,4.0,1439489458 +652,82608,5.0,1442083346 +652,84152,3.0,1457366141 +652,84414,5.0,1439492987 +652,87232,4.0,1439486541 +652,89745,5.0,1439486598 +652,89870,4.5,1442083045 +652,91199,3.5,1439487912 +652,92613,4.0,1442084526 +652,92966,4.0,1442084378 +652,94323,4.0,1442084939 +652,95873,4.0,1439586144 +652,98933,5.0,1442084707 +652,99609,4.5,1442084857 +652,99615,4.0,1439587013 +652,100017,3.0,1451789068 +652,101415,4.0,1449535463 +652,102125,4.0,1439489527 +652,103731,5.0,1439586954 +652,104374,4.0,1439582045 +652,106417,3.0,1439488190 +652,107083,5.0,1440027165 +652,108551,3.0,1439488240 +652,108795,4.0,1442082700 +652,109183,4.0,1442085294 +652,109359,4.0,1439488287 +652,110058,3.0,1439491845 +652,110781,4.0,1442084222 +652,111362,4.0,1439486562 +652,111759,3.0,1457366129 +652,113862,3.5,1447364705 +652,115713,4.0,1439486716 +652,116660,4.0,1442085327 +652,116855,4.0,1439487852 +652,119145,3.5,1439579477 +652,122892,3.5,1447808069 +652,127728,5.0,1439586990 +652,129009,4.0,1442690827 +652,130522,5.0,1439587388 +652,130628,4.0,1439488075 +652,130960,3.5,1442085539 +652,135264,4.0,1442696431 +652,135266,4.0,1442696469 +652,135268,4.0,1442696465 +652,137403,3.5,1442082603 +652,140739,5.0,1439585580 +652,140741,5.0,1439585771 +652,140743,5.0,1439586481 +652,140745,5.0,1439586605 +652,140747,5.0,1439586664 +652,140749,5.0,1439586708 +652,140751,5.0,1439586931 +652,140753,4.0,1439587070 +652,140755,5.0,1439587113 +652,140757,4.0,1439587156 +652,140759,5.0,1439587219 +652,140761,5.0,1439587262 +652,140763,5.0,1439587331 +652,140880,4.0,1440029031 +652,141124,5.0,1440273477 +652,142068,5.0,1442690431 +652,142240,5.0,1442691006 +652,146443,3.0,1451790739 +652,146501,2.5,1449533204 +652,146604,3.0,1449533506 +652,147037,5.0,1447808622 +653,1,4.0,948160430 +653,19,3.0,948160498 +653,34,4.0,948160595 +653,39,5.0,948161400 +653,150,4.0,948160595 +653,216,5.0,948160832 +653,261,5.0,948160944 +653,356,5.0,948161010 +653,364,5.0,948160561 +653,440,4.0,948161152 +653,457,4.0,948160832 +653,500,4.0,948160992 +653,539,4.0,948161301 +653,569,3.0,948160666 +653,575,4.0,948160482 +653,588,5.0,948160926 +653,590,4.0,948160610 +653,595,5.0,948160498 +653,688,3.0,948161440 +653,720,5.0,948160316 +653,801,3.0,948158771 +653,838,4.0,948160543 +653,986,4.0,948160543 +653,1015,4.0,948160748 +653,1042,5.0,948161400 +653,1097,4.0,948158467 +653,1197,5.0,948158779 +653,1367,3.0,948161182 +653,1517,5.0,948161010 +653,1580,5.0,948161400 +653,1653,4.0,948160430 +653,1682,5.0,948161182 +653,1721,3.0,948158439 +653,1805,1.0,948158439 +653,1848,3.0,948160790 +653,2036,3.0,948158771 +653,2083,3.0,948161066 +653,2103,3.0,948161066 +653,2125,5.0,948161425 +653,2687,4.0,948160561 +653,2762,5.0,948160511 +653,2978,3.0,948159690 +653,3004,3.0,948158942 +653,3051,5.0,948159188 +653,3082,4.0,948159373 +653,3114,5.0,948158942 +653,3156,5.0,948158942 +653,3157,3.0,948159373 +653,3173,1.0,948158942 +653,3176,4.0,948159125 +653,3185,5.0,948159624 +654,1,5.0,1145390085 +654,2,3.0,1145389613 +654,5,4.0,1145392131 +654,10,4.0,1145391869 +654,11,4.5,1145391997 +654,15,2.0,1145389919 +654,17,4.5,1145391936 +654,19,4.5,1145392014 +654,24,4.5,1145392651 +654,32,5.0,1145390343 +654,34,4.5,1145389461 +654,36,4.5,1145391943 +654,47,4.5,1145390374 +654,48,2.0,1145392232 +654,50,5.0,1145390204 +654,60,3.5,1145393087 +654,62,4.5,1145391949 +654,70,3.5,1145392363 +654,94,4.0,1145393671 +654,104,4.5,1145389608 +654,105,4.0,1145392423 +654,107,4.0,1145393093 +654,110,4.5,1145390184 +654,112,4.0,1145392148 +654,141,4.0,1145391918 +654,150,5.0,1145390280 +654,153,3.5,1145391820 +654,158,4.0,1145392249 +654,161,4.5,1145391894 +654,165,4.0,1145391816 +654,172,4.0,1145392235 +654,180,4.0,1145392768 +654,186,3.5,1145392276 +654,193,1.0,1145392817 +654,208,2.5,1145391900 +654,223,5.0,1145389599 +654,225,4.5,1145392128 +654,231,4.0,1145391855 +654,235,4.5,1145389372 +654,236,4.0,1145392195 +654,252,3.5,1145392380 +654,253,4.0,1145391897 +654,256,3.0,1145392546 +654,260,5.0,1145390107 +654,262,5.0,1145393962 +654,292,4.5,1145391872 +654,293,4.5,1145390293 +654,296,5.0,1145390861 +654,316,4.0,1145391826 +654,317,4.0,1145392052 +654,318,5.0,1145390159 +654,319,4.0,1145392831 +654,329,4.0,1145391848 +654,337,4.0,1145392049 +654,339,4.0,1145391922 +654,344,4.5,1145391813 +654,349,4.0,1145391824 +654,350,4.0,1145389340 +654,356,4.0,1145390555 +654,364,5.0,1145390453 +654,366,4.0,1145394447 +654,367,4.5,1145391866 +654,368,3.5,1145389298 +654,370,4.0,1145392143 +654,372,4.5,1145392677 +654,376,4.0,1145392176 +654,377,4.0,1145391807 +654,380,4.0,1145391796 +654,410,4.0,1145392006 +654,415,4.5,1145394022 +654,434,4.0,1145391885 +654,440,4.0,1145391964 +654,442,3.5,1145389291 +654,450,4.0,1145394193 +654,454,4.0,1145391891 +654,457,4.5,1145391792 +654,466,4.5,1145389593 +654,474,4.0,1145390352 +654,480,4.5,1145391789 +654,485,2.0,1145392319 +654,500,4.5,1145391852 +654,502,3.0,1145394226 +654,519,3.0,1145393729 +654,520,4.0,1145392221 +654,527,5.0,1145390371 +654,531,5.0,1145392960 +654,539,4.0,1145391880 +654,541,4.0,1145389458 +654,542,3.5,1145394012 +654,543,4.0,1145392256 +654,551,5.0,1145389584 +654,552,4.0,1145392270 +654,555,4.0,1145390677 +654,585,3.5,1145392497 +654,586,4.5,1145391945 +654,587,5.0,1145391875 +654,588,4.5,1145390414 +654,589,5.0,1145389457 +654,590,4.5,1145389447 +654,592,4.5,1145390435 +654,593,4.5,1145390319 +654,594,4.0,1145389351 +654,595,5.0,1145390689 +654,597,4.0,1145391843 +654,608,4.0,1145389444 +654,647,4.5,1145392552 +654,648,4.5,1145391809 +654,653,3.5,1145392078 +654,661,4.0,1145392466 +654,671,4.0,1145389893 +654,673,3.5,1145392556 +654,708,3.0,1145389356 +654,733,4.0,1145391840 +654,736,3.0,1145391834 +654,743,3.5,1145393043 +654,748,4.0,1145393047 +654,761,3.5,1145393794 +654,780,4.0,1145391799 +654,783,4.0,1145392426 +654,802,4.5,1145392192 +654,805,4.5,1145392313 +654,818,3.5,1145394270 +654,832,4.5,1145392107 +654,852,2.5,1145392352 +654,858,4.5,1145391858 +654,879,3.0,1145394704 +654,919,5.0,1145391973 +654,924,4.0,1145391999 +654,1027,4.0,1145392951 +654,1028,4.5,1145392288 +654,1036,4.5,1145390162 +654,1037,0.5,1145392839 +654,1042,4.5,1145392654 +654,1060,4.5,1145390652 +654,1073,3.5,1145391888 +654,1079,4.0,1145390365 +654,1080,4.0,1145389376 +654,1089,5.0,1145390863 +654,1092,4.5,1145392453 +654,1097,5.0,1145390695 +654,1101,4.0,1145389354 +654,1126,3.5,1145394342 +654,1127,4.0,1145390357 +654,1129,4.5,1145392601 +654,1136,5.0,1145390196 +654,1183,4.5,1145392058 +654,1193,3.5,1145389441 +654,1196,5.0,1145390096 +654,1197,4.5,1145390093 +654,1198,5.0,1145390082 +654,1200,5.0,1145390179 +654,1210,4.0,1145390127 +654,1213,4.0,1145389565 +654,1214,5.0,1145390391 +654,1215,4.0,1145389561 +654,1220,4.0,1145389334 +654,1225,4.5,1145389329 +654,1240,4.5,1145390300 +654,1246,5.0,1145390505 +654,1252,4.5,1145392189 +654,1257,3.5,1145390115 +654,1259,5.0,1145390208 +654,1265,4.0,1145390429 +654,1266,5.0,1145390602 +654,1270,4.5,1145389439 +654,1278,4.5,1145390266 +654,1282,4.5,1145390799 +654,1285,4.5,1145389550 +654,1288,4.5,1145390807 +654,1291,4.5,1145390078 +654,1307,4.0,1145391991 +654,1320,3.5,1145392300 +654,1343,4.0,1145392574 +654,1345,4.0,1145389863 +654,1347,4.5,1145393056 +654,1356,4.5,1145391986 +654,1357,4.5,1145390921 +654,1358,4.0,1145390756 +654,1359,1.5,1145389856 +654,1370,4.0,1145392161 +654,1371,4.0,1145392530 +654,1372,4.5,1145392384 +654,1373,2.0,1145392929 +654,1374,5.0,1145389547 +654,1375,4.0,1145392438 +654,1376,4.5,1145392284 +654,1377,4.5,1145392393 +654,1378,4.5,1145393059 +654,1379,4.0,1145389852 +654,1387,4.5,1145392022 +654,1391,4.0,1145392095 +654,1393,4.5,1145391977 +654,1396,4.5,1145392247 +654,1405,4.5,1145392640 +654,1407,4.5,1145392088 +654,1409,3.5,1145393163 +654,1429,4.0,1145394043 +654,1449,4.5,1145390567 +654,1461,3.5,1145394623 +654,1485,4.5,1145392105 +654,1500,4.0,1145390296 +654,1517,4.0,1145389307 +654,1527,4.0,1145391980 +654,1544,3.5,1145392238 +654,1552,4.0,1145392307 +654,1562,3.0,1145392721 +654,1566,3.5,1145393803 +654,1573,4.5,1145392072 +654,1580,4.5,1145391909 +654,1584,3.5,1145389305 +654,1586,4.0,1145393090 +654,1588,4.0,1145394142 +654,1597,3.0,1145392475 +654,1608,4.5,1145392224 +654,1614,3.5,1145393545 +654,1617,5.0,1145390486 +654,1625,4.5,1145389543 +654,1639,3.5,1145389540 +654,1641,4.0,1145392103 +654,1645,3.5,1145392482 +654,1653,4.5,1145390962 +654,1663,4.0,1145389835 +654,1682,4.0,1145390455 +654,1688,4.0,1145394337 +654,1693,4.5,1145393758 +654,1704,4.0,1145390423 +654,1717,4.0,1145393070 +654,1721,5.0,1145391911 +654,1729,4.0,1145392540 +654,1748,4.0,1145390332 +654,1777,4.0,1145389534 +654,1779,3.0,1145393492 +654,1784,4.0,1145390604 +654,1797,5.0,1145390636 +654,1888,4.0,1145394233 +654,1894,3.0,1145393646 +654,1907,4.5,1145393015 +654,1909,4.0,1145392412 +654,1923,4.5,1145391987 +654,1967,4.5,1145390883 +654,1968,4.5,1145390419 +654,2000,4.5,1145392115 +654,2001,4.0,1145392273 +654,2002,4.0,1145392687 +654,2003,4.0,1145392485 +654,2004,3.5,1145393943 +654,2005,4.0,1145392625 +654,2006,4.5,1145392334 +654,2011,4.0,1145392100 +654,2012,4.0,1145389364 +654,2028,5.0,1145390368 +654,2072,4.0,1145394599 +654,2081,4.5,1145392241 +654,2082,4.0,1145393994 +654,2094,4.0,1145393033 +654,2100,4.0,1145392337 +654,2105,3.5,1145392609 +654,2108,4.5,1145392728 +654,2109,4.5,1145390747 +654,2115,4.5,1145389531 +654,2124,4.5,1145392915 +654,2133,4.0,1145393703 +654,2134,3.5,1145393566 +654,2139,4.0,1145389811 +654,2140,4.5,1145389809 +654,2141,4.5,1145393919 +654,2144,4.5,1145392786 +654,2150,4.0,1145389529 +654,2161,4.0,1145392635 +654,2174,4.5,1145389366 +654,2193,4.0,1145392632 +654,2194,3.5,1145392172 +654,2232,4.0,1145393873 +654,2253,3.5,1145394135 +654,2268,5.0,1145392179 +654,2273,4.0,1145392681 +654,2291,5.0,1145390740 +654,2294,4.0,1145392596 +654,2301,5.0,1145394077 +654,2302,4.5,1145389521 +654,2321,3.5,1145392297 +654,2335,3.5,1145393597 +654,2340,4.0,1145393779 +654,2355,4.5,1145390224 +654,2359,3.5,1145390592 +654,2376,3.0,1145394384 +654,2384,4.0,1145393653 +654,2391,4.0,1145392947 +654,2394,4.0,1145393203 +654,2396,4.5,1145391954 +654,2405,4.0,1145393155 +654,2406,4.5,1145392152 +654,2407,4.0,1145392501 +654,2413,4.0,1145394034 +654,2420,4.5,1145392986 +654,2423,4.5,1145393570 +654,2424,3.5,1145392524 +654,2427,3.0,1145392828 +654,2431,4.0,1145389796 +654,2463,4.0,1145389791 +654,2470,4.0,1145392435 +654,2471,3.5,1145389787 +654,2478,4.5,1145393170 +654,2485,3.5,1145393594 +654,2501,4.5,1145390216 +654,2502,4.5,1145390458 +654,2528,4.0,1145393603 +654,2539,3.0,1145392660 +654,2567,3.0,1145394055 +654,2571,5.0,1145390166 +654,2581,4.0,1145393026 +654,2617,4.0,1145392165 +654,2628,3.5,1145391930 +654,2640,4.5,1145392121 +654,2641,4.5,1145392810 +654,2642,3.5,1145393742 +654,2643,3.0,1145394306 +654,2657,2.0,1145392259 +654,2671,3.5,1145392419 +654,2672,3.5,1145394127 +654,2683,4.5,1145392003 +654,2687,4.5,1145393773 +654,2694,3.5,1145392700 +654,2699,3.5,1145392213 +654,2700,4.5,1145389518 +654,2706,4.5,1145392031 +654,2710,4.0,1145389368 +654,2712,2.0,1145392199 +654,2713,3.5,1145394155 +654,2716,4.5,1145389437 +654,2717,4.0,1145393007 +654,2718,4.5,1145389774 +654,2722,3.5,1145393036 +654,2723,3.5,1145392757 +654,2724,1.5,1145392749 +654,2735,4.5,1145393935 +654,2746,4.5,1145392761 +654,2759,3.5,1145394250 +654,2762,5.0,1145390175 +654,2791,4.5,1145390525 +654,2792,4.0,1145394046 +654,2794,4.0,1145394276 +654,2795,4.5,1145389765 +654,2797,4.5,1145392054 +654,2803,4.0,1145393915 +654,2804,5.0,1145390252 +654,2805,3.5,1145393783 +654,2808,3.0,1145394130 +654,2858,5.0,1145390940 +654,2881,3.5,1145392906 +654,2890,4.5,1145390589 +654,2908,4.0,1145392913 +654,2916,4.5,1145392038 +654,2918,4.5,1145390154 +654,2947,4.5,1145390335 +654,2948,2.0,1145389750 +654,2949,4.5,1145390657 +654,2953,4.0,1145393495 +654,2959,5.0,1145390766 +654,2968,5.0,1145392684 +654,2985,5.0,1145392343 +654,2986,4.0,1145393750 +654,2987,4.0,1145390313 +654,2989,3.5,1145394072 +654,2991,4.0,1145393853 +654,2993,3.5,1145394085 +654,2997,4.0,1145391965 +654,3000,3.0,1145390490 +654,3006,4.0,1145389514 +654,3016,3.5,1145394436 +654,3033,4.5,1145392514 +654,3044,5.0,1145390762 +654,3052,4.0,1145392303 +654,3081,5.0,1145390672 +654,3087,3.5,1145389743 +654,3101,4.0,1145392378 +654,3107,4.5,1145392966 +654,3108,4.5,1145392780 +654,3114,5.0,1145389313 +654,3146,3.0,1145389736 +654,3147,5.0,1145390304 +654,3148,5.0,1145393121 +654,3159,4.5,1145390871 +654,3174,4.0,1145392921 +654,3175,4.0,1145390339 +654,3210,4.0,1145390824 +654,3247,4.0,1145393147 +654,3249,4.0,1145394583 +654,3253,4.5,1145392408 +654,3254,4.0,1145393760 +654,3255,3.5,1145389507 +654,3259,4.0,1145394420 +654,3261,4.0,1145394428 +654,3264,4.0,1145393913 +654,3269,4.0,1145394321 +654,3274,4.0,1145394408 +654,3300,2.5,1145393197 +654,3301,2.5,1145389717 +654,3354,1.0,1145393436 +654,3386,4.5,1145393011 +654,3396,4.5,1145393174 +654,3408,4.0,1145389499 +654,3421,5.0,1145390385 +654,3441,4.0,1145394541 +654,3471,5.0,1145390360 +654,3476,4.5,1145393857 +654,3479,4.5,1145394027 +654,3481,4.5,1145390846 +654,3489,4.0,1145393004 +654,3499,4.5,1145390275 +654,3510,4.5,1145392978 +654,3526,4.5,1145390873 +654,3527,4.5,1145390832 +654,3535,4.0,1145389709 +654,3536,3.5,1145393924 +654,3578,4.0,1145390557 +654,3608,4.5,1145393555 +654,3624,4.0,1145393084 +654,3635,4.0,1145394188 +654,3638,3.5,1145393941 +654,3639,4.5,1145394327 +654,3671,4.5,1145390260 +654,3686,4.0,1145394301 +654,3697,4.0,1145393723 +654,3698,3.0,1145393477 +654,3699,4.5,1145393828 +654,3740,3.5,1145389702 +654,3745,4.0,1145393627 +654,3751,4.0,1145390552 +654,3753,4.5,1145392386 +654,3755,3.5,1145389497 +654,3763,4.5,1145389698 +654,3785,4.5,1145389696 +654,3793,4.0,1145389316 +654,3809,4.0,1145393559 +654,3844,4.0,1145394470 +654,3863,3.5,1145392935 +654,3868,4.5,1145389694 +654,3869,4.0,1145394039 +654,3897,4.0,1145390327 +654,3911,4.0,1145389495 +654,3916,4.5,1145393144 +654,3948,4.5,1145392402 +654,3967,3.0,1145393112 +654,3977,3.5,1145392227 +654,3984,3.5,1145394110 +654,3994,4.0,1145392457 +654,3996,4.5,1145389302 +654,4002,4.5,1145390478 +654,4007,5.0,1145394100 +654,4014,4.5,1145392712 +654,4016,4.5,1145393833 +654,4018,2.0,1145392995 +654,4022,3.5,1145392216 +654,4023,3.5,1145389685 +654,4025,4.0,1145392919 +654,4027,4.0,1145390517 +654,4034,5.0,1145390977 +654,4061,4.0,1145390007 +654,4069,2.0,1145389679 +654,4085,4.0,1145389493 +654,4121,4.0,1145394478 +654,4128,4.5,1145390500 +654,4148,4.0,1145393488 +654,4226,5.0,1145390503 +654,4246,4.0,1145392566 +654,4262,4.0,1145393210 +654,4270,4.0,1145393180 +654,4306,5.0,1145390245 +654,4308,2.0,1145392616 +654,4310,2.5,1145389672 +654,4321,4.5,1145393139 +654,4370,4.0,1145392737 +654,4447,4.0,1145389668 +654,4458,4.5,1145390411 +654,4489,4.5,1145394220 +654,4499,4.0,1145390363 +654,4545,4.0,1145394629 +654,4571,3.5,1145389663 +654,4621,4.0,1145394528 +654,4638,3.0,1145393562 +654,4641,3.5,1145393668 +654,4643,3.5,1145392998 +654,4678,3.5,1145389991 +654,4701,4.0,1145393838 +654,4718,4.0,1145393217 +654,4720,4.5,1145390532 +654,4734,5.0,1145393673 +654,4776,4.5,1145393526 +654,4816,3.0,1145393734 +654,4865,4.0,1145394351 +654,4878,5.0,1145391060 +654,4886,5.0,1145390136 +654,4896,4.0,1145390514 +654,4963,4.0,1145390449 +654,4975,3.5,1145393468 +654,4979,3.5,1145389480 +654,4980,3.5,1145394503 +654,4993,5.0,1145390118 +654,4995,5.0,1145390853 +654,5064,4.0,1145394179 +654,5171,3.5,1145394597 +654,5218,3.5,1145393029 +654,5266,4.5,1145393650 +654,5299,4.5,1145392743 +654,5308,4.0,1145394652 +654,5349,5.0,1145389477 +654,5377,4.5,1145389659 +654,5378,4.0,1145392491 +654,5388,4.0,1145393613 +654,5444,4.5,1145390898 +654,5445,4.5,1145390639 +654,5459,3.0,1145389657 +654,5481,4.0,1145393537 +654,5500,4.0,1145390397 +654,5502,4.5,1145392908 +654,5528,4.0,1145394239 +654,5618,3.5,1145390877 +654,5630,4.5,1145394063 +654,5650,4.0,1145390546 +654,5679,4.0,1145389654 +654,5782,4.0,1145389973 +654,5816,4.5,1145389474 +654,5945,3.0,1145393948 +654,5952,5.0,1145389346 +654,5956,4.5,1145393817 +654,5970,4.5,1145389969 +654,5989,4.5,1145390572 +654,5991,4.5,1145389651 +654,6156,4.0,1145389959 +654,6157,2.0,1145389641 +654,6188,4.0,1145394310 +654,6281,4.5,1145389639 +654,6287,3.5,1145389955 +654,6296,4.0,1145394635 +654,6297,4.0,1145390811 +654,6323,3.5,1145389636 +654,6333,4.5,1145390074 +654,6365,4.0,1145392577 +654,6373,4.0,1145393870 +654,6377,5.0,1145389470 +654,6378,4.0,1145393460 +654,6385,5.0,1145394544 +654,6502,4.0,1145390984 +654,6503,1.0,1145394547 +654,6534,2.5,1145394459 +654,6537,3.5,1145393618 +654,6539,4.5,1145390212 +654,6565,4.5,1145391005 +654,6708,4.0,1145390903 +654,6711,2.5,1145392703 +654,6807,4.5,1145390973 +654,6863,4.5,1145390932 +654,6870,4.0,1145391226 +654,6874,4.5,1145389466 +654,6934,4.0,1145393449 +654,6936,4.5,1145394696 +654,6942,5.0,1145390901 +654,6947,4.0,1145390847 +654,6953,3.5,1145389629 +654,6957,4.0,1145389944 +654,6979,4.0,1145390440 +654,7028,4.0,1145390140 +654,7090,4.5,1145390856 +654,7143,3.5,1145389626 +654,7147,5.0,1145390632 +654,7153,5.0,1145389464 +654,7162,4.5,1145389941 +654,7254,4.0,1145389621 +654,7361,4.0,1145391109 +654,7438,4.0,1145390611 +654,7458,4.0,1145394441 +654,7569,4.0,1145390661 +654,8360,4.5,1145390586 +654,8368,5.0,1145390271 +654,8376,4.5,1145394588 +654,8464,4.0,1145390790 +654,8504,4.5,1145391310 +654,8528,4.5,1145394682 +654,8622,1.5,1145393639 +654,8636,5.0,1145390121 +654,8784,4.5,1145391136 +654,8827,4.5,1145390089 +654,8914,4.0,1145390629 +654,8949,3.5,1145394049 +654,8958,4.5,1145391249 +654,8961,5.0,1145390234 +654,8970,4.5,1145389618 +654,26819,4.0,1145391359 +654,30707,4.0,1145390953 +654,30793,4.0,1145391716 +654,30812,5.0,1145390571 +654,30825,3.0,1145389926 +654,32587,4.5,1145390731 +654,33166,4.5,1145391181 +654,33493,4.5,1145390758 +654,33660,5.0,1145390241 +654,33794,4.5,1145390109 +654,33836,2.0,1145391739 +654,34048,4.0,1145391736 +654,34072,4.5,1145390888 +654,34319,4.0,1145391692 +654,34332,4.5,1145391697 +654,34405,4.5,1145390059 +654,34528,4.0,1145391577 +654,34532,4.0,1145391583 +654,35836,5.0,1145390709 +654,35957,4.5,1145391547 +654,37727,3.0,1145391514 +654,37729,4.0,1145391509 +654,37733,4.5,1145390744 +654,37741,3.5,1145390445 +654,38038,5.0,1145389923 +654,39292,3.5,1145390735 +654,40278,4.0,1145390237 +654,40815,5.0,1145390099 +654,40819,4.5,1145390311 +654,41566,4.0,1145390474 +654,41569,4.0,1145390406 +654,41997,4.0,1145390190 +654,42009,3.0,1145391400 +654,42734,3.0,1145391377 +654,43560,4.5,1145390389 +654,44022,4.0,1145391315 +654,44191,4.5,1145390071 +654,44199,4.0,1145390063 +655,2,4.0,1470073353 +655,18,4.0,1470073389 +655,32,4.0,1470074140 +655,50,5.0,1470070848 +655,163,4.0,1470073512 +655,253,4.0,1470074305 +655,260,2.5,1470072119 +655,296,4.0,1470071481 +655,316,4.0,1470071973 +655,353,4.0,1470071244 +655,364,4.5,1470072370 +655,367,4.0,1470074088 +655,368,5.0,1470070865 +655,520,2.0,1470074239 +655,588,4.5,1470073101 +655,595,4.0,1470073702 +655,750,5.0,1470070698 +655,1080,3.0,1470072425 +655,1136,5.0,1470070418 +655,1196,2.5,1470072117 +655,1197,5.0,1470070287 +655,1198,5.0,1470071137 +655,1247,4.0,1470073475 +655,1258,4.0,1470072938 +655,1261,5.0,1470071454 +655,1265,4.0,1470072540 +655,1270,5.0,1470070337 +655,1291,5.0,1470071173 +655,1527,4.0,1470072409 +655,1645,4.5,1470071840 +655,1748,4.0,1470074467 +655,1799,4.0,1470070990 +655,1923,5.0,1470070717 +655,2006,4.0,1470072791 +655,2174,4.0,1470071203 +655,2302,4.0,1470074229 +655,2423,4.0,1470073495 +655,2502,4.0,1470072221 +655,2542,5.0,1470070689 +655,2571,5.0,1470070517 +655,2617,5.0,1470070741 +655,2706,4.5,1470072923 +655,2716,4.5,1470071224 +655,2746,4.0,1470072584 +655,2918,5.0,1470071469 +655,2959,5.0,1470071900 +655,2997,3.5,1470072598 +655,3016,4.0,1470073527 +655,3017,3.5,1470073536 +655,3018,4.0,1470073438 +655,3039,4.0,1470071371 +655,3052,5.0,1470070662 +655,3175,4.5,1470071355 +655,3210,4.0,1470073215 +655,3421,5.0,1470071402 +655,3617,5.0,1470071605 +655,3968,4.0,1470071513 +655,4011,5.0,1470070367 +655,4105,4.0,1470074548 +655,4299,4.0,1470072697 +655,4306,4.5,1470072180 +655,4499,4.5,1470071752 +655,4533,4.0,1470074561 +655,4571,4.0,1470074407 +655,4720,3.5,1470075586 +655,4993,5.0,1470070639 +655,5303,4.0,1470074989 +655,5952,5.0,1470070640 +655,5991,4.0,1470075659 +655,6378,3.0,1470075174 +655,6539,5.0,1470070445 +655,6874,5.0,1470070815 +655,6902,4.0,1470074343 +655,6957,4.0,1470073372 +655,7153,5.0,1470070641 +655,7254,2.0,1470071807 +655,7438,2.5,1470072662 +655,7817,4.0,1470074428 +655,8874,4.0,1470071418 +655,8957,5.0,1470071439 +655,30793,4.0,1470073648 +655,32587,5.0,1470071619 +655,45722,5.0,1470071324 +655,46578,1.0,1470075044 +655,47997,4.0,1470071341 +655,48385,4.0,1470075219 +655,54259,4.0,1470074381 +655,54999,4.0,1470071498 +655,56715,4.0,1470072856 +655,58559,5.0,1470071088 +655,59387,4.0,1470075279 +655,59784,4.5,1470071960 +655,60684,3.0,1470072739 +655,68954,3.5,1470074877 +655,69122,3.0,1470075128 +655,71535,4.5,1470070964 +655,72998,4.0,1470074863 +655,79132,2.0,1470072052 +655,83134,4.0,1470073421 +655,91500,2.0,1470072391 +655,99114,3.0,1470075110 +655,116397,4.0,1470073336 +655,143859,3.0,1470075909 +655,148626,3.0,1470075763 +655,158314,4.5,1470071021 +656,24,4.0,986243844 +656,345,5.0,986242379 +656,412,5.0,986242405 +656,588,5.0,986242465 +656,779,4.0,986242211 +656,858,5.0,986241026 +656,900,5.0,986242635 +656,909,5.0,986242835 +656,913,5.0,986243618 +656,924,3.0,986242241 +656,926,5.0,986242527 +656,932,5.0,986242405 +656,940,5.0,986242379 +656,952,5.0,986242857 +656,969,5.0,986242405 +656,1019,4.0,986242241 +656,1032,5.0,986242496 +656,1090,4.0,986241026 +656,1200,5.0,986242527 +656,1203,5.0,986242241 +656,1208,5.0,986242835 +656,1214,5.0,986242496 +656,1225,5.0,986242569 +656,1230,5.0,986242811 +656,1269,5.0,986242886 +656,1513,5.0,986243870 +656,1608,5.0,986242424 +656,1690,5.0,986242527 +656,1692,5.0,986242496 +656,1693,5.0,986242652 +656,1694,3.0,986242835 +656,1784,5.0,986242886 +656,1927,5.0,986242527 +656,1957,5.0,986240991 +656,1959,5.0,986243819 +656,2130,4.0,986242909 +656,2141,4.0,986242635 +656,2147,4.0,986243275 +656,2188,3.0,986243178 +656,2262,4.0,986242328 +656,2294,5.0,986242811 +656,2355,5.0,986243246 +656,2369,4.0,986243300 +656,2390,4.0,986243587 +656,2394,4.0,986243844 +656,2396,5.0,986243898 +656,2520,5.0,986241026 +656,2539,5.0,986242691 +656,2622,5.0,986243618 +656,2628,5.0,986240991 +656,2670,5.0,986243870 +656,2676,4.0,986243563 +656,2686,5.0,986243870 +656,2688,5.0,986243477 +656,2690,5.0,986243563 +656,2710,1.0,986243226 +656,2712,4.0,986243432 +656,2724,4.0,986243898 +656,2734,3.0,986243650 +656,2761,5.0,986243587 +656,2762,5.0,986243898 +656,2763,5.0,986243988 +656,2791,5.0,986242465 +656,2792,4.0,986242465 +656,2805,3.0,986243618 +656,2858,5.0,986242603 +656,2861,4.0,986243457 +656,2881,5.0,986243328 +656,2906,4.0,986243844 +656,2908,4.0,986243246 +656,2961,5.0,986243917 +656,2971,5.0,986242550 +656,2987,4.0,986244044 +656,3051,5.0,986242811 +656,3081,4.0,986243898 +656,3114,5.0,986243988 +656,3155,5.0,986242773 +656,3176,5.0,986243917 +656,3179,5.0,986242752 +656,3203,5.0,986243300 +656,3238,4.0,986243432 +656,3251,5.0,986242424 +656,3363,5.0,986242603 +656,3364,5.0,986242886 +656,3408,4.0,986243432 +656,3524,4.0,986242886 +656,3534,4.0,986242276 +656,3548,5.0,986242930 +656,3565,5.0,986244044 +656,3578,5.0,986243477 +656,3623,5.0,986243650 +656,3649,4.0,986242603 +656,3701,5.0,986242496 +656,3717,2.0,986243477 +656,3751,4.0,986243275 +656,3752,1.0,986243618 +656,3753,5.0,986243819 +656,3793,4.0,986244044 +656,3801,5.0,986242691 +656,3845,5.0,986242691 +656,3863,4.0,986243275 +656,3897,5.0,986242569 +656,3909,5.0,986244044 +656,3952,5.0,986243300 +656,3977,5.0,986243275 +656,3988,5.0,986243563 +656,4022,5.0,986241107 +656,4023,4.0,986241107 +656,4025,4.0,986241107 +656,4027,5.0,986241183 +656,4033,5.0,986241148 +656,4034,5.0,986241107 +656,4039,5.0,986242773 +656,4042,4.0,986242465 +656,4069,4.0,986241232 +656,4155,3.0,986242123 +656,4161,4.0,986241148 +656,4167,2.0,986241207 +656,4177,5.0,986242072 +656,4178,5.0,986242072 +656,4184,5.0,986242047 +656,4186,4.0,986242047 +656,4187,5.0,986242047 +656,4189,5.0,986242048 +656,4190,5.0,986242048 +656,4191,5.0,986242496 +656,4205,5.0,986241997 +656,4228,4.0,986241183 +657,150,4.0,841960681 +657,153,2.0,841960714 +657,161,4.0,841960771 +657,165,3.0,841960714 +657,253,4.0,841960819 +657,292,4.0,841960771 +657,296,5.0,841960682 +657,318,3.0,841960771 +657,329,4.0,841960771 +657,344,3.0,841960714 +657,356,3.0,841960819 +657,380,3.0,841960682 +657,457,4.0,841960742 +657,590,4.0,841960680 +657,592,3.0,841960679 +657,593,5.0,841960742 +657,595,3.0,841960742 +657,608,4.0,841960954 +657,648,3.0,841960920 +657,780,2.0,841960920 +658,34,4.0,941488542 +658,58,5.0,941489177 +658,62,5.0,941489024 +658,110,4.0,941488542 +658,111,5.0,941489475 +658,150,5.0,941489110 +658,151,5.0,941488989 +658,161,4.0,941488989 +658,296,3.0,941488704 +658,314,4.0,941489074 +658,318,4.0,941488424 +658,339,4.0,941489141 +658,356,5.0,941489110 +658,364,5.0,941489662 +658,468,4.0,941489475 +658,491,4.0,941489074 +658,497,5.0,941488905 +658,508,4.0,941488485 +658,527,5.0,941488384 +658,588,5.0,941489662 +658,593,4.0,941488384 +658,594,5.0,941489662 +658,595,3.0,941488664 +658,608,5.0,941488424 +658,800,3.0,941488664 +658,802,5.0,941489213 +658,912,5.0,941489587 +658,1210,4.0,941488587 +658,1233,5.0,941488782 +658,1247,5.0,941489588 +658,1271,5.0,941489177 +658,1339,4.0,941489405 +658,1356,3.0,941489074 +658,1358,5.0,941488953 +658,1398,4.0,941489405 +658,1408,5.0,941489276 +658,1608,4.0,941489074 +658,1610,5.0,941489024 +658,1617,4.0,941488485 +658,1633,3.0,941488339 +658,1641,3.0,941488339 +658,1678,4.0,941489475 +658,1694,5.0,941489244 +658,1704,4.0,941488704 +658,1721,5.0,941488823 +658,1747,4.0,941489441 +658,1810,4.0,941488782 +658,1947,5.0,941489587 +658,2028,5.0,941488823 +658,2087,5.0,941489662 +658,2249,3.0,941488704 +658,2268,3.0,941488542 +658,2291,3.0,941488704 +658,2302,5.0,941489214 +658,2321,5.0,941489508 +658,2396,5.0,941488905 +658,2670,5.0,941489847 +658,2716,5.0,941489847 +658,2953,3.0,941488823 +658,2987,5.0,941489662 +659,6,3.0,836216031 +659,14,4.0,837271765 +659,16,5.0,834598615 +659,17,4.0,839168922 +659,18,1.0,839090399 +659,19,1.0,834693429 +659,22,4.0,834693258 +659,24,3.0,835642366 +659,25,5.0,834598421 +659,29,4.0,861612034 +659,32,4.0,840210776 +659,35,3.0,834693748 +659,36,4.0,837455668 +659,43,3.0,845291355 +659,45,3.0,834693566 +659,47,4.0,835641852 +659,50,4.0,835642125 +659,55,3.0,842858683 +659,62,3.0,844078288 +659,64,3.0,837271578 +659,78,2.0,853835268 +659,81,3.0,847452032 +659,85,3.0,843673922 +659,89,2.0,842524638 +659,92,4.0,848313665 +659,105,3.0,834694937 +659,110,3.0,839842574 +659,113,4.0,851960210 +659,144,3.0,835642346 +659,150,5.0,834598040 +659,151,4.0,834692716 +659,153,3.0,835642452 +659,155,3.0,835642452 +659,160,2.0,834694778 +659,162,4.0,835641746 +659,167,4.0,836137550 +659,186,2.0,834692716 +659,188,3.0,835642452 +659,190,2.0,852460810 +659,194,4.0,834598281 +659,198,2.0,835642492 +659,202,4.0,855057017 +659,207,3.0,842858671 +659,208,2.0,835642569 +659,215,4.0,834694545 +659,224,3.0,835642424 +659,229,5.0,834598615 +659,230,4.0,834598718 +659,233,3.0,835642346 +659,235,5.0,834598653 +659,247,4.0,834598355 +659,249,4.0,834598718 +659,257,3.0,835642292 +659,260,5.0,856698415 +659,265,3.0,835642405 +659,266,2.0,834692700 +659,272,3.0,834598514 +659,281,4.0,840287752 +659,282,3.0,834693471 +659,292,3.0,834598112 +659,294,3.0,834694735 +659,296,3.0,834598040 +659,300,5.0,834598140 +659,306,4.0,834598338 +659,307,4.0,834598421 +659,308,4.0,834598483 +659,314,3.0,840210905 +659,316,3.0,834598101 +659,318,3.0,835642219 +659,331,3.0,860395308 +659,337,4.0,835642201 +659,339,5.0,834999161 +659,342,2.0,835641820 +659,344,4.0,834598085 +659,353,3.0,834598630 +659,355,2.0,851960348 +659,356,4.0,834598297 +659,357,3.0,835642405 +659,364,5.0,834598537 +659,365,2.0,839169255 +659,367,4.0,834694890 +659,369,2.0,834694818 +659,373,4.0,837271647 +659,375,4.0,834694151 +659,376,3.0,835642292 +659,377,3.0,834598384 +659,380,5.0,834598040 +659,412,3.0,834694735 +659,422,3.0,834694750 +659,442,2.0,834694794 +659,446,3.0,834598421 +659,452,4.0,834693762 +659,454,4.0,855588743 +659,457,4.0,834598140 +659,469,3.0,835642452 +659,471,4.0,853412972 +659,480,4.0,835642125 +659,481,3.0,835642323 +659,493,3.0,834694644 +659,497,4.0,834694545 +659,500,5.0,834598679 +659,509,4.0,835642201 +659,515,4.0,834598866 +659,521,2.0,834694818 +659,527,4.0,834598256 +659,529,5.0,842347557 +659,534,4.0,834598311 +659,539,3.0,835642251 +659,555,2.0,834598514 +659,563,3.0,834694187 +659,588,3.0,834598907 +659,589,5.0,834598281 +659,590,4.0,834598040 +659,592,3.0,834598040 +659,593,5.0,834598140 +659,597,3.0,834692814 +659,606,2.0,835642569 +659,608,5.0,847452089 +659,613,3.0,863797381 +659,630,3.0,848903279 +659,648,3.0,851960105 +659,687,3.0,835642424 +659,724,2.0,845983328 +659,733,3.0,858587742 +659,736,3.0,845291317 +659,748,2.0,859192268 +659,765,2.0,857298522 +659,780,3.0,851960312 +659,788,3.0,852460851 +659,800,3.0,862829424 +659,805,3.0,856698535 +659,832,3.0,866207434 +659,848,3.0,866207451 +659,858,5.0,860395342 +659,880,2.0,854359234 +659,1073,4.0,857298553 +659,1089,3.0,855057046 +659,1196,5.0,856698438 +659,1210,4.0,856698463 +659,1222,4.0,857298522 +659,1233,4.0,860395362 +659,1356,4.0,848903148 +660,1,2.5,1436680062 +660,32,4.0,1436681788 +660,260,4.5,1436680107 +660,356,3.0,1436680081 +660,480,3.0,1436680084 +660,593,0.5,1436680073 +660,1196,4.0,1436680301 +660,1198,4.0,1436680304 +660,1210,4.0,1436680296 +660,1223,4.5,1436681556 +660,1270,2.5,1436680069 +660,1291,3.5,1436680299 +660,2571,4.0,1436680065 +660,3751,3.0,1436680709 +660,4993,4.0,1436680288 +660,5218,3.5,1436680354 +660,5378,3.5,1436680719 +660,5952,4.0,1436680291 +660,6807,4.0,1436682983 +660,6874,4.5,1436681821 +660,6934,3.0,1436680347 +660,7099,4.5,1436682907 +660,7153,4.5,1436681506 +660,8961,4.0,1436683470 +660,8970,4.0,1436683590 +660,26662,4.0,1436681618 +660,26776,4.0,1436681723 +660,30707,4.0,1436681839 +660,33493,4.5,1436680343 +660,40815,4.5,1436681461 +660,49272,4.5,1436681225 +660,52319,4.0,1436683156 +660,54001,4.5,1436681284 +660,58559,4.5,1436680285 +660,59315,4.5,1436681217 +660,59784,4.5,1436681393 +660,60069,5.0,1436680897 +660,60684,4.5,1436681233 +660,68157,4.5,1436681185 +660,68358,4.5,1436680692 +660,68954,4.5,1436680893 +660,69844,4.5,1436681276 +660,70286,5.0,1436680936 +660,72998,4.0,1436680686 +660,73017,4.5,1436681291 +660,76251,5.0,1436681212 +660,77561,4.0,1436681588 +660,79091,4.5,1436681270 +660,79132,4.5,1436680698 +660,79357,4.0,1436682871 +660,81564,4.5,1436681359 +660,81834,4.5,1436681246 +660,81847,4.5,1436681277 +660,83132,4.0,1436683219 +660,86298,4.0,1436683204 +660,86332,4.0,1436683033 +660,86882,4.0,1436683166 +660,87232,4.5,1436681238 +660,87306,4.5,1436681550 +660,88125,4.5,1436680929 +660,89745,4.5,1436681178 +660,91500,4.5,1436681314 +660,91542,4.5,1436681271 +660,95167,4.5,1436681409 +660,95510,4.0,1436681692 +660,97913,4.5,1436681227 +660,98809,4.5,1436681274 +660,99114,5.0,1436681209 +660,101864,4.0,1436683368 +660,102125,4.0,1436681306 +660,102445,4.5,1436681254 +660,103141,4.5,1436681367 +660,103335,4.5,1436681312 +660,106002,4.0,1436683169 +660,106072,4.0,1436681595 +660,106487,4.5,1436681234 +660,106489,4.5,1436681221 +660,106642,4.0,1436681730 +660,106696,4.5,1436681285 +660,106920,4.0,1436681673 +660,108932,4.5,1436681176 +660,109487,4.5,1436680365 +660,111362,4.5,1436680891 +660,111659,4.5,1436681547 +660,111759,4.5,1436680900 +660,112852,5.0,1436680931 +660,113378,4.0,1436681680 +660,114180,3.5,1436681811 +660,115617,5.0,1436680362 +660,116823,4.5,1436681495 +660,122886,4.0,1436683412 +660,135518,4.0,1436680330 +661,318,5.0,1190266808 +661,481,3.5,1190265639 +661,527,4.5,1190266805 +661,637,0.5,1190265552 +661,678,2.5,1190266880 +661,1019,4.5,1190265564 +661,1020,2.5,1190265600 +661,1027,1.0,1190265513 +661,1049,3.5,1190265636 +661,1077,4.5,1190265521 +661,1103,4.5,1190265653 +661,1185,5.0,1190265644 +661,1242,4.5,1190266708 +661,1259,4.0,1190266599 +661,1263,4.5,1190266665 +661,1296,2.5,1190265547 +661,1704,5.0,1190266672 +661,1958,4.0,1190265661 +661,1965,4.0,1190265583 +661,2013,4.0,1190265651 +661,2352,3.0,1190265500 +661,2686,4.5,1190265657 +661,3198,4.5,1190266589 +661,3363,4.0,1190265536 +661,3552,4.5,1190266004 +661,4262,3.5,1190266801 +661,4483,0.5,1190266014 +661,5952,5.0,1190266738 +661,6104,5.0,1190266644 +661,7153,5.0,1190266638 +661,8961,4.0,1190266732 +661,46578,5.0,1190266632 +661,48516,4.0,1190266565 +662,2,5.0,839022500 +662,10,3.0,839022269 +662,19,2.0,839022347 +662,34,4.0,839022324 +662,39,3.0,839022369 +662,47,3.0,839022324 +662,150,4.0,839022109 +662,158,4.0,839022587 +662,165,3.0,839022166 +662,185,4.0,839022269 +662,186,3.0,839022731 +662,204,3.0,839022714 +662,208,3.0,839022269 +662,219,5.0,839022638 +662,225,3.0,839022347 +662,231,3.0,839022212 +662,236,3.0,839022474 +662,256,3.0,839022587 +662,266,4.0,839022388 +662,282,4.0,839022474 +662,288,1.0,839022292 +662,292,4.0,839022237 +662,296,3.0,839022109 +662,300,3.0,839022324 +662,316,2.0,839022212 +662,317,4.0,839022369 +662,318,5.0,839022237 +662,337,4.0,839022500 +662,339,4.0,839022269 +662,344,2.0,839022166 +662,350,3.0,839022474 +662,356,5.0,839022292 +662,357,3.0,839022434 +662,364,3.0,839022324 +662,367,3.0,839022347 +662,377,4.0,839022369 +662,380,3.0,839022109 +662,420,3.0,839022369 +662,432,3.0,839022410 +662,434,3.0,839022237 +662,440,3.0,839022409 +662,454,3.0,839022324 +662,455,4.0,839022638 +662,457,4.0,839022237 +662,474,3.0,839022587 +662,480,3.0,839022292 +662,500,4.0,839022388 +662,508,4.0,839022638 +662,509,3.0,839022731 +662,527,5.0,839022410 +662,539,4.0,839022434 +662,553,2.0,839022474 +662,586,4.0,839022434 +662,587,4.0,839022409 +662,588,4.0,839022166 +662,595,4.0,839022212 +662,597,4.0,839022434 +662,736,1.0,839022665 +663,1,4.0,1438397999 +663,356,4.0,1438397977 +663,480,3.5,1438398009 +663,593,4.0,1438398015 +663,1270,4.0,1438398005 +663,2571,4.0,1438397995 +663,111781,3.5,1438412805 +663,117529,4.0,1438412990 +663,120799,3.5,1438412929 +663,122882,4.0,1438413049 +663,122900,3.5,1438412846 +663,127124,4.0,1438413063 +663,128512,3.0,1438412817 +663,132046,4.0,1438413009 +663,133419,3.5,1438413046 +663,134246,3.0,1438412792 +663,134368,4.0,1438412766 +663,134528,3.5,1438412783 +663,134783,3.0,1438412778 +663,134853,4.0,1438412956 +663,135861,4.0,1438412940 +663,135887,5.0,1438412867 +663,136598,3.5,1438412814 +663,137595,3.0,1438412878 +663,138204,3.5,1438412914 +663,139642,4.0,1438412820 +664,1,3.5,1362421730 +664,6,4.0,1393890301 +664,16,4.0,1343732078 +664,22,3.0,1393891205 +664,29,4.0,1343747245 +664,32,5.0,1343746766 +664,47,4.5,1343731903 +664,50,4.5,1343746665 +664,70,3.5,1343827611 +664,110,4.0,1343731865 +664,111,4.0,1393890345 +664,163,4.0,1393891162 +664,165,3.5,1343835342 +664,170,3.0,1343731415 +664,180,3.0,1393890990 +664,198,4.0,1343762698 +664,223,4.0,1343746356 +664,231,4.0,1393891721 +664,256,2.5,1343731349 +664,260,4.5,1343731723 +664,288,4.0,1393890551 +664,292,3.5,1393891181 +664,293,4.5,1343731921 +664,296,5.0,1343731800 +664,318,4.5,1343731695 +664,353,4.0,1393891115 +664,356,4.5,1343731916 +664,367,3.5,1343835326 +664,377,4.0,1343763319 +664,431,4.0,1343746797 +664,457,3.5,1343732009 +664,480,3.5,1343747011 +664,541,4.0,1343747033 +664,589,4.5,1343746709 +664,592,4.0,1343827498 +664,593,4.5,1343746707 +664,597,3.0,1393891178 +664,648,4.5,1441100995 +664,673,2.5,1343731340 +664,733,4.0,1393890683 +664,741,4.0,1343746934 +664,778,4.5,1352368484 +664,780,3.5,1343827507 +664,858,4.0,1343746801 +664,924,4.0,1393891072 +664,1027,3.5,1393890734 +664,1036,4.0,1343746671 +664,1059,2.5,1343731335 +664,1079,2.5,1393890305 +664,1080,4.5,1343746878 +664,1089,4.5,1343746735 +664,1127,4.5,1343746667 +664,1136,4.5,1343746875 +664,1196,4.5,1343731727 +664,1197,4.5,1362421746 +664,1198,4.5,1343746823 +664,1199,3.5,1343731939 +664,1200,4.0,1343731990 +664,1206,3.5,1343747072 +664,1210,4.5,1343732032 +664,1213,4.0,1343746780 +664,1214,3.5,1343746965 +664,1215,4.5,1441100835 +664,1221,4.5,1343746909 +664,1222,3.5,1343746839 +664,1240,4.0,1343746829 +664,1258,4.0,1343731803 +664,1265,4.0,1343746638 +664,1267,3.0,1343731520 +664,1270,4.0,1343746645 +664,1291,4.5,1343731996 +664,1320,4.0,1344435936 +664,1333,3.5,1393891616 +664,1339,3.5,1343731326 +664,1370,4.0,1343751264 +664,1377,4.0,1393891107 +664,1393,4.0,1393890886 +664,1405,3.0,1343731359 +664,1407,3.5,1393891262 +664,1464,3.0,1343762946 +664,1466,4.5,1343732072 +664,1527,4.0,1343746491 +664,1573,4.0,1343763323 +664,1580,4.0,1347374181 +664,1617,4.0,1343746844 +664,1639,3.5,1393890848 +664,1676,4.0,1393891660 +664,1687,4.0,1393891486 +664,1690,2.5,1344435922 +664,1729,4.5,1343732075 +664,1732,4.5,1343746946 +664,1747,3.0,1343731309 +664,1748,4.5,1343746791 +664,1884,4.5,1343746973 +664,1909,3.5,1344435964 +664,1917,3.5,1343835341 +664,1923,3.5,1393890693 +664,1997,3.0,1393891057 +664,2000,4.0,1343746937 +664,2011,4.0,1441101131 +664,2028,4.5,1343731833 +664,2058,4.0,1343835417 +664,2115,4.0,1343732098 +664,2126,3.5,1393891612 +664,2161,3.5,1343731320 +664,2167,3.0,1343731283 +664,2232,3.5,1344435984 +664,2288,4.0,1343747227 +664,2291,4.5,1343747058 +664,2329,4.5,1343731749 +664,2334,4.0,1393891558 +664,2403,4.0,1393891165 +664,2420,3.5,1343731427 +664,2427,3.0,1343731391 +664,2502,4.0,1343746552 +664,2529,4.0,1343763186 +664,2542,4.5,1343746682 +664,2571,4.5,1343731717 +664,2594,4.5,1343762815 +664,2605,3.0,1343731398 +664,2617,3.5,1393891254 +664,2628,3.0,1393891290 +664,2641,3.0,1343731384 +664,2683,4.0,1393891239 +664,2692,4.0,1343731923 +664,2700,4.0,1343826095 +664,2706,4.0,1441911592 +664,2710,3.0,1441911601 +664,2716,4.0,1343746660 +664,2717,4.0,1393891468 +664,2762,4.5,1343731847 +664,2826,4.0,1343748754 +664,2858,4.0,1343746632 +664,2916,3.5,1393890939 +664,2959,5.0,1343731838 +664,2985,3.0,1393891404 +664,3000,4.0,1343731830 +664,3006,4.0,1343762067 +664,3033,3.5,1393891105 +664,3039,3.5,1393890690 +664,3052,4.0,1362421718 +664,3081,4.0,1393890678 +664,3082,2.5,1343731402 +664,3114,3.5,1362421743 +664,3147,4.0,1343746540 +664,3160,3.0,1343746689 +664,3253,4.0,1393891045 +664,3275,4.5,1343746555 +664,3408,3.0,1393890942 +664,3452,4.5,1393891400 +664,3476,3.5,1343762938 +664,3481,4.0,1343746520 +664,3499,3.0,1393891530 +664,3527,3.0,1393890855 +664,3555,3.5,1393891459 +664,3578,5.0,1343746722 +664,3623,4.0,1441911610 +664,3717,3.5,1393891456 +664,3752,3.5,1393891548 +664,3753,3.5,1393891055 +664,3785,3.5,1393891737 +664,3793,4.0,1343835317 +664,3863,3.5,1441911701 +664,3897,4.0,1343746511 +664,3949,4.0,1343731896 +664,3969,3.5,1393891298 +664,3994,4.0,1344436072 +664,3996,4.0,1362421741 +664,4011,4.5,1343731927 +664,4022,3.0,1343826100 +664,4105,4.0,1441100858 +664,4148,3.5,1393891200 +664,4223,3.5,1343732090 +664,4226,4.5,1343746733 +664,4238,3.0,1393890950 +664,4239,4.0,1343732086 +664,4262,4.5,1343746774 +664,4270,4.0,1393891519 +664,4299,3.5,1393890198 +664,4306,4.0,1343746624 +664,4310,2.5,1441911696 +664,4343,3.5,1393891150 +664,4344,3.5,1393891441 +664,4369,3.5,1393891751 +664,4370,4.0,1393890874 +664,4378,4.0,1343762341 +664,4387,3.5,1393891292 +664,4641,2.5,1343747191 +664,4643,4.0,1343761843 +664,4720,4.0,1393890262 +664,4776,4.5,1343746361 +664,4816,4.0,1393890981 +664,4848,3.5,1343747299 +664,4865,4.0,1393890960 +664,4874,4.0,1441101439 +664,4878,4.5,1343731628 +664,4886,3.5,1362421733 +664,4887,3.5,1393891251 +664,4890,3.0,1393891584 +664,4958,4.0,1393891490 +664,4963,3.5,1343746570 +664,4975,4.0,1343762825 +664,4993,4.0,1343731754 +664,5010,4.0,1343826156 +664,5064,4.0,1393891028 +664,5152,3.5,1393890624 +664,5171,4.0,1343761835 +664,5349,4.0,1343747256 +664,5388,4.0,1343835452 +664,5418,4.0,1343746698 +664,5420,3.0,1393891587 +664,5445,4.5,1343746939 +664,5459,4.0,1347374184 +664,5574,3.0,1393890864 +664,5618,4.5,1362421776 +664,5630,3.5,1393890336 +664,5669,4.0,1441100866 +664,5679,4.0,1393890260 +664,5782,4.5,1412246431 +664,5803,1.5,1393891657 +664,5903,4.0,1343746862 +664,5952,4.0,1343731791 +664,5954,3.0,1343746988 +664,5956,4.0,1393890987 +664,5989,3.5,1393890819 +664,6016,4.0,1343731686 +664,6059,4.0,1343835409 +664,6156,3.0,1393891259 +664,6187,4.0,1393890186 +664,6213,3.5,1393891580 +664,6263,3.0,1393891249 +664,6281,4.0,1344436015 +664,6323,4.5,1344436028 +664,6333,3.5,1393890739 +664,6365,4.0,1393891198 +664,6378,3.5,1441100827 +664,6537,3.5,1393891493 +664,6539,4.0,1343746806 +664,6548,3.5,1393891749 +664,6586,3.5,1393891344 +664,6709,3.0,1393891435 +664,6711,3.0,1343747041 +664,6755,3.0,1343827566 +664,6862,3.5,1343835424 +664,6870,4.5,1343731756 +664,6874,4.0,1343746869 +664,6934,3.5,1393891307 +664,7022,4.0,1343747167 +664,7143,3.0,1393890627 +664,7147,4.0,1343746856 +664,7153,4.0,1343731743 +664,7160,4.0,1343826198 +664,7254,4.5,1344534131 +664,7293,3.5,1393890236 +664,7346,3.5,1393891447 +664,7347,4.0,1344436094 +664,7360,3.5,1393890312 +664,7361,4.0,1343731623 +664,7362,3.0,1343835645 +664,7438,4.0,1343746819 +664,7445,4.5,1343747211 +664,7458,3.0,1393891196 +664,7502,4.5,1343731683 +664,7827,4.5,1343762685 +664,8361,3.0,1393891425 +664,8528,3.5,1393891047 +664,8529,4.0,1393891173 +664,8636,4.0,1393891175 +664,8641,4.5,1393890852 +664,8644,3.5,1393890881 +664,8665,3.5,1365264868 +664,8783,3.5,1344436082 +664,8784,4.5,1343746674 +664,8798,3.5,1343746526 +664,8810,3.0,1344435905 +664,8836,3.5,1393891171 +664,8874,4.0,1343747015 +664,8914,4.0,1343747001 +664,8947,3.0,1393890993 +664,8950,4.5,1343747045 +664,8957,4.5,1344436183 +664,8961,4.0,1441100684 +664,8970,4.5,1343747131 +664,26614,3.5,1343747272 +664,27773,3.5,1343731827 +664,27788,4.5,1343762919 +664,27904,5.0,1441100896 +664,30707,4.5,1441100838 +664,30749,4.5,1343731873 +664,30793,3.0,1393890884 +664,31685,3.0,1393891129 +664,31696,3.5,1393890706 +664,31878,4.0,1441100788 +664,32029,3.5,1393890719 +664,32587,4.5,1343746920 +664,33004,4.0,1393890708 +664,33085,3.0,1393891256 +664,33166,3.5,1343746561 +664,33679,3.0,1393891500 +664,33794,4.0,1343746787 +664,34048,3.0,1393891625 +664,34162,3.5,1393890909 +664,34319,3.0,1393890905 +664,34405,4.0,1343732038 +664,35836,3.5,1393890686 +664,36517,2.5,1343746952 +664,36529,4.5,1343746641 +664,37729,2.5,1393891348 +664,37733,3.0,1393890968 +664,37741,3.5,1393890985 +664,37857,4.0,1441100886 +664,38061,4.5,1343747037 +664,39446,4.5,1393890774 +664,40583,4.0,1393891627 +664,44191,4.5,1343746853 +664,44195,4.5,1343746831 +664,44199,4.0,1343746583 +664,44665,4.5,1343746514 +664,46970,3.5,1393890947 +664,46976,4.0,1343747148 +664,47610,4.0,1343746842 +664,48385,3.5,1393890342 +664,48394,4.0,1343731877 +664,48516,4.5,1343731789 +664,48738,4.5,1343746871 +664,48774,3.5,1343763155 +664,48780,4.0,1343731631 +664,49272,3.5,1393890549 +664,49278,4.0,1393890553 +664,49530,4.5,1343746573 +664,49932,2.5,1343762952 +664,51255,3.5,1343747077 +664,51412,3.5,1393891155 +664,51540,4.5,1343835475 +664,51662,4.0,1343826128 +664,51709,4.0,1343764123 +664,51935,4.0,1343835372 +664,52281,4.0,1343827597 +664,52328,4.0,1343763135 +664,52458,3.5,1393890318 +664,52604,4.5,1343826102 +664,52644,3.0,1393891730 +664,52722,3.0,1393891582 +664,52973,4.0,1343826089 +664,53125,4.0,1343826217 +664,53519,3.5,1393890876 +664,53972,4.0,1343826107 +664,53996,4.5,1343761879 +664,54286,3.5,1365264866 +664,54503,4.5,1343747066 +664,54995,4.0,1343827619 +664,55094,4.0,1344534151 +664,55118,3.5,1393890822 +664,55276,4.5,1343835466 +664,55290,4.5,1343746976 +664,55765,3.5,1343746997 +664,55820,3.5,1343731422 +664,55908,4.5,1343763123 +664,56145,4.0,1393890670 +664,56156,2.5,1393891664 +664,56174,3.5,1393890919 +664,56367,3.0,1343747184 +664,56788,3.0,1393890295 +664,57368,4.0,1343763267 +664,57401,4.0,1343835430 +664,57669,3.5,1343762326 +664,58103,3.5,1393890927 +664,58559,4.5,1343731689 +664,58998,4.0,1343826082 +664,59016,3.0,1393891118 +664,59315,4.0,1343746916 +664,59369,5.0,1343746922 +664,59615,2.5,1343826225 +664,59784,3.5,1393890640 +664,60040,3.5,1343761909 +664,60072,4.0,1393891160 +664,60074,3.0,1393891287 +664,60684,3.0,1343746944 +664,60753,4.5,1343761989 +664,60760,3.5,1344435970 +664,60832,3.0,1393891653 +664,61024,4.5,1393890299 +664,61248,3.5,1393891244 +664,62374,3.5,1393890673 +664,62849,3.0,1393890575 +664,63062,4.5,1343746905 +664,63082,4.0,1343747116 +664,63131,4.5,1343826093 +664,64497,3.0,1343761850 +664,64614,4.5,1343731952 +664,64620,4.0,1343747134 +664,64997,2.5,1343761859 +664,65642,4.5,1343762710 +664,67087,3.5,1441911645 +664,67197,3.5,1393891301 +664,68157,4.0,1393890283 +664,68159,4.0,1343835707 +664,68237,4.0,1343731634 +664,68319,3.5,1343761904 +664,68358,4.0,1343747052 +664,68554,3.0,1393890907 +664,68791,3.5,1441101037 +664,68954,4.0,1343731883 +664,69122,4.5,1343746677 +664,69306,3.0,1393891413 +664,69481,3.5,1343747104 +664,69524,4.5,1441100722 +664,69526,4.0,1343761884 +664,69757,3.0,1343731538 +664,70286,4.5,1343747150 +664,70336,3.0,1343761891 +664,71033,4.5,1344534155 +664,71106,4.0,1343764004 +664,71135,4.5,1393890716 +664,71468,2.0,1441100986 +664,71530,4.0,1393891216 +664,71535,4.5,1343747128 +664,71838,4.5,1393890922 +664,72011,3.5,1393890900 +664,72380,3.5,1344435977 +664,72489,3.0,1393891597 +664,72998,4.0,1343826141 +664,73017,4.0,1343732109 +664,73268,4.5,1393891329 +664,73321,4.0,1393890912 +664,74228,4.0,1343762932 +664,74458,4.5,1343746704 +664,74532,3.0,1393891411 +664,74545,4.0,1343835713 +664,74685,2.0,1393891080 +664,74789,3.0,1393891168 +664,76251,3.5,1343747107 +664,77561,4.0,1343747035 +664,78088,3.5,1344436005 +664,78469,2.5,1393891083 +664,78499,4.0,1343731860 +664,79057,3.0,1393891667 +664,79132,5.0,1343747060 +664,79592,4.0,1393890877 +664,79702,4.0,1393890631 +664,80219,4.0,1393891111 +664,80463,4.0,1343747266 +664,80489,4.5,1343835489 +664,80846,4.0,1344436046 +664,81229,3.5,1393890844 +664,81562,3.5,1393891326 +664,81932,3.5,1343746994 +664,82459,4.5,1393890932 +664,83134,3.0,1393890561 +664,84152,4.0,1343826037 +664,84392,4.0,1343835521 +664,84601,3.5,1343835403 +664,84954,4.0,1393890917 +664,85131,3.0,1343761868 +664,85412,4.5,1441101054 +664,85414,4.5,1343747081 +664,86332,3.5,1343761925 +664,86911,4.0,1393891378 +664,87232,4.0,1343746810 +664,87306,4.0,1343763273 +664,87430,2.5,1343761919 +664,87520,4.0,1343761875 +664,87869,3.5,1393890358 +664,88129,3.5,1441100766 +664,88140,4.0,1441100781 +664,88744,4.0,1343763243 +664,89030,3.0,1393891443 +664,89745,5.0,1343761942 +664,89774,3.5,1393890281 +664,90746,3.5,1393890681 +664,90866,3.5,1393890700 +664,91500,3.0,1441100579 +664,91529,4.5,1343731870 +664,91542,4.0,1343747049 +664,92420,3.5,1343763258 +664,93363,3.5,1393891190 +664,93840,4.0,1345749311 +664,94018,3.5,1344435891 +664,94478,2.5,1393891003 +664,94777,4.0,1347374186 +664,94864,3.0,1393891054 +664,95167,3.5,1352368503 +664,95510,4.0,1352368404 +664,95875,3.5,1393891495 +664,96079,4.0,1393890250 +664,96610,3.5,1393890361 +664,96737,4.5,1441101067 +664,97304,4.0,1393890634 +664,97921,4.0,1393890921 +664,98809,4.5,1362421658 +664,99114,4.0,1393890242 +664,101362,4.0,1393891524 +664,101864,4.0,1393891335 +664,102125,3.5,1393890596 +664,102445,4.0,1393890339 +664,102903,3.5,1393891351 +664,103042,4.0,1393891035 +664,103228,1.5,1393891189 +664,103249,4.0,1441100989 +664,103772,3.0,1393891408 +664,106487,3.5,1393891011 +664,106782,4.0,1441100768 +664,108932,4.5,1441100805 +664,109487,4.5,1441100696 +664,110102,4.5,1441100680 +664,111362,4.5,1441100663 +664,111759,4.5,1441100647 +664,112552,3.0,1441911714 +664,112556,3.0,1441911722 +664,112852,4.5,1441100650 +664,115149,4.0,1441101021 +664,115210,3.0,1441100872 +664,115617,4.5,1441100710 +664,115713,4.0,1441101113 +664,116797,4.0,1441100539 +664,122882,4.0,1441911719 +664,122892,5.0,1441100672 +664,122900,4.5,1441100833 +664,134170,4.5,1441101221 +665,2,3.0,992836405 +665,3,3.0,993347429 +665,5,3.0,993347605 +665,16,4.0,995233268 +665,32,4.0,995233393 +665,34,2.0,995233440 +665,39,2.0,992920699 +665,48,4.0,993345890 +665,60,2.0,992909820 +665,62,3.0,995233543 +665,64,2.0,995233119 +665,74,2.0,995232733 +665,104,4.0,993346305 +665,105,1.0,995232826 +665,122,4.0,993347490 +665,129,3.0,995232528 +665,140,3.0,995232826 +665,158,4.0,992909659 +665,165,3.0,997239405 +665,168,5.0,995232660 +665,180,3.0,993346386 +665,186,3.0,992838474 +665,195,4.0,993347429 +665,207,3.0,995232619 +665,216,4.0,993346679 +665,218,4.0,993347307 +665,231,1.0,993347429 +665,236,4.0,993347376 +665,239,3.0,993345976 +665,248,3.0,993347710 +665,252,3.0,993346936 +665,253,4.0,995233600 +665,260,4.0,1046967443 +665,266,4.0,995232591 +665,276,4.0,993347521 +665,292,4.0,995233679 +665,296,4.0,995233236 +665,317,5.0,992909626 +665,318,5.0,995233192 +665,337,2.0,1010197483 +665,339,3.0,995232733 +665,344,3.0,993347124 +665,353,2.0,992837225 +665,356,4.0,993179737 +665,357,2.0,992920982 +665,358,3.0,995233523 +665,364,5.0,992909069 +665,368,3.0,992836298 +665,377,3.0,992920834 +665,380,3.0,993346471 +665,413,2.0,993347605 +665,432,3.0,993347869 +665,435,1.0,992838359 +665,441,3.0,993346146 +665,450,4.0,995233784 +665,454,3.0,995233759 +665,455,3.0,1046967706 +665,457,3.0,997239297 +665,491,3.0,995233523 +665,493,3.0,995233679 +665,500,2.0,993346777 +665,508,4.0,995233377 +665,516,2.0,993347047 +665,520,2.0,993347751 +665,524,3.0,995233613 +665,527,5.0,995233192 +665,539,4.0,993346341 +665,542,3.0,993347673 +665,543,2.0,993346644 +665,551,2.0,992909069 +665,585,1.0,993347173 +665,586,3.0,992909509 +665,587,5.0,992837331 +665,588,4.0,992909069 +665,590,4.0,995233321 +665,593,4.0,995233209 +665,594,3.0,992909129 +665,595,5.0,992909099 +665,596,5.0,992909099 +665,597,5.0,992920864 +665,605,3.0,995232789 +665,616,3.0,992909509 +665,661,3.0,992909509 +665,673,2.0,993345934 +665,708,3.0,992838101 +665,709,3.0,992909171 +665,736,3.0,995233025 +665,784,1.0,993347829 +665,788,3.0,995233053 +665,802,3.0,995233600 +665,804,3.0,993346733 +665,830,3.0,993347376 +665,839,3.0,993535023 +665,852,3.0,993346981 +665,902,3.0,992920593 +665,912,5.0,992920551 +665,919,4.0,992909039 +665,920,4.0,992920593 +665,1012,3.0,992909039 +665,1013,4.0,992909251 +665,1015,4.0,992909421 +665,1019,3.0,992909129 +665,1020,3.0,993346644 +665,1022,4.0,993345666 +665,1023,4.0,992909206 +665,1025,4.0,992909251 +665,1028,4.0,993179524 +665,1029,4.0,992909171 +665,1030,4.0,992909820 +665,1031,4.0,992909251 +665,1032,4.0,992909206 +665,1033,4.0,992909395 +665,1036,3.0,997239275 +665,1043,3.0,995232807 +665,1059,1.0,995232660 +665,1060,4.0,993346203 +665,1061,3.0,995233350 +665,1073,5.0,992909099 +665,1090,3.0,999571975 +665,1093,3.0,995233784 +665,1097,5.0,992909039 +665,1100,3.0,995232840 +665,1101,5.0,992920654 +665,1136,5.0,993179524 +665,1188,3.0,995232487 +665,1196,4.0,1046967443 +665,1206,3.0,999571975 +665,1210,4.0,992836704 +665,1213,4.0,995233253 +665,1258,3.0,997239275 +665,1265,2.0,992920614 +665,1268,4.0,995233694 +665,1270,5.0,993179367 +665,1282,3.0,992909069 +665,1285,4.0,993179634 +665,1307,4.0,992920593 +665,1339,3.0,992920982 +665,1367,3.0,993347084 +665,1370,3.0,997239405 +665,1379,3.0,993347173 +665,1388,3.0,992838277 +665,1393,4.0,992920654 +665,1408,3.0,992836298 +665,1409,4.0,993347173 +665,1457,4.0,993346573 +665,1468,2.0,993347673 +665,1485,4.0,993346936 +665,1487,3.0,995233507 +665,1513,2.0,1046967133 +665,1541,3.0,995232789 +665,1569,4.0,993346680 +665,1580,4.0,993346471 +665,1584,4.0,995233350 +665,1593,3.0,995233071 +665,1597,4.0,995232636 +665,1608,4.0,1010197529 +665,1639,3.0,992920614 +665,1673,3.0,995233468 +665,1680,4.0,995232542 +665,1682,4.0,995233543 +665,1693,3.0,995233416 +665,1703,3.0,993347913 +665,1704,5.0,995233298 +665,1721,3.0,995232501 +665,1729,3.0,995233631 +665,1735,1.0,992920673 +665,1754,5.0,993534911 +665,1777,3.0,992920914 +665,1784,4.0,993179580 +665,1821,3.0,995232733 +665,1835,4.0,993535023 +665,1883,2.0,993346644 +665,1884,3.0,1046967746 +665,1888,3.0,993347084 +665,1895,3.0,992920982 +665,1911,4.0,1046966927 +665,1923,4.0,993346386 +665,1947,4.0,992920799 +665,1954,4.0,992837174 +665,1958,3.0,992837175 +665,1961,4.0,992836298 +665,2000,3.0,993179525 +665,2002,2.0,993346777 +665,2005,4.0,992909099 +665,2012,3.0,993346981 +665,2017,3.0,992909626 +665,2018,3.0,992909171 +665,2028,4.0,995233236 +665,2036,2.0,993347751 +665,2048,3.0,992909820 +665,2054,3.0,992909626 +665,2059,3.0,992909626 +665,2071,4.0,995233734 +665,2078,4.0,992909171 +665,2080,4.0,992920673 +665,2081,5.0,992909099 +665,2082,2.0,992909626 +665,2085,3.0,992909171 +665,2087,5.0,992909129 +665,2089,4.0,992909251 +665,2090,3.0,992909171 +665,2092,3.0,993345934 +665,2096,3.0,992909099 +665,2106,4.0,995233281 +665,2122,2.0,992838672 +665,2123,4.0,992909659 +665,2125,5.0,992920593 +665,2137,4.0,993345619 +665,2139,5.0,992909099 +665,2141,5.0,992909251 +665,2142,3.0,992909251 +665,2193,3.0,1010197529 +665,2231,3.0,995233705 +665,2245,3.0,992837431 +665,2248,3.0,993179421 +665,2268,4.0,992837175 +665,2282,1.0,993346524 +665,2291,3.0,992920982 +665,2302,3.0,993346203 +665,2316,3.0,995232826 +665,2321,2.0,993346471 +665,2335,3.0,993346777 +665,2340,4.0,995232619 +665,2384,2.0,992909820 +665,2396,2.0,1046967152 +665,2406,3.0,992920799 +665,2411,4.0,992838359 +665,2412,4.0,992838474 +665,2421,3.0,999572161 +665,2422,1.0,999572161 +665,2424,4.0,995232789 +665,2431,3.0,999572041 +665,2447,3.0,993346899 +665,2485,3.0,993346777 +665,2491,3.0,993347751 +665,2497,2.0,995233087 +665,2502,3.0,993346386 +665,2541,3.0,1046966905 +665,2558,3.0,993347263 +665,2567,4.0,993346733 +665,2571,5.0,1010197436 +665,2572,3.0,992920593 +665,2581,2.0,995232759 +665,2617,4.0,992837520 +665,2622,2.0,993347047 +665,2628,3.0,1010197561 +665,2640,5.0,992837431 +665,2671,3.0,992920914 +665,2683,4.0,1046966821 +665,2688,4.0,1046966986 +665,2694,4.0,993347047 +665,2706,3.0,993346239 +665,2707,2.0,1046966821 +665,2710,3.0,1046966868 +665,2719,2.0,1046967003 +665,2720,3.0,993347869 +665,2722,2.0,1046966905 +665,2723,2.0,993347636 +665,2724,3.0,993347263 +665,2750,3.0,993179879 +665,2761,4.0,992909039 +665,2763,2.0,1046967184 +665,2771,3.0,1046966868 +665,2791,4.0,993179555 +665,2797,5.0,993179525 +665,2806,2.0,993347829 +665,2826,1.0,1046966660 +665,2846,4.0,992909129 +665,2858,3.0,993179335 +665,2881,3.0,1046966927 +665,2890,2.0,995233416 +665,2918,5.0,993179335 +665,2953,2.0,993347913 +665,2959,5.0,995233253 +665,2961,4.0,993346680 +665,2978,3.0,993346386 +665,2987,3.0,993345810 +665,2997,3.0,993179395 +665,3004,1.0,993346847 +665,3005,3.0,1046966868 +665,3033,2.0,993179879 +665,3034,5.0,992909069 +665,3039,3.0,993179879 +665,3051,3.0,1046966821 +665,3052,3.0,997239405 +665,3053,2.0,1046967032 +665,3081,3.0,995232619 +665,3100,3.0,995233489 +665,3157,4.0,1046967184 +665,3160,4.0,995233468 +665,3173,4.0,999572112 +665,3174,3.0,993346423 +665,3186,4.0,995233649 +665,3225,4.0,1010198095 +665,3243,2.0,993347788 +665,3247,3.0,993347047 +665,3248,2.0,1046967693 +665,3252,3.0,995233581 +665,3253,3.0,997239372 +665,3255,3.0,993346471 +665,3257,3.0,995233025 +665,3258,2.0,993347788 +665,3259,3.0,995232636 +665,3263,4.0,993346981 +665,3269,3.0,995232759 +665,3273,2.0,1046967133 +665,3285,1.0,1010198155 +665,3287,4.0,1010198050 +665,3298,4.0,1010197936 +665,3300,3.0,1046967100 +665,3301,5.0,1010198079 +665,3316,4.0,1010198155 +665,3317,4.0,1010197773 +665,3325,3.0,1010198135 +665,3354,2.0,1046967064 +665,3396,3.0,992909069 +665,3398,3.0,997239426 +665,3408,4.0,1010197849 +665,3409,4.0,1046966960 +665,3418,3.0,995233377 +665,3436,3.0,995233071 +665,3450,3.0,993346733 +665,3477,4.0,993346777 +665,3481,3.0,993179667 +665,3483,3.0,1010198050 +665,3484,3.0,1010198252 +665,3510,5.0,993424251 +665,3527,3.0,992837287 +665,3534,4.0,1010198050 +665,3536,4.0,1010197951 +665,3555,4.0,993424279 +665,3563,2.0,992838474 +665,3565,2.0,1046967201 +665,3578,5.0,993180356 +665,3615,4.0,992909421 +665,3617,2.0,1010197972 +665,3623,4.0,1010198029 +665,3672,3.0,992909626 +665,3705,3.0,995233087 +665,3712,3.0,1010197529 +665,3717,3.0,1010198112 +665,3752,3.0,1010198095 +665,3753,4.0,1010197951 +665,3755,3.0,1010197993 +665,3784,3.0,1010197993 +665,3785,1.0,1010198112 +665,3793,4.0,1010197870 +665,3798,4.0,1010198029 +665,3809,3.0,993346936 +665,3824,2.0,1046966842 +665,3825,3.0,1010198181 +665,3826,2.0,1010198207 +665,3857,2.0,1046966868 +665,3869,3.0,993347567 +665,3882,3.0,1010198167 +665,3893,1.0,992838004 +665,3908,1.0,1046967201 +665,3916,5.0,992837175 +665,3948,4.0,1010197888 +665,3949,3.0,995232273 +665,3964,3.0,992909251 +665,3977,4.0,992838149 +665,3978,3.0,992837743 +665,3980,2.0,992837431 +665,3981,2.0,1046967114 +665,3986,3.0,1046966660 +665,3987,3.0,992838277 +665,3988,5.0,992908810 +665,3991,3.0,1010198231 +665,3994,4.0,995232302 +665,3996,4.0,993180227 +665,3997,2.0,995232382 +665,3998,4.0,995232342 +665,4006,3.0,993345976 +665,4011,2.0,995232302 +665,4018,4.0,992838149 +665,4020,3.0,992908542 +665,4022,4.0,995232273 +665,4023,5.0,997239351 +665,4025,5.0,992838190 +665,4027,4.0,1010197801 +665,4034,3.0,993854820 +665,4039,3.0,992909206 +665,4040,3.0,993347429 +665,4052,4.0,992838277 +665,4067,3.0,995232789 +665,4069,4.0,1010198155 +665,4091,4.0,992920944 +665,4109,3.0,992838672 +665,4132,3.0,1010197651 +665,4148,3.0,992908465 +665,4155,4.0,992908410 +665,4161,3.0,992908384 +665,4167,3.0,999572129 +665,4205,3.0,993346981 +665,4226,4.0,1010197752 +665,4238,3.0,992836853 +665,4270,5.0,992836853 +665,4277,5.0,992837287 +665,4299,4.0,992836853 +665,4305,3.0,1046967473 +665,4306,5.0,1010197453 +665,4308,5.0,1046967234 +665,4310,4.0,992836853 +665,4318,3.0,992837743 +665,4321,3.0,992837432 +665,4333,2.0,997239468 +665,4344,4.0,993345519 +665,4351,4.0,992837743 +665,4352,3.0,997239297 +665,4367,4.0,992908325 +665,4368,4.0,1010197561 +665,4370,2.0,997239207 +665,4446,3.0,997239207 +665,4448,1.0,1046967133 +665,4638,3.0,999571913 +665,4639,3.0,1010197579 +665,4643,4.0,997239207 +665,4701,4.0,999571892 +665,4736,1.0,1010197684 +665,4896,5.0,1010197308 +665,4951,3.0,1010197579 +665,4993,5.0,1046967408 +665,5219,3.0,1046967769 +665,5377,4.0,1046967523 +665,5378,4.0,1046967443 +665,5445,3.0,1046967549 +665,5479,2.0,1046967641 +665,5480,4.0,1046967706 +665,5502,4.0,1046967596 +665,5679,3.0,1046967679 +665,5952,5.0,1046967408 +665,5991,4.0,1046967253 +665,6238,3.0,1046967721 +666,6,5.0,838921278 +666,10,3.0,838920928 +666,19,3.0,838920996 +666,39,2.0,838921015 +666,105,3.0,838921278 +666,110,2.0,838920959 +666,150,4.0,838920789 +666,153,2.0,838920837 +666,162,5.0,838921431 +666,165,2.0,838920837 +666,185,3.0,838920928 +666,196,2.0,838921162 +666,231,3.0,838920870 +666,236,3.0,838921142 +666,252,1.0,838921162 +666,292,3.0,838920895 +666,296,4.0,838920789 +666,329,2.0,838920870 +666,344,4.0,838920837 +666,356,5.0,838920959 +666,420,3.0,838921016 +666,432,3.0,838921056 +666,434,2.0,838920895 +666,454,3.0,838920976 +666,457,3.0,838920895 +666,480,4.0,838920959 +666,508,4.0,838921233 +666,509,3.0,838921185 +666,527,3.0,838921056 +666,539,1.0,838921120 +666,585,2.0,838921343 +666,586,3.0,838921120 +666,587,2.0,838921056 +666,588,3.0,838920837 +666,589,3.0,838920996 +666,590,5.0,838920789 +666,592,2.0,838920789 +666,593,4.0,838920870 +666,595,2.0,838920870 +666,597,2.0,838921120 +667,6,4.0,847271481 +667,11,3.0,847271401 +667,16,2.0,847271431 +667,17,2.0,847271685 +667,21,3.0,847271401 +667,25,2.0,847271463 +667,32,5.0,847271481 +667,36,4.0,847271548 +667,41,5.0,847271721 +667,58,4.0,847271721 +667,82,3.0,847272167 +667,95,3.0,847271534 +667,105,3.0,847271573 +667,110,4.0,847271334 +667,144,5.0,847271757 +667,150,4.0,847271221 +667,151,3.0,847271431 +667,161,4.0,847271314 +667,165,3.0,847271245 +667,185,3.0,847271314 +667,225,3.0,847271534 +667,232,4.0,847271703 +667,236,3.0,847271573 +667,247,4.0,847271888 +667,265,4.0,847271721 +667,266,3.0,847271463 +667,272,5.0,847271703 +667,292,3.0,847271278 +667,296,5.0,847271221 +667,300,4.0,847271534 +667,306,4.0,847271757 +667,307,5.0,847271773 +667,308,4.0,847271773 +667,321,4.0,847271849 +667,339,3.0,847271314 +667,342,4.0,847271773 +667,345,5.0,847271720 +667,349,4.0,847271260 +667,350,3.0,847271573 +667,356,4.0,847271260 +667,357,3.0,847271703 +667,377,3.0,847271549 +667,380,3.0,847271221 +667,417,4.0,847271818 +667,440,3.0,847271534 +667,446,4.0,847271818 +667,452,3.0,847271756 +667,454,3.0,847271334 +667,457,3.0,847271245 +667,468,3.0,847271794 +667,480,4.0,847271278 +667,501,5.0,847271869 +667,508,4.0,847271463 +667,509,3.0,847271685 +667,539,4.0,847271444 +667,551,3.0,847272044 +667,553,3.0,847271417 +667,590,3.0,847271220 +667,592,2.0,847272234 +667,594,4.0,847272105 +667,597,3.0,847271510 +667,608,5.0,847271510 +667,616,3.0,847272057 +667,661,4.0,847272067 +667,736,4.0,847271443 +667,745,5.0,847272075 +667,1148,5.0,847272081 +667,1199,5.0,847271997 +668,296,5.0,993613478 +668,318,4.0,993613478 +668,593,5.0,993613478 +668,608,5.0,993613478 +668,720,3.0,993613415 +668,1089,3.0,993613415 +668,1213,5.0,993613359 +668,1221,5.0,993613196 +668,1233,4.0,993613415 +668,1358,4.0,993613415 +668,1490,1.0,993613196 +668,2324,5.0,993613359 +668,2501,3.0,993613415 +668,2908,5.0,993613415 +668,2997,5.0,993613478 +668,3000,3.0,993613196 +668,3039,3.0,993613196 +668,3213,3.0,993613359 +668,4012,3.0,993613196 +668,6425,1.0,993613478 +669,223,4.0,1015829358 +669,260,5.0,1015829081 +669,381,3.0,1015829160 +669,480,3.0,1015829160 +669,785,4.0,1015829525 +669,913,5.0,1015829525 +669,968,4.0,1015829545 +669,1135,3.0,1015829160 +669,1210,3.0,1015829115 +669,1304,5.0,1015829081 +669,1513,3.0,1015829690 +669,1953,4.0,1015829081 +669,2174,3.0,1015829081 +669,2395,4.0,1015829738 +669,2396,4.0,1015829738 +669,2599,4.0,1015829431 +669,2683,4.0,1015829288 +669,2688,3.0,1015829462 +669,2702,3.0,1015829766 +669,2706,4.0,1015829288 +669,2713,2.0,1015829525 +669,2719,2.0,1015829462 +669,2722,2.0,1015829081 +669,2772,3.0,1015829395 +669,2840,4.0,1015829738 +669,2881,3.0,1015829395 +669,2959,5.0,1015829431 +669,2976,4.0,1015829358 +669,3016,3.0,1015829395 +669,3174,3.0,1015829525 +669,3219,3.0,1015829662 +669,3326,2.0,1015829081 +669,3453,2.0,1015829462 +669,3752,4.0,1015829525 +669,3826,2.0,1015829486 +669,3863,3.0,1015829358 +669,4015,2.0,1015829115 +670,1,4.0,938782344 +670,25,5.0,938782344 +670,32,3.0,938782145 +670,34,4.0,938782193 +670,36,4.0,938782050 +670,47,5.0,938782050 +670,50,5.0,938781934 +670,110,3.0,938782093 +670,150,3.0,938782006 +670,318,5.0,938781934 +670,457,4.0,938782414 +670,527,5.0,938782006 +670,590,1.0,938782094 +670,593,5.0,938782234 +670,608,5.0,938782093 +670,1183,5.0,938782193 +670,1245,1.0,938782281 +670,1584,4.0,938782344 +670,1617,2.0,938781934 +670,1704,4.0,938781934 +670,1923,2.0,938782414 +670,2269,3.0,938782344 +670,2291,4.0,938782145 +670,2571,4.0,938782234 +670,2628,4.0,938782234 +670,2683,5.0,938782281 +670,2723,2.0,940944033 +670,2759,5.0,940943832 +670,2770,4.0,938781328 +670,2858,3.0,940943832 +670,2912,5.0,940943887 +671,1,5.0,1064891129 +671,36,4.0,1065149314 +671,50,4.5,1064890944 +671,230,4.0,1064890230 +671,260,5.0,1064891246 +671,296,4.0,1064890424 +671,318,5.0,1064890397 +671,356,5.0,1063503911 +671,357,3.0,1063503998 +671,432,2.5,1063503739 +671,457,4.0,1065149159 +671,529,4.0,1064891534 +671,551,5.0,1063503908 +671,588,4.0,1065149478 +671,589,5.0,1064891610 +671,590,4.0,1065149296 +671,608,4.0,1064890575 +671,745,4.0,1065149085 +671,919,4.0,1065149458 +671,1035,5.0,1065149492 +671,1036,3.5,1064891601 +671,1080,4.0,1063500827 +671,1090,4.0,1064891507 +671,1136,5.0,1064891032 +671,1148,5.0,1064891021 +671,1196,5.0,1064890635 +671,1197,3.5,1064891576 +671,1198,5.0,1064891024 +671,1206,3.0,1063500775 +671,1220,4.0,1065149467 +671,1223,3.0,1064891236 +671,1225,4.0,1065149143 +671,1240,4.0,1064891597 +671,1247,4.0,1063500804 +671,1259,4.0,1064890570 +671,1265,4.0,1063503895 +671,1266,4.0,1065149270 +671,1291,4.0,1064891140 +671,1387,4.0,1064891659 +671,1610,4.0,1064891635 +671,1641,4.0,1063503954 +671,1673,3.5,1063500961 +671,1676,3.0,1065108970 +671,1704,4.0,1064890702 +671,1923,4.0,1063502756 +671,2011,3.5,1063500873 +671,2028,4.0,1064891584 +671,2064,4.0,1063502750 +671,2194,3.5,1064891593 +671,2291,5.0,1063500850 +671,2324,4.0,1063500858 +671,2355,4.0,1063500762 +671,2359,4.0,1063503933 +671,2396,4.0,1063503920 +671,2401,4.0,1065149286 +671,2502,3.5,1063503856 +671,2571,4.5,1064891076 +671,2683,4.0,1063500751 +671,2762,4.0,1064891036 +671,2795,3.5,1063503695 +671,2797,4.0,1063500821 +671,2804,5.0,1064890525 +671,2858,4.0,1063503841 +671,2918,4.0,1065149106 +671,2959,4.0,1064890427 +671,2997,4.5,1063503848 +671,3052,1.0,1063503966 +671,3060,4.0,1063503947 +671,3114,5.0,1064891089 +671,3147,4.0,1064891516 +671,3160,3.0,1063503682 +671,3253,3.0,1063503940 +671,3271,4.0,1070940360 +671,3386,4.0,1074784735 +671,3421,4.0,1063502737 +671,3481,2.0,1064245565 +671,3671,3.0,1065149267 +671,3751,4.0,1065111939 +671,3897,2.0,1063503718 +671,3996,3.5,1064245511 +671,4011,4.0,1064245574 +671,4019,3.5,1065111959 +671,4022,3.5,1063500953 +671,4027,4.0,1063500993 +671,4033,4.0,1065111954 +671,4034,4.5,1064245493 +671,4306,5.0,1064245548 +671,4308,3.5,1065111985 +671,4880,4.0,1065111973 +671,4886,5.0,1064245488 +671,4896,5.0,1065111996 +671,4963,4.5,1065111855 +671,4973,4.5,1064245471 +671,4993,5.0,1064245483 +671,4995,4.0,1064891537 +671,5010,2.0,1066793004 +671,5218,2.0,1065111990 +671,5299,3.0,1065112004 +671,5349,4.0,1065111863 +671,5377,4.0,1064245557 +671,5445,4.5,1064891627 +671,5464,3.0,1064891549 +671,5669,4.0,1063502711 +671,5816,4.0,1065111963 +671,5902,3.5,1064245507 +671,5952,5.0,1063502716 +671,5989,4.0,1064890625 +671,5991,4.5,1064245387 +671,5995,4.0,1066793014 +671,6212,2.5,1065149436 +671,6268,2.5,1065579370 +671,6269,4.0,1065149201 +671,6365,4.0,1070940363 +671,6385,2.5,1070979663 +671,6565,3.5,1074784724 diff --git a/unsupervised-predict-streamlit-teames2/resources/imgs/EDA1.jpg b/unsupervised-predict-streamlit-teames2/resources/imgs/EDA1.jpg new file mode 100644 index 00000000..d842591a Binary files /dev/null and b/unsupervised-predict-streamlit-teames2/resources/imgs/EDA1.jpg differ diff --git a/unsupervised-predict-streamlit-teames2/resources/imgs/EDA2.jpg b/unsupervised-predict-streamlit-teames2/resources/imgs/EDA2.jpg new file mode 100644 index 00000000..50a6d85c Binary files /dev/null and b/unsupervised-predict-streamlit-teames2/resources/imgs/EDA2.jpg differ diff --git a/unsupervised-predict-streamlit-teames2/resources/imgs/EDSA_logo.png b/unsupervised-predict-streamlit-teames2/resources/imgs/EDSA_logo.png new file mode 100644 index 00000000..72141516 Binary files /dev/null and b/unsupervised-predict-streamlit-teames2/resources/imgs/EDSA_logo.png differ diff --git a/unsupervised-predict-streamlit-teames2/resources/imgs/Image_header.png b/unsupervised-predict-streamlit-teames2/resources/imgs/Image_header.png new file mode 100644 index 00000000..f041ee50 Binary files /dev/null and b/unsupervised-predict-streamlit-teames2/resources/imgs/Image_header.png differ diff --git a/unsupervised-predict-streamlit-teames2/resources/imgs/What_is_a_recommender_system.png b/unsupervised-predict-streamlit-teames2/resources/imgs/What_is_a_recommender_system.png new file mode 100644 index 00000000..e0c987b8 Binary files /dev/null and b/unsupervised-predict-streamlit-teames2/resources/imgs/What_is_a_recommender_system.png differ diff --git a/unsupervised-predict-streamlit-teames2/resources/imgs/header_image.jpg b/unsupervised-predict-streamlit-teames2/resources/imgs/header_image.jpg new file mode 100644 index 00000000..0b929ca7 Binary files /dev/null and b/unsupervised-predict-streamlit-teames2/resources/imgs/header_image.jpg differ diff --git a/unsupervised-predict-streamlit-teames2/resources/imgs/landing_page_sample.png b/unsupervised-predict-streamlit-teames2/resources/imgs/landing_page_sample.png new file mode 100644 index 00000000..56db4af9 Binary files /dev/null and b/unsupervised-predict-streamlit-teames2/resources/imgs/landing_page_sample.png differ diff --git a/unsupervised-predict-streamlit-teames2/resources/imgs/meet_our_team.jpg b/unsupervised-predict-streamlit-teames2/resources/imgs/meet_our_team.jpg new file mode 100644 index 00000000..abfc3ac3 Binary files /dev/null and b/unsupervised-predict-streamlit-teames2/resources/imgs/meet_our_team.jpg differ diff --git a/unsupervised-predict-streamlit-teames2/resources/models/SVD.pkl b/unsupervised-predict-streamlit-teames2/resources/models/SVD.pkl new file mode 100644 index 00000000..62158a4b Binary files /dev/null and b/unsupervised-predict-streamlit-teames2/resources/models/SVD.pkl differ diff --git a/unsupervised-predict-streamlit-teames2/resources/models/train_colbased.py b/unsupervised-predict-streamlit-teames2/resources/models/train_colbased.py new file mode 100644 index 00000000..c90e1908 --- /dev/null +++ b/unsupervised-predict-streamlit-teames2/resources/models/train_colbased.py @@ -0,0 +1,39 @@ +""" + + Single Value Decomposition plus plus (SVDpp) model training. + + Author: Explore Data Science Academy. + + Description: Simple script to train and save an instance of the + SVDpp algorithm on MovieLens data. + +""" +# Script dependencies +import numpy as np +import pandas as pd +from surprise import SVD +import surprise +import pickle + +# Importing datasets +ratings = pd.read_csv('ratings.csv') +ratings.drop('timestamp',axis=1,inplace=True) + +def svd_pp(save_path): + # Check the range of the rating + min_rat = ratings['rating'].min() + max_rat = ratings['rating'].max() + # Changing ratings to their standard form + reader = surprise.Reader(rating_scale = (min_rat,max_rat)) + # Loading the data frame using surprice + data_load = surprise.Dataset.load_from_df(ratings, reader) + # Insatntiating surpricce + method = SVD(n_factors = 200 , lr_all = 0.005 , reg_all = 0.02 , n_epochs = 40 , init_std_dev = 0.05) + # Loading a trainset into the model + model = method.fit(data_load.build_full_trainset()) + print (f"Training completed. Saving model to: {save_path}") + + return pickle.dump(model, open(save_path,'wb')) + +if __name__ == '__main__': + svd_pp('SVD.pkl') diff --git a/unsupervised-predict-streamlit-teames2/utils/__init__.py b/unsupervised-predict-streamlit-teames2/utils/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/unsupervised-predict-streamlit-teames2/utils/__pycache__/__init__.cpython-310.pyc b/unsupervised-predict-streamlit-teames2/utils/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 00000000..36961f77 Binary files /dev/null and b/unsupervised-predict-streamlit-teames2/utils/__pycache__/__init__.cpython-310.pyc differ diff --git a/unsupervised-predict-streamlit-teames2/utils/__pycache__/data_loader.cpython-310.pyc b/unsupervised-predict-streamlit-teames2/utils/__pycache__/data_loader.cpython-310.pyc new file mode 100644 index 00000000..73415f2c Binary files /dev/null and b/unsupervised-predict-streamlit-teames2/utils/__pycache__/data_loader.cpython-310.pyc differ diff --git a/unsupervised-predict-streamlit-teames2/utils/data_loader.py b/unsupervised-predict-streamlit-teames2/utils/data_loader.py new file mode 100644 index 00000000..8eb887ca --- /dev/null +++ b/unsupervised-predict-streamlit-teames2/utils/data_loader.py @@ -0,0 +1,30 @@ +""" + + Helper functions for data loading and manipulation. + + Author: Explore Data Science Academy. + +""" +# Data handling dependencies +import pandas as pd +import numpy as np + +def load_movie_titles(path_to_movies): + """Load movie titles from database records. + + Parameters + ---------- + path_to_movies : str + Relative or absolute path to movie database stored + in .csv format. + + Returns + ------- + list[str] + Movie titles. + + """ + df = pd.read_csv(path_to_movies) + df = df.dropna() + movie_list = df['title'].to_list() + return movie_list